From 33b01c4a0bcc364044990f397feab0faac4b362f Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Fri, 26 Sep 2025 17:43:14 +0300 Subject: [PATCH 1/7] system name --- src/gensig.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/gensig.c b/src/gensig.c index 2cdcdc4..494c7d4 100644 --- a/src/gensig.c +++ b/src/gensig.c @@ -76,6 +76,10 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error adding sample_frequency attribute"); exit(EXIT_FAILURE); } + if (slow5_hdr_add("system_name ", header) < 0){ + ERROR("%s","Error adding system_name attribute"); + exit(EXIT_FAILURE); + } //set the run_id attribute to "run_0" for read group 0 if (slow5_hdr_set("run_id", "run_0", 0, header) < 0){ @@ -126,6 +130,11 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp exit(EXIT_FAILURE); } + if (slow5_hdr_set("system_name", "PCA000000", 0, header) < 0){ + ERROR("%s","Error setting system_name attribute in read group 0"); + exit(EXIT_FAILURE); + } + } void set_header_aux_fields(slow5_file_t *sp, int8_t ont_friendly){ From 27344d291a36435905cb5e5956a876e9ad60251d Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Fri, 26 Sep 2025 17:45:14 +0300 Subject: [PATCH 2/7] fix --- src/gensig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gensig.c b/src/gensig.c index 494c7d4..1f0257e 100644 --- a/src/gensig.c +++ b/src/gensig.c @@ -76,7 +76,7 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error adding sample_frequency attribute"); exit(EXIT_FAILURE); } - if (slow5_hdr_add("system_name ", header) < 0){ + if (slow5_hdr_add("system_name", header) < 0){ ERROR("%s","Error adding system_name attribute"); exit(EXIT_FAILURE); } From 224f4b187f26c28cca0d87342f8784c823881f1a Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Fri, 26 Sep 2025 17:48:47 +0300 Subject: [PATCH 3/7] fix --- src/gensig.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/gensig.c b/src/gensig.c index 1f0257e..61f75ad 100644 --- a/src/gensig.c +++ b/src/gensig.c @@ -80,6 +80,10 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error adding system_name attribute"); exit(EXIT_FAILURE); } + if (slow5_hdr_add("sample_id", header) < 0){ + ERROR("%s","Error adding sample_id attribute"); + exit(EXIT_FAILURE); + } //set the run_id attribute to "run_0" for read group 0 if (slow5_hdr_set("run_id", "run_0", 0, header) < 0){ @@ -134,6 +138,10 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error setting system_name attribute in read group 0"); exit(EXIT_FAILURE); } + if (slow5_hdr_set("sample_id", "test", 0, header) < 0){ + ERROR("%s","Error setting sample_id attribute in read group 0"); + exit(EXIT_FAILURE); + } } From f4f00bbe255d11c4823438069da639ec07ba870b Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Fri, 26 Sep 2025 17:54:01 +0300 Subject: [PATCH 4/7] fix --- src/gensig.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/gensig.c b/src/gensig.c index 61f75ad..65019cf 100644 --- a/src/gensig.c +++ b/src/gensig.c @@ -84,6 +84,10 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error adding sample_id attribute"); exit(EXIT_FAILURE); } + if (slow5_hdr_add("flow_cell_product_code", header) < 0){ + ERROR("%s","Error adding sample_id attribute"); + exit(EXIT_FAILURE); + } //set the run_id attribute to "run_0" for read group 0 if (slow5_hdr_set("run_id", "run_0", 0, header) < 0){ @@ -142,6 +146,10 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error setting sample_id attribute in read group 0"); exit(EXIT_FAILURE); } + if (slow5_hdr_set("flow_cell_product_code", "FLO-00", 0, header) < 0){ + ERROR("%s","Error setting flow_cell_product_code attribute in read group 0"); + exit(EXIT_FAILURE); + } } From addf4f7b6571322cb2b3ba719ab111a20d606755 Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Fri, 30 Jan 2026 20:01:11 +1100 Subject: [PATCH 5/7] add more meta --- src/gensig.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/src/gensig.c b/src/gensig.c index 65019cf..82a5fe8 100644 --- a/src/gensig.c +++ b/src/gensig.c @@ -46,12 +46,22 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error adding run_id attribute"); exit(EXIT_FAILURE); } + //add another header group attribute called protocol_run_id + if (slow5_hdr_add("protocol_run_id", header) < 0){ + ERROR("%s","Error adding protocol_run_id attribute"); + exit(EXIT_FAILURE); + } //add another header group attribute called asic_id if (slow5_hdr_add("asic_id", header) < 0){ ERROR("%s","Error adding asic_id attribute"); exit(EXIT_FAILURE); } - //add another header group attribute called asic_id + //add another header group attribute called protocol_start_time + if (slow5_hdr_add("protocol_start_time", header) < 0){ + ERROR("%s","Error adding protocol_start_time attribute"); + exit(EXIT_FAILURE); + } + //add another header group attribute called exp_start_time if (slow5_hdr_add("exp_start_time", header) < 0){ ERROR("%s","Error adding asic_id attribute"); exit(EXIT_FAILURE); @@ -94,6 +104,11 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error setting run_id attribute in read group 0"); exit(EXIT_FAILURE); } + //set the protocol_run_id attribute to "protocol_run_0" for read group 0 + if (slow5_hdr_set("protocol_run_id", "protocol_run_0", 0, header) < 0){ + ERROR("%s","Error setting protocol_run_id attribute in read group 0"); + exit(EXIT_FAILURE); + } //set the asic_id attribute to "asic_0" for read group 0 if (slow5_hdr_set("asic_id", "asic_id_0", 0, header) < 0){ ERROR("%s","Error setting asic_id attribute in read group 0"); @@ -104,6 +119,11 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp ERROR("%s","Error setting exp_start_time attribute in read group 0"); exit(EXIT_FAILURE); } + //set the protocol_start_time attribute to "2022-07-20T00:00:00Z" for read group 0 + if (slow5_hdr_set("protocol_start_time", "2022-07-20T00:00:00Z", 0, header) < 0){ + ERROR("%s","Error setting protocol_start_time attribute in read group 0"); + exit(EXIT_FAILURE); + } //set the flow_cell_id attribute to "FAN00000" for read group 0 if (slow5_hdr_set("flow_cell_id", "FAN00000", 0, header) < 0){ ERROR("%s","Error setting flow_cell_id attribute in read group 0"); From b6233c4dc73a69b198dee6c9694fa365fe63ce5e Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Wed, 25 Feb 2026 22:48:49 +1100 Subject: [PATCH 6/7] more attribs --- src/gensig.c | 176 +++++++++++++--------------------- src/sim.c | 8 +- src/sq.h | 1 + test/bps.exp | 9 +- test/cdna.exp | 9 +- test/dev.exp | 9 +- test/dna_full_contig.exp | 9 +- test/dna_ideal_amp_slow5.exp | 9 +- test/dna_ideal_slow5.exp | 9 +- test/dna_ideal_time_slow5.exp | 9 +- test/dna_prefix_slow5.exp | 9 +- test/dna_r10_amp_noise.exp | 9 +- test/dna_r10_paf-ref.exp | 9 +- test/dna_r10_paf.exp | 9 +- test/ont_friendly.exp | 9 +- test/r9_mfreq.exp | 9 +- test/rna004.slow5.exp | 9 +- test/rna004_dwell.exp | 9 +- test/rna_paf.exp | 9 +- test/rna_prefixno_slow5.exp | 9 +- test/rna_prefixyes_slow5.exp | 9 +- test/rna_slow5.exp | 9 +- test/slow5.exp | 9 +- test/trans_count.exp | 9 +- test/trans_count_cdna.exp | 9 +- test/trans_trunc.exp | 9 +- 26 files changed, 255 insertions(+), 137 deletions(-) mode change 100644 => 100755 test/bps.exp mode change 100644 => 100755 test/cdna.exp mode change 100644 => 100755 test/dev.exp mode change 100644 => 100755 test/dna_r10_amp_noise.exp mode change 100644 => 100755 test/ont_friendly.exp mode change 100644 => 100755 test/r9_mfreq.exp mode change 100644 => 100755 test/rna004.slow5.exp mode change 100644 => 100755 test/rna004_dwell.exp mode change 100644 => 100755 test/rna_prefixyes_slow5.exp mode change 100644 => 100755 test/trans_count.exp mode change 100644 => 100755 test/trans_count_cdna.exp mode change 100644 => 100755 test/trans_trunc.exp diff --git a/src/gensig.c b/src/gensig.c index 82a5fe8..d94e763 100644 --- a/src/gensig.c +++ b/src/gensig.c @@ -37,104 +37,59 @@ char *attach_prefix(core_t *core, const char *read, int32_t *len, aln_t *aln); void gen_prefix_dna(int16_t *raw_signal, int64_t* n, int64_t *c, profile_t *profile, double offset); int16_t *gen_prefix_rna(core_t *core, int16_t *raw_signal, int64_t* n, int64_t *c, double offset, int tid, aln_t *aln); -void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double sample_frequency){ - slow5_hdr_t *header=sp->header; - - //add a header group attribute called run_id - if (slow5_hdr_add("run_id", header) < 0){ - ERROR("%s","Error adding run_id attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called protocol_run_id - if (slow5_hdr_add("protocol_run_id", header) < 0){ - ERROR("%s","Error adding protocol_run_id attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called asic_id - if (slow5_hdr_add("asic_id", header) < 0){ - ERROR("%s","Error adding asic_id attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called protocol_start_time - if (slow5_hdr_add("protocol_start_time", header) < 0){ - ERROR("%s","Error adding protocol_start_time attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called exp_start_time - if (slow5_hdr_add("exp_start_time", header) < 0){ - ERROR("%s","Error adding asic_id attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called flow_cell_id - if (slow5_hdr_add("flow_cell_id", header) < 0){ - ERROR("%s","Error adding flow_cell_id attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called experiment_type - if (slow5_hdr_add("experiment_type", header) < 0){ - ERROR("%s","Error adding experiment_type attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called sequencing_kit - if (slow5_hdr_add("sequencing_kit", header) < 0){ - ERROR("%s","Error adding sequencing_kit attribute"); - exit(EXIT_FAILURE); - } - //add another header group attribute called sample_frequency - if (slow5_hdr_add("sample_frequency", header) < 0){ - ERROR("%s","Error adding sample_frequency attribute"); - exit(EXIT_FAILURE); - } - if (slow5_hdr_add("system_name", header) < 0){ - ERROR("%s","Error adding system_name attribute"); - exit(EXIT_FAILURE); - } - if (slow5_hdr_add("sample_id", header) < 0){ - ERROR("%s","Error adding sample_id attribute"); - exit(EXIT_FAILURE); - } - if (slow5_hdr_add("flow_cell_product_code", header) < 0){ - ERROR("%s","Error adding sample_id attribute"); +static inline void slow5_hdr_add_check(const char *attr_name, slow5_hdr_t *header){ + if (slow5_hdr_add(attr_name, header) < 0){ + ERROR("Error adding %s attribute", attr_name); exit(EXIT_FAILURE); } +} - //set the run_id attribute to "run_0" for read group 0 - if (slow5_hdr_set("run_id", "run_0", 0, header) < 0){ - ERROR("%s","Error setting run_id attribute in read group 0"); - exit(EXIT_FAILURE); - } - //set the protocol_run_id attribute to "protocol_run_0" for read group 0 - if (slow5_hdr_set("protocol_run_id", "protocol_run_0", 0, header) < 0){ - ERROR("%s","Error setting protocol_run_id attribute in read group 0"); - exit(EXIT_FAILURE); - } - //set the asic_id attribute to "asic_0" for read group 0 - if (slow5_hdr_set("asic_id", "asic_id_0", 0, header) < 0){ - ERROR("%s","Error setting asic_id attribute in read group 0"); - exit(EXIT_FAILURE); - } - //set the exp_start_time attribute to "2022-07-20T00:00:00Z" for read group 0 - if (slow5_hdr_set("exp_start_time", "2022-07-20T00:00:00Z", 0, header) < 0){ - ERROR("%s","Error setting exp_start_time attribute in read group 0"); - exit(EXIT_FAILURE); - } - //set the protocol_start_time attribute to "2022-07-20T00:00:00Z" for read group 0 - if (slow5_hdr_set("protocol_start_time", "2022-07-20T00:00:00Z", 0, header) < 0){ - ERROR("%s","Error setting protocol_start_time attribute in read group 0"); - exit(EXIT_FAILURE); - } - //set the flow_cell_id attribute to "FAN00000" for read group 0 - if (slow5_hdr_set("flow_cell_id", "FAN00000", 0, header) < 0){ - ERROR("%s","Error setting flow_cell_id attribute in read group 0"); +static inline void slow5_hdr_set_check(const char *attr_name, const char *value, slow5_hdr_t *header){ + if (slow5_hdr_set(attr_name, value, 0, header) < 0){ + ERROR("Error setting %s attribute in read group %d", attr_name, 0); exit(EXIT_FAILURE); } - //set the experiment_type attribute to genomic_dna or rna for read group 0 +} + +void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, int8_t prom, double sample_frequency){ + + slow5_hdr_t *header=sp->header; + + //header group attributes + + slow5_hdr_add_check("asic_id", header); + slow5_hdr_add_check("exp_start_time", header); + slow5_hdr_add_check("experiment_name", header); + slow5_hdr_add_check("experiment_type", header); + slow5_hdr_add_check("flow_cell_id", header); + slow5_hdr_add_check("flow_cell_product_code", header); + + slow5_hdr_add_check("protocol_run_id", header); + slow5_hdr_add_check("protocol_start_time", header); + slow5_hdr_add_check("run_id", header); + slow5_hdr_add_check("sample_frequency", header); + slow5_hdr_add_check("sample_id", header); + slow5_hdr_add_check("sequencing_kit", header); + slow5_hdr_add_check("sequencer_position", header); + slow5_hdr_add_check("system_name", header); + + + //dna/rna const char* experiment_type = rna ? "rna" : "genomic_dna" ; - if (slow5_hdr_set("experiment_type", experiment_type, 0, header) < 0){ - ERROR("%s","Error setting experiment_type attribute in read group 0"); - exit(EXIT_FAILURE); + + //flow cell + const char* flow_cell = "."; + if(r10){ + if(rna){ + flow_cell = prom ? "FLO-PRO004RA" : "FLO-MIN004RA"; + } else { + flow_cell = prom ? "FLO-PRO114M" : "FLO-MIN114"; + } + } else { + flow_cell = prom ? "FLO-PRO002" : "FLO-MIN106"; } + //sequencing kit const char* kit = "."; if(rna){ @@ -142,34 +97,31 @@ void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double samp } else{ kit = r10 ? "sqk-lsk114" : "sqk-lsk109"; } - if (slow5_hdr_set("sequencing_kit", kit, 0, header) < 0){ - ERROR("%s","Error setting sequencing_kit attribute in read group 0"); - exit(EXIT_FAILURE); - } + //sample_frequency if(sample_frequency<=0 || sample_frequency>1000000000){ ERROR("%s","A weird sample frequency. It should be between 0 and 1000000000 Hz"); exit(EXIT_FAILURE); } - char buffer[100]; - sprintf(buffer, "%d", (int)sample_frequency); - if (slow5_hdr_set("sample_frequency", buffer, 0, header) < 0){ - ERROR("%s","Error setting sample_frequency attribute in read group 0"); - exit(EXIT_FAILURE); - } + char sample_frequency_str[100]; + sprintf(sample_frequency_str, "%d", (int)sample_frequency); + + //set header attributes + slow5_hdr_set_check("asic_id", "asic_id_0", header); + slow5_hdr_set_check("exp_start_time", "2026-02-20T00:00:00Z", header); + slow5_hdr_set_check("experiment_name", "experiment_0", header); + slow5_hdr_set_check("experiment_type", experiment_type, header); + slow5_hdr_set_check("flow_cell_id", "FAN00000", header); + slow5_hdr_set_check("flow_cell_product_code", flow_cell, header); + slow5_hdr_set_check("protocol_run_id", "protocol_run_0", header); + slow5_hdr_set_check("protocol_start_time", "2026-02-20T00:00:00Z", header); + slow5_hdr_set_check("run_id", "run_0", header); + slow5_hdr_set_check("sample_frequency", sample_frequency_str, header); + slow5_hdr_set_check("sample_id", "squigulator", header); + slow5_hdr_set_check("sequencing_kit", kit, header); + slow5_hdr_set_check("sequencer_position", "P0", header); + slow5_hdr_set_check("system_name", "PCA000000", header); - if (slow5_hdr_set("system_name", "PCA000000", 0, header) < 0){ - ERROR("%s","Error setting system_name attribute in read group 0"); - exit(EXIT_FAILURE); - } - if (slow5_hdr_set("sample_id", "test", 0, header) < 0){ - ERROR("%s","Error setting sample_id attribute in read group 0"); - exit(EXIT_FAILURE); - } - if (slow5_hdr_set("flow_cell_product_code", "FLO-00", 0, header) < 0){ - ERROR("%s","Error setting flow_cell_product_code attribute in read group 0"); - exit(EXIT_FAILURE); - } } diff --git a/src/sim.c b/src/sim.c index 6de3be2..1c207c9 100644 --- a/src/sim.c +++ b/src/sim.c @@ -42,7 +42,7 @@ SOFTWARE. #include "error.h" #include "misc.h" -void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, double sample_frequency); +void set_header_attributes(slow5_file_t *sp, int8_t rna, int8_t r10, int8_t prom, double sample_frequency); void set_header_aux_fields(slow5_file_t *sp, int8_t ont_friendly); void set_record_primary_fields(profile_t *profile, slow5_rec_t *slow5_record, char *read_id, double offset, int64_t len_raw_signal, int16_t *raw_signal); void set_record_aux_fields(slow5_rec_t *slow5_record, slow5_file_t *sp, double median_before, int32_t read_number, uint64_t start_time, int8_t ont_friendly); @@ -154,17 +154,20 @@ static inline profile_t set_profile(char *prof_name, opt_t *opt){ if(strcmp(prof_name, "dna-r9-min") == 0){ return minion_r9_dna_prof; }else if(strcmp(prof_name, "dna-r9-prom") == 0){ + opt->flag |= SQ_PROM; return prom_r9_dna_prof; }else if(strcmp(prof_name, "rna-r9-min") == 0){ opt->flag |= SQ_RNA; return minion_r9_rna_prof; }else if(strcmp(prof_name, "rna-r9-prom") == 0){ opt->flag |= SQ_RNA; + opt->flag |= SQ_PROM; return prom_r9_rna_prof; }else if(strcmp(prof_name, "dna-r10-prom") == 0){ INFO("%s", "dna-r10-prom is 5kHz from squigulator v0.3.0 onwards. Specify --sample-rate 4000 for old 4kHz.") WARNING("%s","Parameters and models for dna-r10-prom 5khz are still crude. If you have good modification-free data, please share!"); opt->flag |= SQ_R10; + opt->flag |= SQ_PROM; return prom_r10_dna_prof; }else if(strcmp(prof_name, "dna-r10-min") == 0){ INFO("%s", "dna-r10-min is 5kHz from squigulator v0.3.0 onwards. Specify --sample-rate 4000 for old 4kHz.") @@ -180,6 +183,7 @@ static inline profile_t set_profile(char *prof_name, opt_t *opt){ WARNING("%s","Parameters and models for rna004-prom are still crude. If you have good IVT data, please share!"); opt->flag |= SQ_R10; opt->flag |= SQ_RNA; + opt->flag |= SQ_PROM; return prom_rna004_rna_prof; }else{ ERROR("Unknown profile: %s\n", prof_name); @@ -346,7 +350,7 @@ static core_t *init_core(opt_t opt, profile_t p, char *refname, char *output_fil exit(EXIT_FAILURE); } - set_header_attributes(core->sp, opt.flag & SQ_RNA ? 1 : 0, opt.flag & SQ_R10 ? 1 : 0, p.sample_rate); + set_header_attributes(core->sp, opt.flag & SQ_RNA ? 1 : 0, opt.flag & SQ_R10 ? 1 : 0, opt.flag & SQ_PROM ? 1 : 0, p.sample_rate); set_header_aux_fields(core->sp, opt.flag & SQ_ONT ? 1 : 0); if(slow5_hdr_write(core->sp) < 0){ diff --git a/src/sq.h b/src/sq.h index 1fef729..c058770 100644 --- a/src/sq.h +++ b/src/sq.h @@ -40,6 +40,7 @@ #define SQ_TRANS_TRUNC 0x100 //trans-trunc #define SQ_CDNA 0x200 //CDNA #define SQ_ONT 0x400 //ont friendly +#define SQ_PROM 0x800 //is a promethion #define WORK_STEAL 1 //simple work stealing enabled or not (no work stealing mean no load balancing) #define STEAL_THRESH 1 //stealing threshold diff --git a/test/bps.exp b/test/bps.exp old mode 100644 new mode 100755 index b0e9055..a6d4cdd --- a/test/bps.exp +++ b/test/bps.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO114M +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!3734!- 0 2048 -175.408187 281.345551 5000 92509 824,841,823,819,837,821,838,840,851,853,691,711,694,671,676,672,672,692,688,667,673,683,696,701,690,677,711,669,698,698,561,581,571,575,570,578,591,590,589,602,570,576,587,592,594,595,579,571,582,578,575,593,585,585,578,583,546,551,554,575,588,588,574,569,584,577,577,592,565,567,590,568,573,602,595,575,574,568,590,586,583,572,573,597,583,592,632,656,660,656,650,648,655,633,647,651,654,660,646,655,656,671,648,645,649,638,635,650,657,642,631,653,654,648,664,630,691,652,670,657,653,687,664,650,662,654,668,663,648,676,679,671,1108,1128,1052,1110,1086,1051,1063,1111,1143,1098,1064,1064,1093,1102,1077,1046,1121,1063,1118,1116,1047,1056,1094,1056,1075,1047,1102,1065,1074,1027,977,960,950,988,975,981,983,963,972,986,974,962,943,983,994,968,983,974,854,863,847,826,842,851,843,867,858,844,857,854,845,858,847,830,818,855,854,845,846,826,827,864,834,854,856,834,845,850,854,842,845,844,849,872,858,832,799,796,801,819,794,804,797,789,803,797,769,781,814,793,790,794,775,790,786,811,794,787,793,807,794,781,704,705,713,717,723,741,708,705,714,701,702,705,706,716,683,690,716,701,695,708,716,713,709,705,684,718,708,729,700,711,710,703,692,685,679,693,711,699,704,669,683,691,694,692,678,670,682,678,679,675,679,685,670,675,693,668,699,915,902,926,929,889,874,889,881,927,895,909,928,951,910,911,917,901,917,890,927,917,1069,1008,1070,1070,1050,1040,1080,1035,1045,1052,1062,1034,1086,1055,1049,1045,1075,1058,1056,1038,1036,1032,1033,1056,1063,1012,1078,1014,1051,1035,1055,901,942,880,850,912,915,907,915,922,952,903,921,925,917,919,932,896,937,899,873,910,877,862,912,919,863,892,929,936,920,626,636,623,612,636,602,630,626,620,620,646,629,638,644,630,624,633,616,634,635,627,614,613,643,1154,1141,1131,1179,1114,1126,1147,1106,1117,1168,1117,1134,1173,1118,1136,1111,1134,1046,1111,1178,1090,1096,1082,1167,1109,1109,1169,920,956,956,974,967,958,952,994,998,944,972,913,962,994,945,1005,939,984,944,913,935,928,957,990,941,958,938,966,951,950,951,908,670,671,663,680,684,644,675,666,714,670,679,662,659,665,673,680,641,669,656,675,686,667,652,669,681,1201,1191,1177,1212,1179,1189,1197,1183,1207,1186,1149,1174,1160,1200,1182,1190,1170,1172,1204,1220,1209,1229,1190,1191,1163,1196,1035,1007,993,1008,994,951,1043,974,1006,967,972,983,994,1037,1019,1042,994,992,981,953,996,986,952,993,938,985,978,1004,652,653,661,683,673,688,648,650,656,663,690,654,670,641,668,658,672,646,657,670,658,678,649,670,666,1109,1097,1089,1106,1100,1092,1060,1114,1086,1176,1090,1075,1109,1109,1140,1089,1039,1126,1090,1090,1068,1068,1111,1038,1090,991,1037,1018,1042,1034,1019,1068,1035,1000,1023,1028,1023,1016,1012,1016,1018,1013,1022,1010,1005,1010,1034,1010,1033,679,739,698,696,673,709,724,681,678,666,702,701,683,701,712,690,696,739,661,665,714,688,702,686,1057,1046,1051,1044,1103,1038,1020,1059,1039,1050,1107,1068,1096,1079,1084,1055,1070,1081,1074,1006,1020,994,995,986,997,995,983,1001,997,972,1018,978,1006,1022,990,953,996,972,996,1009,984,998,990,997,996,853,875,858,904,864,839,881,821,868,873,875,892,836,862,864,862,695,717,714,736,691,704,687,702,704,679,690,723,703,696,697,693,694,699,684,675,707,700,705,713,686,727,697,691,700,704,703,696,682,694,708,698,712,700,691,702,685,713,689,705,709,692,693,717,689,722,735,719,728,735,733,752,740,734,725,753,740,742,740,749,761,741,721,723,742,712,723,1150,1144,1161,1071,1173,1149,1140,1172,1127,1136,1187,1131,1116,1145,1153,1117,1159,1134,1158,1135,1143,1113,1140,1119,1143,1093,1133,1112,1125,1003,983,1006,980,968,952,956,1004,971,1015,965,1012,970,957,977,1008,990,1001,964,1024,963,997,989,995,660,665,626,673,671,652,659,651,636,664,667,683,692,655,688,680,661,653,657,639,650,657,626,646,685,631,647,643,674,638,635,670,608,625,621,641,625,645,633,628,606,641,638,610,629,638,633,642,628,608,734,690,705,744,694,728,689,696,726,695,695,682,707,733,693,721,711,697,728,701,700,714,708,690,744,720,716,709,1048,1033,1045,1033,1032,1031,1015,1005,1007,1008,1012,1030,1036,1051,1048,1033,1062,1020,1022,1021,1052,1035,1053,1021,998,993,993,1001,1022,1021,1023,1005,1001,1004,1006,998,998,995,1009,1022,1015,1004,1005,1024,990,1019,1011,991,1007,1017,985,1010,992,1007,1001,1012,1017,989,1000,999,998,1003,1023,1017,997,993,1010,987,1016,1001,1028,1017,984,883,926,934,931,912,925,955,916,893,908,908,929,929,947,923,899,926,920,950,919,921,907,915,643,680,706,686,655,677,682,651,690,695,661,682,689,712,662,660,683,671,683,684,673,678,1080,1112,1078,1154,1120,1140,1100,1125,1107,1081,1051,1122,1100,1108,1060,1127,1087,1071,1132,1111,1067,1070,1082,1111,1083,1097,1156,1117,1174,1093,1052,1070,1149,1074,983,984,992,1000,1020,998,1010,998,1017,978,1007,1022,1006,1003,1019,977,1003,1013,991,1018,987,1030,1025,996,992,1014,963,1009,897,913,880,916,882,873,903,888,885,901,878,901,918,910,893,890,872,901,909,899,910,895,897,889,888,885,906,904,1092,1085,1082,1105,1117,1124,1105,1102,1105,1106,1064,1123,1086,1105,1116,1133,1102,1101,1086,1089,1102,1081,1101,1113,1116,930,898,906,929,926,890,959,925,946,898,903,912,917,944,897,952,909,932,929,882,975,896,893,881,880,926,919,944,639,661,648,656,647,679,663,640,648,652,634,650,674,661,682,677,1104,1096,1143,1057,1077,1082,1043,1117,1089,1062,1024,1082,1100,1085,1104,1118,1058,1122,1104,1113,1058,1036,1041,1064,1059,1054,1082,1064,1070,1079,1051,1064,1075,1053,1068,1044,1080,1069,1081,1068,873,868,895,859,866,910,848,857,863,881,863,884,836,938,883,831,902,903,855,920,899,870,852,911,857,623,669,640,621,614,613,626,643,604,616,626,598,616,628,585,591,597,620,625,621,603,606,643,633,608,630,621,627,611,632,623,632,627,614,617,627,609,628,614,625,623,626,625,615,631,666,668,655,652,654,662,657,662,684,678,649,685,696,663,653,654,684,675,680,662,632,663,673,652,1062,1059,1052,1058,1087,1121,1036,1099,1040,1043,1068,1041,1054,1098,1036,1040,1089,1070,1067,1073,1011,1091,1066,1057,1041,1070,1051,1050,1037,974,957,966,978,932,954,985,970,937,966,963,943,958,972,969,951,974,927,971,974,967,873,914,918,925,914,918,903,907,919,912,925,920,905,914,894,936,890,892,930,909,924,930,913,923,927,932,939,931,964,951,956,953,959,938,972,933,952,936,950,937,939,972,954,969,934,945,919,965,861,867,880,868,884,873,878,870,879,888,883,871,896,887,856,869,859,866,875,864,885,887,871,687,702,644,663,672,659,656,652,688,669,663,664,669,680,670,682,691,651,670,653,663,679,1108,1073,1095,1121,1166,1052,1168,1147,1069,1118,1074,1085,1084,1115,1114,1096,1098,1083,1092,892,956,946,951,985,913,933,944,950,1001,909,903,943,920,933,955,971,936,936,939,980,941,976,905,958,954,935,952,711,699,696,705,713,696,738,727,700,709,683,726,705,700,713,707,711,690,713,704,684,685,695,695,686,715,698,709,704,699,719,690,723,707,682,702,705,708,716,698,715,710,721,707,716,731,723,720,700,713,714,701,696,698,703,717,722,1006,1007,989,1024,1002,1001,967,985,991,986,976,1002,977,1008,999,976,996,965,984,957,972,994,985,974,1020,798,773,793,796,801,781,776,787,805,765,765,795,782,783,754,778,776,797,789,754,795,810,790,786,771,760,785,765,797,856,870,873,860,861,867,872,860,858,866,884,890,865,880,867,879,866,855,876,869,849,881,865,857,851,910,846,867,857,1091,1079,1060,1077,1056,1055,1058,1052,1064,1073,1054,1045,1050,1073,1053,1066,1075,1029,1071,1065,1076,1052,1045,1054,1036,1059,1050,1025,1027,1038,960,956,949,932,951,961,961,959,918,959,953,945,922,968,940,893,897,916,919,950,928,922,922,929,919,940,960,967,962,1032,1071,971,1054,1036,1020,1027,1032,1036,1011,1004,1050,1042,1044,1064,1029,1044,1010,1003,1014,1010,1002,991,1028,998,987,1008,1003,994,999,1018,992,1013,1002,1002,1013,998,999,1009,1013,1008,999,995,896,884,918,872,883,886,901,919,896,868,884,882,897,863,895,886,887,873,893,911,888,913,875,885,932,884,878,664,646,656,666,670,629,658,657,689,676,675,662,663,666,678,650,658,659,675,656,683,653,663,665,690,647,675,682,664,658,672,665,653,663,659,661,637,655,670,667,671,681,664,667,647,666,666,627,622,628,619,642,621,620,616,620,632,617,652,623,621,629,622,636,640,634,633,641,633,635,712,722,737,695,723,733,699,711,735,729,736,704,730,719,718,723,716,729,719,728,706,703,699,686,692,692,691,700,676,668,679,697,672,664,695,688,685,694,681,678,692,690,686,695,704,698,687,693,697,683,693,1022,1070,1004,1073,1020,1043,1046,1002,1007,1022,1048,1063,1046,1047,1074,1005,1080,1024,1075,1036,1035,1057,1019,1035,1034,1028,1055,1040,1049,1055,1048,1039,1024,1046,1053,1044,1037,1026,1042,1031,1050,1043,1055,1028,1035,1053,975,952,919,899,903,907,896,924,917,878,948,909,932,946,929,922,904,887,877,927,933,944,960,924,922,937,911,937,904,908,657,650,591,602,606,615,600,606,604,621,638,627,597,609,603,581,595,600,639,615,611,623,640,677,655,647,659,629,663,668,632,647,665,666,647,652,642,640,656,647,660,679,651,670,620,1268,1216,1274,1219,1267,1263,1190,1233,1249,1264,1210,1197,1353,1215,1227,1271,1194,1296,1169,1023,1020,1030,1000,998,997,1063,996,1035,1006,1026,1023,1068,1013,1018,1046,1035,1039,1056,1012,1012,971,1052,1068,1092,1044,1053,1066,1077,1075,1066,1075,1052,1074,1056,1059,1079,1073,1047,1047,1044,1046,917,897,905,899,888,910,915,909,894,887,917,897,903,878,900,897,916,903,887,926,890,888,909,899,917,931,955,954,979,938,949,928,931,956,990,915,901,993,965,971,946,993,985,995,979,957,912,1047,1008,1023,1024,1027,1030,1039,1032,1053,1041,1033,1021,1037,1037,1013,1052,1025,1039,1031,910,892,931,911,924,926,958,920,916,920,926,911,891,916,909,911,904,884,895,890,914,914,916,917,892,923,897,919,907,882,934,706,715,715,711,719,718,703,683,740,714,722,754,720,728,733,705,720,705,730,718,688,731,707,921,938,937,924,919,924,914,882,951,915,925,914,923,933,911,936,951,927,906,929,920,761,809,814,823,784,825,789,784,820,815,820,814,794,791,806,791,834,781,818,1019,1004,1006,1030,984,1015,1009,1026,998,1010,1028,998,1009,1004,1027,1002,988,999,1025,998,979,1016,1057,1034,1010,1003,1003,1017,1010,1019,1023,1019,1003,1016,1001,974,1003,1012,1001,1011,1001,1028,993,1025,981,1033,998,1024,1029,1002,1072,1063,1070,1059,1081,1058,1081,1062,1063,1071,1068,1076,1065,1057,1036,1051,1073,1043,1015,1074,1059,1043,1071,1057,906,920,926,954,952,941,951,890,954,925,948,907,928,934,934,916,933,905,918,932,909,918,1022,975,1035,986,944,1058,1005,1014,1008,987,978,997,1018,1047,1028,1056,1011,1007,975,1012,1011,1019,1028,1022,1017,1022,1039,1013,1048,1039,1004,1025,1021,1015,994,1015,995,1002,1016,1010,1012,1012,910,854,897,885,872,868,839,836,853,852,806,896,877,864,852,876,884,881,888,826,734,684,702,691,708,705,673,710,670,689,705,690,678,677,702,689,696,695,677,696,684,701,697,701,682,707,701,1055,1054,1056,1066,1056,1056,1058,1044,1065,1092,1058,1079,1087,1054,1035,1035,1061,1052,1106,774,742,760,781,719,730,743,791,697,753,781,728,756,739,743,757,749,750,721,752,748,748,749,741,747,750,773,779,728,767,762,763,1016,996,990,1026,1017,1044,1008,1006,999,1007,1019,1022,1005,1003,1048,1009,1033,1045,999,994,1038,1022,999,1011,1028,1018,972,995,987,968,978,982,967,986,975,983,958,980,972,993,975,993,957,975,984,985,990,970,956,1002,988,998,966,977,994,985,1009,969,993,985,990,965,976,1001,990,985,981,985,973,966,983,1009,984,973,979,965,936,939,959,953,940,938,951,900,917,933,945,930,923,939,953,960,931,916,927,975,949,962,946,920,704,720,698,707,694,723,719,701,716,728,693,690,694,708,706,698,710,701,727,719,738,729,716,684,667,696,673,658,671,671,684,682,665,670,680,659,693,670,668,675,652,663,662,656,669,660,689,669,667,677,907,952,930,981,921,916,968,968,911,930,969,941,920,943,946,985,946,950,972,937,957,924,902,923,953,967,928,851,882,864,849,874,859,857,840,848,858,838,857,836,855,858,860,846,858,852,853,843,868,854,853,846,837,839,865,849,674,665,645,681,667,666,666,685,660,687,688,675,680,677,661,659,677,655,680,655,661,671,660,679,648,664,656,666,651,656,656,721,736,733,735,745,747,733,747,744,724,737,706,750,748,785,726,712,729,739,748,727,742,956,956,965,966,965,929,926,922,949,964,918,948,945,996,974,960,945,960,946,953,918,944,912,977,976,942,931,749,733,691,688,707,700,684,751,733,717,702,705,766,730,726,748,704,640,634,662,666,685,657,645,638,649,650,647,644,660,631,642,665,639,646,667,652,665,654,658,644,656,669,662,652,680,646,652,659,657,659,671,668,642,647,1053,1049,1055,1047,1050,1077,1031,1021,1048,1025,1010,1058,1037,1016,1051,1052,1000,1010,1058,1028,1028,1030,1054,1053,1008,812,800,743,759,764,753,777,761,778,777,789,774,754,771,789,810,771,771,775,785,804,787,768,1067,1107,1100,1104,1041,1066,1078,1060,1037,1088,1094,1033,1097,1053,1079,1058,1036,1046,1087,1108,1068,1085,933,978,938,944,919,940,982,961,946,960,944,938,967,944,958,921,941,960,944,951,914,941,924,942,932,921,924,943,984,940,900,654,635,587,602,612,577,592,633,571,629,570,592,621,585,591,622,605,582,592,624,603,618,629,638,629,666,638,625,620,623,669,647,635,622,641,634,625,633,623,658,652,654,639,610,647,666,652,696,714,712,688,697,680,680,703,706,718,702,695,703,714,699,710,699,714,701,702,699,699,720,677,693,696,692,687,676,705,683,678,701,685,686,685,688,682,700,719,698,697,684,973,991,987,987,986,974,976,994,991,979,991,994,973,959,959,965,974,970,1036,739,744,732,796,744,761,782,769,739,779,739,731,776,735,764,752,774,718,763,736,761,784,740,723,758,636,659,664,669,661,653,649,666,647,669,667,673,657,677,655,673,662,640,654,653,660,661,648,651,655,651,1134,1204,1170,1181,1192,1171,1169,1173,1138,1153,1103,1170,1190,1170,1135,1137,1202,1101,1204,1177,1210,1297,1188,1159,1164,1147,1147,1184,1153,1182,1138,1163,1131,1193,1256,1219,1108,1180,1190,1008,1035,1049,1030,1033,1051,1047,1048,1028,1040,1045,1049,1066,1032,1044,1047,1025,1014,1026,1042,1038,1078,1015,1028,1049,1035,1023,1023,999,1003,1022,949,979,975,936,1009,987,1002,999,1023,993,999,926,980,960,1031,968,960,968,1003,945,990,1017,1004,1010,985,1025,996,990,1000,1009,1013,998,989,1005,1006,1009,1007,1027,988,986,1016,999,995,1026,1026,1003,1006,1004,1007,1016,1004,1002,1000,1011,1004,1002,997,1033,1022,1023,1008,1018,1015,1014,1002,1006,1039,1033,1029,1026,1016,1020,1032,1019,1030,1013,1017,1004,902,941,898,954,952,943,919,954,888,912,937,947,912,942,920,936,949,717,684,686,727,684,729,736,742,714,687,715,709,702,737,718,734,708,735,714,695,691,711,700,730,726,932,937,930,929,875,943,935,930,932,949,912,921,932,957,913,929,937,949,917,922,917,915,927,947,911,959,932,926,918,939,731,721,723,721,733,725,715,725,747,727,755,751,740,737,729,742,706,725,733,680,729,734,697,642,633,653,652,662,644,613,631,630,638,638,648,645,612,616,638,630,668,651,631,641,638,618,651,639,631,654,642,709,717,734,730,721,728,733,730,718,721,730,712,713,718,729,729,732,716,717,715,724,722,728,726,700,727,692,674,677,651,687,667,662,684,680,672,690,671,673,678,668,658,671,675,677,661,679,683,690,677,673,687,676,684,1056,1013,1077,1132,1068,1071,1077,1082,1069,1072,1070,1063,1080,1074,1092,1096,1086,1082,1092,1041,1103,1124,1078,1101,1055,1080,1077,1082,1098,1074,1079,1087,1060,1043,1068,1079,1065,1063,1070,1056,1076,1071,1063,1064,1074,1048,1067,1070,1071,1095,1058,982,947,941,948,939,947,984,936,942,974,922,940,940,936,938,893,918,909,942,939,917,949,920,916,922,937,959,936,916,1138,1095,1123,1084,1136,1099,1136,1133,1117,1092,1109,1116,1128,1114,1147,1132,1094,1116,1128,1142,1148,1077,1097,1112,1122,1114,1091,1123,1121,1029,1016,1006,983,1026,998,975,991,1031,1006,981,987,983,1012,989,1003,1019,1024,1046,997,996,985,1008,1024,1000,973,982,1014,1008,1080,1053,1060,1057,1063,1081,1065,1066,1079,1071,1064,1048,1066,1069,1053,1042,1060,1065,1061,1058,1054,1064,1046,948,1022,1006,1021,1033,1030,995,1000,987,981,1020,973,990,969,982,1015,992,966,987,986,999,1007,1008,966,1001,977,873,887,874,881,879,856,863,875,870,868,885,893,903,878,872,874,850,871,864,898,862,873,724,745,745,738,741,763,687,744,737,706,735,723,728,753,742,740,765,735,737,705,898,897,910,901,889,906,903,905,865,896,911,913,883,884,906,890,914,926,899,894,934,911,905,907,898,1001,1025,1019,1037,1038,991,1019,1023,1011,989,1011,1001,1019,1007,1021,1007,995,1007,1030,1047,1013,1041,1031,1012,1053,1039,1029,1054,1036,1053,1050,1038,1044,1042,1053,1030,1067,1048,1019,1051,1044,1048,1035,1026,1034,1052,1042,1048,1024,1033,1018,1023,838,835,795,818,795,823,870,843,851,869,824,832,806,858,799,846,809,829,613,593,604,612,607,610,629,621,625,601,589,597,602,633,625,607,605,645,625,624,624,610,615,623,616,632,612,610,627,640,620,659,633,618,637,654,635,614,637,615,624,659,620,635,633,646,653,632,635,618,624,636,630,629,649,629,631,628,658,623,678,690,661,689,678,700,689,689,645,669,688,677,713,674,717,665,694,652,680,684,683,704,674,696,680,696,688,1050,1071,1031,1065,1081,1064,1109,1035,1058,1022,1037,1054,1011,1049,1048,1033,1041,1044,1061,1053,1045,1032,1038,1037,1027,1064,1058,1053,743,809,774,791,765,768,752,781,790,740,760,725,773,784,795,790,782,793,740,760,815,779,777,770,782,778,767,763,793,774,771,784,802,746,761,788,787,771,763,629,678,657,689,672,688,659,646,650,668,631,665,649,668,658,672,661,668,647,669,690,671,668,655,654,583,611,611,629,613,599,610,588,595,605,604,613,598,617,617,614,632,629,632,618,637,609,624,612,615,902,907,943,911,933,971,944,905,933,912,931,936,952,916,924,900,914,888,901,918,1020,1039,995,1043,1042,1021,1016,1005,1020,1031,1016,1020,1023,1021,1020,1015,978,1030,978,1024,1021,953,938,944,934,937,956,945,960,932,934,948,929,929,932,930,940,945,948,920,910,944,966,955,899,872,878,896,883,893,877,888,865,886,866,888,896,888,861,882,884,886,873,892,887,887,875,888,892,886,884,906,885,905,897,877,781,805,786,803,793,801,790,793,802,792,807,784,800,808,798,807,806,795,812,789,709,752,702,716,724,730,700,721,721,715,743,728,740,715,740,724,711,725,703,745,734,725,720,718,753,935,935,942,911,946,947,944,977,943,953,931,914,918,983,938,903,920,956,941,910,976,926,936,940,847,832,841,831,837,844,844,819,825,820,820,844,847,828,814,821,850,839,824,852,824,854,839,812,818,822,835,801,820,807,801,803,814,808,811,812,809,814,819,803,810,800,791,818,815,827,803,812,693,702,712,690,704,706,727,708,709,713,711,696,667,725,675,706,702,697,718,692,722,686,697,696,723,698,709,696,881,857,882,859,908,840,850,885,904,915,844,892,853,855,871,865,863,873,875,844,880,893,855,865,878,972,972,988,1002,995,1004,1011,979,974,1032,994,1001,973,979,1002,1022,998,994,985,1029,993,985,990,1015,974,995,1002,1003,996,1008,997,991,994,1003,1026,974,1009,1029,993,995,987,1012,1013,991,979,1020,1023,1024,1013,1001,984,1006,1000,1023,1005,996,1021,995,995,993,1019,1015,1059,1066,1042,1044,1045,1020,1012,1066,1035,1041,1028,1064,1046,1035,1064,1056,1049,1046,1051,1043,1058,1029,1047,1051,1054,1062,1046,918,876,923,915,913,912,906,877,915,936,893,865,898,900,881,909,867,905,881,888,882,870,877,896,910,922,866,903,882,705,703,675,658,707,642,665,698,673,715,667,679,693,722,682,683,683,663,681,684,673,693,689,692,696,687,707,674,718,686,722,725,694,695,688,680,713,702,708,713,684,692,718,711,695,709,701,715,711,722,719,1104,1125,1201,1126,1092,1121,1142,1167,1194,1192,1148,1143,1135,1151,1178,1154,1181,1089,1127,1152,1195,1178,1162,1117,1133,1168,1124,1169,1146,981,989,985,966,975,967,968,966,966,1009,995,1000,980,973,1008,1000,964,944,977,991,926,976,961,928,1006,961,972,964,661,654,678,713,682,643,626,676,635,667,647,667,692,709,669,676,683,683,689,691,685,661,678,674,1148,1059,1084,1112,1165,1096,1069,1117,1118,1086,1050,1094,1127,1069,1108,1072,1057,1158,1126,1087,1058,1070,1098,1060,1038,1086,1068,1144,1100,1097,1106,1109,1138,1122,1123,1058,1052,1012,1024,1011,991,989,1031,996,1067,1029,1044,1019,1040,998,1018,1022,1028,1026,1051,1010,1027,1009,857,874,855,853,854,845,861,883,863,875,852,851,878,870,880,858,857,838,854,874,847,876,865,855,851,859,889,834,875,889,672,674,704,690,652,686,690,682,685,677,677,695,681,682,685,663,682,649,681,694,697,675,659,683,672,685,684,1123,1113,1085,1098,1151,1098,1083,1094,1116,1079,1111,1074,1076,1098,1101,1087,1071,1090,1090,1097,1106,1099,1074,1121,1082,1068,1054,1090,1065,1086,1146,1092,1062,1067,1079,1078,1096,1087,1088,1101,1089,1077,1105,1095,1087,1045,1099,1051,1095,1070,1082,1081,920,910,911,910,927,931,917,899,903,895,908,941,940,900,900,926,926,911,934,909,935,913,671,670,691,696,663,661,679,704,679,680,661,707,698,644,677,653,678,694,688,1036,1076,1096,1104,1058,1044,1083,1026,1079,1060,1075,1082,1057,998,1105,1068,1071,1045,1103,1075,1055,1048,1070,1046,1064,1078,1081,1028,1024,1056,943,968,966,988,962,971,963,970,944,949,949,943,958,959,975,939,976,980,1005,960,941,986,956,974,949,973,945,971,1016,733,739,739,709,734,740,749,758,754,764,732,699,752,737,749,720,693,735,738,750,736,735,946,943,984,938,958,944,963,973,935,968,933,959,924,974,961,943,965,956,940,975,983,972,956,952,957,1062,1083,1058,1052,1050,1059,1047,1062,1050,1051,1036,1061,1058,1040,1059,1052,1049,1077,1063,1063,1058,1040,1051,1066,1069,1049,936,940,927,949,980,930,936,959,954,938,934,951,944,979,972,956,934,962,942,973,950,932,956,969,947,1190,1241,1193,1210,1214,1186,1194,1205,1228,1229,1242,1175,1247,1201,1168,1210,1192,1209,1207,1222,1258,1173,1202,1188,1198,1213,1232,1223,1196,1209,1054,1053,1057,1063,1037,1036,1072,1049,1055,1057,1054,1053,1043,1071,1062,1062,1062,1066,1057,1057,1082,1038,1077,1049,1073,1069,1097,1075,1092,1091,1064,1078,1091,1101,1084,1088,1107,1073,1070,1067,1088,1101,1063,1098,1087,1098,1094,1083,1076,878,833,862,868,872,872,863,842,887,855,854,880,875,858,855,879,905,868,841,906,873,826,915,842,876,667,666,648,650,657,673,656,647,663,657,647,645,640,644,654,663,629,653,658,649,642,656,638,639,649,655,686,663,663,656,645,1235,1215,1193,1188,1240,1187,1159,1167,1163,1212,1182,1171,1204,1237,1168,1152,1232,1265,1116,1144,1225,1173,989,970,1005,989,989,980,996,988,992,932,991,983,961,969,1000,971,937,1007,939,961,672,698,724,717,711,691,702,704,735,722,723,737,716,724,643,697,674,676,694,718,1058,1056,1021,1013,1037,1006,1049,1045,1017,1039,1062,1052,1088,1036,1014,1047,1028,1044,1043,1036,1041,1072,1024,1040,1038,1060,1022,1000,1009,1047,1059,969,945,976,955,980,991,933,964,965,966,964,959,955,975,967,969,980,952,988,952,974,950,978,974,955,946,721,727,719,734,704,714,758,735,712,705,735,697,746,733,720,696,717,725,709,731,741,721,718,739,737,727,718,687,673,687,659,669,677,690,680,654,672,665,663,682,669,677,689,678,666,699,677,665,681,680,674,678,682,675,688,674,618,625,643,643,628,627,637,652,639,636,603,641,636,619,618,603,624,636,617,642,610,641,621,633,633,631,612,626,627,645,626,632,630,636,1034,1009,1072,1104,1118,1075,1056,1022,1045,1016,1049,1072,1035,1063,1048,1103,1045,1066,1045,1058,1084,1072,1046,1056,1018,1049,1040,1075,1046,1056,1072,1074,1071,1086,1074,1070,1069,1042,1079,1070,1078,1057,1064,1074,915,913,920,915,937,958,927,935,965,891,916,934,938,969,904,958,947,935,916,918,891,908,952,966,946,938,942,697,622,679,655,687,685,676,669,660,648,664,685,641,674,639,691,658,642,651,642,624,629,624,624,616,640,630,618,635,626,621,629,640,619,635,620,621,627,634,627,628,648,636,626,630,639,612,611,629,924,952,954,924,917,917,901,967,972,939,911,928,987,933,920,931,926,927,1028,1026,1038,1013,1019,1027,1002,1045,1022,1008,1006,1017,1029,1017,1026,1016,1023,1032,1028,1010,1071,1078,1052,1059,1076,1055,1076,1063,1025,1052,1043,1048,1059,1042,1068,1060,1036,1033,1083,935,964,946,971,970,948,924,955,951,929,929,920,938,944,933,949,923,920,956,949,960,929,926,847,863,871,884,881,887,850,885,867,856,868,853,859,862,861,839,862,850,875,854,894,867,860,892,711,697,757,740,704,707,736,724,729,708,721,706,716,701,739,702,717,688,693,720,720,717,713,722,691,700,731,725,711,700,715,738,712,722,713,1213,1084,1150,1105,1118,1123,1060,1140,1106,1104,1059,1112,1074,1121,1114,1122,1161,1045,1103,1094,1139,1101,1134,1192,1202,1099,1134,1122,1145,1080,1104,1093,991,1028,973,1018,1021,991,1001,992,965,998,989,986,961,977,1010,988,976,979,976,1005,984,1023,1013,1008,965,1023,1014,974,1015,691,696,704,677,673,686,701,669,667,695,695,728,681,720,656,697,710,681,667,692,670,657,715,687,703,674,659,699,713,996,947,1018,971,952,958,967,960,975,965,968,981,955,964,935,971,978,734,740,709,730,724,703,723,722,696,692,700,704,720,727,715,676,739,756,725,710,731,753,708,727,696,726,1060,1051,1051,1037,1027,1091,1050,1103,1006,1072,1086,1050,1027,1085,1066,1018,1085,1227,1223,1245,1218,1218,1177,1191,1215,1181,1231,1160,1226,1217,1191,1219,1199,1192,1218,1222,984,1007,1011,1011,1008,1002,1006,986,993,997,1014,988,997,1004,1021,1012,1011,1010,1024,1008,1018,1035,1022,1013,1070,1008,1064,1032,1065,1023,1029,1001,1054,1000,1020,1045,1028,1056,1034,1011,1031,982,1044,998,1002,1057,1038,1051,1025,1030,1015,993,958,986,1000,996,996,1017,980,1008,1010,975,965,994,986,1009,995,1018,1004,998,983,992,990,994,997,996,1013,919,885,924,891,898,890,865,876,907,902,885,921,906,878,903,899,893,912,905,901,914,899,900,908,910,884,899,687,754,710,695,693,706,720,695,727,693,682,708,701,698,736,718,1132,1124,1124,1147,1136,1165,1143,1113,1118,1119,1168,1170,1142,1116,1169,1137,1145,1110,1138,1151,1131,1165,1157,1158,1135,963,996,967,972,998,983,988,1003,963,979,964,966,972,1018,984,967,974,958,998,1013,982,995,992,958,1000,745,760,734,741,741,743,752,758,762,756,739,734,745,733,749,755,732,725,742,738,743,748,740,1021,1007,1006,1017,998,1019,1010,986,974,1007,1014,1025,1029,1007,993,984,1004,990,945,1008,1054,1016,985,989,811,834,809,822,842,815,824,836,811,828,841,793,823,815,847,840,820,813,832,838,1027,1031,1011,1021,1010,1033,1018,1022,1038,1058,1050,1043,1028,1024,1011,1025,1017,1038,1013,1026,1025,1016,1022,1022,1037,1033,1003,1032,1049,1045,1048,1074,1037,1070,1086,1070,1050,1063,1053,1032,1073,1066,1048,1059,1076,1044,1050,1065,1051,948,933,905,899,953,901,908,920,931,924,919,919,898,956,946,937,920,879,929,905,926,1033,1089,1043,1026,1041,1040,1030,1066,1051,1100,1078,1065,1059,1035,1008,993,1010,1006,1003,1012,1024,1010,1022,1004,1023,1009,1034,1004,1012,989,1005,999,1038,1003,1026,1033,1008,1025,1054,1018,1010,994,1025,1016,1023,1021,1028,1033,1026,1046,1038,1038,1035,1041,1028,1041,1035,1032,1023,1029,1025,1029,1034,1022,1040,1018,1025,1028,1010,871,852,894,899,868,870,880,853,891,895,870,858,892,866,894,876,857,656,648,669,645,675,657,672,664,662,642,661,621,641,651,662,636,686,672,662,651,651,661,654,662,663,675,650,670,646,673,742,740,737,741,758,734,750,743,766,786,764,738,734,757,736,754,766,766,737,764,726,756,762,734,760,747,736,734,730,721,720,741,740,734,729,728,715,725,727,725,729,740,721,727,729,735,718,724,971,973,975,947,933,971,958,986,990,999,935,948,974,967,956,944,956,968,970,946,975,937,981,958,972,1001,996,974,1015,1019,999,1012,1028,1022,1009,1026,1023,985,1032,1003,989,1041,1002,1061,1019,991,1008,968,970,890,943,926,970,927,945,919,965,931,953,911,943,953,928,921,944,934,936,958,964,913,970,950,873,851,845,840,848,839,836,861,854,878,875,838,840,822,869,863,839,851,860,844,841,857,833,862,856,801,853,834,854,857,842,830,831,831,855,839,1123,1133,1115,1136,1124,1122,1130,1131,1114,1144,1129,1132,1133,1105,1125,1152,1126,1126,1137,1131,1088,1120,1106,1103,1131,1104,1138,1128,1120,1140,1025,1005,1019,1042,1024,1001,1017,1009,1003,1003,1013,998,1012,997,1034,1008,1015,1009,1001,1020,1013,1031,1018,839,837,869,846,863,831,839,847,838,841,860,844,821,843,835,839,857,844,835,881,832,859,842,840,852,841,863,850,669,668,676,679,679,696,667,723,672,663,701,672,686,681,671,698,682,681,657,689,682,677,672,668,661,662,672,628,625,629,645,634,620,639,637,651,614,634,651,622,628,647,647,648,640,618,631,639,613,624,631,1021,1047,1039,1024,1040,1047,1026,982,1061,1029,1026,991,1041,1048,1048,1036,1039,1012,1035,997,1008,1012,1009,1015,788,818,810,790,832,786,830,799,811,780,795,813,823,780,768,797,812,745,938,939,922,920,922,883,901,925,916,942,930,954,905,906,947,943,921,929,935,915,934,919,913,942,903,922,912,935,936,907,921,914,929,777,810,761,802,800,794,775,781,799,784,809,787,807,789,812,777,787,798,793,789,814,802,799,792,770,791,784,780,1042,1003,992,962,1014,1001,967,993,950,995,1018,1007,973,1035,983,1031,1011,1001,997,999,1024,962,1018,976,996,960,998,990,964,933,950,964,941,962,951,950,929,954,932,946,928,961,937,955,938,956,934,944,974,968,926,933,974,947,935,951,767,773,754,793,770,756,772,792,749,744,765,796,800,808,775,793,743,755,816,762,788,746,760,747,773,747,1066,1037,1050,1027,1036,1031,1057,1015,1052,1046,1046,1040,1040,1033,1034,1030,1031,1036,1066,1067,1029,1056,1080,1023,1038,1058,1046,1057,975,974,963,1002,997,970,957,989,976,993,982,974,947,969,968,988,945,972,980,820,820,815,830,829,826,803,815,827,825,830,818,825,833,815,831,835,822,799,824,813,843,819,825,804,839,823,679,713,676,684,703,684,701,691,662,672,704,674,697,695,699,705,684,709,688,684,682,705,700,667,664,667,661,718,687,695,1187,1202,1189,1221,1217,1181,1155,1192,1169,1155,1176,1155,1210,1131,1166,1128,1187,1219,1129,1153,1159,1160,1225,1217,1177,1144,1180,1105,1173,1204,1001,1005,986,988,1029,1010,993,994,1017,994,989,1018,998,983,990,981,1003,1019,997,1016,1004,1002,1003,990,988,997,996,1014,1004,1020,1054,1012,989,1057,1000,1045,1012,1035,1016,1013,1020,1017,981,1035,1023,1002,1042,987,976,987,977,975,988,997,980,993,994,975,984,994,997,996,996,972,974,969,981,974,970,982,1001,986,999,992,997,1006,1017,993,997,1014,1022,1000,986,986,995,1004,978,992,984,1011,993,1011,1021,999,1020,993,1004,1009,1015,978,864,847,861,897,856,877,889,852,854,873,868,876,871,889,864,896,859,875,874,884,677,666,684,658,694,668,698,676,704,685,712,692,692,690,693,698,682,660,698,692,687,768,793,757,813,805,777,781,793,803,789,792,763,792,791,752,781,762,796,796,771,779,770,765,697,702,690,687,678,688,684,683,687,686,691,685,708,669,689,680,681,691,695,692,692,676,692,700,671,663,680,679,673,1067,1097,1071,1030,1078,1062,1070,1090,1083,1080,1002,1082,1075,1064,1069,1089,1044,1091,1042,1050,1049,1074,1044,1078,1096,1062,1040,1049,1056,1098,1078,877,932,954,905,885,879,877,863,887,895,890,899,916,932,945,876,890,944,899,891,901,903,895,923,646,639,641,640,680,645,638,658,643,661,629,654,616,631,666,646,628,658,662,624,647,623,638,624,717,727,737,755,781,714,712,719,774,721,735,736,734,738,732,758,753,734,769,719,735,732,752,765,746,775,756,740,759,1125,1096,1107,1099,1102,1127,1108,1080,1124,1111,1087,1060,1087,1080,1095,1086,1109,1114,1124,1091,1102,1130,1089,1078,1134,1083,1099,1116,772,738,776,803,773,767,724,800,774,797,788,748,733,770,723,742,803,793,786,853,761,790,727,767,758,823,771,953,932,992,970,962,969,972,958,986,972,988,985,927,956,951,954,1001,973,953,1010,956,984,978,994,1002,987,986,990,1007,970,995,991,974,988,994,989,1011,995,975,971,976,996,990,969,984,1013,911,952,941,947,973,972,942,929,942,943,952,932,939,938,937,938,944,934,952,920,960,919,925,944,685,706,730,677,698,721,742,680,738,715,687,677,729,694,681,698,704,680,697,728,708,680,702,725,687,719,711,669,740,899,886,905,914,915,893,911,902,903,917,926,922,915,896,900,898,872,892,904,885,878,1043,1055,1088,1069,1054,1067,1076,1027,1046,1081,1063,1039,1060,1058,1060,1052,1014,1099,1024,1061,936,1003,987,966,981,969,992,1007,975,1010,994,1002,971,974,1026,1019,992,1016,1025,1024,1028,1015,1032,1030,1009,1043,1024,1038,1031,1003,1039,1027,1029,1012,1025,1030,1033,1017,1052,1019,1025,737,711,709,721,707,720,702,667,748,743,723,737,748,683,709,735,723,734,729,756,710,730,732,716,733,720,757,1012,1037,1049,1080,1089,1093,1043,1061,1082,1043,1090,1072,1081,1071,1036,1072,1047,1045,1080,1029,1082,1092,1075,1071,1060,1089,1107,1081,1079,1101,1074,1098,1065,1082,1074,1091,1058,1078,1077,1102,1078,1074,885,882,854,885,884,878,891,868,863,890,879,915,909,882,900,902,869,870,870,876,884,880,920,852,858,844,841,881,895,853,673,666,663,671,692,670,667,670,664,655,632,676,669,645,682,655,644,668,659,669,679,637,644,668,639,659,656,656,932,921,912,940,922,892,915,910,931,897,944,911,913,886,907,918,910,904,905,702,714,708,716,719,719,696,715,701,725,711,700,711,740,696,717,702,700,726,703,715,722,695,651,662,651,630,655,651,641,656,661,644,652,660,658,634,649,645,641,658,623,649,692,662,647,624,653,637,655,626,931,901,970,903,922,928,916,925,901,885,906,838,946,961,896,916,897,904,922,913,923,920,899,945,926,921,926,791,820,822,816,835,834,812,834,834,819,809,814,801,838,793,802,815,808,815,810,840,801,807,819,812,835,805,801,811,830,829,844,708,721,710,719,695,682,713,701,698,721,690,707,734,708,703,722,714,694,718,688,699,734,706,875,855,860,870,854,855,877,868,839,868,855,878,849,842,834,843,879,851,860,862,1052,1055,1045,1057,1014,1059,1038,1043,1029,1027,1018,1048,1049,1059,1062,1057,1065,1040,1029,1082,1022,1030,1052,1021,1007,1046,1037,1045,1033,1036,1030,1065,983,951,981,969,967,958,972,984,918,979,961,974,981,930,989,968,940,1001,934,924,970,947,947,939,974,964,945,959,964,1017,1055,1027,1046,962,1031,1028,1013,1061,1034,1027,1027,1043,1040,1060,1029,1015,1051,1066,1108,1068,1049,1004,985,1042,1065,1032,1005,1072,999,1086,1016,1006,1019,1030,1025,1027,1029,1011,1007,1016,1029,1010,1030,1007,1009,1011,1028,1014,1026,1015,1037,1022,1040,959,940,936,931,938,964,939,949,941,919,948,944,935,954,911,981,941,953,679,699,724,683,681,686,710,701,702,688,674,675,698,680,678,710,708,673,655,696,672,688,646,683,1038,1053,1029,1027,1062,1030,1018,1030,1035,1043,1030,1031,1018,1049,1044,1068,1035,1044,1034,1037,1061,1035,1056,1020,1045,1024,1008,1021,998,1000,993,1015,1003,993,1011,1019,1001,1040,996,1019,983,1019,995,1032,1022,992,995,997,1011,1001,1000,1059,987,989,1015,971,1062,1017,1036,1003,1015,1047,1021,1030,1007,1025,1033,1017,1021,1026,1017,1033,1017,1035,1007,1016,1045,1020,1022,1013,1041,1040,1124,1130,1098,1110,1117,1138,1115,1157,1117,1105,1110,1140,1109,1102,1114,1137,1122,1126,1099,1138,1119,1114,1105,1106,1126,1130,1121,1104,1117,1103,961,987,993,970,999,995,972,979,999,968,984,992,964,980,973,979,940,971,970,953,1003,982,956,996,958,956,947,950,951,959,957,942,950,953,943,947,954,959,967,935,961,948,969,951,822,815,796,809,812,822,821,841,819,812,871,848,819,829,820,802,807,842,785,810,829,794,805,791,793,822,837,806,831,975,1022,1040,1006,1006,1021,975,985,994,1015,1022,993,1011,1000,1025,986,997,1016,995,1014,1001,1011,996,1002,1010,1016,1009,1015,1022,1013,992,979,989,988,999,980,976,991,990,1001,999,994,984,979,990,982,994,1017,991,995,992,1016,995,983,999,1006,985,984,994,955,967,957,972,971,964,961,967,968,952,944,978,984,948,968,972,960,980,965,969,975,960,968,977,963,979,977,969,971,980,986,975,964,977,993,971,987,978,982,981,971,963,970,978,980,973,985,982,988,1001,998,972,980,963,998,981,1035,1035,1022,1019,1034,1034,1037,1027,1024,1044,1005,1002,1019,1016,1026,1031,1022,1006,1021,998,1032,1054,929,906,885,899,882,923,894,911,901,891,888,927,931,933,895,902,903,910,883,923,915,920,920,896,912,898,912,691,719,715,719,732,729,699,716,723,748,760,716,721,718,722,752,728,729,743,710,709,733,726,721,714,721,980,980,948,965,943,983,982,985,956,951,978,951,985,982,989,978,947,986,975,950,961,969,1061,1011,1013,1025,1039,1021,1009,1032,1018,1035,1012,1056,1035,1006,1031,1045,1017,996,1025,1039,1039,999,1027,1002,1031,1031,1038,1033,1020,1025,1029,1052,1020,1033,1040,1031,1033,1035,1044,1044,1053,1031,1036,1047,1043,1029,1035,1023,1042,898,896,882,902,856,862,890,867,904,907,871,891,880,894,855,883,862,903,887,904,898,899,863,851,892,858,898,991,992,1015,1019,984,1009,973,997,979,1012,1012,1003,1003,996,975,974,1024,1045,1057,1053,1051,1051,1043,1026,1043,1033,1042,1057,1061,1042,1064,1039,1050,1029,1025,1029,1047,1030,1052,1029,981,961,949,951,942,963,961,954,967,942,949,949,960,962,952,979,970,968,940,955,947,942,966,950,958,946,956,818,806,832,825,806,805,814,819,817,833,823,813,832,820,820,833,812,808,815,832,694,697,710,698,700,675,705,698,686,695,710,684,693,702,706,707,702,698,696,684,683,703,683,707,698,697,708,691,688,697,702,672,712,844,834,831,863,860,849,835,847,822,854,821,854,843,855,854,830,832,827,866,866,835,848,827,860,672,663,664,669,657,636,680,679,678,688,672,678,669,658,651,694,696,666,663,678,676,688,653,651,632,681,651,664,685,641,632,633,626,650,638,626,645,631,634,635,633,633,640,650,622,640,618,627,630,646,629,1240,1239,1197,1204,1222,1178,1187,1225,1304,1267,1310,1269,1243,1258,1195,1161,1220,1222,1256,1143,1169,1191,1228,1230,1304,1176,1178,1226,1238,1032,1084,1043,1043,1080,1031,1033,1070,1079,1050,1059,1043,1036,1045,1058,1061,1042,1046,1033,1057,1059,1085,1035,1023,1085,1056,1052,1061,1054,1034,1096,1030,1056,1065,1047,1053,1029,1036,1049,1013,1044,1054,1057,1056,1033,1048,1025,1047,905,905,898,871,883,927,893,935,910,933,912,901,908,891,893,922,888,901,908,893,926,924,901,902,920,875,903,918,910,895,919,893,909,891,913,884,1025,1009,1021,997,1013,997,996,1027,1018,1016,1021,1022,1029,992,992,1019,1005,1011,1030,973,969,986,937,968,982,955,968,975,970,983,946,950,965,972,956,961,977,981,942,968,977,951,944,945,956,931,952,958,951,953,954,937,954,923,968,952,936,954,933,929,948,927,952,946,938,929,944,922,724,714,710,700,701,731,734,707,720,697,701,718,708,702,682,716,700,707,710,718,701,713,712,710,682,715,714,690,724,1036,1054,1022,1049,1067,1062,1039,1052,1029,1028,1031,1072,1035,1031,1024,1053,1045,1057,1037,1029,1035,1078,1045,1028,1032,1048,1048,1009,1027,1014,1019,1030,1033,1017,1050,995,1009,1036,1009,1038,1023,1046,1003,1008,1019,1021,1029,1035,1029,1020,1003,1022,1022,1014,1023,1042,1003,1016,1015,1007,1007,1011,1003,998,1005,1016,1000,1016,997,1023,1017,1001,1013,1012,986,1024,1021,1003,1006,1021,1002,977,985,1018,1002,1003,996,1006,1002,992,1009,991,1004,1002,991,998,1003,993,991,998,1008,982,1006,1001,986,1005,986,996,1013,981,1012,1000,1012,1002,982,1006,1004,1003,826,795,825,829,865,834,827,832,882,826,867,846,854,870,849,831,853,830,845,879,807,845,852,854,841,904,677,669,675,650,664,652,638,666,672,662,661,665,659,654,671,667,676,626,1298,1208,1212,1267,1238,1250,1167,1272,1189,1235,1206,1195,1207,1160,1237,1236,1217,1212,1197,1249,1036,1009,1041,1024,1058,1019,1021,1008,1025,1017,1056,1034,1042,992,1060,1016,1018,1040,981,986,1058,1001,1019,1018,1021,1053,1053,1061,1045,1058,1071,1058,1054,1058,1047,1046,1071,1034,1071,1049,1047,1071,1076,1056,1063,1071,1079,1059,892,931,888,866,884,868,891,876,876,920,890,870,920,866,827,895,887,900,878,889,896,888,918,877,852,924,852,867,872,907,899,889,844,868,1025,1025,1054,1033,1020,1042,1058,1068,1031,1064,1030,1052,1050,1025,1062,1006,1035,1056,1007,1024,1026,984,979,973,986,946,952,949,967,956,967,951,958,969,993,970,988,1002,969,960,969,966,978,966,971,973,971,992,989,974,1005,1014,998,987,1011,997,982,999,979,998,999,1018,999,972,1006,1006,995,994,989,984,995,1017,732,706,725,704,716,672,701,709,706,713,709,709,729,751,686,716,727,712,700,702,756,700,721,732,1000,1003,999,997,1008,999,1033,1008,988,984,1024,1006,997,994,983,1006,998,981,987,1003,1079,1076,1061,1076,1065,1088,1066,1070,1074,1069,1068,1077,1088,1078,1043,1081,1068,1081,1069,1059,1084,1074,1062,1105,1055,1080,1089,1040,1103,1082,1079,941,944,956,965,964,929,914,963,963,957,988,946,965,984,973,967,977,983,1097,1069,1088,1068,1036,1060,1060,1060,1077,1081,1059,1035,1107,1071,1073,1049,1046,1059,1066,1065,1077,1069,1082,1051,1082,1085,976,953,963,962,957,964,962,949,956,922,960,959,945,970,945,972,990,976,942,948,967,968,942,979,734,730,719,713,705,735,730,703,718,723,702,740,703,741,758,714,680,733,710,740,698,724,701,675,691,687,690,681,717,699,692,688,668,691,682,709,668,688,700,679,686,685,681,716,683,657,674,1159,1207,1113,1111,1163,1194,1122,1141,1128,1115,1169,1128,1105,1218,1132,1157,1119,1120,1132,1193,1204,1148,1191,1140,983,941,936,949,922,991,965,963,946,930,917,972,973,955,973,958,959,977,932,938,951,694,714,708,683,697,689,704,731,691,715,705,708,708,708,709,691,710,681,673,697,712,706,717,688,698,712,721,726,708,716,729,745,741,718,719,728,734,736,713,719,739,717,730,741,1046,1052,1017,1032,1046,1019,1025,1069,1017,1021,1055,992,1007,1002,997,1065,1023,1064,1051,1047,984,1038,1040,1039,1033,1011,1046,1072,996,1013,1007,1008,1019,1001,995,975,995,1018,991,973,1011,1003,1009,999,997,1000,1000,994,998,993,989,1005,1017,988,1017,969,993,971,948,950,937,954,989,974,970,949,958,920,932,942,927,945,961,958,951,953,961,946,951,951,975,978,1015,996,993,952,1002,993,1028,958,991,1000,999,1045,987,995,979,967,994,913,883,827,894,890,876,912,860,926,892,892,898,867,890,887,872,909,879,868,927,879,869,911,864,654,649,688,662,647,647,616,659,630,656,660,660,649,660,656,655,677,655,651,625,643,664,647,630,678,644,638,673,643,620,657,657,651,666,655,650,646,671,639,619,665,678,659,622,656,650,666,634,666,650,652,637,1090,1169,1157,1220,1129,1171,1186,1204,1181,1170,1177,1201,1159,1149,1182,937,959,966,922,917,925,959,972,927,953,903,898,939,982,924,906,964,901,938,914,955,966,919,673,664,653,660,657,643,682,660,654,640,637,644,664,682,655,669,652,638,675,665,663,692,701,922,836,882,877,943,835,926,857,887,881,897,893,894,852,886,856,888,885,864,923,938,914,903,862,895,868,874,928,836,809,799,813,820,819,800,802,821,820,803,805,838,829,816,808,826,816,820,818,821,836,831,825,803,803,800,808,838,690,726,723,708,697,705,690,688,720,697,684,721,690,721,717,697,684,726,708,721,694,728,682,823,822,838,842,820,830,814,836,832,842,854,844,843,829,817,842,844,859,832,835,815,848,840,816,838,840,947,1005,974,937,973,981,994,985,964,978,984,1013,970,1004,969,958,953,968,967,990,967,966,930,933,870,914,896,914,867,902,912,916,875,908,916,905,900,934,888,877,914,907,903,915,896,917,883,891,869,917,922,884,597,612,608,618,615,636,620,615,604,602,627,572,617,596,612,620,600,595,582,599,612,594,607,594,608,602,621,618,599,618,616,627,609,609,634,630,621,614,626,608,608,612,612,609,614,656,701,689,706,721,696,648,698,693,715,675,698,671,672,695,725,681,689,714,694,648,689,675,665,684,664,676,675,694,730,684,990,1009,984,991,1002,1022,1007,992,1020,1024,982,1010,991,991,963,1023,1008,1034,1012,986,1000,992,985,1026,1004,988,986,967,1008,992,981,1003,996,975,964,990,1001,977,986,1033,995,990,995,1020,1005,1001,1004,1018,1007,986,996,999,1034,985,964,998,960,1023,975,999,1029,1004,965,914,882,918,897,913,926,910,887,915,900,903,891,894,879,895,920,901,927,897,921,883,904,868,1046,971,1004,936,1018,1078,1007,1043,973,996,964,989,1000,954,1034,999,1014,953,969,956,920,1026,1020,1012,994,1011,997,1002,993,1021,983,1009,990,1010,993,1009,1012,1010,1006,1001,1002,991,984,1007,993,1011,974,1011,994,996,1006,920,914,913,902,892,903,925,889,905,917,910,886,900,903,900,920,901,909,898,901,898,692,707,669,685,681,702,697,680,723,661,698,699,698,708,703,681,695,674,860,868,829,884,874,868,884,886,889,852,861,866,867,874,890,902,845,862,853,859,1013,1015,990,1006,966,991,1017,1023,1008,993,1011,1034,978,1003,972,998,996,1004,1046,1045,1090,1045,1060,1032,1048,1058,1048,1041,1040,1045,1046,1061,1068,1031,1053,1047,1041,1071,1046,1073,1029,1031,1045,1029,1058,1050,919,914,913,938,919,944,924,928,945,912,915,918,928,935,928,924,905,943,932,922,908,924,929,946,652,683,657,653,647,670,623,671,680,632,657,648,634,672,637,660,644,643,626,668,657,664,650,640,642,613,653,686,642,690,629,639,620,603,585,568,592,629,601,597,587,610,599,606,584,626,605,602,595,603,613,576,589,607,625,611,612,595,1019,1061,1192,1117,1119,1149,1156,1129,1147,1150,1184,1103,1146,1210,1185,1152,1182,1125,1243,1199,1106,1194,1107,994,1016,1012,1001,993,996,1029,1008,1019,989,979,1022,1007,1014,994,998,999,997,1020,985,973,1012,1006,1012,694,711,710,695,723,686,704,727,718,705,746,719,690,712,709,667,723,695,713,1067,1050,1044,1040,1041,1064,1064,1076,1054,1069,1052,1060,1047,1050,1060,1075,1074,1082,1088,1051,1045,1085,1075,1070,1045,1077,1064,1055,966,958,901,939,910,915,932,924,929,901,934,955,936,945,916,958,935,929,929,939,1015,1016,1009,1012,1027,1044,1039,1014,1043,1025,1018,998,1026,1047,1024,1034,1020,1016,1016,1046,1069,1012,1028,998,1028,1020,1011,894,913,906,889,923,913,912,892,903,902,914,904,909,939,908,900,892,890,867,882,889,924,894,897,894,587,596,605,595,611,631,637,607,588,639,612,614,639,617,595,562,613,612,675,622,653,671,664,681,655,657,617,661,666,626,650,660,706,676,688,673,652,654,672,651,649,654,653,684,658,959,991,972,943,974,966,977,960,990,973,956,982,963,978,987,982,986,953,997,999,1013,958,977,973,1007,720,720,726,711,714,742,701,703,669,743,751,681,716,710,688,724,691,743,694,759,693,653,640,660,640,665,660,661,655,660,650,644,647,665,664,916,941,926,926,944,935,936,927,935,922,939,935,911,906,935,937,912,909,932,941,913,928,935,909,929,930,914,947,905,1030,985,979,993,969,974,983,983,953,996,945,965,979,976,955,971,975,986,962,949,949,967,967,965,980,963,962,953,947,938,953,944,923,951,968,964,965,963,938,945,939,956,978,938,955,933,661,655,640,645,642,664,654,651,648,667,659,656,655,650,632,645,676,659,707,655,662,658,639,638,1135,1048,1080,1060,1089,1082,1146,1068,1054,1097,1060,1050,1096,1105,1135,1113,1073,1048,1054,1047,1072,1068,1118,1094,1069,966,981,970,990,989,963,997,997,982,970,991,998,1020,1000,987,977,966,986,965,985,1009,970,974,987,977,982,1000,988,967,989,991,1094,1080,1135,1090,1064,1075,1081,1112,1107,1083,1108,1104,1104,1091,1124,1097,1080,1096,1074,1090,1075,1102,889,916,900,942,867,842,891,874,900,909,885,906,883,867,890,900,854,863,863,880,841,894,831,849,711,747,742,740,761,734,756,761,714,742,748,737,749,731,733,755,752,707,741,698,730,712,705,728,755,766,726,763,747,768,756,748,730,750,748,773,761,766,753,737,765,740,770,732,753,1084,1047,1081,1080,1080,1097,1047,1082,1096,1095,1072,1082,1081,1117,1075,1064,1042,1077,1108,1052,1068,1098,1054,1103,1076,1068,1067,1057,1078,1069,1049,1042,1046,1038,1055,1061,1056,1053,1053,1036,1051,1050,1051,1065,1060,1056,1039,1043,1051,1064,1061,1066,1066,1042,1058,1055,1058,1048,1071,1048,1055,948,933,922,935,940,939,956,943,956,945,943,927,918,930,936,953,933,934,910,951,919,939,949,940,943,953,802,815,847,811,808,809,812,816,807,821,831,827,806,827,792,814,816,825,792,791,673,711,690,694,717,711,668,686,711,678,671,690,694,691,711,687,689,732,692,702,689,699,683,1115,1106,1137,1101,1104,1160,1131,1115,1131,1136,1114,1132,1150,1170,1111,1118,1136,1030,1119,1146,1129,1086,1162,1116,1086,1112,1171,1149,1159,1124,1133,1176,924,984,935,928,928,892,959,933,934,933,948,897,951,916,909,904,908,926,933,925,925,941,912,926,937,907,919,1066,1056,1066,1060,1044,1051,1069,1073,1073,1074,1062,1061,1071,1042,1056,1077,1068,1067,1041,1074,1047,1045,1060,1077,1062,1072,1079,1036,904,909,923,924,915,936,923,942,937,948,923,887,956,927,957,906,916,936,915,919,889,879,996,1002,1004,1007,1014,984,978,989,1008,1003,1002,1007,972,998,1009,1004,997,1012,1012,1020,1005,1004,1007,1010,1001,1011,854,832,868,854,823,854,864,894,891,871,845,866,874,855,910,851,865,855,903,905,644,655,683,671,619,651,668,634,651,676,667,664,655,666,666,654,646,667,649,1093,1097,1077,1059,1108,1077,1118,1081,1071,1072,1064,1110,1073,1111,1041,1053,1123,1122,1094,1078,1065,1032,1093,1052,1101,1047,1054,1071,1088,1068,1079,1054,1072,1094,1083,1090,1098,1098,1059,1075,1077,1084,1083,1072,1076,1056,1066,1062,1074,1086,935,956,965,965,983,927,920,931,918,920,987,930,926,933,963,926,954,967,950,901,914,915,918,913,932,630,627,606,610,629,637,625,642,633,615,615,587,664,624,619,647,629,606,658,639,632,606,646,627,589,666,715,712,700,683,705,696,694,651,708,690,709,683,697,718,704,670,704,730,693,694,688,706,728,713,680,678,720,682,672,690,680,677,693,692,686,704,671,677,675,665,685,660,669,681,678,693,694,692,1079,1060,1092,1067,1087,1097,1106,1091,1061,1074,1088,1075,1100,1076,1067,1062,1084,1071,1073,1070,1078,1061,1086,1081,1062,1064,1080,1069,1064,1073,1070,1058,1093,1074,1079,1079,1058,1095,1084,1093,1060,1077,1063,864,919,940,922,876,876,917,924,902,917,923,915,898,960,925,878,882,880,933,888,916,898,881,912,909,668,658,658,633,644,634,631,603,653,645,638,630,666,641,634,630,600,613,622,630,665,637,646,663,653,627,616,649,634,651,717,719,729,725,729,696,725,699,707,723,712,727,705,734,708,712,725,698,707,746,745,695,737,731,730,729,716,1078,1081,1068,1074,1057,1086,1074,1070,1072,1044,1109,1089,1084,1069,1051,1054,1085,1075,1042,846,850,841,861,867,829,866,851,844,877,858,832,863,822,846,832,864,835,872,865,876,851,834,838,840,851,864,838,859,858,867,855,854,845,840,850,838,1037,1028,1035,1023,1042,1021,1056,1050,1037,1060,1040,1047,1040,1042,1051,1043,1060,1009,1010,1044,1046,1041,1030,1025,1048,1026,1024,939,939,901,957,944,918,945,926,903,929,927,911,935,934,905,927,972,943,902,927,939,683,665,645,702,674,641,673,677,689,673,677,668,641,643,670,695,648,656,655,665,670,647,667,648,650,649,667,629,653,609,628,625,624,632,629,616,617,606,613,627,598,618,618,596,941,951,917,934,902,961,952,898,933,928,895,948,910,947,925,899,959,981,911,951,966,918,931,910,932,920,920,694,667,699,676,712,700,710,749,724,693,683,705,683,671,724,703,701,698,724,703,742,712,721,713,623,609,645,620,616,633,626,640,623,633,632,613,628,619,622,615,616,616,647,614,613,618,621,626,636,633,623,643,626,630,620,625,1049,1061,1067,1107,1087,1116,1063,1075,1074,1076,1097,1043,1036,1076,1034,1100,1075,1075,1054,1082,1047,1078,1030,1087,1087,1106,1098,1080,1038,1111,1080,1079,1085,1075,1048,1060,1039,1057,1028,1028,1055,1017,1023,1063,1036,1067,1044,1045,1074,1024,939,960,954,961,960,945,943,938,961,925,945,961,938,970,980,965,931,945,939,983,929,936,966,960,953,947,959,984,963,938,968,959,971,993,991,936,1003,947,960,925,979,924,924,1015,951,1010,996,1073,895,956,958,968,989,963,930,1014,925,927,935,942,942,927,931,912,939,949,926,942,937,933,939,941,922,926,925,939,932,922,941,926,934,920,923,1020,1014,1037,1017,984,1020,1027,1005,996,998,1010,1012,1009,1035,1000,991,1006,1011,1010,1014,991,1016,991,1025,1005,1020,940,806,901,849,836,871,888,832,872,856,901,869,846,880,882,911,852,896,618,631,622,616,625,619,651,593,641,631,635,620,607,630,611,620,629,639,617,614,620,615,620,645,610,632,627,633,660,623,671,654,651,664,668,680,654,647,657,673,656,641,665,682,664,652,682,666,674,675,653,1209,1122,1142,1134,1150,1152,1195,1177,1141,1178,1180,1159,1185,1206,1158,1106,1163,1186,1242,1165,1118,1162,1196,1177,1184,1111,1182,1146,1089,1145,994,983,993,974,1004,999,989,971,973,974,973,999,1014,967,997,999,936,985,991,680,699,721,702,708,695,717,704,718,668,676,690,697,714,677,683,694,997,1046,1049,1075,1050,1009,1057,1089,1064,1026,1045,1096,1038,985,1084,1041,1025,1034,1045,1014,1108,1059,1043,998,1082,1042,1040,1049,1070,1059,1067,916,950,932,964,952,912,944,957,965,953,953,920,960,945,949,944,953,723,715,690,721,729,730,699,711,689,713,707,682,701,705,715,680,715,669,684,695,703,699,715,733,688,704,673,1090,1095,1065,1056,1103,1069,1095,1105,1071,1063,1105,1051,1038,1066,1097,1089,1067,1057,1095,1045,1067,1069,1079,1084,1088,1067,1121,1093,1108,1085,1067,1109,1106,1079,1079,1070,1068,1063,1092,1095,1080,1076,1110,1079,1101,1075,1050,1091,1092,1075,1082,1094,1061,1087,1068,1081,1072,1079,1085,995,960,954,1002,946,953,965,950,978,967,970,949,958,1007,979,980,974,985,959,945,979,958,963,1080,1088,1091,1081,1075,1069,1067,1100,1058,1079,1062,1066,1078,1094,1071,1081,1079,1085,1068,1065,1090,1082,1071,1092,1087,1089,1102,1073,1086,932,972,958,934,958,944,937,941,954,949,945,968,931,930,942,932,941,913,927,907,920,946,925,927,929,920,1094,1073,1073,1070,1081,1051,1098,1050,1064,1079,1104,1084,1073,1086,1093,1092,1101,1096,1071,1100,1061,1063,1069,1094,952,913,885,914,917,895,853,901,867,866,881,909,873,873,903,895,868,891,886,848,860,894,899,888,626,640,600,598,637,647,634,656,631,636,639,625,646,624,651,604,621,642,622,619,632,597,630,617,644,602,629,634,1103,1112,1119,1108,1066,1113,1049,1139,1109,1120,1080,1071,1106,1114,1083,1136,1102,1116,1112,1071,1148,1138,1097,1099,1129,1107,1084,1105,1103,1093,1089,1098,1125,1078,1106,1136,1108,1134,1115,1100,1100,1086,1120,1136,1113,1145,1082,1109,1106,1112,1094,1113,1088,1076,955,953,980,974,939,939,961,924,939,961,941,961,981,928,950,928,968,935,936,1098,1112,1097,1089,1086,1102,1114,1111,1103,1112,1090,1106,1112,1090,1085,1071,1135,1111,1098,1092,1100,1102,1101,1118,1099,1090,999,983,1015,972,955,964,970,967,990,956,950,985,979,972,980,984,987,985,953,978,996,983,958,954,975,997,974,982,981,762,805,802,809,768,758,779,791,767,779,797,768,790,781,768,749,777,790,812,754,787,752,767,796,791,789,1039,1103,1076,1090,1099,1099,1092,1093,1080,1143,1094,1081,1102,1097,1090,1081,1096,1060,1100,931,910,930,908,918,942,915,920,932,960,903,899,929,939,922,894,931,899,926,912,942,913,939,709,700,703,707,728,712,710,703,702,715,730,674,703,707,686,733,718,720,678,712,715,710,729,697,718,901,897,895,886,890,892,885,900,899,895,910,923,894,866,883,887,887,890,865,902,890,917,870,894,856,869,878,899,1081,1090,1075,1081,1084,1070,1081,1100,1100,1075,1084,1103,1091,1096,1075,1080,1094,1066,1090,1065,1115,1071,1094,1084,1086,1072,995,1010,998,1014,1005,1005,980,989,1001,1000,989,1012,1006,1011,1023,998,1008,983,1008,1034,1003,1000,909,930,917,902,902,901,900,906,888,898,882,892,894,913,893,907,903,908,919,910,882,865,898,848,845,818,848,839,839,831,844,839,861,874,835,853,836,867,848,840,850,861,846,847,855,831,851,838,824,709,677,673,693,695,672,681,686,679,691,689,681,690,685,688,677,672,678,690,703,669,692,1124,1115,1116,1119,1084,1100,1133,1144,1125,1086,1131,1126,1101,1154,1160,1119,1149,1156,1132,1104,1120,1113,1152,1123,1128,1183,1135,1135,1133,1129,931,930,922,910,901,915,896,908,930,897,971,874,891,891,884,901,937,945,934,907,915,908,988,900,967,935,956,930,888,912,952,921,1069,1051,1036,1039,1015,1030,1025,1054,1001,1029,1055,1026,1044,1039,1008,1042,1048,1134,1140,1111,1125,1120,1143,1128,1116,1118,1116,1152,1094,1164,1146,1131,1128,1133,1122,1092,1108,1136,1100,1157,1159,1119,939,974,969,914,970,943,931,988,966,956,949,934,951,968,961,944,928,966,974,960,942,951,952,1037,1062,1062,1050,1013,1042,1023,1014,1067,1050,1036,1017,1006,1036,1055,1044,1087,1043,1014,1054,1005,1034,991,969,992,1040,1050,1031,1037,1040,1039,1060,1045,1045,1043,1029,1028,1060,1043,1033,1047,1024,1041,1041,1032,1049,1049,1038,1039,1050,890,905,881,888,912,864,925,896,919,898,907,880,902,904,879,859,902,895,730,695,686,714,666,717,703,659,681,683,670,690,675,679,680,681,678,697,693,675,687,694,674,731,689,682,668,988,970,1010,961,993,978,929,1007,1012,980,1011,985,975,1023,976,958,962,961,1002,982,985,1001,828,846,819,846,833,834,842,832,818,840,843,882,849,811,823,849,808,845,818,851,832,858,824,830,823,847,662,667,658,648,679,676,665,670,655,664,655,670,658,644,654,667,667,647,647,690,679,667,681,687,695,640,642,639,632,652,647,628,651,644,668,641,641,653,637,642,636,647,653,622,637,664,649,646,632,655,657,952,917,901,912,891,918,929,964,903,894,952,892,873,932,925,912,913,933,881,936,928,890,910,924,958,779,782,770,754,740,774,743,751,756,774,752,805,745,775,744,754,754,758,758,765,745,805,666,681,670,695,681,650,666,682,687,678,681,684,682,680,668,695,675,674,697,655,996,1026,1041,989,995,1031,1014,998,1026,1021,966,988,988,1004,1022,1014,995,1011,1020,1025,1022,1061,1044,1022,1010,972,1006,934,938,957,950,936,958,957,957,945,971,959,948,948,982,995,947,965,960,938,941,969,932,931,947,951,960,972,949,953,935,1053,1046,1073,1061,1058,1063,1061,1065,1065,1072,1070,1072,1072,1072,1028,1063,1061,1075,1055,919,904,928,943,912,925,939,937,937,933,914,893,922,938,928,949,930,1022,1012,1020,964,1006,1003,1040,970,1029,1031,962,975,997,1053,977,1023,1074,1084,1051,955,970,1063,1072,954,1035,999,992,982,1009,1053,984,973,1034,1028,1020,968,949,1009,994,1048,1037,1014,1068,1054,1041,1063,1062,1068,1070,1070,1056,1071,1048,1052,1071,1063,1062,1065,1047,1065,1049,1044,1068,1059,1047,1073,907,895,925,895,915,875,879,866,916,894,867,889,901,881,911,889,882,884,897,892,918,881,890,902,886,932,873,878,675,680,679,689,667,689,703,657,659,668,703,671,671,707,680,689,972,960,957,973,963,994,968,968,978,1001,954,957,938,967,1009,961,985,967,983,977,975,972,979,960,959,953,960,950,948,980,982,949,983,1082,1094,1084,1073,1081,1094,1054,1093,1075,1074,1091,1074,1067,1073,1114,1075,1089,1074,1098,1070,1098,1078,1095,1083,1098,1107,932,950,925,926,951,939,908,946,918,907,905,938,945,953,917,946,920,915,896,928,895,929,922,941,945,892,952,934,925,1163,1155,1170,1169,1153,1180,1171,1174,1177,1160,1163,1154,1185,1175,1178,1176,1170,1155,1193,946,1009,957,977,971,968,955,975,968,950,979,966,954,954,966,974,931,943,925,993,1013,956,920,694,693,700,695,696,716,677,684,698,711,710,682,720,686,697,689,731,703,693,716,728,679,680,701,706,1081,1074,1081,1112,1091,1112,1124,1114,1099,1121,1047,1088,1145,1049,1108,1113,1114,1084,1033,1099,1088,1108,1138,1061,1077,1076,1108,1060,1073,1096,1061,1137,1084,917,931,912,928,928,964,916,990,919,920,952,912,911,919,912,929,927,898,939,914,922,942,917,920,671,693,676,680,688,678,708,686,660,692,686,726,683,701,701,686,657,673,689,668,713,707,710,681,1093,1116,1051,1140,1130,1109,1101,1095,1101,1114,1112,1128,1105,1106,1122,1092,1118,1136,926,948,962,950,946,939,927,966,928,959,913,938,941,939,927,946,951,960,915,969,938,982,945,955,937,943,928,1041,1017,1049,1019,1035,1006,1008,1027,1016,1026,1007,1011,1041,1025,1021,1032,1027,1042,1020,1014,1017,1015,990,1017,1004,867,884,862,862,896,884,853,827,868,862,883,847,860,851,849,829,863,846,822,888,887,904,855,663,661,669,658,671,692,658,670,689,683,674,671,679,658,671,665,674,656,671,687,659,663,647,690,678,675,645,654,674,954,934,909,948,887,915,940,953,919,988,902,921,921,895,928,957,929,948,950,868,946,939,939,818,831,832,801,826,836,837,832,834,826,837,847,844,841,869,827,821,840,797,650,655,671,644,679,675,657,666,635,644,663,642,673,618,653,666,685,676,647,642,676,672,656,673,650,684,650,651,657,650,658,593,605,594,596,583,597,612,601,596,606,598,604,603,625,629,586,603,611,613,603,597,601,601,601,601,1104,1147,1053,1078,1136,980,1126,1064,1075,1096,1066,1095,1052,1034,1035,1078,1052,1074,1080,1094,1057,930,986,940,964,978,1001,957,960,935,977,968,953,907,949,942,924,949,953,946,975,1015,993,1022,997,984,1036,1028,978,980,963,989,1018,1029,1002,985,987,1002,996,980,1014,1037,978,994,1032,1008,1004,999,997,990,1011,997,998,1014,994,1003,995,1015,999,997,1024,995,1022,1006,999,1017,1013,836,841,890,867,884,872,837,882,903,894,862,889,882,862,885,843,908,881,864,878,860,881,866,879,865,868,870,873,1005,1007,971,967,946,1012,1010,991,939,985,1066,1017,985,982,997,943,990,949,991,942,949,948,990,965,1003,1040,1033,1035,1033,1031,1054,1024,1046,1060,1034,1032,1051,1038,1038,1030,1030,1019,1028,1026,862,910,910,915,904,875,881,931,902,910,905,916,879,885,915,847,860,875,920,893,932,913,908,1019,1091,1039,943,965,1030,1037,1034,1067,1037,1014,1027,1006,1013,1007,993,1000,998,990,986,1051,1035,1001,1052,1020,991,1010,1008,1035,1014,1003,1034,1057,1067,1032,1055,1085,1052,1094,1088,1068,1058,1023,1089,1090,1061,1076,1086,1055,1092,1050,1063,1058,935,988,966,956,948,964,972,959,988,958,961,966,973,949,961,947,983,970,986,963,1009,885,896,870,869,856,902,886,868,888,894,905,921,896,900,918,902,898,867,891,883,883,867,875,887,890,895,888,879,874,1050,1027,1056,1051,1034,1049,1032,1047,1043,1052,1055,1062,1041,1058,1020,1045,1031,1039,1064,1039,1041,1031,1058,1046,1045,1072,1040,1037,889,925,937,909,897,868,921,910,938,911,933,917,916,926,937,904,926,903,931,930,925,895,942,943,969,986,1053,1080,1070,1061,1063,1088,1021,1047,1066,1008,1053,1045,1048,1037,1063,1069,1069,1057,1067,1053,1062,1061,1067,1064,1076,1068,1047,1071,1065,1055,1060,1062,1056,1066,1043,1045,1080,880,909,922,913,912,917,905,907,907,886,896,900,915,938,871,921,925,918,927,923,880,920,900,914,926,935,932,913,943,1006,997,1009,994,984,998,1006,996,1032,1037,986,1018,1002,986,1013,1011,1000,1007,980,1000,1073,1037,1022,1018,1037,1029,1046,1039,1028,1034,1041,1039,1045,1035,1028,1025,1030,1016,1024,1041,1038,1024,1032,1032,1044,1047,1028,1034,1031,914,946,949,941,944,947,969,948,963,944,943,945,943,949,958,924,948,932,969,981,939,975,965,936,949,937,945,954,949,934,715,727,710,725,729,722,712,675,695,710,727,726,718,697,726,720,721,705,739,707,720,734,723,729,710,731,717,717,737,759,734,722,775,736,726,733,710,740,742,718,734,720,734,726,735,744,724,724,744,734,712,685,671,673,676,670,669,680,668,662,674,664,658,670,680,653,680,672,659,659,662,678,1051,1061,1053,1031,1042,1035,1037,1066,1060,1079,1056,1048,1045,1041,1021,1000,1042,1053,1011,1071,1051,1091,1056,1037,1048,1088,1066,1064,1045,1046,1050,1030,1045,1069,1052,1042,1055,1061,1055,1035,1033,1076,1064,1051,1077,1047,1043,1062,1047,1047,1084,921,939,886,901,889,945,927,860,926,874,901,879,907,883,895,911,911,907,941,638,591,632,631,612,648,596,657,637,613,589,595,587,624,629,613,601,626,613,646,634,629,705,713,680,693,699,708,691,693,683,699,692,706,695,723,690,701,681,680,701,712,715,705,698,664,696,741,703,702,698,713,698,724,725,712,697,706,705,704,714,713,688,707,701,712,698,703,700,704,706,714,697,746,740,744,746,759,717,746,720,765,773,779,726,741,745,728,760,747,776,735,756,755,751,748,750,748,755,770,722,726,723,726,718,722,727,713,743,718,722,711,722,710,720,712,718,719,715,706,728,867,936,937,900,899,942,886,883,948,916,933,858,912,907,899,913,869,910,890,882,857,886,896,720,755,757,747,742,723,717,736,723,742,730,716,732,762,756,734,737,744,746,764,751,759,781,760,746,720,687,677,672,676,687,683,681,677,674,678,688,671,702,669,691,692,663,702,684,669,665,671,697,688,689,674,919,938,925,953,962,968,979,955,974,969,983,969,966,1001,961,963,955,947,943,948,956,951,924,977,911,964,953,937,933,785,775,766,765,760,753,758,759,759,769,781,775,793,760,770,746,745,778,767,741,739,755,774,733,767,744,782,729,615,622,630,640,631,643,633,620,649,635,637,648,638,627,629,648,646,640,646,645,644,623,631,622,612,615,614,613,634,606,611,611,612,632,633,611,620,615,617,636,619,617,608,730,726,691,710,710,728,694,708,716,732,717,719,719,711,725,737,705,724,703,713,699,707,712,703,690,705,715,700,710,704,731,736,717,710,715,721,735,725,728,724,733,723,717,713,719,723,727,727,711,711,726,734,727,723,1152,1199,1151,1165,1201,1158,1160,1183,1272,1140,1188,1188,1213,1148,1144,1205,1147,1143,1208,1210,1180,1164,1173,1210,1150,1139,1171,1125,1005,1033,1036,1007,1022,1021,1022,1014,1033,1032,1006,1021,1000,988,1021,1017,1023,981,1007,1042,1036,1056,1027,1041,1039,1016,1026,1013,1060,1025,1006,753,637,731,706,668,672,647,705,713,620,729,706,648,701,683,729,687,686,735,684,702,670,690,665,683,677,719,693,627,956,970,924,931,923,900,948,964,945,975,932,934,1008,967,923,951,944,946,967,906,975,920,916,913,967,772,801,792,783,798,809,778,792,816,779,768,799,816,801,823,806,776,802,819,780,819,785,819,819,792,828,802,923,930,916,922,935,955,921,910,926,898,932,934,949,948,946,918,918,936,869,865,861,867,886,869,874,881,863,873,886,883,865,880,875,912,859,872,877,869,878,871,712,705,690,698,683,692,711,701,696,688,696,679,681,687,700,704,700,697,693,699,741,688,713,701,695,691,726,708,703,688,627,600,615,598,609,632,606,602,615,622,601,618,602,612,614,594,620,600,596,601,594,615,605,597,610,614,599,601,597,600,604,626,626,631,614,616,617,603,620,617,638,632,624,608,626,632,619,604,638,595,634,625,621,620,621,633,624,1129,1052,1115,1078,1014,1083,1086,1118,1090,1130,1074,1097,1079,1095,1099,1093,1121,1050,1086,1074,1023,1084,1043,1098,1053,1039,1052,1044,1067,1038,1060,1037,1079,1116,1061,1073,1057,1063,1044,929,968,909,978,963,974,932,985,960,960,957,953,946,946,990,958,956,953,968,951,942,982,974,971,755,744,749,761,768,743,726,767,759,771,754,753,761,768,731,732,780,781,765,743,739,767,768,766,764,760,772,762,748,701,755,772,763,754,646,673,643,661,692,674,676,666,658,674,660,668,664,686,648,673,659,678,660,675,657,639,667,673,650,574,593,588,579,586,577,576,573,595,585,584,589,565,588,589,571,592,597,586,592,554,586,606,555,608,653,660,666,683,673,672,660,687,639,665,668,657,650,637,642,641,630,674,638,662,662,655,657,794,756,791,781,781,796,774,799,732,772,773,768,787,779,791,772,786,785,813,780,812,774,765,786,809,792,800,684,675,675,701,675,687,685,685,693,680,684,692,685,687,689,678,677,682,682,694,681,674,689,692,676,697,685,670,704,987,995,981,998,985,989,1001,953,974,952,981,976,971,957,976,984,976,972,965,994,975,956,964,970,934,939,912,924,934,926,947,923,943,943,922,926,913,899,938,901,919,1008,1005,995,1002,990,981,1017,1011,984,1017,1003,997,1018,986,997,994,1013,995,979,1024,989,998,995,948,919,923,920,925,923,921,912,908,927,892,929,926,953,941,914,929,948,946,912,934,900,918,950,912,979,977,985,981,980,984,973,982,970,987,962,996,996,981,976,967,981,974,982,986,815,817,832,823,819,810,851,820,807,818,816,826,817,834,838,841,831,839,810,789,804,806,841,792,984,1017,1034,1020,1005,1022,996,1054,1015,1039,1009,1018,1023,1040,1000,998,1024,1042,1043,1030,1007,1015,1021,1024,1026,1009,1001,1004,1032,1050,1066,1035,1055,1051,1062,1028,1060,1036,1020,1042,1032,1045,1041,1051,1039,1022,1032,1036,943,949,934,915,946,917,947,939,921,943,934,930,916,922,933,956,917,911,904,931,920,919,661,652,696,637,615,690,662,680,642,661,674,665,688,643,658,642,636,652,662,662,650,691,656,671,679,671,658,659,1060,1062,1077,1069,1075,1062,1086,1080,1078,1059,1054,1099,1054,1077,1127,1080,1109,1080,1073,1078,1028,1037,1094,1088,1084,1088,1057,1059,860,861,903,854,871,921,909,915,888,863,867,859,887,900,915,878,883,863,878,925,899,648,704,704,698,683,700,691,694,698,717,702,687,706,692,719,692,725,685,672,682,701,702,672,1307,1317,1366,1373,1325,1360,1299,1322,1314,1248,1293,1256,1356,1289,1258,1301,1270,1289,1293,1271,1355,1233,1316,1346,1334,1297,1328,1010,1013,1028,1043,1030,1043,1005,1017,1005,1055,1005,1051,995,1073,1061,1036,1036,1039,1008,1041,1042,1032,1017,1030,1035,1034,675,716,696,726,711,717,686,659,683,674,712,693,677,706,693,661,721,700,686,716,701,667,676,675,1013,998,1071,1012,1046,1059,1054,1039,1014,1080,1048,1049,1015,1002,1012,1025,1011,1041,1055,1045,1041,1058,1015,1030,1040,1023,1038,1071,1056,1013,1007,871,909,922,921,917,929,918,929,916,913,935,891,896,901,909,942,891,930,915,914,914,905,915,901,909,884,925,943,901,926,991,997,1035,1038,1014,998,1012,1022,1005,1007,997,985,1039,953,1034,1017,1004,996,966,1005,1000,1009,980,999,1017,981,1020,1030,1048,1031,1031,1048,1030,1042,1021,1069,1036,1049,1035,1047,1050,1029,1057,1038,1031,1055,1053,1057,1008,1043,1037,1046,1038,944,939,960,943,942,937,949,937,937,947,958,967,947,928,948,970,953,968,958,957,964,951,942,929,934,947,710,703,673,685,713,726,701,715,725,726,691,677,689,677,728,702,706,718,673,710,692,725,732,696,651,657,656,654,647,664,669,637,664,649,649,676,666,630,652,668,668,658,1083,1086,1084,1034,1095,1084,1063,1103,1082,1076,1098,1071,1081,1095,1085,1131,1099,1062,1097,1054,1080,1057,1080,1103,1067,1079,1112,971,1004,964,958,966,981,956,976,990,963,976,967,954,983,943,984,911,930,915,912,920,921,907,909,901,894,903,925,898,911,915,905,917,908,876,870,847,869,901,877,872,848,876,880,869,865,859,878,862,882,866,873,874,866,852,905,853,874,901,890,898,867,678,679,686,711,693,693,695,678,683,697,710,663,692,687,686,679,680,697,689,676,698,698,697,712,685,1130,1127,1179,1085,1123,1148,1108,1139,1114,1101,1103,1068,1127,1103,1156,1149,1100,1125,1090,1117,1133,1124,1109,1134,1125,1155,986,974,994,982,975,974,1005,970,968,967,955,981,972,952,984,997,963,969,957,1001,944,962,973,986,972,966,958,962,923,912,930,936,881,923,891,921,910,904,920,917,917,914,918,915,922,916,924,897,902,915,875,908,1075,1063,1046,1058,1067,1080,1053,1063,1066,1083,1055,1040,1050,1037,1049,1077,1048,1054,1051,1044,1080,1059,1068,1055,909,913,920,907,938,938,918,916,915,924,923,916,907,896,903,929,922,937,933,940,680,675,646,654,694,681,684,679,673,654,680,681,647,644,658,687,665,680,675,684,1088,1091,1118,1042,1103,1069,1075,1078,1098,1087,1071,1092,1083,1069,1090,1080,1087,1073,1082,1089,1092,1106,1111,929,942,960,961,974,938,978,968,971,969,959,961,957,969,922,963,941,947,952,962,969,945,1074,1046,1069,1028,1048,1094,1060,1081,1079,1043,1054,1085,1026,1028,1083,1035,1025,1063,1129,1076,1066,1025,1049,1066,1037,1099,1104,1068,1077,1057,1004,1075,1101,1078,1079,1083,1066,1071,1096,1084,1085,1088,1061,1075,1091,1062,1069,1081,1067,1077,1060,1073,1077,1084,1076,1071,1073,1090,1076,1075,1089,948,932,976,906,936,978,965,945,958,935,955,974,1004,958,967,949,978,981,950,943,939,957,1000,955,942,677,673,662,647,681,643,670,681,682,648,656,681,666,689,658,687,674,662,644,668,672,655,681,660,649,675,650,676,660,658,682,670,668,657,663,654,682,688,673,656,676,680,684,660,659,658,695,656,661,659,1034,989,1069,1006,1020,1082,960,1030,1036,996,1079,1020,1006,1059,1048,1062,1004,1018,1007,990,1043,1061,1085,1097,1086,1082,1073,1089,1099,1065,1095,1082,1116,1080,1076,1079,1074,1086,1099,1072,1065,1054,1065,1085,1111,1073,1080,1058,910,880,878,892,872,896,896,917,902,867,884,902,907,911,891,911,885,910,907,906,887,624,645,646,616,671,654,633,669,645,672,655,648,653,657,634,636,654,632,632,632,635,651,676,640,641,626,1152,1170,1201,1245,1082,1213,1103,1177,1193,1155,1193,1131,1185,1161,1144,1143,1085,1129,1131,1121,1157,1140,1142,1053,1043,1060,1059,1041,1053,1007,995,1041,1005,1054,1011,1019,1015,1044,1010,1061,728,717,734,690,753,774,772,733,733,720,756,766,736,742,760,737,756,754,734,710,724,714,732,735,964,934,951,954,957,949,957,954,906,986,978,917,947,956,963,988,969,957,978,976,976,971,948,972,1003,1040,1031,1008,1024,1041,1028,1033,1027,1017,1027,1035,1034,1009,1027,1036,1017,1010,1036,1053,1021,1037,1028,1060,1027,1009,1017,1025,1040,997,920,916,939,940,951,931,913,935,939,971,949,952,905,930,948,965,951,949,930,954,889,920,939,948,936,642,646,647,658,662,650,642,607,655,642,633,652,670,636,635,649,655,626,631,660,674,652,655,687,657,700,618,703,636,624,635,638,627,620,596,633,615,646,604,593,630,630,627,632,634,631,589,639,614,608,653,602,621,618,690,697,643,677,675,665,649,691,662,635,654,685,641,654,657,676,688,679,645,650,660,645,680,661,636,669,647,999,1030,976,992,1000,1032,989,1008,1003,1018,1016,1020,982,1005,1006,1010,965,1012,1024,982,1005,1014,1025,965,1010,1012,1042,1055,1062,1047,1041,1050,1044,1021,1043,1060,1019,1046,1059,1055,1059,1021,1045,1041,1050,1050,1045,1053,1047,1044,1033,1026,1061,1039,886,900,910,911,892,905,883,891,904,891,910,897,898,920,904,898,873,893,907,906,915,872,888,900,916,905,900,915,925,928,960,987,944,946,938,974,949,955,947,923,939,952,954,947,981,928,955,941,928,1003,922,967,1008,931,936,904,929,952,990,978,984,974,987,995,976,989,1001,979,978,970,967,983,961,972,982,979,979,989,988,974,965,969,987,982,993,870,942,873,907,910,896,907,874,893,890,886,893,864,859,913,887,861,897,887,885,982,1011,1021,957,968,1013,1008,978,1001,1025,1002,982,965,988,990,1021,1002,1021,996,985,1021,971,994,1009,1029,977,1010,997,998,1051,1037,1016,1052,1029,1017,1021,1033,1052,1033,1046,1023,1046,1022,1029,1033,1042,1032,1027,1033,1036,901,866,875,892,920,880,883,835,884,900,903,961,889,913,904,882,898,902,894,900,864,878,925,905,897,921,878,884,920,1021,979,987,1021,994,1006,1039,1002,1047,1054,1067,1018,1032,1039,1006,998,985,1034,1001,1071,1027,1008,1016,1030,1026,1039,992,1032,1015,1023,1032,1069,1031,1031,1049,1062,1042,1052,1029,1035,1049,1037,1029,1030,1026,1035,1013,1035,1025,1031,860,903,919,892,909,896,922,891,913,911,886,919,901,909,905,904,909,919,894,878,891,890,911,900,887,903,911,693,678,700,714,686,687,696,685,668,698,711,697,709,694,671,701,705,688,677,702,701,691,704,691,718,864,879,851,841,876,829,879,854,878,866,847,870,865,862,855,822,835,845,857,852,832,887,867,869,834,850,830,857,837,844,833,882,686,668,664,679,675,657,642,667,684,659,662,700,673,685,701,677,671,669,687,686,636,627,630,627,643,626,611,639,628,653,627,622,618,638,652,628,647,650,648,627,628,649,626,1186,1175,1164,1188,1178,1184,1176,1141,1218,1196,1171,1148,1222,1174,1187,1209,1139,1178,1218,1153,1129,1210,1174,977,966,943,962,974,982,938,959,950,946,924,936,964,1019,933,947,995,940,966,1012,961,997,712,767,758,705,731,720,726,718,715,752,728,760,735,736,756,715,729,740,757,745,711,728,740,684,746,713,728,707,881,861,880,887,911,881,879,903,881,885,884,913,906,907,877,885,893,870,871,878,937,901,898,883,759,752,782,777,747,775,761,777,777,777,775,775,792,774,765,762,772,794,793,767,796,793,984,971,1003,944,986,990,1010,1012,1006,998,990,995,1001,982,1022,991,976,1009,993,1016,1036,1036,1059,1076,1042,1048,1038,1043,1043,1062,1022,1047,1046,1040,1029,1041,1058,1052,1050,1031,1043,1064,1039,1034,874,879,908,887,916,915,954,917,871,896,931,893,863,933,910,909,889,886,883,894,893,858,912,865,931,880,847,908,892,889,911,919,885,900,917,909,902,871,960,1015,971,942,945,970,1011,1010,1004,1006,1008,953,990,987,991,993,997,1041,1030,1016,1025,1049,1050,1019,1012,1035,1033,1036,1021,1037,1036,1036,1037,1033,1031,1062,1035,1030,1027,1039,1006,1035,1042,1027,1019,1031,1021,909,888,908,893,903,875,893,903,865,883,905,859,934,881,907,826,872,861,921,872,874,874,858,859,897,884,1032,1032,956,1032,984,1036,1055,1039,1015,1048,995,991,1054,979,1039,1060,1014,1033,1020,1037,1016,1058,1013,1015,1004,1041,1050,1031,1027,1055,1054,1031,1042,1028,1027,1034,1029,1030,1043,1022,1042,1039,1021,1019,1045,1043,1017,1034,896,896,883,907,892,883,903,895,905,896,919,889,895,883,883,888,925,892,903,858,880,904,906,872,880,907,868,898,678,673,687,679,676,670,656,694,656,679,707,672,689,660,685,687,675,669,666,660,668,690,680,667,684,691,677,1104,1139,1094,1073,1110,1119,1088,1102,1103,1105,1132,1083,1070,1098,1082,1108,1075,1108,1092,1136,1142,1114,1081,1123,1100,1148,1110,987,984,1009,983,974,953,974,1001,1021,988,987,1002,977,1002,994,1000,983,1001,1006,986,975,985,953,976,997,991,968,805,806,825,796,796,810,804,794,826,774,796,819,775,801,816,802,1054,1065,1072,1038,1067,1094,1056,1056,1069,1076,1081,1077,1068,1061,1050,1080,1076,1082,1066,1071,1063,1078,1072,1044,1047,930,910,919,926,945,924,921,907,908,914,937,888,927,917,900,863,910,920,892,925,946,923,920,903,892,918,694,693,654,658,666,683,655,692,674,687,679,687,678,679,686,696,684,666,685,680,686,667,675,676,697,671,675,677,687,685,677,678,1102,1102,1089,1081,1106,1121,1129,1134,1120,1136,1122,1123,1170,1128,1153,1099,1095,1087,1090,1120,1141,1142,1126,1129,1107,966,928,954,970,977,979,964,921,963,948,982,959,963,964,972,942,950,941,964,936,933,937,955,951,942,1059,1090,1063,1080,1051,1066,1049,1085,1056,1044,1044,1068,1069,1058,1069,1070,1044,1044,1022,1074,1052,1070,1050,1054,1042,1035,1044,1057,1061,1074,1061,972,976,956,965,944,969,944,974,981,968,955,966,963,981,966,957,956,970,971,974,972,931,653,618,622,656,647,606,648,674,645,615,653,632,651,644,620,614,617,637,618,630,651,675,635,626,615,604,606,617,621,615,595,639,635,637,623,607,619,628,645,636,592,620,649,614,638,621,629,627,710,697,719,707,689,715,703,708,705,710,710,703,731,729,689,720,700,722,719,695,705,743,751,769,760,775,755,782,763,719,762,774,751,751,757,752,768,781,756,760,783,760,768,757,756,764,729,732,724,719,719,718,731,722,741,727,721,727,725,732,731,739,713,732,754,1087,1115,1133,1102,1126,1139,1152,1141,1100,1117,1146,1139,1117,1135,1107,1132,1082,1134,1148,1119,1120,1115,1152,1083,1137,1127,1109,948,974,957,973,973,979,980,966,970,969,991,972,981,987,946,984,977,920,978,978,966,964,973,963,962,672,722,696,693,722,704,685,672,696,685,703,675,698,688,677,715,688,657,672,714,671,668,682,660,694,687,676,690,684,698,670,681,663,678,669,670,660,662,691,657,671,671,683,686,666,684,672,671,673,685,681,701,687,685,684,679,692,678,682,666,689,679,679,663,673,692,688,699,696,683,681,696,677,684,700,676,701,704,700,682,688,701,690,683,677,683,662,683,670,676,668,681,703,681,675,675,697,695,698,672,649,688,686,651,676,684,672,685,696,673,666,680,688,654,675,685,661,680,625,680,656,661,662,660,652,663,651,668,662,671,652,646,675,655,664,664,646,662,655,661,633,628,646,637,630,637,638,644,634,638,640,654,629,642,651,640,654,634,630,642,629,634,636,647,639,636,624,834,908,907,909,892,874,875,896,888,898,900,857,908,875,939,895,887,905,913,856,927,865,908,912,898,655,671,685,682,696,688,686,690,685,739,697,693,674,686,717,700,708,709,716,697,712,692,683,686,699,727,692,592,603,608,595,602,616,614,601,603,606,620,624,612,586,609,605,617,610,592,605,591,597,597,624,605,612,622,1122,1107,1045,1098,1135,1111,1081,1100,1094,1113,1093,1088,1072,1102,1075,1061,1100,1121,1082,1123,1138,1121,1115,1006,1128,1074,1104,1097,983,1008,1027,995,980,1011,977,1016,1023,1049,987,985,1010,996,999,1035,999,998,997,983,1013,1010,1001,1013,946,964,955,936,936,929,934,977,944,959,941,937,926,962,952,908,950,942,954,919,927,932,688,687,705,709,681,704,688,648,696,703,742,705,699,681,695,676,710,698,707,691,688,696,680,704,1071,1056,1061,1066,1021,1023,1031,1067,1058,1068,1026,1046,1055,1046,1046,1025,1051,1026,1043,1059,1049,1041,1020,1050,1095,1027,1033,1028,1073,1064,952,964,966,957,953,955,968,971,969,951,938,966,955,936,981,963,925,905,959,971,965,949,971,961,954,928,946,963,930,940,928,970,1162,1137,1141,1146,1139,1151,1114,1113,1106,1156,1138,1142,1160,1136,1125,1140,1132,1130,1151,1131,1130,1132,1133,1149,996,1029,1009,1018,1019,1048,1024,1011,997,995,1040,1024,1035,1042,1050,1005,1036,987,1006,1006,1007,1011,1003,1003,1050,1048,1065,1075,1066,1088,1056,1081,1054,1063,1033,1044,1074,1066,1068,1059,1049,1049,1074,1051,1057,1057,1056,1086,1069,1039,1066,1054,1045,1065,1049,1068,909,910,927,915,925,937,946,900,925,979,943,938,924,937,930,933,932,914,928,920,946,599,614,655,605,625,603,626,605,617,614,627,592,616,626,601,593,617,616,604,586,592,617,623,629,604,620,616,599,615,713,728,732,718,721,725,723,728,735,724,713,752,734,697,737,783,796,773,782,773,786,796,766,774,791,802,814,807,786,789,788,781,790,799,780,779,769,792,784,1002,1012,1051,1025,1008,1021,1025,1023,999,1032,1013,1023,1011,1025,1029,1033,1035,993,1001,1026,1014,1000,1040,1031,1039,827,831,837,840,811,827,811,823,826,827,827,815,829,862,838,848,811,821,857,828,852,817,802,702,665,669,655,689,706,641,651,663,658,664,676,656,634,657,665,672,675,654,664,655,670,636,670,645,633,655,655,670,687,639,603,608,628,598,615,634,619,619,615,633,634,598,604,646,611,601,612,620,612,608,620,606,616,1080,1048,1076,1051,1035,1070,1068,1057,1069,1064,1032,1066,1073,1019,996,1079,1040,1064,1052,1049,1055,1036,1029,1043,1055,1020,1041,1045,1046,1048,1033,1038,1024,1051,1011,1044,1011,1037,1031,1005,1022,1025,1041,1032,1042,1039,1040,1054,1019,1042,1033,1011,1028,1028,1021,1039,1015,1043,1025,1058,1017,1024,1043,1024,1043,1028,1040,1049,1032,1033,1042,1013,1037,1042,1047,1033,876,862,860,865,851,851,870,846,817,861,894,830,857,844,867,826,874,877,843,854,888,607,622,622,624,585,619,605,636,622,625,593,641,607,611,626,615,599,566,631,632,604,604,614,604,612,673,677,666,650,642,664,658,664,658,663,638,666,651,675,676,673,647,638,657,657,668,624,664,652,662,664,695,676,672,637,677,697,641,1093,986,1008,1071,1019,1058,1029,1067,1031,989,1039,1036,1024,1069,1055,1017,1002,1056,1071,1037,1007,1017,1017,1044,1036,1065,1045,1020,1020,1017,1042,1049,1071,1021,1049,1038,1016,1032,1044,1015,1040,1062,1024,1013,1051,1044,881,919,898,866,881,864,887,893,915,907,903,890,907,882,875,874,903,874,897,889,893,736,701,682,711,688,715,677,690,688,689,698,682,706,674,683,706,686,703,692,694,693,695,678,680,687,669,704,803,804,831,836,823,850,801,779,811,803,851,823,832,802,791,792,813,806,815,845,845,814,829,830,826,802,817,816,809,799,839,815,806,802,794,786,824,815,801,804,807,823,795,807,823,804,810,835,707,710,716,693,737,705,713,705,717,705,661,712,719,703,708,691,694,709,696,687,687,680,714,708,700,652,649,654,657,652,664,662,676,658,650,648,670,667,657,644,642,673,649,650,654,653,650,672,678,644,659,662,646,652,648,640,652,649,643,641,639,676,653,656,642,645,649,643,636,655,643,650,658,644,639,635,651,640,641,651,633,655,985,968,982,974,1000,972,973,963,974,992,955,953,1005,956,932,984,980,976,968,983,986,985,1006,956,970,995,991,960,948,982,988,964,942,962,964,1048,1024,1063,1050,1048,1066,1072,1072,1052,1039,1052,1058,1060,1059,1037,1034,1081,1037,1061,1033,1056,1065,899,921,936,931,878,896,932,904,921,908,916,907,942,924,895,943,912,902,896,890,906,932,950,912,916,682,673,675,660,689,665,673,676,662,674,669,672,677,659,686,688,683,662,1019,1035,1039,1076,1073,1060,1102,1015,1019,1084,1052,1122,1045,1081,1070,1082,1085,1037,1100,1056,1069,1067,1031,1063,1057,1068,1103,1057,1049,1081,949,988,989,959,991,977,1001,962,970,1003,973,960,973,939,983,935,953,978,929,678,655,678,676,689,702,657,679,680,624,665,693,670,684,667,681,664,668,647,673,665,687,658,707,612,622,622,610,587,612,612,630,607,579,593,610,599,597,604,608,609,630,610,589,614,616,605,605,615,613,606,605,599,625,613,596,624,622,607,590,610,629,631,609,636,621,604,628,627,625,600,588,1089,1110,1136,1082,1108,1108,1119,1085,1113,1112,1148,1100,1116,1161,1104,1156,1124,1134,1106,1081,1167,1103,1131,1131,1002,991,989,1013,960,998,959,1001,1009,1020,1013,1031,979,1008,986,984,999,984,1015,956,1015,983,976,1021,993,995,963,705,692,681,672,713,660,670,659,676,678,683,693,693,679,698,694,676,710,719,689,690,677,687,685,677,627,631,655,627,660,645,653,646,628,634,646,630,642,635,645,670,657,642,645,616,646,1060,1072,1023,989,1024,963,1042,1020,1063,985,1034,1016,1025,990,1014,1013,1010,1034,1044,996,1000,926,971,996,915,948,950,970,994,958,943,984,992,964,924,995,949,1008,946,940,940,962,941,949,928,972,668,663,656,667,671,661,681,673,654,689,684,673,708,643,673,680,1093,1129,1117,1148,1107,1122,1100,1129,1136,1132,1098,1153,1130,1086,1097,1099,1128,1109,1110,1147,1099,1074,1119,1089,1113,1126,1171,1084,1018,999,1016,1023,991,1000,981,1032,995,999,1025,999,1016,1011,1026,997,998,1032,985,992,1004,1010,1011,964,999,1015,1025,1019,1007,970,1163,1196,1170,1189,1179,1202,1190,1191,1163,1192,1196,1198,1166,1172,1203,1171,1184,1176,1185,1178,1193,1150,1192,1201,1210,1171,985,984,967,994,994,984,982,971,1008,949,963,986,974,966,1008,978,982,949,985,978,930,1004,971,969,994,975,978,961,969,1004,1077,1056,1064,1073,1057,1057,1056,1069,1067,1085,1051,1071,1054,1064,1081,1048,1048,1063,1077,1057,1061,1051,1064,1076,1064,1092,1041,1075,1081,1077,1052,1060,953,957,947,967,969,966,951,969,926,939,972,943,972,941,992,987,959,940,964,967,970,968,961,990,978,943,949,739,739,712,717,737,713,724,747,735,743,739,738,733,719,735,709,712,708,753,698,747,748,732,727,746,720,926,970,944,916,939,935,966,946,951,942,907,971,906,939,888,927,939,934,964,945,953,868,868,894,875,866,880,860,878,883,878,847,856,873,857,831,888,872,895,909,882,863,882,876,876,882,673,697,694,702,686,708,707,706,687,688,715,671,700,706,702,703,689,696,688,681,678,673,695,702,710,693,684,704,675,688,670,1153,1124,1170,1105,1135,1122,1127,1184,1166,1145,1100,1147,1151,1126,1127,1158,1155,1158,1148,1132,1177,1134,1132,1128,1113,1149,1043,1035,1008,1008,979,1006,1019,1022,1020,1031,1026,1011,1011,1004,1033,995,1029,1018,1020,1033,996,1022,975,1014,930,916,899,947,917,938,939,929,931,909,926,939,913,918,914,938,928,895,936,917,907,927,923,936,922,911,1072,1063,1060,1068,1065,1060,1051,1073,1072,1082,1070,1058,1085,1093,1061,966,990,984,966,1001,972,980,984,975,978,957,974,982,975,976,981,994,950,964,959,986,957,985,969,815,818,803,805,799,804,812,800,816,796,804,778,819,814,814,836,810,784,773,806,791,803,818,813,795,803,795,807,818,791,807,689,686,695,701,674,720,693,709,702,701,713,706,695,682,709,686,696,719,674,710,688,706,872,869,881,865,885,891,808,860,877,886,887,860,859,877,886,874,877,892,864,843,875,878,867,864,843,841,1048,1048,1035,1058,1068,1073,1070,1044,1056,1086,1063,1011,1069,1052,1048,1026,1058,1034,1019,1053,1032,1065,1067,1039,923,932,926,924,960,933,906,911,921,936,902,936,905,934,922,918,927,900,903,896,915,944,917,914,662,668,662,683,697,687,680,661,690,670,664,672,661,683,676,666,681,675,669,670,691,1058,1085,1049,1143,1048,1070,1067,1053,1092,1048,1039,1074,1076,1064,1089,1072,1056,1064,1090,940,913,924,915,939,912,933,956,929,930,936,949,942,926,912,916,945,939,918,938,949,940,913,1037,1030,1042,1033,1089,1052,1058,1026,1051,1033,1032,1039,1056,1042,1057,1027,1052,1056,1050,1041,1046,1029,1045,1026,865,870,821,891,889,845,871,918,878,882,884,839,915,897,901,884,866,909,869,853,913,862,843,841,875,907,905,900,649,630,628,637,634,652,620,632,640,651,649,619,643,660,636,637,647,643,622,632,618,644,634,625,660,658,648,653,616,639,648,652,643,622,643,627,614,627,640,639,642,639,613,661,635,611,666,647,615,630,649,638,1165,1177,1148,1140,1165,1142,1159,1182,1122,1162,1118,1172,1116,1134,1128,1127,1138,1190,1159,1182,1245,1203,1130,1144,1183,1006,995,1009,977,974,983,1011,1029,960,1039,1015,996,958,997,993,1004,962,1023,999,994,1056,998,991,1011,995,1015,1029,1019,1036,991,1012,637,647,658,652,649,627,690,663,677,615,676,657,670,644,666,624,637,655,646,676,633,645,629,582,586,621,566,584,558,581,589,585,577,596,582,576,603,597,611,578,584,584,570,583,1075,1130,1046,1104,1138,1077,1121,1126,1151,1089,1120,1135,1156,1133,1120,1105,1107,1070,1119,1060,1105,1104,1116,1100,1134,1097,1035,1042,1026,1048,1029,1048,1066,1035,1046,1029,1055,1073,1074,1045,1051,1068,1044,1040,1040,1039,1068,1074,1058,1039,1049,1063,1038,945,953,925,964,956,942,941,946,942,948,929,944,938,953,938,947,958,927,946,938,931,933,946,944,946,940,937,840,835,851,831,813,831,820,833,825,835,850,844,827,805,845,834,832,809,816,824,807,770,775,782,771,772,775,771,772,803,789,771,791,774,779,788,779,766,801,711,716,730,702,700,712,703,690,727,701,694,709,713,735,736,722,714,685,711,708,705,743,697,712,693,699,678,676,694,716,687,685,700,671,680,674,670,678,673,704,684,685,709,687,699,699,694,688,680,723,712,705,688,1203,1157,1200,1125,1100,1141,1138,1143,1176,1181,1105,1149,1153,1136,1207,1123,1185,1230,1126,1154,1128,1173,1149,1104,1147,1145,1092,1183,985,973,994,1000,977,962,978,1004,1003,968,995,982,974,961,997,958,991,1009,996,986,1030,990,957,707,663,703,707,688,702,657,677,689,673,661,687,700,701,694,720,690,685,688,691,680,695,710,683,719,688,1200,1154,1166,1195,1174,1191,1175,1191,1131,1182,1231,1199,1198,1176,1185,1176,1119,1212,1200,1185,1164,1238,1201,999,1027,1040,1019,1044,1016,1000,1025,1010,1010,1031,1040,1040,1040,1038,1007,1011,1042,1009,988,1048,1014,1128,1150,1150,1154,1134,1162,1124,1116,1103,1157,1131,1169,1153,1156,1166,1133,1155,1164,1151,1165,1170,1161,1147,1164,1180,1149,1128,1168,1137,873,918,933,916,873,911,921,872,902,923,932,845,900,883,874,847,850,872,877,914,699,744,739,718,764,717,704,746,750,745,754,716,750,720,759,731,741,739,694,740,733,746,711,709,716,730,725,743,768,747,789,716,749,726,756,756,728,724,733,753,717,729,726,736,741,762,750,757,761,739,715,722,751,718,1147,1116,1143,1130,1164,1159,1174,1153,1143,1154,1159,1139,1160,1135,1132,1145,1154,1128,1154,1167,1193,1141,1136,1101,1161,891,873,912,909,934,931,928,914,934,952,929,914,912,937,926,960,943,931,932,884,926,930,924,920,918,946,842,654,643,647,644,645,629,652,623,622,661,661,640,633,625,634,644,634,670,620,652,650,636,1108,1090,1138,1099,1082,1115,1066,1071,1104,1117,1069,1106,1114,1087,1083,1071,1069,1081,1124,1106,1088,1078,1096,1096,1098,1102,1039,1133,1080,1070,1081,1074,1065,1110,1084,1082,1073,1106,1057,1067,1053,1088,1056,1065,1082,1061,1091,1075,1042,1078,1074,1084,996,975,1019,967,985,979,953,972,1000,1014,972,993,977,998,988,966,968,1003,1006,969,1004,959,1003,943,983,944,995,968,711,709,737,680,666,719,640,727,684,694,687,725,689,687,680,691,678,701,706,706,716,687,727,666,657,647,648,627,651,656,660,650,636,649,633,648,620,655,667,662,649,618,627,642,653,614,638,637,628,630,616,609,646,616,627,642,620,617,631,612,613,636,616,619,638,640,631,619,637,608,637,590,613,619,1130,1138,1123,1155,1203,1143,1112,1117,1139,1084,1138,1178,1101,1161,1137,1156,1147,1141,1158,1116,1137,1173,1142,1117,1009,1017,1006,1009,1000,1005,1003,984,1036,1022,1019,1020,1007,983,1003,981,1002,1023,1014,995,1016,995,1012,976,1018,1031,940,929,917,928,932,905,908,950,926,919,931,920,908,922,910,919,922,927,942,898,894,921,1014,1030,1033,1048,1028,1040,1019,1027,1049,1046,1006,1034,1052,1057,1053,1047,1055,1036,1043,1033,1014,1077,1056,1036,1029,1029,1004,1061,1012,977,975,998,948,995,974,962,954,951,957,991,979,955,967,974,675,675,683,663,653,655,667,669,638,698,673,686,636,655,675,654,657,660,664,987,979,974,972,1004,989,991,977,997,1006,952,986,1014,988,992,964,945,1028,1025,1021,1022,980,991,1050,1020,1066,1043,1040,1079,1058,1040,1027,1077,1023,1036,1066,1072,1048,1031,1056,1030,1039,1020,1038,1035,1028,1049,1033,1024,970,951,955,1002,974,948,942,936,952,980,971,969,950,967,956,975,989,995,1016,964,953,943,987,967,1012,961,948,948,952,956,974,925,978,948,925,976,954,947,956,968,950,954,959,962,954,933,955,946,929,940,946,924,927,681,707,722,706,705,716,705,740,742,698,734,730,694,676,747,701,767,728,711,692,716,723,708,735,707,724,733,719,726,625,613,593,611,618,618,610,603,612,619,597,610,611,620,612,608,619,611,636,617,606,615,594,613,615,614,614,613,737,734,765,732,718,758,709,752,778,761,741,741,716,733,742,734,756,748,716,754,733,734,760,731,733,741,753,724,707,753,735,714,744,743,731,737,729,727,716,745,728,720,730,753,742,727,729,739,754,711,759,733,742,754,741,728,725,739,738,739,734,734,729,751,738,1016,1028,1065,1071,1012,1032,999,1035,1018,1039,1022,1052,1036,1036,1008,1070,1041,1061,1014,1009,1014,999,1047,936,944,960,930,972,943,948,951,945,952,951,943,929,939,950,952,960,952,966,942,962,930,937,946,955,939,935,960,960,936,971,963,937,950,943,914,908,916,906,924,923,916,918,923,916,919,929,925,907,929,911,916,915,917,908,918,929,916,912,995,957,997,972,962,988,966,963,943,981,978,958,959,963,979,954,987,964,966,972,965,1037,1048,1024,1029,1039,1048,1043,1013,1031,1017,1053,1026,1034,1017,1016,1018,1032,1012,1042,1035,1023,1046,1038,1023,1035,1035,1052,1044,1042,937,937,883,969,911,930,898,898,931,901,902,905,900,901,902,927,892,895,911,889,929,935,927,930,1122,1186,1145,1154,1167,1121,1181,1121,1112,1159,1134,1155,1123,1151,1142,1149,1174,1144,1168,1126,1159,1155,1131,1129,1159,1123,996,940,976,952,960,947,954,963,988,998,949,970,955,974,950,945,932,945,973,965,942,932,967,942,946,953,969,611,679,650,634,660,639,638,646,632,647,665,645,635,635,638,638,656,664,649,680,633,649,686,682,650,672,664,928,890,921,930,944,937,991,912,924,949,926,928,916,938,943,961,968,912,936,977,921,945,766,736,749,746,770,761,750,755,742,772,726,767,738,745,771,722,775,749,763,771,763,743,790,776,751,788,755,670,686,700,682,694,680,672,676,675,680,673,678,673,696,681,693,675,672,686,700,684,686,674,693,663,699,689,688,1021,1039,1000,1057,998,1005,995,1010,1031,1011,1037,1016,991,1013,1029,1021,1051,1018,1037,1032,1047,1016,995,983,1022,1028,741,736,732,749,763,775,725,766,763,746,789,765,758,755,759,729,740,703,758,737,775,762,752,1034,1119,1092,1065,1086,1101,1094,1059,1058,1086,1094,1085,1074,1087,1092,1042,1061,1036,1095,1131,1095,1092,1030,1102,1089,1043,954,932,909,961,914,939,953,934,948,920,948,918,913,902,939,945,924,929,965,1092,1093,1049,1091,1053,1084,1076,1068,1064,1059,1065,1066,1062,1105,1074,1095,1086,1032,1005,1025,1024,1002,1023,1021,1018,1003,1029,1001,1018,982,1009,998,984,1018,1020,987,1007,1020,1006,991,873,861,854,847,867,861,856,836,888,844,849,858,840,870,829,858,878,845,880,862,889,811,866,847,851,856,896,848,821,862,858,804,802,815,824,823,822,804,806,817,811,820,834,806,828,792,812,796,824,811,816,814,798,819,813,842,799,713,712,697,698,700,698,695,710,679,710,707,693,719,682,714,694,682,682,727,692,678,702,718,706,689,711,683,711,879,878,866,866,872,839,887,860,901,871,848,885,852,872,873,866,893,890,882,692,712,685,697,659,663,688,652,681,683,696,709,674,670,683,686,677,689,693,678,697,682,647,643,634,631,600,640,615,617,624,618,642,622,617,621,648,621,632,635,642,643,642,639,632,650,638,638,614,659,642,621,651,995,984,1001,1017,1023,1028,1019,1042,1002,1002,1034,1021,1025,988,1028,953,1008,1021,1005,1012,1001,1034,1025,1025,987,763,753,759,722,793,787,761,750,758,799,771,750,753,791,763,807,755,772,750,738,771,829,828,822,839,856,847,870,834,837,813,843,843,855,811,856,798,830,856,866,842,829,842,846,825,851,798,820,837,843,853,741,731,722,730,724,720,720,707,761,731,746,713,742,750,740,747,729,732,718,719,726,736,720,722,719,721,683,694,700,698,682,707,687,705,689,685,690,679,681,697,695,673,691,688,688,685,692,683,681,684,687,681,679,664,668,676,680,696,664,682,667,662,676,684,678,689,686,882,886,891,913,907,844,876,869,895,890,945,913,885,877,868,889,873,910,872,889,864,881,877,885,873,667,705,701,692,672,701,688,698,671,693,707,680,693,689,663,717,697,705,709,671,693,634,625,621,616,640,634,631,638,619,634,642,638,637,632,645,622,633,644,626,644,632,646,632,641,653,638,612,611,621,621,804,752,774,764,788,779,757,763,789,798,773,782,763,788,768,754,757,780,767,755,768,780,1033,1054,1041,1006,1041,1048,1035,1007,1039,1069,1056,1039,1032,1016,1038,1021,1025,1010,1019,1024,1022,1058,1015,1024,1054,1112,1079,1093,1080,1069,1106,1101,1084,1097,1079,1092,1079,1111,1082,1115,1090,1083,1075,1083,1090,1129,1056,1094,914,918,935,921,892,922,916,894,906,923,920,936,921,929,953,928,943,897,916,916,895,897,908,911,919,679,664,647,682,666,652,663,637,635,656,648,664,668,634,671,650,670,660,659,641,670,672,669,618,1014,962,937,947,987,950,990,940,951,905,925,992,937,946,894,951,935,971,971,1006,987,992,1014,1013,981,1026,970,999,1008,978,1003,999,1005,1020,967,993,994,978,981,994,1010,1002,1013,984,1008,992,1005,999,1026,1028,1047,1039,1021,1049,1020,1043,1033,1028,1030,1029,1038,1024,1013,1030,1047,1010,1014,1018,1024,1014,1014,1008,998,917,907,916,888,902,932,906,912,907,922,901,896,887,895,915,899,901,896,905,910,920,898,917,907,907,891,884,884,855,874,880,864,866,904,878,874,920,900,849,859,861,866,874,869,876,846,890,892,923,981,992,1028,983,981,999,988,991,981,966,977,968,979,1009,971,1011,1009,984,1001,991,1017,972,989,986,991,1019,1057,1024,1048,1037,1054,1037,1052,1015,1042,1033,1046,1016,1050,1042,1050,1049,1029,1037,1050,1031,1030,901,936,882,894,884,876,918,878,861,906,914,912,911,902,870,890,872,901,862,907,866,898,898,890,907,929,918,896,902,879,1059,1092,1086,1081,1067,1081,1082,1068,1063,1065,1042,1060,1051,1066,1069,1057,1060,1086,1077,1078,1067,1078,941,940,950,944,952,954,949,974,962,965,942,950,952,949,955,998,966,951,942,930,949,974,978,944,941,947,971,953,1051,1071,1073,1071,1066,1041,1065,1054,1037,1060,1037,1075,1051,1057,1053,1040,1043,1048,943,960,915,957,929,940,947,946,939,940,930,948,957,938,921,938,952,932,918,942,955,928,927,930,928,936,932,927,926,923,932,945,941,928,918,926,942,937,914,908,923,922,912,930,937,922,926,916,921,849,844,856,852,830,848,836,867,843,868,828,863,840,831,848,851,840,865,846,836,821,847,820,843,846,851,673,685,675,684,664,670,692,666,682,683,692,671,680,686,667,673,671,685,673,683,693,663,672,690,678,689,675,681,696,702,680,677,667,686,684,683,673,659,686,689,660,676,689,676,660,683,634,681,666,678,696,681,658,660,665,672,671,673,667,656,676,668,660,676,670,661,679,661,666,650,673,669,667,687,673,657,657,669,662,666,667,675,664,1013,1010,1008,1004,997,1046,1010,1017,1053,990,1044,1002,1025,1015,1008,1004,1011,1036,1045,1023,984,1018,1013,1064,1097,1033,1067,1065,1078,1065,1043,1053,1079,1057,1074,1044,1079,1047,1070,1076,1050,1065,1083,1048,930,927,953,940,917,950,946,974,949,977,965,949,957,956,953,942,902,926,934,932,959,947,947,660,726,638,694,677,666,652,686,681,672,665,652,650,645,644,682,634,661,662,651,661,628,663,649,632,633,628,670,641,620,626,640,637,648,624,674,636,651,655,644,621,632,639,624,641,959,943,970,987,967,996,1000,949,997,957,953,984,979,995,966,941,945,961,981,936,968,993,956,991,986,1118,1099,1090,1094,1099,1113,1110,1094,1111,1120,1088,1095,1110,1105,1104,1110,1116,1128,1114,947,979,945,931,973,951,944,986,930,965,956,958,951,986,948,963,969,977,954,1061,1039,1026,1055,1054,1055,1059,1078,1052,1045,1048,1063,1078,1055,1071,1050,1055,1040,1055,1053,1078,1038,1060,1059,1052,935,907,902,917,945,906,882,904,895,946,916,867,941,937,943,923,912,959,905,903,905,923,938,936,938,925,906,925,950,872,933,1057,1054,1085,1082,1080,1106,1077,1093,1092,1098,1114,1099,1096,1106,1104,1103,1106,1098,1074,1061,1070,1088,1057,1005,1025,1011,1007,1010,1016,985,995,1008,994,1006,1008,995,1009,997,1018,1012,988,1021,997,985,983,995,1005,992,1004,1017,996,1011,974,1019,774,779,805,814,779,806,791,744,761,757,763,771,762,761,739,789,817,780,796,788,796,788,759,780,750,744,783,771,705,663,646,690,681,680,680,674,683,696,707,696,698,685,696,673,693,697,695,678,659,687,711,687,675,691,679,860,866,927,850,870,872,876,858,881,888,858,818,854,892,891,849,849,889,859,864,860,833,874,887,881,726,750,743,765,756,750,727,715,723,707,715,716,748,743,746,731,767,683,728,743,637,637,653,641,641,630,649,645,628,634,636,633,622,657,656,650,759,772,797,782,787,777,773,779,771,750,774,777,767,765,762,768,762,790,724,778,783,777,763,765,743,794,762,770,746,727,728,721,735,747,750,725,747,743,754,730,726,728,744,749,750,729,746,740,752,744,990,1041,1015,1039,1018,992,1013,1000,1035,1048,1001,1026,1022,1034,1028,1034,1051,1014,1027,1027,999,1003,1001,982,780,775,769,770,777,778,781,779,792,781,735,726,789,812,780,755,780,768,755,774,768,748,752,862,878,874,904,843,872,867,878,893,869,868,911,886,901,866,892,901,878,922,903,850,899,883,890,896,877,885,904,883,899,890,886,854,901,909,899,880,913,909,887,896,843,1060,1072,1063,1069,1071,1046,1041,1057,1069,1057,1054,1056,1066,1043,1086,1060,1049,1051,1047,1053,1065,1058,1075,1025,1037,1042,1031,1027,1022,1040,1034,1024,1031,1025,1025,1028,1023,1051,1032,1021,1026,1017,1053,1044,1018,1033,1030,1034,1041,1026,1060,1016,1038,1054,1025,1035,1013,1046,936,886,914,917,888,927,886,906,899,934,921,895,924,907,927,907,898,922,899,918,909,939,895,917,903,904,893,919,903,885,926,926,1019,1003,1029,1024,1028,1014,1025,1039,998,1036,1037,1039,1028,1021,1023,1011,1029,1008,999,1035,1036,1019,1030,1017,1035,1025,926,922,919,891,900,889,886,899,939,917,893,912,897,926,907,927,932,918,892,902,919,924,900,916,901,900,900,894,903,922,903,634,686,668,660,669,671,643,678,691,646,663,685,669,681,684,654,665,664,698,686,657,652,662,670,667,675,674,682,1063,1087,1054,1076,1053,1060,1067,1074,1023,1013,1065,1038,1087,1058,1082,1087,1070,1038,1076,1078,1096,1024,1056,1057,1067,1064,1047,1080,1063,1078,1071,1071,1057,1073,1055,1062,1078,1058,1063,1066,1061,1085,1047,1067,1085,1041,1068,1069,900,925,891,926,891,866,917,911,922,906,918,938,904,912,882,934,899,919,917,904,862,922,925,929,936,704,677,722,696,674,682,698,694,693,685,673,660,681,661,702,713,678,693,706,678,703,691,690,678,663,676,682,679,701,668,655,686,670,683,658,682,681,689,692,684,658,663,684,665,670,673,695,661,1099,1082,1103,1068,1083,1051,1069,1116,1064,1055,1049,1053,1055,1082,1137,1111,1064,1080,1061,1053,1086,1070,1074,1119,1077,958,946,951,985,949,946,979,962,947,962,964,933,973,961,984,944,950,944,980,964,987,979,1005,934,973,941,971,954,969,940,965,897,837,878,866,890,878,849,900,870,895,913,885,909,885,873,886,889,880,868,903,969,1008,984,997,1017,1004,1012,980,997,993,988,987,1003,989,1034,1020,999,1001,1041,1007,1006,975,974,1002,980,987,997,991,993,992,983,995,987,980,999,992,984,990,1005,1005,985,1007,974,1074,1054,1043,1073,1070,1073,1068,1065,1070,1055,1063,1059,1076,1061,1088,1068,1069,1078,1057,1054,1051,1048,1062,1061,1051,1051,1055,893,880,939,881,901,859,882,929,909,932,899,909,897,916,907,939,886,919,920,913,922,894,1061,1119,1075,1099,1087,1095,1105,1090,1090,1090,1092,1065,1069,1099,1084,1110,1086,1112,1082,1090,1091,1115,1107,1057,1090,1087,976,979,1000,991,977,978,983,992,985,977,1004,1001,1002,949,995,976,965,989,987,1001,1002,997,991,716,679,670,671,666,642,671,685,673,633,636,676,619,680,682,679,665,651,599,653,636,621,619,631,618,640,610,646,611,616,611,611,607,629,612,642,631,610,627,614,610,623,601,627,617,634,638,637,621,637,619,620,1078,1077,1101,1156,1113,1137,1107,1101,1094,1134,1061,1085,1066,1152,1124,1108,1087,1066,1079,1059,1126,1113,1109,1089,1198,978,996,990,1010,991,1012,989,1017,977,994,983,1021,994,1005,995,1009,991,996,995,988,1010,977,1007,1010,989,990,982,809,812,797,795,791,787,791,759,789,787,789,767,807,766,801,784,764,813,818,991,981,966,978,958,964,978,993,981,965,988,971,984,980,964,970,964,967,969,965,986,955,933,930,933,925,929,943,931,925,946,922,928,938,910,938,948,947,951,950,929,940,945,925,921,951,1032,1002,1035,1023,1009,1021,1013,1002,1001,996,1017,1021,1014,1034,1008,1038,1025,995,1026,899,914,878,913,917,899,898,916,897,881,908,896,924,878,891,876,897,893,889,953,915,927,900,909,938,888,676,662,659,674,672,678,658,676,658,713,677,684,675,651,699,651,660,674,656,681,677,681,674,679,676,706,670,668,1152,1101,1108,1105,1107,1058,1091,1140,1030,1095,1071,1139,1113,1138,1129,1115,1089,1079,1091,1079,1087,1106,1163,1111,1097,1099,1129,1086,1103,974,970,997,972,987,977,990,980,1003,996,1000,950,973,975,962,965,948,1011,998,949,958,998,690,670,697,690,710,714,710,717,718,692,692,727,685,681,706,704,709,666,688,719,668,670,672,664,676,678,680,661,683,679,650,688,678,673,665,664,670,674,669,642,668,644,687,674,703,681,676,689,679,684,660,681,682,683,666,675,690,677,684,681,684,684,680,686,670,692,690,694,697,684,666,683,1043,988,1017,1024,1049,1000,976,1029,1013,1026,1023,1012,1049,1043,1028,1012,1016,1028,1028,1074,985,1055,1050,1037,1037,1040,1040,1044,1058,1026,1031,1068,1062,1021,1024,1047,1068,1009,1042,1051,1047,1057,1048,1025,1041,1026,909,880,961,908,892,914,918,925,926,925,935,916,925,905,909,941,931,940,920,942,901,934,911,905,931,673,657,663,669,687,638,670,666,669,632,685,652,661,641,653,649,667,647,647,642,684,632,658,660,662,685,566,583,580,597,590,592,586,573,569,590,552,589,574,590,603,589,575,568,602,598,582,586,591,571,586,590,576,551,603,555,610,604,630,616,596,609,638,612,627,609,612,615,613,619,611,629,616,626,636,612,722,731,730,715,727,713,708,731,710,717,702,713,698,695,722,743,726,716,711,731,712,730,725,728,725,722,733,715,720,712,721,742,726,723,713,729,713,716,723,725,725,717,704,733,707,1074,1107,1067,1060,1119,1028,1075,1046,1086,1091,1050,1076,1065,1082,1076,1033,1051,1107,1086,1062,1075,1065,1094,1077,1055,867,869,933,892,892,891,893,921,894,885,902,889,934,939,909,919,925,913,899,884,911,886,910,890,912,866,895,652,611,586,579,619,649,612,592,610,601,613,603,632,604,577,613,585,594,604,601,592,605,625,619,586,1177,1185,1165,1121,1127,1112,1170,1137,1185,1094,1193,1159,1114,1129,1133,1140,1111,1124,1155,1149,1143,1139,1141,1146,1167,1103,1029,1020,1015,1027,1045,1017,1032,1054,1047,1005,1004,1048,1052,1053,1039,1074,1017,1020,1034,1046,1033,1044,1057,1040,1015,1015,1025,1047,1078,1019,1048,1053,1101,1041,1045,1016,1010,1059,1150,1106,1153,1041,1159,1074,1109,1096,1141,1109,1146,1094,1129,1114,1073,1143,1071,1146,1097,1129,1105,1095,1077,1110,1150,1146,1132,1132,1139,1116,1123,1106,1088,1071,1079,1085,1070,1065,1079,1061,1079,1078,1089,1089,1067,1074,1095,1092,1080,1090,1072,1082,1065,1061,1075,947,911,933,945,915,916,929,933,936,936,894,915,944,896,905,927,927,914,924,921,903,937,918,926,922,935,914,915,676,670,707,698,695,697,689,686,688,692,712,707,684,687,712,714,653,673,712,698,722,710,702,669,674,913,919,895,896,931,934,896,896,933,903,947,899,874,915,921,879,924,923,924,908,859,904,922,928,914,904,907,921,889,895,928,757,757,761,745,763,750,770,737,747,768,754,751,754,720,745,751,748,735,756,754,748,761,921,909,933,908,934,919,940,911,907,940,914,918,926,895,919,916,930,918,937,881,926,930,926,897,930,921,917,1073,1041,1073,1058,1055,1061,1070,1083,1041,1048,1062,1087,1054,1060,1071,1077,1069,1062,1059,1066,1057,1051,1054,1055,1034,1038,1033,909,972,910,900,926,906,937,908,921,881,935,925,944,913,936,925,941,940,904,910,901,915,962,999,976,1002,988,1032,1012,1026,1050,988,1043,1016,983,989,1050,983,1004,993,969,1007,987,999,994,1009,986,1044,1069,1054,1057,1081,1059,1056,1070,1032,1041,1053,1063,1079,1047,1059,1037,1077,1071,1046,1056,1064,1038,1054,1057,1070,1049,1056,1056,1053,1062,915,939,928,941,965,924,914,919,927,948,909,916,932,950,930,930,934,944,916,929,926,933,905,922,928,946,1071,1056,1050,1064,1071,1077,1047,1061,1062,1064,1058,1061,1046,1083,1090,1058,1061,1052,1080,1086,1074,1078,875,848,860,867,895,839,904,883,853,872,877,883,872,851,871,843,668,717,661,687,689,695,681,719,694,708,691,693,689,686,697,694,695,695,668,694,720,1001,1070,1076,1067,1074,1084,1059,1035,1067,1043,1054,1078,1084,1035,1052,1022,1029,1087,1068,1027,1051,1040,1062,1069,1051,1067,1060,838,845,835,835,836,864,865,842,877,849,858,845,837,823,1007,1006,1003,1014,1027,1020,1041,1004,1005,1023,1023,1006,1028,1009,1033,1011,1010,1006,1021,1013,1013,1009,1010,1013,1035,1011,1025,1011,1033,1007,1013,1043,1030,1034,1027,1033,1028,1020,1014,1041,1022,1026,1015,1024,1003,1003,1016,1017,1016,1000,1013,1009,1027,1026,925,917,946,942,927,949,910,966,965,963,960,940,957,964,955,938,940,954,957,954,948,947,935,950,924,947,936,936,896,881,900,890,893,899,899,887,876,879,866,894,900,897,884,894,885,886,873,880,920,877,871,889,890,902,738,723,736,729,737,756,721,729,715,715,728,735,715,765,722,733,747,730,721,724,723,713,717,761,857,914,935,889,937,906,893,877,887,873,909,892,908,872,894,889,900,881,916,881,865,919,922,903,1054,1038,1058,1055,1063,1072,1050,1031,1063,1028,1070,1063,1049,1074,1073,1056,1049,1057,1065,1045,1025,1028,1050,1033,1055,1065,1060,1072,1050,1073,1060,1062,1059,1033,1053,1062,1054,1051,1058,1074,1049,1068,1071,1054,1065,1064,1057,1058,1060,924,929,883,911,899,899,890,910,877,917,913,897,894,903,907,923,890,923,918,918,1020,1042,1035,1030,1046,1042,1059,1007,1016,1034,1033,1046,1025,1018,1035,1024,1040,1040,1031,1015,1058,1059,1034,1037,1016,1028,922,921,938,899,927,915,899,920,967,926,936,920,929,938,918,925,920,951,942,949,962,879,940,945,937,937,924,913,940,1143,1120,1103,1143,1133,1116,1110,1115,1106,1117,1118,1120,1080,1068,1137,1135,1100,1108,1087,1113,1127,945,948,956,934,942,950,938,945,939,931,942,956,944,944,971,942,953,922,945,967,947,955,914,956,935,949,937,940,979,966,718,678,694,717,728,725,692,710,695,712,722,688,692,710,722,755,666,864,858,875,859,844,851,857,870,837,854,858,866,883,840,877,871,841,873,875,857,844,839,856,810,868,885,847,853,707,708,718,742,722,715,743,732,708,710,697,732,734,702,726,707,697,740,728,716,699,717,719,732,686,721,713,737,722,686,678,653,684,669,671,651,676,672,655,667,677,649,679,652,661,673,671,658,671,653,691,1201,1166,1192,1113,1276,1203,1105,1199,1192,1220,1115,1188,1175,1227,1189,1208,1210,1201,1192,1020,995,1012,1028,979,991,1004,997,1009,988,987,1029,1003,1016,1009,1035,1003,1007,996,1002,1028,996,1043,1074,1048,1067,1054,1062,1062,1079,1062,1054,1045,1058,1044,1041,1060,1060,1070,1008,1085,1042,1060,1059,1052,1045,1074,1074,1079,1063,1031,911,905,897,906,926,920,924,902,927,923,899,924,900,903,923,910,905,964,932,890,921,928,938,927,908,699,694,720,688,674,704,697,710,708,707,698,680,699,687,721,692,711,712,729,723,694,684,692,696,1165,1199,1189,1224,1176,1165,1218,1224,1159,1209,1239,1213,1168,1191,1203,1197,1175,1174,1198,1205,952,970,953,989,968,956,941,965,961,958,949,970,984,920,960,923,982,942,938,725,727,762,730,750,745,725,729,717,713,719,729,744,708,744,757,703,736,692,714,756,744,722,704,749,738,731,904,900,903,886,875,919,882,893,854,884,911,877,883,875,886,882,861,872,875,805,804,799,814,784,813,797,796,781,801,796,784,821,803,796,789,788,805,796,803,795,794,807,815,789,806,657,634,660,689,647,661,670,661,661,656,665,662,687,671,678,669,654,678,590,576,591,569,574,599,590,565,559,569,582,573,573,585,583,559,572,578,571,583,588,584,575,591,587,603,588,588,578,586,577,604,569,579,595,596,593,593,574,581,583,583,562,668,688,706,683,689,700,668,682,692,692,677,673,698,703,696,712,678,696,670,673,675,693,687,678,709,694,701,716,718,710,708,696,703,708,701,695,703,698,698,712,692,700,701,708,714,701,704,700,705,694,700,1038,1032,1024,1041,1019,1000,1057,1055,1063,1016,1066,1043,1074,1071,1028,1036,1060,1038,1060,988,1031,1034,1011,914,878,833,863,886,865,853,885,857,876,879,879,898,865,886,883,836,867,888,886,857,895,867,667,644,669,654,652,660,651,656,653,653,681,641,661,642,653,659,667,649,633,666,654,675,665,641,638,1024,1013,1004,1060,1015,1014,1012,1011,1017,1010,1007,1015,1033,974,1024,1006,1015,1019,991,1023,1031,1031,984,848,878,819,868,839,836,853,848,827,842,854,860,868,839,857,841,861,822,831,843,861,820,861,834,854,827,837,853,870,824,841,1006,1016,1009,994,1020,1003,1005,1013,1001,1003,992,1002,990,1015,998,1022,978,1000,1006,1020,983,1020,995,1011,994,1015,1001,979,957,959,964,957,965,957,961,939,954,950,962,949,961,940,977,963,962,955,956,953,930,971,963,960,969,964,972,961,997,1032,997,1019,1025,1020,1014,1003,1017,996,1022,1033,1009,1029,1009,1033,1002,1008,1006,1019,1023,996,1013,1037,1002,1015,1022,947,929,933,964,931,918,926,902,958,902,940,918,928,911,913,938,953,936,964,920,906,945,927,932,1024,1006,996,1039,1001,1026,987,1028,1006,972,1036,1031,1039,994,1008,933,1050,1004,1031,979,1012,1044,985,1009,996,1031,991,994,1015,1016,1034,923,1005,1017,1030,1034,1041,1018,1018,1019,1039,1030,1023,1025,1034,1039,1014,1032,1037,1024,1040,1026,1019,1031,1036,1023,1019,1027,1037,1038,1028,1016,1038,1040,1021,904,925,940,921,931,925,946,938,970,931,931,949,961,942,952,948,957,942,941,947,946,943,936,948,955,941,943,657,672,693,691,724,691,678,703,707,705,687,707,695,686,723,1161,1131,1203,1116,1125,1123,1180,1116,1144,1126,1124,1155,1159,1194,1192,1146,1144,1171,1202,1112,1155,1178,1140,1161,1016,1048,1041,1047,1007,1010,1063,1076,1001,1022,1017,1044,1030,1048,1044,1056,1056,1016,1036,1056,1043,1055,1014,1040,1018,1003,1020,1049,1050,1032,1045,1010,1059,977,945,946,960,949,939,961,931,953,951,951,960,937,974,942,941,950,960,944,942,959,776,758,778,796,746,756,743,756,775,784,769,774,788,770,750,793,753,761,937,942,955,965,950,949,951,945,958,947,978,967,969,970,988,982,950,976,959,940,982,975,964,937,963,950,908,924,909,920,900,942,911,929,922,911,943,911,932,916,907,897,927,919,916,905,720,741,729,744,729,743,741,730,735,723,738,746,729,746,706,730,715,764,721,742,725,732,737,752,888,896,902,924,878,922,906,927,934,918,919,924,888,907,933,921,945,924,889,897,949,901,941,913,889,803,792,814,782,809,789,791,786,784,782,797,786,812,798,786,786,775,786,801,771,789,798,798,793,776,1013,983,1007,1009,985,1012,1035,996,985,992,991,1013,1030,970,993,974,976,965,1042,1051,1044,1056,1055,1046,1049,1025,1028,1032,1046,1029,1039,1028,1035,1071,1054,1077,1036,1041,1045,1069,1079,1058,1055,1061,1049,1062,1050,1077,1080,1063,1058,1076,1067,1079,1061,1062,1082,1060,1060,1060,1063,1046,1057,1063,939,924,937,934,957,964,935,918,952,946,944,929,945,938,911,901,921,906,944,913,927,917,928,935,942,957,929,658,691,682,649,660,644,660,677,677,678,688,662,688,679,636,664,657,657,651,672,652,652,689,665,663,652,653,689,698,684,698,664,666,677,659,680,669,676,691,678,669,668,668,671,668,690,677,651,687,718,670,682,688,678,693,685,1207,1170,1152,1165,1167,1177,1166,1114,1163,1181,1185,1165,1191,1169,1169,1182,1171,1207,1145,1194,1211,1160,1189,1205,1240,993,985,967,1009,1001,1023,971,992,991,1025,997,1029,973,1002,973,1008,978,992,997,1012,969,1004,985,961,978,986,1103,1108,1117,1076,1115,1077,1112,1126,1120,1107,1122,1124,1118,1107,1097,1105,1088,1125,1098,1101,876,906,938,927,922,908,914,927,896,911,920,912,920,936,889,958,930,895,948,940,903,955,909,920,913,904,923,905,904,958,900,954,623,593,609,589,644,588,607,625,585,590,628,616,627,633,616,626,716,732,696,688,712,713,724,719,744,682,727,722,736,705,714,709,719,713,732,753,694,712,709,711,727,721,736,812,802,784,793,825,811,813,792,792,810,821,789,834,806,785,788,808,829,702,710,707,692,717,719,719,702,719,714,718,727,724,726,718,722,713,712,711,720,718,709,716,732,695,729,705,1090,1095,1081,1124,1126,1119,1121,1112,1100,1098,1063,1089,1091,1118,1057,1086,1149,1103,1105,1099,1087,1149,1092,1101,1010,961,944,964,950,961,981,990,956,978,949,951,967,945,948,941,955,987,991,986,948,970,1049,1041,1091,1046,1087,1029,1050,1045,1058,1071,1050,1072,1042,993,1076,1035,1021,1093,1053,1040,1054,1025,1048,1035,994,1067,1010,1018,1201,1195,1135,1189,1177,1205,1197,1173,1203,1208,1178,1138,1153,1185,1129,1180,1194,1153,1183,1147,1171,1147,1177,1150,1189,1190,1192,1157,1174,1200,1167,1195,1022,998,982,988,1005,983,1011,1007,996,1010,1009,1005,1018,985,1019,1001,1001,1016,971,991,1022,979,997,1033,993,1050,1023,996,1044,997,984,1038,1056,989,1027,965,988,968,999,1038,1033,1032,1025,1004,1034,995,992,1055,1021,1036,1001,986,1006,957,971,957,954,982,980,955,964,959,959,956,957,968,937,964,970,958,976,980,953,965,975,965,965,965,959,960,980,979,1053,1040,1044,1055,1070,1047,1055,1062,1038,1066,1038,1042,1064,1071,1033,1055,1065,1049,1027,1051,1051,1031,966,897,916,940,904,929,914,909,882,899,911,910,883,927,892,910,899,932,919,1051,1049,1038,1031,1003,1061,1069,1005,1024,1027,1042,1038,1031,1021,1001,1036,1037,1073,1043,1046,1006,1052,1047,1035,1052,1048,1034,1013,1023,1021,1051,1043,1051,1027,1024,1049,1041,1038,1049,1061,1029,1044,1033,1048,1061,1024,884,923,936,920,922,923,901,910,913,938,916,904,949,905,919,940,923,877,923,940,901,895,907,910,959,945,921,945,954,937,946,917,928,943,956,933,945,942,968,926,947,953,924,956,939,957,936,950,916,921,922,935,862,853,830,847,837,854,861,862,852,853,855,835,852,849,853,852,856,852,844,859,888,847,866,866,857,851,855,678,705,663,683,699,689,713,688,679,694,683,705,700,676,698,702,671,685,694,707,710,680,700,698,709,685,1128,1121,1108,1113,1151,1133,1100,1120,1139,1120,1118,1074,1111,1124,1113,1123,1143,1104,1117,1096,1112,1156,1130,1147,1126,1134,930,933,892,962,959,953,895,906,923,935,958,927,937,911,924,926,944,912,884,891,944,910,937,713,680,677,692,685,659,686,707,698,667,679,680,686,699,707,697,690,682,645,690,710,681,700,675,669,674,673,688,683,1138,1160,1140,1133,1125,1131,1166,1089,1089,1103,1120,1129,1195,1121,1108,1089,1119,1113,1151,1102,1093,1127,1150,1093,1167,1040,1078,1165,1136,1149,1131,1105,1134,984,1010,997,956,994,1011,982,997,951,968,959,941,988,978,959,959,959,985,975,978,965,1054,1025,1019,1105,1007,1013,986,984,1032,1033,1009,1050,1030,1085,1037,1012,1036,1087,997,1003,1054,1065,1048,1074,1054,1046,1068,1079,1072,1050,1063,1072,1058,1064,1052,1065,1077,1057,1081,1057,1043,1073,1032,940,952,971,960,976,922,960,953,931,968,955,954,948,934,950,945,958,743,766,739,737,720,743,708,751,734,751,736,738,750,742,738,752,732,742,757,753,736,787,747,731,721,751,757,744,746,669,649,660,646,662,645,666,670,673,667,674,647,664,659,656,687,663,654,667,676,671,673,673,659,654,650,643,657,643,657,672,1078,1097,1087,1099,1168,1042,1114,1111,1104,1089,1103,1095,1094,1119,1077,1080,1086,1123,1119,1057,1104,1137,1048,1142,1109,1102,1009,1021,1026,1020,1038,976,1027,1004,999,997,1008,1033,1010,1025,1020,989,856,851,878,840,865,858,865,891,858,870,849,851,868,875,884,894,865,864,857,872,844,880,861,846,866,879,888,861,888,734,724,737,717,677,700,701,706,695,725,694,707,720,726,723,687,684,725,712,733,695,688,684,671,668,664,676,674,671,670,665,675,679,672,671,651,686,671,681,675,679,675,681,778,754,791,758,746,745,775,784,762,760,771,797,793,761,767,751,767,787,791,760,759,776,770,805,764,781,782,767,763,785,760,781,767,755,738,739,744,761,752,760,778,769,751,765,755,738,751,756,759,756,770,753,735,759,773,764,690,678,686,673,685,670,672,685,665,663,670,671,658,700,657,670,677,662,668,671,681,678,680,910,940,935,946,919,932,924,934,916,886,924,929,910,925,916,957,949,917,945,904,933,914,717,760,718,776,735,734,747,754,735,739,727,740,758,768,725,740,702,904,924,928,911,922,961,908,928,933,945,875,941,943,900,911,930,909,937,918,973,920,914,942,934,930,902,930,743,784,785,765,763,746,749,770,770,744,747,756,765,751,752,774,727,778,765,774,783,779,763,787,765,756,775,759,670,697,713,695,697,709,680,699,707,683,678,695,700,685,694,699,684,703,692,665,678,679,675,670,684,694,673,684,711,698,666,699,695,1133,1123,1153,1094,1094,1089,1087,1119,1092,1096,1105,1130,1118,1099,1088,1121,1124,1089,1091,1085,1140,1080,1091,1113,1131,1092,1149,1090,993,973,975,1002,999,996,998,980,954,981,970,976,976,974,941,994,979,976,1001,965,965,988,1000,986,902,905,932,914,930,890,928,914,920,896,937,920,919,911,900,885,914,887,903,910,875,879,943,899,915,903,912,1041,1050,1038,1024,1035,1017,1019,1032,1036,1045,1046,1026,1027,1027,1031,1017,1030,1017,999,987,964,976,1003,987,975,969,986,994,1012,995,1004,987,996,992,994,993,1005,986,1001,1003,994,977,980,983,990,984,976,987,1001,1001,1020,1006,1008,997,1014,988,999,1018,1001,1027,1007,1008,1015,1027,1020,1001,1010,1034,1008,1016,1011,1019,1021,1001,1001,1028,1002,983,1009,1003,1016,1014,1003,1011,1020,999,1008,1015,999,1000,1009,1002,927,916,878,865,910,909,900,900,946,938,879,923,933,926,889,878,904,903,924,892,906,927,888,919,935,872,922,1056,1088,1075,1054,1078,1083,1100,1111,1112,1083,1104,1082,1119,1095,1094,1095,1104,1105,1081,1074,1105,1068,1082,967,969,975,974,957,974,968,948,979,989,983,987,964,988,981,955,956,1003,963,990,994,972,961,952,974,973,969,975,954,1108,1155,1125,1147,1130,1151,1139,1155,1143,1149,1166,1126,1146,1145,1150,1147,1166,1149,1152,1140,1112,1140,1123,967,947,983,995,984,925,973,957,973,938,1002,964,967,979,961,983,961,970,960,949,947,979,969,965,985,975,980,970,959,985,956,962,1067,1067,1099,1076,1072,1070,1080,1094,1073,1074,1065,1086,1073,1068,1078,1048,1077,1071,1067,1041,1048,1079,1073,1086,1094,1063,1072,910,872,877,913,899,927,929,906,907,938,925,929,877,905,874,901,917,902,920,930,905,926,892,913,946,1027,970,1049,1022,1000,1006,1010,1065,1052,1041,1051,1032,1070,1037,1032,1022,1040,1018,1053,1025,1012,1043,1002,1013,1012,1043,999,1062,1043,1060,1045,1068,1024,1057,1062,1085,1043,1050,1056,1059,1057,1063,1052,1058,1051,1055,1041,1043,1029,1049,1067,1026,1070,1070,1047,1069,1072,1063,1062,1069,1086,1078,1088,1086,1085,1066,1061,1065,1061,1071,1095,1079,905,890,887,908,918,903,898,901,889,887,886,927,905,842,914,912,888,887,875,868,872,896,908,896,873,914,896,631,651,606,625,603,602,635,627,640,607,623,603,628,644,625,616,654,616,617,648,602,598,624,596,612,620,625,1116,1040,1030,1095,1035,1051,1114,1018,1012,1061,1071,1035,1031,1035,1038,1039,1072,1049,1039,1089,1038,1009,1020,988,1013,1025,1021,1006,1017,1000,1013,1035,1028,1026,1033,1014,1006,1017,999,1028,1030,1020,1017,1066,1054,1043,1072,1080,1084,1065,1069,1066,1046,1045,1054,1052,1067,1036,1059,959,984,953,949,974,995,958,946,981,963,913,945,936,958,963,962,966,956,966,967,937,968,958,971,968,941,661,685,647,701,679,665,663,683,703,691,714,676,704,666,674,713,645,654,639,698,678,655,643,653,695,681,680,647,670,660,647,666,660,670,658,652,656,650,681,669,656,652,662,658,641,631,649,643,658,659,661,656,644,660,652,658,688,643,668,660,672,723,701,680,682,701,673,673,688,679,685,672,697,693,720,699,678,695,672,711,669,685,699,692,680,671,699,673,692,930,919,903,935,922,905,928,921,917,905,920,922,941,913,901,925,885,938,918,926,929,916,910,917,954,938,711,708,708,688,676,712,703,690,711,743,716,683,702,680,690,682,716,701,724,701,632,643,650,626,638,656,635,638,623,642,638,648,650,639,642,662,619,628,637,647,630,616,650,649,627,655,645,1085,1060,1062,1078,1082,1062,1064,1091,1085,1027,1060,1046,1065,1098,1029,1028,1042,1102,777,768,749,765,744,755,768,750,749,758,783,754,749,725,743,729,729,748,724,764,746,752,769,791,716,791,1104,1080,1055,1077,1095,1061,1052,1104,1063,1076,1088,1083,1055,1078,1062,1087,1054,1089,1114,1088,1068,1036,1117,1082,1072,1121,1066,1077,1053,934,936,919,907,903,915,955,934,943,935,894,917,934,900,978,902,877,920,932,933,954,922,951,706,665,678,681,672,655,642,676,645,678,670,689,675,683,661,682,659,681,674,662,711,692,672,690,702,667,680,734,735,717,733,747,723,733,752,744,748,742,741,752,714,743,723,721,702,712,745,730,739,737,990,1011,1008,1015,1006,1037,1005,1016,1005,1027,972,1012,1005,1003,985,990,1026,892,869,867,884,889,864,900,887,900,857,864,895,880,894,897,815,833,829,837,821,844,846,800,846,844,811,819,841,811,827,814,812,848,826,840,819,838,830,828,650,662,633,666,680,678,664,655,669,657,688,662,675,674,666,677,680,669,645,643,666,1018,993,998,1045,989,1019,1014,1050,1053,1012,1042,979,1018,997,1013,996,991,1027,1006,984,1030,1000,1012,1016,1024,1045,1027,1033,1040,1069,1020,1033,1048,1047,1063,1035,1041,1048,1056,1036,1047,1037,1052,1017,840,841,820,887,871,835,884,869,829,864,863,878,837,877,839,906,847,865,851,824,828,861,880,846,670,676,642,644,632,669,647,656,649,666,632,634,680,642,645,680,679,654,665,667,636,668,663,644,638,671,646,671,1137,1154,1133,1119,1127,1168,1124,1123,1094,1160,1087,1135,1176,1141,1146,1102,1121,1151,1128,1155,1139,1164,1127,1123,1151,1155,1144,1153,1157,1166,1014,1042,996,1031,1033,1043,1022,1056,1014,1049,1030,995,1039,1056,1035,988,1059,1028,1064,1046,1032,1002,1039,1051,1021,1041,1065,1018,1007,896,899,883,887,908,875,873,901,905,873,869,868,877,875,905,915,901,870,892,872,906,906,884,904,911,878,915,888,882,896,703,706,702,689,690,693,661,699,679,666,674,717,673,703,681,686,690,694,691,674,674,696,675,689,577,583,609,605,572,567,580,574,562,565,582,581,606,590,600,575,571,588,609,567,599,569,585,566,585,664,666,647,651,640,636,675,640,645,627,679,674,616,643,630,657,652,660,640,662,640,645,642,650,656,636,664,669,668,638,679,637,970,986,976,989,948,1000,974,954,957,962,946,986,999,948,948,984,974,992,985,968,972,995,950,953,994,937,951,991,1023,1045,1018,1052,1067,1055,1028,1035,1047,1004,1012,1027,1049,1036,1026,1021,1006,1044,1037,1007,1042,1030,1041,1049,1043,1050,1038,1009,949,939,920,966,955,949,939,944,934,905,941,943,954,969,944,925,970,907,938,911,950,929,932,921,924,921,926,952,926,971,924,951,646,661,648,642,624,642,666,674,667,623,669,658,631,649,651,650,634,645,662,635,647,660,665,653,633,646,649,1083,1095,1098,1079,1054,1064,1106,1069,1132,1074,1053,1129,1074,1101,1104,1048,1080,1079,1053,1074,1090,1062,966,997,979,993,972,999,974,994,952,994,1006,989,1009,977,970,991,987,972,1012,999,990,966,986,975,1009,962,996,994,959,1005,1081,1101,1079,1071,1071,1085,1080,1064,1101,1071,1086,1081,1069,1079,1073,1089,1043,1088,1072,1075,1071,1101,1078,1068,1096,1090,1071,1104,941,952,953,976,968,965,967,949,953,928,921,957,944,938,933,939,903,934,933,937,935,911,942,987,961,927,947,928,948,954,966,973,949,948,960,959,951,955,954,938,963,946,941,958,951,826,855,848,820,857,875,872,855,842,859,829,848,849,831,831,817,843,824,846,669,677,697,673,649,640,675,675,679,692,663,645,658,674,656,671,671,687,671,688,667,659,693,671,641,650,652,651,673,652,659,659,649,646,658,632,659,660,676,638,652,659,672,639,645,635,659,666,665,666,909,938,944,922,906,925,958,913,949,917,920,906,905,913,895,915,954,948,977,926,915,949,914,935,923,956,939,909,928,935,946,896,909,925,941,799,806,848,838,831,819,833,836,821,814,823,823,839,825,832,796,843,830,813,822,828,824,817,790,848,820,820,816,819,664,669,665,628,689,668,655,655,694,648,672,664,655,674,655,664,645,652,661,666,673,679,679,614,616,609,618,586,615,593,607,600,628,601,615,619,631,609,601,611,615,608,638,613,589,606,1081,1034,1142,1091,1085,1143,1111,1063,1085,1086,1093,1064,1131,1033,1023,1033,1099,1138,1023,1106,1035,1047,1007,1125,1097,1088,1009,1052,1032,1031,1034,1031,1052,1031,1022,1026,1059,1057,1039,1035,1043,1023,1064,1037,1031,1040,1035,1040,1034,1083,1029,1041,1072,674,637,690,638,654,666,634,665,663,684,669,622,637,670,649,655,624,604,640,638,648,642,665,652,638,658,660,646,647,662,658,637,621,659,657,666,671,621,646,657,622,629,666,668,691,706,678,701,679,687,654,701,675,677,696,654,674,677,671,685,672,694,686,966,967,953,979,990,973,988,975,951,949,964,970,975,985,972,957,964,1015,979,960,987,984,952,1013,990,1085,1081,1064,1067,1064,1091,1078,1079,1079,1080,1070,1070,1051,1067,1084,1083,1076,1062,1059,1099,1061,1102,1082,1056,1089,1054,1064,1062,1065,1061,1079,1059,1069,1077,1082,1047,1055,1076,1076,1064,1060,1055,1068,1052,1067,1060,1079,1082,912,931,924,933,918,912,940,951,919,896,959,936,916,942,914,945,948,945,920,919,933,933,939,932,913,928,681,699,680,647,664,650,647,686,681,678,670,689,698,668,641,678,697,709,683,685,659,667,650,657,644,674,629,623,631,625,634,635,639,639,599,607,633,628,641,635,628,640,604,593,629,616,887,943,963,910,917,944,956,911,918,956,976,890,954,968,927,947,927,936,946,924,947,955,758,739,740,753,763,757,734,773,781,785,779,764,751,769,746,769,761,753,747,761,764,761,727,770,751,717,754,698,696,702,698,708,704,708,704,727,705,701,716,691,737,697,702,688,694,703,697,929,925,952,930,919,896,892,919,896,919,908,920,913,915,904,934,928,929,919,883,924,930,902,915,903,922,929,948,960,930,960,966,976,955,932,935,929,969,949,948,947,939,961,954,970,964,944,990,1011,1009,1029,984,1024,1003,1028,1016,988,1003,1050,1006,998,995,1005,900,907,912,898,901,897,936,913,936,940,902,933,899,905,916,908,894,916,920,928,886,888,892,917,890,900,684,717,698,686,705,701,699,707,711,677,714,673,725,704,703,685,695,719,689,718,680,717,715,710,734,718,901,870,861,818,867,862,871,859,838,895,861,884,858,882,878,869,843,863,870,900,900,887,890,848,892,827,1094,1059,1055,1035,1052,1059,1044,1005,1034,1007,1058,1044,1019,1053,1047,1048,1064,1030,1014,1026,1012,1041,1050,1034,1052,1018,1027,1062,1038,1045,1051,927,886,954,907,911,924,928,898,943,905,929,939,912,902,926,916,943,915,911,936,933,943,904,906,691,680,685,690,692,677,697,711,688,678,673,682,661,683,693,684,683,684,707,675,675,675,713,1081,1070,1049,1060,1073,1054,1058,1083,1094,1051,1085,1096,1090,1048,1090,1063,1045,1061,1043,1081,1067,954,977,961,983,986,981,993,969,983,974,983,977,992,975,981,975,985,989,965,982,982,985,1005,985,991,981,972,985,959,761,747,757,780,753,749,774,763,778,761,755,800,727,773,746,769,747,691,686,710,671,707,678,679,698,668,680,675,669,666,658,683,688,692,667,676,704,682,700,700,667,1066,1023,1029,1044,1028,1054,1078,1005,1032,1023,1052,1037,1033,1018,1038,1008,1055,1020,1027,1105,1089,1078,1089,1079,1104,1109,1099,1111,1084,1096,1088,1144,1091,1099,1084,1087,1084,1083,1106,1137,1093,1108,1092,1105,1118,1108,1101,1067,1083,950,951,942,952,914,945,978,904,953,890,932,942,924,960,925,907,936,867,909,958,957,891,949,906,924,1130,1095,1146,1123,1117,1088,1067,1114,1067,1106,1121,1076,1049,1115,1091,1096,1089,1103,1131,1091,1139,1078,1114,1143,1128,1055,1069,1082,1046,1060,1092,1060,1076,1050,1090,1066,1059,1095,1072,1072,1085,1066,1096,1065,1056,1074,1077,1052,1076,1068,1059,1075,1060,936,911,919,912,918,906,898,906,907,937,918,930,889,925,940,943,905,947,915,901,915,939,913,903,932,946,1077,1088,1067,1049,1083,1105,1065,1059,1069,1087,1087,1084,1066,1103,1057,1069,1075,1078,1091,1069,1067,1079,1084,1069,1068,1070,1093,865,842,897,858,841,849,865,904,858,882,852,922,870,891,820,881,870,898,879,859,869,882,867,841,663,650,677,662,644,655,689,673,696,666,686,645,664,680,658,653,666,675,679,668,676,658,667,655,679,656,643,621,659,673,1185,1138,1218,1217,1226,1116,1176,1183,1113,1202,1153,1166,1229,1202,1224,1205,1239,1255,1239,1221,1157,1192,1165,1035,1067,1032,1044,1035,1021,1021,1042,1032,1054,1026,1017,1051,1033,1017,1030,1054,1056,1004,1022,1038,1032,1030,1013,1026,1032,1030,1098,1041,1026,1040,1068,683,648,672,663,651,699,651,672,691,708,687,677,677,718,685,639,670,660,673,685,674,692,685,638,675,701,704,653,989,961,963,976,948,977,955,981,963,974,933,965,948,971,954,958,1004,942,988,944,952,967,1002,969,948,960,967,974,981,1016,999,1008,1024,1025,1013,1027,985,1011,1003,1006,995,987,1017,1027,1014,1001,1005,1013,999,985,996,1005,921,962,923,923,929,949,951,939,962,969,948,922,946,940,953,926,936,920,1201,1219,1210,1179,1213,1219,1222,1194,1213,1232,1240,1202,1240,1240,1235,1202,1207,1182,1208,1202,1202,951,920,979,976,975,955,957,946,1006,961,970,968,977,960,950,965,980,977,975,961,955,921,934,965,649,670,663,686,645,648,692,656,663,646,656,667,681,660,666,659,655,652,671,653,650,652,678,706,672,704,719,693,695,688,707,694,715,691,675,688,713,685,718,703,674,697,716,696,1214,1175,1209,1224,1221,1203,1183,1172,1212,1257,1178,1191,1194,1184,1178,1216,1245,1211,1197,1008,995,974,982,958,977,1014,1015,1026,959,998,967,1009,991,967,975,993,959,998,974,951,1011,1031,987,948,691,685,697,719,687,706,719,714,724,707,701,754,742,690,704,744,694,682,710,692,700,732,693,720,699,713,708,753,820,792,781,799,775,801,843,803,825,834,821,795,802,792,787,805,798,803,797,776,832,794,819,817,784,809,780,800,768,802,784,815,792,788,801,799,796,780,790,798,793,810,795,714,690,715,698,715,694,691,701,686,695,708,713,716,724,715,707,722,714,700,714,727,718,680,689,670,673,670,666,661,672,682,668,684,684,665,679,676,675,671,690,695,658,682,677,689,672,668,653,1016,974,1018,1022,1018,989,988,1014,994,989,964,998,1027,1021,1023,1015,1012,1008,1025,957,1003,1010,1001,1003,1008,957,958,967,975,970,964,987,968,982,971,996,992,948,1006,990,968,972,989,979,987,971,966,983,994,993,988,996,969,989,1011,994,1011,1013,986,993,992,991,978,998,993,998,995,1009,1006,1004,991,969,999,1002,1002,986,993,1010,1003,994,983,995,985,1041,1054,1065,1037,1047,1039,1052,1011,1075,1052,1053,1081,1056,1023,1048,1056,1035,1057,1034,1060,1052,1062,1060,1045,1030,1047,1046,953,941,960,919,948,949,930,967,952,936,956,953,965,938,956,937,939,966,926,948,947,911,941,917,963,671,666,692,714,678,694,673,696,713,726,701,664,706,706,712,705,705,670,667,660,633,624,641,632,628,630,624,639,612,643,640,631,620,633,646,616,626,622,649,648,643,653,636,620,694,696,677,701,682,697,702,671,686,693,710,683,686,685,688,700,679,672,676,682,682,700,680,637,672,673,688,660,661,677,672,681,671,685,661,652,697,972,936,954,1000,906,950,972,985,951,962,908,954,937,930,974,951,938,962,935,922,958,945,965,923,989,957,946,960,937,958,678,693,686,708,728,692,705,704,708,735,704,734,696,681,672,689,708,708,701,710,663,696,712,658,702,673,675,629,625,607,627,637,637,629,653,653,640,623,637,629,624,634,642,622,616,639,988,947,994,997,988,962,948,933,959,978,920,985,973,976,979,948,928,977,979,967,966,928,958,989,988,1010,991,988,1008,983,992,977,989,997,950,987,986,1012,996,983,1006,1002,1007,998,980,1009,977,1015,995,994,977,1029,1013,996,1002,1012,1016,1013,998,1052,1002,1018,998,1005,1016,1004,996,998,992,1009,1021,999,1014,997,1015,1010,1052,909,939,904,925,941,899,932,967,957,930,914,916,938,920,929,935,955,924,930,910,923,754,771,755,751,743,769,742,728,763,753,758,737,754,772,735,745,765,751,788,733,763,749,747,767,747,755,729,760,759,1068,1062,1058,1065,996,1010,1016,1070,1032,1065,1047,1029,1044,1041,1035,1042,1032,1040,1058,1017,1025,1038,1028,1046,1010,1034,1065,1040,1034,954,944,916,944,909,931,931,920,942,931,947,899,925,937,925,898,932,937,935,917,948,1109,1111,1114,1122,1104,1084,1110,1101,1117,1131,1125,1117,1133,1089,1113,1126,1114,1115,1123,1127,1103,1122,1109,1108,1117,1107,1114,1116,1109,1092,1111,949,966,945,946,951,937,941,944,941,961,948,938,969,968,968,948,954,963,940,969,947,936,942,995,1021,978,994,1020,1027,994,997,969,979,1040,1015,1013,1041,1025,1026,964,1008,1005,1003,1019,999,1003,1041,1021,1025,1024,1026,1022,1001,1008,1025,1022,1015,1017,1014,999,1003,1018,1029,1000,1023,1046,1042,1029,1025,1036,864,866,872,876,884,847,819,863,848,858,858,849,840,873,871,878,851,830,909,867,844,832,827,866,680,652,675,686,687,699,697,679,662,662,678,650,694,695,668,662,697,676,699,656,661,1033,1017,1044,1055,1048,1041,1019,1039,1050,1056,1022,1062,1052,1037,1045,1055,1055,1037,1028,1059,1049,1069,1046,1011,825,793,829,753,820,798,823,806,785,803,765,814,838,801,815,825,832,793,760,799,788,801,836,789,817,784,792,791,895,931,874,890,892,896,881,884,904,888,917,919,902,889,890,895,858,885,895,908,878,889,903,881,981,990,993,1007,1013,990,1021,973,970,976,998,990,973,988,1015,992,964,1021,994,981,993,995,1000,998,999,1002,978,978,979,969,967,991,973,961,967,985,994,987,1005,965,987,967,978,954,969,975,959,975,969,962,971,969,986,915,892,882,882,878,896,903,913,885,908,921,912,914,861,899,897,896,911,900,922,923,927,883,895,882,1065,1080,1057,1070,1064,1098,1066,1080,1067,1070,1070,1056,1083,1084,1076,1073,1079,1071,1076,957,966,975,979,962,960,956,983,979,973,982,950,962,967,963,962,975,982,980,986,951,963,961,987,1048,1101,1096,1111,1089,1086,1096,1064,1089,1081,1097,1078,1112,1113,1124,1096,1099,1076,1102,1096,1097,982,1006,969,1019,984,988,1007,978,986,982,991,967,969,1002,967,969,971,987,967,976,966,973,978,986,974,968,1000,683,699,688,710,687,663,674,717,696,694,705,706,673,704,690,711,685,685,723,728,709,613,598,608,612,605,615,610,608,616,645,590,586,607,579,611,603,621,601,604,639,593,608,620,621,606,624,615,622,633,631,632,629,629,629,621,615,626,608,600,607,633,624,610,613,618,641,619,624,791,772,754,784,793,774,793,768,779,789,774,785,791,768,787,771,792,783,770,772,773,796,797,767,768,802,809,797,809,793,794,810,799,832,800,797,825,794,816,812,805,817,794,794,780,794,776,811,848,804,816,789,1251,1297,1351,1405,1326,1331,1329,1383,1318,1284,1359,1313,1296,1373,1359,1305,1286,1192,1114,1096,1117,1068,1098,1087,1071,1053,1094,1066,1077,1070,1078,1090,1053,1073,1077,1075,1110,1087,898,973,998,971,911,956,945,979,973,972,927,965,906,935,925,942,986,951,906,925,957,1005,956,931,970,957,949,964,984,967,965,957,977,962,964,977,978,976,981,958,962,968,983,954,960,986,972,975,961,978,976,970,1013,1026,1023,1034,1018,1017,1005,1032,1017,1023,1011,1016,1031,1012,1025,1037,1045,1013,1014,1034,1021,1011,1010,1041,928,935,917,877,922,917,903,896,913,896,910,878,921,943,916,907,930,926,879,911,908,891,913,909,903,928,892,931,921,910,906,919,911,919,1064,1051,1074,1085,1083,1079,1060,1085,1084,1084,1059,1063,1061,1077,1074,1062,1058,1063,1072,1071,1089,967,985,990,991,978,967,1006,989,979,972,972,986,964,957,983,1009,977,975,974,985,983,967,975,809,836,811,857,850,836,831,856,849,842,810,816,815,847,839,827,828,830,831,833,822,830,838,842,828,845,858,862,850,823,823,823,795,830,766,771,804,796,778,783,802,790,749,806,774,793,810,828,793,770,813,797,782,793,794,818,777,826,827,791,766,1066,1059,1045,1092,1056,1043,1063,1038,1088,1058,1043,1035,1061,1042,1063,1072,1052,1083,1067,1078,1040,1048,1024,1048,1052,922,916,910,917,887,935,902,932,945,940,893,880,896,916,912,922,913,908,920,917,951,893,1060,1064,1032,1041,1062,1032,1067,1046,1077,1074,1039,1063,1050,1048,1056,1060,1038,1063,1039,1036,1047,1045,1040,919,950,900,936,898,943,907,922,907,935,945,903,915,918,946,888,929,922,919,938,902,672,662,685,677,682,659,671,678,685,647,655,662,679,682,658,669,676,651,668,673,666,674,654,676,655,649,650,673,699,662,661,656,655,668,659,663,668,649,655,649,661,664,663,647,652,639,643,667,664,659,670,661,655,671,658,658,673,649,641,666,662,632,627,629,613,630,631,632,625,625,646,628,621,611,621,631,632,632,623,626,620,615,622,629,623,631,640,659,653,673,661,689,657,672,665,674,664,644,654,689,650,656,682,660,644,659,657,646,661,669,668,681,702,682,712,704,701,702,701,660,707,696,694,682,684,665,658,639,673,651,646,658,659,653,679,651,647,663,658,658,642,623,651,651,639,640,647,641,647,640,1158,1098,1105,1121,1083,1100,1113,1102,1096,1118,1080,1022,1127,1058,1130,1097,1154,1112,1075,1085,1089,1090,1083,1098,1144,1101,1102,1105,1168,1113,1117,1145,1009,931,963,945,909,954,966,924,959,980,967,1024,984,981,990,973,968,980,951,915,943,929,965,910,944,945,915,976,641,669,633,631,664,651,651,649,678,674,634,644,650,639,692,616,667,661,1063,1040,1039,1117,1074,1095,1067,1050,1061,1105,1091,1050,1077,1064,1011,1111,1092,1100,1088,1098,1047,1036,1057,1027,991,990,998,983,1020,983,1025,999,989,997,1008,999,994,1019,1009,1001,999,1016,1011,1004,1026,980,998,998,1005,1022,994,1013,981,999,994,997,1009,994,1024,1004,988,1013,1004,1011,1002,996,1001,1001,1004,984,993,987,990,984,1005,889,871,893,883,866,854,858,901,874,862,884,834,909,872,860,873,872,826,861,871,864,857,891,894,841,933,967,922,928,925,909,996,965,975,927,955,960,944,947,911,929,911,946,957,984,935,914,888,948,925,999,978,940,974,961,953,927,949,955,974,966,955,949,959,959,988,958,964,968,958,964,992,987,1014,993,1016,1003,1009,988,1004,998,1025,1009,997,1016,1013,1009,1003,1023,984,1005,994,1019,1006,1030,992,996,1008,993,1057,1064,1072,1054,1036,1062,1031,1061,1077,1040,1074,1051,1074,1060,1059,1079,1031,1067,1064,1057,1055,1041,1041,1056,1053,965,955,950,965,913,956,949,947,943,937,959,957,958,943,941,973,959,979,948,958,965,969,987,976,973,969,685,695,695,657,687,692,671,695,681,665,679,714,693,713,702,722,689,656,711,647,684,705,708,693,693,682,693,729,703,722,719,677,706,725,686,685,703,692,722,733,702,721,715,702,697,712,693,689,711,703,727,674,711,711,726,712,717,725,711,702,687,684,694,697,713,693,710,712,701,681,690,699,710,692,693,702,696,696,712,702,688,689,1027,960,961,922,941,948,962,981,998,923,968,983,989,965,998,979,981,950,954,976,973,960,951,964,919,960,1010,967,973,987,1071,1060,1071,1067,1038,1083,1083,1061,1059,1072,1070,1098,1076,1102,1072,1050,1067,1073,1086,1076,1059,1071,1077,1085,1055,1065,1067,1065,1082,1090,1079,1070,1093,1088,1084,1075,1070,1093,1070,1069,1095,1110,1075,1079,1039,1082,1069,1077,1076,1101,1092,1107,1104,1100,1100,1107,1094,1117,1104,1101,1089,1116,1106,1109,1109,1071,1111,1102,1114,1099,1119,1085,1055,1084,1060,1073,1058,1075,1053,1070,1074,1081,1069,1069,1059,1074,1055,954,941,933,949,921,923,917,959,948,930,935,911,952,946,908,923,939,948,924,972,958,925,693,674,698,675,653,677,672,674,662,652,683,642,674,680,663,654,673,674,687,691,659,662,635,654,685,657,682,670,661,682,666,670,661,678,672,667,656,677,642,687,678,813,796,774,778,758,791,757,754,778,743,780,775,786,777,771,786,770,800,775,768,766,768,766,828,790,752,772,696,699,699,699,679,696,697,680,698,701,708,705,703,694,689,693,709,696,683,702,696,708,713,680,694,667,685,687,676,684,705,986,984,969,973,1016,979,999,995,972,969,978,949,990,999,962,990,1003,1010,991,965,989,973,1041,1000,987,731,737,744,736,745,768,753,757,727,743,743,759,782,738,778,760,735,756,752,734,755,780,726,1206,1142,1195,1158,1181,1136,1149,1161,1153,1111,1167,1169,1145,1149,1162,1140,1160,1166,1132,1173,1149,1172,1179,944,972,941,948,955,1020,957,970,971,931,945,943,970,954,977,976,933,975,979,954,947,992,983,956,942,937,675,683,713,697,685,667,688,689,700,715,631,668,697,690,695,664,709,652,672,695,685,687,636,679,656,678,650,670,683,686,665,672,681,682,677,684,694,664,658,669,676,671,668,674,667,674,1050,1047,1078,1056,1086,1060,1026,1079,1054,1058,1082,1017,1068,1063,1107,1040,1030,993,1018,1049,1069,1072,1033,1052,1065,1074,996,1083,1043,1061,1018,997,981,974,985,967,983,987,983,1003,983,974,984,994,994,964,958,979,1006,960,984,986,984,995,988,961,766,792,777,752,763,794,785,763,778,807,797,798,778,781,767,769,789,793,779,792,767,789,784,811,758,745,770,763,773,812,755,723,725,758,741,723,751,726,736,771,754,731,763,732,746,754,744,752,770,766,736,734,742,753,900,975,940,919,911,939,895,914,934,937,941,931,900,934,912,895,947,946,940,940,927,869,875,840,859,847,858,875,845,852,855,870,866,892,859,842,862,852,861,842,826,875,862,866,851,854,843,831,727,727,724,717,706,711,701,706,722,687,702,726,719,734,707,721,698,695,737,732,714,712,726,689,705,693,722,706,699,717,730,716,734,729,731,711,719,723,720,724,754,731,728,728,713,751,721,730,728,722,711,739,717,720,722,729,730,1080,1031,1048,1053,1072,1046,1081,1081,1075,1040,1079,1067,1071,1047,1070,1052,1056,1046,1038,1061,1040,1047,1076,1089,1075,1053,1108,1084,1045,1038,1069,986,998,977,1005,978,987,1012,1028,983,1004,1017,1011,1008,1005,1034,985,1002,1025,1031,1004,1024,994,978,1018,1004,1027,1052,1046,1015,1053,1048,1044,1053,1036,1013,1031,1039,1024,1027,1056,1029,1033,1023,1042,1054,1053,1041,1043,876,875,885,893,884,868,870,884,922,897,853,875,923,872,918,907,883,923,879,880,875,925,887,918,885,883,886,898,1002,1038,1016,986,970,1031,1008,1017,960,1000,1003,1011,1014,968,1006,982,1003,987,1061,1054,1046,1049,1054,1039,1056,1061,1031,1069,1049,1030,1029,1037,1061,1049,1049,1050,1055,1035,1041,1078,1049,1046,1070,1033,1057,1060,1033,934,867,911,909,917,871,908,911,913,900,867,903,899,877,909,893,885,894,875,885,914,896,908,1054,1055,1051,1054,1077,1057,1076,1042,1071,1029,1067,1050,1067,1078,1038,1057,1055,1072,1064,1064,1074,1056,1060,1056,1064,934,922,918,920,918,901,932,931,917,908,934,919,910,942,935,912,914,936,936,938,952,940,928,913,909,931,933,929,906,926,913,916,935,896,1094,1057,1053,1034,1020,1051,1052,1037,1052,1042,1060,1056,1030,1045,1057,1019,1048,1026,1027,953,949,976,955,975,955,957,986,959,990,980,938,941,959,931,961,934,960,946,963,959,960,955,952,972,944,984,950,943,961,941,659,655,640,612,663,669,683,675,637,660,636,639,656,663,646,658,639,626,636,672,660,623,626,632,633,623,618,596,611,625,657,647,612,631,627,619,600,632,614,614,617,626,629,626,620,604,626,1069,1061,1045,1074,1053,1072,1077,1065,1032,1048,1053,1067,1059,1052,1059,1070,1022,1110,1065,1072,1081,1067,1036,1039,1069,1092,1025,1018,998,1057,1036,1051,1027,1004,1006,1005,1042,1036,976,1026,1020,1020,1004,1015,1027,983,1010,1034,1032,1008,992,1038,1115,1083,1077,1098,1111,1112,1129,1106,1101,1138,1116,1108,1113,1121,1116,1122,1132,1126,1136,1099,1117,1088,1118,1111,1105,1124,886,856,865,878,854,821,882,891,869,903,869,890,862,906,867,885,935,948,867,900,862,887,934,856,887,879,870,678,642,691,644,640,641,658,639,653,636,619,668,648,657,651,642,669,648,635,643,640,648,647,645,671,641,641,643,1000,972,961,993,984,1010,1019,975,987,978,957,1001,975,966,997,940,1018,1012,1003,978,1011,1015,963,813,762,805,723,783,787,760,758,823,809,770,769,771,765,783,774,762,795,767,792,785,785,725,795,791,768,935,920,928,939,939,948,944,933,949,913,924,957,927,929,934,929,949,939,930,934,935,957,938,948,703,750,744,720,705,718,751,731,728,732,717,763,736,713,726,690,768,726,822,841,857,861,829,863,839,850,844,851,854,880,859,850,856,835,858,847,859,836,798,836,829,810,846,826,989,1024,1000,1004,1011,976,1006,1014,1029,1016,1007,1021,1010,1015,1010,1023,996,1011,1003,999,967,966,974,980,976,983,985,974,981,960,959,973,977,978,1000,981,973,992,981,958,981,978,969,990,975,986,970,980,958,981,998,1034,1032,1015,1027,1021,1034,1024,1034,990,1031,1010,1029,1029,1021,1022,1006,1012,1031,1030,1006,1033,1030,1036,1006,1022,899,914,919,914,914,881,909,908,897,920,904,890,940,882,911,926,928,912,894,893,930,886,893,879,894,897,908,908,910,898,919,935,1094,1074,1097,1062,1069,1078,1074,1076,1080,1054,1048,1078,1088,1073,1093,1098,1096,1079,1081,1085,1060,1069,1081,1068,1075,1079,1106,1081,1081,1074,1001,955,968,955,964,973,997,961,980,955,1002,977,972,968,968,987,972,973,945,946,975,970,958,942,958,964,949,1079,1069,1058,1082,1086,1059,1067,1068,1067,1070,1069,1070,1080,1066,1077,1071,1061,1074,1062,1062,1070,1077,1062,1072,1075,1078,1068,1080,927,913,937,932,922,931,927,917,902,914,933,944,907,938,933,897,926,917,877,903,861,896,870,880,885,865,891,861,886,873,882,870,883,878,885,878,913,870,876,884,880,895,678,704,683,660,688,685,686,695,704,633,698,672,675,698,713,687,652,725,705,703,692,695,700,686,673,682,683,636,651,636,633,646,623,645,622,636,627,629,643,653,643,649,633,638,659,635,647,632,1211,1183,1173,1127,1167,1178,1201,1167,1166,1119,1166,1202,1175,1190,1173,1179,1132,1113,1171,1126,1160,1193,1198,1188,1173,1162,1177,1206,1197,1128,1214,1166,1015,1035,1033,1046,1016,1040,1026,1014,1021,1036,1045,971,988,1042,1027,1018,1002,1042,1000,1044,1041,1022,1031,1011,1044,824,842,836,804,861,830,841,845,828,809,851,831,831,813,822,830,828,833,818,814,834,840,855,818,785,756,760,745,751,799,794,784,788,752,780,782,789,774,794,780,781,803,786,919,946,959,949,938,970,944,956,917,926,959,951,965,967,934,963,967,930,956,940,972,968,923,960,986,958,964,1001,984,982,982,980,989,992,971,979,987,951,987,980,961,975,948,981,975,973,948,998,996,1011,989,989,974,982,983,979,1005,979,944,954,961,1064,1029,1060,1072,1057,1071,1064,1063,1082,1079,1073,1058,1056,1043,1070,1060,1084,1059,1047,1053,1063,917,894,893,928,967,877,917,928,887,905,899,911,910,948,910,946,924,914,924,930,660,701,673,650,692,663,682,699,679,666,679,660,715,653,670,678,674,661,672,670,671,677,662,697,688,686,689,699,690,673,690,679,690,690,678,704,676,697,687,704,683,684,702,693,688,674,681,686,687,691,689,1215,1124,1165,1148,1147,1146,1105,1093,1130,1175,1091,1207,1228,1139,1135,1095,1160,1134,1186,1196,1161,1183,1164,1118,1183,1169,1136,1173,1153,1036,1040,1047,987,1014,1034,1025,1058,1024,1000,1017,1009,1049,1035,1033,1068,1056,1014,1043,1061,1022,1036,1031,1001,1037,1053,966,956,973,983,1004,972,978,978,961,971,971,991,992,976,977,985,971,949,953,971,974,973,941,1008,969,992,994,962,962,989,992,965,676,721,715,721,713,713,708,702,702,707,698,709,719,687,702,729,662,731,702,698,693,1133,1054,1067,1082,1148,1082,1092,1084,1115,1128,1068,1087,1138,1068,1115,1084,1085,1159,1080,877,916,906,911,943,881,924,883,915,939,922,870,899,922,911,901,897,924,896,881,868,887,900,934,920,929,905,648,647,630,667,656,656,638,651,661,666,631,648,666,660,652,648,634,624,633,647,622,673,637,644,660,659,651,962,939,983,951,992,934,940,967,974,944,988,971,990,993,985,961,952,996,927,971,975,968,975,959,977,956,945,981,735,737,731,690,687,734,719,742,719,715,722,736,692,733,712,709,711,699,726,715,715,750,750,749,725,726,706,651,635,628,615,640,627,655,636,628,619,624,645,643,642,650,627,626,638,627,635,662,670,651,657,662,659,670,676,665,654,661,634,660,662,671,672,638,680,657,658,657,656,674,1124,1184,1121,1162,1177,1150,1201,1174,1240,1217,1202,1241,1147,1215,1167,1169,1181,1170,1213,1287,1173,1189,1023,1010,1055,997,1030,1044,1038,1038,1074,1043,1065,1006,1030,1039,1022,1046,1091,1022,1036,991,1051,1044,1034,1018,1057,1052,944,932,955,955,933,971,956,950,960,945,919,939,936,981,923,960,929,903,908,901,900,907,906,933,907,901,921,926,906,913,918,910,921,915,933,918,935,904,925,894,994,967,969,990,948,941,951,951,973,1000,962,959,967,979,936,980,941,992,976,945,968,961,946,959,953,961,947,885,888,899,901,885,908,874,875,885,892,892,900,895,887,903,878,933,864,921,888,893,854,875,893,717,675,713,712,715,736,737,709,708,716,704,741,734,688,725,750,733,722,718,697,726,705,721,752,712,688,746,735,761,726,921,949,942,955,935,970,911,951,959,968,962,968,928,948,969,963,908,940,909,934,947,933,896,937,932,927,927,945,912,849,827,796,832,806,788,831,810,825,813,799,784,801,837,826,831,819,816,817,836,804,787,804,820,803,801,811,813,829,813,801,814,1067,1058,1076,1074,1056,1073,1071,1064,1057,1035,1055,1046,1062,1067,1042,1108,1071,1029,1063,1079,1045,1047,1075,1068,1071,871,863,879,866,901,861,867,884,926,855,860,882,879,867,890,874,867,872,859,863,847,840,864,866,889,870,615,611,640,656,633,640,607,619,639,619,642,637,584,639,597,628,627,639,659,624,617,624,638,659,609,617,627,644,622,644,640,626,627,650,589,628,621,625,620,627,638,669,634,636,648,639,640,624,1102,1094,1083,1074,1044,1070,1124,1092,1073,1089,1115,1084,1041,1110,1087,1077,1053,1064,1090,1031,1119,1053,1049,1037,1050,1061,1078,1027,1063,1051,1026,1051,1052,1031,1053,1079,1045,1048,1075,1013,1041,931,891,926,885,911,938,942,928,960,950,920,913,916,906,913,927,912,923,908,878,926,919,895,721,712,654,670,709,658,694,666,708,713,683,684,675,695,647,692,651,667,671,673,692,660,699,663,698,659,679,658,683,654,687,577,601,597,585,586,606,603,592,594,592,615,609,591,611,596,614,601,600,583,607,598,590,752,732,736,750,765,721,760,726,741,748,720,748,742,751,724,754,741,725,742,745,733,737,735,734,716,752,726,716,738,712,721,721,738,729,727,739,722,713,743,716,722,736,727,961,965,937,962,954,932,958,955,959,955,937,956,942,966,964,946,935,965,933,939,929,969,922,965,925,972,945,994,996,973,987,951,954,969,973,981,977,963,995,979,1004,1008,980,979,956,956,988,972,986,1001,992,1018,955,975,976,972,937,965,965,943,977,965,983,982,978,991,976,976,951,979,947,968,956,961,987,989,1118,1111,1105,1097,1111,1110,1103,1096,1123,1111,1108,1111,1111,1119,1103,1120,1102,1114,1086,1125,1112,1134,1123,1113,928,902,923,972,971,905,934,951,965,968,967,949,900,968,928,955,907,942,927,930,723,674,708,674,729,677,709,716,679,718,693,687,680,661,708,689,726,712,694,710,693,723,706,674,686,702,689,706,726,697,718,697,708,690,714,701,704,708,723,725,719,711,703,708,687,705,1019,1050,1055,1055,1061,1060,1061,1043,1061,1024,1050,1068,1076,1099,1025,1075,1043,1046,1022,1064,1049,1032,1010,1045,1056,1023,1052,1050,1044,1048,1061,1073,1018,1067,1060,1055,1046,987,988,1005,999,998,996,998,983,998,987,984,1001,1006,982,1013,996,999,1003,1010,1002,996,997,1000,981,987,983,1012,1000,975,983,1000,979,1000,992,999,967,984,1002,975,995,1003,969,993,999,995,982,995,894,914,890,893,907,880,928,869,894,890,907,906,846,921,876,890,887,872,902,871,867,854,747,704,746,753,753,747,741,705,724,737,756,743,737,737,706,745,724,721,725,733,757,734,740,741,731,722,734,729,721,736,960,996,974,972,976,962,985,967,1008,993,980,957,1005,959,961,1009,996,1099,1059,1088,1052,1029,1052,1081,1069,1056,1046,1082,1044,1072,1044,1058,1067,1073,1089,1065,1078,1074,1047,1066,1059,1096,1058,1041,1064,976,971,967,945,974,981,961,959,974,958,992,994,972,984,943,975,955,999,968,978,954,978,978,957,986,988,820,834,844,829,830,835,834,830,858,801,846,856,821,841,846,820,822,830,828,843,819,856,831,746,737,722,695,717,723,745,729,733,734,729,726,730,735,722,708,732,704,705,721,848,870,874,882,857,845,873,865,879,852,860,887,879,863,880,886,891,851,899,896,888,882,811,814,809,788,790,804,812,809,820,797,805,813,831,803,816,815,788,797,803,819,826,833,668,672,657,640,631,655,651,670,656,648,645,673,652,670,658,672,646,696,653,679,663,627,659,662,609,604,615,609,602,620,628,623,602,627,600,605,605,606,620,618,609,608,618,632,621,623,1093,1152,1073,1143,1090,1098,1082,1031,1106,1145,1110,1087,1068,1094,1095,1124,1134,1121,1136,1108,1116,1136,1113,1118,1106,1191,920,949,947,944,928,906,961,966,949,964,937,934,945,915,955,943,920,905,912,938,943,926,948,945,940,892,976,927,974,654,666,650,673,673,663,670,671,649,679,677,688,653,676,648,688,653,692,640,658,671,1167,1143,1154,1138,1131,1128,1174,1143,1108,1128,1137,1080,1073,1125,1136,1112,1161,1156,1188,1166,1141,1151,1168,1093,1147,1098,1117,1139,1115,1124,1222,1095,1153,966,949,945,979,952,994,977,980,961,976,966,975,1004,937,1000,975,995,991,990,975,980,998,983,1007,1009,653,606,628,609,616,611,631,621,615,645,619,621,628,638,624,617,644,632,622,637,582,631,630,619,1045,1049,1081,1099,1062,1046,1072,1072,1064,1057,1050,1046,1071,1058,1064,1085,1039,1039,1096,1033,1077,1073,1104,1044,1016,975,1008,994,994,998,987,998,1015,993,997,998,1011,1006,1004,1021,1025,977,1012,1011,983,973,975,1037,1016,1003,671,729,706,725,651,672,695,677,675,687,703,733,674,674,732,670,711,703,759,692,685,680,723,702,710,727,697,718,732,731,689,713,740,710,705,713,694,726,705,709,749,697,693,682,730,714,752,706,735,703,687,720,704,707,702,696,695,681,712,705,708,685,690,696,707,712,710,1032,1082,1037,1066,1057,1081,1057,1055,1028,1030,1080,1068,1075,1110,1089,1019,1075,1092,1085,1036,1018,1100,1056,983,983,971,962,1000,987,954,952,976,957,964,990,979,961,973,968,1000,962,967,963,954,991,937,956,940,984,705,701,711,746,721,721,728,751,715,715,740,711,728,699,740,695,706,740,741,726,727,735,731,734,699,718,703,725,695,686,702,705,673,714,677,690,698,692,697,705,667,702,691,707,704,697,677,708,708,712,677,688,945,954,959,977,999,958,995,997,984,980,972,940,974,1005,972,956,1002,738,786,767,764,750,756,737,795,733,764,782,745,740,759,771,776,763,778,783,749,747,762,753,763,785,778,748,951,945,966,959,896,921,951,967,930,950,942,945,949,959,950,947,940,927,939,911,942,946,930,944,734,712,729,726,721,729,727,716,768,735,743,733,708,735,733,699,729,738,718,752,718,746,705,721,728,724,736,731,882,867,843,893,849,836,875,844,876,860,851,856,834,844,865,863,858,858,872,839,885,850,853,835,876,841,868,828,862,687,702,691,720,729,686,681,685,685,711,681,686,687,688,683,689,666,669,719,695,714,694,701,706,692,691,722,711,588,555,591,592,585,575,593,591,613,584,595,609,579,607,604,598,578,582,591,603,585,681,666,668,647,661,665,667,654,687,662,665,658,676,670,660,666,662,674,674,657,668,681,686,667,638,668,657,734,753,738,720,745,732,721,736,732,744,713,690,744,711,744,717,749,740,737,741,729,730,752,731,735,723,734,928,958,975,931,936,909,909,927,931,993,908,959,934,940,942,909,933,931,935,947,902,940,933,788,821,784,778,795,790,805,784,821,806,799,814,800,820,818,793,806,811,799,782,822,799,790,810,768,819,800,813,630,624,656,665,657,645,676,671,663,649,702,669,658,668,675,652,652,653,674,651,649,661,669,678,596,574,574,580,571,568,563,580,579,580,574,588,565,553,566,568,559,569,570,587,566,564,566,579,591,588,602,568,576,588,594,586,572,565,597,579,587,575,575,601,563,567,563,576,597,586,597,564,585,583,609,656,672,645,672,661,653,661,667,664,665,654,667,669,663,654,662,651,674,647,666,652,657,679,671,693,670,665,682,684,674,660,676,678,656,676,663,656,675,648,691,679,675,667,676,680,669,668,1038,1007,1019,984,1029,1019,1048,1001,1048,1048,1012,1015,1002,1030,1039,1039,1018,1025,981,1032,1018,1036,1029,1030,940,971,941,948,941,919,947,962,956,983,948,917,937,929,931,958,965,968,927,939,935,942,942,952,947,951,925,952,969,982,958,930,964,965,935,956,977,957,929,967,926,951,955,950,939,964,954,929,951,928,936,934,941,950,941,955,938,935,945,938,962,825,860,862,895,864,852,885,876,878,834,875,843,901,899,868,869,888,866,879,884,837,848,875,869,1016,956,954,988,924,957,979,1001,948,960,980,961,1036,975,971,965,951,981,986,964,1004,978,998,984,978,1004,1004,1005,986,994,997,982,987,1015,969,988,998,1005,995,996,1000,1013,974,996,1001,977,1064,1048,1045,1027,1026,1055,1045,1046,1035,1042,1062,1061,1050,1055,1040,1031,1049,1035,1047,1055,895,890,887,884,866,887,910,878,930,932,896,896,896,913,887,900,891,931,921,864,908,917,890,903,893,929,915,920,905,900,855,852,847,840,842,830,839,838,857,851,861,853,840,847,826,858,848,850,839,863,827,702,731,727,690,694,696,714,700,737,705,726,708,703,663,722,734,719,738,721,726,732,732,739,695,704,674,677,673,674,671,672,680,657,672,688,675,682,668,666,664,674,656,661,680,663,663,677,734,745,728,744,728,722,739,733,744,733,750,749,726,757,729,740,728,746,734,731,763,734,723,749,743,954,946,962,928,968,961,935,941,945,956,956,959,971,953,976,958,971,923,929,937,981,970,1021,982,1017,1006,974,1011,986,998,1010,989,954,998,1004,980,1007,983,1017,1001,1015,976,1004,1009,1002,963,1000,976,1006,1001,988,1016,1000,1009,982,997,989,1010,991,1002,1023,1002,971,999,1002,972,976,1003,993,1010,1002,967,812,831,834,842,812,845,846,840,819,836,834,893,812,844,857,860,841,796,866,851,800,856,833,816,819,604,622,633,593,598,641,611,603,613,634,611,621,622,635,605,629,631,614,626,637,613,636,632,624,647,635,604,637,633,604,616,632,616,639,647,658,668,641,660,652,646,646,642,653,640,661,638,635,652,646,650,635,649,651,662,674,672,681,702,667,654,705,666,673,655,669,683,673,660,664,681,670,665,684,672,673,694,677,678,682,677,666,681,650,665,649,654,657,650,650,670,668,676,667,672,669,653,649,664,653,675,666,660,673,661,668,674,658,678,658,637,654,620,657,632,644,631,624,620,648,657,637,654,636,646,656,647,630,655,656,665,642,656,639,647,638,640,1097,1119,1059,1156,1107,1141,1127,1094,1113,1146,1099,1094,1113,1098,1118,1109,1150,1131,1086,1146,1115,1142,1117,1140,1123,1128,1068,1148,1038,1001,1026,1021,992,1009,971,1002,1021,981,989,978,1043,985,1021,985,1027,1044,980,1019,1027,1023,1013,1017,1032,1026,1037,1031,1037,1023,1012,1042,1046,1025,1043,1053,1043,1018,1028,1044,1041,1035,1012,1049,1057,903,917,958,898,910,904,933,911,918,910,929,910,896,954,935,886,945,923,933,884,900,932,931,895,920,965,927,961,1012,966,973,970,986,965,976,986,970,999,1003,971,1005,898,863,907,904,940,931,883,910,900,889,885,901,860,891,866,888,881,863,909,934,894,908,886,917,920,869,914,908,610,610,598,630,638,598,606,591,618,617,612,603,588,586,613,612,606,607,617,602,581,614,609,672,662,643,647,666,659,657,678,665,632,639,664,648,658,676,677,636,656,648,662,646,650,638,682,654,682,1025,1035,1014,1048,1026,1038,1046,1042,1060,1014,1051,1060,1047,1044,1046,806,841,788,808,795,796,800,790,761,789,818,815,811,781,804,805,830,818,819,845,794,784,820,786,921,909,901,897,902,922,946,957,940,960,906,935,895,914,934,953,925,960,918,905,898,924,1009,1059,1054,1043,1033,1054,1044,1047,1043,1029,1027,1015,1030,1016,1031,1038,1023,1041,1034,1037,886,930,901,929,902,920,915,919,911,908,904,910,919,923,909,906,924,904,915,956,911,920,1026,1009,1031,1051,1038,1046,1031,1023,1064,1052,1050,1034,1036,1048,1023,1032,1034,1041,1045,1007,1046,1059,1041,1057,1042,1026,1048,1059,1039,1076,1042,1016,952,973,955,952,983,973,969,948,948,963,962,960,937,969,952,953,961,973,966,988,979,947,795,767,762,800,792,777,753,776,784,773,790,812,796,787,780,789,763,795,807,785,783,762,780,1014,1019,1020,999,1044,1040,1027,1015,1040,997,1041,1014,1015,1029,994,1015,1031,997,1006,1031,1040,1022,1025,1045,991,964,1015,1001,1021,1039,1019,1044,1034,1025,1038,1040,1007,1049,1055,1029,1045,1046,1021,1027,1029,1044,1047,1014,1040,1022,1048,1035,1014,1025,1040,1041,1043,1024,839,837,853,844,832,865,814,852,824,827,851,828,834,845,851,848,829,782,849,823,804,821,797,842,829,798,858,640,667,649,670,654,665,642,681,662,637,637,646,651,623,659,655,668,646,644,643,642,636,624,650,638,667,658,652,1053,1078,1055,1046,1066,1086,1047,1094,1045,1053,1072,1040,1045,1099,1049,1038,1039,1039,1090,1043,1055,1057,1039,1078,1086,1007,1019,1009,1023,1014,1006,1001,1008,991,1007,1016,995,1013,1016,996,984,1013,1009,1018,1019,1015,981,1013,1007,1004,1031,1036,1002,1036,1036,1009,1015,1027,1022,1060,1020,1001,1026,1031,1021,1019,1040,1024,1018,1045,1033,1021,1034,1020,1037,933,911,924,913,925,938,914,921,920,926,901,936,903,959,912,916,913,928,914,913,911,916,899,936,783,758,742,775,748,760,767,768,764,738,762,741,776,771,776,786,791,750,760,754,758,736,980,972,965,943,991,995,963,965,977,992,993,961,975,978,970,959,982,1047,1012,1028,1008,1000,1000,999,1014,1006,1030,983,985,1008,1008,1020,1002,1030,1030,999,1003,989,993,1037,1021,1016,1050,1085,1098,1049,1074,1081,1099,1074,1077,1096,1072,1080,1110,1079,1089,1066,1083,1087,1069,1079,1099,1070,1088,1063,1097,951,956,946,953,987,936,971,982,941,937,959,940,977,965,972,955,983,960,944,967,980,983,972,974,905,902,891,891,904,893,905,895,910,879,915,903,904,918,901,899,902,899,922,908,895,909,895,912,918,703,733,721,710,740,740,751,733,716,701,719,750,732,734,737,742,729,742,732,742,710,745,750,848,887,855,864,918,893,855,872,873,887,872,872,909,879,870,878,855,870,873,861,871,894,876,905,891,827,884,741,743,741,748,724,732,731,723,720,747,764,742,737,736,717,723,745,721,740,774,725,753,726,758,737,725,744,768,784,769,760,750,757,755,774,762,761,747,740,770,771,734,761,753,744,761,754,679,671,671,670,680,686,671,666,673,670,684,695,676,667,665,672,681,670,681,671,1108,1078,1085,1101,1126,1121,1077,1081,1049,1124,1118,1058,1042,1067,1099,1078,1124,1075,1071,1102,1083,1084,1104,1044,1059,1070,1112,1079,1078,1064,1052,913,945,910,953,986,951,947,941,941,917,915,930,956,944,955,941,975,947,934,912,932,961,932,961,959,679,680,665,654,643,661,669,676,662,662,656,668,656,648,670,678,632,682,662,675,694,684,654,661,661,683,674,661,652,683,994,1041,1040,1044,1046,1014,1005,1053,1065,996,1018,1034,972,1012,1023,1017,1057,1001,969,1034,994,1016,746,696,745,700,707,736,727,763,751,735,757,726,768,762,765,737,729,740,685,703,715,738,749,726,643,656,663,648,641,641,642,666,648,652,656,657,663,649,654,646,664,659,638,661,636,659,664,1102,1096,1110,1144,1137,1110,1087,1107,1115,1101,1082,1112,1164,1109,1109,1116,1109,1019,1020,1021,1021,1034,1061,1023,1013,984,1039,1028,1014,1014,1004,1013,1029,1023,999,1010,1016,1026,1015,1009,1014,1033,1043,1055,1052,1063,1071,1047,1077,1050,1076,1073,1059,1056,1054,1054,1066,1025,1054,1071,1052,1044,1035,1055,1038,1099,1057,1052,943,913,897,924,924,906,925,913,950,952,939,885,896,969,918,905,938,923,930,912,928,952,940,947,915,982,999,1008,1000,1017,1002,1031,1001,987,1011,1003,981,1006,1000,1000,983,1014,987,1026,1000,983,1006,980,1001,1010,1011,1001,1003,1010,1014,971,977,962,986,942,968,953,972,963,956,975,983,961,957,948,948,950,970,976,945,942,950,970,958,965,963,822,847,807,854,816,810,794,833,828,826,806,812,832,817,839,810,809,813,820,812,816,832,847,727,696,736,730,728,735,731,715,744,752,769,742,754,755,711,709,751,739,728,743,719,737,722,921,950,934,921,905,957,958,912,891,896,953,920,919,923,947,935,916,945,934,928,917,910,923,831,860,844,855,847,849,851,855,825,845,840,838,864,855,871,838,830,839,818,862,845,671,671,667,658,648,681,654,673,694,659,664,688,639,626,661,666,668,690,641,693,659,668,681,657,671,622,629,608,639,632,616,638,609,626,642,639,650,621,640,626,631,631,631,641,634,868,903,850,899,901,877,921,884,903,902,902,911,865,893,889,922,890,887,913,888,902,875,906,895,899,885,711,697,687,670,695,704,714,747,734,695,698,719,703,751,712,693,681,710,649,633,631,614,638,654,641,616,647,629,638,615,644,650,632,625,654,664,1093,1114,1092,1086,1109,1116,1100,1108,1095,1064,1085,1110,1050,1079,1082,1072,1074,1101,1111,1086,1076,1069,1075,1099,1101,1082,1077,1037,1093,1038,1054,1029,998,1018,1005,1016,993,1005,1010,985,1009,1010,987,1004,1036,992,991,1003,1012,985,1022,1018,1031,1003,1012,1002,986,1000,1032,1019,1022,1024,1015,998,1028,1020,1031,1027,1023,1027,1018,997,1025,1017,1014,1012,1026,1008,1036,1001,1017,894,875,856,873,870,904,886,881,881,882,890,876,902,872,899,881,912,885,878,865,886,926,657,687,662,684,689,701,713,681,681,670,664,684,676,671,688,678,687,668,679,679,671,690,683,674,656,689,817,821,823,826,851,802,827,812,823,814,817,821,832,829,813,859,873,804,844,803,804,836,841,669,712,713,691,685,727,723,707,708,701,700,698,708,716,712,707,714,701,684,686,722,667,657,663,676,670,653,670,668,651,668,685,649,667,656,674,652,686,656,715,691,716,739,711,697,703,716,711,708,706,700,698,696,710,705,711,688,727,712,714,716,693,709,713,718,956,969,952,983,982,1006,947,954,988,979,956,995,987,997,967,961,1000,947,988,960,968,969,733,783,755,811,802,805,742,769,732,790,787,774,752,769,764,764,774,753,756,778,828,769,816,788,768,768,775,774,771,756,858,827,820,859,832,872,859,849,828,857,834,820,865,838,861,860,849,835,840,832,848,885,826,824,833,829,749,716,722,710,728,749,729,714,712,746,728,715,721,708,728,717,743,722,728,718,742,703,715,732,722,712,740,731,742,720,697,730,715,730,726,725,746,721,732,733,741,744,734,732,733,732,750,722,739,724,733,728,729,731,724,731,732,704,725,740,691,690,649,668,670,670,672,686,661,643,680,679,680,698,677,670,690,676,687,676,681,679,682,692,675,663,662,672,683,674,998,1016,967,1012,982,1014,999,970,974,991,1009,1003,966,981,1005,1011,987,985,1016,1019,992,997,990,1040,1008,1047,1011,1026,1020,1040,1019,998,1031,1037,1033,1049,1021,1014,1055,1038,1056,1036,1037,1034,1049,1054,1046,1033,1061,1049,1028,1034,1029,1014,1014,1040,1043,918,943,913,935,911,931,955,900,935,889,924,894,948,956,936,914,934,933,899,690,662,668,695,666,691,640,684,689,665,655,680,649,679,662,697,678,686,674,675,689,645,666,681,682,673,663,721,717,724,706,748,747,731,718,733,736,761,754,725,720,702,712,721,707,732,736,722,738,755,714,769,731,754,717,751,665,662,662,670,670,688,677,690,682,676,674,688,665,672,664,673,671,671,686,676,668,681,690,673,675,685,673,688,1200,1161,1247,1225,1176,1206,1229,1175,1185,1206,1172,1217,1202,1230,1231,1184,1184,1224,1189,1184,1209,1218,1187,1150,1162,1210,1180,1197,980,1026,989,963,995,979,971,970,1018,1001,994,1068,980,993,977,1011,969,951,978,959,972,1026,720,664,683,663,667,721,642,692,723,670,715,665,686,682,682,682,671,666,658,662,643,697,636,685,657,664,674,621,639,648,635,636,644,618,646,652,637,659,639,615,656,666,629,654,643,645,629,637,636,642,647,663,623,654,1035,1047,1074,1024,1033,1058,1026,1051,1060,1067,1045,1079,1056,1052,1025,1043,1008,1047,1035,1043,1046,1050,1076,1056,974,978,979,979,974,989,996,1000,974,981,995,992,995,999,980,973,1005,963,972,964,992,952,1010,994,1008,988,991,983,979,981,962,983,977,973,985,995,984,980,969,982,975,983,966,954,982,959,979,1001,981,967,992,975,973,993,794,840,821,815,800,807,791,834,850,818,794,823,812,830,799,819,814,849,801,829,812,858,834,871,790,850,860,817,838,822,653,610,604,633,606,630,631,622,635,622,625,630,653,625,623,607,630,611,640,649,614,640,628,657,934,910,909,890,918,843,935,922,908,905,908,942,921,905,952,944,915,892,886,927,951,752,707,706,699,708,671,677,722,723,712,709,665,695,715,651,667,678,672,672,697,712,708,674,746,697,701,713,720,688,668,617,602,630,609,615,629,637,628,642,615,626,636,609,640,612,643,623,629,629,627,627,614,636,620,629,616,1004,1014,1021,1036,1058,1013,1027,996,1041,1011,1030,999,1021,1046,1002,1011,1016,1004,1006,1063,1023,984,1020,1040,1029,1021,1070,1036,980,970,949,978,970,941,956,971,948,966,931,936,971,930,972,959,952,967,963,973,977,978,978,951,947,982,978,962,988,984,987,1029,1021,1025,988,1012,1028,1027,998,1012,1002,1050,1010,1015,1023,1002,1029,1033,1014,1022,992,1034,1011,935,925,924,941,934,941,943,948,934,932,931,944,948,940,949,923,965,940,922,957,930,943,944,940,943,927,768,799,798,778,796,785,771,798,795,783,781,803,793,824,777,753,763,773,787,789,808,797,786,794,773,773,783,770,793,772,779,763,764,784,784,782,754,779,783,765,774,780,760,771,763,772,777,763,763,777,792,758,692,676,656,629,658,630,667,675,681,648,656,630,668,643,652,651,673,650,644,664,646,647,650,632,667,647,659,632,648,681,631,647,660,650,629,628,671,647,647,641,681,652,619,638,665,653,652,996,973,955,1006,980,1007,960,984,979,955,995,980,960,964,993,989,957,949,959,982,966,973,939,959,958,1010,980,1012,873,873,896,883,877,897,895,870,900,869,880,899,887,882,891,882,905,872,909,865,849,893,887,879,869,681,674,680,707,691,681,686,704,662,687,687,694,690,672,686,685,672,702,703,683,688,679,690,694,663,1072,1034,1050,1054,1043,1066,1044,1058,1062,1043,1055,1053,1057,1037,1053,1049,1071,1044,1039,1044,1064,1068,1065,1037,1034,1087,1052,1066,1068,1054,1065,936,918,897,915,888,870,879,897,901,889,891,896,881,918,898,935,909,848,915,888,913,907,1062,1039,1053,1035,1041,1021,1032,1031,1038,1054,1031,1053,1031,1048,1072,1016,1026,1068,1045,1043,1029,1031,1043,933,910,938,937,917,950,960,919,939,881,934,893,915,914,921,922,904,919,929,939,915,955,924,901,916,927,950,924,908,894,930,941,914,936,903,1040,1047,1046,1046,1051,1047,1044,1037,1067,1019,1049,1034,1065,1054,1052,1065,1027,1016,1050,1035,891,920,931,978,871,909,948,888,927,916,902,949,928,917,912,890,917,902,900,904,920,902,881,947,921,666,665,646,666,688,636,658,683,684,652,694,649,648,651,681,661,659,668,643,647,655,647,665,655,653,665,650,642,655,672,652,657,659,658,654,667,673,664,670,668,652,667,658,656,665,648,662,619,629,609,620,621,622,633,620,618,625,617,618,607,619,617,613,632,629,615,611,614,625,654,645,653,650,644,663,659,654,662,649,645,667,658,659,656,658,677,659,674,658,659,661,644,667,651,654,666,680,660,664,663,659,672,678,670,668,702,677,656,672,668,658,676,689,673,673,687,658,671,668,670,657,661,665,946,1010,986,982,1025,967,990,998,981,969,978,1010,961,953,1001,995,991,989,996,1002,954,1004,981,1018,1050,1044,1035,999,1031,1012,1036,1030,1030,1022,1005,1034,1018,1039,1026,1032,1041,1049,1038,1024,1036,1020,997,1026,1023,1014,1029,888,962,919,938,932,908,936,904,896,925,917,953,947,910,948,906,942,928,923,922,900,928,919,957,976,958,977,956,971,973,962,955,959,977,955,962,952,960,966,944,964,965,964,966,981,958,966,969,891,909,912,910,919,909,911,930,916,888,929,928,918,913,923,917,917,909,905,920,931,912,941,913,897,901,913,933,909,918,921,911,914,898,917,897,919,916,911,909,925,917,935,915,930,921,907,907,912,761,752,772,757,751,751,759,761,741,767,732,740,751,756,732,758,763,752,791,750,735,925,950,928,928,913,918,948,936,913,959,898,931,954,949,921,928,938,914,936,937,968,957,951,912,952,940,955,924,926,934,808,787,806,830,807,792,801,783,787,813,807,828,798,825,771,792,807,819,794,824,816,799,779,814,805,976,1000,961,1006,989,985,1008,984,1002,1007,978,990,1013,998,978,983,975,986,979,978,1019,987,1009,1042,1017,1016,1008,1007,1024,1031,1041,1042,1026,1049,1037,1022,1011,1016,1033,1039,1012,1018,1028,1005,1017,1029,934,939,946,960,937,977,944,944,916,939,935,922,953,945,937,958,926,943,945,948,951,927,947,925,940,757,773,819,791,766,800,790,797,795,805,783,758,724,804,776,794,818,800,759,810,797,803,1019,1013,1012,992,1021,1004,1005,1043,1023,1019,1040,983,994,992,1016,1019,989,1001,1021,1002,1032,996,1005,981,985,1010,997,1033,1041,1022,1048,1024,1017,1011,1032,1027,1032,1024,1020,1024,1007,1032,1031,1039,1038,999,1040,836,865,857,856,859,828,821,842,839,829,794,865,837,821,823,831,812,852,855,840,817,859,830,816,835,827,852,830,808,831,631,631,625,625,636,622,662,626,640,602,629,631,629,634,647,617,632,641,638,636,648,653,637,620,631,692,694,688,675,663,711,676,652,691,692,680,673,685,647,670,677,678,681,665,716,677,652,675,666,663,670,691,697,690,697,688,721,701,1012,1014,997,1013,965,1026,1046,1041,1010,1001,978,1025,1016,1046,1028,1014,999,990,1030,1031,1013,1017,1002,997,1048,997,1017,1006,1007,1014,1020,990,1005,993,992,997,1021,1016,1013,1011,1003,991,992,986,984,966,967,965,953,976,973,956,971,963,966,979,976,981,969,983,957,976,980,963,962,957,945,970,966,984,964,902,851,856,855,813,875,839,861,837,828,860,882,857,888,857,878,837,876,821,855,867,852,825,866,884,970,1007,990,988,1001,972,963,985,996,977,972,979,997,994,992,985,972,986,977,894,891,906,906,892,905,949,918,938,934,871,884,907,922,923,934,880,926,877,893,901,940,929,1002,972,986,987,971,1024,1008,1002,997,1027,990,1017,1005,1001,1003,1022,976,1008,1020,1010,1044,1047,1037,1063,1042,1053,1037,1038,1057,1047,1070,1038,1069,1060,1067,1056,1064,1061,1044,1035,1046,936,914,925,946,952,914,914,928,916,958,915,900,937,921,922,935,929,910,684,690,684,685,673,683,688,661,687,706,696,705,652,719,669,662,683,656,652,675,667,680,669,658,657,653,661,659,664,666,664,663,674,665,658,657,661,688,648,674,655,753,712,742,711,730,736,701,728,720,722,760,730,741,675,738,723,727,711,725,729,730,728,701,743,971,986,986,942,985,957,974,961,952,976,951,973,970,984,971,960,952,979,956,936,961,964,971,970,978,956,978,812,825,799,808,812,803,833,838,828,815,818,821,837,820,830,831,814,853,851,831,833,806,813,829,636,672,685,647,667,646,650,671,658,657,645,682,647,639,641,633,658,654,642,618,616,622,611,608,618,627,613,628,639,613,637,607,629,594,620,616,606,608,614,601,605,598,611,617,1117,1114,1114,1145,1165,1158,1131,1112,1205,1197,1151,1123,1152,1111,1170,1103,1156,1112,1151,1136,1154,1177,1148,1132,1152,1115,1017,1040,997,1041,1048,1044,1017,1046,1024,1055,1012,1050,1035,1016,1011,1068,1028,1046,1022,1039,1036,1051,1066,1056,1033,1093,1039,1022,1038,1021,1074,685,664,744,663,661,696,727,682,707,679,740,700,727,724,760,695,733,729,702,618,606,632,633,639,628,630,644,629,625,607,628,627,611,621,611,636,633,625,622,630,609,626,627,628,628,643,658,668,682,676,666,662,671,667,657,655,674,671,673,673,656,669,670,659,653,675,656,657,645,654,688,686,646,654,641,666,679,667,654,657,674,679,656,646,659,663,649,680,670,683,675,659,677,659,667,663,659,652,662,638,639,646,655,655,614,654,637,639,653,631,632,630,633,640,648,643,641,648,632,662,913,873,926,908,933,926,922,914,894,879,949,924,948,923,928,917,861,896,956,947,903,925,882,926,769,723,722,739,735,711,737,747,725,717,748,741,752,750,741,705,748,738,731,750,707,757,758,752,726,742,713,750,738,728,771,751,747,772,763,737,754,754,740,743,756,765,725,733,767,765,734,757,747,730,757,766,737,751,755,744,670,678,687,665,679,669,678,689,658,693,671,667,689,678,667,668,687,684,679,661,684,675,675,696,682,672,658,971,1031,1007,1015,999,1004,993,987,986,1000,981,993,1017,973,992,971,979,1012,1003,977,977,1003,1001,1004,1038,1019,967,1014,1018,1001,1014,1033,1024,1033,993,998,1029,962,1005,1000,1018,987,1019,1030,1026,1021,1022,1110,1122,1104,1140,1135,1119,1119,1093,1108,1111,1088,1110,1122,1130,1133,1124,1117,1114,1134,1145,1121,1099,1076,1103,1107,1119,1128,1111,1135,898,931,896,891,881,903,948,901,902,944,927,954,881,904,968,904,894,906,960,917,941,918,711,679,689,721,688,702,690,693,674,703,692,710,708,706,702,724,693,675,674,684,699,688,694,687,678,701,697,692,705,681,705,698,692,683,711,698,697,698,709,713,688,728,690,703,712,716,687,704,687,693,711,697,1027,1042,1033,1019,1031,1043,1032,1019,1040,1044,1034,1019,1044,1039,1021,1062,1013,1011,1009,1035,1073,1028,1039,1037,1010,1005,1007,991,1028,1010,1014,1012,1028,1022,1010,1016,1007,1012,1008,1015,1029,1014,1018,1039,1013,1020,1003,1010,993,994,988,995,969,990,1000,996,979,983,1004,1009,988,1013,983,978,1007,989,1006,996,1002,999,1036,1026,998,1005,1009,987,1017,1014,1003,1005,1010,999,1005,1007,1011,1015,1004,1032,1004,1016,970,993,1025,1015,1033,1039,1003,1033,1032,1025,1018,1038,1049,1024,1020,1022,1020,1031,1028,1029,1038,1004,1026,1027,1036,1016,1014,895,920,902,893,940,898,905,927,915,913,914,904,912,913,920,902,915,941,915,886,916,880,878,897,912,929,913,658,663,655,680,673,696,665,699,661,660,658,677,696,681,649,676,687,679,696,700,673,677,689,1110,1128,1144,1151,1063,1142,1126,1066,1123,1119,1135,1122,1124,1121,1123,1140,1090,1105,1114,1120,1112,1082,1073,1091,1129,1156,1117,954,976,907,957,926,896,896,913,934,939,935,872,927,906,939,912,926,895,922,883,937,925,922,903,930,643,627,659,652,628,642,632,636,628,637,650,634,663,652,618,618,652,670,652,633,627,623,662,612,671,662,649,675,656,661,650,650,659,656,663,660,647,631,652,640,673,647,640,635,652,656,664,643,645,664,657,658,682,665,662,692,648,666,656,664,665,952,952,923,988,950,964,962,938,958,969,930,975,950,971,962,967,966,957,956,987,940,908,992,957,938,989,916,928,958,933,950,941,745,753,796,763,781,781,770,769,785,746,758,723,736,780,762,730,718,754,740,768,790,654,653,644,662,651,655,640,658,658,660,662,654,663,655,657,661,652,662,641,659,662,660,641,647,656,641,659,668,645,1107,1105,1088,1058,1075,1005,1082,1087,1046,1074,1114,1078,1056,1069,1035,1065,1044,1079,1066,1111,984,1027,1005,1004,1032,1032,1011,1007,1014,1010,1005,995,1010,1009,1003,982,1005,905,861,873,869,875,892,904,894,917,878,881,915,867,876,870,885,864,903,885,898,881,879,864,890,894,880,890,884,884,830,815,834,816,816,826,816,832,825,828,807,818,806,820,821,824,789,833,826,810,791,813,818,838,823,836,839,807,807,819,812,695,671,697,703,691,679,672,705,706,703,694,710,671,701,696,686,695,673,687,688,677,708,702,688,695,648,668,663,667,684,713,704,695,605,604,608,633,614,617,611,607,608,627,625,629,638,618,622,617,642,616,614,611,627,618,602,629,619,651,651,663,661,659,650,645,634,651,654,643,654,637,649,650,651,645,646,656,651,657,648,656,652,648,699,735,698,726,731,721,722,738,754,699,718,737,737,725,743,738,739,706,727,748,743,722,664,674,660,666,665,679,678,673,669,668,659,657,669,667,676,670,677,684,1126,1108,1185,1079,1131,1110,1102,1095,1170,1142,1161,1118,1146,1132,1131,1111,1146,1147,1143,1047,992,1004,1001,974,981,1023,1025,987,1026,985,1010,966,1012,995,1009,984,1033,990,1016,1027,991,995,1008,995,1013,1046,1001,936,1014,988,1020,977,1004,981,997,957,977,984,964,1008,980,992,973,989,1023,928,897,961,966,1009,996,980,992,1014,982,1004,1011,1020,1027,1022,1034,1027,1006,1014,1037,1011,1011,1029,1023,1028,1003,1030,1016,1024,986,1002,1024,1032,1022,902,941,936,940,923,957,929,922,942,920,940,929,939,930,935,924,941,949,925,929,931,942,937,922,958,922,950,922,700,733,700,709,719,721,721,695,701,726,690,681,724,711,702,718,698,697,696,684,694,703,1084,1093,1017,1106,1065,1114,1038,1099,1039,1050,1083,1104,1107,1099,1094,1055,1078,1078,1122,1064,1077,1066,1040,1114,1103,1059,1081,1080,1047,1083,1062,1088,1050,1047,1080,1054,1042,1061,1094,1076,1071,1066,1058,1078,1077,1074,1049,1075,1074,1056,1074,1072,917,922,920,907,979,913,920,920,938,935,942,934,916,913,924,928,932,915,915,923,755,750,751,760,756,743,714,745,710,719,721,727,721,702,747,746,750,738,742,749,729,933,933,924,900,946,952,955,931,907,967,931,912,909,934,909,920,911,939,935,906,908,934,959,958,921,891,862,868,857,871,871,852,879,862,861,859,892,867,868,862,866,880,855,871,848,881,857,834,885,863,861,870,870,712,706,706,715,718,722,696,708,719,736,734,717,730,717,699,715,691,709,703,696,732,702,737,704,692,707,708,698,885,908,924,874,876,897,884,944,886,927,879,904,909,901,935,869,920,891,885,892,878,924,876,905,905,1074,1070,1062,1057,1058,1080,1076,1102,1058,1067,1076,1115,1065,1059,1073,1088,1080,1082,1082,1052,1074,1095,1081,1045,1024,1019,1040,1031,1008,1019,1047,1023,1010,1031,1017,1025,1037,1017,1039,1000,1007,874,882,901,904,910,896,880,880,881,881,891,900,892,896,879,883,875,874,869,899,659,692,664,674,696,692,659,696,673,654,652,691,670,679,650,703,680,690,673,683,667,680,682,630,653,722,677,684,599,601,604,585,593,588,593,577,585,599,591,615,604,591,612,594,576,586,592,582,603,595,607,583,579,605,585,589,580,737,749,720,737,750,751,733,708,741,746,735,720,732,754,734,737,748,711,732,729,736,712,748,717,737,745,739,739,722,756,755,761,737,740,743,739,744,723,748,734,751,778,745,725,737,740,760,738,750,735,729,739,733,741,752,731,740,754,1122,1207,1171,1165,1157,1174,1144,1152,1136,1202,1189,1186,1169,1143,1170,1126,1150,1150,1148,1136,1169,1147,1131,1245,1108,1106,1110,1154,1183,1159,1146,966,986,951,962,1009,989,951,933,972,995,969,954,993,975,957,968,993,962,931,968,1033,1004,977,737,712,638,666,694,695,721,643,690,689,686,669,682,730,672,624,698,663,683,646,662,717,649,678,617,630,641,655,639,655,618,621,635,600,643,645,624,618,630,618,643,647,661,628,640,633,646,649,644,629,944,966,935,982,922,966,971,999,988,969,963,940,964,973,927,957,956,966,971,1101,1093,1114,1073,1065,1069,1038,1060,1093,1060,1098,1064,1078,1040,1071,1059,1047,1088,1096,1072,1042,1070,1078,1076,1083,1060,1101,1080,1069,1050,1069,903,870,923,896,891,876,906,892,877,912,897,922,916,965,899,898,883,915,909,919,947,920,878,907,940,905,913,909,585,574,563,603,584,597,606,562,579,614,583,561,574,602,610,572,603,609,610,616,600,614,590,577,565,606,582,590,609,630,599,592,619,620,593,599,600,607,592,616,576,588,591,597,589,601,588,612,574,618,584,594,639,606,586,585,967,881,946,929,921,929,916,906,902,882,917,949,940,917,912,924,988,941,942,913,913,958,945,936,748,692,715,736,721,704,681,714,730,738,740,695,714,722,713,729,715,701,672,720,719,728,701,646,642,659,612,650,642,656,638,640,619,615,632,624,653,634,651,633,635,649,636,656,627,630,1025,1013,915,937,993,972,932,992,1006,977,967,952,959,978,997,1013,969,963,947,966,846,797,807,800,803,811,810,796,850,770,824,803,813,804,822,788,796,779,803,815,786,779,810,789,822,824,870,843,863,870,865,846,850,834,847,858,854,878,848,861,857,850,832,864,852,838,857,864,867,831,802,826,837,822,834,838,818,828,808,839,826,804,811,818,810,829,820,815,826,835,827,831,811,817,689,720,708,740,709,712,718,698,715,692,731,694,716,699,700,691,718,703,716,688,717,700,673,721,709,690,696,704,874,869,914,898,910,874,860,887,910,893,882,886,896,881,879,897,869,900,868,913,886,882,876,790,811,796,792,797,807,816,810,794,822,812,799,801,791,820,799,807,815,806,809,784,801,792,811,788,824,812,785,1125,1095,1083,1119,1090,1111,1104,1073,1075,1082,1113,1135,1097,1101,1108,1076,1111,1116,1100,1143,1130,1116,1104,1109,1089,967,936,948,927,978,925,929,941,948,988,954,966,943,984,956,931,946,971,938,957,987,955,950,1038,1047,1032,1022,1057,1033,1033,1042,1038,1041,1022,1045,1023,1036,1040,1041,1030,1057,1036,1019,895,870,875,867,859,882,862,864,870,854,895,853,853,908,896,892,828,895,856,661,690,640,647,651,656,685,657,677,656,662,655,647,647,679,677,688,650,658,1233,1180,1134,1302,1185,1229,1193,1212,1258,1246,1177,1284,1189,1211,1220,1289,1299,1155,1269,1279,1254,1070,1080,1055,1103,1079,1050,1094,1091,1069,1069,1097,1009,1046,1046,1058,1039,1058,1066,1054,1065,1068,1029,1063,1015,1054,1066,1064,1062,1115,1035,1041,1082,1080,1075,1046,1072,1079,1062,1067,1068,1079,1065,1086,1073,1084,1037,1077,1074,1059,1065,1075,1054,1076,1050,1070,1097,1081,1077,1068,911,936,926,946,933,922,953,927,928,940,945,931,943,952,956,923,913,894,942,936,942,929,960,946,922,943,940,931,729,728,717,749,743,749,726,740,710,711,751,721,760,733,735,733,760,720,728,709,729,723,739,734,756,756,760,702,723,713,725,717,699,752,722,714,724,696,695,722,745,737,762,746,735,707,722,971,928,961,998,942,929,957,929,934,930,974,978,991,987,1013,949,968,933,983,951,948,980,938,959,875,825,836,855,845,842,860,862,858,852,858,860,851,868,856,847,856,849,855,858,874,850,863,851,855,665,700,683,685,662,680,682,663,697,670,671,664,685,667,661,680,704,693,688,665,674,677,664,1181,1153,1173,1121,1152,1179,1139,1183,1134,1147,1194,1128,1145,1117,1211,1160,1185,1162,1205,1168,1165,1150,1047,1069,1060,1070,1102,1069,1076,1070,1064,1085,1066,1064,1042,1061,1081,1037,1094,1094,1084,1099,1052,1068,1048,933,948,974,903,907,942,946,931,945,913,919,929,925,935,929,946,945,914,901,907,922,932,891,871,867,899,904,892,869,888,869,858,877,892,872,885,905,893,869,886,875,867,885,870,884,870,901,870,875,869,673,691,682,688,663,725,705,667,687,672,668,702,694,675,697,709,694,672,673,665,689,703,696,629,635,637,637,636,651,641,635,652,624,632,629,636,630,640,633,641,627,624,642,637,668,659,956,969,965,933,933,948,982,997,982,950,950,974,957,943,1001,913,963,935,979,951,966,959,969,958,983,947,1005,1005,1016,1030,1024,1000,1008,1034,1028,1022,1046,1002,1000,992,994,1018,1012,994,1001,1043,1013,1012,1002,1039,1001,998,930,947,903,928,947,909,929,916,920,914,933,921,950,919,926,932,924,932,919,908,941,924,947,912,916,700,665,709,719,662,712,713,679,659,684,684,693,715,653,708,680,676,694,704,669,663,708,676,663,673,713,631,621,633,623,588,644,630,624,618,622,617,615,640,608,628,629,648,641,626,613,608,597,617,635,649,1105,1097,1078,1065,1102,1035,1096,1083,1099,1084,1112,1047,1079,1076,1061,1118,1068,1099,1063,1078,1033,1045,1069,1100,1076,1069,1061,1096,1092,1047,1076,1058,1062,1077,1085,1105,1067,1075,1085,1097,1082,1068,1113,1082,1066,911,941,916,938,926,941,935,918,924,900,926,923,933,930,928,901,922,931,909,911,924,913,921,936,937,943,938,910,948,908,1015,1085,1048,1025,1053,1023,1045,964,994,973,1023,996,969,997,992,947,967,1029,966,965,1038,1002,991,995,1022,1023,997,998,987,1013,1020,1003,1021,1012,1014,983,1013,995,1012,1010,1012,1012,1002,1015,979,993,1021,1030,1001,997,988,927,909,919,899,921,903,896,908,909,898,911,891,885,932,908,887,939,881,893,891,930,906,732,733,691,720,709,721,717,705,717,716,727,701,734,701,683,672,694,701,705,714,709,695,683,706,707,1113,1153,1170,1105,1159,1150,1166,1131,1152,1141,1152,1115,1141,1118,1115,1150,1186,1127,1135,1118,1146,1130,1116,1124,1130,1159,988,1003,958,972,970,1003,938,989,1027,985,984,978,988,972,959,990,942,988,970,983,969,721,758,749,729,763,774,747,724,759,707,719,758,749,748,740,733,722,739,738,735,732,717,755,763,760,726,772,949,970,972,984,962,940,957,965,936,944,968,952,962,975,950,965,951,945,958,976,986,972,969,947,816,847,832,818,842,843,839,831,815,831,825,808,836,834,832,813,831,816,818,830,804,845,861,852,834,696,670,664,725,671,683,665,667,659,724,717,698,647,713,662,709,665,677,678,675,686,666,692,661,619,595,621,625,614,606,614,613,594,619,627,622,603,615,617,619,607,618,621,611,620,607,605,621,597,625,611,626,629,615,625,636,616,621,627,609,636,614,618,631,608,627,638,626,610,640,614,620,631,634,637,1185,1152,1151,1159,1191,1186,1159,1197,1200,1153,1176,1181,1234,1137,1205,1228,1208,1198,1127,1199,1126,1160,1135,1178,1205,1132,1172,1152,1014,1008,1014,1029,1020,1032,970,1026,1020,1035,1012,1008,1031,1059,998,1040,1015,725,710,720,723,719,700,706,722,715,706,726,684,759,717,717,680,694,707,704,743,704,651,597,643,614,629,627,624,630,644,646,643,630,659,622,641,643,658,633,648,612,645,625,627,624,642,654,622,616,622,611,609,610,615,622,596,606,593,619,619,596,593,600,599,609,590,601,611,598,630,609,624,624,622,1148,1149,1149,1167,1194,1264,1161,1124,1155,1134,1244,1205,1169,1216,1254,1134,1117,1167,1217,1145,1202,1150,1209,1216,1147,1152,1075,1149,1214,1145,1137,1166,1219,1028,1036,1028,1029,1037,1030,1020,1018,1035,1033,1036,1007,1035,1080,1030,1037,1052,1041,1033,1035,1110,1100,1133,1114,1126,1098,1137,1105,1147,1125,1137,1139,1106,1103,1102,1117,1112,1135,1087,1129,957,975,1002,968,957,947,919,975,938,991,987,957,920,946,889,972,973,968,968,1003,958,626,620,672,631,640,620,650,616,612,568,639,610,640,615,594,639,608,598,612,623,655,600,588,628,588,636,609,701,705,700,676,665,672,648,682,712,692,690,669,664,679,652,698,705,673,665,682,677,1092,1074,1065,1115,1051,1069,1077,1108,1077,1066,1064,1099,1077,1097,1056,1113,1054,1090,797,790,751,793,807,784,774,764,794,763,757,769,799,780,781,779,778,799,787,788,790,812,793,1103,1139,1091,1130,1140,1115,1092,1115,1107,1096,1076,1087,1095,1099,1117,1051,1122,1098,1117,1114,1144,1069,1137,880,944,953,931,913,952,941,906,905,929,914,938,942,924,961,940,944,949,948,933,925,942,962,942,925,709,682,689,672,666,668,679,675,703,673,669,668,669,695,658,682,664,676,668,683,678,668,693,671,668,650,1030,1055,1063,1061,1075,1089,1081,1049,1088,1118,1072,1082,1073,1052,1053,1069,1096,1123,1097,1086,1112,1071,986,967,967,971,948,978,981,982,948,1009,951,988,968,968,981,972,978,994,736,702,701,710,765,736,709,723,726,726,731,718,722,713,665,729,694,735,712,703,722,717,729,725,1017,998,989,996,1022,1015,1015,958,983,1037,980,990,991,1007,1021,983,984,1008,1046,975,1009,992,968,984,976,988,1011,1017,1010,1000,1010,1002,726,702,717,735,767,734,766,771,728,717,729,742,719,719,759,749,743,761,748,725,1039,1040,1037,1036,1070,1050,1067,1053,1023,1093,1096,1075,1025,1046,1048,1078,1072,1074,1083,1065,1068,1040,1112,1052,968,971,963,944,938,989,983,955,962,949,961,945,951,965,942,989,956,985,934,966,963,961,947,707,699,677,682,697,730,656,667,680,689,657,649,680,625,635,627,635,624,615,616,623,630,623,615,641,613,615,632,620,616,613,639,620,609,619,638,628,612,614,614,1160,1150,1134,1162,1146,1087,1169,1171,1070,1147,1140,1175,1125,1100,1099,1134,1139,1119,1096,1150,1152,1102,1121,1155,1183,1093,1105,1047,1021,1031,1018,1014,1026,1022,1020,1014,994,1044,1040,1008,1017,1032,997,1031,1020,1049,1007,1041,1013,1026,1018,1052,698,681,676,688,690,704,705,699,675,663,668,654,721,679,666,692,673,679,690,690,662,700,669,693,667,697,676,693,662,678,686,654,665,685,683,670,668,660,671,665,650,666,673,639,674,673,664,685,690,676,659,665,662,676,672,669,665,664,1081,1004,1029,1075,1031,1062,1058,1034,1043,989,1044,1041,1070,1064,1024,1043,1039,1044,1043,1030,975,1023,982,910,890,920,951,955,908,937,935,969,973,920,943,944,919,929,944,922,941,938,942,912,918,922,966,946,924,1052,1054,1064,1054,1048,1061,1050,1068,1038,1064,1049,1061,1052,1057,1073,1048,1037,1060,1071,1053,1056,1051,1048,1043,1058,1049,1046,991,954,972,988,976,967,983,965,950,961,969,972,988,956,965,970,990,968,958,934,967,931,963,972,708,697,694,734,684,733,711,703,720,687,742,726,696,686,699,707,718,721,716,728,731,674,711,725,722,775,709,728,701,676,676,654,691,696,717,699,700,707,696,685,701,678,686,686,701,691,659,686,686,692,687,694,687,699,667,667,680,1152,1150,1145,1090,1110,1221,1148,1135,1130,1175,1133,1123,1108,1069,1182,1113,1147,1105,1125,1163,1153,1149,1120,953,953,964,949,924,974,974,957,985,999,964,946,979,979,982,948,983,990,983,952,935,623,646,638,637,598,628,608,604,624,636,623,607,655,624,632,641,584,642,624,627,642,609,681,691,697,676,683,688,669,678,672,661,664,687,674,668,649,688,682,669,664,1098,1147,1160,1157,1106,1114,1150,1128,1182,1163,1193,1150,1158,1167,1213,1121,1156,1052,1037,1043,1036,1070,1038,1052,1050,1058,1009,1027,1042,1042,997,1040,1035,1026,1038,1046,1032,1030,1064,922,930,936,918,958,917,913,924,933,914,932,927,934,937,912,954,944,919,928,943,897,916,1061,1086,1077,1079,1068,1105,1102,1079,1069,1076,1040,1080,1062,1070,1057,1075,1106,1061,1069,1070,1090,1052,1052,1086,1093,1083,1079,1066,944,982,996,995,984,968,1000,987,956,950,988,976,973,991,970,982,975,985,990,990,982,982,989,982,953,994,988,957,1055,1061,1075,1061,1080,1073,1058,1089,1049,1059,1084,1068,1064,1076,1077,1062,1072,1064,1044,1062,1074,1067,1060,1074,1067,1099,953,982,958,926,949,913,911,926,934,965,975,927,954,999,917,923,984,961,947,890,938,622,609,618,594,618,580,623,578,595,592,600,594,633,623,590,590,605,610,572,674,670,657,669,674,666,674,690,671,669,676,666,654,680,680,667,675,680,673,667,681,662,657,682,705,728,690,695,717,701,715,713,710,698,708,685,706,699,712,722,687,717,701,709,730,722,693,735,696,693,689,705,716,713,1191,1149,1168,1169,1192,1131,1177,1177,1168,1144,1143,1177,1137,1132,1179,1119,1184,1201,1151,1147,1186,1186,1150,1179,1172,1191,1194,1186,1080,1078,1090,1067,1090,1054,1064,1072,1063,1057,1073,1069,1054,1082,1073,1058,1072,1075,1058,1071,1079,1081,1070,1010,969,969,983,1001,946,951,952,939,958,941,998,955,994,963,947,972,960,963,985,957,982,962,968,933,970,963,973,976,797,773,779,784,772,776,766,763,777,769,795,804,762,781,752,796,773,795,784,765,752,780,656,683,659,683,675,668,651,692,682,686,677,668,664,656,660,681,673,661,678,658,688,1055,1083,1079,1047,1075,1095,1074,1031,1076,1113,1110,1102,1075,1042,1097,1079,1068,1085,1056,1046,1035,1071,1098,1060,1093,1106,1054,1057,931,899,950,927,905,946,960,932,963,959,916,913,916,925,926,923,905,940,898,951,921,919,926,955,923,1048,1028,1058,1067,1064,1053,1054,1052,1087,1050,1050,1062,1061,1050,1060,1072,1079,1043,1051,1060,1038,1052,1036,938,928,884,907,910,954,930,952,949,936,971,915,942,923,933,923,962,928,937,961,934,931,941,952,933,943,661,651,663,686,657,677,688,664,674,669,693,656,665,694,668,642,694,634,661,674,692,680,675,1111,1086,1100,1129,1112,1101,1077,1111,1096,1085,1085,1065,1058,1029,1088,1106,1088,1091,1107,1073,1105,1060,1089,936,962,955,911,948,970,939,951,954,946,942,941,964,932,960,951,978,972,954,926,941,922,986,960,1025,1079,1025,1052,1058,1048,969,1035,1127,955,1051,998,991,1017,1055,1024,1037,1027,1076,1046,1006,1060,966,1009,1114,1120,1100,1138,1115,1110,1105,1101,1118,1107,1114,1122,1093,1112,1091,1103,1096,1087,1119,995,981,996,988,971,971,967,993,975,996,948,972,974,1000,973,1016,970,984,980,1012,1030,1012,1032,1061,1061,1060,1041,1045,992,1049,1085,1022,1031,1010,976,1021,1008,1052,1049,1026,1039,1060,991,1000,1010,1010,1004,993,989,993,1010,991,1008,1015,1005,974,999,1022,1009,1013,995,993,995,1021,1012,1009,995,1001,1006,912,931,885,886,895,898,883,925,893,887,910,925,884,888,879,923,889,886,912,916,904,914,1237,1181,1214,1139,1199,1209,1195,1166,1222,1203,1171,1159,1217,1161,1207,1173,1169,1204,1202,1239,1176,1176,1159,1162,1162,1193,1000,1018,1000,1011,1013,1016,1008,1002,1003,1017,1002,1005,1023,994,1013,1003,1015,1028,991,999,1031,1004,990,753,755,807,733,760,786,725,784,754,769,753,780,729,774,731,731,763,770,702,777,731,756,744,751,708,703,745,768,803,934,940,970,911,929,975,952,903,932,945,914,915,915,914,919,896,957,943,923,911,933,949,941,757,736,771,732,743,781,737,738,763,738,711,733,752,745,742,745,725,732,729,716,776,725,735,718,687,680,698,677,684,677,674,690,663,675,672,712,692,673,693,692,691,715,660,667,689,684,690,985,965,916,930,980,966,961,962,937,977,960,986,934,949,955,965,982,923,953,995,978,982,967,804,829,819,817,828,793,817,819,820,807,818,832,822,833,841,826,828,821,815,823,817,808,779,1041,1019,1029,1025,1029,1028,1059,1073,1042,1033,1023,1009,1052,1043,1047,1037,1074,1018,1056,1069,1017,1052,1050,1036,1114,1117,1121,1112,1112,1097,1095,1100,1093,1085,1129,1100,1134,1131,1109,1107,1105,1121,1086,1109,1142,1101,1119,1104,1134,1105,1093,1117,1100,1096,1093,969,949,925,937,982,930,915,949,931,948,930,912,948,949,962,937,916,939,936,934,921,930,972,944,912,1120,1107,1113,1106,1112,1106,1098,1135,1124,1140,1124,1119,1128,1145,1108,1135,1104,1110,1135,1144,1113,1135,1124,1134,1128,979,964,965,964,971,996,973,949,961,964,976,931,952,962,954,964,972,967,969,972,1091,1055,1060,1071,1072,1072,1071,1069,1052,1080,1074,1074,1066,1049,1099,1050,1046,1081,1056,1048,1081,1048,1033,1040,1077,882,893,878,832,887,894,857,864,862,874,890,876,871,854,920,857,868,903,850,898,900,903,862,909,865,853,857,616,619,636,634,612,618,626,641,647,619,629,624,643,629,598,638,612,625,627,616,624,626,606,625,637,634,656,663,662,655,647,646,640,664,654,667,661,658,663,652,657,668,633,643,673,675,666,658,673,653,657,661,648,657,702,685,693,681,706,717,726,743,652,703,698,696,693,745,740,692,704,739,741,756,723,708,1043,1072,1029,1083,1073,1039,1054,1069,1032,1063,1055,1057,1056,1056,1080,1098,1097,1052,1104,1046,1066,1051,1114,1031,793,807,777,780,767,793,776,809,799,784,799,784,812,812,767,795,796,799,812,764,826,791,810,903,840,857,835,844,828,858,833,870,877,852,833,846,853,856,870,824,843,851,877,870,756,744,691,702,672,690,711,732,679,711,691,702,704,691,703,667,680,699,717,710,698,701,846,880,883,853,868,867,855,852,861,859,875,889,893,861,896,858,850,862,860,864,840,854,884,840,882,729,718,729,746,729,728,748,728,703,704,708,703,737,714,722,731,739,710,741,736,728,854,856,855,839,853,842,826,839,864,838,845,838,851,846,861,879,844,858,829,881,836,840,883,869,857,860,882,745,733,717,713,712,734,705,737,711,739,695,729,729,758,720,732,718,723,717,719,745,728,636,637,639,648,636,635,668,641,633,658,667,631,653,643,632,642,674,659,679,644,664,632,653,643,633,649,652,650,658,643,620,624,602,640,642,639,615,627,634,644,640,627,635,636,623,629,627,634,654,670,659,663,669,657,648,658,662,650,663,649,648,673,647,665,664,667,658,667,655,652,651,668,647,649,642,1093,1057,1089,1040,1085,1078,1024,1042,1030,1041,1035,1037,1068,1053,1056,1021,1080,1076,1014,1035,1050,1083,1026,1030,1091,1088,1044,1048,1072,1056,1010,1017,991,1026,1001,974,1021,1003,994,1014,1023,1008,1012,1010,1032,989,999,1035,1011,1016,1021,1011,980,975,981,964,982,971,979,986,980,975,973,956,968,964,1004,965,984,972,985,988,968,965,985,983,979,987,967,970,1011,994,1005,1017,1021,1012,1013,1007,987,1000,1011,1005,1007,992,1002,1001,997,905,917,935,926,922,945,896,916,928,919,917,912,950,936,930,915,911,913,925,932,896,939,919,687,698,682,687,669,673,649,690,650,661,661,667,659,697,662,650,699,627,674,669,661,672,708,670,675,697,707,696,698,684,707,689,689,709,687,702,683,705,682,699,689,694,694,708,696,676,670,964,949,945,965,942,935,956,958,945,957,955,906,888,969,959,945,943,929,936,962,972,923,992,964,752,758,766,756,749,754,761,781,729,771,760,741,728,740,774,785,745,752,752,748,737,755,735,737,763,764,762,700,697,718,705,691,683,690,683,711,697,670,698,699,688,682,687,698,700,664,700,685,685,676,679,691,701,691,685,1054,1106,1063,1104,1081,1071,1071,1087,1049,1128,1106,1088,1115,1059,1093,1084,1104,1085,1048,1094,1064,997,1011,966,987,990,981,1015,988,988,994,995,985,985,1007,1005,978,1017,986,992,992,1030,1031,1053,1025,1046,1054,1035,1045,1036,1051,1050,1040,1040,1058,1043,1041,1043,1044,1036,1039,1027,1048,911,911,966,926,912,914,926,887,924,925,932,914,947,931,893,879,917,949,917,930,926,925,916,934,926,909,903,671,706,702,695,679,704,695,691,714,704,671,735,704,700,680,650,716,689,701,725,685,679,719,628,646,644,650,634,646,647,640,638,652,640,653,636,626,613,637,655,637,641,642,623,657,622,646,656,673,657,652,643,670,686,659,664,657,665,675,676,653,675,655,668,667,671,659,669,638,668,667,653,659,729,717,737,721,703,727,760,750,710,719,716,716,744,731,741,708,751,725,698,730,717,751,742,716,712,709,708,697,719,717,714,716,708,718,701,710,724,728,709,724,707,709,683,697,1083,1087,1108,1072,1099,1098,1118,1103,1089,1135,1039,1090,1111,1118,1079,1109,1079,1059,1102,1116,1080,1111,1120,1084,1073,1118,1088,993,1027,981,989,983,1020,1015,1013,1005,1004,991,984,1018,1004,1006,1004,1042,1004,987,1000,1025,1003,979,895,869,863,893,893,871,867,885,891,878,859,885,895,864,884,875,869,874,869,755,716,720,743,734,732,724,720,696,699,714,697,732,733,716,730,723,722,720,735,705,730,727,716,733,739,711,684,683,679,674,692,667,676,676,694,689,667,671,663,674,696,663,695,662,665,688,665,674,662,674,678,681,694,640,644,620,641,654,652,644,651,633,639,649,661,674,646,650,643,641,645,669,628,638,645,639,660,634,666,656,635,661,654,629,669,676,652,670,659,680,676,666,673,670,651,665,666,654,647,656,656,666,663,659,669,665,672,657,671,652,663,674,682,678,683,681,689,681,680,688,690,672,686,681,684,696,703,685,692,689,675,681,684,661,669,678,664,679,650,676,670,660,669,658,663,676,654,660,656,673,671,659,634,660,657,677,667,677,650,674,729,723,713,716,698,714,721,733,717,716,731,723,728,690,735,699,722,733,730,711,736,721,702,700,708,711,710,707,712,721,697,715,718,704,722,708,702,712,685,697,707,707,703,714,716,713,717,709,710,721,716,702,715,711,717,697,718,675,700,693,695,713,689,699,683,700,703,693,701,682,701,705,711,707,684,701,691,688,679,692,723,1034,1105,1050,1080,1075,1088,1100,1036,1069,1062,1046,1082,1049,1085,1076,1068,1063,1069,1061,1030,1044,1070,1054,1054,1050,1081,1052,1100,1056,1045,1088,1060,1050,1072,1029,1067,1102,1040,1021,1028,1032,932,877,885,875,889,866,851,839,856,859,881,864,874,862,846,879,864,904,836,902,832,860,861,889,858,614,600,620,607,609,592,602,604,595,611,603,629,608,628,616,612,639,639,634,609,593,615,585,629,607,592,601,620,1124,1089,1024,1045,1095,1052,1039,1015,1019,1029,1062,1085,1043,1082,1076,1026,1128,1063,1003,1055,1086,1048,1042,1045,1048,1060,1005,970,967,1012,970,1018,951,989,969,973,1012,985,970,990,965,996,1002,1001,957,687,668,699,666,702,675,726,705,683,676,673,696,687,663,683,705,680,647,681,718,683,697,678,698,684,718,689,1095,1084,1085,1082,1098,1088,1094,1066,1094,1077,1098,1141,1100,1098,1083,1102,1074,1115,1054,1097,1090,1116,1092,1068,1065,1102,1112,1056,1140,973,1004,953,954,937,955,978,966,1003,961,988,975,961,985,975,938,969,938,980,980,973,962,967,969,966,918,987,975,947,951,964,862,833,833,842,847,841,869,878,858,842,888,866,857,845,848,865,867,853,858,842,840,874,857,859,854,855,872,863,842,839,864,850,858,850,692,682,670,677,702,680,683,671,699,694,690,669,684,674,674,686,684,700,672,664,668,682,691,683,681,685,659,692,705,707,638,641,641,653,613,653,605,652,639,638,647,639,627,651,649,649,634,642,638,653,1012,1014,1035,1039,1049,1014,1023,1014,1006,1028,971,1000,1019,1017,1043,996,1019,1018,1013,998,1036,1027,989,1019,980,779,782,772,823,813,807,808,786,756,799,803,789,825,771,769,793,799,801,776,814,767,836,874,825,863,848,838,879,871,843,845,861,866,845,846,834,841,865,859,858,843,839,850,835,842,832,852,837,841,694,690,676,681,676,688,662,683,704,664,661,702,671,664,668,663,695,688,650,627,644,665,664,653,651,653,633,637,658,640,643,664,653,646,648,660,654,647,644,638,642,639,635,636,661,692,686,675,668,669,678,676,686,673,672,668,682,682,661,669,675,670,678,683,655,660,679,675,666,657,670,664,917,886,915,915,901,906,900,897,913,914,903,872,892,917,894,881,900,915,889,911,867,891,904,913,902,949,895,758,744,742,749,757,747,766,748,753,769,749,753,738,789,746,743,755,778,763,748,759,771,771,782,763,715,712,711,721,725,716,700,717,718,700,730,710,712,713,724,723,720,706,710,717,715,715,707,1043,1038,1016,1024,1020,1048,1019,1052,1045,1020,1014,1014,1035,1009,1025,1042,1031,1029,1020,1038,1000,1017,1053,824,816,820,838,852,819,808,846,825,815,810,824,836,825,815,817,798,831,827,830,837,830,1081,1029,1036,1061,1060,1076,1043,1050,1062,1051,1049,1064,1075,1050,1057,1060,1078,1059,1062,1072,1041,1081,1068,1076,918,919,904,907,945,927,940,924,939,911,914,908,919,937,916,942,926,897,877,924,921,916,923,905,907,923,869,1029,1073,1015,1030,1013,1013,1026,1058,1014,1056,1053,1032,1042,1076,1069,1044,1013,1080,1039,881,907,904,915,897,892,890,914,936,918,943,918,941,940,914,970,933,917,902,929,901,887,925,929,937,943,916,618,652,621,660,633,628,637,631,641,618,613,630,592,626,612,630,600,603,619,628,612,635,627,1158,1156,1153,1149,1155,1193,1140,1228,1099,1175,1198,1105,1168,1157,1228,1171,1223,1134,1147,1048,1082,1052,1032,1069,1064,1057,1074,1057,1048,1064,1048,1039,1070,1064,1046,1093,1073,1029,1040,1063,1037,1062,1053,1014,1063,1085,1076,1077,873,870,870,874,849,883,880,890,892,854,872,849,891,864,867,881,878,886,865,864,885,887,669,684,714,661,694,696,685,672,690,697,682,704,641,644,704,684,647,682,662,697,684,678,654,689,681,658,690,671,670,707,667,675,701,624,602,596,614,616,609,638,603,609,613,617,624,602,627,619,618,650,612,618,645,651,646,673,675,716,640,636,651,660,687,651,659,664,644,641,673,660,640,652,665,682,652,673,681,641,667,666,681,688,1240,1176,1143,1207,1258,1195,1177,1230,1219,1172,1260,1232,1193,1203,1271,1268,1190,1151,1135,1206,1222,1224,1108,1087,1103,1097,1094,1110,1096,1091,1101,1075,1113,1032,1051,1099,1083,1091,1096,1083,1055,1114,1094,1062,1071,1092,913,901,895,919,901,897,881,889,875,901,889,889,881,901,895,886,909,910,927,879,876,921,906,880,873,901,909,897,929,646,698,668,671,687,636,657,683,694,678,678,670,689,694,684,671,682,676,687,656,695,694,701,697,676,1031,1016,1011,1002,1016,1005,1025,993,994,987,1034,961,1005,1032,1018,963,1026,1001,980,1018,932,979,874,909,871,870,867,907,920,882,929,891,874,919,876,935,881,901,909,869,913,902,883,883,889,887,919,641,615,637,635,635,629,636,594,639,628,628,639,627,668,643,614,639,599,658,654,606,622,645,592,641,654,626,649,663,633,624,645,654,651,641,655,646,675,662,652,652,638,650,657,656,672,659,658,653,646,669,689,688,678,678,680,679,692,655,676,650,693,685,660,697,689,661,691,671,697,663,667,679,654,659,662,670,683,646,684,645,654,664,661,676,673,653,642,654,654,684,667,681,670,659,667,683,679,676,667,683,670,675,677,678,672,676,680,682,674,670,675,682,685,670,672,665,666,686,675,673,680,680,672,626,631,644,634,627,643,625,623,650,632,635,634,610,643,626,629,655,629,625,621,632,652,631,636,627,635,624,637,642,672,650,654,667,663,648,656,651,667,677,676,677,689,662,647,674,639,661,656,656,663,654,1003,991,995,966,990,963,946,995,983,963,996,936,983,972,971,987,974,966,981,946,988,981,1003,943,957,963,994,968,958,961,989,1072,1058,1079,1083,1063,1052,1059,1112,1074,1045,1061,1068,1090,1087,1065,1082,1085,1085,1060,1055,1088,1055,1085,980,953,977,971,945,990,979,984,986,986,1002,981,1003,983,977,966,968,975,985,985,1004,972,986,975,978,992,950,740,731,716,712,729,693,734,668,712,706,718,725,712,696,740,710,720,737,716,707,691,736,712,727,742,749,716,634,662,663,643,649,644,648,656,643,646,654,640,653,648,651,649,655,663,663,640,619,641,1115,1076,1091,1099,1113,1121,1104,1077,1137,1106,1112,1089,1042,1069,954,945,944,1008,938,930,939,953,1005,970,984,990,980,989,973,955,967,951,966,949,941,968,955,966,962,1068,1054,1061,1068,1094,1065,1094,1075,1069,1044,1033,1058,1049,1080,1046,1042,1059,1058,1099,1111,1085,1040,1060,1035,1005,1105,1084,1075,1103,1113,1079,1096,1115,1109,1103,1101,1106,1086,1100,1117,1079,1106,1111,1084,1114,1067,1088,1091,1099,1130,902,930,927,950,922,956,944,930,914,938,926,906,942,922,931,927,941,957,936,898,623,647,633,630,638,614,613,666,661,649,655,646,618,641,648,651,628,612,652,616,619,635,628,650,610,649,635,1005,1007,997,985,1002,1047,1037,1017,1027,1038,985,1013,1005,1001,1047,996,1018,1025,998,972,1032,1019,1051,1037,1014,971,987,999,992,993,970,981,995,982,981,986,1001,967,1021,985,1002,964,981,1053,1070,1041,1053,1053,1043,1055,1020,1055,1045,1064,1030,1067,1030,1059,1060,1075,1055,1040,1048,1079,1039,1037,1063,1069,914,910,888,853,908,931,886,881,927,869,880,924,898,916,906,902,916,885,896,899,881,875,900,925,865,905,1056,1073,1087,1077,1065,1035,1060,1044,1082,1048,1078,1055,1068,1082,1072,1096,1062,1072,1062,1077,1070,1049,1054,1065,1077,1049,973,975,982,935,938,956,930,953,916,946,952,966,938,974,981,987,936,971,951,976,939,961,957,979,956,932,971,1033,1041,1053,1050,1035,1057,1027,1046,1025,1050,1013,1005,1021,1003,994,1013,1032,1024,959,1055,1041,1036,1027,1044,1026,1046,1029,1054,1051,1045,1044,1043,1046,1021,1034,1043,1055,1044,1045,1055,1038,1060,1035,1056,1054,1027,911,884,903,915,922,910,923,903,888,875,897,905,907,885,931,896,892,908,928,914,916,898,895,906,893,924,919,720,721,729,721,721,729,696,714,757,742,751,741,716,703,736,734,740,725,716,718,689,751,741,725,909,918,922,908,937,917,896,906,933,920,918,924,910,906,929,895,895,907,903,909,834,788,822,820,803,828,820,848,815,823,833,817,806,822,808,807,837,820,832,822,816,801,825,808,810,660,677,660,646,635,642,657,624,685,652,662,633,698,646,666,647,648,654,660,646,631,630,651,679,643,670,606,618,600,612,600,621,612,626,600,610,617,610,621,625,605,596,624,607,612,603,617,627,605,609,606,615,604,640,613,626,1128,1127,1129,1141,1121,1142,1111,1172,1112,1118,1111,1111,1140,1116,1130,1116,1145,1126,1120,1095,1136,1120,1096,1141,1127,1085,992,989,997,976,1019,990,1001,945,992,1012,999,1003,1010,990,997,985,1009,951,958,1006,1007,1043,1031,1066,1052,1053,1038,1064,1040,1071,1052,1036,1030,1017,1060,1034,1096,1041,1028,1059,1050,1077,1062,1045,1023,1040,1041,1035,1013,1021,1038,1015,1056,1045,1025,1041,1028,1032,1049,1033,1017,1033,1031,1037,1035,1020,1007,1028,1022,1021,1029,1022,1028,930,958,935,960,936,954,945,934,956,959,950,970,951,958,952,924,952,933,952,936,944,947,947,957,947,959,784,806,798,798,805,820,815,808,776,792,763,803,798,798,788,785,804,815,774,784,808,780,806,821,764,703,729,711,704,706,685,690,712,701,700,713,707,692,692,728,725,702,714,714,729,684,699,715,700,716,706,720,725,699,722,726,717,713,713,726,729,711,714,722,735,709,716,701,715,719,720,721,718,704,705,678,677,665,660,678,689,681,659,667,665,680,665,677,690,665,689,673,968,966,953,973,930,988,987,1001,960,935,970,975,943,961,925,945,972,956,945,753,787,793,789,766,747,805,790,782,757,754,767,782,781,763,780,788,775,751,745,947,970,966,940,966,943,937,978,938,946,957,939,983,922,945,942,985,956,940,955,953,947,948,941,936,876,868,863,851,867,870,871,863,864,855,853,863,866,866,879,854,847,878,861,853,856,864,856,835,1017,1055,1042,1022,1011,1055,1051,1046,1038,1050,1017,1052,1032,1027,1003,1049,1042,1021,1049,1044,1047,1053,1023,1046,1039,1045,1027,1023,1011,1017,989,1005,1011,1024,1018,1009,1010,988,998,1015,994,1007,994,1012,1002,1023,994,1009,1015,985,961,976,976,989,969,970,976,987,969,968,978,966,968,991,965,964,968,976,957,957,971,953,973,972,975,975,964,971,980,968,969,980,989,982,993,980,974,983,986,977,993,970,983,973,967,983,951,977,970,970,989,955,974,954,979,988,991,1000,1001,990,996,982,1005,990,979,974,991,972,1004,988,997,996,990,1020,992,981,978,994,977,1025,1018,1014,1012,1022,1023,1031,1028,1036,1013,1017,1026,1018,1024,1010,1025,1013,1039,1015,1032,1027,1038,1028,1025,1001,1046,1031,1017,905,895,912,904,902,928,921,916,894,898,907,914,908,881,933,905,933,919,888,906,890,945,908,933,924,904,895,916,735,747,723,688,729,717,716,716,733,703,716,720,730,736,725,725,760,728,788,728,731,729,738,717,728,953,959,946,963,954,978,941,963,962,976,964,950,969,955,964,940,994,987,921,956,978,953,980,967,1015,1006,1027,1018,1019,1018,1006,1020,994,1006,1023,1015,1028,1039,985,982,996,1014,996,1012,1015,1025,1049,1030,1007,963,986,995,998,980,995,970,1007,997,984,989,970,1000,1012,995,988,996,976,995,995,1003,998,976,973,1018,1012,1012,1007,1001,1010,1013,998,1003,1009,1014,1020,1022,998,1002,995,1017,1018,1001,1020,981,1000,1013,1027,1027,1017,1022,1047,1028,1036,1033,1035,1015,1023,1031,1036,1033,1045,1025,1038,1047,1031,1012,1037,1021,980,984,940,969,959,952,988,995,985,964,945,943,989,970,975,978,959,965,988,957,963,959,826,789,769,767,732,815,811,796,790,767,787,770,775,802,782,791,768,787,786,788,986,1016,1006,1023,1023,984,1010,1006,1033,996,1021,1019,1057,981,1023,1020,1021,987,996,980,1018,993,1001,955,1004,1012,1010,1001,1027,998,992,958,987,1017,979,991,988,1002,998,989,991,1007,1002,984,1010,973,1003,1013,983,1020,1004,1005,1010,998,999,1020,1018,992,1015,1033,1015,1011,1013,1010,1013,1023,1025,1024,1000,1018,1022,1027,1005,994,1014,1002,1001,1027,1027,1008,1001,999,1014,1001,1017,1020,1001,1086,1097,1084,1091,1090,1095,1094,1107,1093,1100,1086,1103,1115,1099,1091,1106,1102,1104,1097,1087,1066,1098,1093,1093,1095,1092,1100,1117,1093,948,928,902,946,939,954,964,924,937,894,925,962,950,931,921,937,975,931,946,928,974,929,963,913,1019,1101,1065,1041,1062,1084,1054,1088,1051,1065,1048,1053,1063,1061,1103,1047,1041,1046,925,829,881,850,894,869,895,868,846,911,890,844,858,887,897,871,815,872,906,889,882,894,896,660,732,685,709,710,706,718,719,706,701,707,713,732,728,722,725,712,729,697,698,716,695,702,699,680,729,689,964,1021,1028,1020,988,1040,1039,1004,1023,1030,1052,1019,1029,1031,1020,996,1062,989,1034,975,1007,995,1011,1015,1027,1039,990,1003,1053,994,1004,1016,1003,971,1030,1048,1021,1068,1027,1026,1028,1027,1018,1036,1035,1035,1039,1014,1025,1011,992,1018,1033,1034,1040,1014,1030,1048,1000,999,1004,997,1009,991,995,991,995,992,983,985,981,995,996,979,993,998,992,998,996,997,997,991,984,986,987,977,974,981,992,991,969,989,990,981,988,991,993,984,992,990,988,991,986,975,996,866,853,881,847,926,860,879,889,860,863,874,859,853,866,889,873,884,876,881,891,892,893,894,876,863,861,605,615,622,628,612,616,640,631,606,614,626,610,633,638,621,601,621,632,615,613,641,639,655,635,637,655,645,632,650,643,643,650,647,618,641,616,649,635,638,658,636,625,659,657,647,664,653,618,654,621,703,698,656,673,683,673,695,673,676,679,676,692,674,693,701,709,694,667,678,688,691,698,675,707,697,679,655,669,1071,1081,1074,1078,1091,1061,1056,1069,1057,1074,1079,1077,1083,1081,1051,1070,1075,1090,1061,1083,993,989,1006,980,986,1003,976,985,983,1004,997,963,994,1009,980,985,985,999,985,999,1002,999,993,974,987,975,985,942,904,885,902,922,899,889,893,878,879,878,900,919,895,894,894,909,931,854,842,800,841,837,820,812,839,828,847,827,802,800,837,824,837,830,816,818,815,825,825,822,802,767,796,810,785,810,801,786,799,800,800,796,802,805,797,810,803,785,774,784,787,788,788,789,815,809,803,798,789,693,702,722,714,702,706,699,731,693,695,673,686,706,699,726,707,696,686,704,715,709,730,678,710,861,837,872,858,859,847,851,881,890,903,853,867,823,852,838,873,837,872,923,873,901,859,734,755,708,747,753,738,737,746,732,755,738,753,751,740,733,747,727,727,700,664,671,680,685,705,677,671,692,682,700,669,686,670,665,682,679,676,694,673,670,669,682,665,668,685,677,673,659,665,674,663,651,668,654,668,671,661,664,688,695,660,667,665,682,668,643,668,672,670,667,663,663,622,632,640,643,629,633,639,626,641,637,647,632,636,617,632,626,641,642,629,659,628,645,638,629,615,1096,1098,1029,995,1049,1061,1080,991,1041,1009,1053,1086,1061,1037,1061,1032,1082,1041,1041,1030,1020,1044,1028,1046,1062,1080,1054,1094,1070,1047,1075,1058,1076,1060,1080,1069,1061,1050,1076,1089,1071,1068,1081,1060,1043,1087,1053,1065,1060,1065,945,944,936,946,959,955,977,1010,956,971,971,953,961,941,962,942,930,981,950,965,966,918,957,965,959,939,957,707,674,655,689,712,684,655,681,666,650,662,702,692,673,708,668,704,691,688,695,687,600,616,617,604,643,612,604,606,612,608,613,603,614,606,613,621,604,596,622,597,613,636,589,878,903,902,917,854,886,919,909,949,871,899,888,930,845,945,912,876,862,896,888,893,877,688,690,709,677,702,675,666,701,720,681,707,673,708,724,674,650,666,678,707,734,699,684,729,678,688,678,702,605,652,625,621,616,598,642,635,634,620,631,622,608,600,626,607,625,622,635,645,621,633,628,646,625,1028,1070,1093,1036,1076,1027,1032,1049,1064,1044,1029,1046,1096,1034,1066,1034,1046,1047,1057,1045,1034,1029,1039,960,965,964,976,985,990,962,974,949,988,987,970,970,985,1007,972,971,984,985,935,983,990,976,961,983,945,1029,1036,1071,1069,1068,1058,1045,1069,1063,1054,1043,1080,1063,1056,1048,1075,1081,1058,1083,1057,1063,1095,1050,1056,1035,1044,1050,931,904,947,940,916,919,924,914,931,920,914,919,917,925,942,924,920,903,920,894,923,914,944,922,922,925,927,909,920,957,921,959,963,956,949,931,903,968,968,930,903,955,884,974,904,943,921,929,945,942,942,899,943,894,957,969,953,940,969,976,971,964,962,964,979,973,962,973,998,958,955,968,959,969,977,960,974,969,945,986,959,952,978,946,965,1057,1029,1068,1047,1019,1036,1052,1037,1059,1043,1041,1069,1079,1049,1060,1057,1045,1054,1027,1045,1030,1094,1051,1011,1039,1063,1051,875,848,854,856,877,844,858,891,864,862,857,839,860,918,850,862,835,875,859,885,858,888,866,896,895,614,627,644,630,614,621,585,631,599,593,608,645,623,612,612,615,619,605,620,612,620,652,607,619,651,627,607,622,627,686,663,666,673,656,671,688,689,668,634,665,676,658,665,684,666,669,665,654,690,701,663,667,676,687,1272,1178,1223,1177,1218,1192,1201,1149,1177,1180,1175,1197,1171,1129,1175,1216,1248,1160,1202,1170,1139,1188,1124,1237,1209,1055,1041,1062,1052,1086,1033,1036,1038,1055,1060,1033,1078,1084,1049,1030,1052,1049,1080,1036,1055,1027,1071,1037,1034,1061,1057,1076,1029,1059,904,915,919,908,893,888,923,930,930,942,894,909,915,914,936,908,908,899,888,918,906,921,924,985,969,979,979,961,978,974,981,954,972,990,985,965,980,969,983,958,968,929,937,934,938,918,936,940,930,935,937,945,931,938,922,944,942,921,925,949,935,954,934,945,928,924,948,946,1062,1061,1068,1079,1076,1081,1073,1055,1070,1083,1049,1059,1081,1064,1056,1063,1052,1053,1051,1068,1077,1064,1084,1078,1076,1062,1094,1073,881,909,857,904,865,902,863,913,863,903,917,888,830,922,890,915,854,896,876,919,887,914,907,898,921,871,922,1140,1111,1141,1090,1089,1102,1131,1073,1097,1092,1102,1155,1123,1108,1142,1113,1113,1142,1108,1087,1103,1143,978,870,930,950,939,926,930,910,892,924,971,920,901,928,937,915,925,882,944,927,911,953,942,923,930,907,935,704,651,677,655,649,661,666,664,655,672,665,676,689,682,685,665,670,691,1158,1126,1180,1169,1189,1108,1124,1165,1174,1166,1178,1098,1170,1147,1114,1099,1150,1178,1164,1133,1181,1138,1134,1164,1141,1150,1032,1040,1022,1030,1033,1025,1020,1056,1035,1027,1010,1018,1000,1026,1031,1007,1032,1030,1035,1025,1065,1022,1030,1037,1000,1038,1021,815,838,795,815,774,781,769,759,821,806,786,793,822,772,795,789,791,802,788,649,645,659,653,651,659,649,635,645,637,658,657,650,620,667,630,664,672,670,672,603,586,574,582,582,550,591,592,561,580,555,593,562,575,591,607,589,584,570,565,581,591,560,556,585,584,563,626,633,634,626,642,652,611,652,651,680,628,645,625,630,645,624,639,673,621,653,650,632,644,648,612,638,637,630,671,1022,1034,1018,1035,1066,1029,1061,1033,1023,1038,1008,1047,1035,1027,1059,1026,1052,1006,1046,1000,995,1008,1063,1013,1050,1027,1021,835,820,843,832,834,801,806,842,827,852,817,820,802,838,841,820,846,807,831,824,851,831,824,853,825,823,966,955,961,953,973,966,974,964,928,952,962,938,964,941,940,967,955,956,939,968,950,954,925,966,954,968,969,930,900,939,907,937,928,934,889,929,901,908,920,911,945,907,927,928,900,916,905,924,916,908,927,906,928,966,995,985,957,944,938,993,968,979,988,990,955,964,934,955,971,983,990,975,946,1003,957,974,980,876,894,902,852,920,890,907,877,905,878,889,883,879,890,898,889,893,869,894,895,901,897,904,705,687,683,700,695,665,703,681,683,686,713,686,686,675,693,692,726,677,694,710,706,721,689,708,683,673,709,717,688,808,845,842,852,859,884,844,875,852,861,842,847,909,836,850,866,849,827,729,726,736,711,734,725,715,727,770,748,730,729,709,732,741,736,713,729,724,733,742,727,718,735,744,730,717,738,752,681,701,697,687,686,686,669,685,686,684,700,699,662,682,692,679,681,701,681,688,688,676,689,680,675,673,681,1026,1027,1067,1042,1038,1065,1024,1051,1064,1053,1046,1064,1033,1034,1025,1100,1039,1028,1058,1004,1054,1054,1062,1023,1050,1072,1044,988,1000,971,972,946,980,980,980,986,963,952,980,971,951,960,975,953,984,977,998,944,973,985,967,951,966,979,975,1038,1031,1036,1018,1030,1000,1014,1000,1006,1018,1035,1012,1006,1033,1004,1005,1029,1020,1028,1006,1012,1015,996,1026,984,1040,961,951,970,957,941,948,972,936,954,969,964,947,963,924,950,940,956,933,937,946,952,955,943,931,940,942,932,954,794,814,814,788,801,835,806,802,824,812,811,816,823,798,818,821,808,811,793,779,802,821,840,696,707,715,705,710,701,723,723,724,724,731,716,719,702,674,678,709,740,700,727,685,714,718,714,833,841,882,866,896,887,872,910,825,861,867,896,838,845,855,859,855,891,856,860,828,885,851,838,863,848,855,867,854,879,826,846,679,701,673,674,636,685,673,674,686,674,700,669,694,667,678,684,706,676,661,686,598,579,583,593,594,573,608,586,591,596,580,586,579,613,588,599,593,598,596,560,582,597,604,585,601,584,597,590,620,609,616,622,587,619,596,588,602,610,626,587,600,621,614,680,689,691,675,699,693,680,677,704,697,692,679,685,692,680,701,683,704,707,696,692,694,715,733,697,692,696,697,698,700,708,702,683,691,701,704,732,706,724,697,728,720,707,693,711,694,711,696,713,706,709,959,989,955,973,949,958,974,974,953,960,947,1007,971,964,956,965,787,779,787,738,771,758,772,742,755,769,772,757,755,773,754,774,755,757,760,752,772,809,822,800,811,831,819,823,830,822,838,837,820,819,840,819,839,810,852,828,837,795,831,844,829,820,1063,1037,1029,1019,1037,1059,1042,1048,1044,1006,1014,1039,1040,1007,1032,1036,999,1021,1037,1015,1062,1023,1053,1039,1083,1065,1086,1046,1066,1056,1080,1076,1064,1113,1092,1069,1069,1072,1081,1083,1083,1073,1069,1041,1086,1053,1059,1070,1062,1077,1084,1068,968,959,943,937,952,975,974,952,962,972,943,970,961,941,971,944,942,955,925,931,916,978,939,963,965,933,989,943,1003,1072,1048,1043,1030,1032,1048,1022,1059,1084,1010,1072,1077,1066,1096,1091,1056,1073,1024,1039,1046,940,973,969,952,966,959,971,959,968,958,953,990,940,970,986,985,974,982,976,955,1000,968,630,673,623,616,649,630,637,653,628,603,647,669,645,632,649,644,649,686,649,657,621,643,637,630,661,646,622,591,614,582,597,624,605,573,621,595,608,619,595,596,603,623,637,639,603,608,617,606,616,615,601,594,596,753,763,746,751,752,763,746,755,756,764,747,751,757,747,724,737,742,771,751,775,756,766,745,735,711,730,802,776,797,747,798,773,797,765,766,742,799,798,767,788,756,736,802,808,810,770,1041,1066,1061,1036,1045,1081,1048,1043,1080,1037,1058,1046,1065,1037,1022,1057,1104,1056,1063,1028,1061,1083,1037,1076,806,757,761,767,802,809,758,805,784,743,751,804,781,761,780,762,774,808,787,792,794,757,777,802,808,790,739,817,610,639,629,613,605,631,628,629,644,608,616,618,646,623,646,627,630,622,637,605,594,608,593,600,581,596,603,600,594,570,601,591,598,599,580,589,579,584,570,605,600,603,589,580,588,585,619,650,650,646,657,637,635,621,633,632,620,650,652,621,629,624,641,625,622,631,636,636,635,631,612,621,615,622,626,622,624,630,641,628,641,630,612,636,626,619,637,626,646,654,667,649,665,657,660,652,646,650,647,662,663,663,631,652,652,679,674,660,644,650,662,642,673,647,664,655,620,674,674,662,621,716,674,701,639,696,654,671,670,619,702,633,658,630,661,646,706,658,644,684,699,692,697,696,688,692,717,693,695,694,694,684,717,698,699,710,713,698,702,703,712,695,707,714,690,678,638,603,617,631,613,623,630,624,626,618,626,641,603,604,623,643,627,640,630,625,609,622,609,609,624,1157,1052,1080,1088,1080,1096,1066,1101,1051,1095,1066,1060,1049,1069,1049,1060,1097,1095,1087,988,1026,1021,988,1019,1019,1017,1011,1009,1015,976,1003,1007,1004,1011,1014,1023,1015,1042,1018,1017,1034,990,1011,1034,1012,1018,1010,896,884,874,881,889,860,903,881,893,891,881,876,881,863,894,902,868,881,887,895,797,811,795,810,802,831,792,797,804,807,816,784,790,809,775,813,806,794,805,793,806,820,812,786,809,811,803,704,672,678,681,701,705,689,680,686,690,680,680,695,688,693,663,728,683,693,676,694,687,654,664,686,670,695,704,670,685,570,571,567,581,576,584,587,572,574,576,607,587,587,598,581,591,567,581,568,595,594,632,624,642,638,603,650,646,635,639,635,642,618,644,646,640,620,620,655,637,653,648,643,650,645,624,635,654,655,677,660,653,683,668,664,681,656,643,1167,1181,1166,1173,1166,1182,1162,1189,1175,1189,1153,1158,1157,1179,1191,1099,1085,1154,1147,1107,1128,1151,1181,1113,1148,1148,1170,1119,910,938,899,932,911,903,839,908,912,899,949,886,943,859,893,922,932,861,892,897,942,900,914,887,914,905,923,934,908,963,681,640,599,620,634,621,643,629,648,614,629,599,613,679,642,632,639,653,626,632,618,636,657,626,624,1108,1079,989,1005,1040,1050,1057,1011,1094,1048,1042,1081,1076,1047,1021,1002,1037,1048,1047,1065,1030,1058,1044,1088,1047,1023,1029,1019,1025,1040,1040,1037,994,1053,1021,1048,1024,1008,1008,1022,1007,1037,1021,1022,998,988,1032,1012,1020,1042,706,650,745,712,734,756,702,741,711,770,705,732,722,747,675,734,704,718,720,712,757,717,705,713,680,744,722,741,763,693,760,869,851,832,871,868,838,844,855,846,829,823,846,827,841,875,825,846,874,856,856,906,694,698,699,678,697,691,695,717,708,702,700,710,673,692,673,681,662,685,695,723,695,701,683,644,649,631,650,647,664,669,656,648,636,663,655,671,659,658,666,678,667,657,632,647,658,669,643,672,644,1239,1268,1254,1242,1297,1208,1258,1284,1357,1308,1247,1280,1244,1259,1260,1247,1198,1187,1284,1214,1258,1206,1172,1000,1047,1044,1044,1012,1033,1006,1040,1024,1044,1037,1046,1012,1031,1038,1009,1026,1009,1020,1038,1048,1012,1004,976,1032,1049,1049,1067,1090,1070,1085,1063,1068,1075,1101,1072,1060,1080,1061,1073,1061,1065,1084,1047,1057,1047,1051,1061,1095,1053,1072,1075,1077,1063,1051,1059,1077,918,908,902,897,928,907,901,923,922,902,927,898,928,880,865,893,887,891,950,942,894,919,870,938,988,1019,1007,979,990,981,989,955,982,1013,1020,1003,1015,961,965,963,992,995,981,1020,1008,965,962,1004,998,1015,1005,1022,1030,990,1013,1017,1009,990,1017,993,1039,1011,998,985,1002,1000,1021,1017,1004,1035,1018,1008,990,1013,1035,1003,1009,995,1016,1006,996,988,1012,1009,996,891,936,917,916,899,908,889,898,893,913,894,899,874,889,900,668,669,673,654,649,644,673,665,657,672,668,665,663,650,674,666,698,652,648,644,674,670,1032,1073,1062,1036,1029,987,978,1118,1014,1045,1008,1067,1037,1075,999,1092,1038,1100,1035,1025,1059,1093,1004,1047,1034,1039,1058,1036,1039,1046,1048,1058,1039,1050,1061,1049,1029,1063,1065,1053,1059,1037,1049,1056,1040,1044,1053,1056,889,906,916,895,884,865,881,913,922,884,869,900,886,879,907,669,705,697,702,717,680,724,699,690,715,706,700,721,707,693,690,699,694,689,690,698,677,705,689,720,669,703,729,691,692,698,671,690,689,674,679,703,698,667,689,688,684,703,693,665,689,675,702,701,671,666,674,685,703,665,703,689,1039,990,1034,1022,1044,970,1015,1009,983,1002,1027,1008,1013,1013,1017,1018,1003,1011,1028,996,991,1047,1020,1014,1031,996,987,1002,974,994,988,979,977,985,987,1010,1004,985,998,987,1019,981,986,982,995,994,988,1009,1001,973,970,1000,987,993,993,976,984,985,967,979,987,992,975,1012,996,972,964,988,985,990,985,997,993,985,980,1011,988,993,1002,886,877,852,875,825,865,831,827,855,865,849,816,837,863,864,857,844,835,892,843,823,645,605,634,633,620,634,606,636,611,613,613,609,623,628,622,624,639,620,622,622,626,615,712,725,691,715,717,715,721,714,711,725,726,705,717,716,720,732,720,710,722,714,720,703,728,723,712,697,754,741,759,732,715,728,742,705,735,711,738,744,735,716,732,727,723,724,749,726,718,714,736,708,732,725,736,703,721,1088,1120,1130,1077,1092,1099,1088,1127,1083,1097,1088,1071,1062,1089,1062,1096,1090,1096,1087,1098,1094,1109,884,880,897,877,913,876,914,894,902,919,908,908,918,906,927,879,900,853,877,891,876,672,697,720,708,684,716,709,699,706,720,713,705,696,710,693,696,725,700,716,683,701,711,708,704,664,898,854,877,860,855,858,897,849,868,776,893,873,854,879,813,800,860,883,855,844,824,824,884,845,838,817,847,841,864,829,814,795,825,787,816,830,807,811,807,824,821,809,794,812,822,840,800,804,799,801,809,814,820,819,658,690,698,692,661,687,642,694,655,684,690,668,675,686,674,676,682,680,682,694,684,686,682,693,682,656,656,623,635,639,641,636,641,640,622,627,633,624,645,628,633,654,625,623,645,629,627,639,638,643,627,643,918,911,871,894,898,898,901,873,946,947,906,905,879,883,907,926,876,893,914,887,907,926,920,927,870,904,870,877,925,720,684,714,696,731,732,690,698,707,680,709,681,680,700,707,685,699,653,631,635,632,622,608,614,597,615,611,614,624,608,619,633,627,614,628,619,615,627,622,609,631,625,621,614,612,1159,1096,1119,1106,1131,1116,1167,1088,1135,1065,1117,1128,1130,1132,1119,1084,1119,1120,1169,1132,1114,1112,1127,1154,1019,1024,960,1003,1005,979,999,1009,1003,983,999,989,999,984,1010,950,990,987,987,976,1013,972,1010,996,989,994,981,1021,1011,1025,1028,1033,1070,1044,1016,1020,1055,984,1052,1045,1071,1037,1081,1007,1021,1025,1016,1063,1030,1036,1044,1063,987,1013,1043,1045,1053,1032,1057,1039,1039,1028,1062,1040,1052,1067,1045,1059,1057,1045,1046,1049,1053,1051,1030,1056,1057,1044,1048,882,899,888,911,892,926,904,871,903,931,912,909,901,895,877,920,880,901,907,908,910,894,892,624,603,613,613,641,632,646,616,641,620,610,624,604,640,627,620,643,623,641,624,632,1174,1106,1111,1161,1129,1149,1188,1125,1178,1115,1131,1211,1106,1195,1181,1121,1165,1162,1041,1205,1150,1148,1136,1132,1163,1163,1138,1017,1046,1043,1015,1051,1022,1032,1024,987,1025,1019,1044,1042,1041,1019,1025,1036,1019,1052,1106,1089,1094,1003,1066,1071,1049,1033,1061,1071,1030,1094,1064,1060,1046,1062,1019,1038,1076,1062,1034,1017,1034,1071,1062,1061,1029,1031,1006,992,1084,1063,1073,1067,1063,1064,1052,1073,1044,1053,1070,1059,1065,1052,1070,1056,1072,1073,1032,1074,1067,1061,1064,1056,901,919,961,943,952,911,927,934,947,936,940,932,911,940,919,924,943,936,950,926,928,932,918,944,900,696,669,658,692,667,663,691,686,688,684,703,654,680,671,717,689,665,673,699,661,979,984,972,1026,974,960,1008,1017,992,1020,982,951,997,988,1016,1008,1007,977,973,984,1002,1015,967,1014,1033,1016,1023,1040,1018,1040,1026,1023,1025,1012,1012,1030,1022,1033,1002,1031,1028,1023,1051,1053,1025,1014,1010,1018,1020,1007,1022,1009,1005,1007,1039,1014,993,1008,1000,998,990,984,1027,1015,1008,1017,1002,1000,1013,993,1024,1003,1003,1011,992,1008,1061,1076,1050,1057,1076,1053,1044,1059,1044,1045,1055,1063,1054,1045,1053,1057,1061,1040,1043,1055,1059,949,913,895,882,902,907,880,921,924,903,895,893,905,928,910,910,880,924,938,938,876,902,915,911,885,1013,1022,1044,1019,1032,1010,1042,1031,1026,1029,1026,1040,1023,1024,1024,1037,1037,1032,1033,1023,1008,1017,1039,1026,1055,1012,1026,1010,1010,1014,1014,1019,879,904,896,920,885,901,890,903,916,915,926,916,931,910,929,920,890,912,952,974,979,1053,1007,976,982,1039,997,1015,1008,991,975,1016,1028,1040,1004,988,986,948,972,981,1011,1004,999,1014,1000,996,1008,1008,1005,1026,995,997,1010,1008,1004,1001,992,981,997,999,990,989,974,996,1008,1010,994,992,981,1005,987,1002,982,996,1000,991,988,980,1010,1001,978,985,980,1001,985,998,990,999,997,970,992,998,1008,987,1003,1011,1014,988,1012,1001,977,1005,988,1007,994,1023,997,988,998,1050,1046,1056,1050,1037,1062,1052,1051,1041,1034,1041,1056,1053,1069,1048,1058,1069,1036,1039,1060,1029,1061,1057,1048,1049,1046,1035,1045,1041,1041,977,926,930,911,911,959,922,927,953,920,966,943,917,935,930,938,955,943,950,939,945,935,934,977,602,630,603,652,642,602,620,620,625,655,618,638,637,651,621,636,664,637,648,618,703,681,670,680,672,667,694,676,691,667,695,682,682,677,682,690,684,669,702,673,683,662,691,690,688,684,710,684,693,691,701,670,685,694,710,692,701,682,699,699,697,683,692,689,1097,1156,1190,1137,1112,1174,1140,1134,1198,1127,1122,1162,1096,1177,1172,1152,1102,1182,1152,1141,1145,1132,1114,1142,1161,953,953,901,921,984,938,990,956,930,930,938,981,955,997,933,923,948,936,891,961,978,918,973,1127,1101,1087,1058,1127,1111,1102,1034,1004,1147,1079,1042,1071,1052,1040,1066,1068,1088,1082,1078,1090,1070,1101,1039,1027,994,1058,1105,1078,1068,1101,1062,1046,1024,1027,1042,1027,1027,1062,1030,1058,1054,1058,1039,1032,1040,1043,1060,1043,1034,1018,1049,1061,1033,1032,1046,1040,1057,1043,1034,1039,1023,1027,1049,1033,1036,1023,1028,1056,1034,1060,1029,1042,1032,1034,1025,1064,1042,1041,1024,1029,1029,1050,1028,1023,1037,1047,957,951,943,910,943,915,939,928,933,950,934,936,944,933,925,928,891,932,971,963,929,951,967,927,962,966,961,946,962,679,722,702,660,663,674,698,694,697,701,682,690,701,713,683,754,679,694,667,699,679,669,697,684,678,691,731,693,606,625,586,624,610,620,600,594,600,625,631,637,634,636,641,623,613,641,634,600,608,623,605,679,634,647,656,637,644,662,675,642,658,656,655,674,650,668,651,654,664,655,663,644,655,654,664,631,621,636,624,645,625,621,635,622,630,631,642,627,633,619,620,625,630,634,641,634,635,613,629,632,630,638,624,676,668,685,681,681,684,672,684,672,679,676,688,684,673,672,673,670,690,685,675,680,679,677,744,726,755,753,739,770,771,739,741,743,765,734,765,757,774,779,780,760,722,760,764,786,749,781,748,771,734,735,746,758,760,672,682,678,677,663,658,674,664,662,671,687,686,673,688,657,687,685,672,675,699,695,693,678,679,697,663,993,992,1009,999,1014,976,1019,981,978,997,1019,991,1026,986,995,975,994,990,1022,1002,1019,970,1005,1026,1009,1054,1057,1071,1053,1037,1033,1040,1033,1028,1061,1050,1028,1030,1039,1046,1056,1040,1037,1040,1076,1043,1039,1036,1049,1026,1030,1024,1037,1044,1027,1028,926,953,912,887,906,925,947,965,919,930,887,925,933,964,908,922,937,930,917,904,934,1179,1178,1212,1226,1165,1207,1202,1174,1186,1170,1186,1201,1192,1202,1186,1153,1213,1182,1199,1184,1225,1186,1181,975,977,985,988,962,937,957,975,975,952,978,996,977,964,996,964,986,970,960,975,945,969,977,996,998,958,665,705,682,677,679,702,670,678,683,663,711,683,694,699,684,681,706,661,675,697,693,685,679,696,681,660,730,1167,1059,1107,1097,1107,1112,1115,1090,1139,1102,1108,1087,1078,1121,1119,1106,1092,1144,1088,1082,1060,1075,1131,1077,1072,1128,1118,1118,1077,1061,1064,1100,1093,1077,1064,1057,1094,1092,1104,1102,1077,1086,1054,1108,1058,1068,1109,1072,1089,1114,1068,1105,901,918,892,925,893,933,895,885,894,903,889,933,935,927,900,904,875,911,945,934,935,924,876,920,667,678,660,657,663,664,653,662,662,679,634,668,665,655,672,666,664,657,665,652,674,678,662,680,667,680,680,712,677,709,677,661,685,674,679,680,677,679,709,680,691,686,689,683,701,694,679,689,678,688,689,709,688,676,684,694,678,697,662,669,683,1029,1022,1032,1024,1031,1051,1052,1053,1053,1043,1002,1033,1008,1015,1025,1016,1012,1037,1048,1009,1033,1003,1030,1047,1009,1012,1020,1048,790,777,788,799,823,817,797,823,833,822,774,826,820,796,820,776,784,809,832,809,816,837,788,799,795,821,985,956,969,953,996,942,960,959,993,989,959,965,1003,967,983,1002,997,967,946,946,947,967,981,957,979,978,985,957,951,969,1042,1010,1030,1014,1019,1005,1021,1039,1055,1009,1032,1022,1045,1026,1018,1008,1026,1025,1040,1020,1001,1017,1024,1029,1022,1025,989,998,967,1001,985,1003,981,982,999,973,989,967,960,997,967,976,1010,985,714,684,711,696,710,700,676,713,713,696,664,714,703,733,690,694,690,711,685,668,703,701,684,718,698,686,619,612,608,642,605,570,606,640,633,610,594,628,611,624,615,600,618,612,620,594,614,605,620,599,601,596,602,608,607,582,601,606,603,614,611,611,595,605,601,618,599,609,706,685,726,674,725,720,702,710,705,684,687,692,673,697,723,650,708,675,697,686,687,682,686,1055,1045,1093,1066,1068,1087,1067,1068,1046,1079,1093,1045,1081,1059,1099,1063,1065,1067,1081,1120,1068,1077,1042,1085,1025,1045,1049,1062,878,841,862,843,873,840,899,876,824,903,846,905,849,848,852,870,850,887,853,877,902,863,865,855,888,835,877,859,881,850,1017,1002,1052,1023,1041,1020,1024,1021,1034,1048,1037,1034,1026,1039,1048,1028,1029,1030,1032,1018,1020,1014,1001,975,995,985,994,998,999,996,1006,1009,997,990,1005,985,1002,1005,1002,1007,1004,1005,1006,1001,1006,999,993,865,870,892,890,895,859,880,863,889,866,881,891,844,871,875,912,893,858,867,882,862,896,885,855,853,900,873,857,1013,1022,1049,1050,1053,1000,1060,1046,1051,1033,1030,1059,1052,1021,1031,1024,1048,1024,1050,1042,1013,1019,1037,1033,1057,1045,975,969,993,971,975,975,954,975,956,980,974,979,979,992,973,982,968,960,973,973,976,982,998,979,983,745,790,784,805,792,790,760,782,797,780,806,806,792,797,783,786,792,780,791,764,783,813,774,779,665,685,642,625,672,665,660,636,648,675,671,684,660,694,653,656,642,658,674,689,672,655,652,678,666,653,674,671,634,638,614,640,627,609,634,617,631,639,624,622,624,648,629,624,632,617,635,645,914,922,925,967,905,963,898,896,897,911,886,879,922,932,946,892,895,888,929,907,947,932,888,722,702,720,709,704,674,682,681,701,736,693,725,698,722,702,699,718,679,705,707,703,708,716,684,661,689,719,703,686,714,644,626,630,638,655,641,640,630,627,642,625,637,626,632,613,643,629,631,628,647,639,630,621,957,997,993,941,1016,976,976,959,966,988,1006,972,1008,971,998,958,997,984,976,948,983,1008,977,984,831,802,797,790,791,793,805,806,820,812,800,795,825,803,776,787,796,829,781,833,802,923,913,890,890,892,881,915,901,886,910,892,897,893,909,877,892,911,882,905,908,897,912,894,895,881,901,917,789,795,796,797,814,792,797,807,811,788,807,799,777,804,810,792,798,783,783,790,814,803,801,806,816,1040,1068,1051,1023,1029,1052,1036,1061,999,1049,1052,1019,1016,1052,989,1023,1025,1043,1032,1037,1047,931,939,916,928,984,984,974,974,959,931,968,948,922,958,960,961,932,946,940,965,930,960,955,954,953,982,967,931,980,1046,1062,1043,1044,1055,1050,1039,1039,1056,1068,1050,1082,1056,1062,1075,1044,1049,1067,1071,1050,1052,1051,1040,1043,898,954,922,929,961,930,952,918,943,926,924,898,954,926,918,921,932,909,937,946,921,925,962,927,1145,1150,1136,1138,1142,1109,1119,1159,1108,1133,1146,1114,1145,1102,1122,1115,1148,1183,1111,1137,1162,998,1016,1011,982,1041,1019,992,1011,1000,992,987,1011,1031,999,1019,1001,979,1003,1021,972,1024,962,1009,695,692,689,713,702,674,678,657,669,674,667,677,695,712,676,668,684,689,692,705,672,708,697,706,1014,1037,1047,1077,1028,1068,1057,1037,1015,1041,1064,1030,1023,1059,1055,1054,1027,1045,1036,1039,1028,1043,1061,1028,991,983,996,987,985,983,1000,983,993,981,990,970,995,989,980,1003,1000,963,977,982,1005,1003,970,993,971,1005,997,910,907,902,909,906,872,899,916,897,900,880,902,926,897,909,934,911,909,893,907,980,953,991,997,990,989,978,989,962,964,1000,978,989,976,1000,973,996,1002,978,1007,716,695,765,701,708,713,707,718,751,689,771,699,711,680,701,725,718,719,708,727,729,740,751,734,714,742,706,719,676,676,657,661,654,684,653,633,687,652,677,680,665,650,661,685,686,678,661,669,670,643,670,655,666,662,671,1000,980,1033,1007,1001,1029,1002,1007,1060,1023,1017,1026,1008,990,1002,983,989,1012,1025,1000,1002,1007,1005,1014,1042,803,793,795,840,803,818,842,819,819,815,823,826,815,844,839,830,816,776,824,839,827,782,821,794,838,1067,1041,1065,1061,1032,1035,1034,1031,1048,1055,1017,1031,1041,1041,1048,1019,1031,1046,1021,1030,1021,1038,1045,1045,1019,1052,939,925,914,880,939,932,928,948,941,935,888,917,910,909,936,927,925,921,941,943,891,1081,1129,1104,1116,1091,1075,1099,1108,1109,1095,1132,1111,1135,1062,1100,1094,1094,1095,1113,1121,1114,1129,987,1017,997,990,1013,1033,991,1009,1013,1003,1009,1016,994,1047,1009,1016,1008,1007,1001,1018,1019,1020,1009,1018,982,1014,1051,1044,1014,1025,1028,1008,1028,1007,1019,1024,1018,1020,999,1041,987,1029,973,995,1017,1022,1026,1034,1001,1002,1001,1014,1023,1017,1006,1018,1008,1011,984,1003,1017,1023,1008,1025,1018,997,1020,1013,1010,1033,1018,1019,1035,1007,1030,915,905,911,936,902,906,910,936,917,928,920,901,908,908,943,909,906,890,922,911,920,915,922,930,907,922,911,925,926,747,753,729,753,732,740,717,752,733,735,734,741,740,751,747,750,760,709,729,752,1040,1058,1065,1048,1050,1050,1015,1035,1045,1059,1046,1023,1031,1048,1003,1031,1007,1034,1035,763,789,800,784,752,781,790,787,778,805,814,774,773,782,738,785,771,791,815,813,821,785,769,774,779,765,880,858,880,866,873,909,848,880,898,879,876,901,890,872,887,874,877,883,914,882,866,884,894,928,863,916,876,857,1082,1074,1060,1065,1067,1090,1058,1087,1066,1062,1087,1062,1123,1075,1054,1059,1081,1069,1069,1059,1053,1075,960,999,942,997,978,958,998,971,999,944,975,964,980,977,978,972,969,960,976,952,980,952,959,990,959,972,748,748,753,716,723,744,733,732,731,761,754,719,741,743,715,726,711,733,734,719,741,740,716,741,736,738,679,985,980,995,979,980,982,978,998,1003,984,945,995,995,961,958,998,994,967,943,973,997,990,1018,986,1014,998,1005,824,802,799,783,774,780,814,796,799,788,803,804,817,811,796,848,811,799,842,768,760,794,741,757,781,946,953,935,952,955,970,940,915,957,971,971,934,958,941,940,941,944,978,966,980,972,948,948,945,965,966,706,717,690,737,711,724,697,710,689,712,700,697,724,708,700,704,682,743,687,730,699,685,686,711,690,1076,1108,1082,1036,1058,1112,1088,1053,1094,1060,1037,1087,1090,1085,1075,1067,1086,1007,1072,1075,1127,1045,1067,1089,1085,1083,1108,1127,1105,1068,1085,1106,1090,974,1014,995,949,916,1018,994,966,982,943,963,940,1013,1004,992,1000,998,980,964,968,1007,979,969,964,939,942,639,640,613,624,670,623,629,643,653,612,655,692,633,607,628,605,613,631,637,654,664,612,602,619,598,609,623,638,649,610,634,614,633,634,623,632,600,619,673,629,627,635,630,655,640,616,618,622,627,625,639,606,618,590,621,621,629,657,637,700,715,714,723,715,722,721,712,711,705,710,697,711,714,701,717,719,699,730,716,690,707,722,701,687,726,733,1130,1073,1098,1114,1133,1093,1071,1089,1089,1074,1075,1119,1101,1056,1163,1138,1098,1144,1096,1123,1134,1107,920,918,921,927,917,937,935,937,912,925,917,959,934,929,942,915,935,945,928,947,941,922,946,923,804,843,857,842,836,833,848,804,844,867,825,825,802,811,816,819,818,816,832,833,846,820,815,821,654,625,614,649,670,667,670,667,638,650,633,630,667,652,642,649,650,651,650,668,647,640,682,682,629,652,668,603,582,611,573,593,591,574,560,577,589,592,585,583,596,583,574,588,590,579,588,603,592,575,582,589,573,567,574,1113,1162,1122,1225,1112,1191,1151,1114,1171,1145,1122,1084,1213,1146,1147,1140,1197,1193,1094,1154,1147,1124,1134,1148,1173,1108,1084,1053,1023,1020,1074,1029,1002,1047,1041,1035,1051,1058,1035,1034,1039,1082,1043,1023,1069,1060,1058,1012,997,1062,779,789,755,698,787,751,774,774,789,769,761,814,777,759,748,759,765,785,784,745,750,777,754,782,754,766,655,654,598,635,637,662,652,666,650,668,644,666,635,667,672,643,652,645,640,640,669,637,947,897,894,872,880,907,900,875,907,907,929,907,898,902,899,866,900,903,877,913,946,935,936,882,920,905,773,761,786,749,754,788,774,741,753,770,763,771,780,725,756,744,764,750,756,756,756,726,924,916,933,936,909,922,917,902,924,924,933,963,924,939,949,953,944,923,934,928,783,773,725,751,743,746,795,780,761,765,770,709,739,763,757,780,767,763,739,746,773,779,779,762,754,748,751,742,762,772,951,947,952,917,942,932,958,937,963,927,922,941,958,951,975,952,937,953,939,938,932,930,900,977,958,1013,1021,1041,1064,1059,1064,1025,1043,1054,1042,1040,1014,1031,1050,1047,1072,1019,1043,1050,1061,1045,1056,1021,1028,1041,1034,1042,1070,1050,1062,1045,1050,1061,1060,1060,1073,1051,1057,1059,1061,1069,1030,1050,1065,1050,1040,1068,1075,1041,898,896,912,948,922,909,908,943,926,928,907,940,970,910,954,911,944,926,939,930,912,931,904,928,989,961,982,1007,957,973,963,983,1013,970,955,1003,1009,957,971,973,974,1012,1001,985,941,995,1007,966,1037,1032,1015,1016,983,1022,995,1012,1020,980,1030,1017,1020,1007,1012,995,1003,1002,1006,1000,1021,1030,1007,1043,989,1006,924,921,891,915,921,910,909,912,916,904,917,924,918,924,931,925,909,920,900,912,907,887,925,1246,1185,1220,1232,1164,1238,1165,1197,1232,1178,1250,1248,1209,1182,1200,1156,1207,1174,1214,1209,1167,1186,1219,1037,1017,1032,1013,1028,1015,1047,1022,1044,1019,1029,1052,1033,1017,1020,1018,1006,1030,1050,1058,1013,1001,1048,1029,1030,1064,695,658,664,736,694,682,727,716,722,705,709,703,707,679,710,649,715,705,717,749,679,764,695,722,681,720,685,782,735,721,876,892,891,868,872,866,866,848,857,873,878,860,900,849,860,921,900,888,896,882,854,887,868,873,895,703,666,692,695,719,727,695,694,689,686,673,698,700,694,697,689,697,694,690,708,725,685,683,709,669,697,704,659,656,662,676,663,657,647,657,660,642,658,658,641,680,674,669,642,637,673,675,665,654,1093,1129,1061,1128,1106,1078,1074,1089,1106,1095,1120,1102,1129,1044,1106,1081,1090,1119,1090,1073,1099,1059,1105,1075,1061,1123,1072,1108,1071,1091,1101,1097,1100,851,890,875,882,865,874,865,859,855,856,859,894,894,857,876,875,882,896,890,898,880,848,843,884,645,664,655,668,714,659,697,695,645,682,697,685,662,686,653,693,676,677,693,693,669,648,646,673,693,674,600,596,637,602,626,614,615,625,608,594,616,602,620,593,612,619,602,621,622,606,628,618,633,626,605,609,597,619,610,632,611,630,998,945,932,949,948,969,946,950,942,944,968,930,931,968,983,942,1019,976,972,962,952,958,947,941,967,944,996,969,974,948,774,740,765,713,719,734,734,790,744,751,770,760,757,730,734,724,740,728,713,742,739,743,751,760,731,743,743,760,761,1076,1064,1094,1063,1109,1106,1068,1074,1114,1104,1092,1094,1073,1069,1065,1078,1086,1109,1092,1129,916,917,955,910,932,950,963,889,971,899,944,977,912,942,954,900,936,927,943,932,939,918,918,879,698,694,687,678,659,665,633,660,639,653,644,693,654,627,682,658,656,651,664,642,654,656,675,663,666,629,673,667,673,662,648,641,674,686,667,654,659,664,681,646,654,667,670,647,658,657,650,663,646,657,653,658,660,664,645,655,676,658,646,652,639,646,635,662,643,644,641,651,661,646,661,635,646,647,648,645,656,644,632,655,643,659,649,654,652,664,659,648,641,650,655,627,648,646,633,627,635,628,632,624,611,639,621,623,630,626,644,639,630,618,626,621,629,629,626,620,632,611,622,632,651,668,663,662,657,668,670,696,680,667,671,684,667,659,664,654,649,651,661,679,675,693,667,652,645,667,668,650,641,672,1051,1012,1026,1009,1037,1017,1019,996,1028,1015,1036,1033,1046,1005,1021,990,1001,1018,1030,759,818,808,804,777,819,814,803,776,791,823,793,799,787,833,795,782,821,831,800,796,791,750,823,778,824,793,907,908,918,930,928,897,905,899,889,903,901,906,918,914,909,901,909,895,905,902,898,888,903,891,917,915,893,713,711,729,741,718,720,734,737,709,742,711,757,713,737,744,748,755,759,748,755,731,727,842,805,816,799,779,789,827,799,796,808,811,823,809,804,823,764,778,800,802,812,803,815,802,812,764,816,788,812,796,800,802,792,702,741,733,744,723,711,725,731,697,722,737,741,730,733,732,728,732,738,720,741,739,736,726,706,720,727,737,738,702,678,708,688,684,689,665,698,688,700,688,689,718,699,670,666,710,706,691,682,697,696,674,701,677,694,699,692,966,974,978,982,959,984,966,938,965,952,945,925,965,956,958,964,933,958,913,940,889,960,939,928,941,972,931,826,798,810,829,829,813,808,843,804,825,792,827,782,829,812,808,821,805,812,801,800,818,803,1034,1040,1044,1043,1050,1066,1063,1022,1047,1064,1017,1051,1000,1028,1022,1061,1034,1047,1067,1024,1051,1025,1064,956,982,957,976,948,986,934,951,982,973,966,955,980,956,967,960,966,975,979,973,953,978,960,943,962,951,969,778,792,797,801,795,786,799,798,799,791,767,783,791,804,808,790,785,798,807,799,807,793,788,804,793,802,804,801,770,794,691,651,664,666,688,684,674,662,680,687,693,671,694,657,712,675,666,673,699,655,673,671,667,686,676,683,591,610,585,577,596,595,591,574,603,600,577,594,614,590,578,610,590,576,580,642,649,630,649,655,650,629,649,629,659,634,656,649,666,655,646,647,638,627,614,644,633,655,641,637,636,648,641,788,780,775,793,795,792,773,795,770,746,796,776,811,764,779,788,805,765,776,789,795,799,778,776,802,690,691,690,685,690,690,696,680,704,692,691,706,701,695,694,700,701,704,710,699,681,694,688,695,698,686,691,691,697,680,693,878,846,835,909,873,854,817,846,833,832,840,827,892,877,890,865,870,869,892,871,894,898,858,847,841,838,921,850,810,895,873,657,670,645,691,655,686,683,695,678,668,693,680,678,662,673,700,675,659,686,692,694,690,706,599,626,621,621,609,591,608,607,637,594,608,628,594,630,618,627,623,599,627,609,593,631,619,608,614,1317,1277,1315,1339,1324,1266,1296,1364,1265,1287,1167,1328,1250,1257,1243,1360,1331,1255,1290,1368,1100,1067,1106,1074,1096,1064,1126,1114,1052,1115,1153,1072,1107,1102,1117,1135,1090,1091,1106,1166,728,696,723,754,729,699,772,732,723,728,678,726,723,729,728,751,696,710,725,756,722,735,734,689,1133,1077,1143,1121,1107,1106,1092,1113,1064,1098,1122,1060,1072,1102,1099,1096,1103,1050,1092,1130,1095,1097,1095,1090,1095,1140,1134,1097,1091,1055,1010,1022,1013,1030,1001,997,1008,1018,1049,1009,1018,1004,1027,1024,1029,977,1024,1024,1019,999,1025,1026,1015,1033,887,869,855,909,882,852,882,851,871,909,869,864,907,673,664,697,679,650,701,661,686,691,651,674,671,684,651,657,656,661,684,687,653,706,685,672,653,706,663,669,664,679,659,678,669,643,655,660,642,667,669,664,656,667,663,671,675,650,1012,1042,1015,1065,1025,1074,1030,1026,997,1033,1022,1037,1030,1041,1026,1057,1033,1018,998,999,1046,1029,1025,1007,1012,857,888,872,872,850,857,863,853,858,874,881,855,851,842,884,851,863,852,868,845,868,881,895,867,715,729,746,738,742,719,737,725,736,734,736,766,751,721,708,755,739,751,720,722,734,759,741,733,744,968,952,949,962,957,993,925,940,960,971,940,972,952,955,967,932,956,983,973,877,850,847,837,861,858,843,837,864,846,845,854,854,849,846,838,818,848,845,838,863,834,844,866,850,845,844,836,798,783,783,815,764,765,793,788,779,772,807,798,808,783,798,797,793,795,766,789,772,803,1011,1035,1025,1022,1018,1005,1017,1022,1004,998,998,1008,1018,1024,1014,1036,1032,1059,1038,1041,1044,1012,1012,1024,1042,1056,1009,1026,1034,1011,1002,995,1011,1012,1021,1014,997,1020,998,1007,1017,1001,1001,1026,1017,973,1004,1003,1016,1001,1000,1001,1002,1024,990,993,984,921,904,916,919,899,920,924,931,934,926,896,919,898,919,910,910,897,909,895,913,902,890,896,920,908,902,909,889,911,901,893,907,904,906,918,913,876,885,919,686,705,659,702,676,693,677,680,670,694,700,696,684,670,693,658,694,661,603,625,600,602,596,599,608,611,589,602,583,605,604,606,602,613,603,612,599,592,590,590,584,608,590,661,655,647,648,659,657,661,643,661,649,651,653,669,645,665,654,658,665,665,668,655,652,652,644,656,679,660,657,667,663,678,665,670,697,667,672,660,670,693,683,663,681,686,667,674,663,669,654,656,684,664,677,660,653,668,672,671,671,658,672,671,657,682,679,657,669,687,658,691,694,687,693,674,678,689,686,689,697,672,704,693,681,675,684,696,681,689,687,661,699,669,658,703,679,677,694,683,680,675,677,684,686,1168,1090,1111,1070,1033,1087,1098,1114,1115,1119,1097,1075,1122,1105,1132,1111,1100,1128,1158,1073,1141,1129,1110,1080,1130,961,964,968,973,963,973,977,987,1011,981,1008,993,1015,1000,965,1006,1000,985,1004,1014,1036,652,683,661,681,661,661,655,677,665,666,648,692,679,702,643,680,686,666,695,674,674,697,676,678,671,666,940,981,977,964,960,971,1022,1004,1001,962,1003,946,970,958,981,977,944,968,932,981,986,946,969,988,979,985,957,990,977,980,985,978,974,997,1004,933,921,937,920,908,932,937,919,928,908,946,931,932,943,939,935,960,928,943,946,912,921,943,915,893,995,1020,1002,1024,955,1004,994,994,1006,1001,997,983,1013,1000,994,970,989,1010,1003,982,1001,998,1126,1142,1138,1127,1111,1115,1112,1117,1127,1122,1129,1133,1141,1119,1139,1123,1146,1137,1160,1143,1135,1122,1134,1144,995,978,952,983,983,996,982,979,989,958,958,971,962,976,955,964,976,971,974,948,988,963,966,673,655,666,706,681,667,660,715,703,692,707,727,707,666,686,691,703,723,716,666,696,722,688,684,685,671,684,680,685,664,669,665,657,679,660,671,675,655,666,683,673,664,652,685,653,672,670,649,676,656,672,679,672,634,667,661,667,656,667,665,652,660,684,660,741,743,718,732,737,765,758,726,733,731,736,731,718,777,725,756,714,743,737,750,721,756,738,733,733,756,933,954,951,967,977,951,956,958,936,977,971,967,995,991,959,1007,958,942,976,988,845,840,857,832,844,817,854,854,845,835,842,850,858,831,855,835,849,830,827,835,864,851,845,847,851,839,709,693,703,699,708,705,714,689,702,693,702,696,695,688,708,706,696,689,713,700,722,680,693,646,672,670,649,670,647,659,647,668,647,669,660,678,645,678,679,657,668,685,656,667,686,671,631,626,622,624,644,626,652,624,645,658,638,639,650,648,634,656,647,633,646,620,632,628,1064,1049,1069,1105,1105,1082,1070,1090,1119,1055,1116,1063,1080,1123,1067,1105,1075,1130,1078,1056,1021,1118,1075,1068,1060,1064,1064,1059,1057,1035,1046,1059,1078,1067,1073,1062,1049,1053,1071,1066,1052,1047,1060,1056,923,914,912,897,916,895,913,934,929,892,893,933,914,927,889,901,932,903,935,904,901,903,911,899,894,889,907,905,918,887,916,679,678,677,666,705,661,651,652,637,660,659,677,692,711,659,656,659,663,674,638,672,1047,979,1055,1005,1009,1019,981,1034,1001,1019,1013,997,1003,1023,1032,1014,996,1039,962,1022,1006,1012,993,1019,1016,992,995,1009,1012,1009,1009,1011,994,1019,1053,1025,1036,1032,1023,1062,1019,1035,1012,1044,1042,1025,1041,1035,1053,1031,1058,1054,1034,1038,1022,1055,1040,1004,1019,1049,1031,1038,907,892,907,894,925,902,907,908,947,923,925,899,915,917,896,920,883,892,915,906,957,925,938,926,1138,1152,1145,1136,1116,1146,1143,1158,1133,1122,1153,1145,1153,1169,1172,1172,1137,1172,1135,1127,1140,1169,1171,1028,1016,995,1006,997,1006,1020,998,999,1040,1014,1017,1020,1013,1022,992,1033,1009,1038,1007,1011,1012,1046,1024,1032,998,666,706,699,684,712,679,672,686,686,682,658,680,678,692,706,679,713,669,675,688,667,708,690,732,687,675,1089,1090,1047,1102,1079,1089,1071,1091,1094,1084,1083,1087,1079,1055,1096,1082,1050,1064,1060,1088,1120,1053,1104,1050,962,950,958,958,965,954,942,945,919,981,969,988,983,969,970,985,943,918,963,962,1039,1100,1092,1025,1095,1059,1107,1049,1065,1027,1078,1070,1067,1056,1103,1103,1043,1106,1052,1032,1165,1179,1152,1156,1155,1156,1180,1191,1138,1156,1161,1177,1161,1133,1162,1147,1147,1153,1142,1139,1146,1150,1189,1148,1181,1153,1152,1139,1164,1179,1036,1065,1087,1066,1059,1042,1048,1052,1029,1047,1046,1045,1056,1062,1036,1040,1034,1056,1038,1064,1023,1045,1047,1049,1095,715,715,721,694,687,739,729,757,726,716,744,713,706,723,721,735,720,748,754,702,716,701,695,692,725,739,718,652,647,639,637,612,639,646,632,658,622,666,617,659,654,653,615,676,639,644,664,662,614,637,670,662,683,651,645,644,852,828,856,831,846,886,850,851,861,857,853,856,845,853,863,838,874,816,836,818,821,806,867,827,721,708,706,720,727,722,728,711,714,713,691,707,708,705,716,734,724,693,723,729,720,701,738,680,705,722,702,720,655,669,657,660,667,670,659,647,652,676,654,659,666,663,669,660,664,641,651,662,672,752,748,780,753,792,750,750,730,768,763,771,764,755,739,770,747,766,771,768,736,768,736,729,744,732,726,726,700,730,737,723,727,722,731,719,722,737,728,737,722,732,735,731,699,704,723,719,741,733,994,997,981,1003,982,1014,960,1016,969,958,977,987,1007,1002,995,996,959,979,965,1001,930,967,979,1027,957,987,976,1043,1017,1010,1034,1025,999,1010,1024,1035,1035,1021,1019,1045,1015,1009,1034,1011,1020,1044,1009,1021,1041,1035,1024,1047,1019,1038,1007,1018,1036,1043,1027,882,913,956,892,926,892,934,909,915,900,950,940,906,920,931,928,930,932,1130,1136,1173,1167,1154,1172,1161,1158,1143,1184,1146,1169,1155,1142,1167,1154,1163,1157,1140,1149,1154,1135,1154,1153,1147,1165,1066,1085,1072,1077,1082,1060,1074,1073,1098,1081,1085,1068,1092,1061,1074,1081,1056,1077,1071,1079,1076,1067,1110,893,908,894,913,903,891,894,914,902,877,903,910,902,893,900,882,914,909,1031,1048,1029,1046,1020,1042,1061,1025,1026,1016,1029,1016,1028,1040,1035,1037,1032,1034,1027,1040,1042,1069,1038,1023,1032,1041,1042,1007,1020,1049,1038,945,948,951,946,950,949,976,939,938,964,947,931,954,947,950,963,940,952,946,939,965,951,937,962,959,956,944,710,755,736,731,741,742,759,750,742,739,719,739,756,741,737,675,698,763,747,757,737,754,746,721,718,739,722,753,755,765,724,761,739,759,777,735,738,763,741,752,759,789,749,767,758,755,791,746,748,751,750,762,757,759,748,743,764,771,755,742,749,756,767,734,697,688,676,686,667,688,694,699,702,676,648,667,686,713,686,674,688,671,683,670,674,664,680,664,691,1097,1052,1093,1076,1091,1120,1043,1059,1093,1100,1095,1083,1059,1107,1102,1123,1128,1093,1059,1137,1104,1019,1055,1123,1076,1050,1083,959,990,942,966,978,949,956,953,987,959,936,945,959,977,943,1003,966,962,983,942,1001,971,966,797,782,795,820,833,784,791,783,815,797,809,821,807,800,810,780,1076,1122,1100,1107,1103,1118,1116,1099,1108,1119,1124,1100,1092,1091,1096,1128,1078,1098,1113,1104,1114,1081,1089,1100,1091,1099,1086,1098,1097,1106,993,998,992,988,1000,942,975,1010,981,979,978,986,987,983,992,957,993,1023,969,1009,991,1007,927,929,927,883,906,911,891,895,928,907,898,918,905,920,901,1029,1026,1006,1005,1021,1034,1021,1014,1023,999,1005,1033,1030,1025,1013,1016,1021,1009,1010,1031,1039,1020,1014,1039,1035,1050,1031,1029,1055,1026,1050,1041,1039,1034,1016,1017,1057,1049,1032,1024,1036,1045,1058,1033,1043,1039,1026,909,918,912,876,898,895,887,876,876,900,896,901,920,898,929,915,904,909,897,939,874,918,887,921,863,901,902,1032,1023,1024,1038,1050,1014,1020,1036,1015,1024,1020,1027,1034,1025,1034,1025,1023,1052,1026,1039,1010,930,946,943,873,893,929,929,910,931,940,920,915,917,901,933,940,901,902,914,953,915,623,634,621,586,638,615,597,589,600,643,618,607,618,630,582,598,628,607,596,621,608,604,615,611,661,651,626,653,648,661,632,650,663,658,648,656,657,645,674,648,670,676,664,655,657,646,1071,1103,1071,1086,1091,1082,1038,1112,1050,1071,1117,1094,1104,1089,1062,1110,1125,1054,1128,1090,1120,1073,1116,1029,1109,1155,1080,1092,1114,1098,1069,1116,1120,1073,1108,1127,1115,1108,1091,1101,1094,1113,1097,1115,1122,1082,1125,1080,1122,1084,1108,967,961,930,980,936,945,969,971,927,944,955,954,931,970,924,928,972,941,983,971,971,941,943,945,956,949,979,933,1016,1036,1035,1026,1040,1036,1033,1052,1061,1047,1066,1040,884,910,925,901,908,903,910,931,947,947,911,931,901,923,920,935,922,642,671,636,631,683,650,696,673,651,667,643,668,649,664,668,665,670,650,653,659,643,668,665,1016,1068,1052,1043,1053,1064,1051,1022,1047,993,995,1025,1037,1053,1077,1042,1056,1041,1064,1063,1047,757,760,756,795,752,786,751,774,758,727,788,792,748,725,767,811,743,720,776,758,767,728,772,751,774,752,770,1234,1248,1237,1223,1182,1166,1226,1200,1268,1259,1161,1202,1200,1232,1198,1197,1230,1193,1199,1183,1202,1223,1029,1011,1060,1025,1043,1034,989,1025,1001,1031,1024,1013,998,990,1037,1020,1047,1002,1006,1024,978,1042,852,903,874,887,882,885,894,866,861,877,868,874,852,877,856,858,867,906,872,876,878,891,881,878,859,898,868,1031,1036,1045,1067,1049,1031,1031,1047,1015,1065,1051,1007,1011,1049,1029,1024,1032,1020,1062,1043,1011,1035,1029,1017,1085,1050,1057,958,949,975,973,976,979,973,975,955,959,972,977,963,954,950,997,972,976,989,985,969,961,983,674,661,681,643,643,645,671,672,637,640,651,693,682,678,653,667,644,625,625,665,650,619,662,639,633,630,630,634,655,631,627,632,626,630,638,638,635,643,648,630,654,627,626,609,625,656,633,617,630,621,634,625,622,632,638,625,915,914,919,968,924,946,943,928,916,959,923,909,919,937,963,934,914,926,926,962,913,929,894,913,698,684,712,682,718,730,681,682,700,723,722,707,721,699,729,693,713,727,693,710,705,672,685,671,682,671,677,659,670,701,663,692,682,684,688,710,682,694,680,673,697,680,694,661,703,682,677,694,665,1203,1171,1229,1176,1239,1176,1213,1180,1162,1250,1216,1230,1205,1212,1190,1199,1202,1251,1261,1226,1211,1084,1024,1028,1063,1075,1031,1030,1038,1066,1051,1040,1049,1036,1058,1070,1044,1044,1050,1015,1027,1067,1096,1058,1048,1068,1038,1022,1014,1022,1070,631,622,615,618,602,673,688,617,682,652,648,631,663,642,645,649,646,665,673,652,628,647,676,680,669,655,642,634,658,619,617,636,612,604,612,602,634,627,643,640,627,1016,1015,999,988,1005,1046,1064,1035,1064,1009,1030,1015,1005,1016,1038,997,1011,985,1028,996,985,999,985,979,971,977,968,993,967,966,973,1004,1006,964,985,972,970,995,966,979,968,987,989,979,975,988,938,930,935,932,933,942,937,954,933,976,950,945,921,941,932,936,931,922,938,933,914,956,946,948,927,936,919,955,944,925,943,923,942,964,938,941,946,943,954,927,933,935,910,936,940,951,960,950,923,940,934,885,854,858,843,871,868,841,853,840,887,821,828,818,848,855,829,849,828,856,865,864,847,824,859,877,838,857,851,846,639,668,656,646,648,660,671,631,654,662,671,635,610,660,658,674,651,660,655,661,657,659,650,907,923,927,932,970,959,961,942,946,1011,953,930,927,922,952,968,945,978,950,925,948,974,969,951,957,908,937,958,705,737,691,697,703,685,694,742,755,713,704,691,699,690,732,729,706,737,714,726,636,623,627,635,653,624,626,623,638,614,611,643,623,637,621,626,631,618,644,672,882,880,897,895,921,912,911,903,874,880,893,898,917,901,918,905,865,914,897,880,924,880,873,902,917,914,714,749,771,777,749,785,774,760,768,756,760,794,752,767,770,729,776,755,761,741,760,737,765,758,772,773,653,689,666,656,679,665,629,674,661,666,663,684,656,659,670,677,664,682,660,669,677,667,950,961,960,957,943,969,971,968,914,974,968,942,938,956,990,961,965,979,933,1007,990,988,963,1009,971,937,706,744,714,712,739,738,744,731,749,717,705,754,730,701,741,736,708,730,739,729,740,728,730,696,981,981,1037,1049,989,1036,1005,1036,997,1003,1003,991,1045,1009,1012,1012,1037,1076,1023,1018,1020,1027,1022,1034,1035,1026,1029,1049,1037,1025,1031,1029,1038,1051,1052,1053,1054,1042,1048,1039,1032,1041,1033,1063,1046,976,1008,996,1010,993,1005,1003,997,992,979,998,982,997,1021,1001,979,993,999,1005,981,1009,982,1017,1007,1069,1066,1036,1070,1072,1070,1048,1050,1046,1054,1048,1063,1020,1007,1046,1064,1058,1100,1053,1066,1005,1072,1049,1049,1065,967,984,932,958,951,954,940,978,944,954,975,968,986,959,964,961,958,981,961,964,981,985,972,945,955,963,947,692,721,721,672,682,688,699,667,709,700,704,730,715,678,683,680,687,694,700,700,700,703,684,731,688,693,686,695,700,731,692,691,694,714,723,711,696,681,690,684,731,698,716,695,686,677,716,704,721,699,704,731,632,660,650,676,667,684,660,659,625,665,657,662,679,653,663,661,664,660,636,653,633,678,1112,1113,1112,1155,1132,1120,1136,1160,1166,1126,1209,1148,1151,1154,1171,1166,1127,1185,1141,1107,1173,1145,1128,1120,1168,921,949,971,936,941,922,879,969,955,929,927,927,960,937,939,920,944,936,945,920,887,931,942,798,776,810,800,796,825,803,788,830,845,821,821,807,806,812,819,795,832,835,814,805,813,817,818,837,818,786,803,777,781,759,788,789,780,777,786,768,803,812,790,794,792,778,827,750,783,1166,1160,1138,1163,1197,1150,1164,1169,1162,1121,1148,1139,1175,1167,1146,1137,1163,1156,1197,1176,1116,1142,1165,1152,1110,1147,943,903,917,938,972,983,939,914,950,925,926,940,923,883,907,888,923,890,901,917,652,648,681,706,682,671,664,676,669,658,695,685,634,686,656,684,708,669,703,650,673,669,668,931,1014,1001,979,981,959,985,953,975,964,973,990,967,956,990,965,960,982,995,976,980,943,967,970,988,972,954,1001,845,842,833,844,872,844,829,837,838,867,842,880,836,834,847,884,844,869,879,848,728,713,718,704,724,713,713,718,725,702,718,688,694,686,707,722,702,703,722,700,695,700,684,749,698,716,712,833,836,834,815,798,821,842,811,810,813,819,836,825,829,832,830,809,826,802,806,802,840,826,830,831,793,810,804,699,728,706,702,707,713,696,687,728,705,703,725,721,735,716,699,714,675,690,723,671,674,663,680,688,660,654,661,650,671,657,648,653,629,649,672,661,663,659,686,669,692,692,691,683,691,696,690,687,707,696,682,699,686,708,699,698,697,693,689,703,696,689,692,696,687,1072,1078,1071,1073,1086,1088,1039,1101,1045,1056,1054,1049,1050,1063,1081,1078,946,965,965,937,956,965,965,979,946,981,978,936,934,975,945,938,953,982,929,953,937,940,961,951,939,966,962,953,709,697,684,689,718,668,685,705,689,716,681,711,691,675,693,661,677,712,692,695,669,699,678,717,719,1139,1177,1126,1123,1150,1155,1169,1085,1163,1101,1138,1093,1161,1206,1118,1201,1087,1121,1108,1088,1026,1063,1037,1025,1048,1022,1025,1027,1032,1000,1020,1053,1005,1046,1053,1043,1045,1047,1066,1036,1036,1044,1041,1011,1018,1037,1031,1005,1012,678,725,681,688,677,689,719,697,697,714,712,679,785,708,668,665,701,710,714,761,716,701,675,950,956,960,948,950,978,951,946,961,953,960,990,933,961,961,983,970,951,959,1009,978,959,978,978,987,937,804,770,816,785,790,804,787,809,801,795,778,791,816,810,790,771,815,763,794,817,787,793,781,804,792,822,992,975,992,958,986,960,959,986,962,974,973,978,944,982,992,964,950,965,976,984,944,1000,950,956,980,946,993,873,880,907,883,888,861,898,893,859,870,875,894,875,876,888,868,886,875,901,892,906,902,881,895,889,1055,1049,1049,1056,1041,1061,1060,1059,1046,1046,1051,1051,1023,1037,1071,1035,1056,1045,1029,1062,1070,1040,1035,1057,1047,1051,1048,1052,1043,1074,1042,1069,1053,1052,1043,1073,1023,1042,1055,1045,1048,1044,1052,1061,1042,1055,1065,1067,1030,1058,1041,1030,1039,1081,1041,1048,1056,1056,1053,1042,1037,867,889,903,883,856,868,859,888,913,923,879,909,884,908,906,893,917,884,881,859,902,905,1014,1045,1030,1026,971,987,998,1040,1003,1002,996,978,960,1025,983,997,967,983,989,995,974,1015,1027,974,961,959,1036,996,1000,998,995,979,989,997,995,995,1002,987,998,979,996,1011,990,979,961,990,976,1002,985,1009,1004,990,995,1000,1037,1035,1026,1041,1016,1020,1026,1035,1028,1016,1023,1007,1016,1020,1017,1036,1004,1026,1019,1019,1024,1030,1016,1028,1030,889,888,890,892,868,904,914,897,883,893,880,906,894,900,884,910,892,877,887,869,861,911,909,917,916,930,895,902,706,730,724,688,703,686,698,695,704,705,710,682,703,720,703,707,697,700,677,706,701,674,701,1175,1084,1114,1123,1145,1154,1099,1084,1051,1108,1101,1110,1077,1111,1076,1092,1104,1069,1093,1098,1080,1110,1113,1055,1086,1089,1133,1123,1007,937,976,976,956,980,982,998,982,953,942,972,973,982,955,968,957,985,940,960,910,992,973,970,966,985,955,674,680,678,648,683,684,722,682,705,674,701,668,688,707,673,658,661,636,671,687,676,715,664,617,616,611,602,598,628,603,592,616,641,601,611,614,609,617,617,620,634,617,609,620,607,623,653,647,650,630,642,620,654,649,639,619,623,634,659,641,631,668,632,608,632,626,632,618,628,1116,1139,1121,1066,1046,1119,1049,1121,1096,1099,1096,1106,1110,1123,1121,1093,1088,1067,1062,1128,1084,1106,1143,1157,1094,1116,1132,1109,1076,1060,1024,1066,1058,1077,1047,1072,1045,1042,1032,1037,1045,1045,1042,1060,1058,1039,1031,1059,1054,1067,1020,1039,1060,1039,878,903,877,898,880,884,901,899,895,887,889,895,843,849,875,959,883,905,896,872,903,888,879,930,879,876,920,970,936,961,962,955,976,983,952,933,963,963,990,958,937,999,973,972,983,953,983,983,935,970,991,929,968,943,932,905,920,914,932,934,908,939,944,917,938,924,917,928,925,930,932,927,934,932,921,919,929,695,716,732,685,705,718,708,713,688,694,724,721,729,700,759,716,736,721,737,727,708,678,689,737,706,716,732,680,672,681,662,683,676,679,657,675,672,693,666,679,665,684,690,661,690,673,697,684,716,678,680,692,661,688,689,666,683,694,707,1167,1108,1180,1200,1130,1113,1149,1155,1118,1161,1169,1102,1182,1194,1131,1148,1146,1152,1105,1076,1032,1015,1022,1069,1043,1031,1029,1067,1037,1005,1037,1002,1028,1017,1017,978,1030,1023,1027,1017,1024,1019,1043,1018,1023,1003,883,888,896,883,886,891,903,877,876,915,867,893,906,882,898,921,891,860,901,879,887,880,896,893,905,889,855,856,855,856,843,852,850,845,855,864,858,859,867,843,860,838,836,843,844,870,836,856,843,863,837,831,712,712,730,732,699,696,716,725,721,715,722,711,715,716,719,714,720,723,722,714,711,744,711,719,700,702,701,716,749,901,948,913,917,900,947,922,946,908,924,916,937,921,927,942,932,912,912,932,905,901,888,901,895,936,965,914,894,686,676,688,697,671,700,688,741,686,672,698,697,704,710,721,704,680,726,673,697,707,697,691,695,721,693,678,708,724,572,592,596,591,595,616,566,589,581,589,585,587,580,595,605,583,579,596,609,584,600,596,577,582,593,598,579,586,586,635,635,633,616,646,625,631,622,621,623,624,640,630,631,623,638,635,625,631,641,620,622,644,630,625,647,637,644,669,675,640,640,643,674,638,665,629,635,685,645,668,638,620,660,661,613,660,648,652,649,678,657,660,1046,1080,1069,1034,1078,1024,989,1005,1035,1048,1051,1099,1103,1032,1061,1101,1017,1073,1092,1035,1074,1048,1042,1067,1055,1058,1083,1028,1084,1072,1051,1033,1046,1035,1059,1036,1034,1034,1013,1057,1053,1046,1055,1035,1023,1028,1032,1036,1043,1053,1038,1046,1026,1031,1022,1019,1041,1025,1019,879,902,916,881,887,917,917,893,885,930,905,885,872,897,874,879,900,888,901,901,901,903,885,891,893,635,665,692,654,646,703,676,660,676,631,649,698,665,697,656,685,704,668,710,681,678,740,658,810,801,798,775,785,769,800,779,791,743,793,786,812,775,775,811,809,786,804,803,810,787,779,684,694,712,696,704,674,685,714,691,711,703,692,703,710,704,700,697,706,687,703,727,680,676,677,670,669,677,695,665,675,678,690,694,673,681,667,694,682,658,669,681,669,679,673,743,727,737,739,751,750,744,706,753,766,724,757,726,734,737,725,736,731,763,712,731,739,740,1158,1096,1138,1122,1138,1112,1112,1119,1135,1163,1167,1125,1163,1107,1198,1091,1143,1106,1166,1172,1145,1110,1111,1109,1163,1030,1034,1025,1043,984,998,1002,983,1024,1014,1038,990,1026,1033,1015,1007,987,1024,982,1025,1027,1020,1021,996,1047,1026,1010,1007,1000,1012,710,677,718,697,703,671,699,721,652,706,670,672,703,664,662,702,685,667,689,698,666,704,646,701,959,909,876,937,873,918,902,876,926,929,900,898,907,925,894,901,899,921,881,895,914,934,898,941,963,1014,1003,1020,991,1024,1005,986,1019,975,994,995,1001,990,995,986,981,1010,1003,1012,994,1011,1001,984,1046,1044,1030,1049,1055,1021,1034,1026,1049,1071,1052,1037,1056,1043,1024,1037,1020,1044,1044,1046,1027,1027,1055,1049,1044,1043,1041,1032,1047,1052,1037,1033,1141,1159,1158,1145,1127,1140,1115,1141,1110,1137,1113,1126,1137,1143,1157,1138,1148,1148,1146,1130,1160,1160,860,918,888,866,907,904,859,877,907,894,874,910,924,853,891,895,834,815,902,886,909,883,897,679,672,659,663,641,667,654,671,654,653,629,678,662,682,668,666,652,655,650,654,654,659,642,650,681,882,928,959,924,943,961,918,912,930,937,959,940,951,959,931,932,928,939,897,939,902,936,945,916,965,950,668,690,718,713,684,716,703,671,735,721,729,709,717,737,699,712,714,679,685,699,715,753,721,676,706,714,726,706,710,686,577,581,579,582,573,581,576,582,603,578,584,590,566,585,585,574,589,587,587,548,592,588,599,599,606,613,593,594,600,581,590,618,598,623,609,583,601,591,613,619,608,595,599,605,643,639,641,625,637,646,638,619,628,625,638,625,627,637,618,639,648,643,606,626,623,629,651,625,610,643,622,621,1093,1132,1069,1162,1123,1114,1105,1131,1046,1136,1183,1075,1160,1135,1155,1136,1127,1155,1125,1142,1179,1114,992,1015,961,1001,985,975,977,1001,984,1002,1002,995,974,988,993,950,1005,972,999,639,737,679,699,707,722,713,719,702,719,666,675,667,764,715,709,696,677,733,728,709,689,707,697,689,696,800,852,846,867,864,839,853,849,856,830,806,873,849,846,851,888,862,817,859,844,839,863,852,863,863,842,854,868,835,817,842,815,809,816,836,815,840,829,817,814,853,811,822,838,821,835,809,825,821,827,838,829,833,833,839,837,836,842,828,834,832,828,831,838,843,818,829,841,836,838,835,833,848,851,835,816,699,665,670,687,685,678,704,664,674,679,691,697,684,690,694,680,674,681,688,711,702,674,721,696,704,1108,1097,1128,1061,1122,1063,1103,1097,1057,1040,1110,1111,1128,1084,1060,1117,1112,1087,1107,1044,1069,1062,1059,1102,1077,1121,1131,950,952,963,917,932,939,930,958,942,931,950,949,954,969,941,919,941,958,960,931,939,937,933,927,926,897,939,915,1099,1097,1092,1094,1082,1112,1089,1107,1099,1109,1109,1103,1090,1091,1092,1084,1107,1094,1094,1089,1100,1110,1087,1096,1083,1100,1097,1063,1104,1084,1087,1005,999,1016,997,993,996,986,1009,1011,1010,1004,1016,982,980,985,1007,1001,995,1021,995,969,1006,987,973,991,884,885,891,876,893,876,855,888,883,892,884,894,895,862,897,866,882,893,894,879,872,869,871,831,846,845,840,861,857,858,843,866,833,867,860,842,866,842,864,850,860,862,842,838,858,693,686,711,681,708,713,703,710,690,681,693,719,698,722,702,690,702,699,688,707,688,695,704,702,695,1185,1241,1158,1158,1182,1160,1094,1186,1185,1208,1194,1198,1131,1204,1200,1233,1240,1181,1225,1179,1141,1160,1197,1171,1170,1158,1210,969,990,965,989,1027,979,1000,977,989,972,997,1025,976,917,986,1003,1016,962,950,953,994,662,611,608,618,642,579,590,601,590,647,638,676,621,578,627,643,664,597,584,620,625,643,642,582,612,614,623,634,570,638,691,719,673,710,705,689,693,706,684,724,712,703,706,685,715,702,707,700,705,697,703,738,709,696,719,698,716,707,692,702,705,708,694,704,712,696,704,715,713,669,709,705,709,708,690,693,697,709,688,713,718,708,705,695,699,1060,1065,1079,1054,1043,1071,1063,1047,1078,1065,1060,1018,1007,1071,1042,1063,1068,1036,1058,1068,1066,1048,1060,1027,1030,1053,1067,1056,996,994,995,1001,1012,997,968,1001,997,1011,1003,981,989,1002,998,1008,988,984,1007,1005,1032,1008,1010,1001,972,1009,997,1001,978,1000,974,1007,993,1009,1013,1012,999,999,984,999,1007,1001,994,1009,1005,1021,989,1005,992,1006,977,1007,980,976,1006,984,876,890,856,879,878,879,883,869,883,880,875,864,877,881,894,894,886,883,892,861,866,875,735,718,699,714,728,717,744,715,737,743,702,718,700,727,708,721,734,717,709,733,700,723,736,704,710,695,913,889,871,922,911,863,890,861,898,906,931,901,910,903,934,917,870,895,885,881,892,901,877,884,930,804,856,839,826,821,846,832,841,862,825,851,828,830,828,831,825,702,679,685,712,680,706,700,725,709,693,675,694,697,707,681,700,701,712,681,705,690,700,694,734,706,690,873,858,829,863,850,867,849,887,857,849,869,851,889,835,826,853,869,890,841,883,858,883,867,885,689,655,664,707,679,679,703,627,652,666,664,680,649,678,710,669,685,691,665,683,689,663,675,689,677,690,601,610,611,636,631,598,608,627,620,639,625,615,619,606,609,603,641,627,621,642,636,1198,1191,1233,1161,1125,1291,1180,1154,1296,1216,1209,1217,1165,1270,1129,1210,1174,1200,1214,1095,1163,1182,1233,1132,1122,1200,1143,1188,1153,1262,1273,1227,1126,1000,990,950,971,984,971,1007,1005,1004,972,1019,994,998,1000,1005,1034,1001,978,1020,986,1041,946,1022,944,989,978,672,676,652,654,646,665,670,646,665,670,718,671,653,674,637,621,664,1116,1108,1140,1128,1096,1099,1074,1142,1075,1075,1111,1129,1102,1078,1094,1082,1100,1104,1111,1054,1126,1116,1120,1127,1130,1111,1116,1110,914,892,949,936,972,914,955,948,951,926,937,952,927,944,901,950,920,894,933,937,943,929,933,945,943,951,937,942,931,747,725,725,762,704,736,704,705,752,745,735,722,726,717,753,704,714,729,722,728,726,762,781,747,737,745,723,704,962,966,950,963,937,943,960,974,932,946,988,974,977,948,930,962,981,952,957,944,986,958,720,755,778,762,778,767,758,747,774,755,729,776,763,745,761,780,746,734,778,735,747,756,766,754,901,869,888,874,877,848,890,913,890,861,896,891,867,885,885,885,893,874,881,883,887,866,874,867,877,902,862,1027,1026,1021,1005,1032,1030,1019,1042,1006,1024,1041,1014,1020,1012,1023,1022,1040,1023,1026,1020,1023,1023,1007,1013,1021,1025,1017,997,998,1022,1030,1002,1011,1032,1011,998,1015,1020,1025,1010,886,873,895,929,897,901,890,919,860,914,883,914,904,889,871,891,893,860,895,908,903,885,680,688,673,692,676,678,689,708,684,675,688,672,693,657,678,641,693,696,681,691,677,698,1077,1126,1095,1048,1040,1100,1081,1075,1104,1094,1120,1108,1091,1064,1113,1101,1056,1099,1090,1076,1056,1069,1110,1132,1137,1069,1073,968,959,952,995,1015,998,1020,1012,1007,1021,991,1003,965,1014,964,979,992,969,990,646,626,623,653,604,633,643,676,616,636,664,662,658,627,650,646,651,641,651,643,647,647,656,678,635,638,675,628,652,645,640,666,625,652,610,651,613,664,614,630,634,662,658,637,656,664,616,636,645,677,659,646,686,682,689,684,690,686,700,686,723,695,698,708,685,683,691,703,692,687,701,688,702,682,700,709,701,745,712,711,730,716,716,696,736,743,712,689,713,1075,1065,1067,1065,1094,1056,1018,1041,1100,1059,1106,1078,1060,1040,1064,1059,1014,1086,1087,1103,1059,1062,1082,1020,1050,1076,1024,1028,1056,1046,1061,1077,1097,1063,1075,1083,1076,1089,1067,1065,1063,1082,1099,1082,1079,1077,1085,1056,1030,1064,1066,1081,1088,1048,1060,1087,1094,940,946,934,916,930,940,994,966,917,921,927,957,945,954,960,919,915,935,924,893,961,952,951,899,551,603,597,607,605,554,605,567,581,607,577,595,543,597,584,596,584,629,608,559,561,581,598,592,543,622,587,603,627,633,645,616,636,615,626,608,604,616,624,592,602,643,610,629,613,641,643,626,597,615,627,607,615,610,686,706,723,689,711,688,698,692,712,687,710,708,712,694,689,678,701,714,675,812,793,806,779,792,795,830,808,809,788,814,807,811,795,817,806,806,791,808,818,825,823,813,805,820,843,703,721,710,704,698,698,704,715,723,717,685,699,706,708,711,705,879,942,905,954,946,929,951,912,952,953,908,924,922,931,943,919,924,919,956,959,917,887,951,755,742,726,735,733,707,750,719,738,736,718,753,731,743,722,749,737,766,711,914,917,898,927,917,917,893,899,925,915,937,899,925,885,911,913,918,910,905,925,905,909,898,731,698,697,706,711,703,706,701,717,704,675,715,701,683,718,716,694,716,689,704,727,706,684,688,712,701,1097,1035,1076,1087,1057,1086,1074,1068,1063,1061,1047,1052,1082,1069,1035,1058,1077,1036,1035,1061,1029,1031,1057,1059,1006,1012,1046,1048,1053,1038,1040,1015,1034,1020,1022,1018,1030,1059,1030,1030,1017,1028,1047,1057,1024,1023,1043,1020,1016,1028,1023,1012,1041,1039,1015,1029,1024,1039,1042,1029,1053,1014,1030,1033,1017,1033,928,945,949,914,940,930,921,926,917,919,923,928,948,938,916,903,939,918,937,939,953,670,667,647,649,655,666,637,644,665,649,620,664,671,654,637,653,627,1001,1009,973,1033,1033,996,978,978,1067,1020,1023,959,991,987,1018,998,990,1006,990,975,1020,1027,1003,1023,1058,1061,1073,1072,1078,1087,1069,1066,1082,1054,1083,1081,1055,1084,1078,1055,1069,1064,1072,1032,1102,1083,1070,1077,980,952,970,967,954,951,974,945,938,958,943,936,977,962,972,948,960,961,963,974,931,966,983,985,945,952,1028,1029,1055,1033,1015,1045,1040,1029,1001,1043,1052,1020,1033,1042,1037,1010,1011,1030,1014,1028,1039,1026,1022,1017,1032,1049,1022,1035,1027,1023,1008,1020,695,711,745,689,704,737,722,723,749,706,722,751,675,703,693,741,720,735,693,740,712,707,1081,1075,1057,1071,1077,1092,1061,1095,1080,1104,1081,1048,1087,1060,1030,1048,1078,1035,1072,1034,1039,1044,1086,1106,1120,1128,1094,1105,1117,1095,1091,1104,1093,1118,1132,1101,1119,1095,1107,1123,1104,1114,1120,925,898,906,933,911,931,907,924,944,923,930,924,908,908,919,940,938,933,951,917,938,935,922,898,905,943,913,951,927,914,659,661,685,680,695,692,654,679,670,670,689,672,659,658,654,661,703,678,655,650,662,690,690,654,675,676,666,682,648,1021,997,1037,995,1018,1023,1008,1007,1012,988,1023,987,1033,978,1012,993,1022,1015,982,976,1010,981,1001,993,1011,1004,1007,992,1006,994,985,992,1000,992,988,1034,985,999,1030,990,1005,973,989,992,961,993,1054,1070,1056,1068,1075,1027,1055,1030,1055,1079,1067,1058,1057,1070,1062,1047,1054,1059,1030,1048,1056,1071,1070,1077,924,932,947,936,951,912,930,944,974,923,926,936,924,945,966,940,967,940,915,923,938,676,660,638,637,660,643,651,680,691,656,667,688,654,684,663,651,656,646,676,680,681,671,649,642,640,687,684,665,654,1050,1108,1111,1094,1045,1065,1050,1086,1083,1067,1079,1091,1057,1070,1088,1102,1107,1099,1080,1059,1112,1072,1080,1105,1124,1047,1025,887,916,949,948,928,910,886,944,956,934,926,897,976,930,928,946,925,914,919,935,897,947,970,643,669,688,685,669,684,682,672,681,707,713,699,682,689,710,722,692,681,700,675,723,680,698,699,650,1163,1133,1163,1155,1124,1164,1178,1169,1127,1175,1115,1168,1138,1157,1149,1118,1139,1164,1121,1128,1110,1161,1150,1179,1162,1131,1142,1162,832,820,768,818,812,841,736,808,783,763,822,808,799,799,845,777,833,785,879,936,904,904,913,890,908,881,876,925,884,902,912,921,896,944,915,904,904,909,912,884,676,708,683,693,662,682,671,700,692,697,652,672,688,689,670,720,681,692,689,685,663,671,693,692,627,660,668,655,654,645,635,638,632,638,668,645,635,640,639,630,659,646,637,648,614,634,633,643,648,631,648,618,655,633,650,936,969,994,989,1017,987,995,973,959,978,963,1027,963,938,980,998,966,1000,933,1010,974,972,1026,1001,967,971,994,973,978,970,936,1056,1066,1058,1064,1043,1072,1025,1022,1065,1068,1071,1074,1055,1061,1074,1069,1070,1039,1006,1037,1097,1055,1080,1082,1075,1038,960,1024,1004,949,992,1007,984,957,1005,1001,976,951,948,992,951,963,991,968,988,1024,954,980,973,640,648,664,680,628,610,627,605,607,630,638,677,616,638,641,637,615,649,611,598,632,626,633,622,638,587,597,576,581,586,573,583,592,594,587,586,603,591,578,601,593,588,590,591,583,555,591,1152,1136,1083,1128,1150,1170,1007,1056,1116,1152,1070,1104,1130,1083,1077,1121,1128,1110,1103,1128,1159,1098,1122,1082,1093,1147,1151,1010,972,1020,999,1015,1041,1019,1021,1005,1030,1017,968,1061,1012,1005,1028,1018,982,1028,986,993,1001,1017,996,1007,1022,1019,1027,1022,990,735,723,735,799,741,735,777,728,752,747,784,759,755,731,746,765,747,745,694,745,721,720,758,731,733,681,691,712,698,689,708,695,686,709,677,688,685,686,701,674,673,680,691,966,921,930,897,947,917,910,948,921,982,908,905,926,939,954,926,926,953,930,960,943,954,942,744,734,750,724,738,783,728,742,754,759,767,754,760,737,768,760,749,723,731,778,749,758,768,747,768,755,660,654,671,664,688,682,649,665,677,673,638,683,689,647,645,664,634,671,665,675,670,667,661,654,655,671,671,662,635,650,648,636,656,651,647,656,647,647,648,634,648,652,649,641,635,641,649,642,663,641,1109,1177,1068,1115,1074,1155,1079,1145,1160,1131,1159,1132,1107,1118,1148,1168,1059,1178,1081,1126,1104,1126,1142,1123,1108,1180,1074,1137,1094,1110,1061,1060,1004,1011,1041,1053,1018,1023,980,996,996,1013,1021,1012,1066,1020,1027,1036,1026,1011,1027,980,1020,989,1047,1015,1029,1022,1027,989,1013,1030,672,675,673,622,646,676,687,676,671,713,639,690,680,666,684,610,649,597,636,634,610,601,629,634,606,613,631,618,626,621,643,599,620,623,603,626,610,620,625,618,620,610,622,657,648,630,646,627,647,659,630,642,634,634,638,639,658,631,647,664,1040,1075,1064,1022,1053,1064,1073,1076,1075,1056,1025,1080,1048,1055,1044,1059,1044,999,1039,1044,1067,1085,1061,1052,1077,1060,1056,1043,1069,1092,1061,1051,1089,1069,1090,1103,1083,1040,1052,1063,1095,1100,1111,1041,1060,1089,912,908,950,868,878,865,916,877,888,936,904,927,894,884,903,934,923,899,907,862,883,955,921,911,875,888,894,936,926,831,893,1028,989,1003,979,1003,994,999,993,983,968,1004,1015,1009,1007,1006,993,999,1010,1007,998,1002,993,992,969,1000,940,944,906,920,925,933,922,916,922,941,904,949,935,940,914,916,910,917,933,902,934,900,897,923,912,934,919,898,932,929,939,936,925,917,927,933,929,933,914,943,930,934,914,937,927,938,924,925,913,921,922,917,941,849,845,813,843,840,883,861,865,848,875,831,838,860,870,836,895,874,826,845,830,883,856,836,841,850,833,887,837,842,832,849,824,825,828,812,826,830,840,863,837,849,820,836,821,839,826,840,841,834,829,830,836,838,823,667,691,671,682,665,662,685,673,661,665,644,660,653,700,662,666,688,681,661,668,1088,1026,1089,1086,1078,1065,1057,1122,1057,1053,1065,1078,1086,1067,1050,1072,1031,1073,1073,1028,1003,1062,1100,1117,1035,962,911,926,917,942,927,944,930,932,924,955,902,930,950,924,639,647,648,630,651,636,635,648,674,658,662,643,611,624,641,676,630,611,627,616,626,617,647,651,645,648,629,626,709,698,718,700,698,680,692,678,673,691,722,721,703,674,688,677,663,679,683,669,695,696,678,714,700,704,737,730,719,734,749,739,740,722,709,720,715,730,731,722,744,732,723,741,724,756,732,736,721,749,740,738,964,975,942,929,936,935,911,937,906,925,914,896,945,940,905,949,973,933,941,897,928,940,912,971,926,933,947,979,928,828,813,819,835,827,852,826,833,841,797,822,830,809,818,816,819,829,843,829,825,844,829,855,827,657,666,644,701,647,673,662,672,667,677,685,671,681,653,673,656,695,684,673,674,658,1177,1091,1102,1150,1168,1112,1123,1088,1115,1092,1096,1045,1148,1120,1147,1143,1138,1079,1131,1142,1144,1117,1115,1148,1139,1114,1108,1127,1155,1026,1026,1012,1008,1053,1025,1041,1031,1014,1013,1021,1033,996,1005,1015,995,1016,1015,1034,1009,1021,988,689,702,699,716,721,708,695,703,737,732,717,686,725,713,709,762,743,690,721,740,734,678,709,720,689,724,716,680,656,649,674,660,677,653,648,677,659,673,686,664,674,667,678,639,660,657,677,669,658,653,684,659,653,711,730,710,707,726,709,701,724,707,715,718,707,701,708,695,708,699,709,708,712,697,709,711,713,956,921,967,951,953,986,914,948,953,964,967,945,954,927,950,920,985,936,940,972,954,945,973,919,950,942,951,995,990,989,1004,993,1023,998,1027,998,995,985,1025,1013,1014,1000,1011,1020,993,991,1023,1009,1018,1026,1001,985,1003,968,963,963,978,974,964,966,946,965,950,933,967,962,960,961,946,963,939,935,972,962,939,955,972,975,944,1002,961,984,967,976,989,1003,986,982,953,947,963,976,982,978,985,989,987,962,995,971,955,971,972,984,972,969,1003,993,993,987,997,979,986,987,995,994,1003,989,979,991,998,993,997,983,1050,1025,1023,1039,1029,1042,1046,1042,1040,1044,1032,1035,1043,1042,1008,1030,1043,1037,1038,1043,1040,1039,1036,1037,1043,880,870,882,878,933,875,884,909,896,906,883,874,892,849,914,870,892,907,898,914,889,892,893,1086,988,1016,963,963,977,945,1022,1019,994,897,1002,1009,1008,1025,1031,985,958,975,973,1056,994,1038,960,1008,991,1031,965,980,991,990,983,1005,1002,974,1009,998,990,1012,977,994,998,971,993,981,996,986,977,1015,1013,989,995,1007,1005,1008,978,1001,1006,1019,1011,997,995,986,1012,1001,987,993,998,998,997,1003,993,983,992,1009,1011,1015,1001,1047,1068,1042,1034,1059,1050,1042,1023,1060,1050,1046,1065,1053,1052,1066,1041,1051,1059,1041,1011,1052,1071,1064,918,933,927,918,937,931,912,909,887,944,941,948,944,903,921,931,965,923,943,928,923,926,963,960,934,712,702,673,680,650,666,683,672,641,635,676,648,612,670,668,685,666,675,597,666,670,660,659,667,657,624,656,656,659,653,659,631,652,656,645,665,644,645,645,640,656,637,634,663,664,661,638,651,988,1009,1039,1024,1014,998,983,1038,1008,1006,1006,989,1038,999,1022,1042,1024,993,1013,1036,1050,1029,999,1018,1000,880,901,872,885,902,913,884,861,884,883,869,903,867,901,863,888,859,887,874,878,869,877,801,796,787,793,804,791,797,789,788,781,813,811,809,785,798,783,795,801,787,800,803,821,810,815,977,978,1004,996,1014,992,979,993,988,993,986,997,997,988,1003,1002,975,1013,985,1026,1007,1026,1001,1012,978,1001,991,976,978,983,951,971,963,965,965,984,945,946,992,957,964,987,979,977,968,972,983,985,910,918,917,932,939,934,938,903,923,920,934,925,939,922,908,909,914,935,921,949,927,912,946,935,925,931,919,925,910,657,670,651,651,663,680,652,688,670,677,636,675,637,659,647,676,654,661,672,680,684,676,680,685,679,685,648,685,1007,1043,1014,1028,1046,1039,997,998,1012,992,1043,1038,1026,1023,1022,1016,1020,1005,1013,1034,1025,1018,1063,1026,1033,1056,1036,1051,1053,1065,1054,1049,1038,1035,1052,1060,1045,1051,1057,1044,1035,1043,1040,1025,1041,875,917,920,848,863,870,901,894,878,936,893,886,898,865,900,846,914,901,898,872,857,901,894,874,881,889,913,901,658,659,651,689,659,677,644,669,647,684,676,650,643,641,648,660,657,654,650,684,666,645,654,681,670,649,698,667,665,702,665,712,672,684,654,665,658,683,681,676,676,661,661,699,659,698,682,652,700,701,651,696,689,666,648,672,676,1175,1143,1217,1144,1152,1203,1189,1131,1232,1188,1141,1208,1216,1207,1122,1216,1227,1218,1200,1207,1219,1172,1159,1182,1142,1217,1216,1196,1194,1037,1018,1013,963,981,982,964,994,1002,988,996,929,1003,1032,978,992,1009,1021,983,1003,1014,981,1002,995,996,1027,981,704,703,712,728,735,686,712,699,716,691,717,717,706,691,716,700,733,710,734,706,708,737,673,708,675,727,717,701,688,1070,1053,1046,1034,1039,1081,1066,1035,1090,1063,1074,1037,1056,1042,1032,1039,1063,1083,1092,1068,1090,1063,1058,1089,1056,1059,1053,1034,1052,1018,1028,1080,1072,1075,936,851,910,897,878,923,910,924,909,894,885,924,908,903,911,948,927,925,889,927,910,910,962,964,979,976,994,1015,1034,985,1015,1025,983,1005,959,999,964,979,977,964,1000,1029,1048,1058,1052,1031,1006,1073,1028,1063,1007,1031,1019,1047,1033,1053,1036,1016,1027,1022,1050,1059,1050,1057,1022,1055,1039,1041,1040,892,887,892,897,878,910,873,903,853,887,875,898,883,918,896,899,864,909,904,877,876,901,646,621,651,643,610,632,659,612,607,624,653,642,635,612,652,663,631,642,646,629,642,638,646,647,651,1062,1058,1068,1083,1057,1031,1049,1050,1061,1087,1061,1080,1075,1018,1088,1084,1090,1094,1064,1090,1050,1132,1057,1061,1015,1065,1094,1055,1069,1054,1083,1028,1021,1055,1042,1031,1069,1066,1076,1050,1073,1033,1051,1047,1075,1061,1032,1061,1045,1056,911,903,902,918,911,911,899,921,876,961,931,881,904,892,894,929,938,916,897,901,905,912,900,911,946,1155,1158,1158,1185,1157,1185,1179,1182,1177,1143,1215,1146,1160,1212,1172,1168,1164,1182,1159,1142,1167,1188,1169,1190,1188,1205,1179,1192,1172,1184,1162,1110,1088,1059,1031,1045,1043,1058,1027,1043,1088,1033,1029,1017,1096,1102,1066,1055,1036,1024,1056,1031,1049,1052,1045,1034,1038,1044,1058,678,627,654,693,696,637,662,681,665,686,639,649,682,656,632,643,655,646,604,682,648,680,644,649,638,613,623,630,602,592,631,623,598,605,570,613,603,635,649,619,636,617,608,615,622,613,623,600,621,624,591,642,644,653,665,635,659,661,656,677,654,660,651,649,654,666,635,639,648,641,666,662,645,660,1087,1057,1056,1049,1125,1070,1082,1108,1090,1110,1097,1135,1112,1084,1115,1095,1124,1066,1122,1052,1086,1067,1079,1081,1083,1113,1083,1085,1097,1140,1102,1095,1064,1096,1064,1086,1073,1103,1083,1099,1103,1086,1095,1126,1095,1091,1151,1099,1079,1081,1100,1078,1072,1071,1074,1070,1061,1066,1031,1084,1071,1070,1036,1057,1079,1031,1046,1031,1080,1053,1058,1033,1070,1071,867,899,905,855,872,890,917,901,891,911,897,877,892,928,889,884,895,887,882,903,873,873,877,909,892,898,670,655,653,656,675,662,653,653,649,649,653,642,666,628,639,658,659,639,641,681,706,699,695,694,695,693,698,720,708,687,685,706,692,688,689,702,697,694,693,699,711,693,696,705,711,693,706,704,698,693,709,705,690,685,704,697,724,696,704,696,698,695,708,620,593,622,611,635,614,615,612,636,634,602,620,610,626,617,620,633,620,585,601,626,619,624,632,625,580,564,573,567,560,574,573,564,573,558,569,575,563,584,575,573,545,573,568,576,558,543,578,564,551,545,576,558,573,566,578,564,576,683,672,682,696,657,673,675,639,673,705,684,676,660,648,686,676,666,651,682,659,661,674,674,676,691,767,736,765,736,691,752,742,745,754,739,734,734,751,745,759,736,747,749,729,747,1262,1193,1308,1239,1290,1281,1280,1293,1268,1266,1279,1231,1357,1256,1248,1252,1287,1289,1252,1283,1277,1297,1309,1279,1229,1286,1242,1353,1255,1330,1258,1134,1071,1082,1149,1105,1078,1142,1085,1110,1077,1130,1108,1110,1119,1112,1088,1173,1084,1087,1116,1082,1108,1121,1094,876,859,846,886,858,849,843,846,869,826,863,845,858,865,874,876,831,875,868,830,865,858,874,867,868,855,835,868,653,687,699,668,685,648,670,675,694,677,669,684,702,671,680,695,700,665,692,689,681,681,691,672,700,670,676,586,572,577,555,568,598,565,579,558,566,553,565,559,561,560,570,556,562,577,576,591,575,580,566,592,626,594,598,628,598,611,601,602,613,607,605,605,603,607,612,608,611,604,601,596,587,592,652,652,622,652,637,652,646,646,664,633,661,657,660,636,669,643,664,661,648,659,641,638,645,644,635,650,644,648,1003,1077,1042,1063,1073,1039,1036,1015,1009,1022,1062,1059,1063,1036,1061,1043,1043,1063,1028,1068,1083,1059,1002,1019,970,998,979,990,958,969,976,974,980,978,999,1003,1023,989,986,996,993,1006,992,1001,1014,989,994,994,954,961,957,935,954,957,958,959,964,963,974,976,950,951,951,945,927,959,955,958,948,962,944,954,903,919,904,920,915,850,910,889,891,902,906,898,912,886,927,889,900,936,911,923,932,634,622,643,626,645,625,647,639,585,643,622,645,609,610,618,646,645,649,652,634,633,656,669,595,608,605,614,609,602,588,599,580,610,636,604,618,585,584,598,600,608,600,580,630,591,609,621,608,592,619,619,571,617,979,1038,1070,1053,1042,1000,1016,1022,1008,1041,1037,1034,1017,1011,1069,1056,1010,1052,1029,982,1056,1012,1033,767,764,791,731,764,767,749,729,742,787,747,763,768,722,776,744,745,748,712,756,731,740,738,763,748,743,765,1163,1139,1142,1113,1115,1162,1161,1147,1132,1171,1104,1165,1190,1173,1119,1150,1156,1136,1135,1159,1113,1105,1088,1095,1115,1128,1110,1118,1125,1100,1139,1101,1110,1083,1092,1069,1116,1106,1110,1133,1118,1088,1120,1134,1130,1104,1110,1133,1113,1109,1110,1101,1003,984,975,955,958,972,986,977,983,949,990,1005,973,1017,998,979,811,843,849,834,824,832,838,837,816,813,820,849,846,842,837,836,852,828,833,838,820,823,804,790,792,812,781,810,783,804,789,816,794,811,825,802,796,801,808,807,795,810,796,799,818,834,802,796,794,794,806,804,801,835,814,823,808,805,793,813,830,802,791,804,832,807,809,819,793,665,667,679,659,677,665,676,676,681,681,661,649,679,694,664,654,678,662,663,682,651,675,671,659,640,674,678,664,665,666,671,671,679,658,681,660,1086,1053,1059,1130,1094,1059,1054,1088,1057,1060,1060,1078,1028,1072,1073,1056,1068,1025,1059,1061,1064,1067,1077,1049,1076,1037,1089,1119,1083,1066,1054,1074,1088,1102,1089,1081,1083,1106,1119,1102,1089,1083,1104,1085,1075,1099,934,902,890,893,909,952,939,904,936,930,862,891,867,922,929,956,922,904,874,914,908,913,911,903,905,921,894,886,928,889,920,908,897,908,947,943,606,606,587,582,586,601,572,583,597,596,569,601,558,593,610,616,596,585,596,582,596,544,609,582,632,647,618,614,640,624,650,633,644,643,624,641,678,626,641,621,624,599,643,613,638,613,641,677,644,771,792,769,752,792,745,751,775,777,736,772,750,767,761,785,778,727,750,757,753,752,770,717,710,706,727,713,714,715,737,709,701,703,723,720,709,707,736,732,725,711,703,700,729,704,731,720,687,717,1145,1133,1152,1136,1137,1154,1164,1138,1172,1158,1181,1182,1140,1163,1176,1146,1100,1161,1160,1146,1154,1167,1149,1155,1049,995,1023,997,991,1001,1018,1012,992,1009,1004,976,1030,1023,996,988,1022,998,991,1031,1045,1004,992,1004,1073,1077,1094,1076,1066,1068,1074,1079,1079,1097,1061,1050,1072,1068,1058,1070,1081,1039,1054,1070,1069,1066,1067,1088,962,984,973,970,961,960,976,959,962,918,976,977,956,975,946,958,976,959,955,976,980,995,987,962,965,973,997,958,981,957,668,655,673,714,658,702,687,727,707,686,678,652,717,677,676,686,671,717,693,710,673,677,678,663,673,649,638,668,647,628,646,640,660,648,653,630,623,630,622,662,659,639,637,645,653,658,627,660,664,659,663,659,645,664,648,651,672,644,659,655,660,661,644,669,663,664,666,676,646,675,682,663,643,670,694,662,1063,1092,1077,1103,1065,1113,1074,1095,1055,1080,1108,1083,1095,1098,1082,1111,1077,1105,1124,1069,1029,1098,1111,1112,1086,1121,1079,1091,1029,1119,1018,1005,1016,1021,985,987,985,993,1004,1012,985,1012,997,987,1029,999,984,998,995,1018,1037,1021,1019,1008,1029,1005,1012,1017,1003,1010,996,984,996,1010,990,988,981,988,994,985,979,962,996,977,998,976,979,990,991,981,976,803,868,878,886,837,873,800,843,849,831,873,848,841,838,840,833,871,880,905,852,859,847,842,848,824,798,860,833,888,893,937,882,872,948,957,978,953,918,991,972,958,893,945,934,974,923,907,926,953,934,927,899,906,952,949,937,921,986,975,953,973,966,987,978,965,949,970,994,976,953,973,958,965,968,975,998,953,1057,1067,1088,1081,1070,1105,1080,1073,1078,1087,1073,1075,1086,1079,1063,1090,1091,1061,1075,1079,1056,1070,1085,1068,1075,970,971,952,962,987,956,969,955,971,993,953,985,977,991,934,991,955,974,963,995,981,953,977,979,976,866,874,839,870,884,897,869,888,884,886,870,875,868,868,874,861,886,883,858,887,867,882,847,893,871,888,806,762,824,796,801,828,772,779,796,795,795,810,768,786,801,790,811,810,803,808,788,818,802,820,805,792,825,794,694,652,642,679,654,645,658,639,659,689,650,655,661,642,674,649,646,659,647,653,647,638,654,666,618,671,628,649,660,632,638,670,632,641,608,635,649,658,646,665,669,637,654,645,654,1077,1110,1104,1074,1075,1078,1097,1085,1085,1086,1067,1107,1082,1097,1091,1099,1091,1065,1079,1103,1126,1120,1107,1129,1084,1098,1114,1135,1091,1053,1038,1034,1050,1021,1008,1028,1051,1038,1050,1042,1039,1041,1044,1039,1027,1043,1022,1031,1024,1044,1037,1055,1049,1026,1038,1039,1037,1032,1029,1031,1022,1029,1044,1054,1010,1056,1006,1059,1049,1019,1029,1004,1037,1026,1025,1005,1045,1029,1018,813,829,810,831,763,863,827,818,793,826,846,811,802,789,828,819,836,843,835,812,830,819,850,854,832,828,601,611,627,613,620,605,645,597,620,632,626,642,625,634,632,646,622,646,606,646,620,632,601,619,615,605,636,628,628,1055,1046,1040,1040,1040,1072,1017,1072,1076,1023,1067,1056,1091,1028,1064,1042,1082,1080,1078,1073,1052,1038,981,1020,1013,1028,1032,1015,1059,1002,996,982,1021,1013,1020,1009,1035,1017,1031,1002,1014,1018,1015,1014,1033,1028,1032,1013,1062,1032,1022,1028,1026,1036,1047,1019,1035,1015,1042,1038,1046,1017,1020,1026,1038,1048,1047,1037,922,895,900,915,899,885,936,925,903,880,906,886,928,888,915,888,941,903,927,907,877,912,916,904,935,909,705,687,639,676,659,706,674,655,665,657,691,643,666,696,648,667,662,689,643,677,643,707,714,708,559,571,576,546,589,606,577,582,564,568,550,557,563,567,568,580,576,556,594,562,580,576,581,557,600,582,631,613,616,632,598,612,611,622,577,620,592,624,620,618,645,589,639,605,617,641,612,596,631,687,676,682,688,691,698,677,668,657,681,685,678,701,684,673,699,691,694,698,696,689,771,813,782,750,777,764,792,783,779,784,767,743,793,773,781,746,771,773,768,771,744,789,658,662,677,678,656,659,670,687,671,667,656,682,680,659,675,674,690,662,654,671,657,669,668,682,692,671,1093,1048,1040,1043,1036,1022,1046,1047,1032,1047,1039,1031,1057,1040,1057,1011,1043,1044,1031,1040,1043,1035,1072,1031,1033,1024,1020,1021,1029,1023,1056,998,941,942,935,949,930,946,966,942,963,921,948,941,938,955,924,960,936,918,953,965,997,947,928,990,1073,1061,1050,1068,1069,1050,1082,1043,1068,1079,1049,1051,1043,1048,1058,1039,1062,1040,1059,919,918,958,939,910,936,939,966,925,931,943,951,968,945,957,932,960,973,947,952,958,917,961,933,954,931,944,973,938,1145,1110,1137,1098,1125,1137,1121,1118,1087,1132,1115,1113,1138,1120,1108,1126,1122,1104,1097,1123,1111,1120,1117,1149,986,982,992,983,997,1026,998,1011,1001,1008,1009,985,1015,994,984,950,998,999,978,1003,999,865,849,859,885,880,856,866,844,862,874,815,864,844,861,864,874,858,873,854,873,866,866,856,858,864,871,839,656,663,687,634,691,675,648,688,707,651,694,718,688,665,688,687,690,685,707,648,703,680,705,686,686,685,679,639,633,637,619,636,644,625,632,640,628,624,618,643,650,645,627,647,646,644,652,606,635,1127,1167,1044,1132,1143,1177,1129,1141,1116,1143,1058,1058,1125,1119,1131,1114,1175,1171,1137,1116,1144,1081,1074,1085,1135,1079,1134,1129,1086,1088,1081,1099,1068,1089,1105,1101,1109,1100,1076,1098,1098,1106,1112,1080,1092,1102,1117,1110,1085,1137,1098,1104,1094,1103,1088,958,942,914,962,966,943,923,909,919,929,926,921,930,931,951,906,903,932,898,909,936,933,928,903,926,904,653,635,643,666,663,679,683,655,648,643,647,638,661,643,664,674,632,677,672,670,672,661,659,654,1018,967,984,1009,1015,984,984,1010,988,1000,988,1019,988,1016,965,997,987,949,985,1000,980,963,955,958,950,961,935,971,938,958,952,960,954,924,978,986,954,979,962,952,955,969,996,1003,970,931,953,954,927,952,959,740,773,745,759,758,769,773,739,737,756,743,763,754,762,741,727,727,711,748,738,751,741,736,744,727,747,739,732,959,969,969,929,974,969,969,978,940,969,958,977,962,963,985,993,995,931,947,967,1034,1028,1016,1027,1020,1003,1002,1032,1033,1032,1000,1016,1020,1039,1011,1050,1052,1056,1042,926,924,918,905,951,885,898,916,951,903,895,936,905,895,898,889,928,918,905,905,910,872,890,904,908,919,922,989,1023,1014,1062,1002,1013,1012,995,949,998,1001,1033,1008,1016,1037,988,1038,1000,1040,1028,1016,1006,1006,970,978,971,987,965,984,984,981,980,977,975,987,990,986,989,979,994,960,987,986,1014,990,987,1014,996,997,1004,985,996,1023,996,1006,1001,994,1007,998,1009,1037,1045,1030,1017,1037,1041,1037,1033,1044,1037,1058,1035,1037,1026,1020,1012,1050,1038,1025,1037,1050,1046,940,939,968,941,954,942,914,934,924,975,940,956,961,958,942,937,956,939,933,928,944,954,957,945,737,706,691,723,732,733,733,726,673,715,736,724,710,717,717,705,678,707,716,710,724,737,711,662,693,714,649,628,652,629,647,637,625,618,622,642,621,624,643,628,630,606,625,621,616,643,610,637,632,644,640,620,647,628,629,631,620,616,615,639,632,646,637,633,628,639,632,641,623,630,689,675,703,689,688,706,694,681,648,679,681,732,700,702,681,680,702,677,687,687,712,654,1059,1096,1102,1087,1067,1103,1046,1066,1065,1057,1080,1113,1049,1090,1054,1067,1102,1067,1064,1061,1101,1071,1064,1084,1099,1084,1066,1057,1093,721,719,747,709,714,716,731,744,701,699,707,663,715,706,750,705,726,737,683,687,685,733,756,723,1006,972,958,991,1009,996,981,969,976,994,960,956,968,982,951,969,948,1013,965,967,954,1005,991,965,982,972,979,1021,988,987,1026,1000,996,995,985,998,986,996,1021,1005,999,999,1004,990,994,921,955,919,946,933,963,934,963,960,940,938,950,939,934,943,951,946,936,955,951,941,956,964,945,944,950,948,874,860,881,881,860,850,835,847,830,840,846,868,851,867,837,856,888,850,857,872,844,851,869,859,861,687,683,693,681,699,667,689,692,695,709,677,681,696,699,683,694,683,709,692,693,702,701,673,696,675,694,701,710,672,1162,1213,1157,1182,1170,1155,1164,1173,1163,1178,1177,1194,1150,1184,1201,1205,1185,1210,1123,1143,1194,1197,1148,1138,1211,1150,1141,1217,1154,1166,1155,1215,942,926,925,957,953,949,940,965,960,920,963,950,904,997,962,972,1078,1053,1086,1080,1075,1072,1065,1065,1070,1071,1060,1058,1042,1072,1067,1090,1091,1052,1060,1054,1064,1083,1079,936,936,958,934,953,959,955,940,948,961,955,929,944,949,938,951,938,924,924,914,941,921,936,910,906,925,931,953,892,928,912,913,917,927,916,931,938,917,913,912,913,917,916,911,921,921,806,845,827,836,829,853,831,824,812,855,845,863,852,814,812,871,843,866,817,828,837,868,840,872,833,869,684,681,689,664,684,709,701,649,704,706,718,678,710,710,712,701,699,668,666,699,668,682,733,675,711,699,709,673,682,664,673,650,672,667,665,697,651,673,676,668,689,663,676,666,662,684,679,673,679,683,675,696,674,690,683,676,673,676,682,696,677,685,678,686,947,883,937,869,930,920,923,922,906,896,893,901,938,917,905,884,952,912,946,938,938,914,917,927,924,701,671,710,668,692,693,694,686,699,674,688,710,678,671,689,675,701,681,603,623,608,635,594,608,616,608,603,594,610,609,611,605,646,611,614,606,634,606,641,612,621,604,1064,1080,1139,1106,1101,1094,1106,1054,1054,1075,1089,1071,1114,1069,1117,1095,1065,1103,1078,1082,1114,1113,1039,1111,1104,1058,994,1021,1003,1034,1040,1011,1014,997,1013,1027,997,1026,975,1022,1023,1011,1016,1008,992,1000,1009,1025,1046,976,1010,1037,1040,1033,1035,1053,1044,1050,1055,1047,1057,1033,1049,1031,1040,1072,1044,1063,1029,1022,1025,1041,1051,1028,1023,1039,1036,1055,1046,1047,1058,868,847,914,893,878,907,896,890,884,855,918,889,922,899,868,898,903,897,921,896,884,865,894,917,911,878,892,902,896,688,660,669,665,659,683,670,685,677,662,653,664,683,690,685,688,675,672,690,685,679,660,700,670,683,665,1146,1102,1117,1136,1064,1112,1142,1103,1127,1149,1115,1116,1105,1138,1095,1116,1135,1152,1019,1034,1041,1021,1004,1025,1020,1018,1033,996,1036,1026,1025,1029,999,1036,1023,1022,1025,1027,1032,1032,1024,1045,908,918,928,914,922,906,936,905,885,915,910,908,909,932,938,878,1049,1051,1058,1056,1046,1071,1036,1049,1065,1054,1064,1077,1056,1040,1074,1078,1055,1062,1065,1050,1055,1068,1039,1058,1048,916,937,923,932,918,929,905,939,888,927,912,914,882,927,905,943,911,911,943,914,713,721,691,706,704,698,701,699,712,699,696,702,704,700,714,684,676,673,1223,1225,1173,1207,1155,1259,1202,1206,1165,1202,1232,1247,1153,1203,1240,1208,1167,1152,1182,1261,1226,1239,1179,1007,1014,1029,1014,1055,1027,996,1037,1004,1026,1038,1024,1024,1039,1017,1030,1046,1005,1030,1020,998,1011,1038,1004,1003,993,980,1048,1047,1008,995,1016,1014,987,992,991,958,1035,1028,988,1002,1037,999,1002,1003,965,976,1013,989,1031,1039,1058,1055,1047,1042,1021,1042,1042,1046,1038,1034,1040,1035,1031,1042,1024,1028,1064,1026,1041,1015,1031,1036,1042,1044,1030,910,912,918,907,929,915,912,902,889,913,894,906,909,892,903,899,883,902,906,890,915,917,891,892,913,881,910,915,714,713,717,731,708,735,722,726,702,699,722,732,728,732,692,713,710,736,744,725,739,730,717,905,924,929,905,881,929,920,872,914,873,904,886,900,867,921,915,904,867,929,908,868,881,881,928,942,896,877,890,741,746,729,738,748,755,732,746,736,719,750,727,721,752,745,719,745,761,752,757,774,730,762,694,711,755,708,743,768,743,744,745,725,737,744,746,676,661,655,677,688,683,660,677,663,699,649,686,690,681,696,660,672,653,677,892,876,891,874,882,873,883,873,879,872,891,861,872,899,894,905,843,870,737,748,740,748,701,760,728,734,731,736,726,744,774,746,743,768,760,748,743,720,759,753,739,742,738,674,680,690,712,701,699,668,724,697,699,703,678,681,676,708,716,680,716,689,697,688,699,687,687,703,700,681,1029,1016,1020,1013,1019,1053,1027,1037,1041,1021,1032,1021,1048,1010,1053,1011,1016,1046,1002,1078,1031,1015,1064,1033,771,758,809,815,782,798,778,783,769,760,765,788,792,806,766,771,792,762,770,765,774,757,767,761,786,774,762,696,686,682,666,672,679,681,672,674,668,687,684,642,668,678,683,664,679,687,656,683,648,670,642,658,665,1142,1087,1213,1145,1100,1195,1154,1162,1185,1119,1166,1112,1171,1104,1146,1227,1118,1169,1158,1128,1105,1126,1135,1188,1179,1163,1162,1159,1178,1173,1200,981,970,991,990,987,1002,993,975,986,1027,978,991,982,1024,979,1000,996,983,977,1002,994,1011,982,1002,995,983,991,974,998,998,1132,1113,1093,1101,1127,1101,1124,1087,1108,1110,1126,1131,1122,1085,1097,1121,1123,1115,1116,1092,1123,1115,975,949,965,934,948,939,968,948,957,953,930,968,982,973,946,962,933,993,945,966,934,968,956,960,952,968,966,935,971,955,965,936,926,938,955,961,964,941,955,954,964,955,947,955,968,947,960,961,939,963,957,939,954,949,961,954,944,964,753,794,764,770,786,767,770,828,774,755,779,750,793,743,738,780,773,805,804,770,769,794,799,786,908,912,864,928,871,897,885,897,908,900,952,929,927,924,933,941,895,950,892,891,840,840,848,861,842,861,849,857,867,835,840,830,819,847,850,839,841,849,847,842,860,858,844,863,853,809,819,817,803,835,806,817,830,814,816,818,809,844,835,828,802,813,825,824,798,822,813,811,815,815,842,792,798,774,781,779,782,789,802,766,776,794,780,771,789,775,782,795,791,787,773,779,786,820,783,773,785,766,788,1018,1049,1047,1043,1041,1035,1027,1022,1048,1043,1037,1035,1034,1042,1059,1025,1014,1048,1022,1030,1017,998,1047,1006,1047,1033,1039,1019,903,941,885,926,904,913,915,936,910,850,967,898,948,909,937,921,894,952,915,904,902,909,911,899,938,997,996,1015,1004,1002,1030,1050,1054,1052,1009,1031,1039,1014,1031,1029,993,1005,1008,1003,1011,1006,1026,1012,1039,1054,986,988,980,1010,992,1019,1046,1051,1065,1024,1024,1045,1039,1036,1025,1047,1053,1048,1050,1032,1013,1042,1042,1018,1014,1012,1035,1038,1033,1035,893,932,905,897,919,924,934,900,883,871,903,903,896,889,899,886,898,863,900,917,901,911,898,898,894,903,911,701,706,729,743,697,691,720,714,690,696,714,679,720,713,699,695,678,701,685,683,683,714,680,718,713,705,1151,1226,1190,1162,1155,1136,1178,1138,1143,1177,1213,1187,1162,1146,1193,1162,1072,1129,1213,1137,1002,980,1008,997,992,1034,1002,979,1000,967,1000,1017,981,975,1001,985,962,1013,996,1002,1007,1016,1009,1028,1032,1005,1002,995,1009,988,1077,1047,1063,1066,1064,1065,1089,1070,1101,1053,1058,1046,1074,1078,1082,1082,1098,1059,1055,1058,1072,1065,1079,1085,1061,1076,1105,1078,1070,1075,1065,1063,1087,1054,946,935,921,903,916,926,914,934,944,939,951,910,922,962,915,943,935,921,938,954,949,934,938,930,917,910,908,693,666,679,675,681,688,655,674,679,666,692,685,700,680,719,673,670,659,665,658,628,690,660,683,658,658,679,650,661,649,690,629,672,643,637,654,672,653,643,630,644,652,634,639,642,643,641,649,653,633,649,654,647,660,646,669,651,1199,1158,1137,1152,1143,1129,1263,1221,1172,1240,1217,1159,1261,1162,1221,1169,1124,1145,1195,1196,1172,1165,1159,960,1061,1002,965,1062,1037,1001,957,975,986,964,980,994,970,998,925,992,968,931,986,986,1031,966,652,619,634,652,640,658,640,627,632,606,603,658,663,632,616,638,646,618,626,667,649,604,620,617,617,617,660,656,631,601,627,604,656,633,642,677,655,682,659,652,663,662,681,667,666,663,653,668,678,664,690,682,662,676,664,659,661,693,666,697,666,656,660,674,685,654,670,697,689,664,677,687,657,675,678,695,682,1056,1126,1082,1072,1085,1080,1051,1068,1070,1037,1065,1079,1047,1062,1053,1061,1053,1074,1064,1053,1085,1082,1117,1100,1075,1028,1063,1059,1078,963,967,977,946,964,981,966,958,969,972,975,973,949,968,986,975,957,937,964,947,958,977,948,757,764,779,798,766,780,778,775,771,780,800,767,741,773,777,744,770,770,799,687,699,703,712,690,718,705,695,698,725,710,694,696,710,705,668,684,703,682,666,692,702,729,716,674,675,676,649,678,660,662,667,685,659,673,656,685,666,684,679,664,681,663,687,665,670,643,674,657,695,673,671,1088,1045,1063,1084,1069,1117,1045,1138,1064,1010,1041,1052,1065,1080,1044,1040,1049,1075,1051,1106,1035,1079,1073,1091,1035,1091,1084,1103,1102,1119,1093,1112,1092,1111,1084,1100,1126,1098,1112,1088,1068,1088,1104,1080,1101,1093,1083,1101,1093,1143,1102,1102,1118,1109,1116,1115,1102,931,948,944,953,939,971,962,950,959,990,959,950,945,937,944,922,928,980,945,976,1062,1039,1050,1071,1056,1052,1044,1000,1015,1025,1056,1061,1079,982,1061,1063,1046,1065,1064,1095,1068,1018,1055,1035,1032,1031,1030,1047,1023,1027,1029,1035,1036,1049,1040,1038,1029,1024,1030,1030,1033,1037,1032,1029,1031,1037,994,978,1001,1004,974,984,979,984,975,991,974,1000,978,1001,985,973,982,991,992,1001,989,959,973,716,671,739,708,677,745,723,716,686,687,680,705,695,698,703,650,711,678,720,699,702,701,683,693,715,686,682,658,662,647,635,647,680,638,666,653,649,668,653,646,660,651,659,665,667,659,654,661,661,654,644,657,665,636,669,663,618,649,654,635,624,627,642,640,635,648,608,642,664,627,635,658,612,635,655,623,646,623,636,643,634,649,631,632,624,644,931,921,883,948,930,946,965,945,930,942,964,964,942,935,933,989,925,953,947,914,947,957,930,932,935,934,896,961,982,720,714,731,698,713,713,731,694,723,696,699,699,689,720,706,697,703,703,716,722,658,713,669,669,687,708,627,634,643,636,642,628,630,641,636,629,622,630,628,637,602,613,650,621,616,627,636,618,625,649,649,629,625,613,624,701,700,730,704,709,713,735,727,719,705,710,703,729,711,699,735,720,739,724,701,727,713,724,727,699,694,705,689,723,710,706,721,720,724,722,706,697,698,692,719,716,726,709,698,722,715,706,703,702,1070,1131,1118,1120,1119,1111,1148,1123,1106,1074,1122,1096,1115,1101,1107,1062,1099,1121,1111,1098,1134,1137,1095,1076,1105,1129,1012,1023,1025,995,983,975,988,1021,996,1007,994,974,991,1001,1005,1001,999,971,973,989,991,999,979,991,1018,989,996,941,1000,890,852,891,874,849,854,862,880,873,877,850,868,878,867,847,878,862,872,890,875,860,868,838,861,844,871,869,857,845,858,849,683,703,706,717,714,698,725,698,705,689,698,696,705,712,696,711,699,711,706,1143,1128,1081,1114,1092,1132,1112,1118,1130,1082,1114,1085,1099,1133,1095,1131,1101,1130,1113,1110,959,944,967,950,914,943,984,919,961,914,934,938,977,905,922,907,902,928,904,990,913,938,598,605,591,608,629,615,594,599,606,623,590,581,608,600,604,615,596,577,589,612,602,607,560,602,619,706,719,705,675,695,703,715,705,711,697,721,697,690,683,707,705,688,706,711,683,705,696,703,717,708,679,698,704,717,702,704,706,725,734,723,722,738,724,733,720,739,723,719,754,741,761,719,738,759,741,734,744,721,746,714,732,728,712,717,747,724,741,1001,985,1009,951,952,971,990,1001,973,977,996,988,975,1005,977,941,947,982,958,962,966,989,978,986,973,958,979,996,1009,1020,1008,1005,992,1018,1019,971,998,1008,1002,1000,1011,1014,1021,1005,991,1016,1004,1005,1005,1019,1016,1014,996,1036,1011,961,975,955,982,976,964,983,948,950,983,964,957,984,935,950,966,948,958,957,977,1044,1022,1047,1048,1025,1004,998,1014,1012,1007,1041,1012,1012,1036,984,1017,1010,988,1037,1038,992,1019,1012,1049,1016,1010,1023,1014,988,959,944,964,970,952,972,973,951,962,965,915,942,941,933,968,942,940,923,939,964,944,948,967,939,963,958,948,899,890,904,893,881,903,910,888,882,896,890,910,907,893,895,872,887,898,891,899,903,899,899,886,906,892,851,819,817,826,813,835,843,795,831,828,822,810,830,839,816,825,811,799,822,836,828,842,824,837,807,825,834,828,829,821,680,727,721,713,740,720,706,735,743,694,744,713,721,717,724,721,726,699,722,696,705,705,688,729,738,705,728,727,706,681,684,679,683,686,683,690,675,687,685,676,666,691,669,682,664,659,680,668,679,668,683,694,680,679,964,901,951,973,956,923,953,938,963,941,925,986,953,948,959,985,960,958,921,933,935,972,931,932,980,925,752,756,794,787,737,766,786,816,794,787,761,784,777,740,794,797,779,750,776,801,758,802,787,751,805,766,956,973,963,958,962,970,965,953,949,946,1009,977,972,993,959,956,995,943,997,954,972,961,975,951,938,972,959,952,941,697,712,721,709,732,736,713,729,694,720,723,702,687,698,705,681,679,682,720,678,683,685,688,723,712,670,692,706,706,746,1137,1090,1077,1102,1103,1106,1112,1146,1116,1095,1111,1137,1067,1124,972,983,1021,1033,980,991,1008,1018,1003,991,1010,979,980,980,960,1004,1020,964,994,997,1037,853,854,843,869,842,861,875,868,866,863,867,850,855,864,870,851,867,835,862,838,878,849,847,862,840,853,1063,1053,1062,1087,1023,1039,1040,1057,1053,1100,1035,1083,1082,1033,1073,1076,1069,1066,1049,1078,1021,1081,1065,949,969,941,942,977,951,970,934,954,940,975,940,962,956,933,950,968,951,957,950,934,954,946,956,962,982,687,705,704,681,711,670,687,666,638,688,670,682,657,679,683,662,664,668,670,668,668,680,682,663,621,630,629,616,608,636,617,632,644,628,637,654,633,622,621,628,607,636,613,614,628,611,646,647,617,636,604,651,628,689,665,716,670,671,675,681,653,681,673,701,677,675,675,678,685,693,688,660,677,660,690,682,664,669,673,661,776,778,785,773,747,750,755,751,779,782,752,761,769,762,789,746,790,775,758,770,774,788,769,788,794,746,753,769,764,700,689,707,693,695,698,685,698,712,710,689,695,691,686,708,700,1067,1058,1061,1031,1057,1061,1083,1098,1039,1067,1068,1076,1085,1060,1019,1062,1051,1093,1042,1045,1068,1048,1044,1089,1065,1062,955,949,962,948,927,965,921,898,905,928,894,889,910,965,883,928,921,929,944,930,927,933,913,905,925,1001,945,974,987,979,985,1007,978,979,966,1026,972,989,1035,952,1002,958,998,931,938,1056,1046,1046,1040,1056,1041,1073,1031,1056,1049,1025,1035,1073,1054,1043,1060,1093,1065,1097,1083,1090,1078,1070,1087,1069,1076,1087,1069,1082,1088,1083,1090,1077,1054,1088,1097,1086,1076,1085,1076,1061,1087,1069,1111,867,827,840,844,866,845,864,845,907,856,842,832,849,801,837,815,845,863,807,840,844,866,855,874,835,835,819,829,868,661,657,656,645,662,642,643,656,661,657,646,628,661,649,638,653,658,681,663,668,640,657,662,643,1229,1186,1219,1154,1192,1176,1205,1184,1139,1144,1170,1139,1132,1182,1250,1112,1146,1172,1096,1171,1149,1202,1199,1159,1168,1175,1187,1077,1061,1072,1070,1050,1053,1070,1052,1055,1066,1016,1036,1037,1061,1022,1058,1077,1027,1055,1026,1072,1038,1082,1043,1072,929,946,917,923,916,923,938,923,950,925,929,903,912,931,903,910,923,937,929,901,902,920,922,925,916,943,918,944,902,924,717,735,698,733,712,708,700,736,701,741,734,730,729,695,722,730,713,706,828,832,823,842,860,861,825,845,831,830,866,872,847,836,851,855,863,845,849,852,864,836,854,852,852,836,1097,1086,1080,1059,1062,1107,1124,1063,1081,1073,1089,1055,1043,1061,1086,1096,1094,1079,1073,1082,1041,1088,1114,1102,956,969,963,947,965,959,959,950,977,990,944,944,974,967,951,960,960,973,951,968,978,662,679,736,690,680,689,717,710,682,683,692,741,681,716,700,681,723,687,675,685,679,675,724,725,626,622,622,627,612,619,618,612,618,610,630,648,618,625,632,630,617,639,586,594,616,616,625,624,606,609,648,651,655,643,634,648,658,633,650,644,630,650,659,637,669,655,648,646,649,657,650,663,666,651,680,684,673,669,673,656,671,669,649,681,687,675,687,687,674,697,669,653,661,700,697,722,687,723,719,718,727,719,740,714,740,735,705,727,735,747,680,728,752,703,717,701,712,720,721,729,703,708,703,701,723,735,708,709,734,724,704,722,716,698,721,707,638,639,646,648,647,659,659,656,646,643,623,636,638,657,644,654,646,648,648,659,652,627,651,624,655,658,645,1007,1039,1044,1016,1062,1123,993,1090,1033,1043,1051,1068,1041,1039,1056,1036,1045,1001,1089,1067,1027,1023,1071,1040,974,967,975,948,961,946,976,968,957,965,957,967,953,942,962,994,978,969,1001,932,964,980,962,949,967,950,996,963,930,958,808,788,784,805,789,796,799,794,796,796,798,813,803,808,817,810,771,799,1068,1100,1085,1099,1085,1085,1108,1061,1090,1082,1102,1088,1102,1084,1088,1065,1082,1105,1089,1078,1106,1102,1071,1079,1062,1104,903,873,882,885,886,866,885,887,863,880,890,866,889,897,897,882,896,902,902,912,890,905,886,930,874,868,876,892,869,891,886,892,867,875,889,891,682,695,697,700,684,688,719,681,698,698,706,695,681,677,696,731,692,1152,1204,1154,1126,1193,1180,1119,1139,1200,1136,1130,1141,1147,1157,1106,1184,1206,1174,1170,1137,1172,1102,1191,1147,1166,1154,1001,1039,1035,1054,1044,1031,1033,1040,1019,1019,1022,1022,992,1022,1010,1058,1010,1027,1021,1050,1032,1043,1027,1013,1032,1042,1027,735,772,736,721,718,733,742,729,753,729,744,777,739,749,780,761,732,745,749,699,686,689,701,693,671,686,684,654,693,681,698,685,682,689,674,687,669,704,698,682,674,679,680,698,711,692,699,687,693,704,713,713,702,703,699,705,714,699,697,697,690,695,711,699,711,693,693,707,703,698,689,698,666,690,694,702,689,692,704,671,707,690,702,696,678,693,670,692,697,694,701,675,690,692,712,694,681,924,912,910,922,918,906,919,925,896,951,880,925,960,923,892,945,932,897,901,928,935,899,886,923,907,839,863,867,859,845,867,851,854,862,851,861,829,843,857,858,874,862,852,864,865,840,855,868,756,732,748,738,742,753,756,724,732,722,742,714,733,733,731,735,739,728,709,740,740,755,730,751,758,988,1010,975,1003,1012,1025,972,993,1012,1019,1044,1004,1018,988,1031,1001,1042,1019,1005,990,993,1034,752,779,733,708,768,726,757,753,748,739,747,725,725,777,737,725,777,715,741,734,734,771,733,651,645,645,618,630,633,626,642,640,621,639,632,633,631,629,670,664,624,651,617,628,634,632,652,590,596,608,592,591,586,609,607,591,613,593,615,587,598,583,595,610,630,603,586,594,626,596,621,608,703,713,696,687,695,699,681,692,715,695,701,693,700,695,697,699,706,689,697,693,703,695,696,718,716,701,695,720,718,724,711,709,710,688,692,696,698,719,701,723,710,688,694,691,717,712,701,716,702,704,728,707,712,708,1101,1109,1088,1113,1078,1083,1043,1098,1105,1103,1045,1109,1101,1094,1074,1149,1051,1086,1140,1061,1095,1075,1102,1079,1110,1063,1060,1059,1070,1057,1083,1076,1063,1074,1065,1056,1082,1051,1076,1066,1053,1070,1050,1050,1076,1046,1072,988,959,901,961,939,950,966,944,947,943,936,930,966,976,945,970,943,929,963,960,944,955,956,941,1023,1007,991,1017,1004,952,961,1050,1016,1056,1009,927,988,1000,1031,1032,985,1028,1011,998,1001,986,1042,1008,1022,1021,1019,1042,1033,1038,1022,1022,1033,1015,1004,1033,1038,1022,1028,1019,1024,1029,1048,1041,1031,1035,1006,1012,1012,1011,1033,942,923,959,935,929,917,932,916,928,938,918,933,908,910,894,919,945,966,950,940,946,923,1152,1173,1220,1197,1195,1204,1190,1187,1204,1213,1188,1193,1214,1204,1223,1169,1179,1199,1196,1135,1172,1181,1216,1231,1175,1030,1035,1035,1051,1045,1034,1015,1026,1022,1040,1060,1042,1045,1001,1035,1033,1022,1059,1052,1043,1032,1039,1020,1031,1029,1053,1036,992,1030,649,694,700,644,682,673,645,653,662,697,675,724,625,673,702,644,658,666,697,663,668,655,697,708,643,693,709,681,695,682,623,704,629,625,626,616,629,615,657,616,610,602,634,617,622,617,616,626,630,645,619,643,636,647,955,979,963,952,1002,973,973,928,983,988,964,975,975,935,979,979,985,961,1010,969,964,971,991,959,725,759,733,751,740,730,710,764,737,740,728,764,731,715,777,752,740,723,1120,1154,1087,1133,1204,1183,1106,1160,1166,1194,1177,1113,1179,1159,1093,1154,1146,1168,1156,1142,1153,1121,1136,1122,1146,1135,1130,1144,1151,1105,987,946,1004,948,1002,967,977,1022,980,983,944,966,973,941,945,940,977,993,949,976,974,944,955,990,985,950,955,953,967,752,749,778,718,745,714,746,750,726,729,741,759,739,719,707,732,774,715,771,752,718,710,692,746,885,895,850,922,878,910,933,932,929,897,930,940,878,894,884,931,902,897,875,940,925,885,898,908,884,928,889,919,732,723,741,721,708,718,713,755,729,726,745,728,696,744,728,783,739,742,785,689,709,678,647,660,664,668,679,673,655,674,673,668,672,663,641,666,666,685,664,670,684,658,681,667,665,679,714,687,685,722,705,704,728,718,710,720,717,707,717,708,717,707,713,716,708,702,703,712,720,1183,1162,1135,1125,1118,1157,1155,1145,1162,1122,1162,1157,1202,1154,1124,1182,1160,1171,1121,1151,1142,1170,1192,1025,974,967,985,1004,1011,1023,967,1014,1041,1007,964,1005,1050,1037,975,996,1000,993,1074,1072,1054,1086,1064,1080,1078,1064,1081,1105,1090,1077,1081,1106,1064,1064,1082,1093,1057,1083,1054,1088,1080,967,952,953,941,918,944,931,935,932,955,932,888,944,892,942,936,976,895,920,922,930,917,938,940,949,944,940,1133,1186,1150,1167,1164,1132,1192,1129,1191,1155,1198,1163,1151,1150,1166,1165,1183,1153,1156,1145,1141,1132,1171,1074,1034,1034,1044,1043,1040,1102,1080,1080,1073,1059,1047,1062,1087,1075,1071,1066,1039,1037,1078,1056,1099,1068,1062,1083,1066,1052,1050,1085,969,969,964,959,960,978,956,970,964,969,967,983,966,997,971,958,984,967,964,966,989,959,969,988,960,975,964,961,895,899,877,892,867,869,868,871,868,884,861,871,914,880,878,870,866,868,869,872,881,875,861,875,869,887,875,874,869,874,808,814,795,821,794,797,793,814,807,849,823,829,816,822,825,815,805,842,812,806,837,836,796,827,794,791,817,826,785,801,818,818,829,819,814,808,792,810,804,789,802,815,802,823,814,792,777,811,805,804,767,817,825,784,805,786,817,1081,1112,1128,1109,1072,1067,1094,1075,1093,1084,1081,1079,1086,1095,1074,1040,1111,1069,1091,1088,1039,981,1034,1023,1015,1027,1012,1011,1033,1013,1019,1002,976,1020,1003,1019,1011,1001,1003,994,1027,995,1032,1003,862,851,835,863,832,854,862,844,841,837,841,835,886,846,846,863,865,860,852,854,862,864,870,857,836,852,850,874,681,693,679,653,697,687,669,685,660,664,687,686,685,683,669,679,675,668,651,671,706,681,683,662,1035,1020,1012,1023,988,1034,1026,1059,1005,1021,1018,1010,1041,1033,1033,1032,1024,985,1030,1002,1019,1027,1006,1031,982,1033,1024,1048,1023,1019,1029,1018,1014,1015,1061,1032,1039,1023,1040,1018,1035,1038,1027,1011,1017,1026,1014,1012,1026,1020,1034,1032,1033,886,890,887,873,915,916,890,884,876,913,923,914,872,914,868,908,906,902,906,882,867,900,909,708,707,723,698,691,707,691,711,710,707,709,710,715,692,715,709,728,707,720,727,700,725,718,727,737,705,722,704,693,750,743,746,738,750,753,783,763,748,755,757,724,766,757,759,780,758,739,766,749,770,1001,1031,1035,1041,1008,1040,1053,1005,1022,1001,969,1027,1013,1008,1002,1009,1039,1040,1047,1053,1075,1032,1050,1038,1045,1053,1046,1036,1019,1016,1037,1055,1044,1039,1050,1034,1033,1031,912,890,885,909,904,899,914,917,908,898,883,878,912,882,882,891,901,878,921,918,891,685,708,708,748,698,706,695,720,693,730,701,682,707,717,702,729,710,692,703,702,707,731,736,706,733,684,713,967,962,965,913,949,968,943,916,932,953,938,949,993,948,938,982,981,968,946,963,962,950,953,722,721,744,730,759,768,724,726,708,756,722,706,682,736,760,775,722,741,753,724,753,728,782,772,767,749,770,758,937,907,930,906,939,941,907,940,933,943,961,941,933,928,905,954,946,909,944,950,949,720,679,715,732,700,687,705,689,727,713,710,715,689,687,689,734,713,692,722,709,720,705,1098,1057,1061,1077,1075,1072,1111,1086,1103,1110,1118,1130,1112,1076,1115,1108,1104,1072,1088,1099,1087,1072,1103,1082,1048,1067,1052,1073,1104,961,904,969,1009,942,972,979,942,962,944,951,939,962,959,922,953,974,951,971,938,941,990,955,939,966,933,1035,690,686,684,702,680,688,658,675,672,676,693,680,692,694,646,694,660,687,680,648,667,673,720,677,690,681,692,683,695,675,681,677,694,698,702,690,678,683,673,697,680,685,663,684,675,702,696,1012,974,994,1001,995,997,1017,1024,994,951,992,990,1016,1013,1001,1037,1022,1034,1001,1003,1028,1012,997,998,1020,1026,1063,1044,1040,1036,1038,1041,1065,1042,1037,1053,1037,1068,1031,1046,1029,1043,1042,1046,1021,1059,1041,1049,1034,1055,910,924,886,889,906,903,880,903,935,914,906,908,914,926,947,903,926,914,909,880,902,905,752,724,718,708,709,717,736,733,727,735,716,724,728,744,736,715,722,740,761,882,858,876,840,841,848,858,847,838,880,858,859,871,891,859,865,869,877,848,829,864,859,868,716,717,739,721,727,717,719,725,721,716,724,701,747,737,715,718,740,725,696,724,748,752,760,720,747,709,732,754,735,722,722,746,734,706,708,731,708,720,713,726,710,738,704,721,631,621,635,647,622,638,621,645,640,642,637,630,638,638,628,631,632,637,655,625,1034,1066,1045,1037,1057,1022,1081,1040,1060,1025,1092,1037,1022,1005,1007,962,1064,1063,1021,1047,1039,1003,1041,926,910,909,887,916,874,915,886,880,901,888,904,911,877,867,927,900,872,879,884,736,740,760,728,748,768,733,743,696,751,765,707,737,714,752,746,732,715,706,736,722,707,754,717,745,743,753,1153,1131,1107,1151,1133,1139,1121,1155,1178,1114,1141,1149,1149,1099,1153,1115,1165,1178,1143,1151,1141,1144,1165,1120,1139,831,845,854,807,862,866,812,852,806,790,882,867,844,855,814,844,853,851,862,855,828,850,870,893,906,871,900,914,908,887,892,866,905,908,897,901,912,879,889,864,884,904,928,895,893,908,885,892,935,918,896,905,903,818,803,807,824,820,817,801,824,820,804,805,809,819,818,812,814,802,801,822,808,835,834,825,838,804,810,824,725,705,696,690,716,707,718,687,719,692,697,697,708,704,713,717,724,710,692,697,699,714,681,714,692,695,700,686,700,714,720,833,870,838,842,838,895,862,913,863,865,843,867,869,882,832,889,887,865,855,852,1079,1048,1034,1057,1053,1062,1097,1067,1072,1083,1054,1047,1126,1093,1073,1070,1055,1064,1064,1076,1068,1082,1035,1065,1058,1065,1045,1009,1001,1007,968,974,1002,996,985,974,968,985,975,973,970,973,987,988,961,961,956,990,978,1017,956,973,992,985,970,1006,882,858,879,862,868,873,839,857,857,882,899,869,899,812,879,871,872,858,858,846,860,871,892,1045,1027,1029,1023,1054,1033,1032,1049,1019,1024,1002,1032,1029,1032,1022,1017,1018,1050,1042,1042,1025,1056,1039,1010,1049,1046,931,963,940,934,916,943,934,913,949,913,921,943,940,939,937,921,961,921,942,922,945,942,912,943,928,1225,1198,1229,1223,1221,1223,1221,1194,1224,1196,1210,1230,1253,1217,1242,1180,1203,1218,1046,1063,1049,1031,1030,1008,1055,1029,1044,1044,1038,1012,1034,1028,1037,1031,1045,1022,1048,1031,1041,1022,1055,994,1023,1004,1007,1026,1005,1029,1033,1030,1022,1025,1018,989,982,1022,1007,1010,985,1020,1000,1015,1005,1028,968,950,984,969,962,977,961,970,970,957,971,985,973,971,960,965,970,994,960,973,975,956,987,983,970,1003,1000,984,996,1003,1010,992,983,987,988,1010,988,1000,982,1007,983,983,1008,999,984,973,981,1001,1012,977,984,1004,1028,993,908,871,879,900,911,917,888,898,881,885,885,874,913,900,889,902,898,887,876,888,906,912,918,888,711,727,698,718,711,717,715,694,703,727,704,701,738,671,750,678,727,711,682,705,715,709,748,706,709,691,702,719,701,706,727,745,705,669,722,1162,1222,1207,1167,1176,1197,1194,1144,1239,1236,1245,1138,1212,1256,1107,1241,1196,1245,1207,1234,1220,1223,1239,1227,1199,1137,1225,1110,1232,1034,977,964,999,978,1012,985,978,981,987,991,1020,987,989,998,1015,991,988,996,973,1002,966,1030,998,983,996,1024,998,972,1014,998,978,954,1014,1036,1001,981,1057,1025,996,1045,1036,1015,985,1021,974,957,1010,1027,1019,992,1012,1050,1005,1035,1039,1018,1032,1049,1053,1040,1031,1042,1026,1017,1058,1042,1045,1034,1023,1025,1028,1051,1018,1028,1029,995,984,961,983,976,984,974,970,988,988,969,981,974,968,977,974,961,986,994,964,983,997,994,993,989,847,830,832,846,858,856,803,848,823,830,841,841,844,851,835,815,836,838,840,857,835,834,828,836,847,829,714,703,737,747,712,700,673,706,694,722,735,722,702,706,695,706,725,708,735,723,701,712,738,701,698,719,721,698,681,684,696,700,690,670,667,718,687,679,698,692,686,676,688,673,679,706,676,684,652,670,669,666,709,668,704,685,680,686,1038,1051,1036,1061,1050,1059,1077,1055,1047,1044,1002,1022,1055,1042,1037,1003,1063,1023,1031,1037,1057,1030,994,987,985,997,989,1017,996,994,1001,1013,990,1009,986,1009,994,991,994,999,973,1000,991,1001,1016,997,1005,979,987,991,1005,987,982,986,1005,985,1010,997,982,995,991,984,1003,1001,1011,997,996,989,1002,1006,1006,979,991,1018,1007,1047,1038,1039,1040,1071,1058,1046,1061,1071,1042,1071,1052,1028,1036,1057,1052,1015,1050,1056,1052,1056,1057,1057,1034,1053,1054,1054,1059,1055,1051,923,928,901,911,942,902,928,940,912,898,903,926,904,875,895,907,888,924,931,891,919,928,895,908,882,918,1000,1047,1047,1003,993,977,1010,1085,1006,1072,985,1029,957,997,1034,1035,1032,1044,1034,975,1018,1004,1026,1021,1018,1036,1057,1084,1055,1045,1069,1052,1067,1026,1058,1010,1048,1029,1058,1061,1068,1046,1075,1046,833,891,840,896,910,904,956,849,904,874,849,916,872,864,884,899,884,880,911,890,917,855,916,843,858,577,594,572,600,557,595,578,584,602,582,602,581,570,582,565,609,563,582,597,617,587,550,563,583,600,622,617,602,580,612,604,617,616,619,608,591,606,617,621,593,631,707,670,679,651,658,675,676,690,670,659,688,666,657,692,677,680,675,658,692,685,671,690,653,714,684,716,703,717,725,715,721,735,705,731,715,725,714,703,702,695,708,702,706,702,715,712,703,696,704,725,1173,1224,1155,1147,1114,1152,1221,1162,1168,1154,1137,1205,1145,1176,1127,1138,1196,1134,1158,1137,1128,1188,1106,1188,1152,1189,1096,1166,1177,1126,1141,1146,1196,929,970,934,967,957,958,975,938,963,969,935,941,948,981,922,945,1003,975,961,935,992,947,957,928,862,955,927,976,898,918,937,911,984,928,969,937,954,893,934,914,905,872,930,924,916,868,958,947,985,950,942,924,935,965,916,922,911,952,956,933,946,936,938,942,941,957,940,948,943,948,948,957,903,904,860,864,863,831,897,842,908,871,867,878,887,882,859,863,872,898,865,869,865,897,882,877,880,874,897,872,661,670,677,665,672,666,661,661,694,676,663,666,694,668,659,688,662,643,675,661,669,666,701,668,655,660,691,1116,1069,1092,1127,1111,1111,1135,1079,1102,1120,1056,1109,1103,1119,1130,1137,1116,1138,1058,1100,1147,1130,1126,1077,1035,1091,1087,887,947,912,963,979,912,973,973,955,956,963,950,935,970,989,974,945,1010,994,911,991,930,979,980,957,960,691,691,705,683,686,725,686,664,667,710,682,718,698,703,686,657,685,695,709,677,729,690,723,731,724,705,720,730,708,751,726,726,723,735,721,719,709,720,734,688,738,733,721,704,716,720,716,721,725,673,689,688,680,683,682,687,681,673,688,688,702,687,694,678,673,669,675,704,718,703,680,673,677,638,639,617,628,637,654,665,647,634,655,635,643,651,657,632,658,654,661,650,655,668,643,650,644,655,667,656,656,641,621,645,647,1092,1067,1065,1100,1019,1056,1050,1051,1031,1047,1064,1041,1062,1041,1082,1110,1113,1073,1076,1090,1048,1053,972,977,981,990,958,981,975,995,953,947,950,1008,1009,1012,995,982,992,975,984,999,976,975,952,1012,1019,986,743,706,723,731,758,729,732,725,739,728,744,753,727,711,709,776,738,694,745,710,697,722,690,729,724,712,705,696,698,711,713,711,705,713,704,716,698,711,687,726,711,703,1080,1135,1164,1082,1111,1133,1141,1123,1173,1098,1121,1132,1152,1154,1168,1175,1136,1137,1120,1161,1113,1082,1142,1146,1143,1102,1110,1130,1018,990,995,1026,1046,1015,1012,1000,1005,1027,1044,1020,1034,1046,1019,1046,1014,997,997,999,1033,1013,1014,1019,1030,1018,1025,1019,986,925,887,899,893,894,889,891,886,880,904,893,889,919,913,890,894,883,897,890,877,918,877,903,891,909,906,898,905,891,902,835,808,829,810,839,841,826,832,814,803,797,819,825,816,826,827,850,844,806,806,811,826,829,685,678,690,677,704,691,689,719,717,722,676,712,688,692,694,706,722,720,699,710,685,692,702,722,701,692,710,712,696,708,729,708,719,702,685,711,688,696,722,698,707,699,724,693,709,736,697,745,763,761,753,762,768,732,751,738,758,765,765,752,720,742,782,758,750,734,754,956,989,973,950,983,963,999,992,1020,983,982,967,983,987,963,998,993,982,1004,955,1049,1065,1056,1077,1070,1052,1103,1058,1025,1079,1063,1047,1056,1057,922,936,918,930,941,909,957,926,957,933,939,927,943,934,945,945,923,930,932,987,925,918,961,957,946,925,942,922,917,952,945,932,678,655,685,672,682,713,690,683,675,672,673,693,690,667,693,672,700,694,682,677,689,668,673,681,687,680,706,676,686,1110,1117,1063,1108,1095,1081,1115,1075,1100,1093,1090,1085,1091,1144,1087,1090,1072,1056,1106,1046,1049,1090,1072,991,980,961,966,1015,967,958,965,971,976,944,959,994,946,996,968,957,975,971,954,990,944,966,959,941,966,997,719,714,725,731,737,728,691,703,745,734,717,739,717,724,722,732,684,725,712,697,706,748,758,703,739,728,720,722,693,944,951,941,916,951,957,941,935,910,953,967,933,963,965,934,919,930,914,949,922,936,950,949,949,968,948,930,808,814,815,823,819,808,808,795,835,826,805,796,799,793,807,791,800,811,822,799,810,803,832,808,801,1095,1094,1079,1076,1074,1073,1077,1054,1052,1082,1102,1086,1087,1093,1077,1058,1063,1061,1095,1075,1048,1056,1085,901,861,890,883,893,883,889,871,910,894,930,893,871,899,828,886,869,876,873,696,710,678,671,694,693,689,700,703,698,682,699,698,728,702,727,710,689,715,695,685,683,700,704,703,729,699,690,726,718,723,709,710,706,705,719,686,720,699,717,719,705,718,730,718,723,705,703,708,1109,1098,1094,1094,1106,1125,1113,1144,1077,1133,1126,1123,1110,1114,1105,1143,1128,1093,1137,1176,1130,1068,1112,1088,1099,1097,1129,964,958,994,991,977,960,978,972,953,975,969,968,955,983,957,936,981,979,938,957,983,990,937,984,981,944,964,946,952,963,929,967,953,951,961,660,668,706,682,708,687,673,632,670,663,663,688,616,590,599,604,585,602,577,599,598,598,585,592,592,602,599,590,615,591,611,607,607,600,585,599,604,583,626,642,625,646,638,625,622,622,617,648,654,650,632,647,615,626,614,648,653,639,638,625,1161,1146,1296,1215,1227,1195,1199,1130,1176,1248,1223,1226,1176,1158,1179,1218,1168,1224,1161,1243,1178,1193,1134,1195,1210,1203,1134,1255,1220,979,955,1000,983,952,998,962,973,939,1023,967,987,954,969,951,967,971,966,971,990,937,1017,1002,965,978,1004,625,634,614,641,661,648,664,639,607,674,644,644,654,615,640,626,616,659,853,855,886,892,902,889,899,863,891,878,873,871,875,867,854,898,851,899,893,904,910,911,890,927,988,962,973,939,959,991,935,947,962,939,960,953,951,1003,950,925,945,954,956,934,941,949,954,957,971,957,944,956,993,977,962,977,988,987,990,984,958,993,989,956,967,991,992,976,994,977,960,998,980,1006,1000,987,977,991,1054,1049,1036,1057,1058,1049,1047,1044,1039,1068,1057,1057,1070,1066,1058,1076,1061,1072,1052,1053,1069,1062,1051,1077,1034,1042,1044,936,941,936,977,916,928,934,961,907,942,946,941,940,911,944,939,922,952,936,908,961,944,903,945,921,930,906,932,682,705,682,678,679,722,690,672,672,668,715,723,643,691,687,729,711,689,667,719,708,696,694,668,680,644,653,647,648,663,668,643,654,656,666,648,662,652,657,644,647,659,1119,1176,1192,1138,1129,1198,1214,1165,1202,1105,1161,1198,1155,1170,1148,1187,1218,1165,1186,1228,1171,1185,1150,1117,1156,1109,1248,1057,1038,1056,1057,1061,1050,1056,1058,1032,1043,1057,1027,1026,1041,1064,1040,1030,1082,1056,1079,1078,1029,1080,1051,739,695,729,727,743,694,716,703,719,716,704,688,698,732,704,707,725,721,754,710,747,714,698,721,690,775,689,684,676,668,671,665,661,658,672,676,650,642,683,674,666,666,674,670,665,669,672,676,682,671,651,686,685,702,666,669,652,686,680,669,663,914,956,959,944,951,947,941,968,926,926,929,967,971,970,944,972,948,938,932,946,952,949,961,952,930,993,952,768,775,809,761,764,759,790,739,768,777,759,768,751,764,758,738,771,754,778,776,768,774,783,934,931,929,882,928,923,906,893,895,905,939,948,924,922,906,929,933,938,933,939,902,919,939,967,944,935,942,939,960,940,934,944,930,931,942,939,931,955,958,968,955,688,686,677,745,718,725,684,723,688,680,721,713,702,670,725,687,684,692,701,722,690,683,715,1159,1163,1121,1167,1172,1213,1138,1093,1146,1157,1102,1166,1203,1213,1127,1164,1180,1162,1175,1146,1087,1189,1150,1163,1101,1213,1159,899,889,896,893,849,908,913,884,875,877,878,862,911,859,946,879,852,698,681,723,687,727,686,732,734,682,720,705,712,708,678,729,716,687,680,682,680,707,724,713,1010,1013,1001,1032,962,977,982,1023,984,967,1020,1000,983,994,1014,996,975,986,985,986,962,968,986,1000,1003,1006,1008,970,996,952,1016,1035,1067,1070,1054,1070,1085,1058,1055,1083,1069,1096,1073,1071,1071,1092,1054,1060,1065,1085,1059,1078,1081,1046,1088,1093,1072,1065,1057,1062,1067,965,985,986,979,982,955,951,964,958,922,976,957,964,948,969,947,955,940,935,971,967,932,1092,1082,1063,1089,1085,1094,1092,1082,1084,1057,1083,1068,1082,1102,1072,1103,1083,1117,1071,1081,1115,1082,1088,1095,1083,1087,983,1005,1002,1026,982,1001,1011,1009,1011,1007,980,1015,994,999,1009,1009,997,989,1012,1004,1011,989,724,747,690,723,700,742,714,733,787,767,696,699,738,755,689,734,743,730,736,743,728,769,750,891,894,881,907,887,893,899,886,867,868,875,893,882,887,874,887,889,896,898,890,874,906,869,822,839,827,818,856,816,819,818,811,821,801,820,809,815,812,830,815,839,800,847,818,805,824,826,812,815,823,738,719,733,714,753,728,718,722,728,727,724,736,742,730,727,744,706,711,728,728,1011,1010,997,1013,1020,1002,1017,1040,1022,979,1009,988,1057,1033,1006,992,1017,1049,1028,1046,1017,994,999,848,860,853,861,863,862,872,885,855,871,891,872,858,834,862,869,860,863,892,873,869,856,881,851,865,872,895,886,848,891,889,733,726,739,716,735,763,738,736,732,732,716,724,745,719,730,739,736,739,741,721,725,740,726,733,740,735,718,722,741,714,709,717,713,706,712,708,709,707,710,718,718,692,703,711,712,691,717,709,701,927,946,912,949,922,960,933,935,940,907,939,943,954,911,947,925,948,923,914,956,926,946,939,919,1050,1057,1050,1067,1044,1058,1054,1067,1043,1056,1053,1019,1029,1051,1057,1057,1073,1063,1083,1044,1046,978,949,973,958,958,961,966,982,974,974,980,989,980,980,965,983,979,975,951,975,963,808,816,824,843,818,822,826,825,831,806,835,849,819,815,823,812,832,820,817,794,783,819,825,833,807,988,1016,980,1013,1020,1016,1026,991,999,1031,989,1014,1011,1054,1045,1024,1013,1000,1006,993,994,1003,999,993,1020,1032,1010,992,985,1034,998,1002,1023,1005,1000,994,1013,1022,1002,1025,1002,998,1027,999,982,1001,1021,1000,1020,985,1010,1024,1011,1014,986,983,1002,1005,1017,1001,1023,1043,1061,1043,1042,1036,1053,1065,1032,1061,1059,1053,1034,1040,1025,1062,1046,1039,1045,1030,1050,1043,1039,1058,897,921,902,867,898,874,918,905,879,910,917,906,904,914,871,882,909,867,864,846,901,929,862,1070,1044,1081,1049,1064,974,1077,1012,1050,1065,1004,1055,1024,1037,1085,1027,1017,1046,1037,1075,1072,1083,1061,1043,1068,1023,1040,1028,1042,1033,1018,1022,1065,1049,1015,1023,1003,1055,1042,1034,1063,1013,1029,958,937,902,904,907,946,923,932,961,968,930,954,962,944,936,939,930,922,909,920,920,940,919,947,908,909,909,917,906,910,923,908,937,921,921,897,928,927,930,949,920,915,925,857,841,836,867,861,833,838,853,843,824,876,837,824,875,840,845,844,839,832,844,826,836,852,864,843,850,693,678,656,676,673,693,689,672,685,655,681,661,671,652,690,707,672,666,683,1037,1058,1021,1029,1048,1018,1029,1036,1036,1021,1050,1037,1021,1012,1017,1034,1011,1017,1008,1014,1052,1046,1035,1061,1009,1027,1000,1006,1018,990,988,1020,1005,1003,1003,1004,1003,1002,999,1035,1016,992,1013,994,991,970,1014,987,1017,1004,994,1000,999,992,1011,999,988,989,1000,900,886,909,912,936,894,913,875,916,900,917,905,890,918,922,906,891,910,898,899,875,899,884,880,1025,990,1071,1019,1062,1042,1016,1013,1034,1023,1019,1013,1040,1030,1035,1020,1025,1024,1039,1044,1018,1015,1039,1005,1029,1010,994,1010,1029,1019,1036,1024,1027,1020,1037,1021,1037,1040,1016,1024,1034,1031,915,942,935,937,907,957,914,930,926,952,918,929,934,940,919,944,941,903,960,922,944,949,916,937,930,903,904,879,904,904,910,892,920,906,899,899,900,919,920,903,892,901,678,699,720,712,674,694,716,654,669,691,654,675,682,704,680,677,691,691,687,683,675,649,697,657,684,681,694,672,585,613,620,608,593,584,617,595,605,624,588,599,607,621,593,619,602,589,596,603,618,618,602,599,627,656,661,682,672,663,674,648,667,656,652,655,652,660,682,643,643,640,658,691,655,672,661,643,660,663,665,675,695,676,672,662,659,685,688,667,674,670,642,666,668,679,671,663,683,662,650,640,645,631,620,638,639,633,642,609,640,633,643,620,625,623,631,628,627,624,642,638,649,627,629,631,641,646,623,677,683,671,682,688,671,660,665,678,666,667,668,675,663,686,678,674,648,650,678,683,675,675,656,672,679,666,674,634,672,664,657,670,681,656,661,677,663,652,660,642,643,642,658,685,652,662,635,657,648,636,628,637,642,647,656,645,640,653,649,655,644,652,661,638,648,639,646,643,647,635,680,675,692,692,704,688,695,682,694,707,706,683,685,680,695,689,723,677,720,688,695,698,964,982,1021,1011,1010,1042,1051,977,1030,996,1003,1025,972,995,1005,1021,975,1002,961,1000,1003,1013,1005,985,995,1035,1020,833,812,816,811,813,836,777,838,824,830,851,797,835,805,807,828,796,805,835,830,803,826,964,973,979,994,1000,988,997,998,987,991,990,1001,985,990,985,958,967,979,982,977,967,975,969,998,968,974,966,1041,1034,985,1036,1044,1012,1021,1018,1029,1017,1012,1026,1033,1036,1024,1044,1033,1022,1002,1017,1031,1004,1023,1058,988,950,981,971,955,960,953,967,972,991,956,962,963,959,951,981,961,936,938,939,966,965,966,961,956,966,967,976,964,951,971,838,840,874,862,850,852,862,843,841,887,858,835,853,853,848,866,852,844,863,851,877,836,863,864,865,853,849,854,868,855,704,725,723,727,682,724,700,712,705,732,726,716,710,704,692,726,723,733,693,706,699,694,733,739,694,643,673,683,656,671,651,653,635,674,657,658,647,659,658,660,637,690,652,659,660,662,626,697,658,667,1083,1176,1175,1198,1169,1109,1188,1187,1194,1173,1171,1196,1173,1191,1201,1135,1248,1215,1159,1160,1161,1170,1175,1163,1202,1168,1201,1206,1161,1183,1207,979,948,1039,994,963,988,995,928,955,1018,975,984,986,968,997,978,956,983,948,986,1007,987,953,967,730,750,735,721,731,777,746,735,755,743,731,762,721,766,704,714,745,733,732,735,729,739,747,755,835,843,841,825,844,860,835,834,840,834,836,818,835,832,824,823,822,837,842,834,835,837,849,841,834,837,1036,1007,1001,1017,1032,1025,1013,1054,1045,1017,1020,977,1006,1034,1022,1032,1034,1032,1019,1028,1042,1009,1024,1002,1011,1032,1017,993,1022,1033,1020,1027,1013,847,872,862,876,849,876,860,857,868,858,863,854,868,859,880,874,840,857,850,868,867,712,718,678,704,726,688,695,727,699,683,706,704,688,684,692,703,696,687,694,684,700,698,910,852,872,870,852,893,855,868,874,876,851,911,841,873,845,877,907,871,873,875,878,885,868,855,874,871,853,1050,1031,1061,1018,1021,1006,1039,1001,1002,1028,1065,1038,1044,1042,1048,1056,1047,1002,1056,1050,1025,1046,1037,1000,1028,1057,990,1067,1050,1037,1021,1032,1005,944,1004,938,972,970,995,948,973,947,1016,961,970,964,961,989,968,967,985,972,949,984,978,955,951,975,975,667,657,631,633,651,655,669,666,655,663,663,642,642,673,631,679,646,678,646,627,655,653,653,646,637,634,642,649,668,1047,1084,1059,1070,1056,1081,1037,1068,1078,1098,1050,1050,1026,1071,1044,1058,1060,1083,1018,1029,1059,1050,1067,920,984,983,907,950,922,972,953,959,931,961,975,936,958,901,928,947,941,1065,1069,1057,1103,1104,1079,1075,1097,1078,1098,995,1056,1055,1082,1056,1072,1102,1061,1074,1078,1094,1106,1114,1089,1112,1093,1101,1087,1091,1109,1092,1094,1112,1103,1090,1105,1114,1092,1098,1101,1074,1109,1093,1073,1110,1082,1095,1101,1089,1103,1096,1086,1086,1082,1103,1083,1093,1095,1110,1096,1103,1086,1099,1100,1111,968,968,952,934,977,964,955,960,944,957,967,948,930,934,959,943,963,944,954,940,946,970,942,713,722,734,715,735,700,708,704,669,688,707,713,688,719,737,709,712,705,730,738,744,916,885,871,848,884,862,890,923,903,901,931,940,918,936,913,875,900,901,835,846,864,867,845,836,841,839,853,858,822,840,860,826,818,850,848,842,835,850,853,851,839,846,825,832,823,830,833,818,815,818,834,818,836,831,822,832,825,703,720,701,714,720,712,692,714,718,703,699,718,743,692,726,717,699,727,712,725,726,704,731,700,716,729,720,702,941,985,958,950,924,916,983,957,942,919,938,952,930,942,914,983,979,967,956,938,946,753,726,730,741,723,703,681,699,740,735,718,732,718,734,725,697,720,709,739,727,729,710,739,759,709,1120,1152,1100,1134,1148,1131,1111,1101,1122,1132,1100,1132,1146,1166,1159,1160,1105,1176,1178,1124,1121,1115,1151,1171,1162,994,959,994,990,971,954,949,971,976,953,964,972,988,992,972,985,967,962,945,960,970,961,963,998,632,650,659,630,650,663,643,612,690,669,650,666,669,664,646,637,685,644,637,643,662,669,663,647,671,651,689,699,659,682,693,703,688,685,700,666,702,723,671,660,665,670,682,677,669,684,687,669,684,674,691,679,674,685,676,685,680,679,694,701,677,714,680,715,681,696,688,672,670,690,684,679,701,682,675,673,675,662,645,667,636,648,673,627,659,664,652,691,662,676,655,668,652,658,658,658,645,665,655,642,647,642,652,649,664,659,649,657,646,635,663,644,643,636,669,659,646,656,630,630,662,657,642,651,638,661,920,956,936,975,976,932,967,984,992,1023,945,1027,1004,935,952,981,947,990,1020,986,785,747,754,777,770,775,761,762,745,759,754,723,739,732,765,738,721,751,751,764,736,763,791,758,733,763,695,718,699,762,720,730,703,741,721,715,717,703,696,744,741,692,721,708,704,706,721,747,721,714,733,751,740,746,752,730,737,765,757,742,729,749,731,759,732,759,747,755,735,765,768,745,763,748,741,728,744,723,759,703,694,675,676,697,662,667,673,678,676,691,695,674,682,690,674,669,678,677,670,667,668,643,654,668,666,696,660,682,652,623,627,618,639,639,632,632,661,633,646,626,646,614,612,628,631,626,648,625,637,647,634,624,632,631,616,630,953,943,979,985,965,964,991,1000,964,979,985,975,977,1019,998,962,992,961,989,965,963,1004,996,813,778,778,830,781,793,761,798,776,822,769,798,787,819,788,788,784,840,771,778,793,804,762,946,935,944,939,975,952,928,941,907,935,931,925,967,925,962,941,937,931,974,915,907,960,931,933,936,942,920,938,928,884,827,870,853,844,863,857,835,830,852,845,846,856,850,835,880,850,871,818,860,853,850,845,855,852,870,833,838,846,862,854,804,719,717,735,735,687,706,710,691,718,682,688,710,705,719,734,730,749,708,708,716,701,707,703,710,709,685,684,709,675,675,644,643,640,656,672,655,671,633,642,646,660,647,654,648,678,655,648,651,643,649,659,661,669,694,696,701,689,674,685,682,683,683,695,695,679,676,704,684,682,699,697,674,672,686,671,698,675,676,697,686,668,703,693,1122,1147,1116,1164,1160,1144,1123,1162,1188,1124,1163,1157,1133,1164,1161,1180,1193,1193,1121,1165,1147,1152,1154,1175,1158,1158,996,986,987,993,1017,1017,1001,987,987,996,973,1000,999,979,978,1022,996,1000,962,950,979,1019,1040,1038,1049,1017,1016,1042,1024,996,995,1021,1033,1021,1004,1021,1031,1027,1035,1041,1043,1017,904,899,922,913,857,919,891,875,873,921,890,874,913,884,916,919,881,901,867,877,886,891,895,883,893,900,883,889,917,1027,1047,1038,1055,1052,1040,1065,1044,1031,1037,1029,1037,1044,1061,1022,1056,1042,1035,1031,1041,1018,1044,1050,1045,1073,941,934,945,942,949,947,936,960,934,919,940,955,961,913,931,948,943,942,953,940,908,929,929,945,946,926,927,933,726,723,720,725,745,710,724,724,714,727,735,687,730,719,730,731,739,686,878,885,903,905,905,885,916,885,896,905,930,912,907,896,895,898,877,888,903,898,901,893,828,847,822,809,813,818,828,830,832,834,831,840,825,843,830,838,828,823,831,829,813,837,842,823,821,709,709,708,723,722,708,714,707,714,705,719,724,697,687,713,734,692,693,703,713,689,707,710,712,728,700,707,719,689,722,870,879,887,865,871,868,885,875,876,860,892,847,860,841,901,883,875,915,834,849,860,886,853,873,833,862,888,871,854,1035,1007,1020,1019,1022,1036,1010,1034,1028,1000,1035,1028,1020,1032,1019,1021,1029,1032,1024,1032,1025,1033,1024,1018,1027,1028,945,953,960,952,955,959,948,942,954,941,919,937,945,952,942,935,938,940,926,933,942,940,939,934,942,940,950,957,902,936,929,925,897,899,924,902,890,925,904,935,899,913,901,918,881,901,893,903,919,912,891,908,699,682,683,692,656,679,700,698,643,694,683,683,676,668,712,660,653,720,703,677,651,646,635,661,660,647,649,657,650,643,653,646,635,654,659,660,636,674,653,636,662,654,637,642,665,654,638,654,641,958,948,938,966,953,947,982,967,988,954,948,936,975,967,945,956,927,953,921,907,927,855,830,852,856,873,838,862,846,852,851,860,847,859,850,861,855,887,675,688,692,667,691,684,681,683,707,690,687,694,697,675,671,701,686,672,676,696,687,678,692,671,673,702,667,693,1076,1092,1087,1103,1087,1090,1095,1101,1108,1077,1095,1090,1065,1084,1087,1071,1090,1069,1106,1091,1097,1078,1083,1100,1081,1006,991,964,963,976,970,987,1000,1006,1002,986,940,959,986,969,986,976,951,958,966,984,934,988,992,874,932,888,905,889,889,887,881,887,893,886,884,885,914,874,901,899,890,896,892,904,877,889,1113,1097,1113,1086,1092,1113,1104,1092,1101,1101,1096,1090,1118,1114,1096,1119,1091,1130,1121,1115,1107,1111,931,915,884,905,951,947,949,901,956,904,959,914,903,934,916,898,963,948,945,933,946,882,893,956,600,614,636,638,593,593,615,617,619,625,609,618,632,645,591,636,587,617,620,618,641,656,611,628,641,623,637,640,633,650,651,624,632,620,640,637,640,637,647,645,665,1100,1109,1188,1169,1207,1121,1200,1193,1190,1156,1110,1199,1180,1142,1160,1177,1175,1103,1175,1105,1205,1179,1061,1048,1068,1080,1096,1061,1081,1052,1059,1091,1052,1072,1070,1076,1051,1070,1053,1103,1053,1074,1065,1055,1050,1059,1044,1034,1069,1053,1031,1080,1069,1074,931,936,915,949,959,936,938,963,962,908,957,938,931,960,936,949,943,948,928,942,912,942,934,933,950,935,831,815,798,772,788,777,774,811,782,823,829,795,785,806,796,785,827,794,802,810,787,791,999,963,945,940,967,966,980,970,962,971,980,973,959,949,974,1000,953,979,983,1000,967,992,974,981,974,962,980,954,958,1051,1060,1040,1034,1047,1021,1047,1073,1058,1084,1060,1048,1056,1074,1056,1038,1048,1042,1027,1064,1046,1055,1065,1047,1063,1027,968,962,971,972,954,965,990,959,975,1005,1017,982,967,971,979,989,988,997,967,965,978,721,701,698,655,678,654,679,680,706,678,718,669,678,674,706,704,675,650,708,708,685,722,679,682,683,678,676,669,683,677,690,682,676,671,667,676,652,661,682,663,679,678,666,642,696,673,702,698,701,679,683,683,684,683,691,706,702,690,687,688,687,710,1053,1076,1037,1043,1018,1048,1014,1050,1037,1029,1044,1015,1023,1066,1057,1013,1031,1060,1011,1037,1123,1008,1043,1022,1038,1040,1027,1018,1053,1069,1036,1049,1080,1046,1056,1067,1060,1043,1058,1072,1060,1051,1029,1073,1052,1049,1054,1060,1056,1064,1068,908,943,946,924,913,924,907,914,932,937,898,920,884,919,919,904,922,919,934,905,906,909,921,927,920,919,927,917,932,919,1082,1086,1084,1136,1098,1116,1095,1116,1071,1072,1099,1097,1124,1104,1100,1089,1118,1086,1088,1121,1100,1107,1082,1115,1075,1099,1106,1117,1100,1083,1103,1011,999,1037,990,1013,1020,1002,1026,1000,979,1011,1010,1012,1004,1022,1027,983,983,989,993,983,1005,993,1014,972,897,868,899,873,873,883,900,908,902,885,867,877,896,878,882,881,888,880,869,903,874,867,875,903,1047,1036,1067,1058,1060,1058,1056,1031,1056,1056,1067,1060,1046,1049,1037,1035,1063,1058,1073,1059,954,947,955,949,949,944,950,952,937,925,938,939,956,950,928,957,920,959,943,933,942,972,932,922,924,922,925,907,940,944,939,932,931,946,920,942,914,932,906,914,940,937,949,934,925,845,866,834,844,845,856,849,839,823,844,870,843,847,867,843,840,838,859,865,733,739,715,715,741,740,732,729,725,726,714,725,709,703,718,739,731,729,726,732,728,715,748,710,736,721,712,725,718,730,747,694,715,717,697,703,681,691,696,708,700,705,734,721,704,695,711,698,703,687,703,694,693,709,706,701,695,691,704,697,713,698,698,913,966,936,923,905,940,904,963,937,894,933,959,895,950,903,967,909,942,923,929,1022,1020,1079,1069,1019,1029,1048,1026,1017,1066,1059,1033,1059,1020,1021,1046,1079,1044,1069,1057,1038,1031,1042,1039,1050,1040,1079,1050,962,964,925,920,991,973,959,954,984,948,947,912,961,946,923,933,937,956,969,932,936,971,964,940,937,941,964,947,965,928,937,643,622,663,658,651,638,679,669,682,656,623,693,633,690,669,637,653,686,684,638,682,702,682,646,617,681,686,640,663,616,638,630,662,638,597,631,659,628,647,656,630,612,635,616,650,663,611,638,642,619,622,639,619,646,643,626,975,1007,963,994,940,947,977,1013,962,890,911,962,935,964,951,979,960,944,921,947,948,949,1011,961,966,847,860,851,843,863,879,825,845,874,844,847,862,876,862,880,889,873,837,867,862,669,657,658,676,669,658,682,669,674,692,679,661,686,671,640,692,666,661,671,696,658,662,667,682,665,684,1071,1060,1067,1070,1077,1076,1062,1060,1073,1035,1110,1069,1080,1065,1086,1060,1073,1042,1052,1062,1080,1086,1084,1108,1065,1056,1065,958,909,877,910,924,915,909,930,930,919,891,906,928,926,924,902,914,914,902,891,910,896,911,901,940,895,924,927,647,671,667,682,709,683,675,669,670,664,684,658,681,673,652,713,675,679,694,657,689,686,677,661,681,677,657,677,678,684,663,664,641,661,667,1031,1037,1046,1018,1057,1013,1086,1042,1021,1029,1061,1030,1032,1074,1030,1070,1052,1043,1045,1056,1006,1032,1039,1031,768,762,732,755,739,765,759,762,757,768,748,773,758,761,772,747,755,759,748,773,1026,1099,1069,1106,1030,1064,1070,1037,1064,1044,1058,1073,1036,1100,1033,1099,1074,1083,1071,1036,1065,1055,1030,1070,931,906,939,939,890,921,897,912,943,922,917,919,933,926,930,957,926,926,937,932,620,647,649,687,629,667,663,629,635,677,640,650,629,652,627,645,657,650,650,683,659,904,935,924,934,895,909,959,929,936,957,957,866,931,934,944,893,925,942,931,920,937,838,848,840,831,834,817,837,833,819,820,824,860,857,836,827,832,847,829,816,855,842,822,833,835,834,829,717,689,694,703,716,672,719,691,723,677,687,694,697,690,718,709,693,705,705,681,698,1156,1168,1170,1191,1185,1184,1178,1167,1187,1170,1146,1183,1165,1148,1183,1191,1156,1196,1174,1138,1220,1230,1158,1136,1179,1214,1152,1131,1037,1031,1046,1053,1043,1038,1031,1057,1049,1000,1073,1043,1068,1054,1031,1024,1059,1020,1039,1059,1024,1059,1036,1041,1043,1028,1031,1037,1012,1063,1027,689,700,699,705,670,677,668,668,671,639,691,678,673,670,674,712,708,696,657,647,685,751,734,720,732,762,756,730,752,731,751,779,758,745,729,741,718,726,752,744,677,671,689,681,668,671,661,686,677,657,685,670,695,674,678,668,666,685,669,673,677,680,669,682,665,685,653,1137,1167,1155,1127,1119,1207,1135,1210,1155,1112,1131,1107,1209,1148,1100,1125,1198,1124,1115,1171,1160,1140,1170,1171,1159,1129,1016,987,1023,999,1039,1023,987,1032,1028,1013,1012,1031,1003,1071,1048,1023,1006,1003,1049,1049,1031,1043,1037,1051,1012,1001,1028,1037,1007,902,878,903,934,872,920,908,889,910,902,888,905,884,904,899,915,896,898,923,923,904,886,911,753,780,782,777,775,743,738,752,735,700,756,775,745,761,754,745,758,750,770,720,742,746,749,737,738,747,738,729,730,723,723,722,713,719,695,700,717,721,748,713,706,711,705,696,736,698,711,1102,1149,1137,1180,1136,1162,1141,1144,1156,1119,1130,1122,1108,1110,1135,1094,1131,1178,1166,1150,1139,1086,1112,1101,1098,1111,1050,1091,1091,1085,1074,1052,1100,1103,1123,1079,1063,1075,1063,1088,1074,1081,1079,1082,1096,1115,1075,1074,1018,993,1002,978,1002,975,979,1008,967,995,982,965,996,974,959,960,1006,966,952,956,1002,987,963,970,992,952,688,696,697,666,678,651,691,681,706,662,667,687,709,692,658,669,669,707,702,676,674,684,669,640,678,705,688,715,672,690,679,655,661,669,678,675,684,647,692,658,661,655,660,665,655,683,663,679,652,666,695,669,669,673,673,657,693,714,698,696,719,745,711,722,730,724,704,707,723,730,689,709,718,698,716,707,704,718,1008,1007,1048,1015,1023,1032,1033,1050,1000,1008,980,1001,969,1005,989,979,999,1018,1013,1008,1013,1012,997,1015,984,1012,1020,989,1026,1002,727,727,728,710,712,744,740,731,733,744,725,724,742,737,739,729,713,738,738,716,1106,1085,1118,1114,1129,1044,1115,1086,1131,1064,1101,1076,1093,1105,1097,1082,1138,1090,1102,1094,988,1018,1001,1013,1036,994,988,1003,1007,983,991,1022,1022,1000,998,1028,1037,1030,1034,1025,1019,1020,1000,1036,1032,1020,1024,1021,996,1001,1039,1034,824,824,815,811,815,851,832,831,812,820,825,835,821,782,821,842,824,821,816,831,828,817,826,832,631,643,664,668,655,689,659,652,646,665,673,669,641,672,648,670,629,656,692,653,670,672,670,645,665,601,597,620,608,586,587,599,601,608,607,601,602,592,595,614,618,609,598,589,602,597,587,607,605,598,589,609,644,609,660,660,652,636,644,633,644,652,644,636,661,629,665,649,682,625,618,640,636,642,658,661,621,1053,1044,1086,1056,1089,1055,1077,1064,1068,1055,1067,1071,1073,1037,1058,1048,1032,1074,1079,1075,1034,1027,1079,740,726,703,747,725,750,733,713,710,732,697,722,707,739,736,710,702,694,693,712,715,733,751,736,727,755,982,977,986,991,993,977,1009,1012,997,1004,999,975,989,996,1003,941,994,995,1015,997,997,966,1000,920,959,926,979,978,966,950,926,962,968,952,936,947,952,959,964,956,976,986,989,940,968,959,965,1009,971,1004,972,967,953,962,980,998,969,990,984,966,973,977,984,991,944,964,980,1011,977,960,954,981,984,877,855,887,856,866,900,866,870,847,859,894,857,862,893,881,846,859,900,852,876,891,880,915,853,853,887,862,861,861,883,864,861,847,638,641,632,657,613,639,638,615,637,624,649,632,642,632,656,655,632,618,630,619,626,631,643,625,637,653,588,623,1154,1146,1174,1183,1224,1253,1147,1184,1198,1167,1124,1220,1157,1219,1166,1133,1186,1210,1193,1188,1206,1294,1143,1055,999,988,999,1017,1021,1010,1036,1036,959,979,1002,952,1016,979,1012,1061,998,953,994,970,989,997,625,691,627,611,608,625,619,643,649,626,661,626,634,628,601,645,606,599,629,616,639,620,653,591,585,665,641,615,665,653,683,666,665,677,676,657,647,685,684,671,693,670,685,660,647,689,675,699,678,1047,1004,994,996,999,993,1011,1019,995,999,993,1002,1022,1029,994,991,995,1018,1013,1012,1008,996,826,780,813,799,776,800,828,789,818,763,784,806,797,797,787,830,832,816,806,811,819,764,969,983,926,954,969,1006,951,955,969,930,957,947,959,961,976,959,955,951,965,960,691,700,672,656,700,699,663,719,683,691,701,684,693,669,685,702,665,683,704,711,686,684,716,662,695,693,691,694,710,704,688,1037,989,1016,1052,990,1028,1003,994,1049,981,1031,988,1021,1002,985,1051,1027,1000,967,972,1010,1013,1024,958,978,944,976,993,958,1004,969,997,959,962,991,978,995,977,986,961,991,1009,944,991,1009,971,970,985,965,968,971,961,947,949,945,983,955,735,706,728,719,706,720,710,719,717,714,717,717,701,746,747,706,716,723,721,704,727,704,721,694,733,739,718,718,709,707,736,698,686,696,704,695,712,727,696,733,716,717,701,713,705,716,695,717,707,732,702,734,693,710,680,700,687,661,689,678,704,676,677,671,664,713,694,679,678,673,686,674,679,664,689,670,931,860,878,877,890,892,887,942,889,922,881,897,894,875,873,938,921,920,906,860,930,886,902,889,917,893,1119,1061,1089,1056,1117,1088,1128,1095,1103,1098,1095,1092,1094,1099,1117,1143,1111,1087,1123,1123,1088,1099,949,984,956,966,1007,971,1007,988,990,1011,955,972,956,986,959,965,988,951,999,960,1001,996,989,969,972,976,1136,1150,1163,1181,1134,1155,1175,1158,1137,1143,1180,1190,1167,1189,1172,1171,1137,1146,1162,1182,1127,1111,1141,1132,1057,1091,1065,1080,1054,1052,1074,1084,1075,1087,1058,1062,1083,1059,1106,1099,1074,1094,1092,1062,1076,949,983,953,967,973,972,951,954,976,969,949,959,948,950,962,964,953,939,955,964,950,965,690,695,693,694,695,692,686,713,737,686,697,691,690,686,706,694,703,699,715,696,671,690,665,666,681,698,680,722,713,692,679,693,698,658,662,691,677,671,696,667,688,674,669,680,666,662,711,668,678,658,680,683,704,702,736,699,710,712,705,696,715,694,718,703,731,714,713,707,707,723,1057,1075,1075,1093,1101,1033,1041,1072,1072,1059,1010,1071,1092,1034,1034,1060,1045,1122,1079,1067,1062,1021,1094,1038,1049,1063,1065,1055,1048,1063,1076,1074,1034,1056,1058,1046,1050,1066,1034,1066,1047,1070,1079,1061,1079,1067,1075,920,924,940,942,914,955,934,912,935,953,928,902,922,930,933,924,935,936,933,897,916,901,919,918,903,680,647,670,627,653,652,647,660,638,626,637,632,645,660,658,640,635,654,643,638,634,729,768,731,725,746,750,781,758,749,766,715,734,777,780,741,738,743,753,723,738,728,759,725,709,702,724,720,714,705,721,724,725,720,714,713,715,709,706,732,693,703,725,706,721,719,713,693,716,932,925,961,936,933,970,910,921,949,903,916,918,938,908,899,922,940,898,953,883,950,937,909,925,929,941,933,937,921,936,943,921,714,697,705,698,696,712,706,740,733,693,739,716,725,709,731,698,715,698,718,720,687,702,707,713,707,705,700,711,585,585,607,607,579,596,595,607,599,600,593,605,606,588,605,581,576,602,591,582,582,607,604,602,588,603,594,697,702,699,705,701,699,693,707,698,675,703,694,683,680,705,692,706,698,695,704,685,689,700,694,717,722,698,720,702,716,715,699,699,723,698,710,693,710,705,702,702,713,710,726,721,694,701,717,713,692,710,707,698,706,702,700,700,723,692,724,699,715,729,695,1031,1045,1048,1053,1067,1052,1071,1069,1055,1077,1055,1052,1041,1062,1095,1062,1092,1061,1081,1096,1055,1045,1090,1058,807,810,804,782,771,751,787,737,784,769,781,828,767,818,787,800,775,781,780,803,755,788,820,804,849,820,861,812,849,865,839,838,829,839,813,859,837,843,853,807,853,806,854,840,742,734,754,772,751,760,737,739,743,773,772,738,768,774,760,775,742,753,746,766,736,743,746,943,977,956,936,951,961,954,962,960,958,961,969,964,966,950,949,976,1007,1009,1000,996,1009,1051,1011,1010,1042,1005,1029,995,1025,1023,999,993,994,1020,1000,1011,1005,994,1027,991,974,1002,1006,1025,1002,1009,1005,1006,1004,1029,1007,999,1016,996,1009,999,989,984,1014,1017,988,981,990,1002,989,982,1003,999,986,1002,970,996,1009,1022,991,1007,1015,1019,1000,1008,1002,979,1004,997,1007,995,1012,1001,995,1004,971,1016,1014,1003,1015,998,1032,1040,1042,1017,1035,1045,1041,1034,1022,1052,1035,1015,1014,1023,1037,1029,1013,1039,1034,1035,1040,925,909,934,928,934,906,938,938,915,968,901,915,952,926,904,939,935,952,920,914,913,912,914,928,931,929,917,917,923,926,950,920,925,925,688,662,663,651,637,664,656,680,634,636,685,649,671,654,655,677,643,659,662,691,673,650,656,633,656,661,666,662,642,676,663,648,648,657,668,630,675,659,645,636,661,655,678,668,642,620,670,645,647,687,658,667,650,1031,1001,988,951,962,981,979,935,958,995,944,991,953,1001,965,961,976,980,1014,972,971,938,990,1002,1008,978,944,1026,1020,1040,1047,1015,1021,1002,1001,999,991,1023,1009,1017,1039,1046,1024,1019,1004,1050,1038,1029,1036,1035,1032,1036,1017,1035,1031,1016,1017,1028,1003,1034,1047,1010,1027,1015,1022,1020,1018,1019,1001,1034,884,866,874,875,871,917,880,877,907,903,889,896,868,848,879,876,894,899,889,882,875,880,1006,990,972,988,976,971,972,998,991,996,969,1004,982,1002,971,969,990,976,989,988,967,960,989,991,997,979,1013,955,992,917,924,911,932,954,941,944,930,968,938,967,969,950,947,926,942,938,944,936,954,948,950,933,928,919,965,860,882,879,880,867,881,883,885,841,891,881,864,888,885,882,888,875,856,878,867,874,899,879,872,856,859,888,864,879,857,896,873,878,892,1049,1044,1049,1029,1045,1044,1066,1054,1077,1056,1030,1027,1046,1049,1060,1040,1029,1050,1065,1033,1048,1064,917,891,937,918,925,890,926,910,904,902,925,892,930,915,904,907,912,896,900,909,697,705,657,720,674,706,683,695,696,659,697,686,696,696,689,669,713,724,692,692,690,682,703,721,719,737,733,693,707,717,712,733,709,733,732,709,726,705,703,733,720,733,734,718,701,710,720,972,940,932,929,954,946,911,926,964,913,910,946,917,920,962,928,978,958,906,923,947,925,959,957,849,852,858,856,843,840,827,863,829,843,832,830,837,849,832,841,853,842,837,853,828,838,832,853,677,676,689,694,715,707,700,691,693,683,691,704,704,670,690,707,665,677,679,679,712,680,700,711,665,686,694,693,866,849,838,844,841,842,889,832,863,841,849,854,872,860,825,798,826,833,811,843,814,822,838,863,855,854,706,808,706,725,730,722,742,736,740,750,718,728,708,713,722,736,710,734,721,723,724,719,738,691,664,662,671,678,675,668,682,669,694,675,681,655,697,671,674,681,665,671,665,673,649,676,670,678,671,696,712,702,697,716,719,710,702,716,697,716,710,695,692,687,694,718,686,704,714,722,706,703,1104,1127,1107,1141,1070,1083,1114,1091,1072,1123,1169,1123,1130,1105,1105,1124,1119,1101,1139,1122,1106,1119,1117,1080,1069,1010,1027,1041,1018,1002,1007,1046,1006,1035,1015,1012,1011,1025,1019,998,990,1025,999,1013,1021,1023,1042,1019,994,1037,851,879,896,879,852,844,868,894,857,868,847,875,881,877,866,863,851,852,881,900,858,864,879,860,862,878,859,853,810,832,822,807,820,847,825,821,824,838,846,813,812,832,815,835,827,854,834,831,827,863,806,835,835,788,825,833,714,683,718,711,716,713,719,724,701,711,708,707,685,690,722,705,684,704,678,1159,1207,1232,1222,1212,1184,1237,1178,1200,1183,1176,1217,1205,1163,1188,1148,1193,1289,1162,1198,1255,1210,1197,1211,1255,935,935,983,971,968,929,951,951,982,955,939,968,941,948,918,965,951,975,943,938,949,942,961,915,921,954,967,930,970,930,997,1009,1044,1005,1047,1064,945,1012,988,1024,1024,1031,1019,1009,1047,995,1037,993,1014,1029,1028,995,1028,1004,991,1006,997,1014,1022,1002,1012,1002,1001,1019,998,988,997,1001,997,1011,1005,1022,994,999,994,1000,981,1003,991,994,995,1003,988,984,1006,1002,1016,1007,999,1001,1007,986,1004,1015,1027,1014,1008,995,1006,996,1011,994,1000,986,1013,994,899,899,868,873,919,877,855,892,905,912,873,891,886,835,877,890,916,882,670,690,677,647,663,653,643,658,670,651,639,676,654,666,675,661,650,674,657,656,664,656,655,671,654,670,688,754,739,725,697,695,710,704,690,699,731,726,726,720,684,705,713,705,729,735,701,718,692,705,710,695,671,675,678,672,672,679,683,671,688,658,671,676,688,689,673,707,682,670,679,666,673,686,666,661,699,1187,1181,1156,1201,1180,1188,1184,1213,1162,1148,1226,1170,1169,1182,1170,1181,1208,1144,1226,1130,1145,1148,1185,1166,1223,1132,1150,998,1004,1030,1005,997,1033,1008,1008,1013,1002,992,1039,1039,1023,1026,1029,998,995,1036,988,989,980,1029,1004,1001,979,1017,984,989,967,1010,964,986,976,985,978,978,1031,1022,983,1021,984,990,1030,1017,1039,1040,1038,1032,1041,1017,1025,1035,1017,1019,1055,1044,1068,1034,1037,1034,1028,1018,1034,1031,1010,949,944,968,912,929,957,961,941,889,949,939,921,942,908,897,927,934,897,931,929,952,922,904,942,914,954,907,923,669,671,660,663,657,671,671,656,693,663,669,649,666,651,662,668,645,677,661,673,696,677,686,650,658,680,701,678,658,667,678,671,1068,1068,1003,1062,1056,1052,1057,1060,1066,1066,1082,1059,1088,1049,1063,1069,1084,1097,1033,1067,1078,1088,742,777,788,755,737,755,764,757,738,760,757,777,760,768,704,787,763,755,770,778,787,709,767,1142,1163,1160,1156,1145,1125,1170,1108,1120,1143,1152,1094,1127,1182,1137,1107,1133,1152,1138,1152,1182,1155,1166,1008,984,993,1000,999,1021,1000,1030,989,1021,1019,1029,987,1002,992,1024,1006,993,1001,1019,969,1014,1000,928,921,916,895,901,918,889,902,898,896,911,904,918,903,894,935,880,921,876,899,900,886,787,811,803,796,817,797,824,825,799,774,827,809,823,824,800,831,835,837,802,812,823,798,1067,1067,1083,1051,1061,1055,1068,1023,1077,1063,1055,1064,1044,1054,1062,1052,1061,1053,1035,1089,917,927,920,930,956,956,960,948,975,930,941,927,941,929,910,954,926,939,929,935,955,930,924,928,938,1095,1069,1082,1073,1076,1093,1087,1053,1103,1074,1092,1093,1088,1080,1086,1094,1071,1075,1081,1087,1067,1077,1093,907,908,944,908,857,912,882,929,897,899,912,894,921,939,951,925,926,911,945,938,889,974,951,910,924,920,936,619,625,624,614,606,620,617,621,617,613,630,622,594,602,621,588,611,615,629,635,604,598,625,613,628,1121,1120,1120,1068,1118,1085,1141,1119,1080,1108,1106,1131,1182,1151,1105,1153,1106,1120,1105,1120,1144,1118,1140,1137,1150,1126,1126,1107,1129,1157,1135,996,967,986,978,1001,997,1001,1001,978,992,971,982,964,954,1012,980,981,997,989,999,999,988,980,991,977,1021,960,996,688,689,703,676,687,679,704,696,714,649,691,728,673,673,711,705,678,678,663,686,698,684,699,697,683,707,703,695,666,693,695,729,737,734,746,719,749,707,724,711,702,722,722,706,699,732,710,713,712,741,711,722,714,737,709,733,752,745,738,741,739,705,706,682,686,700,690,701,698,693,685,682,689,699,693,674,679,695,699,678,684,692,699,703,725,692,671,679,668,692,684,685,1007,974,970,974,1001,994,1017,991,950,991,962,951,1018,1010,994,1034,980,985,972,1008,820,803,821,783,815,853,814,825,813,815,831,806,820,768,801,826,789,779,800,822,810,794,795,783,811,811,805,804,817,827,818,1006,1010,994,1007,997,990,1029,1001,1040,984,1028,1027,993,994,989,1015,979,991,980,978,974,1006,969,959,937,943,939,942,924,941,949,942,937,935,934,969,939,969,941,925,940,953,959,970,933,930,784,784,778,788,756,793,778,744,789,792,809,793,771,785,800,768,1036,1064,1052,1054,1070,1059,1011,1057,1075,1040,1045,1051,1018,1068,1031,1051,1104,1074,1024,1052,1075,1046,1030,1042,1040,974,985,995,980,958,992,960,993,1011,958,1004,964,980,990,981,979,984,980,996,987,971,974,988,1004,821,820,823,794,824,815,804,802,826,843,787,807,821,794,816,812,852,840,823,831,792,807,820,827,802,823,811,792,794,709,696,704,722,692,695,707,730,710,731,694,723,725,695,702,717,711,705,710,710,710,728,712,697,761,700,698,706,880,891,898,874,873,907,883,861,869,866,904,845,856,923,880,854,839,869,848,869,870,874,861,879,877,710,711,717,699,715,707,696,716,719,705,707,702,690,698,714,683,693,696,691,721,679,717,722,726,622,619,635,634,629,624,625,612,621,623,644,618,623,661,634,611,639,629,614,627,620,633,626,631,613,631,634,682,670,686,669,665,684,684,680,663,673,658,676,684,678,673,670,687,683,690,678,672,664,695,697,696,692,671,676,673,683,694,670,697,693,684,690,684,682,685,706,677,681,677,694,681,663,661,669,683,691,703,1117,1068,1150,1185,1123,1109,1136,1140,1079,1150,1131,1156,1193,1120,1053,1139,1105,1117,1137,1149,1131,1196,952,971,970,936,953,957,963,948,915,927,907,946,923,944,937,929,938,897,959,947,1100,1100,1080,1091,1081,1098,1081,1090,1096,1075,1087,1082,1095,1076,1079,1086,1094,1101,1074,1104,1090,1085,1097,1096,1088,977,953,969,973,980,976,1018,985,968,967,950,987,984,1005,968,970,984,951,979,989,994,811,801,764,779,794,782,770,788,788,803,764,756,791,791,799,797,776,785,761,811,810,791,657,664,647,667,678,674,667,654,685,685,676,683,656,707,653,634,666,682,683,674,649,663,591,609,613,589,604,582,600,583,605,605,596,581,576,601,612,619,591,597,588,600,592,576,632,619,597,589,596,583,668,647,671,674,676,657,664,663,665,694,670,712,640,669,671,679,682,667,659,687,674,663,682,683,684,676,674,753,765,753,761,759,762,727,752,752,761,763,782,763,756,748,777,758,975,980,967,966,951,985,958,988,970,955,966,982,918,940,985,986,943,981,1002,992,997,998,964,813,801,827,811,826,828,826,842,851,822,822,829,838,819,822,835,844,846,809,838,837,812,825,807,842,809,794,844,673,697,719,698,715,695,711,704,700,701,712,703,690,716,700,707,698,680,687,697,692,922,967,975,955,930,925,922,958,958,976,933,971,962,955,953,986,977,955,987,951,955,974,930,949,965,939,946,975,953,939,985,958,960,737,701,713,717,675,707,685,735,690,714,697,716,705,734,718,710,683,716,695,712,723,707,716,1117,1060,1078,1125,1086,1091,1036,1113,1117,1096,1115,1066,1091,1053,1112,1027,1122,1128,1097,1074,1105,1048,948,920,960,926,942,946,960,968,1007,938,956,939,950,922,963,940,931,938,920,919,946,978,932,955,963,923,920,959,928,932,889,878,865,869,888,871,866,890,895,877,864,873,892,875,871,880,885,897,868,883,871,893,879,868,901,866,869,872,710,711,692,683,723,706,704,688,688,698,707,715,700,702,717,702,730,669,712,728,712,696,711,709,691,687,680,670,695,703,700,683,672,680,701,669,686,692,675,685,696,681,717,670,685,707,698,696,703,698,706,686,679,690,723,713,693,695,698,679,706,693,689,692,713,709,701,962,966,943,953,958,950,936,986,971,979,978,952,967,975,973,932,928,981,980,939,945,940,967,953,991,975,967,998,779,806,797,782,813,812,803,790,788,787,780,816,807,806,795,802,814,826,780,951,955,973,967,964,1005,980,995,961,962,1002,937,975,965,987,919,942,976,988,973,1022,960,978,937,956,969,683,686,686,703,711,708,707,706,717,693,677,677,702,714,704,725,709,686,676,708,712,684,709,721,701,1086,1119,1093,1081,1094,1089,1068,1054,1091,1063,1073,1106,1110,1101,1021,1082,1051,1125,1059,1088,1118,1056,1066,1087,1075,971,973,993,955,960,987,947,927,953,951,948,945,986,970,955,967,725,716,719,711,731,728,722,719,707,697,755,727,726,695,743,722,702,718,714,717,726,719,703,713,737,724,722,718,734,725,711,854,855,872,880,860,875,894,877,893,864,879,876,881,897,872,883,873,873,872,871,855,885,869,877,862,873,896,670,675,664,655,695,652,684,658,676,661,684,667,641,676,678,662,664,674,670,683,665,658,672,633,628,610,626,615,641,600,611,624,646,604,628,660,637,638,596,639,650,625,605,634,631,620,611,618,627,734,722,753,742,720,715,738,751,704,707,726,705,722,724,717,708,692,1056,1059,1068,1037,1046,1012,1051,1060,1045,1065,1025,1025,1039,1046,1050,1015,1043,1042,1032,1035,1061,883,831,850,850,869,846,830,880,868,864,877,861,841,856,856,894,855,865,829,889,850,879,849,872,873,836,1068,1048,1074,1085,1074,1086,1072,1081,1068,1072,1047,1077,1046,1063,1068,1073,1078,1056,1056,1086,914,956,921,966,977,974,957,934,937,939,914,945,970,935,954,966,948,951,950,962,942,948,935,942,938,962,934,995,986,1013,980,993,988,985,972,983,973,983,1012,1011,999,982,985,996,987,986,991,885,878,886,900,903,875,882,904,889,877,899,883,888,903,895,882,877,930,894,912,889,905,899,883,931,888,880,909,871,907,616,613,616,634,617,612,615,639,643,622,635,613,624,619,644,625,626,642,650,650,652,625,649,659,668,659,670,660,653,652,656,653,634,641,659,649,663,717,704,723,752,695,688,698,686,692,700,715,704,727,708,687,719,708,687,719,704,724,695,706,704,1004,982,1014,984,1016,1011,990,1002,998,1003,1008,997,1004,982,1000,1005,1018,1017,996,1000,1019,1018,1013,1000,1036,1011,1034,1001,763,756,732,769,777,743,763,765,777,760,736,779,780,763,754,748,715,774,791,792,789,750,780,690,665,676,664,659,680,672,679,663,694,666,674,700,687,679,689,690,683,663,689,680,657,662,662,696,664,598,621,621,633,623,628,660,636,631,624,614,625,601,611,627,630,601,627,614,615,630,847,856,827,823,822,836,826,815,830,826,837,819,823,865,835,832,816,848,835,812,863,830,818,866,831,816,811,674,675,707,675,689,697,703,722,695,681,701,695,691,682,710,682,699,675,692,697,698,663,694,690,611,629,610,619,607,611,612,620,608,616,641,626,603,633,606,637,634,639,646,626,621,613,608,623,744,754,766,789,733,745,772,774,771,785,814,794,780,763,758,778,777,777,777,766,771,777,775,758,1057,1042,1053,1035,1010,1036,1044,1038,1036,1023,1036,1020,1010,1045,1054,1038,1010,1011,1054,1041,1054,1063,1039,1022,1025,1036,1026,1097,1066,1048,1071,1074,1097,1088,1052,1092,1047,1081,1088,1054,1059,1060,1084,1043,1071,1067,1043,955,909,917,944,907,916,911,928,935,942,994,913,915,956,941,908,922,922,894,923,965,941,920,922,883,907,949,912,912,882,958,936,956,949,946,916,667,641,659,626,644,627,639,614,644,642,643,627,645,623,629,621,621,655,625,635,666,650,647,660,656,630,641,624,639,642,668,642,653,651,658,639,623,647,665,660,651,1064,1009,1024,990,1018,1010,1020,999,1034,1033,1029,1021,1034,1019,1016,1020,1033,1086,999,1031,991,1071,1066,1085,1068,1076,1070,1074,1035,1061,1070,1054,1049,1076,1082,1057,1059,1057,1056,1082,1083,1058,1052,1070,949,955,933,974,979,940,919,943,954,964,976,952,929,960,958,976,972,961,940,960,954,951,989,970,693,682,636,660,648,655,707,695,667,664,669,686,666,643,662,712,680,667,677,654,692,656,636,645,702,655,660,628,621,626,619,621,610,627,636,609,631,624,644,635,637,612,629,648,616,631,622,641,635,627,625,643,622,614,1084,1043,1068,1027,1042,1083,1091,1026,1091,1085,1042,1076,1073,1030,1052,1070,1047,1034,1052,1030,1025,1049,1094,1053,739,742,759,745,765,748,741,781,737,752,760,770,747,763,712,738,762,736,761,747,1220,1245,1241,1304,1261,1200,1212,1282,1236,1237,1258,1280,1225,1212,1242,1227,1246,1216,1244,1264,1242,1236,1286,1000,1010,1054,1037,1032,1034,1006,1007,1049,1049,1028,1025,1020,1026,1016,1009,1044,985,1047,1005,1129,1097,1128,1131,1102,1118,1134,1110,1094,1107,1111,1107,1116,1110,1126,1103,1110,1112,1111,1098,1119,1103,1119,1111,1115,1129,1101,942,940,940,960,948,937,973,929,945,931,947,952,965,954,968,922,976,967,965,940,950,951,951,948,963,1012,1004,1021,1068,1072,1011,995,1067,984,1001,986,996,1044,1036,1017,1004,1045,1005,1020,1045,1034,1035,1038,1030,1043,1025,1050,1046,1035,1043,1051,1035,1037,1046,1040,1022,1055,1021,1028,1037,1036,1028,1033,1028,1017,1013,1017,1014,1019,1017,1029,1013,1040,1011,996,1007,1011,1018,1025,1019,1025,1031,1004,1020,1010,1019,1014,1027,1013,1021,1028,1031,1075,1117,1081,1097,1102,1087,1085,1078,1092,1065,1079,1088,1099,1100,1101,1095,1103,1080,1102,1094,1090,1121,1086,1077,907,906,920,897,900,925,906,913,901,930,936,898,932,933,907,922,905,898,905,911,912,924,923,868,902,1058,1053,1085,1070,1105,1068,1056,1067,1049,1035,1076,1071,1073,1084,1062,1074,1052,1057,1064,1038,1067,1060,950,967,953,944,969,948,969,929,948,920,960,943,941,937,942,968,935,950,958,960,951,970,941,964,940,947,940,932,934,929,635,709,681,678,672,662,705,662,684,678,699,683,680,657,683,687,647,679,664,646,699,648,685,1041,1020,1045,1039,1049,1052,1040,1046,1020,1047,1066,1040,1024,1039,1049,1063,1021,1035,1030,1027,1033,1000,1040,1034,1058,1024,1067,1047,1070,1031,1065,1024,1066,1045,1054,1084,1052,1047,1041,1028,1028,1043,1049,1048,1017,1078,1048,910,935,907,903,947,949,915,914,923,935,946,873,942,906,874,917,895,941,905,884,924,876,949,906,919,595,574,570,557,600,595,612,546,582,581,615,576,540,599,596,596,593,626,604,624,598,569,657,658,649,644,651,671,655,678,673,669,653,640,652,668,655,658,643,671,642,650,646,655,678,665,644,651,653,634,647,734,724,753,756,727,732,715,724,733,732,718,727,708,708,744,739,751,734,731,700,747,701,737,744,746,724,720,722,720,730,1041,1038,1034,1021,1039,1035,1027,1026,1047,1064,1033,1038,1029,1040,1018,1037,1037,1033,1061,1047,1040,1072,1038,1032,860,854,885,863,866,874,884,844,848,842,873,872,855,845,860,878,885,866,876,871,895,869,861,895,859,889,881,856,677,731,743,727,704,737,738,736,681,720,727,736,729,738,703,726,755,743,707,698,735,723,732,676,647,642,656,637,650,643,647,646,629,632,663,653,651,638,633,650,644,644,633,650,636,646,635,639,668,641,641,637,648,639,640,650,651,641,642,650,647,641,645,642,636,662,656,636,635,645,663,662,634,645,623,635,651,634,634,638,631,639,646,646,650,624,636,651,662,636,642,619,644,630,639,638,643,638,643,624,636,625,634,635,642,658,644,649,638,637,639,652,643,628,627,632,638,634,642,630,634,630,997,963,965,975,971,1018,988,977,922,950,986,985,966,964,963,908,977,989,996,998,934,982,958,961,938,957,975,962,961,940,952,980,987,754,753,728,749,743,770,754,740,775,742,757,762,745,767,746,726,782,762,744,764,757,761,757,738,781,722,717,728,724,737,713,730,729,712,724,716,714,688,703,722,710,722,735,748,796,815,804,814,779,817,826,809,796,805,815,802,811,818,802,830,823,816,806,771,788,839,800,791,821,818,815,815,822,725,726,728,722,705,718,725,703,723,720,723,711,713,722,714,728,710,730,712,693,704,720,723,718,724,713,937,954,945,917,936,959,910,921,933,949,938,922,937,962,956,917,926,925,961,898,874,932,935,939,924,937,932,929,905,1031,1012,993,993,1022,1013,997,1020,1033,1008,1033,1008,1043,1014,1008,1029,1024,1022,1006,1028,990,1058,1015,1021,1017,1038,1052,1003,994,915,906,909,923,912,917,876,874,878,883,907,887,880,896,891,900,899,923,904,898,911,881,903,897,893,888,1143,1116,1123,1130,1117,1113,1135,1121,1149,1082,1135,1129,1095,1104,1128,1104,1128,1114,1110,1131,1136,1019,1030,1004,1012,1019,1035,1017,1010,1037,1028,1021,1020,1039,1033,1046,995,1037,1003,1029,1038,1028,1030,1043,1033,1008,1051,845,835,833,845,836,843,816,841,841,843,838,841,832,815,822,797,833,833,863,847,678,663,675,662,698,652,672,696,674,667,682,713,656,665,677,710,670,688,689,680,686,674,648,669,695,682,689,1090,1067,1092,1061,1085,1125,1055,1067,1063,1056,1071,1114,1099,1086,1158,1101,1118,1113,1093,1098,1101,1074,1112,1113,1117,1104,1099,1121,932,927,967,920,964,911,934,978,961,943,926,963,914,937,919,944,931,909,921,913,909,943,899,1012,1038,1059,1003,1009,1051,1034,993,1028,995,954,995,978,1034,1015,1006,1003,1020,1047,1042,1009,1012,1027,995,994,978,978,1007,1044,1048,1047,1043,1059,1048,1024,1052,1048,1030,1041,1050,1044,1017,1041,1034,1038,1039,1023,1042,1042,1026,1053,1030,1040,1037,917,927,952,937,912,927,923,927,904,934,951,939,928,953,936,948,920,924,941,938,926,919,894,886,908,901,905,912,883,905,899,895,915,911,918,893,895,895,908,919,795,803,814,801,808,787,835,844,798,832,816,795,828,772,779,806,814,784,751,827,795,788,1001,998,985,1005,973,1008,1011,995,986,1011,969,973,996,1012,992,983,1042,1020,993,984,995,968,998,1001,987,1011,1005,1000,995,989,993,1002,1004,990,990,995,994,992,1000,988,998,1001,1002,1005,988,992,1001,1010,1004,990,1001,1000,1008,1026,1009,1020,1004,1035,1016,1020,1017,1019,1005,1010,1029,995,1013,1007,1029,1023,1046,1021,1023,1003,1009,1023,996,1019,965,960,970,948,937,966,936,954,973,957,954,963,947,946,933,940,954,946,938,986,966,941,948,962,713,708,727,702,700,736,680,711,691,731,720,728,716,718,721,702,735,717,715,723,718,692,689,705,680,714,711,688,666,658,647,674,671,646,666,660,637,639,656,642,639,674,666,664,674,649,673,650,666,644,664,664,668,647,1165,1108,1145,1101,1076,1120,1094,1080,1099,1107,1066,1123,1093,1106,1117,1087,1069,1112,1144,1113,1136,1096,1109,1133,926,943,926,935,923,940,933,936,925,935,916,912,935,937,954,939,927,899,929,935,924,704,713,730,690,708,720,699,689,725,713,701,736,706,733,730,728,708,738,723,726,726,711,697,705,1011,1050,1046,1033,989,1017,1010,1005,996,1050,996,1045,1033,1020,1033,1004,997,1031,1000,998,1011,1036,1057,1070,1000,1046,1011,993,988,761,794,747,788,807,857,815,762,778,802,787,794,764,804,755,784,786,781,761,806,768,790,757,946,988,951,987,951,965,982,957,973,975,991,961,978,977,951,965,980,941,971,968,967,979,939,974,956,857,852,876,881,848,861,887,849,872,875,864,864,870,868,874,876,863,880,864,886,873,864,861,858,898,834,834,813,821,834,826,815,840,821,799,816,826,829,816,810,835,805,807,833,832,834,847,814,843,823,829,819,861,825,826,834,816,676,685,680,684,667,667,677,684,687,683,682,698,699,656,678,668,672,670,673,681,696,640,634,627,622,617,661,642,637,641,629,623,632,642,617,621,606,617,645,646,630,634,646,656,625,617,610,604,625,594,600,614,620,603,607,597,615,629,631,639,624,605,609,616,617,607,597,609,624,627,624,618,614,923,962,961,978,933,948,966,958,967,920,939,931,900,973,942,901,917,959,934,931,951,691,690,670,734,707,699,664,658,704,687,633,688,704,671,694,716,735,710,712,736,727,679,703,679,724,715,722,620,621,607,614,619,614,626,635,620,618,630,629,606,599,628,576,631,634,637,617,622,607,615,609,625,607,663,671,681,674,673,686,665,680,691,680,680,678,666,680,658,686,676,678,672,687,704,692,700,690,669,680,693,658,674,688,674,675,685,695,687,667,692,695,686,659,660,689,692,679,684,682,683,655,686,684,1062,1046,1004,1073,1026,1017,1027,1014,1019,1019,1011,1042,1026,1017,1038,1053,1021,1024,1040,1031,1040,1018,844,840,846,831,846,855,837,851,791,837,813,843,839,810,871,843,819,829,817,837,841,971,955,968,990,983,970,976,957,983,999,964,972,987,1003,956,959,988,985,982,979,967,970,992,974,979,957,907,891,886,883,886,893,897,867,890,901,909,915,874,869,864,903,890,913,893,903,897,889,889,893,680,704,701,663,698,684,680,688,668,699,646,705,661,679,689,674,680,657,687,674,660,706,661,686,669,645,634,641,637,636,617,644,640,635,654,655,637,636,621,634,634,637,626,650,637,628,642,638,648,1212,1234,1227,1200,1206,1183,1194,1277,1166,1168,1171,1204,1183,1149,1223,1241,1172,1216,1155,1208,1236,1221,1202,1140,1238,1148,1165,1040,1039,1046,1061,1040,1041,1079,1038,1029,1079,1047,1053,1018,1055,1048,1056,1059,1057,1052,1025,1057,1056,1021,1091,1110,1103,1112,1104,1132,1093,1107,1114,1122,1105,1123,1096,1079,1105,1096,1113,1094,1097,1108,1090,1124,1091,1121,1083,1106,1117,1080,1099,1089,1102,1018,1005,996,974,1014,986,1016,997,989,1001,1026,1035,1023,1027,1002,1006,990,1014,985,973,995,1008,1027,1016,1001,844,857,860,862,875,881,900,865,860,853,887,870,886,880,873,878,869,890,860,890,853,867,873,854,873,1067,1071,1068,1112,1089,1080,1054,1062,1068,1048,1076,1072,1052,1087,1092,1040,1057,1040,1072,1058,1063,1057,1053,925,903,936,958,914,902,898,896,918,900,933,927,934,896,943,913,913,883,905,918,922,902,888,934,932,919,929,657,641,676,665,666,623,684,685,664,651,673,644,656,678,664,677,691,666,646,663,638,697,1179,1203,1264,1177,1240,1152,1158,1200,1157,1197,1183,1107,1154,1157,1171,1201,1095,1159,1188,1169,1123,1126,1191,1166,1218,1172,1003,958,1003,979,1024,1042,949,1015,1001,1016,1048,1001,1009,1045,1035,664,654,684,653,639,649,649,624,676,627,648,659,660,645,649,646,636,672,682,658,665,687,665,688,653,643,654,678,662,660,1180,1153,1188,1146,1129,1193,1204,1225,1189,1185,1162,1159,1171,1239,1251,1143,1223,1114,1239,1156,1208,1191,1212,1232,1152,1172,1040,1090,1057,1083,1069,1109,1076,1063,1101,1095,1058,1074,1092,1077,1075,1054,756,730,720,744,772,721,726,763,738,717,693,771,733,779,755,700,729,763,734,726,774,745,700,756,688,701,682,680,707,691,708,691,695,693,704,676,712,666,689,676,700,690,701,702,680,677,679,661,714,894,859,900,878,905,894,896,881,876,894,895,830,878,887,889,874,922,911,903,888,901,906,840,890,882,880,866,876,873,904,865,879,892,1079,1041,1048,1086,1029,1088,1053,1085,1037,1037,1061,1051,1086,1053,1051,1057,1059,1087,1081,1048,1068,1069,1050,1047,1044,1017,1046,1060,1066,987,992,1012,974,975,985,962,1009,990,986,985,953,992,994,985,972,966,950,1026,980,989,966,996,1006,981,985,972,973,947,945,930,929,918,954,942,979,940,945,950,955,925,915,949,934,938,929,944,943,957,927,916,912,933,740,741,697,695,714,692,760,733,721,717,697,740,688,706,692,679,653,618,650,645,644,647,620,624,627,647,630,652,631,614,640,615,638,625,634,638,639,1040,1005,1049,1035,1004,1026,1000,1028,1010,1038,1033,1016,1044,1052,986,1019,1012,1027,1024,1000,1018,1030,1044,797,771,764,804,807,830,833,802,819,751,806,824,771,804,807,845,845,804,778,796,797,830,795,805,869,844,881,880,854,905,870,851,869,879,876,873,882,865,882,865,858,945,859,873,710,710,698,665,684,716,692,649,702,713,689,662,689,683,704,708,696,692,700,686,690,663,625,618,619,609,628,608,625,639,623,621,634,634,611,629,626,602,623,616,614,631,626,607,626,603,634,628,608,628,623,636,624,614,627,622,612,618,612,602,622,610,627,616,633,623,632,622,605,910,897,899,880,908,899,907,902,948,947,898,885,918,946,948,898,912,935,898,902,931,945,925,929,894,908,950,716,683,717,741,722,692,711,716,697,728,701,717,724,684,693,695,683,701,715,611,605,605,626,630,609,612,610,614,592,614,612,620,617,617,616,618,616,591,637,617,611,681,658,675,690,690,672,670,671,665,710,688,695,683,681,664,677,673,688,683,686,676,666,678,685,675,692,688,678,666,694,680,669,683,671,677,643,678,710,684,690,684,666,698,691,687,687,661,677,696,650,682,685,680,679,677,677,681,665,687,688,665,1002,991,1028,984,944,1029,1007,1059,1000,1016,1033,1031,1028,1017,977,1014,968,1017,1052,1043,1016,1022,1036,1037,1009,1003,951,1038,1003,1027,1018,1047,1000,1027,890,877,879,833,928,847,888,870,865,905,885,888,878,891,878,888,876,905,891,911,903,890,898,871,702,648,651,683,665,641,679,666,667,612,645,668,677,673,653,673,629,679,649,667,626,675,652,663,641,656,684,952,990,1027,1010,1001,995,978,992,993,975,966,964,990,991,960,959,1007,993,1005,988,984,985,1020,1025,873,907,928,912,887,904,872,896,920,882,920,911,899,907,936,903,891,890,895,919,905,915,892,920,950,912,927,915,679,691,713,685,714,693,699,702,691,704,706,701,691,702,724,702,704,715,721,672,749,749,711,722,751,719,750,743,720,755,726,738,746,774,735,766,727,727,723,740,727,711,754,735,732,955,958,945,967,979,951,932,933,937,1003,958,949,947,942,978,1011,968,959,970,963,954,973,973,945,963,952,969,971,940,968,945,949,948,752,764,781,731,773,741,775,785,782,764,754,767,787,793,764,801,798,770,744,781,797,762,745,772,751,762,766,772,768,672,675,715,695,706,693,696,700,663,684,678,682,680,693,706,680,718,690,696,690,673,978,960,978,963,982,992,994,978,1000,982,951,965,975,997,977,975,965,993,998,922,942,967,1001,1014,971,958,964,988,977,959,966,855,863,823,840,845,867,808,819,826,838,855,827,828,886,838,1114,1083,1122,1070,1080,1115,1094,1090,1107,1063,1106,1095,1114,1092,1101,1097,1098,1078,1082,1090,1084,1084,1093,1089,1101,1086,1066,1074,1067,956,953,979,973,944,964,993,998,984,1015,969,973,934,999,955,962,1000,962,983,988,987,974,960,967,863,856,847,861,854,872,844,860,845,843,852,844,841,860,838,829,848,827,865,849,852,832,842,843,740,716,702,734,724,727,744,725,734,708,719,738,735,733,732,727,755,739,719,728,716,708,708,704,762,724,736,634,634,606,643,648,659,639,651,642,636,615,647,626,630,627,634,624,614,622,630,631,636,631,660,618,612,612,638,610,622,622,604,635,619,622,615,606,621,624,619,617,614,607,621,609,599,600,614,616,696,704,696,670,681,692,673,696,682,681,697,680,676,669,688,699,676,656,690,687,702,703,697,686,694,701,688,677,687,679,696,745,703,755,695,732,723,744,720,735,727,739,713,739,749,746,748,745,738,722,729,704,737,697,663,677,671,687,672,671,674,656,661,662,674,656,668,664,671,675,681,667,668,1106,1110,1134,1121,1117,1100,1111,1107,1062,1141,1138,1078,1144,1123,1098,1122,1134,1087,1147,1154,1065,1119,1109,1039,1020,1073,1092,1049,1048,1057,1052,1022,1006,1042,1038,1032,1048,1012,1050,1066,996,979,1019,1015,1048,993,1081,1041,1033,732,693,679,676,672,662,703,695,689,698,692,667,695,662,662,693,706,706,690,704,697,678,685,694,700,674,659,674,663,642,670,653,676,667,641,633,635,653,651,646,662,642,979,919,923,924,925,928,956,942,942,917,939,948,932,970,952,972,984,948,948,965,985,930,938,933,931,960,936,976,973,977,742,738,722,766,754,711,724,760,767,752,741,733,761,729,721,762,756,768,754,708,747,729,734,713,726,755,688,686,666,668,676,690,684,660,661,677,691,682,664,669,660,697,658,659,671,681,663,650,673,676,682,672,670,706,675,684,672,695,696,679,695,670,681,698,679,681,688,699,672,684,687,681,671,693,666,692,684,1052,1009,1015,972,989,968,995,996,1010,971,1025,984,992,1003,1030,1015,1026,1037,990,990,1054,1026,1039,1031,1041,1051,1034,1030,1063,1043,1044,1048,1053,1041,1051,1021,1038,1041,1047,1042,1055,1037,1041,1025,1036,920,923,931,914,948,926,940,930,936,916,933,942,916,935,904,938,937,925,923,933,931,933,920,903,929,933,907,916,923,925,927,915,934,914,934,933,957,925,962,957,935,925,954,922,962,945,935,943,923,970,922,935,953,949,934,931,933,1040,1035,1057,1049,1071,1044,1059,1029,1042,1056,1043,1048,1042,1022,1040,1048,1059,1042,1040,1032,1051,1058,975,982,959,970,936,987,993,975,966,971,979,988,1003,941,966,973,992,971,980,993,957,965,948,975,977,949,969,978,691,676,697,672,695,691,688,699,678,681,689,681,688,661,700,685,688,659,709,703,672,667,653,689,715,664,686,678,686,658,1100,1096,1126,1116,1126,1119,1108,1109,1151,1068,1115,1114,1081,1088,1136,1133,1129,1138,1134,1093,1081,1106,1158,1139,1129,980,1001,957,966,967,992,956,971,964,989,960,974,987,972,953,983,984,960,960,999,968,955,1005,975,978,985,982,941,990,1083,1067,1076,1056,1083,1068,1079,1091,1074,1091,1060,1071,1074,1069,1062,1091,1065,1094,1080,1073,1086,1094,1091,1071,1103,1094,966,988,943,949,966,950,960,1000,965,936,967,946,910,951,942,946,957,942,956,946,815,818,793,813,779,801,845,771,810,810,808,799,827,810,810,810,788,790,822,1182,1154,1160,1131,1138,1148,1156,1135,1211,1193,1149,1177,1165,1195,1166,1134,1191,1144,1211,1171,1173,1183,1181,1189,1133,1146,1177,1135,1111,1155,1162,1163,965,955,991,961,956,968,967,964,990,976,974,955,956,958,987,980,961,966,949,976,1094,1109,1101,1109,1109,1103,1073,1095,1123,1111,1121,1118,949,952,972,935,957,951,937,941,922,957,958,945,918,941,935,960,953,940,943,929,935,950,978,978,965,967,942,943,688,665,673,694,669,695,654,657,666,671,675,686,646,684,652,690,664,671,681,672,695,657,680,650,638,668,656,646,655,628,657,629,640,650,659,646,634,650,659,646,660,639,650,615,653,664,645,634,670,641,645,994,964,987,977,1022,991,1023,995,968,980,968,1018,968,953,1009,973,985,981,974,967,982,984,1006,742,692,727,723,724,711,713,714,689,730,714,715,733,710,723,740,693,709,712,761,745,697,699,728,731,698,716,722,628,636,632,643,633,607,657,645,625,643,634,617,630,645,634,612,650,640,611,627,618,634,637,926,895,907,896,886,915,873,914,860,888,901,949,920,954,892,883,872,881,889,920,895,855,857,953,899,895,907,921,767,751,757,734,755,751,763,747,760,749,747,741,719,719,734,767,751,734,779,728,733,752,763,756,724,667,681,680,683,665,652,674,667,647,680,674,666,647,661,661,678,674,655,673,638,679,670,671,684,652,643,685,674,1120,1157,1048,1086,1103,1094,1164,1137,1148,1140,1125,1172,1142,1130,1198,1098,1161,1142,1114,1174,1116,1111,969,921,932,908,917,947,904,899,994,943,975,959,960,955,977,928,930,950,974,945,965,984,941,942,648,658,655,714,691,687,664,665,679,657,690,668,664,662,678,659,691,659,674,663,656,655,1160,1126,1061,1140,1099,1167,1138,1123,1117,1113,1180,1129,1130,1162,1154,1049,1048,1063,1095,1059,1092,1075,1078,1066,1085,1078,1089,1060,1074,1072,1074,1076,1065,1065,1020,1056,1068,1046,1058,1087,1072,1074,1053,1079,1044,1064,1081,949,916,902,904,921,955,922,885,946,906,918,908,897,914,954,933,913,926,912,979,941,964,674,661,658,657,679,681,647,671,659,652,679,675,694,679,691,663,660,659,667,705,651,678,670,671,962,961,969,958,942,931,953,958,964,962,953,969,981,971,981,951,980,963,961,958,953,987,979,958,972,969,1040,1031,1025,1025,1036,1010,1027,1030,1030,1024,1022,1025,1044,1032,1027,1016,1040,1040,1022,1014,1024,899,917,901,903,873,865,918,935,922,903,919,905,891,879,911,890,865,879,922,873,915,930,1098,1075,1136,1075,1069,1068,1080,1105,1057,1118,1088,1148,1065,1031,1090,1063,1111,1102,1050,1048,1082,1083,1057,1042,1047,1062,1069,1057,1045,1054,1059,1048,1068,1035,1048,1075,1035,1065,1054,1058,1044,1065,838,868,849,938,845,837,870,857,829,848,887,870,864,860,850,901,862,819,856,860,902,856,902,823,870,837,876,650,623,641,615,638,631,646,642,634,656,620,647,652,642,622,652,660,637,652,639,645,639,629,673,1051,1070,1024,1057,1069,1028,1036,1052,1045,999,1035,991,1045,1050,1040,1069,1055,1051,1060,1023,1060,1040,1026,1029,1041,1031,1034,1044,1028,1036,1015,1050,1055,1050,1058,1057,1042,1033,1039,1016,1047,1044,887,900,852,875,877,901,910,871,873,903,864,885,881,876,899,853,902,893,875,906,870,887,935,845,1061,1028,1055,1068,1062,1066,1043,1049,1018,1044,1018,1040,1053,1038,1033,1054,1026,1046,1050,1028,1041,1045,964,948,975,994,971,983,976,973,974,972,980,954,987,971,963,972,958,960,968,961,962,971,981,990,950,955,959,983,901,922,899,924,891,906,896,916,906,904,903,879,884,897,882,882,903,950,898,888,913,907,903,1084,1083,1083,1085,1069,1086,1098,1097,1064,1078,1085,1102,1094,1080,1085,1082,1072,1012,1004,1001,1008,1020,1019,1026,1011,1026,1002,993,999,1014,1003,990,1005,1008,991,999,1005,1005,1018,1012,1000,1016,904,938,928,923,932,922,907,918,913,910,934,916,946,919,928,912,902,922,913,935,915,916,921,905,908,710,702,740,703,699,713,684,712,677,692,697,697,701,690,699,689,694,704,690,731,699,721,716,1111,1120,1113,1091,1113,1043,1077,1095,1102,1103,1041,1056,1059,1087,1087,1103,1125,1137,1059,1075,1084,1077,1091,1060,1096,1067,929,918,927,928,957,918,968,905,866,875,910,915,949,912,892,896,937,958,929,942,955,695,690,724,682,680,678,701,703,710,671,686,694,689,693,699,717,719,694,678,692,724,701,707,737,730,724,702,734,744,688,708,732,713,689,722,719,737,726,706,721,698,719,706,715,720,1162,1145,1150,1137,1126,1105,1127,1167,1091,1103,1171,1137,1148,1224,1118,1152,1155,1117,1029,1072,1026,1047,1031,1037,1028,1018,1045,1029,1053,995,1033,1028,1062,1052,1036,1051,1006,1024,1032,1006,1064,999,1035,1032,1020,1058,944,947,917,960,936,956,937,921,931,974,938,943,935,944,946,921,946,941,945,953,945,948,723,744,727,741,734,788,769,751,753,762,714,771,733,765,760,726,742,752,756,763,761,737,746,734,764,859,907,882,878,901,874,874,904,897,870,853,833,840,850,881,894,876,871,846,911,889,889,872,868,1108,1095,1111,1135,1131,1127,1123,1122,1128,1133,1129,1149,1141,1113,1124,1160,1135,1127,1136,1157,1120,1136,1135,1144,1124,927,940,909,941,955,924,932,938,936,944,949,891,930,923,919,927,943,905,936,949,965,929,960,924,908,915,938,949,910,916,890,735,715,694,717,686,717,720,723,728,704,689,723,688,691,694,714,674,672,694,692,681,676,680,678,700,695,694,714,702,671,694,673,686,681,698,668,703,696,711,685,707,689,679,1032,995,978,1011,1019,982,984,1016,1016,962,1003,1015,1021,1026,985,978,738,743,739,764,729,751,737,724,724,733,721,751,760,759,744,738,732,734,747,755,725,762,760,765,760,733,771,750,774,752,764,1093,1063,1067,1068,1085,1069,1088,1042,1068,1045,1092,1090,1086,1072,1095,1052,1106,1076,1117,1058,1103,1077,1066,1086,1081,1067,1074,1079,954,994,983,998,983,1003,960,986,967,970,951,988,1002,979,979,983,977,992,973,963,990,963,964,991,991,988,848,840,878,871,864,881,888,852,871,865,842,866,872,846,855,896,874,851,750,725,746,773,753,756,732,749,729,747,745,756,736,731,736,749,719,747,745,745,773,716,751,735,758,698,695,697,702,678,683,668,698,702,685,700,687,692,704,666,685,698,692,669,690,708,682,701,680,673,695,938,964,955,892,960,959,990,940,962,919,965,973,958,957,977,1012,941,980,942,964,982,944,926,974,954,946,960,972,989,969,979,954,860,861,851,875,865,858,856,863,873,892,894,884,871,871,874,885,883,869,867,896,839,867,711,704,693,727,698,694,703,681,682,710,727,685,702,681,684,690,694,700,703,687,753,706,684,703,686,690,691,696,711,715,710,686,703,683,685,694,698,711,695,704,715,698,685,694,705,705,689,686,681,685,690,698,694,678,696,700,675,674,692,689,686,690,695,674,682,693,691,685,684,681,686,680,683,685,694,673,1085,1112,1115,1137,1132,1119,1091,1158,1147,1118,1099,1141,1131,1148,1104,1116,1113,1093,1097,1114,1118,1151,1151,1129,1110,1169,930,914,916,974,955,968,954,925,918,899,918,940,888,858,938,918,933,976,957,943,916,911,631,633,637,662,630,628,628,638,633,644,646,625,646,641,622,649,672,635,651,628,653,622,625,641,656,643,942,1022,987,950,983,963,982,973,994,953,979,962,974,963,997,989,984,983,1007,988,993,965,957,962,984,987,1007,768,779,785,756,787,787,804,788,786,765,746,786,757,765,783,813,767,769,793,809,778,784,789,771,785,764,764,754,772,725,755,745,732,770,752,754,739,739,747,748,737,738,752,731,731,756,776,745,752,751,745,712,749,751,743,732,735,739,751,711,736,729,749,746,724,985,953,977,939,935,1022,945,987,979,940,975,976,981,958,983,995,999,981,960,959,995,958,972,967,988,958,957,1006,977,1026,857,843,837,850,845,880,832,859,852,831,838,853,858,834,849,841,860,843,849,860,858,850,858,843,853,846,851,709,714,732,696,721,704,696,703,703,710,712,714,701,708,710,705,708,706,725,707,707,709,702,699,971,951,952,950,969,968,992,957,954,1002,981,989,956,983,956,963,982,996,943,987,982,966,965,1022,979,954,987,947,948,997,959,973,981,964,975,942,749,765,774,735,773,724,743,759,747,763,754,732,740,748,778,744,738,749,783,750,738,780,758,746,899,847,888,885,858,867,874,872,875,862,862,859,874,860,868,872,855,884,856,728,720,712,711,694,697,742,738,727,761,726,753,744,707,715,692,694,742,729,716,704,663,668,649,684,646,671,656,672,667,674,687,678,688,661,688,689,679,663,671,689,673,660,662,670,669,635,637,645,627,631,640,643,630,658,637,636,644,632,617,632,638,644,639,610,626,630,653,638,1061,1058,1029,1038,1084,1042,1041,1048,989,1046,1049,1048,1025,1028,1048,1027,1014,1033,1069,1033,1073,1020,1048,1025,1014,1004,993,1009,976,983,997,1018,1021,1004,1006,991,1002,994,982,1007,1021,1004,999,996,979,1003,987,985,992,984,1006,979,992,967,1003,991,991,1005,983,990,1008,998,975,988,993,986,1003,976,1002,993,984,1022,1005,1022,987,994,976,1003,1027,993,1008,1028,1016,1007,997,994,1021,1029,1043,1000,1023,1013,998,1015,1010,1021,1012,1034,1015,1035,1004,1034,995,1004,988,999,1022,896,899,934,940,905,883,886,905,886,909,871,921,859,899,871,891,911,867,876,893,910,862,633,652,621,614,610,652,632,600,613,617,616,615,603,629,632,610,617,637,626,620,635,617,645,603,627,694,700,699,697,704,700,708,693,700,683,697,698,719,700,696,697,693,686,722,690,695,695,685,682,701,724,699,720,714,720,729,704,725,717,720,735,728,729,715,721,702,730,710,716,721,1027,1071,1074,1032,1028,999,1037,1030,1003,1056,1029,1037,1040,1018,1053,1007,1054,1037,1043,1048,1031,1050,1031,1024,984,1049,1018,995,1023,1034,1006,1003,988,995,967,989,993,979,993,993,987,1000,986,989,1009,1012,999,1014,983,997,875,857,902,910,898,924,911,913,890,937,919,912,901,892,902,913,909,889,887,906,949,901,640,687,673,683,685,674,681,655,647,664,669,670,676,670,666,671,644,988,988,1019,980,997,1012,1008,1010,1025,1023,1005,1039,1032,1014,1030,997,1006,1008,975,1005,988,1017,1020,982,1037,1002,1020,1010,1030,1014,1007,1012,992,1005,1007,974,1003,1006,1014,1012,1035,1019,1001,1008,999,1000,1001,1010,1017,985,1041,1033,1048,1060,1054,1046,1044,1057,1050,1026,1052,1016,1047,1059,1025,1035,1016,1020,1029,1021,1036,1053,1033,1037,887,866,916,892,903,869,864,896,906,886,876,870,891,907,884,950,899,855,850,877,918,868,885,901,900,906,671,669,650,641,626,696,649,678,680,675,681,668,701,675,684,658,693,708,699,679,662,663,687,675,665,649,674,661,658,672,674,676,659,648,653,654,652,669,689,675,658,663,667,668,660,655,658,663,658,668,666,684,668,662,665,658,687,664,674,668,663,679,664,653,674,678,682,679,683,679,662,687,657,662,691,685,673,688,676,657,660,651,645,665,662,656,662,651,654,664,649,654,650,662,667,655,655,670,653,643,701,679,714,651,668,704,687,671,667,693,689,681,668,684,679,691,681,715,704,687,682,687,681,667,685,667,716,688,706,988,984,953,960,996,985,952,987,974,925,954,963,923,958,994,991,938,990,955,946,975,967,982,961,950,963,951,960,969,805,780,794,814,753,813,783,785,763,764,786,771,754,799,778,746,743,779,772,779,753,751,776,727,766,756,762,760,766,653,691,674,666,684,681,680,683,641,672,659,670,666,648,665,666,674,661,704,679,693,696,695,661,669,677,660,665,644,668,624,639,627,626,637,621,631,622,644,649,620,652,645,647,635,599,618,632,632,627,627,629,637,649,636,629,635,1002,1100,1071,1074,1032,1046,1069,1031,1105,1069,1108,1065,1044,1076,1041,1084,932,967,960,972,963,951,961,932,956,963,944,933,965,940,954,955,949,930,953,955,915,1046,1042,1027,1036,1019,1022,1020,1042,1026,1044,1043,1043,1042,1045,1040,1012,1030,1011,1040,1050,1045,1042,1041,953,940,927,954,938,942,928,911,899,953,942,926,935,927,929,908,913,920,913,934,929,915,950,930,924,923,939,943,861,857,874,869,843,862,860,857,820,822,887,824,849,855,871,832,825,831,842,857,865,860,851,864,820,867,871,841,871,862,738,738,686,725,697,708,703,722,748,732,728,701,727,701,722,742,712,730,713,707,728,702,636,641,640,630,638,639,618,643,636,651,642,637,644,650,650,654,637,630,629,635,634,631,646,660,639,668,641,666,670,651,663,667,661,662,658,642,661,654,659,670,668,657,663,657,653,663,658,661,657,666,664,653,659,654,645,666,653,666,659,678,656,660,653,662,665,658,660,651,657,655,642,654,702,698,687,681,695,695,690,711,691,694,688,702,713,708,684,680,691,684,687,713,687,706,691,641,632,654,657,678,675,649,644,641,668,645,650,654,646,653,642,647,656,639,652,652,652,650,642,643,658,645,658,649,1221,1137,1192,1204,1173,1081,1183,1121,1124,1103,1133,1153,1132,1141,1157,1201,1160,1221,1109,1209,1176,1144,1140,1190,1125,1130,1192,1137,1112,1100,1116,1090,1060,1094,1074,1101,1091,1071,1067,1078,1103,1094,1081,1089,1112,1093,1123,1065,1135,1072,1080,1066,1130,1086,1067,677,699,630,654,634,675,645,662,678,657,682,695,710,689,698,717,704,703,756,624,690,703,661,707,702,726,631,647,660,695,668,613,579,594,609,588,603,579,576,603,570,576,601,610,593,576,572,569,584,612,569,595,629,630,614,631,644,564,628,599,594,596,593,594,613,611,606,577,615,619,615,593,595,627,710,734,702,691,710,702,723,689,695,698,716,668,687,713,664,670,699,719,691,707,713,689,714,680,729,676,685,704,674,727,761,739,726,763,729,707,722,744,729,752,726,709,739,740,710,709,740,736,714,729,722,725,1047,1041,1035,1045,1014,1086,1045,1049,1043,1026,1028,1023,1063,1041,1043,1025,1072,1017,1032,1075,1031,1047,1052,1043,1030,1017,1040,1005,1044,1027,1025,1033,1053,1027,1033,1015,1034,1014,1003,1003,1005,1008,1026,1020,1008,1005,1022,1020,1015,1021,1025,1024,1013,985,1007,1025,1019,1021,867,921,906,923,898,909,876,891,886,940,940,904,917,911,925,913,943,912,900,925,910,911,921,919,932,933,924,918,679,672,706,646,665,676,685,654,687,678,676,669,665,679,678,690,628,695,665,681,675,691,660,665,660,679,677,665,649,656,1043,1020,1045,1001,1039,1013,1027,1028,1031,1044,1033,1042,986,1007,1032,1031,1022,1043,1017,1041,1056,1048,1009,1042,1062,1102,1074,1078,1100,1083,1070,1056,1068,1076,1057,1064,1069,1065,1057,1078,1101,1068,1067,1093,1062,1067,1075,1066,1080,1110,1066,942,962,926,961,949,962,957,955,907,941,936,966,955,952,951,982,926,943,929,927,944,929,938,944,927,704,678,755,730,731,710,717,729,712,750,709,688,689,693,700,715,700,723,699,724,697,705,1077,1090,1061,1043,1103,1083,1064,1067,1087,1088,1079,1066,1055,1058,1071,1033,1021,1014,992,1020,1044,1023,1020,1011,1037,1019,992,996,1047,1013,1037,1045,1034,1003,997,1001,1017,990,1029,1034,1048,1018,1001,1017,1024,1140,1114,1122,1122,1116,1105,1113,1103,1106,1120,1103,1117,1116,1115,1145,1124,1108,1116,1107,1104,1120,1086,1111,1105,1109,918,933,958,898,899,937,901,923,911,905,911,960,905,924,900,882,900,924,924,883,899,940,873,901,926,920,904,926,916,1036,1089,1083,1069,988,1042,1032,1075,1094,1121,1120,1043,1075,1107,1033,1058,1082,1053,1043,1051,1060,1050,1081,1078,1045,1060,1051,1020,1090,1101,1030,1043,1060,1045,1034,1022,1029,1036,1034,1046,1028,1017,1017,1038,1051,1035,1043,1023,1010,1045,1023,1011,1036,1059,1026,896,908,916,912,939,928,917,900,908,936,937,929,932,920,944,928,925,900,930,895,902,937,916,904,905,917,905,942,960,974,975,975,974,973,980,966,982,984,963,965,976,982,983,981,982,970,982,977,978,968,965,824,835,839,835,836,837,812,878,833,881,832,827,822,825,840,828,836,848,830,834,834,1066,1064,1083,1103,1105,1084,1077,1062,1099,1083,1081,1098,1087,1113,1073,1095,1074,1069,1090,1054,1100,1071,1046,1102,966,953,991,959,978,951,962,950,941,930,958,948,957,966,982,943,969,971,948,968,973,968,938,979,944,961,947,984,685,666,655,690,656,651,656,668,683,666,675,676,693,634,677,692,639,636,684,661,641,674,708,685,667,657,689,680,631,571,600,591,584,599,608,569,624,582,595,608,598,606,599,588,596,598,582,607,593,593,612,609,615,601,593,605,590,603,597,605,580,604,606,592,581,601,610,592,598,593,583,568,608,599,569,600,595,603,593,603,583,625,691,707,679,693,704,690,708,686,693,688,678,698,693,701,708,682,692,685,669,704,713,695,682,675,694,707,676,668,715,713,882,912,888,884,850,868,851,906,905,864,904,854,888,894,873,870,874,867,867,939,917,738,780,775,774,764,760,739,777,747,730,749,762,761,764,732,754,750,755,750,766,776,751,765,770,764,765,755,741,767,733,751,788,757,748,1142,1102,1136,1157,1128,1104,1133,1099,1108,1111,1139,1105,1113,1094,1117,1136,1119,1183,1123,1152,1141,1137,1138,1098,1112,1132,915,946,953,956,948,960,959,911,944,985,913,955,926,921,951,944,942,952,944,962,944,963,1068,1096,1111,1108,1103,1109,1100,1127,1106,1119,1080,1113,1100,1093,1113,1084,1102,1098,1075,1093,1118,1113,1096,1101,1080,1094,1076,1121,1083,1081,1087,1085,1121,1101,1079,939,949,918,949,945,954,972,978,917,964,904,913,924,897,956,944,945,965,941,961,933,954,909,971,934,925,942,947,967,671,659,650,681,658,666,665,689,669,667,664,661,652,688,672,666,653,689,649,660,674,686,691,674,665,702,684,675,687,708,701,699,701,725,685,706,700,717,675,677,675,672,714,682,677,677,665,674,682,1030,1034,1031,999,1035,985,1027,1050,1009,1002,983,1037,1051,1017,1015,988,1013,1005,1015,996,850,785,818,822,823,826,802,819,834,837,835,828,843,836,827,820,793,838,813,829,799,821,821,837,803,809,817,850,833,815,822,953,924,944,957,946,948,930,938,913,936,940,932,943,949,955,947,960,921,946,947,932,960,898,933,915,912,932,919,926,923,921,911,936,916,924,917,928,907,921,926,913,937,919,925,912,919,947,900,907,919,925,974,987,982,965,962,950,966,954,970,963,965,960,942,972,848,838,873,870,859,848,834,854,839,837,882,814,849,820,825,867,819,855,849,819,849,838,861,800 0 207.073631 0 0 0 diff --git a/test/cdna.exp b/test/cdna.exp old mode 100644 new mode 100755 index c7593ce..6864e5f --- a/test/cdna.exp +++ b/test/cdna.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN114 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!- 0 8192 -26.892539 1536.598389 5000 21046 610,580,521,521,519,496,534,522,529,510,503,546,432,438,454,431,421,448,436,426,420,432,452,441,436,438,438,445,444,450,438,421,438,438,447,436,439,433,434,440,445,439,595,526,578,547,545,587,579,579,554,578,565,580,574,570,543,583,669,663,670,648,649,652,645,646,569,575,567,586,580,566,552,573,578,572,567,564,576,577,580,590,443,435,437,421,420,427,432,431,430,461,442,436,437,441,447,434,439,450,427,441,425,451,439,438,433,429,438,440,430,452,635,581,622,621,596,617,631,596,628,620,597,609,604,603,621,649,647,657,642,653,666,644,649,645,657,644,636,646,652,656,653,641,658,579,578,567,595,557,584,575,576,580,587,574,593,580,591,566,570,548,575,575,546,566,546,565,552,645,653,663,645,659,664,657,672,654,659,655,661,669,649,665,650,680,660,591,613,610,608,610,613,609,605,599,606,622,603,606,604,613,618,608,388,392,389,394,381,398,386,374,390,391,367,381,369,367,356,359,360,359,374,373,360,344,365,360,357,354,574,591,597,586,561,593,591,611,594,615,560,623,582,589,600,560,617,590,642,664,625,648,629,645,663,626,627,640,651,645,647,653,655,651,658,656,659,660,654,635,644,641,648,651,638,579,591,578,566,573,550,576,585,584,587,573,571,587,569,559,391,431,417,399,422,414,437,415,428,406,437,417,433,499,516,526,498,522,516,478,508,493,515,520,503,507,421,378,395,400,397,383,385,390,394,378,396,378,353,358,355,355,351,348,359,359,360,352,361,356,411,421,407,429,396,422,418,395,405,660,668,673,661,658,660,660,662,672,678,670,682,676,654,480,453,468,458,470,433,641,646,630,632,642,653,621,647,641,639,635,623,640,611,618,617,614,618,607,621,623,599,608,615,633,622,595,608,610,608,619,614,613,620,612,606,617,526,523,550,554,547,576,551,548,532,537,548,541,539,567,534,562,632,643,651,631,646,638,636,625,632,636,633,653,601,599,598,592,609,598,601,593,601,616,597,600,597,375,410,392,364,407,400,420,435,412,406,420,401,399,345,345,347,357,348,332,344,359,342,354,345,332,349,351,356,320,314,315,326,319,321,328,319,317,302,308,329,325,360,367,370,363,366,355,364,345,362,374,364,428,412,431,426,410,440,440,424,409,427,424,418,425,428,496,502,483,460,489,494,485,488,497,485,503,436,440,443,444,462,454,448,438,441,453,395,428,408,415,388,409,431,412,407,407,417,406,412,403,404,402,400,411,413,415,332,360,348,362,367,335,354,345,355,354,344,349,355,358,351,600,589,579,589,611,577,607,596,613,572,605,598,568,593,620,430,445,473,398,449,456,442,436,420,448,445,442,422,792,813,813,830,820,810,852,862,808,809,833,841,798,857,815,652,636,606,631,647,641,434,437,418,420,450,434,426,441,443,431,416,577,575,569,551,581,586,598,545,414,419,398,399,395,390,367,393,395,397,401,429,400,357,346,347,333,345,354,345,353,350,338,337,804,770,788,822,799,788,739,822,798,790,839,617,627,651,627,654,632,645,622,638,656,617,660,433,413,405,431,389,431,417,404,431,429,416,383,406,414,403,412,588,588,614,598,610,612,581,604,584,586,512,512,488,494,494,484,477,501,493,492,488,468,475,382,386,391,394,399,374,369,384,395,408,379,362,346,359,352,354,360,350,339,348,345,351,355,508,580,599,552,571,540,563,557,544,558,592,555,526,515,530,523,523,537,542,401,378,388,376,395,391,400,408,381,387,404,392,404,388,385,625,645,609,619,652,615,623,606,641,633,636,649,645,613,590,583,600,605,586,610,629,612,604,609,600,602,610,606,624,610,598,585,564,525,558,562,561,553,588,606,573,569,566,569,414,409,432,404,428,416,421,417,410,429,438,437,422,420,424,432,732,738,727,696,731,771,763,748,687,763,736,748,730,720,734,741,635,641,626,648,650,632,631,639,637,645,630,632,642,641,628,644,659,417,398,419,389,417,415,408,416,429,403,396,401,414,408,434,420,582,564,578,577,577,567,565,572,553,567,654,662,641,629,669,649,665,655,628,634,667,532,523,546,553,550,553,530,542,533,541,551,550,549,527,416,409,440,434,421,420,414,436,418,423,731,753,739,731,764,768,771,765,769,766,760,752,771,666,653,661,665,645,648,634,641,644,631,642,661,399,396,395,427,391,363,406,395,409,422,402,404,402,387,408,411,401,380,382,383,382,389,425,421,406,409,407,372,350,354,355,359,363,354,354,357,361,681,706,713,697,710,695,713,699,705,713,694,689,719,710,622,624,632,613,614,614,630,608,626,598,609,602,627,627,593,612,630,702,664,664,672,646,653,671,678,621,652,620,649,630,626,638,656,636,640,635,641,640,608,627,633,647,649,625,640,645,641,652,636,585,586,567,595,598,587,542,573,567,569,579,452,462,458,472,426,450,500,475,436,643,613,639,627,648,629,615,614,614,617,609,626,601,671,656,673,656,673,684,664,649,664,655,657,603,632,603,611,597,606,594,628,525,535,539,520,530,520,536,523,505,520,526,526,523,526,523,509,518,411,402,423,407,405,425,406,417,398,407,399,533,560,536,542,530,527,531,563,541,539,680,649,674,701,665,681,679,658,596,599,620,604,599,607,595,591,588,592,594,613,608,587,401,398,397,409,411,413,421,397,405,408,408,418,726,694,743,727,731,698,725,715,707,687,741,730,619,664,649,643,634,610,636,632,635,618,651,568,569,555,577,573,571,575,572,568,453,438,443,448,434,469,458,448,457,449,444,608,609,606,616,603,607,635,615,611,460,441,447,450,440,454,470,433,467,427,452,453,457,437,582,586,569,606,573,580,600,573,561,659,670,683,670,683,678,697,669,697,692,670,664,675,681,667,675,662,700,600,607,625,623,623,616,596,621,599,604,604,618,613,609,525,534,526,526,517,519,518,524,524,530,542,530,522,530,528,521,519,540,525,509,522,527,526,497,530,534,527,503,530,513,532,525,536,520,538,536,504,518,515,516,517,506,509,520,521,504,524,526,515,507,490,502,525,491,518,500,500,501,514,485,499,507,478,509,496,514,506,506,496,496,512,510,499,486,511,499,514,507,493,433,409,418,417,415,412,406,427,416,424,405,413,415,423,429,433,574,580,612,592,574,572,588,565,593,549,554,601,574,608,559,567,576,586,519,534,524,524,524,523,522,522,516,502,529,515,516,503,517,503,508,505,511,510,511,519,510,502,512,398,381,389,389,388,410,412,674,706,681,678,663,668,672,694,679,654,695,678,661,673,715,685,689,718,676,691,676,705,720,582,589,567,585,592,568,575,582,585,569,565,555,577,417,411,423,456,432,418,425,410,397,403,446,429,590,602,570,593,587,573,606,577,583,583,616,525,524,516,509,531,511,532,520,515,529,521,535,510,505,524,514,511,516,512,509,499,511,505,507,494,505,519,518,518,524,513,520,530,527,527,528,518,528,528,523,517,515,508,503,524,505,504,504,504,496,505,501,517,508,490,501,502,506,501,498,517,505,489,506,512,478,486,482,485,513,487,705,692,696,688,711,708,693,704,720,693,720,700,666,595,591,581,612,601,601,617,597,609,600,607,623,606,595,421,408,408,400,403,427,392,424,412,401,415,413,423,421,384,400,389,439,401,406,411,408,400,414,585,586,588,565,562,568,591,572,584,586,587,576,604,551,583,495,495,496,493,508,496,499,505,489,482,483,499,478,650,642,652,626,640,657,649,645,642,655,626,658,627,627,649,665,648,662,648,643,740,726,742,711,726,721,742,746,729,722,637,627,624,624,603,618,614,463,489,477,478,475,469,462,469,527,505,485,488,479,722,713,670,731,739,713,695,670,717,719,712,691,720,706,707,709,686,589,603,602,600,596,592,600,605,604,605,572,681,703,677,688,693,677,687,678,679,666,684,690,679,688,694,681,591,602,575,596,577,569,607,609,589,562,570,574,592,606,570,563,568,575,578,575,579,578,592,580,574,583,575,576,564,520,516,525,522,506,520,511,533,516,534,505,531,514,507,520,522,513,387,372,365,392,371,401,401,395,397,398,352,352,359,360,369,337,371,347,354,357,366,365,368,348,371,380,768,754,735,726,734,774,781,728,734,750,770,747,740,758,761,743,635,637,656,689,656,663,663,669,654,654,668,650,662,663,651,660,719,726,730,690,724,713,718,730,723,719,707,603,607,610,608,601,594,614,592,617,631,595,618,592,622,441,450,443,432,443,433,440,452,457,430,426,552,523,523,528,518,509,561,539,531,429,427,414,430,426,439,421,424,459,427,424,421,448,406,404,399,392,397,406,404,405,408,409,397,393,767,710,758,723,765,749,794,744,763,757,723,756,781,772,770,625,632,625,614,627,611,637,645,383,394,381,407,432,382,394,421,396,391,396,411,405,353,360,345,354,334,362,370,348,342,370,364,369,360,375,356,363,368,367,355,366,409,415,422,433,432,423,430,422,430,429,431,437,422,415,415,472,462,463,476,466,452,447,437,461,466,465,450,450,464,465,459,617,617,613,629,603,641,606,610,612,494,485,504,493,503,504,503,515,522,391,409,425,409,422,407,419,414,411,412,420,413,404,540,534,521,537,537,556,527,523,538,540,531,523,534,387,413,420,407,396,427,411,402,396,339,344,325,346,339,339,355,345,338,348,418,407,410,416,424,403,402,424,397,425,413,429,425,422,437,434,404,420,453,445,437,450,451,434,437,444,431,444,432,589,626,621,612,620,611,634,622,606,622,524,529,532,527,526,536,519,534,504,532,524,528,539,383,380,405,403,384,407,369,379,365,376,364,394,346,354,356,353,351,334,359,351,357,363,351,359,344,351,352,378,359,365,369,373,377,379,376,370,375,704,668,677,707,715,729,695,698,719,750,712,704,689,713,692,688,681,684,685,680,677,675,665,652,657,672,671,687,586,587,593,606,595,566,590,573,586,576,592,577,586,568,555,545,544,547,540,561,550,546,534,540,536,553,531,549,553,530,542,546,555,530,562,482,492,501,499,502,486,504,478,500,500,492,503,480,496,402,402,394,403,416,418,414,396,417,423,409,407,410,418,404,426,388,383,386,397,389,403,381,381,392,381,390,397,391,408,388,655,674,662,664,668,644,673,676,665,650,663,646,602,573,577,568,583,588,582,574,585,596,580,581,596,593,586,589,694,700,687,708,711,700,717,703,685,694,706,702,696,701,674,608,606,591,607,596,622,632,602,601,596,605,606,418,409,400,403,408,419,408,387,415,414,412,416,416,420,406,413,415,397,416,400,397,412,695,681,676,697,684,737,690,704,734,705,590,591,567,605,594,576,571,595,574,583,557,588,600,581,562,590,682,691,683,702,692,673,690,672,665,683,690,667,676,676,689,605,603,608,599,586,585,589,616,601,600,605,615,621,406,398,396,405,402,398,426,427,422,417,425,402,410,432,410,398,378,387,383,381,389,390,383,393,384,388,422,417,413,417,422,431,434,424,395,391,401,396,386,390,389,396,412,395,388,409,401,394,393,410,790,833,781,863,806,764,824,776,819,784,800,760,796,798,839,767,639,646,649,658,622,656,662,635,622,644,649,484,480,471,470,478,483,469,457,443,466,468,477,470,848,829,829,830,779,769,850,853,781,777,853,791,806,834,618,618,638,621,599,631,617,633,603,636,610,621,621,632,644,669,613,661,655,627,630,670,639,662,646,658,644,673,636,672,671,680,656,668,694,685,693,686,666,678,673,673,621,616,608,622,606,629,612,615,607,635,615,647,543,524,536,540,510,541,532,528,535,527,548,557,530,658,643,641,633,661,634,653,660,650,644,658,629,644,647,634,658,650,659,583,546,556,531,537,562,540,541,540,513,525,426,389,407,376,401,407,400,407,411,700,697,714,661,725,716,732,708,703,704,696,675,677,686,678,663,679,683,672,681,688,670,676,682,687,658,692,556,548,561,579,551,569,548,554,544,552,563,563,566,624,603,576,601,634,589,602,652,642,619,606,589,616,615,593,604,611,603,595,619,612,598,616,620,600,608,599,610,608,603,595,559,558,544,571,561,562,552,537,529,509,549,553,553,558,548,569,569,539,550,635,626,670,662,623,611,638,630,649,658,622,618,633,621,613,621,615,619,624,627,613,618,627,615,616,634,629,616,627,623,634,622,621,609,629,663,653,649,658,655,653,658,669,544,543,555,533,555,558,556,524,521,572,553,574,572,540,554,538,539,654,604,650,666,602,607,662,659,672,663,651,665,662,661,664,662,674,615,600,598,578,590,590,591,593,613,520,533,524,506,520,515,523,512,514,518,507,515,526,520,514,503,533,501,512,500,495,507,521,501,523,526,533,529,524,519,525,525,525,526,518,519,522,514,516,530,521,520,513,518,389,405,399,386,390,381,397,407,393,404,389,384,393,391,388,389,386,399,658,619,645,632,607,631,657,645,628,669,659,651,624,639,650,660,625,623,641,616,611,627,616,633,625,634,622,630,609,647,621,612,669,657,656,672,647,651,655,598,603,593,634,601,600,595,603,613,602,602,593,606,509,524,515,523,525,528,521,513,504,494,501,499,501,496,498,501,353,372,387,370,367,394,391,395,384,381,393,375,358,350,362,364,352,366,357,361,349,362,357,373,355,357,362,364,367,676,676,677,646,680,695,646,697,653,660,706,668,646,653,645,646,647,650,630,651,650,631,631,636,638,650,641,670,674,657,649,668,664,568,538,565,556,557,565,580,566,577,532,568,572,573,643,650,645,656,654,651,649,675,658,644,659,651,637,575,589,579,582,575,571,589,584,571,561,582,577,405,366,382,367,369,369,390,382,371,348,365,389,367,448,435,451,453,456,448,443,439,440,423,438,420,434,436,433,437,420,424,421,435,421,428,432,438,588,593,593,611,577,575,588,616,597,587,677,678,688,687,669,672,664,686,674,691,557,590,545,580,586,825,792,853,803,815,779,821,820,787,843,833,814,665,657,717,668,686,680,697,711,701,698,677,696,659,662,697,719,671,699,434,450,463,448,491,446,436,621,610,612,655,620,617,604,635,617,615,618,627,631,613,613,625,617,524,552,496,514,520,557,514,518,519,529,537,535,544,484,496,497,491,497,493,495,494,496,507,493,493,397,404,394,409,386,392,399,390,412,408,392,404,404,731,719,737,686,749,706,708,728,715,685,714,615,640,619,638,636,651,657,625,631,635,646,648,658,394,403,397,399,407,406,399,403,389,387,424,406,405,417,406,415,391,406,399,390,385,708,711,695,719,741,716,699,677,695,704,720,722,748,704,709,738,727,574,586,587,574,569,591,598,593,576,587,604,579,411,383,395,401,399,399,397,404,399,395,399,403,405,389,401,417,830,885,807,785,793,797,850,856,836,824,823,812,762,785,642,650,646,642,653,655,640,638,634,641,650,659,643,679,681,701,658,660,688,651,646,683,691,695,663,676,664,668,669,657,659,671,595,601,588,604,600,631,587,605,618,587,579,615,615,585,601,596,596,620,616,422,433,427,394,433,404,418,416,426,416,411,409,416,411,415,369,370,357,361,380,385,362,368,373,381,369,370,352,385,362,426,395,406,391,397,414,413,399,395,415,398,399,388,409,406,446,438,456,451,429,445,453,452,436,450,439,443,445,436,598,611,607,606,623,620,620,618,596,611,600,639,596,598,618,663,705,674,719,699,681,663,691,660,606,586,598,582,593,607,568,590,577,608,573,601,608,576,594,399,420,435,402,435,422,422,427,423,419,420,422,424,413,430,425,403,672,641,646,634,637,609,654,654,655,666,649,650,669,612,648,654,642,653,681,665,668,646,668,665,664,656,690,683,667,651,689,531,534,510,501,506,514,535,519,548,502,390,392,378,395,381,379,372,385,382,396,396,380,389,385,384,374,738,727,750,756,729,727,738,749,768,722,769,724,669,665,668,683,672,645,672,676,680,662,526,517,518,517,502,521,531,508,516,523,484,482,499,465,497,496,497,495,499,496,490,491,475,490,482,497,494,491,494,481,495,495,508,500,490,492,493,501,431,427,418,402,419,418,415,410,415,419,407,420,435,399,443,424,426,402,561,569,589,543,574,573,563,583,572,566,536,593,497,490,487,497,490,494,494,492,488,480,488,496,488,654,643,655,650,662,649,647,640,653,661,638,619,652,652,657,634,676,680,674,685,670,681,698,687,677,699,670,679,694,698,665,574,567,557,567,568,594,571,545,555,593,562,570,565,556,554,434,410,398,405,418,421,419,411,394,421,395,706,722,690,726,707,688,670,696,700,694,694,749,590,579,572,568,580,596,591,580,603,575,579,597,585,689,682,684,687,688,694,699,684,679,681,691,684,704,683,684,690,617,613,607,615,600,604,611,606,625,615,529,544,554,560,564,538,565,562,558,659,660,661,654,643,657,659,661,646,670,668,655,675,670,662,675,659,656,675,673,593,597,599,583,597,601,590,593,589,599,599,596,597,603,428,395,423,409,439,423,432,423,419,505,559,533,537,547,534,535,515,518,521,534,397,420,411,418,430,409,419,440,434,423,416,422,421,434,427,434,429,391,395,399,391,395,386,391,383,387,388,395,393,399,396,393,742,800,748,741,725,710,753,753,811,599,599,625,598,584,601,609,578,585,597,594,609,416,426,445,417,433,440,442,425,420,457,442,417,440,434,444,611,642,606,592,593,591,614,612,593,631,599,633,605,603,727,724,726,732,725,728,724,738,719,717,738,731,727,726,729,739,729,710,655,644,652,663,645,644,653,635,633,648,629,542,555,556,541,562,553,552,548,537,428,455,430,432,411,417,429,417,403,427,427,408,402,438,427,405,413,406,431,370,358,360,385,372,369,378,361,374,398,369,385,367,380,370,369,743,713,747,755,746,723,684,801,745,743,715,734,719,774,756,769,758,626,606,628,615,636,619,621,618,607,604,595,604,428,423,408,446,450,436,440,449,715,693,746,732,741,748,715,730,752,711,740,713,660,674,670,670,651,674,663,661,670,682,660,646,676,675,691,691,692,697,697,685,687,689,671,658,684,687,692,689,685,691,698,600,603,628,583,599,578,611,590,605,587,607,601,599,612,556,563,547,571,568,550,557,560,554,556,563,576,563,556,564,559,566,490,487,510,503,496,480,500,508,486,525,491,504,671,652,620,632,650,631,637,638,641,661,657,671,645,668,650,650,669,664,660,663,645,667,666,639,676,673,661,656,676,666,676,681,674,680,674,674,691,683,674,675,676,669,578,556,585,568,553,545,569,564,582,557,553,596,547,593,579,559,663,662,662,664,675,668,671,649,658,663,666,667,651,683,542,560,554,572,546,558,550,559,569,568,577,569,580,565,579,572,550,595,612,615,669,636,613,617,659,629,642,636,635,624,627,639,633,636,647,644,642,624,634,654,637,645,657,646,657,639,648,653,674,651,661,636,656,661,647,661,556,537,551,563,551,555,563,538,538,542,659,676,666,654,671,680,665,655,664,667,658,660,629,615,613,619,627,616,617,625,620,628,623,615,620,545,546,507,518,520,537,515,539,544,524,526,526,521,515,392,390,383,386,415,400,409,649,637,657,653,627,660,652,670,645,647,637,624,686,680,680,704,692,697,662,688,688,677,660,661,706,678,691,592,581,590,602,585,593,584,581,578,700,702,695,690,693,692,703,698,694,706,706,717,707,697,728,700,708,699,717,609,585,604,612,588,610,611,618,591,616,601,602,587,605,594,595,572,586,599,587,592,577,607,596,592,570,576,602,666,662,663,651,665,671,656,652,649,645,671,637,646,634,638,642,638,635,632,634,625,648,622,628,633,623,642,629,639,639,637,631,640,629,627,637,632,613,632,629,639,619,634,630,604,601,602,613,609,599,602,643,631,645,624,630,645,627,648,638,637,634,640,641,632,654,623,639,657,651,625,636,648,517,518,564,566,550,549,551,564,684,667,676,661,685,669,678,681,679,680,671,698,571,598,587,603,599,595,600,582,596,578,590,588,579,383,398,425,418,430,432,423,390,435,417,414,413,459,412,413,423,541,545,535,537,550,531,527,545,538,543,532,664,643,652,658,664,672,654,678,662,643,644,672,669,664,593,591,602,592,602,608,599,587,586,595,584,592,594,565,570,578,574,575,567,571,575,570,576,571,578,684,686,677,693,676,691,680,685,688,680,586,573,615,598,601,589,600,603,597,592,591,597,605,615,666,686,650,648,663,665,683,645,616,607,622,623,617,618,621,621,616,656,634,638,649,645,633,638,642,625,639,654,646,615,547,541,563,538,545,549,541,561,559,539,536,609,609,632,613,601,590,654,600,595,640,629,584,604,620,649,612,572,606,598,630,644,661,634,642,637,635,650,634,632,590,552,551,556,558,550,535,571,571,577,558,559,557,545,539,741,744,765,739,751,727,752,770,726,729,773,753,636,647,662,648,636,631,630,650,633,643,628,639,446,395,415,424,386,429,412,383,388,589,589,610,614,580,593,581,611,570,574,603,584,569,592,602,592,606,433,459,437,460,463,425,446,451,526,508,526,517,502,533,521,514,512,531,517,503,525,546,384,402,397,395,396,380,397,389,392,385,392,396,369,364,372,356,357,360,377,337,363,358,353,371,374,366,366,371,369,367,375,367,357,370,370,384,703,668,694,695,747,736,725,707,699,737,709,693,639,635,640,643,644,639,649,657,642,637,508,487,504,501,499,507,488,504,498,497,497,476,501,504,462,436,441,446,434,431,441,442,597,635,635,623,644,627,628,616,617,646,611,626,609,629,643,640,576,548,571,561,554,548,583,550,545,563,561,557,579,565,689,685,682,680,681,684,680,702,693,672,682,676,711,687,608,620,590,596,606,592,608,577,383,393,397,399,396,388,406,383,376,380,384,396,704,738,678,669,673,722,711,695,648,694,685,716,686,672,629,601,632,627,621,603,608,633,608,629,616,601,628,387,365,385,341,376,341,401,413,386,409,388,414,411,416,394,397,404,398,792,798,792,795,789,796,801,796,792,802,775,792,682,672,657,677,666,668,665,685,662,671,661,654,694,655,661,402,384,391,415,373,371,386,422,375,376,398,357,358,383,374,401,368,333,334,351,373,333,362,374,345,366,343,563,550,549,545,579,558,576,533,540,541,552,558,572,537,454,473,470,460,476,460,460,483,463,481,461,439,441,455,442,433,438,449,448,450,435,450,446,442,440,431,441,435,388,388,390,394,391,395,404,392,413,403,388,667,640,666,628,622,647,621,624,666,639,634,609,641,660,669,659,648,659,627,651,651,656,655,681,651,650,640,652,660,615,570,593,591,617,640,605,599,626,615,595,604,592,412,379,387,414,384,397,384,369,380,394,417,358,396,417,368,382,407,382,399,385,350,381,377,367,374,383,377,374,379,376,365,379,366,363,714,646,675,695,709,721,712,705,679,709,641,640,637,646,634,664,634,646,647,647,643,662,639,649,646,637,631,665,677,667,666,668,660,677,655,655,666,549,558,530,558,533,533,572,627,627,624,615,587,595,590,600,639,620,613,596,611,606,621,615,605,675,670,666,663,669,653,676,667,668,670,654,674,654,650,661,678,580,557,606,579,561,594,594,581,585,588,572,588,562,366,394,404,383,384,382,395,378,386,398,385,379,368,396,377,399,392,383,332,348,357,353,359,358,352,361,356,352,371,355,351,361,738,701,692,673,689,697,714,685,682,709,691,710,663,685,732,681,731,738,736,714,692,703,712,693,545,514,548,526,555,553,528,501,365,369,371,361,375,368,372,360,362,342,363,362,357,355,346,682,716,728,696,723,736,734,722,693,631,623,603,612,612,622,638,620,614,606,618,627,627,621,617,744,754,762,754,718,749,761,751,740,736,752,750,746,637,615,639,623,626,607,628,638,486,492,502,487,488,484,499,499,481,489,455,480,482,491,670,690,694,697,676,678,666,673,712,698,704,679,676,599,598,596,608,601,602,590,589,610,601,643,633,612,648,632,613,611,621,620,623,608,628,604,618,611,612,606,617,627,615,628,626,611,618,629,623,628,626,622,628,617,622,626,613,622,633,627,627,625,623,626,635,635,629,635,639,633,637,637,636,621,639,640,641,634,638,646,642,631,642,632,644,640,636,625,627,642,631,641,674,658,655,655,655,644,651,651,664,649,652,648,657,654,656,665,657,670,536,556,560,563,569,571,592,575,548,554,586,557,563,551,551,562,571,566,545,554,556,563,579,707,693,684,729,705,691,684,711,710,716,701,710,713,655,645,633,633,637,632,643,643,635,648,589,589,583,599,595,585,587,595,595,592,589,584,583,582,597,593,454,415,460,450,454,439,455,408,419,456,437,445,473,429,424,431,439,443,540,501,538,513,513,532,532,525,512,516,531,527,522,526,499,489,497,494,486,498,502,501,482,411,396,425,391,415,408,399,422,407,411,392,439,394,401,398,422,406,409,407,415,416,410,418,407,410,409,409,403,417,413,419,409,415,422,416,420,418,424,413,429,409,417,416,425,722,747,711,743,709,745,722,713,757,723,722,730,755,718,685,642,651,634,655,632,644,637,649,640,630,638,523,517,503,512,517,524,511,518,527,523,496,512,531,517,370,381,382,360,372,381,399,390,376,381,691,694,669,717,661,678,700,701,716,548,534,539,542,510,506,536,536,531,553,496,506,559,560,551,386,379,364,406,381,390,387,375,403,390,395,377,705,720,692,717,717,703,717,681,730,727,722,710,740,651,673,642,653,662,649,662,650,649,659,645,655,640,656,669,663,663,668,677,664,665,670,667,675,660,661,658,686,554,554,540,543,544,547,566,525,534,541,643,599,597,622,575,599,615,631,593,601,622,614,622,629,626,640,638,634,614,629,629,612,716,683,693,690,695,700,683,680,688,686,675,682,677,602,617,593,618,596,598,613,581,600,610,597,613,624,610,598,604,614,550,550,559,534,558,543,560,547,553,540,568,559,549,555,552,408,420,428,419,416,426,420,407,421,701,653,683,690,682,676,707,690,662,655,662,676,682,685,685,670,651,648,694,721,698,655,707,701,722,712,706,722,697,691,705,704,719,709,716,711,709,533,559,538,526,519,541,559,536,527,532,378,375,390,368,377,388,389,390,379,390,386,382,367,380,370,374,653,654,664,665,657,676,618,628,631,625,626,632,638,615,638,636,635,627,609,626,612,602,607,619,615,606,616,605,616,611,610,628,602,605,584,592,593,602,590,599,619,585,587,589,588,600,592,587,596,593,612,620,607,604,603,617,621,601,619,582,607,610,624,605,603,607,611,596,600,580,577,595,591,567,575,575,490,497,485,477,470,483,471,512,486,470,465,460,503,471,473,614,622,623,656,678,650,644,652,657,628,651,668,622,649,618,657,674,676,690,696,691,707,698,688,697,720,667,694,715,694,573,565,577,574,585,572,563,588,588,572,576,579,596,567,638,649,656,653,634,637,625,645,645,653,661,635,661,644,653,648,653,662,653,643,650,642,573,543,565,561,565,573,542,579,562,555,574,444,409,415,424,403,424,447,414,439,428,433,427,423,430,429,417,578,569,573,593,575,550,591,572,574,655,658,642,645,637,648,632,632,626,627,641,637,631,630,649,621,644,644,627,644,616,629,645,626,623,627,633,619,630,624,632,626,637,640,640,618,635,625,624,622,634,631,625,653,644,631,634,596,577,591,587,562,566,575,589,593,572,577,569,575,575,576,581,572,570,503,476,461,460,434,495,492,482,477,460,474,462,466,486,471,620,643,635,648,647,619,638,635,655,628,646,644,651,629,625,600,621,643,615,624,622,632,629,622,624,636,632,619,632,628,642,631,643,625,634,655,640,630,632,638,644,645,660,649,663,653,659,651,654,663,643,635,646,656,587,587,590,583,585,587,579,571,578,597,579,568,591,624,594,590,595,607,599,597,617,602,609,611,623,597,587,581,383,407,394,424,418,409,416,424,425,428,430,423,431,409,403,417,693,700,707,732,706,699,695,696,711,683,745,725,712,586,578,598,583,569,607,566,589,432,418,408,408,440,445,395,416,427,404,424,410,427,407,379,356,371,348,371,357,350,356,364,368,358,358,348,369,354,383,346,355,360,323,341,349,342,351,345,354,360,354,360,346,420,423,435,430,436,431,419,438,434,426,437,434,421,433,442,437,432,428,418,415,737,692,745,729,691,774,708,734,733,710,723,703,742,703,711,692,694,685,700,671,683,697,704,677,708,677,692,682,595,614,626,619,624,614,617,604,603,616,612,611,615,608,480,499,488,506,491,509,500,475,488,486,494,405,422,418,403,426,411,400,420,414,414,425,416,394,375,393,403,382,397,393,391,391,387,391,394,382,379,653,653,694,636,698,654,641,650,652,660,676,670,668,666,662,643,671,667,659,662,671,670,654,671,675,650,647,582,587,567,563,580,574,571,580,597,589,584,556,584,562,601,549,558,554,478,501,473,494,484,491,483,664,674,665,658,672,658,658,667,664,675,660,669,656,549,552,542,559,548,571,558,584,546,566,544,553,499,496,498,497,508,500,507,499,499,507,499,492,507,514,376,383,383,374,389,380,390,389,381,364,385,371,363,365,367,396,376,374,365,363,435,464,443,472,423,446,460,457,455,440,458,431,437,455,404,397,410,413,394,395,392,399,396,403,400,663,668,674,667,666,652,663,663,686,651,682,648,648,662,624,620,618,629,617,632,630,624,615,631,622,638,619,671,631,682,669,655,673,649,652,658,661,653,655,684,554,576,561,568,582,574,582,566,544,587,578,546,585,444,459,473,454,450,466,460,460,456,480,457,598,607,576,605,602,636,617,610,608,531,529,525,530,528,529,526,521,534,526,522,542,535,525,418,416,436,414,419,409,411,424,423,417,441,427,412,424,396,405,525,536,543,548,534,545,542,523,532,392,395,409,417,410,428,410,344,376,357,367,361,361,364,359,358,357,347,352,347,348,350,366,357,359,356,363,355,342,341,359,357,365,686,673,688,704,738,689,693,684,705,674,681,686,638,635,626,639,637,629,642,646,647,630,630,630,611,617,639,671,668,677,683,665,687,580,560,592,586,569,571,575,568,580,572,567,571,570,576,588,575,572,560,572,572,596,588,606,551,577,595,609,554,567,625,615,594,608,640,639,646,644,623,636,625,623,627,633,635,635,629,651,633,641,583,558,575,525,579,577,567,581,568,676,701,711,709,704,741,707,720,722,706,675,682,682,686,683,682,671,666,682,683,688,680,665,694,602,582,591,590,577,589,611,584,588,579,595,602,597,591,583,595,577,591,589,564,561,563,557,560,576,557,568,558,568,555,559,614,632,626,623,620,628,613,620,619,628,610,631,648,626,639,622,627,636,624,637,544,563,562,537,537,537,562,530,538,538,549,569,546,528,569,628,647,647,640,628,638,624,649,629,645,640,641,634,580,547,592,578,585,577,575,569,588,570,573,591,460,446,434,442,450,452,451,412,407,425,424,438,419,429,413,431,630,630,631,630,632,634,602,628,632,622,645,538,530,542,540,536,543,550,546,520,518,525,529,519,516,523,515,517,537,518,516,523,527,526,515,521,424,411,398,423,431,420,439,422,426,419,436,425,427,556,558,568,572,586,557,579,555,575,573,505,476,485,496,495,486,495,505,493,665,671,665,670,669,682,666,666,675,674,675,675,582,591,569,592,582,588,568,591,601,615,578,569,562,552,556,570,567,572,556,564,566,557,542,568,566,568,532,526,516,522,507,520,515,519,533,528,518,529,522,509,399,390,392,386,381,390,386,661,652,643,677,622,643,634,628,661,643,640,667,635,639,652,658,648,650,650,662,655,664,662,675,650,668,648,637,659,579,512,550,550,564,582,554,556,576,578,719,714,726,729,735,743,727,722,720,736,621,614,609,613,616,621,631,622,618,626,628,632,633,613,609,617,685,640,665,644,661,623,688,701,637,655,693,672,650,668,671,705,688,703,690,706,696,691,708,692,698,719,706,693,604,608,594,585,595,609,653,662,659,639,650,663,660,646,649,661,671,546,556,527,536,533,523,522,487,538,532,556,507,550,542,505,536,382,378,374,390,379,366,393,376,379,384,803,784,796,814,796,730,756,788,819,774,787,798,779,787,776,644,639,658,640,654,643,666,642,666,644,666,642,634,642,637,629,629,644,643,652,679,693,652,652,656,678,677,645,655,625,638,619,652,647,647,655,634,638,635,641,628,643,584,585,585,590,582,580,586,585,586,586,584,483,473,479,454,483,471,454,463,466,458,456,481,451,467,629,616,641,624,630,628,611,626,617,635,628,627,615,631,635,623,636,636,626,651,643,636,546,555,535,576,560,527,547,535,560,542,565,647,652,631,662,631,615,638,645,636,627,650,648,665,672,666,644,663,659,658,675,664,671,660,681,679,669,654,595,546,563,552,583,560,572,582,573,594,544,582,553,571,755,753,756,748,780,781,759,726,747,732,668,651,673,647,680,656,654,645,660,669,666,665,557,579,575,587,588,587,563,568,565,557,569,564,589,574,441,448,438,456,436,447,452,456,454,433,427,450,454,450,536,518,519,525,507,521,513,540,539,525,510,512,512,545,541,522,380,402,371,394,399,382,387,397,396,402,396,400,405,382,400,363,372,358,366,357,350,364,353,359,356,358,373,371,374,379,357,366,384,374,391,373,644,647,630,617,627,665,657,616,666,639,635,640,653,653,624,601,647,616,625,484,448,461,459,478,457,452,465,464,470,683,685,699,702,677,686,674,707,701,683,686,699,674,701,665,706,602,568,573,573,564,577,561,602,566,565,577,566,578,569,548,586,568,592,567,587,582,585,609,610,578,602,560,570,626,599,581,605,608,584,628,643,625,663,639,638,665,654,636,647,671,644,635,550,543,550,554,564,569,559,558,535,528,532,556,572,535,545,655,636,657,666,661,654,653,670,607,606,603,598,608,611,606,611,581,607,606,455,495,480,460,468,458,491,481,501,450,467,492,471,487,475,489,466,714,717,743,726,730,701,690,709,739,703,738,739,716,737,719,731,732,703,729,611,606,612,622,609,621,638,587,650,617,606,633,700,712,700,686,690,703,721,719,696,554,574,549,586,571,573,577,561,549,560,386,385,392,382,383,388,387,390,397,372,386,377,385,666,627,658,680,677,674,686,679,671,720,668,670,664,658,686,694,691,690,678,645,446,468,462,453,438,459,432,418,446,424,438,457,458,721,767,727,731,729,743,765,758,751,724,739,729,695,610,635,616,603,620,596,598,592,607,624,613,491,508,518,500,530,506,498,512,523,521,505,508,494,512,490,517,503,514,502,519,505,511,497,503,506,492,495,493,505,502,421,420,408,427,443,426,421,426,427,440,406,410,398,396,395,403,418,420,404,403,557,557,565,563,579,593,567,578,565,589,581,636,646,652,640,644,639,627,618,653,651,647,627,635,664,693,680,668,656,666,647,665,665,573,572,566,562,572,567,600,568,579,578,565,571,575,417,421,414,442,447,438,435,413,466,425,436,429,446,437,408,425,517,533,528,540,517,537,534,518,438,397,407,424,414,407,406,427,420,390,422,377,378,379,377,383,373,378,384,374,371,367,379,362,388,371,414,413,409,407,424,408,421,408,417,408,400,407,409,412,417,403,404,398,395,408,388,379,404,387,402,396,388,405,396,390,392,404,400,397,393,396,404,428,426,422,409,429,425,434,425,427,412,414,425,425,436,445,425,410,416,408,417,396,412,409,415,414,416,410,420,626,644,604,636,611,595,603,593,631,615,602,603,474,463,449,483,470,468,444,463,442,477,470,453,467,458,444,448,444,430,442,438,459,441,431,426,456,438,441,448,465,439,454,452,455,431,450,446,439,438,456,432,456,435,441,465,436,438,431,460,438,455,827,814,786,831,809,827,789,803,826,782,800,850,650,669,689,685,683,675,683,683,671,709,683,668,677,667,675,686,680,656,685,693,678,694,693,672,698,671,619,597,594,609,610,599,595,583,519,565,565,523,547,544,529,553,527,535,533,526,539,547,523,678,649,665,683,693,670,563,560,561,588,550,547,544,552,369,361,348,366,389,381,368,371,373,355,372,375,356,388,362,387,371,390,370,363,374,379,367,376,376,395,377,366,612,620,596,602,628,599,613,605,623,623,601,623,623,615,526,529,516,515,505,506,533,523,501,511,521,551,514,522,547,367,374,372,367,385,390,378,377,382,383,379,388,552,556,605,635,592,617,577,611,595,597,586,589,614,644,639,636,633,609,632,627,626,625,583,578,590,595,591,591,596,581,592,488,486,456,477,490,499,483,481,483,473,480,651,656,662,666,622,634,643,647,646,640,643,595,577,579,583,579,592,586,581,564,600,573,575,589,574,583,583,577,393,391,397,394,387,388,395,384,401,393,406,387,388,372,390,407,378,668,651,689,652,666,683,668,614,656,682,678,669,672,695,668,692,682,690,696,692,707,699,676,687,695,698,675,672,709,593,607,579,588,611,582,601,587,605,604,728,722,735,714,711,720,730,718,719,720,713,618,630,621,616,614,628,616,612,616,625,637,605,603,623,525,527,524,522,553,531,542,540,529,536,518,500,506,522,515,491,506,509,514,518,513,514,521,520,504,496,509,485,494,508,529,495,512,491,499,412,420,400,442,449,435,427,402,381,396,406,406,395,409,399,389,379,400,395,681,644,685,687,679,681,675,671,630,671,684,714,682,691,699,676,691,702,702,683,733,664,692,673,696,694,701,698,707,606,601,595,620,631,619,603,605,633,591,616,606,638,572,576,566,569,572,568,569,551,548,541,548,568,571,574,571,577,564,621,627,632,615,633,635,637,620,620,626,642,620,678,670,653,680,681,680,668,679,652,664,654,679,669,676,685,593,563,566,547,563,563,575,570,556,558,540,571,552,561,397,416,395,395,396,396,401,380,377,385,397,388,388,401,381,737,698,708,725,718,715,681,707,715,700,719,699,711,698,710,575,572,591,574,585,571,573,597,600,598,572,587,574,580,608,611,570,394,373,397,407,391,392,379,421,398,385,382,396,400,394,662,703,687,679,658,693,680,698,677,665,670,673,684,671,678,664,674,682,685,663,669,695,665,674,666,601,622,617,631,610,602,589,617,598,619,542,542,571,562,562,562,556,543,541,563,556,524,548,560,544,541,631,630,634,623,643,610,625,642,627,637,644,645,643,637,624,552,558,556,566,555,560,570,540,556,561,563,568,382,428,423,415,419,427,441,428,420,421,412,413,436,448,584,610,595,563,573,571,574,594,588,578,559,574,566,683,670,677,674,679,676,673,659,667,674,660,688,650,666,682,663,661,680,567,553,573,576,572,567,574,586,571,577,645,613,596,651,652,645,651,655,632,650,640,645,635,647,637,632,643,632,651,639,633,629,640,535,588,538,562,565,554,563,539,552,550,547,635,629,638,626,619,629,635,628,654,658,621,644,632,620,640,658,647,644,658,652,664,659,651,656,661,659,664,554,555,545,563,552,545,559,554,561,554,395,391,401,395,394,389,379,407,379,707,733,700,684,711,718,695,705,706,708,728,691,660,614,615,633,623,613,617,638,634,639,634,651,619,610,623,622,612,632,609,621,625,628,623,522,511,508,526,526,503,502,512,520,510,514,503,524,533,526,518,529,518,525,519,522,534,536,528,393,363,393,393,373,395,382,382,388,394,378,373,386,616,613,641,657,625,619,634,652,637,624,637,626,620,654,659,651,666,659,645,663,636,670,660,679,647,596,607,597,575,591,615,586,592,580,600,591,573,605,600,589,496,505,485,500,504,501,479,490,509,479,482,480,475,493,642,647,643,652,674,642,652,655,650,672,640,631,648,656,672,661,662,680,679,673,663,663,678,670,672,669,690,669,665,680,546,552,548,535,560,540,676,672,681,673,684,660,683,662,663,689,666,667,678,599,597,595,616,590,591,599,599,599,600,638,599,601,594,448,412,415,411,402,420,417,413,432,424,408,438,410,395,434,410,406,433,394,404,388,393,401,396,398,411,386,379,398,393,397,657,642,645,667,657,654,635,663,645,625,654,660,654,624,619,611,623,621,628,631,618,624,643,620,618,617,642,622,628,613,657,655,668,677,677,653,646,657,666,660,594,605,598,585,619,602,602,598,604,598,584,370,413,382,387,379,384,400,405,401,413,388,397,371,399,387,378,387,391,383,398,382,371,378,373,403,611,576,613,576,589,593,561,610,576,595,579,591,583,717,711,727,728,718,696,725,714,599,590,607,601,599,604,619,619,585,591,605,612,583,602,611,637,673,679,700,614,646,649,626,675,641,654,622,627,586,611,602,604,618,625,603,594,610,650,629,637,630,618,629,660,647,633,638,620,634,649,564,561,544,559,544,559,564,566,564,411,404,420,436,418,417,434,412,396,421,425,424,431,420,404,412,562,574,538,570,565,582,550,556,590,557,569,561,556,590,694,686,681,674,692,688,669,665,673,585,587,593,602,585,592,605,597,595,588,578,592,578,581,585,387,399,393,364,360,361,392,393,390,385,365,385,374,353,323,346,354,353,355,354,335,346,358,355,327,347,332,660,639,682,668,651,681,675,675,715,687,695,685,651,664,670,688,678,663,645,684,674,667,659,662,688,663,665,667,683,568,560,556,559,548,561,572,551,549,560,540,540,629,649,636,600,638,581,622,618,647,598,596,599,619,587,612,597,603,602,622,610,611,600,544,538,543,555,537,550,540,545,534,546,545,524,527,548,541,559,533,385,373,373,377,368,375,360,390,376,393,380,363,388,396,378,373,373,388,661,634,655,676,664,683,654,624,654,668,654,685,679,682,654,659,646,677,666,684,665,666,669,667,653,643,600,596,611,593,594,611,609,585,628,596,608,622,604,622,574,581,606,498,499,504,498,513,502,504,495,520,504,385,381,399,376,394,383,388,398,386,377,390,387,401,396,406,378,681,720,672,733,646,603,604,597,595,577,615,587,611,613,610,600,613,427,456,434,444,440,438,463,409,430,432,453,428,429,596,618,608,598,615,598,612,616,589,599,607,625,609,594,601,615,594,613,610,638,612,624,617,624,618,616,626,615,616,614,601,617,622,615,608,614,627,600,627,612,663,668,655,659,670,672,668,675,662,660,669,661,680,556,562,586,567,564,549,585,561,578,554,584,578,581,561,583,562,664,670,650,672,673,661,656,669,666,662,651,596,565,563,575,575,574,563,586,572,558,694,683,673,682,688,666,674,672,677,687,672,649,668,570,568,567,580,565,590,570,574,568,567,568,573,566,585,577,601,583,592,561,680,706,639,643,645,690,620,719,620,658,681,651,640,631,643,627,622,617,624,647,650,648,641,630,652,657,654,652,654,653,647,658,666,652,571,560,556,570,573,568,567,571,590,591,581,591,573,562,549,549,531,534,538,540,543,539,561,548,538,552,609,627,596,619,610,627,617,621,602,617,633,607,610,610,618,637,627,629,624,637,624,618,627,640,625,626,629,627,625,627,621,612,633,639,625,632,621,627,637,636,628,628,629,633,653,643,639,647,639,611,625,627,639,639,627,652,639,558,555,555,556,555,550,551,559,563,556,549,551,559,536,542,544,552,529,550,545,407,417,418,414,421,408,428,402,401,421,412,565,570,562,557,548,551,548,571,551,588,540,545,544,669,658,678,687,681,670,674,684,618,608,600,626,632,624,609,620,626,607,621,615,608,607,625,620,510,483,488,498,500,485,479,500,380,364,363,381,390,393,379,376,361,374,362,384,387,353,354,340,329,333,349,359,327,332,341,372,393,371,363,389,374,377,377,366,377,373,375,364,376,374,615,595,624,578,588,601,592,587,618,615,594,619,620,477,465,465,467,473,462,486,479,466,458,474,461,481,498,465,400,393,390,399,392,407,414,412,432,396,390,407,355,342,361,347,346,344,348,341,359,341,337,344,320,329,328,325,321,329,332,315,319,369,366,383,388,369,387,395,380,382,378,389,383,381,406,424,409,406,418,405,784,763,791,764,802,793,797,800,779,821,787,737,785,742,748,698,703,693,708,704,709,694,687,701,696,689,696,683,695,701,669,706,563,586,579,571,569,583,583,583,569,558,597,570,583,571,541,593,607,598,609,617,655,622,646,616,610,573,624,654,550,595,596,612,593,595,601,598,598,606,597,598,600,588,591,588,579,600,585,599,593,603,621,615,603,605,618,599,613,614,610,605,611,611,602,627,635,618,616,631,624,639,629,620,625,628,621,624,621,642,635,641,631,643,633,637,626,628,640,548,545,523,536,540,562,559,543,568,550,534,527,572,760,735,742,729,719,739,739,720,718,722,726,710,725,704,730,736,728,574,618,612,590,586,620,602,570,612,611,621,637,613,583,620,648,677,662,661,618,697,678,699,682,667,646,663,630,634,636,647,635,628,622,641,618,620,637,608,616,624,598,608,612,603,604,609,621,610,622,609,602,603,617,617,616,614,607,623,638,617,625,631,623,636,630,634,621,625,624,642,643,635,624,633,626,631,565,575,567,547,569,561,606,578,559,588,569,333,367,369,332,367,381,356,383,365,404,376,386,354,358,394,363,386,368,368,394,367,388,380,388,359,626,616,646,642,608,611,638,658,590,618,639,638,652,676,694,699,672,697,681,691,682,677,570,572,581,567,577,580,579,591,562,656,656,673,662,691,691,642,649,679,656,643,626,632,640,654,634,624,639,626,621,639,625,621,644,574,579,569,563,560,568,592,562,576,555,571,587,563,564,581,554,548,560,551,547,540,554,556,555,561,567,551,535,558,568,521,517,523,519,505,506,499,504,504,515,508,518,511,394,389,400,384,387,406,389,400,407,400,392,393,383,675,678,692,677,662,667,677,653,673,675,675,674,662,685,677,692,652,659,668,645,664,666,669,650,662,657,656,666,661,570,590,574,592,590,564,566,575,579,596,417,397,413,406,416,392,401,426,396,403,427,427,423,419,675,691,711,677,686,704,702,688,697,696,648,691,707,690,678,629,603,609,616,604,595,643,626,614,617,627,635,606,637,405,403,407,388,403,411,406,412,415,412,691,703,727,647,724,687,697,682,589,594,598,607,610,595,602,598,599,586,610,598,591,710,684,699,693,700,696,708,688,725,709,693,693,702,722,693,510,478,498,516,518,482,531,555,527,539,497,526,511,507,509,357,359,375,359,360,372,370,381,366,369,360,378,377,365,390,395,377,386,385,377,369,378,392,380,391,393,398,399,387,401,380,392,380,390,386,385,406,352,356,352,353,348,355,349,342,359,347,355,365,366,351,361,347,353,364,350,347,363,364,346,357,362,363,369,376,337,343,347,358,340,352,343,351,352,599,599,568,597,608,613,595,584,595,581,580,595,557,593,593,596,573,566,438,430,427,430,408,414,431,429,428,431,438,316,349,333,338,323,343,342,347,359,345,352,330,353,647,694,686,692,669,633,681,658,677,688,669,708,648,673,703,605,623,648,646,635,644,640,619,644,651,661,436,439,433,417,445,447,417,445,425,424,424,442,423,439,454,368,383,381,356,350,373,380,370,368,369,373,377,362,317,318,363,334,361,321,348,344,329,330,327,339,332,353,317,562,581,583,565,585,558,571,548,589,562,539,586,437,442,439,428,461,444,436,442,446,443,420,400,382,387,411,389,389,398,388,374,400,401,390,379,395,399,446,445,425,443,428,436,425,433,432,433,424,423,605,601,587,643,604,602,609,631,614,622,634,606,634,611,489,500,515,499,485,485,486,514,502,491,488,629,633,662,645,647,660,637,638,648,653,638,648,629,640,656,493,519,512,533,522,521,374,382,386,391,394,390,386,391,390,645,643,611,598,586,627,592,604,589,655,616,623,649,523,521,533,543,527,511,538,538,540,531,521,523,378,388,393,373,383,381,376,390,374,385,401,397,399,343,333,341,334,347,332,326,333,338,316,332,345,327,339,341,338,662,699,658,675,699,680,653,692,688,714,686,676,706,699,668,672,607,637,624,617,632,602,633,622,648,621,620,621,624,618,620,684,660,683,678,701,692,706,698,704,692,632,690,728,682,684,700,610,687,664,684,687,684,685,686,683,683,681,686,682,686,698,687,704,688,699,692,676,689,652,634,645,640,644,637,620,612,636,627,626,625,406,410,416,409,421,420,421,424,422,407,405,422,432,434,419,408,400,417,392,366,356,364,354,385,393,384,370,377,376,382,378,358,387,673,666,704,681,653,674,647,690,690,674,619,616,605,626,617,613,623,617,621,618,611,620,601,620,632,612,513,513,517,509,526,515,526,511,524,519,495,534,441,450,439,442,447,439,437,456,457,417,446,440,436,442,608,595,605,579,572,571,615,596,604,601,595,593,572,577,618,545,539,552,545,532,519,542,531,524,559,536,529,533,545,553,390,394,407,399,373,395,406,382,406,394,397,677,662,665,673,690,657,703,668,674,684,657,686,674,700,680,657,672,685,663,669,666,676,675,672,676,665,669,667,685,677,563,575,586,580,589,581,563,562,596,589,589,600,586,575,724,712,729,728,706,715,710,716,711,726,715,595,595,557,590,605,609,561,597,581,586,597,610,593,608,702,683,669,660,683,694,718,699,697,695,708,680,680,689,699,690,604,586,613,617,605,590,623,603,633,626,629,499,470,484,498,498,492,487,503,476,471,479,485,475,512,449,479,518,479,683,661,651,673,691,686,677,683,673,686,688,662,679,670,593,596,602,608,585,591,597,605,592,601,614,595,599,597,589,599,689,692,695,699,683,681,686,679,581,552,584,573,596,558,581,583,555,581,562,676,659,678,667,675,671,653,674,680,672,666,675,670,680,686,672,676,562,541,550,564,582,545,583,540,555,584,557,589,571,357,342,356,347,367,339,337,341,353,367,382,383,379,396,367,386,384,391,370,392,406,388,386,390,383,386,378,715,722,735,768,740,766,752,709,709,743,744,720,735,601,601,622,622,584,597,611,587,590,600,600,660,658,654,656,640,658,643,662,643,664,569,587,564,593,573,605,575,593,594,594,588,558,595,386,404,426,408,413,402,417,411,403,422,353,364,346,353,359,363,358,366,363,349,364,368,339,356,357,360,375,401,406,419,406,412,408,414,407,404,408,416,397,389,397,417,404,410,406,403,411,400,392,398,406,740,698,713,742,697,718,685,726,719,723,733,595,604,621,627,655,615,633,639,631,630,615,604,598,723,696,686,679,723,657,711,748,672,717,715,681,695,702,700,708,708,713,685,559,579,577,594,574,599,590,579,567,585,577,562,588,574,580,577,588,370,354,369,360,387,369,352,322,379,365,358,373,369,696,744,724,721,718,719,715,727,739,645,679,723,719,662,662,670,659,666,642,648,660,627,660,643,649,646,415,395,414,427,448,402,446,400,427,413,401,425,438,417,417,422,392,390,404,416,396,406,420,413,587,573,558,570,562,555,577,549,537,567,569,556,568,564,565,561,556,471,463,453,455,455,457,464,483,476,462,447,451,443,446,461,452,451,451,455,461,451,444,444,461,436,445,465,446,441,445,443,455,449,442,584,600,607,582,604,580,582,579,602,589,505,498,516,512,505,512,491,517,503,508,520,507,509,504,685,658,689,697,677,694,699,678,685,659,691,673,685,690,618,599,610,619,611,600,589,593,617,621,620,589,606,580,587,378,358,378,381,393,397,367,384,401,404,394,364,382,564,593,564,562,605,592,585,600,573,575,556,606,572,598,584,576,569,465,462,460,450,455,457,463,444,443,467,454,552,562,541,569,587,548,551,553,556,552,405,390,393,419,402,414,404,397,384,397,379,407,403,398,380,413,394,402,377,407,401,387,435,445,442,466,467,449,431,445,444,451,440,445,412,417,415,427,419,416,424,424,417,406,413,417,414,612,578,597,585,597,581,599,582,669,675,662,677,681,673,671,674,648,575,588,593,589,599,590,603,604,585,611,613,597,612,410,416,403,409,414,404,408,384,414,429,395,401,402,407,407,395,408,443,427,425,447,426,425,429,452,428,428,434,428,442,420,434,432,441,429,437,452,451,432,447,430,423,438,429,437,390,401,388,408,386,388,403,391,393,388,399,389,400,384,390,397,697,698,700,697,690,701,698,693,717,717,709,675,731,729,695,547,584,626,559,573,586,590,557,574,574,547,580,597,390,406,394,398,424,409,364,408,417,467,488,482,483,489,473,498,645,672,631,641,637,646,643,649,660,656,623,647,668,626,653,444,414,468,443,443,461,442,448,442,448,406,321,325,320,316,326,315,332,333,313,338,328,321,298,350,327,340,319,310,321,346,331,344,343,581,589,659,591,614,641,617,604,624,608,624,629,641,627,620,613,623,613,567,600,636,640,625,615,626,648,459,455,457,400,434,432,434,446,466,432,449,610,591,582,616,615,614,607,595,609,591,593,607,604,624,615,596,608,580,592,603,585,568,603,597,596,581,606,593,584,599,605,585,622,591,603,602,624,598,601,621,580,576,607,586,602,582,588,596,580,575,595,561,600,440,452,403,424,425,419,437,420,401,397,427,436,403,421,440,440,427,417,417,407,438,442,422,410,409,420,428,421,413,418,436,424,387,390,397,392,387,395,383,373,391,377,384,395,653,656,627,649,678,650,660,640,633,653,671,677,645,681,675,703,672,688,654,687,686,676,692,703,671,680,617,606,629,622,643,629,620,615,627,622,632,610,446,434,432,438,428,416,448,453,426,445,421,427,419,452,437,443,451,452,441,449,461,449,440,427,433,451,382,384,394,398,388,384,384,398,391,382,399,390,379,393,383,376,384,372,748,749,789,763,745,717,785,725,688,619,610,629,585,592,623,590,605,610,588,752,741,751,770,762,752,729,754,768,762,607,593,619,579,589,597,618,614,598,596,617,606,588,607,691,675,694,680,687,696,674,680,689,673,682,559,554,532,540,560,545,540,564,521,526,583,548,549,541,352,337,353,339,336,333,357,352,364,355,346,343,353,339,338,355,354,324,355,337,345,366,387,368,359,362,360,352,364,364,343,367,353,388,374,361,365,381,386,384,388,381,365,370,374,387,388,374,383,381,386,370,370,369,369,380,357,370,372,373,384,369,374,377,368,356,333,329,313,322,338,316,327,337,325,331,327,316,323,317,327,329,334,317,368,393,367,379,374,389,385,392,383,357,364,384,365,448,419,428,420,434,437,425,411,630,578,602,608,604,600,600,626,588,619,597,597,605,639,658,649,636,634,640,635,630,619,651,622,631,636,626,632,627,526,570,546,547,566,529,549,528,552,559,552,558,534,537,572,569,676,659,657,681,682,662,664,653,668,653,672,596,614,615,626,601,608,604,617,624,603,601,386,369,377,376,365,366,362,374,362,401,383,394,402,408,388,402,397,397,402,401,416,408,399,399,405,411,391,405,395,386,385,388,393,408,393,388,717,691,700,712,688,678,722,740,700,733,695,754,735,719,716,700,701,724,707,705,718,693,714,715,718,715,627,603,611,591,601,587,573,621,609,614,614,602,590,570,600,650,600,596,636,659,637,604,629,629,585,645,588,598,657,641,592,643,648,641,658,660,668,661,651,665,601,615,588,591,592,580,593,571,585,591,596,593,590,580,590,587,594,590,597,596,576,583,446,467,456,444,444,444,445,463,426,442,452,439,448,586,598,575,560,589,575,573,581,603,583,569,572,580,583,563,670,658,673,671,677,683,668,653,677,651,682,677,666,671,679,674,683,667,684,675,676,674,655,669,676,670,668,565,555,558,559,552,562,530,538,542,565,555,564,577,537,545,558,546,565,563,575,560,547,550,624,603,602,594,588,630,568,629,599,593,611,628,625,598,601,619,599,634,598,605,608,621,587,609,612,623,605,617,615,608,623,653,649,640,639,652,645,652,658,647,643,652,649,651,651,648,548,523,565,538,547,548,534,543,541,540,527,541,546,624,634,623,625,619,628,615,643,636,634,639,639,639,620,620,653,684,656,618,624,640,629,640,635,642,650,646,647,543,552,554,553,550,568,560,554,576,564,559,550,556,552,575,434,452,443,428,433,419,436,457,430,429,454,434,446,434,576,579,603,575,583,580,617,584,595,590,584,660,661,650,662,660,680,625,659,655,675,669,633,654,658,528,516,536,557,553,523,547,517,543,532,545,545,521,558,476,527,384,388,383,389,405,375,398,381,378,388,384,373,382,390,697,675,670,664,688,684,685,656,682,658,696,701,692,687,691,694,689,555,551,584,553,574,583,560,557,550,547,387,370,374,362,354,370,372,378,377,392,376,368,369,395,383,430,438,429,426,430,404,403,398,405,408,396,401,417,394,390,401,401,399,405,385,388,387,645,625,656,635,623,655,634,618,632,685,625,637,634,644,632,639,641,622,634,631,633,638,639,625,625,623,630,533,541,541,572,562,543,535,574,554,550,552,563,567,554,448,421,437,446,452,470,448,461,456,467,451,451,683,686,674,684,662,663,664,657,656,674,659,674,654,423,448,453,423,447,432,451,441,427,409,416,450,665,630,659,643,651,665,660,681,677,654,670,623,661,689,692,694,693,709,692,688,698,691,609,560,590,599,558,602,603,552,574,567,595,580,578,382,342,372,352,366,379,353,361,370,340,368,345,355,376,354,340,709,741,701,706,713,712,692,750,741,710,630,597,617,598,642,631,617,599,610,625,600,605,620,626,623,627,375,390,380,378,376,383,383,764,804,787,748,730,753,750,709,754,783,744,769,744,762,759,654,661,639,659,637,650,663,655,663,659,653,638,657,655,663,651,738,723,734,713,727,749,739,739,731,755,724,625,628,625,630,629,625,631,632,394,408,425,457,439,456,418,436,417,413,409,545,565,568,560,558,560,536,568,555,543,562,561,562,558,563,537,454,445,435,441,439,444,436,451,424,435,454,442,436,545,570,578,542,540,569,547,536,560,560,577,559,502,508,492,498,522,495,503,500,498,655,637,648,651,629,657,631,652,651,652,683,684,699,684,669,678,647,681,668,671,676,664,660,598,593,568,568,599,580,584,576,413,386,377,398,389,398,401,405,388,391,378,396,398,394,723,708,727,728,698,709,709,759,612,657,664,649,643,628,636,652,654,673,658,658,624,644,657,656,549,567,586,567,589,587,717,719,712,740,704,687,731,713,717,723,740,711,740,639,650,649,639,652,652,629,645,658,645,645,646,646,644,619,597,613,602,605,618,615,597,607,602,618,414,416,430,414,411,423,423,434,421,422,450,382,377,364,365,378,371,368,359,370,387,370,369,372,395,395,402,403,370,397,385,409,404,402,400,388,381,378,370,368,370,371,377,396,390,384,388,384,376,382,377,375,379,381,789,731,769,773,768,795,768,746,692,741,773,817,792,778,724,677,680,661,706,654,675,668,663,684,696,664,658,660,657,669,485,508,497,515,495,524,517,516,489,492,524,519,500,514,504,419,409,423,411,435,418,389,422,409,413,409,436,389,393,395,405,387,412,408,409,403,398,421,401,409,397,404,399,417,402,561,585,560,582,574,576,555,580,573,569,570,573,574,574,573,585,578,559,591,543,527,534,529,552,549,556,524,548,557,559,534,548,572,411,409,399,393,397,386,730,740,752,721,746,742,709,746,764,775,776,736,624,633,635,640,661,638,659,627,640,642,669,634,626,627,651,644,667,622,637,369,398,406,403,410,400,391,391,428,423,371,362,378,374,361,375,347,347,672,687,652,697,696,675,677,684,673,697,666,660,692,667,650,653,644,642,652,666,662,665,646,681,679,682,699,680,677,681,677,668,689,682,675,545,531,544,547,562,544,529,542,559,547,521,545,530,710,713,716,709,695,715,710,687,678,697,696,701,699,623,586,618,600,597,614,590,608,614,797,741,764,768,754,754,768,764,776,632,653,622,639,639,644,654,627,624,611,650,629,638,602,649,615,621,633,650,632,632,601,621,609,630,601,637,628,642,634,609,634,652,633,628,623,640,630,637,633,633,625,642,634,556,573,586,581,581,566,542,582,566,573,578,573,568,543,563,661,658,684,701,699,684,676,702,661,703,648,669,656,658,669,682,662,655,656,680,664,674,662,673,660,668,689,686,706,696,713,689,700,709,705,616,624,617,601,615,613,617,604,616,614,618,622,620,617,621,612,619,632,528,499,535,527,523,533,403,393,403,385,404,422,378,380,390,402,379,402,408,397,354,332,334,326,335,359,330,339,397,390,401,403,393,396,402,399,398,393,389,398,410,397,399,436,452,445,423,423,445,430,435,442,438,436,441,639,655,644,661,679,657,657,655,644,663,661,700,701,689,689,699,704,704,683,692,696,685,700,682,697,693,650,619,621,622,617,638,605,625,630,618,605,617,606,625,609,635,619,625,665,656,658,660,657,645,647,654,655,656,648,611,622,632,612,627,633,623,626,639,633,636,624,605,635,631,629,614,620,553,549,550,547,530,545,545,537,532,546,541,543,527,534,531,534,394,392,419,364,373,388,382,414,383,392,391,386,393,367,392,377,410,396,370,701,691,682,695,715,702,721,695,468,454,449,465,461,447,467,455,466,457,474,452,455,468,527,552,533,550,551,517,558,544,533,533,546,530,384,410,392,425,379,393,428,383,414,414,417,410,381,385,374,367,359,351,353,371,349,352,340,351,376,367,362,348,374,351,711,708,753,725,750,737,743,733,716,718,730,737,696,685,697,696,709,676,703,715,708,701,705,694,703,696,704,707,609,614,634,601,631,607,622,634,642,641,611,648,516,508,517,492,526,489,524,503,508,512,495,530,525,524,521,528,648,634,624,617,633,612,624,630,640,613,631,631,613,636,625,645,641,630,614,593,566,591,581,561,578,586,578,572,572,671,705,684,726,723,713,715,704,709,658,683,665,679,642,659,636,647,676,667,655,653,653,657,661,667,649,662,658,560,533,578,555,569,557,564,560,576,566,541,561,564,565,557,567,397,391,390,405,397,401,401,414,412,402,397,401,403,397,389,404,402,557,551,532,541,538,551,527,551,544,565,567,555,535,543,471,451,457,445,423,441,384,391,380,392,367,394,384,378,389,378,394,382,397,397,393,387,383,396,378,386,376,383,384,386,375,390,577,617,581,597,570,585,600,585,607,628,617,418,437,461,460,453,446,451,442,444,455,444,457,469,448,448,455,370,361,359,372,361,367,370,378,362,359,370,378,366,378,385,371,380,367,367,377,380,373,372,372,392,418,409,422,418,423,424,410,405,405,423,427,444,455,464,426,464,457,447,628,631,637,635,632,610,624,624,623,616,637,644,620,618,627,631,656,657,639,645,642,646,658,668,642,663,675,639,628,667,627,647,649,631,634,644,659,624,643,632,642,643,621,638,647,636,634,642,645,618,611,587,594,589,572,593,601,570,589,590,595,581,597,593,414,405,406,433,428,419,417,385,430,408,410,409,367,378,372,358,369,365,382,369,358,363,365,365,370,370,401,391,397,400,384,404,405,403,419,413,427,410,426,429,393,410,417,408,431,425,411,419,415,413,427,425,656,668,653,639,683,644,665,667,664,632,678,666,661,665,675,663,689,665,665,650,662,675,583,576,557,558,532,568,574,571,549,543,549,561,580,558,533,390,368,363,365,385,366,355,375,370,352,375,370,380,382,381,365,399,382,394,361,375,370,370,369,388,361,387,690,702,681,695,682,685,690,691,696,687,685,441,388,461,461,468,425,447,383,415,433,445,388,449,425,431,444,431,463,602,611,600,613,587,588,605,599,608,613,594,604,618,588,585,604,600,608,610,636,614,617,622,618,624,595,598,616,582,566,574,546,563,560,578,558,574,577,554,578,545,553,641,671,671,674,664,637,649,663,656,677,661,655,657,602,604,608,612,620,608,605,617,588,424,416,408,416,406,441,427,438,435,418,431,424,425,431,434,590,605,583,573,570,605,595,586,597,572,616,588,612,577,500,505,494,491,511,495,498,497,488,648,672,633,664,643,626,652,653,629,662,650,674,734,721,726,738,725,732,584,585,569,591,597,552,607,589,597,588,616,593,597,589,718,723,723,723,733,723,725,729,719,704,709,705,726,716,715,602,606,612,605,597,600,613,600,586,598,589,605,610,611,613,580,609,614,600,645,668,659,657,660,671,650,668,664,684,659,674,669,658,674,669,604,613,587,593,590,601,601,589,605,601,607,609,601,609,423,415,407,402,399,426,425,405,411,385,355,351,362,357,368,355,364,351,363,355,354,351,354,353,344,690,662,666,646,682,674,715,598,607,607,589,603,576,589,594,607,618,603,635,591,588,633,657,643,621,637,654,631,636,638,642,640,655,652,636,661,643,742,773,747,753,752,752,768,752,764,752,741,647,662,633,661,646,645,633,636,640,641,651,658,655,650,657,416,428,398,383,371,381,417,382,417,409,384,382,377,370,372,389,391,379,378,398,400,398,391,398,378,659,653,667,632,644,665,692,620,647,643,651,645,664,678,675,678,659,665,670,702,674,658,702,605,613,619,622,609,599,593,597,620,585,595,532,530,530,534,513,518,509,528,512,516,495,474,488,474,496,472,500,485,484,478,479,468,457,640,661,662,644,665,645,665,669,659,656,661,640,629,665,655,659,668,657,665,658,656,653,633,669,657,672,651,662,664,665,670,651,508,526,524,545,537,522,533,581,504,495,513,509,535,563,543,531,363,350,366,351,353,363,360,366,364,364,378,374,366,369,360,356,372,382,359,372,363,377,369,402,385,377,367,365,610,602,609,632,604,613,602,617,593,579,607,617,609,411,432,445,407,422,428,415,441,413,399,410,405,420,412,432,433,429,377,364,348,358,348,363,349,354,369,345,351,349,379,345,348,358,534,545,564,547,562,537,553,554,575,534,584,557,555,562,577,590,625,636,604,621,614,621,615,617,622,623,627,638,622,605,598,646,609,592,584,611,581,608,608,607,617,606,605,616,592,597,620,397,399,358,409,359,404,394,368,386,405,369,366,349,361,361,338,354,351,333,359,356,345,355,341,345,339,349,585,613,619,636,611,634,636,625,605,597,618,618,623,643,623,541,520,540,538,548,541,534,548,549,528,545,533,541,546,542,513,520,516,511,503,519,518,412,403,407,407,402,412,402,404,400,368,376,398,389,385,387,385,386,382,387,386,380,377,378,365,367,377,371,372,359,373,382,373,370,380,348,358,356,355,350,347,368,367,364,351,343,366,369,357,363,353,358,360,358,355,353,425,427,441,429,425,434,424,422,419,427,426,418,422,416,431,431,474,451,470,458,476,464,470,463,475,457,466,455,857,836,809,894,800,883,816,861,804,874,873,666,711,668,675,681,714,682,647,711,684,659,710,687,686,385,393,417,397,408,401,404,406,385,409,354,416,409,424,340,341,353,334,332,330,342,323,327,337,369,357,337,343,360,358,358,331,345,446,436,420,441,449,443,421,417,436,462,447,446,431,442,446,425,433,429,452,419,440,428,431,696,713,713,736,710,703,715,679,724,720,720,729,697,598,576,590,563,579,613,570,550,568,563,578,378,388,389,378,398,395,400,402,390,382,373,387,399,372,691,718,715,677,707,708,711,703,728,673,720,730,710,710,661,635,653,637,656,638,626,637,627,646,416,435,421,424,412,417,407,444,414,412,352,353,352,344,354,358,361,361,341,339,352,359,354,357,357,354,350,351,356,351,344,350,363,356,381,382,376,385,391,396,398,390,398,381,381,384,392,393,749,711,716,743,746,747,740,750,749,641,647,622,622,638,646,453,430,433,412,457,414,440,430,427,415,418,446,441,430,346,357,379,362,371,378,378,369,394,396,369,394,372,389,551,566,596,557,604,579,577,584,573,579,603,576,563,582,437,445,428,437,442,438,435,458,423,429,428,448,440,431,435,440,436,418,698,700,721,664,722,692,725,710,722,687,688,669,622,622,622,631,623,641,618,631,630,627,629,514,508,514,487,508,501,503,490,492,510,407,450,427,440,441,439,419,404,418,421,440,429,403,436,429,418,394,394,397,412,394,399,402,562,570,592,566,561,597,578,571,590,580,587,576,684,674,659,691,652,674,701,677,695,614,606,606,626,602,594,620,620,624,618,611,622,616,601,625,604,624,523,522,538,524,526,533,535,509,542,532,511,514,528,467,488,459,497,494,482,485,476,494,510,479,473,496,651,673,648,628,645,640,641,632,615,615,641,644,647,620,646,653,648,670,644,659,661,654,658,662,634,669,663,651,649,577,576,576,563,566,567,587,559,544,567,569,572,557,568,556,563,547,548,541,534,556,556,558,542,566,561,556,488,485,499,507,491,509,503,507,486,497,497,495,489,495,477,488,496,386,388,406,394,360,372,406,389,389,408,393,360,362,361,371,361,363,363,362,365,363,360,357,369,352,354,363,365,352,554,556,546,595,516,557,570,553,584,566,556,568,560,570,578,465,451,456,497,461,459,455,468,464,484,453,473,466,458,469,473,396,405,405,401,396,407,392,394,404,389,393,399,338,338,347,339,335,353,342,363,352,367,336,345,340,371,354,346,345,346,390,397,372,393,375,378,391,373,389,383,395,383,391,704,677,685,683,657,704,689,685,675,698,695,711,512,483,486,498,472,488,462,520,522,470,609,603,613,606,608,619,612,622,599,401,451,436,399,413,422,417,414,412,434,420,425,405,636,699,702,693,683,669,680,694,676,662,700,684,701,692,653,642,646,619,649,626,650,644,652,629,634,652,551,569,543,558,565,554,558,543,551,679,692,691,684,706,703,714,684,691,704,728,623,640,612,619,645,625,634,625,623,615,649,645,633,549,568,554,568,545,548,561,577,543,524,569,558,649,651,655,636,651,654,670,643,659,655,664,655,662,657,655,649,650,653,662,672,666,661,675,675,662,670,662,658,661,649,667,652,560,561,553,545,544,548,562,560,552,562,581,588,554,566,688,684,693,681,688,707,679,680,689,690,693,684,684,577,580,585,612,588,589,627,576,615,709,657,672,678,651,678,713,680,674,666,645,695,675,713,731,738,720,698,725,719,701,723,726,728,600,576,600,603,604,597,664,677,686,679,653,659,681,680,678,654,666,663,670,668,671,668,646,577,589,573,577,573,597,592,595,586,603,569,598,585,599,605,385,394,410,403,397,396,393,370,421,428,416,415,430,425,441,404,423,425,442,420,651,660,653,662,652,652,643,642,635,640,639,647,647,663,638,675,674,681,685,670,691,674,676,689,670,685,681,696,587,607,578,585,592,575,589,582,590,604,392,424,422,404,416,394,409,449,438,440,398,415,430,420,410,435,609,580,594,586,587,593,535,593,562,586,559,585,577,592,551,576,415,414,409,417,421,412,417,413,395,380,685,674,679,683,672,675,677,667,673,677,685,680,667,693,673,682,687,565,569,563,554,571,567,574,572,580,544,570,582,591,569,584,571,552,572,584,581,717,682,710,708,707,685,688,710,701,712,717,700,703,687,724,604,595,615,597,606,607,589,618,608,602,610,600,372,371,387,387,392,401,437,379,385,387,337,337,340,326,340,325,346,334,329,338,347,327,365,345,355,377,355,365,365,354,354,357,363,375,344,373,370,655,631,652,648,641,647,652,629,643,667,678,646,479,492,497,479,457,493,514,498,490,459,493,473,434,540,539,553,552,543,552,538,543,536,542,532,526,535,540,531,547,486,447,440,456,465,464,445,455,452,450,469,457,442,593,615,602,631,580,615,592,617,573,574,548,569,551,556,537,564,527,555,562,549,385,407,389,389,393,403,394,383,415,406,424,409,423,418,425,410,417,414,405,406,404,401,404,415,737,695,726,718,702,727,717,750,706,721,608,592,608,608,584,634,607,619,597,614,620,616,611,397,394,410,401,401,428,419,444,445,435,390,546,512,528,536,504,526,516,516,549,501,521,519,532,525,526,525,646,662,651,646,646,632,648,639,632,670,660,663,601,580,586,605,592,584,599,428,444,424,439,435,411,403,433,432,663,668,676,655,641,645,687,660,642,670,673,652,645,653,646,651,643,617,630,631,643,644,623,649,642,629,626,619,648,635,647,659,655,651,677,647,639,649,655,654,583,589,606,585,598,592,590,587,602,562,591,596,594,579,577,588,586,600,592,566,369,375,380,382,379,388,392,368,396,392,332,346,339,345,337,326,354,343,336,350,322,328,408,416,430,409,409,410,420,427,411,433,410,416,410,417,416,410,412,416,424,420,393,404,418,439,417,416,412,409,427,414,401,421,421,418,430,730,724,723,733,723,750,744,710,755,708,733,752,741,596,581,606,616,617,601,588,606,602,624,568,648,589,655,647,657,648,606,648,603,645,666,653,666,645,663,664,650,677,665,643,650,571,574,596,570,596,565,584,589,556,579,560,592,572,576,576,572,570,661,668,642,676,675,675,660,676,670,673,663,677,664,665,671,683,685,650,592,588,594,598,592,564,592,601,587,597,616,597,582,600,533,556,545,538,513,541,555,565,557,540,552,567,641,647,645,643,628,632,637,629,636,626,622,635,612,638,632,630,626,628,645,660,634,661,655,655,645,655,640,661,657,639,645,640,656,661,654,641,562,558,571,579,561,587,565,522,573,553,561,572,582,553,564,398,415,397,395,396,427,404,391,369,369,376,364,366,364,374,377,369,373,366,355,783,688,737,740,740,727,728,732,733,766,718,743,762,779,648,634,615,655,634,667,665,645,652,644,635,651,668,605,611,609,590,612,618,617,618,607,610,606,625,607,478,449,451,455,440,466,437,437,449,435,431,429,467,436,440,538,561,526,551,521,533,524,557,666,632,641,669,682,662,644,631,669,670,664,642,641,643,643,609,610,618,606,639,593,611,604,592,618,599,615,622,357,363,363,397,370,401,387,422,385,397,338,397,385,416,361,361,350,359,362,350,359,344,362,359,376,366,369,357,353,654,673,677,659,692,682,701,698,702,637,672,666,682,672,646,680,700,673,685,677,696,679,660,677,670,679,678,669,660,686,575,600,594,583,575,606,559,580,586,581,606,581,605,575,587,580,585,392,419,410,385,410,422,394,406,403,419,397,402,357,384,370,361,366,367,370,377,367,372,357,376,364,397,411,388,403,382,402,409,400,402,379,396,665,644,689,648,675,705,656,646,640,677,653,652,651,662,643,643,651,666,570,585,547,555,548,561,552,582,564,551,577,633,645,643,631,645,657,648,643,593,599,603,605,614,610,602,594,620,598,599,594,610,605,619,619,614,616,623,625,621,612,610,630,605,601,619,627,628,609,627,621,620,438,443,451,423,425,412,435,415,451,459,407,412,435,600,624,563,609,593,610,581,601,584,592,586,582,403,409,408,401,401,408,414,406,399,414,392,627,650,680,662,651,648,608,643,636,622,647,638,607,628,706,687,684,675,699,691,679,683,691,684,679,691,579,570,564,587,571,530,540,571,587,601,574,614,640,674,628,650,615,657,638,624,628,654,626,660,662,684,645,647,628,629,628,637,626,635,633,636,624,617,618,636,621,521,512,527,519,507,503,524,515,511,502,496,511,527,518,549,511,506,379,387,389,381,394,390,376,381,392,367,391,727,712,758,748,722,734,694,733,726,719,601,602,601,584,613,603,596,612,606,596,585,596,595,599,583,617,627,601,630,609,638,608,620,635,632,607,621,639,634,587,600,588,600,602,610,598,591,606,597,606,609,608,607,594,579,605,600,596,608,611,608,610,597,608,604,606,614,607,610,604,602,611,618,537,548,556,531,564,553,542,551,562,555,543,554,559,675,661,683,680,671,652,669,678,671,682,674,592,600,589,590,603,594,612,609,611,589,608,600,603,602,610,607,360,381,368,394,400,402,414,386,598,609,583,604,615,601,608,582,609,590,593,582,604,625,583,597,440,439,440,440,431,442,427,432,423,425,430,434,761,789,759,757,756,770,791,765,780,741,775,750,747,585,587,584,584,580,594,627,577,588,600,577,616,580,599,594,591,626,598,620,691,665,678,678,679,675,675,661,672,679,711,693,695,673,686,679,680,687,689,695,682,703,689,679,677,715,695,598,583,576,593,610,586,601,597,586,599,677,664,629,644,675,639,665,671,628,650,669,652,656,640,669,668,679,657,664,687,675,668,677,670,675,667,663,666,584,546,569,580,580,572,573,568,569,560,552,559,564,570,416,404,383,394,399,403,394,401,397,389,387,379,394,375,690,720,691,664,688,698,709,687,675,704,671,701,703,661,694,701,684,692,675,672,675,653,690,689,661,677,675,699,651,557,568,561,563,588,575,561,552,576,566,539,556,657,669,679,658,668,666,665,671,675,682,674,655,657,651,560,541,536,555,520,533,546,555,553,539,551,548,403,400,378,429,410,401,397,650,632,650,655,615,647,666,637,652,653,672,665,648,658,534,557,533,529,547,552,540,529,550,481,483,489,450,494,464,486,473,453,456,472,472,499,483,489,476,473,609,621,627,611,610,612,614,631,612,611,596,604,613,625,596,621,615,613,615,607,603,603,612,615,611,617,614,635,619,618,619,612,577,590,578,568,581,579,568,593,593,575,565,560,570,571,581,590,570,431,424,432,412,444,408,426,426,403,443,417,430,409,424,537,553,529,547,537,551,548,555,563,539,548,528,562,540,551,520,526,526,523,526,529,533,515,396,375,394,372,404,399,382,391,416,372,368,411,683,695,679,686,709,687,686,680,708,697,678,687,683,686,675,675,691,675,685,697,690,683,679,695,692,611,611,625,653,626,628,631,609,640,622,625,622,635,620,624,627,637,625,620,604,599,587,596,581,606,594,600,589,613,592,601,598,528,527,536,527,523,512,515,519,510,517,515,518,504,460,485,476,502,475,477,505,482,696,700,684,692,693,735,709,712,696,696,698,705,689,679,573,577,582,592,553,563,566,586,572,563,595,572,566,570,580,572,603,580,568,598,619,668,648,633,642,648,645,646,624,624,626,630,640,632,630,635,608,608,631,643,648,658,647,648,637,648,638,654,657,644,553,570,564,571,561,558,556,549,537,547,578,562,579,576,569,584,588,595,584,582,590,587,571,591,600,586,584,585,583,576,570,436,430,461,461,451,427,424,433,447,414,464,438,472,464,557,585,567,584,590,583,580,568,569,557,572,564,563,560,566,568,567,575,675,678,674,663,672,652,689,666,669,667,558,556,577,570,582,592,581,570,555,408,398,411,428,414,407,426,428,392,414,418,407,410,410,542,545,538,536,557,540,531,553,551,558,560,527,524,545,647,631,628,598,623,638,635,629,612,625,617,620,646,618,623,624,630,622,608,625,625,626,633,615,637,632,613,618,622,666,649,665,650,670,671,675,659,656,663,557,567,571,568,567,543,564,563,555,572,561,633,660,650,636,660,658,655,650,655,649,646,590,593,599,595,573,593,587,584,593,599,593,592,555,582,403,405,400,392,377,396,403,401,382,418,392,410,397,400,391,398,397,391,416,657,651,653,651,656,705,672,675,636,681,665,686,649,676,679,693,680,686,682,685,656,676,682,670,666,687,593,598,581,612,615,587,571,589,597,604,613,595,579,601,600,613,410,421,402,389,372,391,402,412,415,373,369,394,407,383,401,383,339,337,355,350,351,346,338,350,338,343,339,348,355,359,352,354,346,346,759,750,704,756,755,787,753,736,783,741,760,748,760,593,632,616,615,602,632,624,600,618,598,614,619,603,616,472,452,431,473,473,474,473,487,486,467,475,464,432,447,449,435,438,446,458,446,442,451,462,445,427,776,730,747,720,732,739,738,713,771,756,623,615,644,633,635,643,621,627,639,623,587,581,625,602,615,594,622,617,578,586,600,604,650,618,621,626,640,639,613,617,617,616,625,632,641,613,624,641,614,631,573,589,588,587,576,576,594,596,593,576,604,484,460,465,455,476,454,482,479,469,460,465,462,470,462,607,595,614,613,608,609,612,544,545,535,535,529,520,546,531,521,535,532,531,538,551,406,395,406,407,401,405,406,417,403,396,406,399,742,780,744,723,772,762,718,732,777,730,726,734,739,746,587,592,595,604,611,605,607,599,601,595,626,578,417,420,425,409,411,396,414,416,418,764,717,797,729,767,750,760,750,754,774,764,747,658,646,649,638,660,675,651,627,657,634,650,683,689,684,681,686,686,690,680,682,700,685,668,689,678,674,664,682,682,683,665,692,693,593,568,598,615,610,610,593,604,626,607,592,621,386,384,386,404,391,399,363,389,399,396,400,397,384,373,384,369,369,373,362,373,387,389,374,756,781,729,794,752,758,741,759,716,750,761,785,758,729,765,744,613,608,623,623,627,633,608,746,750,764,772,777,759,754,747,748,759,758,767,749,749,772,634,631,643,643,636,619,619,638,627,637,638,618,645,644,694,679,668,681,667,664,662,681,680,668,686,679,574,594,601,586,603,587,572,565,592,404,383,397,395,392,414,394,403,399,408,668,607,680,682,661,669,680,687,672,666,659,676,687,691,676,685,672,652,702,694,667,681,691,631,610,607,613,593,620,618,636,614,640,379,386,392,382,384,393,402,385,389,389,406,376,377,391,360,347,354,381,366,359,346,357,362,360,379,352,347,357,352,357,716,713,706,670,669,701,664,702,684,669,638,643,640,634,647,645,636,642,651,659,628,649,633,642,643,647,630,628,622,633,649,660,644,635,630,648,630,630,640,645,624,639,652,659,649,656,664,664,668,674,658,662,669,656,534,567,549,544,554,550,555,542,581,568,549,572,634,642,646,644,646,657,664,634,626,631,654,623,654,641,553,574,559,567,558,548,574,547,567,574,559,624,612,642,652,660,634,622,620,593,610,617,638,622,645,676,625,639,632,652,640,633,618,660,662,672,636,651,664,664,663,666,656,665,671,577,563,563,586,597,567,573,573,561,554,560,573,577,583,386,389,382,359,367,412,357,389,369,358,389,394,380,326,358,352,340,342,346,343,348,350,341,351,342,346,346,765,777,785,778,741,736,731,587,544,581,597,623,596,582,542,589,615,556,571,535,571,402,409,419,410,392,396,393,421,402,389,395,397,592,603,591,612,614,632,606,623,600,583,620,614,593,616,591,586,501,530,517,513,512,515,532,517,517,511,520,523,512,509,518,526,381,372,386,408,407,379,404,390,397,398,377,394,384,396,383,378,669,661,657,649,660,660,662,664,668,653,575,589,589,587,625,627,604,602,615,613,606,603,624,600,597,399,385,385,383,395,393,394,395,397,388,384,382,412,394,388,394,386,385,378,395,401,402,394,385,398,385,372,602,598,598,602,602,602,578,583,583,613,597,614,606,607,614,590,679,695,667,694,705,683,685,685,686,683,675,693,548,542,546,520,545,552,549,574,531,545,506,561,344,336,355,342,331,354,344,348,340,341,348,344,355,359,368,372,342,361,357,362,353,360,365,361,374,668,684,658,682,653,667,667,667,683,653,664,635,644,649,661,641,639,644,664,641,654,624,633,633,658,647,644,657,665,655,670,656,653,652,661,645,665,666,670,659,592,570,553,573,579,520,554,579,575,543,558,558,542,569,503,557,551,559,665,660,645,657,665,658,640,647,652,660,655,657,595,582,599,572,572,591,592,576,572,649,663,674,661,681,686,681,674,670,672,676,671,673,570,562,573,551,584,551,567,569,579,562,419,423,427,387,420,412,393,401,396,405,414,413,387,423,439,423,402,550,535,540,549,547,551,555,534,540,543,631,654,628,631,626,614,639,650,644,638,627,618,626,628,654,631,632,620,622,628,617,626,625,626,626,630,634,635,627,630,627,624,627,636,644,630,635,649,641,644,653,630,654,639,642,634,630,581,584,598,589,584,575,592,582,584,557,574,587,592,575,585,443,490,487,479,465,480,479,485,476,471,445,468,683,680,674,670,662,674,666,681,682,678,675,660,679,553,572,557,562,569,554,570,554,589,566,582,564,583,573,579,572,591,573,571,392,402,392,408,382,383,391,391,399,404,369,732,692,758,718,719,718,727,740,727,715,729,711,750,694,689,730,632,626,634,648,624,633,634,632,632,637,628,619,632,641,511,518,506,498,492,529,511,498,526,515,478,490,510,515,489,489,485,478,489,468,483,503,478,496,478,471,479,493,470,484,482,628,620,601,623,591,610,623,619,629,625,605,631,619,618,617,616,623,625,610,615,621,595,621,684,663,675,674,677,678,683,672,684,680,683,646,661,689,662,578,588,558,585,574,397,366,380,384,385,402,389,396,397,386,396,384,409,391,381,692,684,654,672,677,668,695,693,671,689,673,607,572,583,573,581,570,565,570,580,556,581,575,580,566,654,680,691,686,666,691,582,588,587,558,575,564,588,578,589,589,576,584,695,703,702,695,702,698,703,698,680,688,689,637,616,620,624,629,631,631,637,632,517,527,514,517,514,520,508,527,522,533,529,392,411,393,388,403,402,385,405,399,388,395,378,387,376,380,410,381,394,633,662,610,658,634,640,633,629,627,625,651,620,613,618,601,609,629,609,639,623,613,620,668,661,679,664,658,678,669,674,666,653,663,657,674,681,667,650,600,602,599,616,604,568,593,607,611,575,596,621,617,605,578,592,396,371,373,400,374,399,418,402,397,390,387,400,375,359,402,654,649,673,644,677,665,672,654,701,684,670,660,667,668,680,640,691,697,669,686,698,701,699,699,691,711,691,704,701,593,591,599,577,605,599,584,628,624,616,588,586,599,739,740,749,748,751,746,754,750,741,715,774,732,731,651,646,643,628,643,638,633,660,645,644,643,638,579,589,554,568,562,573,563,537,568,569,584,734,697,712,692,713,702,709,608,617,631,592,618,625,597,603,627,626,597,599,602,608,394,386,383,377,370,377,376,401,372,384,392,390,381,389,370,381,379,375,385,378,397,365,396,391,376,621,638,612,610,602,604,612,622,598,618,613,599,629,686,672,709,683,682,666,679,668,681,678,660,603,604,620,614,610,608,609,605,597,597,607,614,601,605,438,425,411,418,435,420,448,417,409,400,440,572,540,557,552,552,539,526,552,525,554,542,558,548,667,681,684,662,696,705,702,687,679,620,616,602,619,632,619,631,606,608,600,631,630,625,607,614,628,624,818,826,837,849,842,819,810,841,835,850,816,824,830,641,670,656,683,680,668,684,668,661,655,654,683,671,642,652,690,657,377,392,404,394,394,404,413,397,398,381,715,715,727,722,718,750,709,706,762,733,691,726,613,600,600,583,635,598,595,615,602,602,591,812,781,808,786,779,784,778,655,640,657,644,661,621,641,636,641,633,647,660,670,460,446,428,453,451,452,432,467,472,437,428,441,452,358,397,359,376,371,371,367,372,368,366,381,364,380,667,668,660,674,665,676,643,632,671,666,628,677,670,648,658,666,659,594,603,611,609,621,618,605,621,592,582,592,608,582,609,665,671,655,661,657,667,659,670,663,651,664,558,537,551,547,541,547,563,534,540,541,551,538,692,695,697,712,709,704,726,714,698,701,700,621,616,606,606,600,606,578,627,622,591,461,465,475,477,458,498,500,463,464,461,477,489,480,685,692,684,679,689,680,666,671,675,614,587,643,586,605,627,604,590,625,607,584,599,608,606,343,365,335,384,376,349,365,339,360,355,371,362,365,355,347,362,376,366,389,390,379,375,391,405,395,398,372,373,379,395,388,379,374,386,758,751,757,779,784,780,776,740,787,773,767,788,826,671,653,675,661,667,674,666,657,658,685,641,672,470,476,460,481,486,486,472,486,467,462,496,421,400,403,400,391,414,403,421,432,394,393,419,409,411,552,552,584,553,580,536,567,557,562,565,585,488,491,497,479,490,503,499,489,493,492,637,643,623,609,631,630,621,633,677,675,680,669,684,678,686,677,691,664,660,692,685,676,694,694,707,716,709,705,702,697,699,703,707,633,589,608,594,618,615,620,604,617,626,613,590,620,602,633,643,592,519,516,512,515,508,529,514,520,528,507,511,506,512,512,392,427,423,431,425,418,427,423,399,404,419,428,428,392,408,407,424,415,363,359,366,376,360,370,370,368,365,377,379,364,369,387,361,390,404,380,386,396,396,393,384,404,383,392,385,376,391,398,372,393,385,387,387,392,389,388,398,394,388,384,383,395,391,398,380,411,400,392,406,396,408,402,402,394,395,391,392,397,386,390,403,580,604,603,594,589,596,574,580,410,412,425,412,446,426,438,442,440,411,434,435,441,400,433,366,348,354,365,353,357,349,369,327,356,334,331,369,349,354,350,325,317,315,321,323,320,327,326,321,300,307,321,331,302,308,396,381,374,381,375,373,368,398,383,380,387,380,374,409,400,477,452,465,471,460,454,458,468,456,463,688,663,661,701,683,688,685,696,713,654,681,680,663,672,561,560,585,586,571,574,579,586,588,565,567,577,573,570,397,434,407,432,431,432,417,449,410,430,425,422,518,509,533,524,526,527,534,519,548,504,505,518,528,426,425,423,425,437,425,424,423,416,439,427,427,448,439,409,425,392,394,387,376,390,389,397,389,391,388,380,405,402,400,381,386,400,755,754,757,776,761,723,764,780,788,766,800,786,630,650,617,602,647,625,627,624,612,620,429,440,447,441,429,450,456,416,435,457,442,431,441,429,418,441,430,603,594,601,571,581,607,579,603,578,572,588,602,597,610,693,720,690,713,700,703,690,707,694,695,713,696,714,709,713,615,600,597,580,591,589,604,618,594,585,605,606,612,590,602,397,387,403,402,409,363,381,413,375,379,383,381,385,408,411,407,414,411,419,408,401,414,424,407,404,409,420,409,400,407,417,407,410,404,411,413,423,410,407,408,406,405,403,402,410,404,409,406,405,401,409,410,410,405,406,413,425,404,405,407,401,407,431,424,395,410,398,416,415,417,410,411,408,412,414,406,400,407,489,471,476,494,467,473,458,470,470,447,465,464,464,507,467,449,468,475,467,453,470,479,476,457,470,466,456,466,860,858,811,878,811,809,777,924,803,823,877,823,782,636,646,627,654,641,677,655,667,668,682,656,647,636,685,641,645,663,666,791,761,811,770,779,773,807,770,781,783,774,592,607,618,624,601,596,598,596,588,586,593,765,778,774,794,798,821,750,789,792,797,756,795,790,776,785,775,776,786,777,775,764,672,666,654,680,672,688,662,663,673,433,434,426,431,441,411,430,406,426,447,441,416,454,387,377,389,381,372,375,377,367,376,613,640,641,622,663,658,646,624,622,637,615,652,637,660,660,651,674,647,663,632,646,656,662,662,675,663,597,605,603,604,613,597,595,610,593,574,574,603,611,596,607,596,620,587,603,466,475,468,486,507,495,485,470,483,497,412,404,404,408,408,400,405,411,408,411,386,386,392,760,718,735,724,741,728,705,733,740,702,724,738,717,730,739,671,651,647,618,616,598,631,659,619,625,644,458,439,450,448,478,457,444,469,462,453,435,465,444,484,499,530,506,506,512,493,505,501,521,520,498,432,432,448,416,416,430,415,422,435,433,426,429,438,672,667,659,651,668,676,667,637,658,638,471,442,463,467,471,465,474,496,462,470,464,475,484,485,490,484,631,623,640,655,645,621,634,650,645,672,650,653,649,564,585,580,571,588,576,577,579,582,573,589,433,443,409,424,410,427,423,406,414,422,426,389,391,388,390,372,394,398,372,397,388,383,393,392,455,436,470,459,445,454,448,452,443,454,449,420,404,408,405,431,421,419,403,405,412,403,407,409,409,562,578,571,594,599,602,581,565,575,425,429,409,432,406,423,407,422,433,410,411,424,407,411,396,423,387,327,327,343,343,323,335,334,343,337,337,333,341,342,394,380,372,370,393,383,378,377,386,374,383,385,399,395,392,377,391,380,377,402,417,404,403,414,391,407,405,418,420,403,411,417,432,424,413,420,427,433,417,437,431,415,351,386,373,353,351,361,357,355,358,351,366,358,353,352,293,318,316,302,320,322,316,306,322,323,307,314,321,358,351,354,346,357,346,357,355,350,393,397,443,404,409,432,381,433,451,423,410,416,411,403,392,387,403,389,406,388,392,361,374,361,372,375,377,350,365,377,372,378,378,372,371,364,370,374,380,414,385,382,394,390,836,819,881,876,838,900,871,842,848,830,793,829,899,864,839,773,734,764,732,737,787,741,725,766,730,738,758,445,394,405,402,431,386,401,401,405,391,403,402,427,426,330,357,357,346,340,373,362,372,374,376,369,370,604,604,607,611,584,594,624,594,440,456,450,445,420,415,453,440,444,417,441,438,448,693,721,707,703,713,680,720,708,721,726,707,714,706,691,619,598,591,601,595,574,604,576,562,570,605,627,582,584,595,594,611,380,386,401,389,400,396,406,393,363,370,353,364,371,357,354,366,377,366,365,371,373,758,773,770,776,789,784,807,767,763,765,760,765,775,731,751,677,667,674,676,665,662,665,664,665,675,661,668,675,657,647,417,432,437,441,450,406,452,419,440,421,578,552,567,565,589,571,576,554,567,567,588,572,451,482,467,468,483,484,456,473,488,472,473,460,462,485,474,474,661,689,668,671,678,684,671,654,686,688,670,658,682,677,617,598,631,626,639,636,640,621,610,631,614,611,628,628,626,417,407,384,407,392,391,397,406,394,397,406,393,692,700,690,715,709,712,714,718,705,713,730,592,612,599,600,608,599,580,612,597,591,604,584,601,583,585,616,425,421,429,434,438,431,404,413,444,436,423,572,573,609,583,586,569,602,585,557,599,565,537,537,544,541,526,537,524,543,548,547,533,533,546,518,536,528,532,422,451,426,430,419,428,428,437,409,438,429,428,609,621,592,606,602,601,605,595,600,614,608,609,536,531,524,539,529,533,533,517,537,542,526,507,551,521,491,514,500,536,493,530,544,544,523,539,516,515,535,518,506,522,523,518,522,540,525,427,415,417,430,426,422,429,411,438,417,423,426,422,426,374,389,374,381,376,386,388,368,395,376,381,637,649,624,643,634,619,616,652,620,668,649,652,667,622,626,620,620,636,629,632,645,641,636,622,630,620,628,689,702,705,696,702,698,691,686,692,697,706,699,707,711,695,607,626,608,604,611,616,598,626,622,603,610,607,596,618,620,617,627,601,608,571,579,580,575,600,585,591,594,577,572,591,582,589,584,583,571,583,586,546,538,538,540,534,541,534,540,537,534,414,422,431,418,408,404,404,439,443,417,414,428,427,418,409,423,625,641,641,611,616,610,625,644,650,449,431,437,431,412,426,435,611,595,609,614,612,588,595,605,589,593,620,579,590,610,579,607,435,449,427,453,458,426,472,470,442,446,429,432,442,452,444,442,464,561,564,534,565,542,543,578,548,571,539,560,558,579,550,564,555,556,546,582,509,517,529,531,520,536,533,519,519,530,520,531,506,421,417,413,413,434,413,416,435,407,425,445,429,415,427,420,420,417,408,416,415,423,388,399,402,728,744,711,684,728,699,721,628,624,631,639,638,634,628,624,519,520,508,515,505,535,501,523,540,514,521,502,529,520,518,538,532,537,549,543,538,544,543,534,524,538,530,514,520,531,492,494,524,506,510,500,514,508,497,514,505,499,505,481,494,487,487,479,492,492,478,483,504,481,480,499,484,652,643,648,652,655,646,651,637,676,625,645,676,680,677,674,669,667,650,691,675,664,654,664,647,661,599,596,600,600,571,606,611,596,594,572,600,601,590,597,517,523,503,502,525,514,508,513,508,532,520,510,515,520,503,501,524,497,511,513,527,515,512,504,505,519,512,509,504,509,506,511,510,482,466,462,458,485,486,464,471,508,503,483,477,469,475 0 216.757027 0 0 0 diff --git a/test/dev.exp b/test/dev.exp old mode 100644 new mode 100755 index 31eee62..43c8818 --- a/test/dev.exp +++ b/test/dev.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN114 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 10000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!2!1637!- 0 4096 -1000 300 10000 40473 2495,2418,2449,2335,2534,2389,2312,2406,2355,2437,2266,2267,2261,2202,2299,2270,2286,2239,2220,2331,2300,2280,2318,2299,2231,2313,2237,2307,2254,2249,2038,2054,2094,2035,2010,2080,2049,2024,2007,2040,2089,2090,2039,2096,2071,2026,2035,2047,2018,2042,2050,2070,2054,2062,2049,2053,2054,2070,2069,2086,2053,2011,2053,2054,2077,2049,2056,2041,2043,2058,2072,2057,2049,2063,2057,2060,2058,2053,2070,2048,2040,2085,2061,2079,2043,2061,2455,2280,2413,2332,2328,2435,2414,2414,2350,2412,2378,2418,2401,2393,2324,2425,2370,2294,2388,2365,2375,2336,2365,2399,2373,2375,2367,2415,2646,2630,2649,2591,2594,2601,2585,2586,2577,2603,2568,2630,2624,2615,2587,2620,2600,2541,2389,2406,2385,2432,2416,2383,2345,2400,2413,2397,2384,2376,2407,2410,2416,2442,2473,2411,2373,2351,2416,2345,2429,2403,2383,2379,2378,2381,2398,2066,2046,2050,2010,2007,2024,2039,2037,2025,2003,2060,2064,2042,1974,2071,2051,2105,1990,2015,2033,2113,2065,2049,2050,2061,2077,2043,2055,2084,2026,2062,2020,2088,2057,2053,2041,2031,2052,2060,2034,2089,2037,2097,2070,2067,2038,2054,2037,2077,2068,2035,2075,2078,2061,2016,2058,2559,2419,2524,2522,2458,2512,2548,2458,2540,2521,2461,2491,2479,2475,2522,2503,2459,2561,2505,2514,2497,2444,2446,2390,2464,2508,2534,2594,2590,2616,2577,2603,2638,2581,2595,2584,2615,2581,2560,2586,2603,2612,2604,2573,2617,2575,2570,2609,2572,2572,2617,2563,2602,2570,2554,2564,2617,2539,2415,2413,2383,2455,2358,2429,2406,2407,2418,2435,2402,2451,2417,2446,2382,2417,2415,2400,2406,2401,2380,2429,2380,2437,2414,2443,2380,2393,2335,2404,2403,2330,2381,2331,2380,2347,2354,2300,2350,2362,2364,2362,2348,2423,2351,2318,2367,2583,2604,2629,2584,2619,2633,2615,2653,2606,2620,2610,2625,2644,2594,2635,2597,2673,2623,2564,2677,2639,2630,2610,2626,2608,2592,2634,2637,2633,2625,2588,2445,2501,2494,2488,2495,2501,2492,2482,2467,2484,2526,2476,2484,2480,2502,2514,2489,2495,2491,2434,2476,2471,2535,2514,2514,2521,2462,2518,2463,2525,1925,1935,1928,1941,1907,1951,1922,1890,1930,1934,1872,1907,1865,1867,2013,1965,1927,1878,1883,1923,1900,1861,1920,1962,1877,1873,1844,1852,1854,1853,1889,1888,1853,1813,1866,1855,1846,1839,1878,1865,1851,1891,1878,1846,1843,1853,1861,1846,1844,1839,1881,2403,2444,2460,2433,2368,2452,2445,2498,2453,2506,2366,2528,2422,2440,2468,2365,2513,2443,2365,2454,2444,2449,2464,2385,2392,2500,2406,2504,2374,2431,2402,2458,2575,2633,2532,2590,2542,2584,2630,2536,2539,2571,2598,2583,2588,2538,2539,2615,2613,2553,2578,2528,2605,2540,2626,2545,2565,2604,2608,2599,2617,2613,2620,2622,2607,2559,2582,2575,2592,2599,2565,2609,2608,2587,2605,2641,2640,2594,2606,2621,2603,2593,2607,2414,2445,2413,2382,2400,2339,2407,2430,2427,2435,2399,2393,2436,2389,2363,2376,2419,2425,2358,2410,2384,2405,2381,2371,2414,2413,2410,2406,1933,2036,2000,1955,2013,1991,2051,1996,2029,1970,2052,2001,2041,2025,2033,1972,1982,1978,2002,2006,1995,2002,1983,2010,1980,2211,2254,2278,2207,2268,2254,2156,2233,2195,2250,2263,2219,2231,2232,2216,2288,2272,2230,2292,2243,2341,2225,2305,2258,2293,2009,1899,1943,1956,1949,1912,1919,1931,1940,1901,1946,1901,1930,1946,1884,1890,1913,1940,1952,1948,1938,1910,1976,1921,1837,1850,1842,1841,1831,1824,1851,1851,1855,1834,1857,1843,1857,1842,1821,1851,1854,1850,1849,1836,1819,1841,1858,1843,1985,2011,1975,2030,1947,2014,2001,1944,1968,1947,1960,1970,1991,1995,1971,1944,1971,1999,1953,2623,2642,2655,2625,2618,2622,2621,2628,2653,2668,2647,2679,2662,2607,2679,2629,2633,2767,2630,2655,2675,2630,2633,2615,2688,2618,2160,2093,2131,2106,2136,2041,2129,2134,2118,2115,2099,2188,2082,2052,2136,2053,2573,2587,2545,2550,2576,2604,2521,2589,2575,2568,2558,2526,2590,2577,2575,2611,2611,2575,2575,2611,2577,2600,2522,2570,2496,2514,2513,2505,2515,2487,2523,2527,2467,2490,2507,2554,2525,2491,2519,2532,2523,2530,2501,2492,2485,2540,2526,2554,2521,2456,2490,2494,2488,2518,2503,2503,2520,2499,2485,2512,2495,2493,2526,2482,2490,2492,2515,2511,2474,2508,2524,2279,2270,2340,2350,2333,2408,2344,2335,2295,2307,2335,2319,2312,2384,2299,2370,2268,2346,2323,2329,2336,2363,2342,2327,2348,2328,2334,2304,2286,2551,2578,2598,2547,2585,2566,2561,2532,2552,2562,2553,2604,2597,2528,2552,2583,2585,2578,2517,2498,2596,2562,2525,2578,2472,2465,2465,2448,2491,2464,2471,2450,2471,2509,2460,2469,2460,2474,2468,2527,2424,2486,2490,2469,2502,2460,2449,2422,2490,1893,1983,1935,1865,1973,1957,2008,2046,1986,1972,2009,1958,1953,1998,1986,1925,2003,1988,2020,2038,2016,1984,1973,1994,2011,1814,1816,1821,1847,1824,1783,1814,1852,1808,1838,1815,1783,1825,1830,1843,1858,1857,1796,1825,1813,1836,1850,1814,1839,1806,1842,1818,1819,1752,1735,1739,1768,1750,1754,1773,1748,1745,1705,1721,1774,1763,1740,1742,1760,1759,1780,1704,1744,1771,1720,1739,1765,1710,1853,1871,1879,1863,1868,1842,1865,1816,1860,1889,1864,1841,1858,1876,1822,1832,1848,1858,1867,1855,1817,1829,2028,1988,2035,2023,1981,2059,2060,2018,1979,2026,2017,2002,2021,2027,2019,1998,2025,2066,1982,1996,1990,2000,2006,1979,2019,2008,2203,2218,2169,2110,2185,2196,2173,2181,2205,2174,2221,2185,2159,2199,2228,2198,2204,2183,2191,2215,2237,2192,2238,2049,2060,2067,2069,2115,2096,2079,2052,2062,2092,2065,2080,2086,2102,2098,2085,2059,2097,2059,2017,2117,2048,1943,2028,1977,1995,1925,1980,2035,1987,1975,1975,2000,1971,1987,1964,1967,1961,1956,1984,1990,1995,2001,1961,1958,1970,1994,1990,1990,1996,1983,1967,1991,1991,1938,1960,1781,1854,1824,1860,1873,1790,1838,1816,1840,1839,1814,1826,1840,1848,1830,1850,1812,1820,1832,1812,1797,1856,1855,1847,1838,1838,1836,1831,2468,2440,2416,2440,2498,2410,2486,2458,2502,2397,2480,2463,2388,2450,2519,2510,2440,2463,2484,2485,2472,2459,2454,2452,2497,2457,2428,2467,2033,2071,2143,1952,2081,2100,2064,2049,2008,2080,2071,2064,2012,2101,2080,2008,2038,2071,2071,2035,2064,2082,2105,2020,2069,2959,3015,3013,3058,3031,3006,3114,3140,3001,3004,3065,3085,2976,3128,3019,2930,3082,3078,3064,2985,3143,2985,2961,3023,2904,3064,3071,3005,2602,2559,2485,2547,2590,2572,2589,2558,2548,2570,2566,2533,2499,2535,2596,2593,2044,2052,2002,2007,2086,2043,2022,2062,2066,2035,1997,2032,1945,2074,1974,2062,2032,1972,1951,2001,1991,2065,2409,2406,2389,2343,2420,2433,2462,2327,2450,2366,2401,2377,2424,2417,2369,2374,2360,2417,1993,2006,1951,1953,1944,1932,1873,1938,1943,1947,1959,2030,1956,1994,2025,1947,1923,1982,1927,2018,1978,1997,1984,1937,1933,1846,1817,1820,1784,1816,1838,1815,1837,1828,1798,1795,1778,1785,1786,1770,1786,1865,1847,1806,1805,1832,1796,2991,2904,2950,3037,2977,2949,2824,3037,2975,2956,3081,2930,2904,2920,2973,3015,2922,2838,2800,2900,2868,2846,3077,2513,2537,2598,2537,2608,2550,2583,2524,2566,2613,2511,2621,2634,2667,2559,2540,2582,2566,2630,2571,2558,2612,2567,2494,2041,1989,1968,2036,1927,2037,1999,1968,2037,2031,1997,1912,1970,1993,1965,1987,1977,2027,1986,2027,1968,2012,2006,2042,2000,2019,1950,1988,1965,2437,2437,2504,2462,2495,2500,2419,2478,2428,2432,2418,2467,2421,2465,2485,2487,2434,2422,2433,2458,2364,2244,2244,2181,2196,2197,2172,2154,2215,2194,2192,2183,2130,2149,2174,2218,2174,2223,2211,2241,2224,2200,2186,2211,2208,2238,1909,1920,1934,1940,1953,1891,1876,1915,1943,1977,1903,1858,1914,1935,1906,1969,1919,1932,1891,1924,1887,1909,1965,1817,1853,1833,1840,1854,1828,1800,1823,1815,1831,1842,1842,1870,1818,1827,1790,1851,1805,1865,1825,1849,1806,1857,2234,2418,2466,2346,2393,2314,2374,2359,2326,2362,2449,2369,2389,2368,2369,2394,2385,2394,2368,2380,2357,2313,2352,2280,2252,2290,2272,2271,2308,2320,2295,2325,2296,2334,2340,2293,2310,2352,2259,2282,2320,1959,1900,1927,1895,1944,1933,1956,1977,1907,1923,1967,1936,1966,1925,1918,1935,1936,1933,1908,1966,1966,1960,1957,1936,1918,1903,1930,1891,2533,2584,2492,2517,2602,2508,2526,2485,2572,2552,2560,2593,2584,2594,2534,2634,2527,2513,2547,2502,2554,2533,2494,2561,2550,2544,2501,2443,2426,2470,2481,2434,2495,2544,2500,2478,2492,2470,2475,2493,2485,2531,2494,2464,2503,2462,2450,2511,2509,2479,2529,2464,2496,2490,2482,2497,2501,2430,2376,2277,2362,2371,2368,2348,2438,2484,2399,2390,2381,2389,2444,2388,2356,2348,2365,2303,2326,2431,2412,2407,2341,2364,1992,1980,2038,1968,2027,1998,2010,2001,1983,2030,2054,2050,2014,2007,2018,2039,1980,2008,2029,1980,2009,1997,1962,1948,2014,2003,2040,1980,2025,2806,2823,2794,2715,2803,2905,2886,2847,2692,2887,2818,2848,2801,2777,2812,2830,2852,2824,2858,2835,2789,2793,2735,2833,2865,2818,2789,2854,2865,2559,2573,2534,2590,2596,2550,2548,2569,2564,2584,2546,2551,2576,2574,2541,2581,2620,2587,2532,2552,2547,2579,2610,2559,2613,2505,2586,2577,2561,2537,2001,1952,2006,1928,2000,1995,1977,1998,2031,1964,1947,1958,1992,1978,2043,2007,1969,1997,1930,2010,1960,1998,2020,1961,1998,2005,1992,1952,1963,2423,2377,2413,2411,2409,2383,2380,2396,2348,2384,2392,2406,2392,2428,2406,2340,2377,2379,2336,2404,2418,2606,2627,2573,2543,2645,2594,2636,2610,2540,2554,2641,2601,2590,2619,2622,2610,2556,2574,2573,2585,2593,2600,2295,2270,2329,2347,2340,2347,2289,2320,2297,2317,2343,2340,2337,2282,2303,2327,2314,2332,2335,2338,2286,2297,2368,2317,2349,2263,2329,1997,1979,2060,2044,2011,2007,1992,2047,2004,2014,2017,1969,1978,1998,2073,1977,2000,1963,2009,2015,2043,2044,2805,2860,2824,2805,2889,2898,2905,2891,2900,2893,2878,2857,2907,2803,2831,2867,2930,2884,2850,2881,2917,2910,2851,2848,2885,2638,2605,2624,2634,2583,2591,2557,2573,2580,2549,2577,2625,2504,2595,2573,2588,2541,2519,2544,2612,2633,2616,2558,1954,1946,1944,2026,1932,1862,1971,1943,1979,2014,1962,1977,1954,1937,1989,1959,1862,1907,1971,1973,1964,1938,1966,1961,1924,1976,1986,1959,1904,1911,1912,1909,1929,2022,2009,1971,1980,1974,1896,1927,1945,2036,1985,1961,1932,1972,1940,1936,1945,1961,1937,1884,1829,1840,1841,1852,1863,1838,1838,1846,1858,1859,1832,1872,1805,1873,1836,1900,1843,1812,1858,2677,2741,2759,2718,2749,2712,2759,2721,2737,2757,2710,2696,2773,2750,2718,2690,2739,2623,2719,2769,2708,2759,2728,2797,2660,2840,2526,2530,2550,2501,2504,2505,2546,2489,2535,2463,2491,2474,2536,2538,2450,2501,2544,2564,2536,2492,2551,2457,2471,2462,2436,2464,2523,2496,2476,2524,2729,2633,2632,2653,2587,2605,2650,2669,2522,2602,2521,2593,2632,2622,2583,2635,2560,2673,2607,2643,2503,2575,2673,2545,2536,2567,2612,2561,2571,2559,2574,2570,2488,2538,2564,2578,2519,2559,2560,2554,2541,2574,2524,2563,2537,2554,2588,2595,2533,2571,2583,2575,2602,2561,2574,2609,2584,2589,2603,2571,2564,2563,2537,2601,2429,2433,2383,2456,2463,2435,2321,2400,2383,2389,2415,2385,2413,2399,2436,2443,2380,2394,2435,2457,2374,2369,2304,2089,2115,2104,2142,2024,2083,2212,2148,2048,2154,2131,2077,2102,2176,2121,2150,2164,2118,2102,2578,2501,2568,2538,2592,2544,2506,2504,2504,2511,2491,2535,2471,2530,2555,2581,2555,2488,2493,2526,2500,2530,2561,2559,2479,2650,2612,2656,2611,2656,2685,2633,2594,2632,2610,2614,2687,2643,2616,2648,2639,2626,2652,2600,2604,2617,2618,2477,2551,2475,2496,2460,2483,2453,2539,2499,2520,2456,2450,2515,2510,2497,2433,2440,2499,2499,2275,2302,2312,2263,2290,2263,2306,2271,2225,2263,2279,2279,2270,2279,2270,2235,2258,2256,2258,2228,2254,2274,2298,2279,2274,2252,2252,2325,2288,2284,2257,1985,1961,2015,1975,1968,2019,1971,2000,1952,1973,1954,2008,1987,1975,1997,2020,1985,2015,2012,1990,2001,1981,2041,2296,2366,2304,2319,2290,2282,2292,2375,2318,2313,2335,2342,2353,2305,2301,2334,2349,2364,2315,2264,2338,2675,2593,2659,2726,2634,2676,2671,2616,2691,2619,2712,2744,2631,2696,2699,2682,2684,2643,2638,2459,2465,2519,2478,2467,2485,2455,2446,2437,2448,2453,2502,2490,2436,2486,2482,2465,2479,2494,2464,2474,2475,2448,2453,2478,2439,1958,1951,1950,1980,1985,1990,2009,1949,1970,1977,1976,2001,1936,1945,2035,1948,1952,1949,2021,1951,1949,2012,1995,1974,2791,2710,2834,2794,2803,2718,2788,2764,2742,2692,2829,2801,2815,2834,2880,2763,2837,2745,2724,2762,2814,2827,2784,2811,2517,2633,2595,2578,2556,2494,2560,2550,2558,2516,2600,2637,2571,2593,2545,2635,2612,2577,2591,2529,2546,2572,2386,2388,2353,2409,2400,2393,2403,2397,2387,2390,2403,2406,2355,2417,2406,2375,2367,2402,2423,2370,2093,2052,2068,2080,2044,2132,2105,2080,2103,2082,2068,2073,2112,2036,2098,2100,2102,2091,2067,2071,2078,2090,2490,2492,2483,2510,2477,2486,2559,2508,2496,2583,2506,2507,2518,2516,2529,2557,2513,2520,2491,2509,2110,2062,2077,2085,2059,2094,2136,2041,2129,2025,2089,2092,2103,2052,2029,2115,2057,2103,2115,2097,2067,2107,2117,2130,2117,2112,2123,2423,2433,2389,2483,2400,2416,2469,2399,2369,2376,2345,2452,2408,2360,2389,2362,2395,2369,2434,2620,2647,2680,2648,2682,2669,2717,2644,2717,2705,2648,2632,2661,2677,2640,2661,2627,2726,2651,2649,2675,2679,2672,2636,2660,2599,2646,2755,2637,2666,2651,2716,2468,2486,2533,2527,2529,2510,2459,2521,2465,2478,2479,2516,2501,2493,2522,2474,2489,2524,2506,2508,2507,2488,2480,2470,2552,2479,2276,2299,2280,2278,2256,2261,2259,2274,2274,2288,2320,2289,2269,2290,2284,2296,2282,2315,2300,2283,2256,2282,2306,2323,2305,2299,2250,2288,2266,2262,2315,2276,2237,2268,2283,2278,2206,2289,2285,2280,2247,2287,2284,2282,2246,2282,2306,2299,2242,2298,2281,2221,2289,2246,2294,2276,2303,2265,2310,2304,2223,2258,2285,2273,2263,2279,2282,2257,2252,2252,2272,2228,2275,2267,2252,2254,2256,2228,2236,2264,2267,2223,2273,2278,2252,2276,2245,2237,2285,2298,2264,2232,2248,2211,2237,2246,2254,2230,2186,2216,2277,2190,2259,2214,2212,2214,2248,2174,2211,2231,2157,2235,2191,2224,2222,2231,2199,2250,2240,2184,2245,2198,2267,2226,2201,2248,2228,2229,2201,2201,2243,2237,2209,2176,2240,2210,2247,2230,2194,2187,2207,2192,2208,2209,2216,2216,2236,2223,2219,2219,2231,2040,1978,2003,2001,1994,1988,1971,2025,1997,2018,1969,1990,1995,2014,2029,2040,2027,1990,1967,2022,2002,2016,2015,2004,1993,1993,1984,2046,1982,2402,2418,2499,2449,2402,2397,2437,2378,2450,2339,2352,2471,2401,2490,2363,2385,2407,2432,2429,2394,2423,2362,2444,2488,2384,2405,2427,2487,2398,2385,2474,2260,2299,2273,2273,2273,2272,2269,2268,2254,2218,2286,2252,2238,2245,2258,2236,2232,2214,2255,2292,2243,2270,2251,2253,2220,2256,2221,2233,2225,2240,2239,2241,2260,2239,2217,2244,2285,2224,2251,2279,2203,2257,2259,2249,2250,2239,2235,2262,2256,1951,1907,1928,1927,1925,1983,1986,1912,1949,1889,1977,1958,1895,1966,1945,1935,1945,2658,2741,2676,2667,2629,2644,2654,2711,2671,2606,2711,2669,2625,2656,2763,2687,2697,2770,2662,2701,2662,2738,2775,2702,2724,2708,2705,2732,2718,2715,2665,2720,2802,2711,2623,2678,2790,2660,2423,2441,2385,2430,2447,2386,2404,2423,2431,2388,2380,2352,2410,2415,2371,2399,2406,2406,2396,2444,2447,2403,2395,2377,2414,1999,1985,2016,2100,2039,2003,2021,1983,1948,1963,2075,2030,2030,1987,2041,2130,1951,1995,2015,2051,1980,2037,2029,2443,2474,2391,2450,2436,2399,2483,2409,2425,2426,2510,2401,2445,2429,2383,2381,2424,2411,2493,2416,2541,2406,2276,2275,2254,2237,2292,2242,2295,2263,2252,2287,2265,2302,2239,2225,2273,2247,2241,2274,2248,2252,2256,2246,2263,2239,2251,2263,2239,2304,2254,2241,2280,2252,2242,2235,2210,2241,2224,2229,2196,2225,2261,2259,2259,2265,2209,2242,2248,2226,2250,2272,2218,2242,2220,2234,2275,2245,2263,2290,2283,2282,2283,2260,2283,2284,2271,2256,2252,2269,2272,2267,2260,2234,2242,2266,2253,2297,2278,2273,2250,2233,2219,2274,2225,2223,2223,2223,2203,2225,2215,2257,2260,2258,2259,2227,2246,2260,2203,2225,2256,2233,2211,2233,2188,2215,2218,2228,2215,2207,2256,2224,2203,2182,2214,2182,2227,2198,2192,2262,2210,2221,2246,2184,2228,2243,2155,2178,2167,2175,2246,2179,2122,2179,2186,2199,2170,2178,2179,2255,2176,2167,2737,2705,2713,2693,2753,2744,2706,2736,2775,2706,2776,2724,2636,2752,2665,2665,2695,2745,2689,2668,2694,2664,2766,2715,2653,2456,2446,2421,2499,2472,2470,2513,2462,2491,2468,2487,2526,2485,2456,2489,2494,2450,2454,2468,2509,2450,2484,2493,2477,2518,2510,2009,1977,1978,1957,1963,2025,1936,2018,1986,1959,1994,1991,2014,2011,1916,1956,1929,2056,1959,1971,1986,1977,1955,1991,2014,2018,1979,1982,1969,2011,1993,1939,2000,2000,2019,1923,1986,1986,2006,2431,2433,2439,2379,2372,2386,2445,2396,2427,2434,2435,2407,2478,2342,2425,2446,2454,2417,2405,2450,2460,2446,2405,2430,2441,2395,2402,2411,2200,2200,2203,2194,2232,2203,2209,2224,2184,2167,2170,2210,2156,2218,2228,2167,2170,2216,2214,2210,2203,2219,2190,2200,2187,2595,2577,2601,2535,2571,2615,2595,2584,2577,2608,2534,2616,2538,2538,2595,2634,2591,2628,2593,2578,2563,2620,2587,2556,2579,2556,2560,2624,2577,2583,2595,2622,2601,2587,2546,2827,2791,2832,2753,2792,2778,2833,2842,2799,2780,2819,2819,2778,2853,2806,2862,2805,2826,2832,2802,2839,2564,2537,2530,2530,2475,2514,2505,2493,2518,2466,2564,2584,2516,2507,2541,2554,2502,2117,2185,2152,2156,2148,2134,2116,2134,2282,2225,2174,2181,2160,2210,2211,2233,2239,2207,2249,2131,2184,2222,2162,2164,2163,2781,2758,2649,2804,2824,2758,2712,2649,2768,2773,2756,2701,2776,2739,2742,2749,2687,2730,2800,2785,2767,2735,2683,2695,2772,2745,2663,2773,2802,2733,2439,2476,2475,2469,2459,2448,2470,2481,2478,2480,2397,2441,2459,2495,2560,2490,2503,2490,2450,2436,2488,2496,2456,2677,2732,2665,2693,2707,2666,2692,2669,2671,2636,2683,2698,2672,2693,2708,2675,2689,2701,2687,2681,2677,2664,2692,2678,2679,2675,2675,2701,2446,2475,2404,2459,2410,2388,2485,2493,2440,2371,2391,2402,2447,2484,2465,2434,2443,2477,2436,2425,2471,2419,2455,2442,2460,2429,2391,2373,2387,2405,2412,2405,2413,2413,2448,2417,2402,2426,2404,2406,2375,2409,2391,2415,2387,2438,2372,2453,2408,2417,2383,2344,2425,2422,2265,2254,2278,2269,2229,2262,2240,2298,2253,2300,2224,2291,2248,2231,2263,2268,2247,2293,2259,2240,2211,2260,2210,2253,2259,2267,2223,2257,2209,2236,1923,1884,1867,1935,1882,1959,1958,1944,1948,1952,1919,1925,1903,1869,1961,1930,1908,1921,1857,1919,1942,1832,1834,1853,1855,1877,1795,1881,1820,1837,1846,1869,1868,1873,1823,1881,1904,1859,1860,1853,1854,1852,1876,1869,1839,1859,1833,1914,1831,1833,2899,2864,2814,2790,2812,2914,2933,2795,2812,2853,2905,2844,2826,2872,2881,2835,2937,2866,2871,2880,2862,2927,2786,2848,2947,2867,2825,2774,2897,2559,2563,2612,2696,2612,2629,2630,2646,2607,2606,2643,2597,2626,2629,2599,2622,2518,2583,2582,2606,2604,2665,2613,2610,2589,2694,2551,2584,2682,2772,2790,2801,2699,2787,2757,2772,2800,2782,2772,2743,2766,2762,2781,2717,2797,2767,2785,2776,2777,2825,2783,2476,2486,2493,2488,2471,2454,2503,2449,2512,2548,2455,2515,2449,2525,2478,2523,2399,2453,2523,2468,2459,2475,2465,2492,2478,2465,2434,2061,2084,2066,2038,2066,2041,2059,2088,2102,2034,2023,2047,2028,2030,2045,2037,2084,2057,2070,2046,2027,2091,2345,2271,2271,2284,2258,2235,2369,2314,2291,2340,2274,2279,2270,2310,2296,2315,2347,2260,2318,2274,2029,2026,1993,2034,2022,2057,2009,2018,2107,2025,2018,2011,2079,2021,2024,2056,2013,2053,2012,2044,2007,1957,2049,2016,2000,1973,1967,1954,1936,1950,1972,1966,1968,1976,1980,1949,1938,1948,1947,1959,1986,1944,1926,1967,1933,1920,1931,1921,1903,2896,2749,2872,2784,2892,2851,2966,2838,2886,2871,2782,2867,2933,2910,2905,2832,2982,2848,2829,2787,2750,2861,2860,3010,2762,2917,2978,2803,2533,2551,2533,2504,2537,2497,2563,2584,2478,2535,2553,2616,2501,2562,2475,2506,2545,2544,1913,1942,1907,1973,2038,1910,1940,2010,1946,1932,1945,1983,1968,2033,1984,1910,1923,1938,2015,1985,1968,1973,1990,1969,2006,1835,1854,1815,1838,1787,1860,1880,1824,1807,1879,1865,1876,1853,1892,1843,1863,1874,1871,1842,1870,1818,1857,1875,1843,1847,1857,1870,1850,1864,1825,1850,1830,1856,1860,1810,1979,1994,2014,2040,2039,2014,2032,2012,2034,2030,2035,2052,2014,1995,1994,1973,2030,2000,2022,2045,2003,2019,2029,1991,1999,2029,2037,2142,2115,2118,2150,2126,2088,2076,2052,2113,2126,2123,2086,2085,2121,2124,2106,2071,2088,2107,2128,2136,2130,2114,2116,2149,2094,2106,2143,2512,2511,2502,2543,2476,2574,2484,2495,2499,2501,2443,2526,2499,2525,2448,2469,2459,2514,2537,2469,2196,2174,2222,2193,2221,2224,2220,2251,2268,2214,2214,2227,2243,2208,2214,2237,2255,2259,2189,1934,1979,2019,1980,2013,1975,2005,1991,1985,1986,2008,1989,1966,2014,1985,1998,1981,1948,1960,1978,1969,1992,1964,2005,1966,2315,2299,2267,2307,2307,2355,2281,2270,2309,2314,2293,2271,2301,2291,2304,2252,2302,2299,2250,2284,2283,2241,2284,2328,2285,1924,1989,2008,1973,1947,2025,1986,1961,1946,2059,2031,1938,1951,2016,1971,2007,2025,2052,1975,1947,1800,1813,1765,1817,1800,1801,1841,1815,1799,1822,1780,1786,1824,1822,1816,1778,1805,1786,1807,1821,1804,2001,1975,1981,1999,2018,1964,1962,2017,1948,2020,1990,1993,1961,1992,1973,1977,1981,1975,1973,1980,1958,1968,1991,2031,2022,2013,2052,2043,1966,2008,2091,2071,2052,2086,2087,2043,2050,2070,2035,2070,2037,2049,2023,2003,2056,2066,2027,2010,2076,2051,2033,2091,2026,2041,2023,2441,2536,2523,2498,2520,2496,2557,2524,2485,2525,2550,2546,2461,2401,2485,2547,2493,2515,2519,2506,2274,2287,2295,2281,2280,2304,2260,2299,2223,2294,2274,2283,2314,2285,2273,2288,2264,2321,2284,2287,2298,2264,2307,2289,2270,1913,1905,1970,1963,1914,1974,1877,1903,1867,1896,1864,1940,1921,1897,1946,1951,1922,1851,1872,1932,2001,1901,1864,1856,1817,1839,1843,1835,1831,1787,1851,1831,1846,1861,1831,1850,1813,1832,1833,1840,1842,1808,1818,1827,1809,1833,1865,1824,1816,1848,1835,1899,1851,1868,1878,1887,1897,1902,1895,1880,1893,1919,1857,1852,1889,1931,1873,1859,1852,1879,1891,1862,2734,2644,2665,2742,2763,2798,2711,2720,2774,2851,2754,2734,2697,2759,2705,2747,2688,2757,2728,2709,2674,2686,2726,2771,2700,2717,2675,2644,2694,2676,2684,2686,2673,2665,2661,2636,2601,2615,2653,2649,2692,2684,2634,2634,2651,2669,2662,2689,2665,2659,2628,2681,2634,2433,2435,2450,2484,2455,2382,2444,2400,2432,2407,2449,2409,2433,2389,2451,2405,2440,2439,2488,2456,2436,2408,2381,2463,2420,2422,2387,2354,2329,2324,2332,2316,2368,2341,2330,2300,2315,2303,2348,2291,2337,2347,2290,2319,2330,2354,2288,2372,2345,2353,2354,2329,2277,2309,2329,2329,2340,2326,2328,2373,2316,2331,2166,2193,2214,2211,2218,2176,2222,2155,2212,2212,2192,2221,2161,2201,2223,2198,2172,2163,2200,2219,2202,2215,2224,2179,2225,2159,2192,1962,1962,1941,1964,1998,2003,1993,1946,1999,2016,1980,1975,1983,2002,1966,2022,1967,2002,2005,1943,1991,1957,1988,1965,2025,1991,1973,2027,1994,1924,1913,1921,1948,1927,1965,1908,1908,1937,1907,1931,1948,1933,1976,1924,1968,1957,1930,1913,1933,1927,1929,1941,1924,1934,1953,1934,2608,2657,2627,2633,2643,2582,2656,2664,2636,2597,2631,2586,2697,2661,2670,2660,2675,2605,2597,2633,2648,2637,2643,2759,2473,2399,2410,2388,2424,2437,2422,2401,2430,2459,2417,2421,2459,2451,2433,2441,2440,2414,2376,2445,2436,2403,2457,2443,2427,2415,2445,2394,2429,2710,2724,2691,2744,2753,2725,2768,2731,2687,2709,2740,2728,2714,2728,2658,2702,2689,2659,2714,2769,2702,2667,2677,2750,2703,2660,2679,2710,2489,2485,2445,2487,2458,2525,2551,2474,2470,2458,2483,2485,2485,2460,2487,2458,2504,2414,2417,2488,2404,2413,2495,2490,2002,1979,1958,1964,1978,2004,1977,1922,1994,1992,1986,1997,1998,2006,1971,1989,1996,1948,1997,1955,1947,1988,1996,2009,1967,2000,1966,1978,1974,1989,1923,1989,1953,1991,1962,1959,1945,2712,2677,2662,2717,2684,2818,2700,2734,2811,2738,2709,2785,2759,2715,2684,2715,2664,2804,2731,2765,2825,2442,2446,2385,2482,2454,2406,2393,2456,2401,2424,2358,2439,2469,2419,2371,2442,2440,2495,2425,2425,2395,2364,2474,2461,2402,2489,2455,2478,2436,2398,2678,2702,2681,2730,2703,2657,2698,2652,2634,2680,2699,2641,2664,2663,2698,2701,2703,2728,2677,2630,2617,2633,2669,2701,2711,2670,2639,2482,2475,2490,2467,2434,2430,2441,2509,2472,2469,2481,2506,2523,2496,2485,2442,2492,2414,2497,2454,2460,2454,2494,2463,2465,1972,1952,1947,1968,1961,1950,2022,2025,2012,2000,2019,1960,1982,2038,1983,1978,2019,1956,2026,1968,1959,2021,1976,1959,2036,1983,1953,1951,1901,1922,1912,1908,1927,1932,1912,1939,1915,1926,1932,1932,1936,1874,1903,1933,1908,1945,1954,1931,1894,2013,2001,1990,2000,2013,2036,2043,2019,1997,2024,1992,1999,2046,1969,2017,1989,1974,1990,1984,1945,1932,1960,1945,1920,1931,1929,1945,1987,1942,1927,1978,1959,1942,1938,1983,1955,1917,1962,1934,1969,1937,1933,1938,1950,1935,1957,1914,1940,1928,2955,3065,2933,3142,2996,2888,3043,2920,3029,2939,2981,2877,2971,2977,3082,2896,3114,3072,2985,2863,2958,2945,3083,2939,2958,2950,3037,3016,3071,2569,2586,2595,2616,2524,2611,2628,2559,2526,2581,2594,2553,2619,2502,2538,2605,2554,2654,2545,2575,2614,2511,2171,2160,2137,2137,2157,2169,2133,2101,2066,2126,2131,2152,2135,2083,2171,2169,2148,2166,2135,2114,2168,2143,2138,2213,2146,3104,3056,3056,3058,2928,2902,3108,3115,2932,2921,3116,2958,2997,3067,2988,3056,3042,2900,2995,2985,3002,3010,3099,2994,2985,2942,2514,2513,2565,2522,2465,2547,2512,2553,2475,2561,2495,2522,2522,2519,2497,2522,2529,2541,2527,2525,2532,2499,2476,2545,2498,2551,2582,2644,2501,2624,2610,2537,2545,2649,2568,2627,2587,2618,2582,2657,2559,2626,2585,2546,2658,2608,2638,2573,2618,2621,2577,2631,2556,2610,2580,2652,2649,2674,2611,2642,2710,2686,2706,2688,2639,2669,2655,2655,2659,2655,2669,2642,2686,2672,2638,2697,2681,2710,2655,2655,2522,2509,2488,2525,2483,2544,2500,2508,2487,2558,2506,2590,2521,2484,2557,2506,2476,2507,2519,2556,2479,2526,2543,2552,2321,2273,2303,2314,2238,2317,2294,2285,2303,2281,2336,2358,2289,2342,2328,2318,2276,2331,2340,2250,2337,2295,2398,2281,2304,2617,2578,2574,2552,2625,2555,2605,2622,2597,2581,2617,2542,2582,2588,2555,2617,2598,2619,2582,2615,2557,2619,2585,2586,2624,2580,2594,2586,2573,2615,2617,2425,2329,2356,2291,2307,2372,2314,2316,2315,2246,2276,2336,2280,2341,2310,2300,2267,2306,2361,2285,2303,2250,2023,1928,1975,1894,1960,1975,1957,1974,1985,1911,1993,1922,1937,1941,1943,1948,1939,1962,1920,1967,2725,2718,2761,2624,2788,2765,2808,2746,2732,2734,2703,2783,2653,2779,2756,2697,2732,2768,2737,2715,2714,2661,2665,2688,2668,2630,2670,2680,2654,2677,2693,2649,2664,2679,2692,2618,2704,2698,2633,2665,2688,2682,2681,2699,2654,2667,2735,2683,2677,2696,2641,2355,2334,2370,2415,2344,2389,2336,2351,2326,2346,2373,2374,2382,2338,2356,2370,2347,2365,2332,2319,2325,2371,2350,2390,2419,2422,2531,2476,2408,2471,2556,2440,2473,2602,2576,2518,2485,2441,2510,2506,2450,2516,2532,2485,2480,2420,2532,2466,2518,2486,2495,2468,2519,2479,2496,2476,2456,2517,2499,2462,2510,2519,2470,2489,2466,2495,2489,2477,2457,2511,2517,2475,2487,2513,2491,2503,2523,2492,2487,2525,2459,2450,2363,2360,2325,2394,2368,2372,2345,2308,2287,2235,2337,2348,2348,2361,2334,2389,2389,2312,2341,2390,2315,2405,2317,2444,2408,2365,2269,2366,2313,2349,2368,2312,2346,2290,2558,2536,2647,2628,2528,2498,2567,2546,2595,2618,2555,2613,2593,2555,2611,2608,2548,2553,2583,2547,2601,2525,2514,2554,2522,2502,2523,2506,2517,2531,2538,2502,2506,2571,2499,2519,2520,2576,2548,2555,2538,2501,2534,2545,2515,2537,2507,2509,2555,2544,2511,2537,2526,2555,2524,2523,2491,2542,2566,2512,2555,2509,2497,2519,2503,2481,2551,2516,2513,2536,2559,2631,2604,2593,2617,2610,2605,2616,2644,2656,2649,2649,2635,2573,2633,2645,2612,2616,2648,2324,2322,2353,2298,2354,2360,2356,2273,2266,2398,2349,2402,2397,2316,2350,2310,2313,2334,2349,2349,2361,2330,2360,2339,2318,2350,2351,2291,2362,2387,2336,2608,2480,2596,2638,2475,2488,2627,2621,2595,2448,2487,2551,2573,2418,2531,2534,2636,2455,2652,2630,2600,2635,2626,2624,2632,2628,2657,2619,2642,2600,2632,2567,2645,2626,2627,2612,2589,2592,2507,2469,2464,2412,2444,2443,2447,2450,2502,2442,2466,2454,2501,2456,2425,2442,2452,2415,2419,2264,2297,2275,2228,2265,2251,2271,2244,2249,2258,2232,2281,2269,2300,2217,2297,2252,2292,2236,2239,2203,2285,2247,2251,2278,2263,2248,2220,2298,2215,2243,2211,2199,2230,2266,2279,2246,2237,2246,2251,2200,2226,2260,2224,2233,2281,2251,2216,2272,2279,2298,2287,2275,2260,2276,2276,2277,2279,2259,2261,2269,2248,2253,2288,2266,2262,2245,2257,2250,2294,2227,2249,2297,2261,2265,2246,2244,2237,2264,2279,2233,2245,1927,1968,1954,1921,1930,1909,1950,1973,1938,1967,1929,1916,1939,1934,1925,1928,1921,1953,1897,1894,1952,1936,1941,1939,1917,1957,1943,1912,1916,1922,1904,1903,2616,2517,2583,2549,2486,2548,2614,2584,2539,2646,2619,2600,2529,2569,2595,2621,2607,2654,2631,2523,2599,2557,2593,2518,2631,2668,2585,2595,2594,2533,2527,2573,2509,2497,2538,2510,2553,2533,2554,2526,2545,2492,2590,2521,2499,2519,2559,2498,2592,2536,2530,2522,2488,2495,2520,2447,2510,2481,2646,2615,2611,2652,2590,2600,2610,2595,2626,2635,2618,2613,2629,2648,2605,2657,2648,2463,2477,2451,2557,2471,2468,2456,2476,2502,2475,2474,2452,2484,2483,2476,2501,2432,2465,2512,2413,2487,2416,2466,2463,2533,2492,2235,2273,2252,2270,2276,2285,2265,2243,2215,2236,2189,2206,2217,2258,2236,2282,2234,2245,2223,2197,2214,2209,2216,2203,2207,2214,2202,2213,2198,2206,2212,2190,2209,2200,2208,2221,1836,1884,1922,1880,1871,1941,1934,1944,1915,1907,1938,1892,1945,1946,1892,1881,1887,1938,1963,1923,1927,1870,1908,1915,1848,1829,1859,1865,1833,1870,1845,1856,1826,1858,1846,1886,1840,1846,1860,1864,1872,1840,1858,1843,1847,1845,1827,1856,1827,1835,1842,1883,1884,1836,2664,2662,2667,2585,2674,2712,2587,2716,2605,2621,2741,2643,2713,2672,2762,2603,2722,2718,2708,2670,2718,2726,2604,2587,2603,2583,2587,2590,2597,2545,2600,2597,2549,2547,2561,2567,2596,2573,2582,2617,2620,2551,2611,2577,2582,2555,2551,2626,2555,2577,2649,2657,2616,2595,2642,2632,2599,2631,2615,2649,2649,2663,2676,2633,2685,2627,2386,2309,2378,2356,2358,2378,2416,2382,2409,2296,2386,2396,2399,2357,2375,2391,2382,2342,2312,2338,2363,2376,2281,2385,2400,2577,2596,2583,2611,2607,2598,2595,2660,2616,2582,2620,2600,2563,2626,2615,2593,2571,2598,2592,2612,2567,2631,2608,2647,2576,2406,2441,2414,2423,2406,2394,2440,2427,2394,2369,2422,2409,2412,2374,2424,2451,2463,2394,2444,2426,2439,2389,2421,1968,1870,1909,1871,1878,1877,1930,1909,1882,1823,1867,1928,1872,1901,1928,1852,1905,1915,1910,1888,1886,1886,1916,1894,2079,2046,2087,2092,2101,2080,2067,2055,2058,2082,2033,2089,2145,2070,2098,2075,2037,2053,2053,2093,2015,2052,2008,2045,2047,2042,2051,2008,2017,2009,2046,2011,2028,2038,2054,2049,2081,2037,2012,2062,2019,1996,2021,2008,2036,2042,2025,2016,2438,2450,2452,2496,2410,2405,2437,2510,2462,2435,2451,2400,2362,2511,2400,2466,2453,2511,2445,2449,2483,2665,2669,2695,2691,2644,2652,2632,2689,2658,2701,2707,2652,2691,2684,2665,2662,2679,2644,2622,2638,2678,2359,2442,2327,2418,2433,2441,2397,2447,2415,2425,2456,2431,2425,2493,3044,2960,3117,2988,3018,2927,3035,3031,2948,3091,3066,3016,3064,3006,3144,2991,3005,2984,3010,2975,3145,3118,3034,3046,2635,2614,2767,2643,2690,2674,2716,2753,2728,2718,2666,2714,2619,2626,2717,2772,2651,2722,2772,2653,2643,2713,2640,2664,2716,2644,2699,2673,2679,2691,2660,2043,2085,2117,2080,2190,2075,2049,2051,2192,2040,2059,2032,2020,2090,2114,2191,2072,2522,2493,2499,2609,2519,2512,2479,2559,2512,2507,2515,2537,2548,2503,2503,2533,2513,2566,2504,2579,2486,2537,2504,2563,2525,2505,2531,2539,2502,2547,2275,2345,2202,2249,2263,2357,2248,2259,2262,2286,2306,2303,2326,2181,2266,2283,2213,2287,2263,2302,2265,2280,2285,2335,2285,2171,2201,2204,2190,2204,2194,2201,2197,2202,2230,2194,2193,2219,2208,2184,2194,2192,2204,2168,2153,2179,2205,2201,1949,1967,1941,1979,1921,1935,1955,1932,1988,1976,1935,1967,1966,1951,1958,1973,1963,1947,1983,1983,1922,1965,1978,1932,1974,2804,2773,2818,2689,2849,2739,2746,2797,2762,2687,2760,2686,2733,2694,2670,2741,2724,2672,2773,2803,2700,2700,2506,2572,2516,2567,2561,2599,2615,2533,2547,2558,2586,2591,2616,2542,2554,2583,2576,2621,2548,2604,2527,2597,2567,2606,2614,1941,1964,1949,1955,1974,1971,1954,1965,1928,1923,2018,1972,1969,2001,1970,1995,1934,1972,1953,1932,1918,1981,1947,1964,1989,1990,1941,1948,1943,1948,1972,1975,1954,1991,1981,1959,2745,2753,2712,2773,2829,2765,2723,2666,2713,2735,2776,2780,2848,2734,2746,2821,2793,2852,2846,2612,2767,2727,2760,2724,2725,2714,2726,2822,2757,2737,2401,2432,2435,2403,2389,2446,2464,2452,2407,2434,2478,2415,2453,2428,2407,2429,2444,2362,2443,2419,2404,2354,2396,1985,1913,1943,1960,1955,1954,1950,1965,1954,1944,1954,1963,1969,1928,1958,2000,1959,1971,1987,1928,1948,1958,1960,1934,1939,1972,1904,1939,3058,3199,3000,2942,2962,2972,3109,3123,3074,3043,3040,3011,2883,2942,3041,3011,3044,3009,3011,2890,3081,2918,2931,2904,3064,3005,2994,2576,2598,2586,2576,2604,2611,2572,2567,2555,2574,2596,2621,2639,2615,2561,2628,2583,2681,2581,2541,2617,2585,2602,2596,2579,2671,2675,2728,2618,2621,2695,2600,2587,2681,2701,2711,2649,2609,2607,2622,2618,2672,2657,2622,2614,2636,2634,2657,2630,2662,2632,2642,2646,2614,2619,2650,2637,2658,2649,2641,2625,2646,2629,2637,2657,2653,2457,2470,2439,2479,2468,2547,2435,2482,2514,2436,2416,2506,2508,2431,2472,2459,2457,2520,2509,2457,2420,2529,2480,2446,2476,2460,2459,2484,2496,2486,2532,2445,2512,2012,2040,2024,1941,2042,1967,2002,1998,2024,1998,1984,1979,1997,1983,1994,2010,2043,2012,2014,2012,1989,1990,2005,1993,1984,1973,2030,1992,1878,1880,1846,1857,1904,1918,1858,1873,1887,1907,1878,1880,1832,1918,1858,1873,1820,1867,1903,1884,1873,1835,1904,1883,1839,1892,1844,1864,2022,1942,1972,1934,1949,1991,1989,1953,1943,1996,1952,1953,1926,1980,1972,1941,1991,1949,2000,1959,2000,1925,1970,1936,1973,1923,1963,1975,2073,2055,2099,2088,2031,2072,2092,2090,2050,2086,2056,2066,2071,2049,2065,2043,2030,2051,2069,2064,2040,2064,2090,2066,2083,2088,2465,2497,2486,2484,2527,2520,2520,2516,2458,2496,2470,2568,2457,2464,2514,2489,2510,2532,2494,2509,2565,2541,2500,2488,2449,2448,2533,2512,2629,2738,2659,2774,2723,2677,2630,2702,2623,2678,2723,2626,2669,2711,2693,2664,2667,2691,2678,2484,2433,2463,2422,2450,2487,2386,2443,2409,2489,2400,2470,2490,2407,2454,2435,2414,2470,2453,2439,2412,2421,2455,2480,2487,2430,2427,1952,2008,2046,1962,2047,2012,2013,2027,2016,2006,2008,2012,2017,1990,2032,2020,1964,2049,1998,2015,2024,1968,2014,2004,1987,2039,2004,2027,2041,2025,2654,2573,2587,2557,2564,2491,2606,2608,2610,2637,2594,2596,2646,2501,2591,2606,2576,2539,2633,2606,2619,2566,2516,2636,2643,2635,2569,2632,2545,2598,2605,2675,2634,2642,2588,2643,2636,2633,2611,2700,2682,2641,2600,2696,2665,2623,2650,2634,2622,2643,2560,2632,2653,2658,2632,2589,2292,2298,2239,2215,2227,2248,2302,2262,2335,2217,2329,2242,2250,2270,2333,2267,2244,2287,2229,2216,2300,1930,1935,1899,1943,1907,1902,1886,1918,1911,1946,1946,1905,1928,1919,1916,1891,1908,1893,1936,1908,1934,1914,1917,1895,1974,1890,1895,1875,2823,2794,2853,2868,2798,2793,2822,2850,2899,2782,2901,2786,2646,2925,2826,2841,2885,2849,2793,2819,2824,2859,2864,2897,2844,2635,2642,2681,2653,2585,2653,2663,2674,2627,2639,2675,2613,2666,2667,2627,2608,2613,2627,2648,2633,2279,2255,2258,2256,2217,2267,2291,2234,2254,2272,2271,2263,2296,2255,2233,2266,2246,2301,2244,2254,2245,2172,2167,2209,2122,2204,2202,2204,2199,2209,2202,2186,2191,2204,2220,2195,2227,2217,2165,2155,2220,2178,2174,2206,2147,2188,2166,2205,2197,2190,2197,2164,2199,2201,2234,2212,2188,2193,2196,2215,2183,2211,2204,2191,2165,2165,2185,2181,2169,2194,2176,2192,2190,2034,2026,2003,1962,2006,2003,1996,1982,1995,2005,1974,2006,2047,1954,2067,2018,2023,1962,1989,1973,2003,2011,2022,1964,2035,1982,2020,2001,2038,1963,2046,2367,2389,2439,2323,2403,2398,2374,2425,2396,2383,2305,2451,2339,2340,2418,2333,2443,2385,2414,2401,2396,2375,2377,2393,2204,2186,2180,2206,2188,2198,2196,2191,2181,2161,2182,2202,2182,2172,2210,2193,2197,2230,2202,2191,2154,2195,2188,2193,2607,2578,2608,2597,2627,2595,2588,2571,2604,2626,2566,2518,2602,2603,2614,2556,2619,2581,2587,2558,2568,2568,2582,2601,2576,2620,2597,2584,2611,2662,2674,2658,2686,2648,2675,2718,2693,2667,2723,2648,2671,2710,2719,2635,2733,2673,2684,2677,2694,2723,2685,2673,2696,2666,2706,2715,2722,2401,2384,2357,2384,2386,2453,2395,2328,2354,2452,2372,2393,2378,2357,2351,2364,2445,2323,2382,2418,2373,2371,2389,2429,2365,2379,2393,2042,1981,1950,1969,2002,2011,2005,1985,1941,2011,1944,2008,1993,2003,1960,1956,2006,2049,2053,1977,1963,2002,2740,2780,2700,2792,2743,2695,2648,2714,2724,2710,2710,2851,2703,2658,2737,2767,2763,2786,2744,2690,2717,2789,2727,2766,2444,2414,2396,2386,2419,2458,2446,2418,2476,2406,2416,2462,2429,2437,2444,2448,2440,2458,2455,2447,2415,2455,2457,2455,2697,2678,2685,2692,2694,2709,2722,2684,2670,2677,2703,2684,2736,2681,2683,2698,2683,2710,2695,2755,2682,2727,2709,2720,2677,2710,2706,2720,2690,2513,2501,2487,2506,2468,2479,2498,2484,2532,2507,2545,2506,2538,2490,2532,2476,2501,2565,2496,2537,2541,2286,2324,2350,2365,2377,2309,2380,2371,2360,2349,2347,2359,2346,2228,2252,2263,2330,2293,2259,2337,2620,2622,2625,2608,2578,2601,2570,2564,2556,2583,2602,2630,2580,2563,2614,2620,2624,2587,2647,2642,2609,2661,2647,2628,2661,2619,2612,2661,2656,2606,2636,2667,2629,2562,2581,2641,2672,2627,2646,2662,2617,2451,2461,2465,2424,2461,2472,2442,2451,2439,2466,2465,2459,2462,2477,2436,2456,2461,2469,2483,2464,2446,2408,2448,2463,2436,2474,2467,2028,1942,2015,1978,2056,2016,2038,2015,2005,1994,2036,1998,2018,2020,2030,2012,2023,2009,2016,2055,2225,2364,2298,2308,2333,2298,2302,2252,2260,2265,2300,2282,2365,2305,2300,2290,2236,2273,2267,2364,2290,2333,1948,2008,1984,2003,2032,1980,2004,2059,2044,2015,1996,2012,2011,2043,2025,2043,2032,1999,2008,2044,1975,1995,2040,2029,2015,2033,1985,2028,2001,2023,1932,1945,1954,1933,1942,1920,1934,1912,1924,1925,1943,1937,1953,1947,1938,1927,1947,1923,1966,1919,1953,1933,1959,1933,1935,1953,1925,1924,2743,2906,2776,2856,2914,2824,2852,2790,2873,2753,2867,2789,2946,2838,2933,2966,2774,2771,2866,2465,2465,2532,2464,2428,2471,2492,2411,2431,2461,2453,2491,2501,2445,2461,2416,2496,2426,2437,2424,2490,2382,2399,1998,2024,2072,1999,2040,2058,2064,2020,2008,2101,2063,2001,2058,2044,2068,2067,2080,2089,2051,2018,2023,2080,2022,2070,2094,2014,2038,2020,2496,2575,2484,2448,2451,2445,2505,2500,2450,2547,2467,2554,2481,2476,2470,2474,2485,2506,2439,2470,2519,2495,2510,2419,2517,2488,2501,2793,2787,2791,2806,2789,2798,2786,2823,2774,2769,2822,2803,2794,2791,2798,2826,2798,2750,2821,2837,2768,2779,2772,2757,2760,2765,2812,2758,2798,2781,2797,2790,2608,2581,2601,2631,2585,2582,2604,2558,2552,2591,2543,2620,2601,2586,2606,2553,2588,2643,2651,2596,2595,2557,2613,2319,2353,2355,2317,2371,2349,2346,2336,2308,2341,2340,2384,2299,2330,2343,2361,2368,2326,2351,2312,2028,2096,2034,2037,1985,2000,2030,1999,1964,2026,2026,1978,1962,2055,2025,1970,1991,1971,2035,2021,1991,2046,1999,2005,1956,2016,2002,2028,2006,2015,1992,2010,1879,1849,1855,1917,1884,1878,1899,1857,1891,1951,1876,1917,1871,1906,1880,1878,1837,1906,1831,1899,1814,1875,1925,1884,1889,1903,1913,1866,1908,2834,2757,2845,2865,2843,2785,2684,2983,2841,2835,2763,2813,2774,2913,2867,2901,2874,2744,2886,2748,2846,2796,2814,2885,2775,2909,2898,2884,2756,2867,2930,2536,2484,2539,2508,2562,2517,2522,2514,2486,2478,2456,2479,2436,2531,2418,2486,2525,2510,2424,2534,2515,2521,2588,2029,2015,1977,2073,2085,2049,2059,2081,2051,2051,2045,2042,2019,2092,2065,2029,2049,2074,2763,2707,2843,2806,2830,2847,2762,2800,2858,2753,2827,2758,2763,2861,2739,2808,2779,2862,2736,2712,2786,2740,2833,2702,2623,2659,2649,2647,2599,2659,2630,2625,2647,2679,2622,2587,2664,2693,2678,2687,2648,2687,2648,2624,2647,2697,2650,2639,2708,2661,2702,2702,2703,2718,2716,2687,2691,2697,2649,2616,2683,2692,2705,2695,2687,2701,2721,2653,2728,2679,2663,2678,2727,2734,2676,2681,2708,2675,2700,2704,2468,2475,2539,2426,2467,2411,2496,2444,2482,2435,2486,2472,2465,2499,2468,2468,2503,2468,2427,2475,2461,2417,2497,2482,2476,2487,2356,2375,2334,2393,2386,2340,2357,2367,2351,2356,2375,2407,2374,2356,2377,2364,2382,2373,2354,2387,2380,2331,2384,2389,2377,2381,2351,2388,2370,2359,2187,2179,2239,2220,2203,2161,2211,2233,2177,2276,2190,2221,2224,2195,2235,2225,2244,2253,2194,2172,2121,2158,2186,2177,2651,2601,2519,2550,2595,2547,2564,2565,2575,2634,2552,2598,2546,2608,2599,2549,2552,2545,2583,2538,2624,2614,2651,2584,2643,2598,2596,2645,2631,2622,2630,2583,2639,2636,2568,2664,2564,2624,2614,2665,2627,2641,2626,2620,2651,2628,2662,2621,2597,2656,2626,2613,2662,2638,2664,2675,2657,2673,2659,2659,2702,2681,2658,2661,2662,2645,2691,2657,2635,2643,2638,2637,2670,2675,2642,2667,2625,2665,2639,2412,2357,2431,2386,2348,2327,2388,2378,2422,2358,2347,2459,2333,2451,2414,2363,2400,2389,2411,2391,2351,2358,2411,2395,2368,2374,2325,2390,2383,2629,2628,2628,2633,2661,2643,2651,2595,2618,2629,2637,2641,2600,2681,2611,2595,2598,2639,2620,2586,2657,2584,2593,2653,2605,2659,2319,2367,2351,2398,2330,2361,2341,2364,2390,2387,2409,2390,2418,2379,2414,2398,2341,2381,2378,2438,2362,2422,2337,2468,2422,2319,2434,2418,2367,2342,2457,2499,2508,2646,2560,2501,2513,2620,2542,2576,2562,2531,2500,2576,2600,2623,2555,2525,2521,2450,2495,2511,2558,2529,2537,2567,2553,2560,2589,2580,2576,2531,2556,2608,2562,2584,2532,2570,2552,2602,2570,2553,2514,2581,2545,2531,2565,2553,2585,2615,2586,2614,2569,2593,2605,2657,2598,2626,2561,2612,2626,2589,2625,2605,2635,2599,2620,2611,2613,2602,2632,2645,2581,2635,2630,2356,2306,2344,2373,2343,2353,2374,2308,2309,2321,2339,2308,2403,2327,2328,2408,2375,2346,2426,2342,2327,2348,2618,2662,2637,2608,2651,2672,2635,2608,2632,2640,2616,2622,2653,2646,2621,2635,2614,2634,2649,2603,2647,2643,2624,2613,2542,2507,2501,2517,2537,2510,2512,2532,2519,2541,2527,2506,2520,2540,2514,2501,2561,2524,2545,2495,2486,2518,2535,2543,2530,2328,2330,2231,2257,2265,2308,2250,2313,2325,2274,2278,2279,2267,2250,2297,2260,2266,2236,2255,2286,2273,2269,2253,2255,2260,2281,2320,1936,1932,1913,1921,1995,1957,1980,1956,1961,1949,1937,1951,1954,1969,1932,1925,2593,2563,2614,2604,2537,2623,2601,2647,2583,2588,2564,2530,2559,2618,2577,2639,2574,2554,2629,2630,2602,2609,2570,2609,2688,2673,2674,2735,2704,2716,2627,2693,2694,2666,2621,2624,2740,2667,2703,2683,2718,2697,2722,2650,2694,2662,2698,2721,2748,2706,2697,2448,2420,2442,2474,2430,2451,2426,2419,2412,2420,2442,2432,2360,2386,2442,2442,2454,2438,2460,2440,2723,2730,2711,2698,2706,2704,2732,2719,2708,2741,2741,2768,2741,2717,2795,2726,2745,2722,2768,2718,2717,2685,2761,2717,2698,2770,2754,2724,2725,2750,2734,2711,2757,2491,2430,2480,2500,2439,2494,2496,2514,2446,2510,2472,2472,2546,2468,2457,2498,2504,2538,2497,2504,2511,2535,2421,2488,2434,2481,2454,2455,2396,2432,2467,2434,2447,2409,2486,2459,2447,2393,2406,2473,2420,2433,2401,2367,2460,2420,2450,2388,2415,2412,2437,2480,2477,2637,2627,2630,2599,2636,2651,2611,2603,2595,2583,2650,2598,2625,2612,2571,2618,2590,2626,2583,2585,2622,2642,2564,2586,2555,2565,2577,2567,2558,2551,2556,2533,2593,2526,2541,2552,2527,2575,2568,2543,2558,2566,2573,2550,2572,2573,2559,2575,2582,2590,2570,2544,2569,2569,2563,2548,2570,2542,2538,2563,2550,2503,2551,2544,2569,2518,2556,2546,2586,2531,2581,2533,2550,2542,2543,2536,2570,2563,2552,2540,2570,2551,2480,2471,2474,2502,2491,2465,2473,2477,2444,2498,2475,2455,2521,2479,2478,2482,2481,2578,2547,2585,2531,2547,2584,2538,2592,2567,2563,2557,2572,2574,2551,2606,2527,2568,2615,2600,2532,2561,2592,2569,2594,2565,2532,2587,2567,2569,2580,2576,2545,2549,2554,2579,2521,2255,2258,2377,2381,2341,2339,2343,2376,2352,2422,2331,2296,2313,2351,2327,2379,2318,2367,2318,2683,2640,2664,2625,2685,2646,2667,2676,2670,2672,2651,2720,2679,2633,2665,2659,2684,2639,2665,2648,2664,2590,2662,2631,2394,2464,2436,2475,2465,2456,2469,2421,2459,2413,2442,2439,2416,2448,2453,2426,2409,2472,2424,2427,2452,2437,2465,2465,2423,1912,1952,2021,2002,2033,2038,2015,1930,2045,2001,1991,1990,2107,1988,1989,2014,2056,1919,1975,1949,2051,1970,1996,1987,1947,1970,1933,1975,1962,2317,2327,2301,2308,2341,2292,2281,2326,2309,2322,2294,2310,2301,2275,2300,2344,2295,2322,2324,2309,2303,2344,2295,2632,2579,2601,2618,2632,2652,2608,2669,2628,2578,2581,2654,2644,2632,2626,2560,2645,2643,2619,2593,2640,2663,2562,2601,2656,2601,2452,2444,2474,2449,2474,2490,2466,2436,2432,2455,2428,2447,2452,2400,2464,2441,2469,2452,2412,2447,2430,2511,2476,2430,2411,2379,2392,2412,2401,2405,2383,2395,2405,2392,2408,2394,2413,2395,2402,2403,2445,2410,2400,2384,2373,2387,2403,2390,2410,2683,2689,2665,2708,2664,2702,2674,2687,2694,2675,2702,2688,2648,2707,2669,2684,2674,2655,2714,2664,2434,2400,2507,2464,2471,2440,2469,2477,2462,2449,2445,2460,2482,2508,2453,2479,2499,2475,2497,2502,2449,2471,2498,2481,2438,2446,2638,2689,2596,2591,2630,2635,2681,2584,2646,2649,2622,2629,2585,2611,2539,2569,2597,2616,2509,2487,2525,2527,2512,2514,2523,2521,2510,2541,2526,2534,2518,2545,2555,2522,2539,2512,2486,2558,2611,2555,2565,2593,2583,2553,2566,2577,2532,2569,2607,2587,2506,2545,2618,2594,2593,2569,2573,2584,2626,2557,2608,2582,2596,2332,2318,2375,2310,2328,2337,2318,2370,2364,2313,2306,2363,2398,2380,2346,2298,2320,2281,2337,2331,2359,2293,2285,2491,2492,2551,2503,2472,2442,2607,2470,2456,2571,2544,2428,2478,2520,2593,2499,2397,2485,2462,2435,2483,2583,2522,2449,2580,2464,2520,2547,2555,2500,2497,2461,2458,2457,2544,2580,2624,2555,2576,2563,2558,2595,2556,2550,2548,2546,2542,2561,2580,2597,2579,2606,2580,2542,2545,2444,2345,2342,2356,2362,2341,2301,2393,2394,2410,2361,2365,2359,2328,2313,2335,2427,2351,2354,2366,2358,2385,2357,2334,2315,2351,2347,2830,2838,2892,2824,2856,2793,2857,2903,2791,2799,2911,2859,2868,2846,2823,2790,2816,2878,2901,2801,2889,2847,2764,2865,2561,2588,2628,2591,2561,2548,2545,2598,2554,2580,2541,2569,2555,2565,2550,2578,2557,2567,2594,2551,2570,2508,2648,2559,2074,1943,1994,2018,1920,2030,1986,1914,1926,1965,1915,1991,2027,2033,1894,2043,2030,2011,1955,2007,2440,2441,2493,2504,2418,2450,2419,2496,2392,2403,2475,2428,2390,2448,2473,2449,2483,2486,2448,2439,2422,2445,2410,2416,2438,2439,2400,2510,2440,2462,2434,2040,2108,2051,2109,2118,2021,2075,2087,2058,2069,2048,2025,2038,2072,2041,2096,2108,2067,2279,2232,2278,2256,2217,2296,2267,2248,2244,2291,2255,2220,2277,2329,2238,2222,2318,2306,2273,2315,2289,2302,2274,2303,2216,2277,1915,1962,1947,1943,1947,1906,1948,1927,1935,1917,1936,1946,1931,1892,1985,1960,1926,1877,1913,1866,1897,1924,1966,1858,1877,1865,1885,1844,1847,1854,1897,1796,1860,1849,1829,1845,1849,1810,1825,1835,1840,1829,1861,1827,1860,1837,1881,1890,1870,1870,1881,1878,1872,1892,1873,1846,1880,1879,1916,1852,1900,1884,1884,1824,1837,1884,1885,1857,1875,1862,1874,2733,2643,2708,2711,2846,2816,2790,2744,2722,2819,2748,2706,2760,2824,2814,2711,2698,2740,2796,2848,2887,2713,2788,2730,2568,2558,2570,2579,2582,2567,2594,2615,2577,2563,2610,2560,2599,2573,2559,2607,2595,2609,2601,2613,2544,2233,2178,2223,2215,2211,2231,2182,2224,2206,2204,2204,2152,2214,2223,2117,2252,2196,2205,2147,2189,2155,2203,2200,2160,2201,2137,2116,2049,2061,2073,2044,2037,2061,2064,2058,2064,2085,2098,2084,2065,2044,2072,2025,2072,2461,2557,2559,2527,2582,2537,2540,2508,2511,2586,2496,2536,2491,2542,2578,2570,2517,2558,2530,2532,2555,2552,2536,2545,2516,2539,2558,2550,2407,2336,2393,2368,2352,2335,2424,2341,2328,2373,2369,2357,2415,2379,2421,2395,2386,2419,2394,2365,2368,2431,2358,2368,2446,2379,2354,2697,2686,2679,2674,2676,2683,2674,2731,2707,2652,2680,2664,2752,2692,2721,2683,2688,2674,2697,2680,2636,2693,2654,2671,2646,2675,2489,2519,2442,2459,2485,2448,2490,2410,2448,2468,2508,2439,2469,2524,2444,2464,2498,2484,1912,1938,1949,1954,1946,1926,1973,1913,1896,1906,1914,1946,1958,1958,1919,1900,1963,1925,1969,1994,1938,1934,1880,1939,2736,2823,2668,2646,2655,2782,2753,2712,2590,2710,2687,2766,2688,2654,2635,2752,2735,2668,2765,2682,2692,2680,2709,2719,2706,2675,2774,2544,2472,2550,2537,2523,2477,2490,2553,2489,2544,2510,2472,2541,2543,2493,2454,2482,2551,2517,2623,2515,2548,2478,2510,2505,1923,1866,1919,1805,1895,1804,2001,1951,1901,1836,1910,1923,1862,1896,2015,1959,1989,1920,1979,1926,1992,1984,1997,1941,1949,1967,1951,1991,1941,1948,1965,1969,1988,1964,1946,1987,1950,1987,2961,2975,2961,2968,2953,2971,2984,2969,2959,2985,2916,2959,2957,2963,2960,2991,2951,2939,2946,2925,2975,2940,2936,2680,2652,2615,2665,2637,2643,2635,2687,2628,2651,2626,2606,2710,2610,2624,2642,2658,2637,2657,2645,2661,2670,2670,2673,2661,2622,2601,2649,1962,1915,1933,1995,1887,1881,1920,2013,1891,1895,1951,1847,1850,1913,1890,1959,1877,1914,1990,1894,1920,1902,1958,1935,1973,1870,1953,1954,1838,1874,1784,1787,1830,1888,1784,1859,1890,1816,1869,1811,1896,1908,1873,1815,1872,1857,1853,1886,1846,1853,1850,1870,2373,2340,2339,2329,2415,2361,2406,2296,2316,2317,2345,2361,2396,2306,2391,2419,2326,2405,2353,2417,2343,2295,2345,2321,2322,2309,2094,2144,2136,2109,2151,2110,2110,2168,2118,2163,2113,2136,2067,2152,2089,2101,2145,2104,2125,2131,2125,2154,2057,2060,2097,2063,2041,2054,2083,2079,2083,2046,2084,2075,2065,2059,2037,2061,2045,2053,2085,2068,2091,2071,2073,2069,2078,2100,2039,2061,2059,2120,1926,1925,1930,1941,1933,1943,1965,1936,1989,1965,1925,1953,1937,1930,1938,1940,1974,1908,1971,1920,1928,1957,2640,2571,2638,2540,2524,2590,2522,2531,2638,2569,2557,2491,2561,2612,2550,2584,2596,2568,2506,2485,2607,2526,2560,2575,2623,2646,2620,2591,2620,2537,2600,2598,2612,2609,2675,2600,2597,2570,2601,2623,2640,2604,2606,2614,2588,2644,2584,2620,2616,2601,2581,2624,2598,2590,2507,2392,2451,2446,2513,2571,2481,2466,2536,2507,2456,2479,2448,2427,2506,2530,2420,2437,2479,2482,2465,2439,2423,2489,2448,1987,1902,1922,1993,1916,1949,1916,1877,1905,1942,2001,1848,1946,2000,1874,1910,1975,1910,1955,1918,1827,1907,1867,1897,1955,1953,1891,1931,1934,1902,1944,1887,1863,1947,1909,1961,1922,1897,1873,1889,1914,1897,1889,1902,1896,1867,1903,1870,1861,1870,1892,1898,1889,1873,1907,1883,1900,1921,1884,1876,1871,2761,2587,2661,2712,2749,2777,2755,2736,2671,2746,2767,2758,2739,2647,2645,2728,2633,2730,2684,2645,2736,2573,2572,2563,2587,2555,2633,2555,2588,2588,2589,2579,2628,2567,2595,2587,2563,2549,2583,2589,2658,2590,2566,2562,2596,2575,2590,2597,2597,2586,2586,2635,2666,2639,2639,2642,2623,2665,2609,2610,2637,2666,2664,2608,2647,2589,2611,2599,2622,2610,2640,2614,2338,2361,2289,2361,2297,2297,2396,2323,2404,2294,2274,2389,2308,2294,2234,2328,2355,2312,2538,2539,2530,2506,2435,2455,2442,2469,2569,2502,2550,2481,2424,2340,2583,2536,2533,2560,2433,2461,2521,2501,2458,2496,2483,2523,2507,2481,2451,2491,2536,2503,2458,2496,2468,2481,2488,2500,2661,2648,2638,2630,2644,2605,2663,2640,2642,2648,2608,2658,2606,2597,2625,2668,2662,2646,2614,2637,2612,2672,2695,2620,2625,2636,2642,2669,2418,2358,2483,2415,2368,2454,2454,2421,2431,2437,2397,2437,2371,2452,2385,2425,2388,2431,2372,2472,2464,2450,2455,2431,1870,1942,1967,1914,1915,1909,1943,1900,1919,1952,1919,1902,1874,1946,1898,1954,1935,1913,1905,1854,1982,1852,1890,1908,1956,1897,1896,1867,1903,1878,1944,1925,1783,1823,1846,1835,1851,1849,1833,1856,1842,1833,1881,1842,1830,1856,1827,1828,1845,1827,1859,1842,1839,1824,1816,1841,1832,1832,2821,2727,2705,2656,2697,2716,2761,2687,2677,2747,2702,2749,2801,2697,2722,2787,2692,2767,2700,2724,2692,2761,2712,2631,2685,2807,2675,2805,2821,2816,2760,2705,2733,2756,2706,2780,2747,2698,2710,2729,2713,2606,2708,2691,2684,2731,2723,2327,2249,2336,2280,2354,2347,2284,2214,2213,2368,2320,2291,2318,2264,2345,2350,2304,2347,2305,1866,1877,1881,1855,1892,1875,1883,1855,1860,1807,1861,1858,1847,1841,1819,1857,1801,1852,1791,1840,1817,1878,1859,1828,1886,1844,1872,1815,2680,2764,2795,2715,2784,2816,2811,2781,2708,2719,2783,2691,2688,2711,2783,2813,2807,2838,2739,2743,2548,2527,2477,2500,2499,2524,2565,2521,2503,2483,2516,2538,2537,2523,2511,2523,2537,2529,2548,2575,2516,2531,2519,2486,2531,2491,2547,2838,2863,2882,2862,2770,2851,2881,2856,2828,2817,2857,2852,2841,2792,2854,2844,2831,2806,2838,2850,2833,2771,2837,2794,2833,2564,2508,2569,2526,2535,2487,2540,2565,2589,2567,2547,2574,2529,2539,2574,2564,2540,2544,2177,2191,2218,2178,2181,2171,2210,2211,2164,2185,2097,2162,2166,2191,2177,2104,2140,2177,2188,2169,2148,2170,2175,2209,2087,2220,2195,2648,2698,2709,2716,2663,2669,2637,2656,2755,2719,2734,2672,2664,2689,2634,2668,2724,2670,2699,2682,2742,2667,2650,2716,2722,2466,2464,2459,2490,2471,2474,2443,2439,2493,2472,2502,2471,2482,2494,2478,2446,2469,2476,2511,2526,2477,2579,2553,2500,2591,2550,2489,2505,2503,2536,2543,2552,2574,2502,2528,2501,2496,2524,2519,2526,2490,2540,2479,2514,2497,2499,2484,2511,2537,2508,2540,2517,2549,2513,2504,2525,2507,2503,2500,2476,2494,2469,2530,2484,2536,2498,2514,2543,2528,2541,2535,2525,2540,2511,2524,2534,2501,2526,2533,2489,2511,2495,2496,2545,2518,2503,2534,2516,2547,2524,2553,2539,2536,2532,2528,2535,2559,2558,2542,2540,2543,2558,2548,2577,2547,2557,2570,2561,2559,2552,2558,2569,2552,2562,2564,2561,2523,2567,2570,2574,2557,2565,2562,2576,2515,2563,2573,2569,2535,2543,2535,2553,2553,2546,2587,2576,2547,2576,2550,2581,2571,2561,2533,2537,2576,2549,2574,2563,2544,2583,2566,2535,2572,2556,2550,2545,2553,2577,2543,2659,2617,2609,2609,2609,2581,2598,2600,2632,2593,2601,2592,2613,2607,2612,2634,2614,2647,2622,2607,2633,2607,2618,2598,2576,2621,2597,2559,2594,2601,2588,2305,2356,2366,2373,2389,2393,2449,2405,2334,2351,2433,2380,2365,2373,2354,2435,2394,2378,2384,2451,2371,2349,2359,2374,2342,2343,2371,2394,2382,2328,2350,2357,2373,2414,2327,2371,2396,2384,2382,2361,2344,2379,2309,2367,2383,2309,2741,2706,2684,2798,2738,2702,2684,2753,2751,2766,2726,2749,2757,2771,2680,2767,2710,2680,2723,2726,2705,2736,2642,2695,2609,2583,2553,2552,2563,2549,2578,2578,2557,2592,2562,2510,2538,2605,2544,2569,2560,2567,2518,2565,2527,2441,2439,2424,2466,2457,2429,2435,2456,2456,2448,2441,2428,2425,2423,2460,2451,2444,2435,2418,2435,2395,2445,2437,2442,2442,2472,2479,2466,2462,2095,1995,2110,2084,2095,2055,2098,1976,2005,2099,2050,2071,2144,2031,2019,2037,2057,2067,2060,1997,2007,2030,2058,2055,2104,2045,2067,2005,2114,2056,1981,2069,2316,2216,2310,2246,2245,2294,2295,2277,2244,2253,2291,2282,2268,2280,2268,2251,2264,2265,2271,2317,2327,2281,2252,2242,2249,2221,2209,2185,2205,2198,2176,2206,2217,2216,2167,2180,2214,2192,2237,2233,2217,2179,2212,2206,2215,2169,1985,1946,2022,1934,1994,1978,1955,2012,1975,1985,1936,2056,1958,1997,2010,2003,1997,1986,2014,1945,1958,1976,1931,1941,1958,1951,2012,1971,1978,1975,1995,1996,1981,2001,1974,1983,1980,1979,1965,2000,1990,2004,1975,1944,1959,1961,1989,1938,1978,1997,1942,1998,2016,1990,1986,2005,1979,1995,2013,1996,2008,2004,2017,1990,2030,1980,2000,1998,2022,2011,1996,2036,1981,2013,1987,1962,2000,2009,1982,1972,2031,1985,2780,2845,2753,2835,2748,2839,2781,2759,2870,2783,2782,2801,2866,2770,2686,2742,2918,2763,2792,2738,2755,2739,2834,2818,2701,2827,2761,2792,2575,2599,2555,2611,2550,2580,2563,2593,2571,2546,2565,2580,2617,2540,2548,2533,2570,2560,2592,2597,2608,2548,2271,2255,2219,2242,2255,2274,2239,2257,2283,2271,2203,2243,2292,2257,2234,2241,2218,2220,2242,2242,2220,2232,2266,2262,2238,2245,1880,1908,1909,1854,1885,1908,1955,1931,1896,1906,1905,1960,1879,1884,1929,1869,1975,1926,1912,1895,2702,2708,2646,2769,2625,2668,2725,2727,2766,2717,2721,2609,2721,2684,2627,2714,2678,2723,2705,2336,2300,2313,2319,2237,2228,2304,2304,2293,2349,2203,2228,2364,2367,2342,2157,2310,2259,2279,2352,2196,2256,2254,2275,2313,2318,2358,1919,1903,1865,1972,1907,1932,1924,1893,1963,1932,1943,1897,1946,1921,1928,1898,1895,1907,1918,1912,1897,1946,1920,2738,2775,2705,2769,2769,2732,2769,2676,2802,2795,2780,2751,2828,2728,2689,2718,2847,2800,2771,2829,2778,2805,2776,2784,2719,2599,2656,2577,2605,2629,2593,2626,2598,2594,2618,2584,2609,2572,2595,2571,2620,2611,2605,2597,2631,2619,2598,2622,2585,2632,2613,2645,2630,2629,2642,2666,2632,2634,2647,2639,2661,2621,2625,2617,2690,2634,2634,2652,2640,2614,2602,2652,2629,2637,2624,2646,2672,2650,2350,2351,2315,2323,2326,2332,2382,2278,2300,2318,2407,2312,2287,2332,2349,2285,2354,2358,2318,2298,2310,2578,2465,2460,2524,2404,2466,2507,2548,2450,2472,2509,2473,2615,2501,2492,2482,2454,2512,2520,2479,2524,2505,2525,2542,2534,2571,2566,2556,2504,2544,2543,2499,2517,2508,2597,2531,2559,2534,2487,2555,2537,2512,2527,2767,2682,2706,2698,2712,2724,2682,2674,2693,2688,2662,2680,2666,2699,2669,2655,2672,2687,2700,2724,2670,2711,2657,2637,2687,2473,2512,2450,2516,2457,2463,2501,2419,2469,2494,2461,2501,2530,2495,2464,2480,2506,2439,2459,2470,2432,2487,2513,2439,2467,2465,2462,2456,2414,2460,2341,2341,2362,2299,2362,2322,2366,2332,2348,2315,2386,2362,2338,2354,2345,2347,2298,2365,2338,2349,2348,2336,2340,2354,2367,2322,2343,1977,2007,2029,2004,1998,2024,2008,1975,2010,1993,1948,2011,2005,1995,1980,2017,2012,1989,1974,2728,2604,2681,2698,2678,2662,2743,2699,2627,2608,2628,2664,2679,2685,2685,2648,2599,2590,2709,2778,2720,2610,2648,2661,2682,2585,2640,2612,2621,2656,2634,2618,2715,2713,2678,2626,2695,2743,2728,2782,2756,2740,2781,2717,2700,2738,2736,2774,2748,2767,2753,2748,2778,2744,2772,2768,2725,2712,2755,2731,2741,2705,2740,2797,2296,2364,2311,2280,2261,2317,2362,2305,2282,2295,2287,2311,2294,2300,2255,2281,2243,2371,2329,2262,2302,1899,1893,1930,1875,1898,1925,1928,1932,1902,1931,1920,1909,1872,1906,1879,1891,1935,1910,1914,1908,1894,1906,1899,1902,1891,1886,1884,1848,1903,2605,2606,2633,2635,2613,2662,2625,2561,2617,2568,2637,2639,2632,2608,2576,2514,2540,2549,2532,2535,2551,2567,2507,2566,2562,2557,2537,2493,2535,2515,2491,2506,2528,2494,2582,2500,2566,2486,2556,2555,2543,2520,2500,2474,2487,2518,2507,2484,2511,2482,2509,2497,2495,2541,2484,2505,2504,2503,2469,2542,2556,2504,2494,2536,2500,2478,2475,2482,2427,2448,2450,2473,2444,2465,2516,2430,2434,2440,2438,2469,2449,2436,2457,2450,2467,2468,2470,2487,2470,2422,2436,2444,2446,2435,2396,2447,2456,2442,2500,2521,2486,2479,2475,2512,2521,2471,2516,2423,2486,2495,2529,2482,2477,2487,2497,2459,2469,2523,2471,2470,2488,2496,2495,2465,2467,2465,2491,2469,2500,2494,2456,2418,2409,2455,2445,2384,2405,2404,2411,2417,2444,2424,2425,2406,2440,2425,2439,2408,2186,2205,2174,2153,2135,2168,2138,2244,2175,2135,2122,2109,2219,2138,2143,2141,2203,2185,2090,2169,2094,2181,2109,2213,2171,2208,2188,2504,2526,2528,2613,2667,2596,2582,2602,2614,2539,2599,2644,2526,2594,2515,2614,2628,2588,2572,2615,2611,2592,2516,2543,2617,2578,2611,2597,2595,2658,2662,2699,2714,2701,2744,2719,2694,2716,2775,2641,2710,2762,2709,2769,2679,2733,2768,2756,2694,2687,2755,2733,2715,2689,2702,2705,2399,2379,2409,2403,2431,2396,2374,2438,2439,2397,2407,2415,2458,2384,2329,2378,2395,2390,2381,2349,2340,2383,2386,2451,2412,2415,2567,2595,2613,2604,2556,2563,2533,2591,2610,2679,2604,2587,2559,2588,2599,2573,2585,2577,2583,2584,2604,2624,2559,2625,2580,2604,2590,2605,2628,2604,2578,2597,2575,2565,2589,2624,2598,2589,2596,2596,2604,2618,2579,2588,2614,2619,2400,2324,2378,2368,2379,2400,2319,2413,2370,2354,2403,2326,2377,2370,2375,2363,2332,2410,2397,2367,2338,2371,2359,2070,1980,1994,2018,1964,2018,2077,1993,2056,2029,2042,2024,2015,2032,2030,2001,1960,2033,2036,2002,1983,1966,2065,2023,2028,2029,1971,2018,2012,1953,2413,2390,2400,2450,2406,2340,2444,2398,2402,2486,2423,2394,2421,2419,2379,2417,2453,2398,2395,2610,2618,2576,2583,2564,2591,2551,2607,2611,2606,2640,2616,2630,2555,2553,2576,2602,2550,2534,2538,2572,2563,2548,2546,2593,2523,2582,2582,2537,2581,2510,2543,2584,2536,2529,2573,2586,2558,2565,2552,2520,2535,2546,2578,2570,2522,2532,2517,2539,2554,2517,2544,2529,2550,2535,2536,2535,2546,2554,2559,2539,2545,2538,2531,2538,2563,2572,2572,2515,2558,2533,2529,2524,2554,2549,2532,2605,2581,2547,2555,2557,2595,2573,2581,2603,2545,2607,2568,2576,2555,2545,2538,2459,2410,2446,2436,2371,2381,2405,2440,2451,2396,2410,2390,2404,2405,2406,2421,2397,2392,2420,2427,2464,2440,2427,2403,2448,2424,2427,2357,2401,2435,2448,2404,2221,2152,2113,2110,2044,2200,2192,2165,2153,2111,2147,2115,2126,2176,2138,2154,2112,2147,2145,2150,2101,2136,2104,2151,2016,2168,2106,2521,2578,2559,2591,2590,2518,2565,2557,2609,2539,2586,2582,2655,2512,2590,2585,2586,2522,2540,2510,2580,2534,2550,2598,2544,2532,2469,2522,2580,2507,2530,2524,2551,2544,2526,2530,2561,2550,2517,2567,2497,2553,2571,2516,2585,2554,2556,2487,2517,2504,2507,2552,2550,2540,2576,2548,2580,2532,2555,2610,2571,2545,2551,2566,2581,2584,2540,2539,2530,2540,2523,2570,2530,2565,2531,2533,2546,2566,2621,2594,2630,2604,2621,2598,2608,2629,2580,2559,2585,2613,2626,2616,2606,2606,2614,2581,2610,2634,2603,2613,2647,2607,2434,2436,2444,2424,2430,2436,2415,2394,2411,2461,2414,2386,2446,2388,2444,2407,2428,2443,2442,2396,2415,2473,2437,2448,2531,2452,2443,2455,2486,2467,2461,2513,2473,2492,2496,2527,2462,2436,2419,2537,2445,2464,2475,2449,2483,2488,2439,2458,2485,2455,2502,2454,1913,1974,1940,2018,2003,1980,1997,2017,2021,2028,2032,2016,2035,1981,1964,2000,2030,1989,1971,2018,1975,1979,1974,2020,1983,1970,1971,1951,2018,2708,2725,2742,2807,2740,2722,2713,2714,2754,2682,2839,2788,2754,2790,2751,2737,2737,2772,2731,2766,2671,2706,2781,2732,2751,2433,2412,2463,2424,2389,2487,2380,2441,2438,2440,2402,2495,2422,2430,2484,2443,2428,2422,2466,2038,2002,1977,1976,2059,2071,1943,1998,2024,1967,2017,1981,2026,1974,2057,2012,2058,1993,1990,1996,2040,2033,2029,2046,1969,1967,1902,1842,1881,1823,1881,1846,1829,1843,1864,1875,1849,1848,1823,1877,1838,1913,1887,1876,1924,1856,1861,1890,1837,1884,1871,1863,1892,1848,1886,1818,1842,1854,1760,1805,1824,1807,1831,1815,1839,1854,1838,1854,1819,1844,1846,1825,1860,1817,1776,1857,1784,1831,1818,1829,1773,2007,2014,2045,2034,2048,2035,2005,2054,2042,2020,2027,2055,2024,2035,2066,2034,2018,2044,2039,2023,2050,2042,2011,2040,2064,2051,2037,2029,2004,1996,2029,2013,2045,2015,2034,2042,2019,2026,2052,2031,2028,2017,2818,2705,2839,2798,2703,2915,2745,2813,2810,2749,2784,2732,2832,2811,2879,2761,2813,2824,2772,2765,2850,2749,2811,2791,2729,2733,2752,2705,2709,2687,2724,2651,2681,2717,2734,2665,2745,2665,2704,2678,2702,2656,2693,2659,2725,2728,2728,2730,2723,2670,2691,2744,2704,2454,2504,2534,2516,2530,2505,2513,2479,2476,2509,2499,2496,2507,2489,2513,2533,2527,2518,2532,2578,2537,2509,2487,2557,2557,2507,2161,2210,2181,2228,2189,2235,2213,2148,2182,2175,2198,2179,2256,2187,2151,2211,2181,2212,2231,2238,2185,2215,1968,2012,2003,1963,2024,1985,1956,2007,1991,1992,2021,1998,2020,2016,2017,1962,1994,1996,2009,2036,2017,1997,1989,1942,1892,1937,1965,1909,1949,1938,1934,1932,1924,1933,1942,1911,1903,1903,1968,1904,1954,1907,1948,1917,1927,1923,1931,1963,1913,2603,2605,2709,2562,2720,2606,2573,2596,2601,2622,2664,2656,2607,2574,2620,2554,2655,2531,2586,2603,2687,2659,2647,2642,2638,2627,2579,2650,2640,2619,2627,2650,2648,2607,2651,2660,2595,2588,2689,2626,2644,2607,2650,2641,2685,2638,2656,2661,2594,2577,2608,2604,2421,2434,2385,2375,2418,2402,2394,2418,2462,2441,2427,2357,2429,2372,2470,2338,2362,2351,2368,2453,2423,2449,2402,2411,2442,2418,2412,2421,2395,2378,2411,2348,2155,2214,2143,2197,2171,2188,2169,2178,2149,2128,2181,2188,2166,2146,2172,2176,2167,2632,2659,2636,2618,2653,2617,2618,2639,2632,2660,2622,2646,2612,2636,2612,2658,2645,2660,2648,2615,2616,2608,2648,2648,2621,2337,2344,2319,2362,2335,2395,2361,2427,2330,2381,2326,2347,2359,2395,2313,2365,2387,2342,2375,2402,2361,2354,2328,2210,2203,2207,2204,2234,2213,2229,2211,2210,2231,2210,2192,2230,2247,2193,2216,2193,2215,2177,2225,2227,2186,2224,2211,2222,2214,1894,1914,1913,1891,1928,1905,1930,1927,1909,1864,1917,1881,1897,1878,1912,1914,1921,1930,1923,1935,1910,1926,1895,1922,1862,1867,1873,1947,1895,1889,1867,1860,1875,1910,1876,1892,1868,1899,1872,1882,1903,1887,2047,2120,2066,2142,2014,2074,2111,2102,2098,2058,2104,2035,2051,2097,2075,2119,2074,2091,2049,2110,2103,2107,2037,2113,2052,2093,2093,1968,1949,1981,1989,1940,1942,1936,1953,1945,1965,1956,1947,1959,1955,1967,1943,1952,1945,1924,1913,1955,1970,2629,2643,2657,2641,2638,2602,2629,2631,2689,2600,2678,2590,2593,2626,2610,2637,2619,2726,2646,2560,2614,2638,2685,2595,2663,2630,2529,2519,2515,2542,2512,2549,2546,2529,2508,2548,2525,2566,2518,2510,2527,2540,2497,2574,2569,2558,2516,2579,2540,2622,2511,2650,2548,2678,2645,2610,2656,2593,2603,2616,2624,2605,2608,2684,2613,2580,2609,2604,2612,2564,2646,2580,2648,2658,2641,2610,2621,2350,2407,2369,2387,2422,2403,2423,2381,2326,2434,2412,2330,2429,2378,2417,2347,2410,2416,2517,2424,2388,2334,2426,2379,2367,2069,2106,2144,2093,2083,2124,2109,2110,2099,2160,2102,2126,2069,2076,2061,2110,2148,2139,2081,2115,2134,2055,2464,2487,2406,2481,2473,2561,2512,2493,2490,2480,2492,2517,2458,2436,2486,2465,2453,2467,2416,2486,2293,2286,2276,2289,2285,2286,2280,2266,2299,2280,2268,2320,2303,2275,2266,2234,2258,2283,2261,2282,2275,2238,2233,2238,2255,2254,2244,2001,1998,2049,1992,2004,1978,1985,2017,2014,2001,2060,2025,1986,2017,1945,1970,1951,1993,1970,1943,2014,1983,2000,2030,2030,2020,1973,2024,2041,2025,2277,2305,2323,2335,2301,2328,2320,2270,2294,2331,2319,2334,2270,2307,2299,2303,2303,2356,2323,1936,1942,1979,2001,1981,2027,1981,1948,1991,1980,2013,1931,2023,1988,1944,2036,1939,1813,1895,1846,1871,1856,1856,1865,1851,1849,1846,1820,1834,1821,1824,1829,1869,1846,1851,1845,1862,1840,1807,1806,1852,1845,1867,1835,1859,1853,1862,1825,1862,1840,1806,1869,1878,1829,1877,1877,1804,1822,1892,2688,2654,2694,2735,2822,2696,2707,2683,2737,2658,2676,2689,2689,2675,2637,2685,2740,2741,2782,2823,2624,2661,2628,2708,2567,2559,2535,2569,2564,2544,2577,2585,2588,2545,2545,2546,2498,2512,2568,2558,2600,2551,2558,2537,2543,2566,2568,2496,2547,2566,2526,2558,2649,2644,2665,2681,2634,2691,2641,2690,2685,2658,2652,2649,2649,2671,2595,2648,2418,2366,2447,2434,2389,2395,2404,2386,2417,2396,2385,2395,2391,2407,2438,2405,2397,2365,2397,2348,2402,2385,2442,2401,2401,2406,2409,2376,2402,2400,2425,2413,2376,2398,2459,2438,2484,2343,2411,2455,2492,2352,2383,2533,2506,2452,2488,2419,2443,2365,2448,2410,2438,2430,2383,2466,2441,2464,2448,2571,2570,2586,2581,2527,2560,2533,2527,2539,2554,2557,2558,2543,2598,2552,2573,2578,2572,2515,2622,2579,2588,2598,2589,2550,2542,2521,2539,2572,2426,2360,2405,2277,2415,2408,2385,2421,2387,2316,2388,2429,2346,2421,2378,2315,2328,2380,2316,2663,2728,2753,2747,2734,2830,2743,2775,2781,2740,2661,2791,2779,2812,2790,2772,2803,2768,2754,2756,2729,2833,2744,2678,2679,2687,2681,2678,2649,2637,2679,2682,2695,2675,2635,2709,2673,2669,2671,2674,2678,2696,2703,2686,2663,2653,2676,2674,2473,2421,2447,2442,2411,2441,2495,2427,2439,2414,2455,2474,2460,2446,2425,2456,2409,2447,2440,2442,2473,2434,2442,2460,2452,2408,2472,2455,2406,2472,2481,2391,2419,2377,2369,2373,2359,2366,2406,2358,2385,2360,2387,2354,2363,2360,2401,2352,2419,2355,2372,2368,2374,2387,2360,2367,2381,2504,2549,2535,2526,2519,2541,2502,2520,2517,2541,2493,2549,2510,2509,2516,2502,2536,2494,2528,2551,2547,2518,2521,2526,2593,2534,2569,2525,2538,2561,2529,2564,2577,2527,2547,2589,2570,2551,2544,2556,2585,2573,2325,2373,2370,2306,2306,2308,2371,2288,2310,2308,2338,2389,2330,2285,2388,2355,2312,2274,2368,2403,2298,2344,2312,2229,2421,2376,2244,2540,2588,2589,2571,2540,2567,2531,2594,2542,2585,2571,2573,2557,2533,2642,2547,2600,2578,2574,2575,2563,2570,2585,2558,2532,2417,2332,2449,2412,2429,2410,2405,2389,2437,2392,2398,2445,2430,2380,2405,2395,2384,2420,2446,2388,2450,2364,2381,2110,2075,2043,2063,2085,2090,2087,1986,1974,2020,2017,2053,2004,2032,1988,2034,2036,2020,2053,2059,1993,2044,2016,2002,2020,2031,2030,2073,1996,2545,2544,2549,2546,2550,2555,2473,2539,2551,2524,2583,2634,2597,2496,2592,2490,2560,2591,2557,2558,2593,2558,2578,2309,2290,2320,2315,2305,2322,2341,2330,2339,2321,2284,2351,2345,2314,2326,2287,2324,2328,2323,2264,2260,2275,2287,2260,2254,2271,2250,2257,2307,2259,2253,2271,2281,2279,2250,2267,2263,2283,2251,2277,2248,2276,2257,2286,2269,2242,2288,2247,2274,2248,2018,1985,1952,2014,2035,2006,2055,2012,2023,2004,2048,2020,2026,2009,2041,2003,1995,2037,2025,2019,2024,1998,1987,2013,2027,2355,2360,2386,2397,2433,2359,2416,2353,2404,2400,2341,2427,2386,2373,2406,2406,2383,2391,2353,2410,2387,2225,2150,2173,2203,2200,2177,2200,2226,2194,2189,2175,2210,2164,2227,2227,2185,2177,2186,2176,2238,2635,2649,2635,2647,2646,2678,2638,2638,2661,2658,2662,2659,2645,2646,2681,2662,2635,2676,2638,2631,2669,2652,2684,2656,2421,2445,2389,2447,2423,2439,2386,2445,2470,2507,2412,2426,2413,2382,2481,2435,2433,2465,2417,2403,2452,2466,2389,2372,2346,2355,2391,2385,2396,2357,2375,2381,2358,2320,2387,2381,2387,2411,2317,2370,2391,2380,2355,2353,2383,2400,2375,2387,2404,2387,2294,2279,2252,2269,2231,2264,2252,2260,2298,2283,2258,2286,2268,2235,2263,2262,2271,2238,2256,2267,2246,2271,2295,2254,2239,2266,1953,1930,1935,1921,1908,1932,1921,1969,1958,1912,1938,1955,2025,1953,1907,1936,1899,1889,2624,2601,2579,2665,2525,2580,2555,2540,2625,2578,2570,2574,2638,2579,2613,2655,2613,2609,2566,2688,2601,2651,2569,2639,2559,2570,2602,2617,2592,2596,2598,2628,2610,2633,2626,2660,2596,2644,2592,2562,2620,2610,2620,2607,2624,2583,2640,2627,2584,2595,2622,2601,2605,2586,2608,2416,2242,2341,2339,2376,2423,2350,2356,2406,2412,2336,2332,2371,2349,2334,2293,2362,2309,2364,2341,2347,2773,2759,2790,2799,2813,2836,2793,2780,2777,2817,2774,2763,2817,2820,2778,2796,2828,2774,2804,2786,2788,2523,2505,2493,2502,2509,2521,2547,2525,2514,2536,2541,2550,2553,2501,2491,2513,2518,2561,2549,2469,2523,2534,2537,2508,2518,2540,2555,2508,2490,2687,2570,2635,2582,2625,2528,2694,2728,2563,2608,2707,2652,2597,2644,2651,2655,2585,2578,2515,2653,2577,2636,2636,2585,2633,2663,2620,2600,2737,2694,2731,2700,2741,2715,2702,2746,2705,2720,2773,2741,2708,2729,2719,2712,2721,2761,2729,2754,2701,2763,2739,2691,2746,2478,2488,2452,2431,2455,2492,2444,2426,2459,2451,2446,2429,2489,2453,2429,2604,2627,2620,2569,2595,2629,2622,2586,2594,2624,2650,2577,2605,2613,2572,2602,2583,2624,2590,2596,2612,2633,2589,2330,2355,2282,2305,2296,2272,2270,2178,2309,2295,2356,2230,2340,2319,2226,2305,2254,2287,2238,2301,2341,2287,2246,2340,2301,2382,2312,2382,2337,1910,1901,1890,1931,1904,1869,1937,1896,1901,1916,1912,1901,1917,1893,1906,1889,1870,1889,1897,1905,1890,2988,2941,2970,3016,2970,2801,2869,2949,3030,2914,2947,2975,2927,2946,2920,2963,3035,2941,3062,2943,2976,2914,2947,3076,3039,2867,3080,3030,2580,2569,2617,2571,2607,2579,2638,2576,2638,2582,2636,2577,2556,2576,2563,2543,2542,2570,2551,2605,2568,2566,2557,2603,2581,2614,2585,2529,2596,2588,2582,2578,2602,2672,2707,2601,2601,2612,2667,2666,2706,2648,2625,2615,2598,2738,2584,2689,2673,2730,2608,2696,2584,2610,2533,2566,2518,2603,2588,2590,2609,2557,2567,2557,2574,2539,2579,2577,2541,2564,2581,2559,2558,2554,2581,2611,2587,2611,2607,2595,2427,2429,2431,2444,2422,2417,2433,2431,2433,2433,2427,2421,2396,2430,2433,2433,2453,2406,2447,2429,2406,2382,2168,2144,2158,2094,2169,2137,2094,2119,2126,2105,2098,2163,2087,2129,2141,2066,2149,2108,2113,2178,2114,2148,2129,2100,2137,2142,2543,2509,2573,2529,2546,2541,2496,2534,2513,2558,2540,2538,2506,2513,2534,2520,2530,2516,2522,2511,2499,2527,2524,2496,2527,2547,2559,2527,2561,2560,2534,2598,2578,2560,2569,2549,2557,2542,2574,2540,2606,2559,2560,2558,2329,2352,2302,2407,2366,2282,2333,2303,2365,2319,2380,2361,2308,2376,2326,2298,2379,2390,2323,2294,2399,2334,2589,2600,2548,2628,2549,2508,2566,2583,2562,2538,2598,2592,2587,2573,2569,2617,2629,2622,2588,2581,2559,2508,2495,2590,2636,2654,2636,2581,2631,2619,2618,2660,2633,2651,2622,2677,2671,2646,2606,2626,2654,2631,2648,2643,2637,2647,2638,2612,2625,2624,2614,2455,2330,2373,2347,2425,2367,2396,2421,2400,2454,2324,2423,2347,2393,2408,2346,2374,2433,2407,2304,2359,2431,2359,2429,2387,2348,2382,2866,2859,2869,2848,2929,2933,2876,2791,2845,2805,2853,2933,2852,2822,2903,2878,2850,2865,2881,2884,2937,2643,2598,2655,2589,2674,2611,2607,2583,2621,2646,2638,2636,2646,2583,2642,2701,2599,2659,2678,2574,2602,2642,2605,2358,2414,2403,2434,2437,2436,2375,2388,2379,2357,2389,2375,2440,2401,2407,2403,2415,2428,2390,2419,2402,2388,2416,2416,2405,2456,2061,2079,2054,2100,2047,2076,2088,2100,2095,2041,2026,2084,2095,2084,2034,2051,2054,2054,2096,2101,2081,2072,2106,2079,2062,2023,2304,2258,2262,2277,2230,2267,2246,2314,2312,2276,2239,2244,2243,2328,2317,2269,2265,2274,2301,2267,2285,2266,2365,2269,2339,2290,2281,2251,2246,1905,1960,1881,1942,1954,1911,1924,1949,1945,1960,1947,1957,1968,1911,1955,1936,1968,1943,1879,1822,1944,1965,1863,1900,1927,1877,1896,1946,1861,1886,1848,1870,1846,1829,1865,1836,1851,1844,1848,1864,1845,1862,1870,1865,1871,1861,1841,1814,1857,1853,1888,1882,1890,1902,1846,1870,1915,1890,1933,1887,1934,1892,1905,1920,1886,1902,1910,1895,1924,1875,1949,2581,2588,2545,2512,2539,2634,2614,2509,2637,2568,2558,2572,2605,2604,2530,2471,2589,2509,2532,2595,2606,2560,2565,2510,2563,2559,2607,2525,2645,2514,2573,2540,2632,2171,2080,2114,2107,2155,2102,2090,2122,2120,2136,2099,2145,2151,2098,2162,2121,2125,2097,2027,2199,2122,2682,2686,2721,2730,2666,2689,2657,2742,2727,2682,2689,2721,2657,2728,2636,2741,2690,2712,2710,2690,2688,2702,2753,2675,2708,2718,2697,2677,2473,2386,2398,2400,2376,2409,2370,2473,2382,2379,2409,2382,2411,2389,2334,2433,2387,2447,2409,2356,2458,2444,2410,2395,2413,2378,2387,2408,2412,2434,2383,2385,2436,2423,2431,2492,2493,2413,2473,2366,2392,2536,2467,2420,2482,2488,2429,2488,2546,2440,2532,2495,2466,2434,2454,2454,2485,2475,2487,2452,2541,2579,2532,2630,2568,2567,2635,2606,2560,2588,2650,2580,2558,2589,2588,2509,2566,2546,2613,2612,2582,2621,2598,2586,2590,2339,2323,2340,2350,2376,2390,2363,2362,2302,2284,2295,2357,2396,2302,2326,2307,2320,2300,2336,2382,2389,2325,2356,2347,2354,2373,2389,2610,2561,2615,2639,2625,2607,2604,2648,2596,2613,2588,2608,2593,2617,2601,2604,2609,2649,2487,2483,2477,2462,2488,2496,2484,2497,2419,2486,2484,2471,2506,2460,2472,2481,2496,2499,2478,2469,2497,2517,2096,2199,2162,2111,2130,2105,2190,2165,2215,2086,2127,2191,2137,2180,2149,2184,2125,2163,2149,2106,2115,2140,2129,2213,2150,2183,2140,2155,2130,2107,2761,2769,2834,2791,2801,2728,2699,2747,2825,2732,2822,2826,2765,2819,2774,2803,2808,2731,2799,2780,2780,2810,2791,2693,2722,2755,2842,2737,2733,2732,2759,2750,2771,2496,2484,2499,2524,2490,2521,2566,2436,2596,2511,2483,2552,2528,2527,2487,2511,2567,2520,2523,2465,2460,2494,2529,2488,2723,2754,2726,2690,2699,2733,2778,2774,2714,2753,2681,2695,2722,2747,2697,2743,2770,2734,2779,2351,2403,2339,2433,2395,2399,2411,2369,2338,2367,2373,2353,2339,2362,2339,2468,2400,2355,2343,2318,1921,1918,1937,1911,1913,1927,1923,1930,1949,1884,1921,1897,1918,1939,1963,1892,1885,1908,1929,1948,1852,1901,1914,1903,2637,2537,2617,2675,2665,2658,2689,2672,2650,2775,2642,2647,2633,2616,2689,2709,2702,2698,2669,2583,2644,2611,2652,2619,2603,2645,2596,2685,2618,2683,2691,2666,2697,2730,2075,2132,2114,2092,2053,2107,2038,2003,2075,2019,2053,2102,2104,2108,2061,2035,2087,2068,2007,2047,2041,2063,2037,2111,2060,2778,2896,2794,2805,2799,2833,2892,2873,2855,2785,2825,2799,2713,2825,2775,2841,2862,2752,2858,2795,2762,2817,2841,2792,2876,2494,2558,2509,2477,2520,2458,2464,2449,2487,2529,2503,2504,2537,2472,2455,2492,2483,2463,2521,2485,2539,2508,2476,2190,2232,2258,2213,2289,2227,2206,2244,2272,2266,2225,2234,2197,2242,2267,2231,2195,2223,2205,2229,2238,2216,2247,2216,2243,2258,2232,2187,2256,2221,2247,2218,2261,2226,2240,2205,2220,2227,2192,2199,2195,2225,2217,2223,2239,2215,2192,2207,2223,2240,2203,2206,2271,2246,2204,2261,2009,2009,1977,2025,2066,2023,2010,2022,2026,2058,1971,1983,1955,1944,2037,2006,2026,2024,2002,2051,2030,2005,2022,1952,1945,1944,1963,2003,2006,1967,1964,2023,1998,1960,1950,1962,1988,1984,2006,1956,1956,2358,2358,2378,2375,2416,2450,2384,2412,2379,2440,2420,2354,2356,2422,2353,2374,2337,2367,2314,2375,2364,2389,2356,2561,2586,2603,2570,2582,2569,2537,2514,2604,2600,2590,2537,2557,2610,2583,2524,2598,2587,2611,2575,2584,2596,2483,2562,2563,2632,2708,2674,2642,2613,2637,2589,2635,2635,2640,2677,2677,2652,2659,2664,2699,2695,2589,2653,2633,2400,2396,2381,2371,2398,2383,2470,2386,2415,2412,2378,2395,2406,2477,2422,2416,2421,2414,2483,2386,2410,2376,2408,2464,1999,2011,1991,2063,2076,2053,2047,1988,2126,2021,2049,2031,2075,2052,1976,2020,2018,2074,2096,2021,2028,2124,2059,2031,2083,2038,2054,2038,1998,2255,2298,2283,2315,2255,2307,2299,2259,2263,2310,2280,2262,2247,2321,2364,2317,2283,2337,2299,2054,1948,1974,2019,1993,1973,1973,2025,2007,1930,2013,2032,2045,1963,2011,2004,1989,1938,1943,1969,1973,2034,1897,1901,1904,1898,1913,1888,1900,1916,1889,1881,1871,1902,1860,1926,1882,1911,1945,1937,1875,1872,1909,1927,1894,1924,1897,1931,1895,1879,1992,1989,1979,1974,2018,1976,2009,1976,1999,1977,1957,1974,1979,1987,2000,1964,1972,1974,1986,1995,1994,1984,1985,1961,1988,1969,2010,1977,1965,1950,1942,1976,1925,1904,1966,1923,1961,1946,1947,1957,1947,1950,1952,1943,1937,1982,1960,1997,1952,1926,1968,1945,1932,1936,1966,1956,1950,1939,1947,1968,1962,1948,1954,1948,1950,1981,1968,1963,1972,1958,1973,1972,2029,2024,2014,1978,2030,2020,2043,2020,2027,1987,1993,2020,2020,2050,2072,2056,2003,2041,2061,2003,2062,1986,2024,1999,2021,2063,2060,2021,1981,1996,1978,1999,1945,1988,1979,1995,1992,1996,1983,2007,1963,1966,1982,1960,1970,2000,2008,1977,1984,1963,1968,1974,1977,2535,2582,2478,2561,2496,2457,2477,2450,2548,2507,2473,2476,2456,2482,2536,2501,2461,2546,2519,2495,2548,2508,2517,2449,2146,2118,2081,2168,2135,2131,2070,2117,2064,2153,2136,2091,2128,2106,2068,2078,2068,2127,2084,2128,2151,2134,2087,2076,2108,2124,2090,2193,2126,2084,2049,2032,2065,2054,2107,2062,2035,2022,2099,2054,2060,2079,2124,2056,2096,2090,2097,2036,2102,2078,2090,2066,2077,2049,2086,2071,2107,2108,2073,2121,2062,2085,2074,2057,2055,2099,2038,2099,2047,2062,2122,2047,2053,2035,2110,2053,2098,2085,2089,2041,2070,2074,2015,2103,2053,2132,2049,2042,2104,2095,3050,3015,2946,3061,3004,3050,2953,2989,3047,2934,2981,3109,2992,2961,3018,2901,3052,3049,3012,2945,2841,2837,3085,3010,2598,2645,2695,2687,2680,2661,2681,2682,2651,2749,2682,2643,2666,2639,2727,2639,2649,2681,2648,2661,2675,2654,2744,2689,2646,2687,2661,2690,2674,2613,2686,2706,2667,2709,2707,2653,2720,2650,2703,2685,2676,2658,2664,2643,2694,2680,2720,2694,2686,2671,2517,2460,2453,2492,2494,2467,2457,2425,2460,2478,2481,2454,2453,2505,2498,2519,2520,2437,2262,2379,2380,2272,2334,2326,2288,2348,2282,2302,2298,2278,2313,2333,2272,2350,2317,2309,2342,2310,2333,2300,2381,2276,2292,2335,2329,2669,2595,2636,2680,2708,2647,2621,2648,2757,2665,2600,2603,2619,2679,2593,2664,2374,2367,2369,2438,2340,2332,2326,2345,2358,2343,2332,2358,2309,2351,2341,2399,2365,2356,1876,1856,1822,1869,1927,1909,1874,1881,1888,1842,1884,1892,1845,1925,1859,1877,1829,1817,1861,1882,1893,1851,1917,1864,1868,1878,1928,1866,1922,1881,1931,1880,1861,1889,1903,1873,1895,1896,1944,1898,1870,1911,1946,1894,1850,1901,1916,1866,1953,1861,1913,1879,1903,2498,2521,2457,2473,2540,2466,2502,2481,2527,2528,2470,2527,2527,2506,2479,2484,2516,2534,2461,2472,2460,2540,2393,2520,2503,2394,2279,2286,2255,2250,2224,2227,2298,2271,2216,2240,2266,2344,2248,2268,2334,2314,2231,2295,2269,2245,2267,2301,2249,2266,2284,2278,2257,2250,1872,1890,1885,1872,1919,1930,1901,1897,1910,1914,1902,1924,1867,1889,1893,1876,1915,1899,1860,1897,1886,1920,1921,1900,2346,2356,2480,2559,2448,2512,2409,2495,2456,2461,2433,2440,2505,2422,2544,2502,2450,2448,2603,2473,2432,2503,2414,2468,2580,2567,2561,2554,2492,2551,2538,2536,2532,2529,2554,2540,2515,2576,2507,2565,2532,2540,2563,2536,2426,2412,2443,2455,2446,2446,2458,2419,2448,2439,2452,2457,2491,2444,2404,2464,2452,2452,2440,2431,2181,2177,2099,2154,2188,2210,2169,2165,2169,2144,2162,2114,2173,2123,2209,2154,2183,2160,2177,2162,2189,2117,2128,2598,2611,2627,2637,2525,2556,2578,2588,2585,2571,2579,2562,2610,2544,2561,2566,2568,2652,2595,2558,2630,2639,2455,2409,2416,2425,2415,2447,2432,2419,2376,2469,2398,2404,2440,2403,2426,2424,2410,2428,2385,2415,2420,2434,2440,2371,2421,2382,2406,2474,2391,2449,2419,1938,1933,1950,1940,1924,1926,1944,1914,1958,1938,1971,1922,1924,1884,1930,1974,1900,1930,1988,1913,1954,1934,1892,1961,1966,1930,1864,1951,1960,1906,2643,2599,2697,2601,2637,2680,2642,2504,2612,2678,2668,2644,2652,2700,2565,2638,2635,2627,2574,2620,2573,2610,2671,2527,2594,2712,2644,2704,2679,2700,2715,2704,2743,2721,2664,2692,2711,2720,2661,2653,2746,2668,2701,2682,2721,2713,2715,2649,2676,2696,2678,2731,2795,2678,2451,2488,2414,2437,2496,2422,2471,2435,2482,2478,2478,2433,2494,2461,2437,2444,2474,2437,2419,2506,2474,2796,2781,2814,2761,2754,2777,2802,2772,2773,2775,2758,2827,2764,2710,2765,2758,2778,2752,2823,2750,2784,2778,2516,2546,2522,2508,2504,2541,2510,2500,2510,2534,2564,2481,2476,2528,2542,2537,2523,2517,2533,2540,2541,2489,2482,2512,2556,2522,2277,2282,2273,2268,2349,2293,2319,2314,2288,2305,2315,2274,2289,2328,2238,2306,2290,2271,2300,2283,2302,2259,2214,2227,2270,2251,2189,2229,2236,2249,2258,2245,2249,2266,2263,2266,2263,2236,2267,2192,2221,2290,2222,2265,2235,2339,2239,2223,2203,2236,2174,2196,2232,2287,2200,2243,2189,2209,2237,2250,2229,2223,2214,2246,2225,2240,2229,2222,2223,2206,1986,2007,1957,2065,2083,2046,2025,1992,1988,2076,2029,2013,2029,2038,2010,2031,2062,1960,1909,1947,1972,1972,1945,1979,1954,1929,1903,1956,1945,1929,1928,1943,1943,1951,1902,1960,1954,1932,1965,1946,1959,2677,2581,2686,2691,2671,2677,2660,2650,2544,2651,2683,2760,2651,2739,2554,2635,2578,2685,2624,2710,2690,2719,2617,2727,2679,2701,2721,2664,2703,2730,2730,2681,2809,2633,2704,2656,2714,2708,2728,2720,2743,2677,2717,2670,2701,2683,2666,2703,2745,2690,2722,2726,2741,2673,2485,2470,2456,2519,2548,2516,2475,2481,2553,2445,2508,2485,2565,2537,2513,2456,2572,2478,2481,2541,2491,2569,2561,2518,2540,2397,2408,2380,2389,2398,2387,2390,2342,2335,2316,2335,2388,2394,2402,2394,2410,2376,2441,2377,2426,2372,2387,2373,2354,2337,2426,2406,2379,2468,2369,2365,2521,2537,2551,2507,2553,2559,2563,2519,2519,2535,2577,2520,2562,2568,2549,2539,2541,2542,2580,2558,2599,2573,2545,2668,2647,2604,2672,2675,2674,2641,2670,2603,2633,2607,2671,2645,2662,2685,2688,2610,2642,2667,2637,2647,2638,2652,2671,2678,2668,2623,2449,2375,2381,2333,2375,2373,2404,2392,2356,2360,2314,2395,2345,2367,2405,2410,2393,2345,2384,2370,2334,2420,2326,2395,2391,2371,1948,1996,1942,1944,1946,1947,1960,1905,1897,1918,1950,1926,1927,1960,1909,1969,1930,1916,1934,1946,1926,1971,1949,1934,1940,1945,1975,1954,2819,2720,2745,2788,2770,2764,2677,2743,2763,2726,2775,2723,2754,2719,2749,2649,2726,2773,2662,2762,2667,2759,2764,2793,2729,2816,2761,2647,2405,2396,2445,2401,2430,2394,2400,2461,2468,2462,2397,2436,2403,2418,2489,2496,2392,2390,2439,2429,2420,2422,2435,2481,2436,2443,2401,2437,2407,2464,1941,1888,1948,1974,1934,1936,1902,2009,1952,1919,1911,1945,1957,1940,1927,1992,1845,1914,1992,1987,1926,1925,1902,1899,1966,1929,1937,2626,2733,2692,2670,2617,2707,2675,2721,2665,2621,2683,2631,2583,2701,2649,2658,2601,2647,2611,2698,2634,2648,2656,2684,2651,2667,2633,2657,2679,2686,2629,2646,2713,2634,2657,2637,2635,2640,2620,2594,2657,2657,2647,2589,2652,2619,2624,2612,2666,2470,2526,2513,2547,2495,2474,2441,2511,2464,2517,2507,2481,2496,2492,2510,2477,2507,2495,2490,2503,2459,2320,2319,2393,2371,2372,2372,2357,2322,2317,2374,2357,2275,2336,2365,2325,2319,2327,2301,2289,2367,2333,2312,2405,2307,2376,2364,2365,2329,2302,2547,2545,2556,2528,2578,2495,2533,2576,2539,2562,2582,2584,2578,2564,2531,2569,2535,2549,2556,2568,2552,2559,2552,2564,2544,2591,2570,2346,2361,2356,2381,2354,2367,2392,2315,2356,2369,2373,2387,2371,2363,2380,2349,2356,2392,2348,2377,2415,2415,2325,1911,2029,2014,1996,2006,2025,2060,2027,2008,2011,1988,1990,2049,2079,2025,1989,2029,1986,2077,1964,2049,1951,2021,2021,2050,1991,1985,2427,2493,2456,2374,2400,2393,2401,2452,2439,2411,2364,2402,2382,2350,2480,2374,2437,2397,2402,2437,2365,2408,2433,2442,2404,2680,2648,2666,2658,2671,2662,2657,2621,2641,2658,2621,2693,2596,2639,2678,2631,2624,2673,2648,2596,2627,2685,2647,2656,2641,2647,2669,2689,2666,2675,2646,2609,2385,2348,2398,2408,2396,2385,2403,2433,2395,2409,2381,2361,2347,2465,2395,2397,2411,2305,2276,2388,2585,2501,2458,2599,2600,2584,2599,2611,2550,2597,2570,2585,2575,2566,2612,2670,2555,2600,2602,2598,2635,2574,2596,2558,2588,2562,2551,2579,2551,2598,2569,2553,2543,2571,2563,2546,2587,2574,2585,2575,2545,2563,2570,2542,2563,2582,2302,2438,2310,2372,2379,2352,2373,2311,2346,2341,2333,2347,2291,2283,2385,2336,2286,2353,2335,2332,2271,2465,2558,2542,2565,2536,2516,2544,2559,2539,2606,2617,2522,2580,2551,2521,2571,2568,2547,2560,2509,2547,2684,2513,2567,2587,2466,2487,2571,2561,2617,2588,2582,2616,2602,2633,2619,2599,2611,2624,2620,2631,2613,2600,2595,2604,2578,2593,2624,2617,2592,2607,2608,2630,2351,2352,2328,2373,2345,2327,2364,2351,2369,2351,2394,2339,2350,2328,2328,2337,2407,2345,2365,2280,2321,2366,1942,1934,1960,1944,1940,1929,1902,1973,1902,1944,1997,1932,1963,1910,1956,1959,1938,1926,1920,1909,2742,2809,2724,2684,2753,2771,2712,2738,2740,2745,2796,2702,2679,2732,2702,2750,2688,2749,2720,2801,2813,2762,2698,2777,2622,2505,2507,2554,2528,2501,2513,2565,2556,2569,2557,2599,2517,2494,2528,2524,2500,2552,2492,2524,2532,2541,2527,2555,2578,2566,2600,2521,2567,2552,2574,2523,2531,2541,2525,2518,2544,2473,2270,2241,2234,2279,2278,2220,2219,2243,2294,2290,2220,2256,2284,2249,2271,2229,2273,2278,2264,2238,2247,2220,2275,2297,2278,2259,2288,2260,2277,2260,2270,2299,2304,2283,2277,2277,2267,2261,2257,2275,2295,2276,2266,2287,2295,2292,2245,1938,1862,1938,1939,1887,1943,1910,1911,1926,1941,1900,1886,1922,1949,1903,1918,1947,1895,1939,1885,1910,1939,1934,1944,1919,1941,2510,2501,2573,2615,2531,2518,2556,2601,2563,2531,2563,2534,2519,2613,2561,2576,2571,2555,2558,2529,2580,2593,2566,2539,2489,2607,2619,2600,2637,2621,2584,2630,2561,2648,2621,2671,2588,2644,2620,2600,2615,2557,2583,2590,2598,2626,2644,2619,2459,2487,2460,2405,2445,2508,2433,2448,2418,2467,2446,2400,2481,2468,2441,2460,2441,2428,2475,2444,2475,2465,2415,2435,2409,2465,2482,2460,2202,2226,2174,2212,2224,2214,2159,2187,2236,2160,2167,2162,2148,2195,2174,2192,2239,2198,2219,2140,2213,2169,2269,2192,2173,2177,2137,2576,2589,2578,2601,2659,2575,2602,2609,2597,2653,2572,2549,2591,2612,2653,2560,2600,2601,2573,2570,2602,2591,2521,2570,2620,2563,2635,2625,2626,2672,2670,2655,2630,2629,2668,2648,2653,2644,2698,2645,2636,2675,2666,2680,2616,2681,2643,2677,2680,2669,2619,2645,2668,2663,2329,2346,2335,2303,2367,2314,2314,2301,2372,2323,2286,2366,2270,2288,2350,2349,2663,2652,2675,2656,2682,2623,2681,2629,2631,2696,2637,2639,2668,2622,2647,2673,2663,2613,2661,2656,2671,2627,2666,2680,2612,2465,2460,2455,2510,2442,2446,2466,2465,2467,2468,2565,2466,2471,2453,2477,2438,2478,2494,2497,2481,2461,2479,2483,2449,2501,2495,2079,1987,1996,1984,1961,2008,1999,1990,2037,2017,1976,2053,1982,1943,2042,1982,1971,2040,2042,1992,2002,1981,2050,2027,2101,2053,2031,1946,1998,1949,2012,1941,1940,1967,1925,1939,1958,1945,1950,1985,1920,1904,1951,1939,1948,1952,1971,1975,1917,1921,1926,1914,1965,1950,1918,1971,1939,2615,2576,2585,2640,2615,2606,2558,2631,2583,2533,2608,2623,2607,2642,2655,2645,2570,2608,2685,2608,2596,2638,2660,2590,2582,2531,2516,2497,2528,2523,2540,2547,2513,2531,2578,2520,2514,2512,2575,2525,2539,2501,2512,2543,2539,2562,2511,2478,2536,2571,2554,2545,2590,2557,2519,2526,2615,2610,2643,2667,2665,2603,2587,2615,2638,2621,2628,2596,2610,2601,2631,2621,2672,2602,2630,2633,2636,2623,2453,2481,2464,2430,2516,2473,2475,2462,2478,2464,2428,2494,2498,2492,2489,2431,2477,2450,2453,2476,2461,2477,1881,1990,1909,1924,1902,1916,1956,1969,1959,1989,1926,1949,1882,1953,1960,1972,1893,1891,1889,1914,1974,2019,1950,1898,1858,1965,1924,1900,1923,1932,1913,1950,1911,1883,1901,1887,1963,1930,1899,1915,1913,1864,1947,1956,1922,1904,1921,1898,2498,2407,2503,2407,2441,2451,2368,2493,2407,2455,2415,2445,2425,2478,2425,2468,2423,2436,2404,2393,2497,2406,2452,2456,2767,2753,2795,2795,2770,2714,2788,2761,2788,2794,2824,2796,2774,2785,2745,2766,2737,2777,2743,2466,2442,2487,2471,2466,2478,2516,2517,2430,2444,2482,2499,2426,2475,2497,2486,2505,2505,2518,2463,2473,2515,2505,2490,2453,2442,2462,2563,2655,2671,2724,2505,2586,2594,2535,2660,2574,2607,2525,2537,2582,2617,2549,2598,2665,2671,2660,2703,2495,2525,2515,2605,2432,2497,2473,2479,2515,2534,2477,2454,2495,2429,2426,2481,2479,2471,2472,2527,2498,2466,2461,2477,2596,2544,2563,2546,2515,2543,2623,2590,2552,2567,2521,2556,2593,2573,2567,2581,2571,2595,2572,2551,2554,2561,2534,2538,2551,2376,2369,2325,2363,2324,2363,2376,2381,2376,2372,2401,2368,2380,2423,2386,2394,2351,2375,2380,2341,1985,1966,2007,2049,2004,2000,2042,1988,1945,2009,2020,2017,2036,2008,1966,1987,2028,1931,1994,1994,1997,2046,2030,2017,2033,1974,1972,2003,1997,2371,2402,2310,2390,2379,2422,2341,2356,2443,2358,2390,2369,2356,2443,2394,2381,2411,2391,2398,2421,2418,2402,2399,2335,2413,2362,2708,2689,2677,2658,2703,2695,2646,2636,2655,2670,2681,2701,2697,2625,2690,2629,2660,2648,2660,2430,2435,2450,2475,2431,2447,2482,2462,2455,2439,2411,2448,2412,2421,2429,2452,2411,2454,2413,2468,2515,2449,2441,2440,2506,2428,2445,2435,1922,1953,1939,1864,1853,1856,1936,1939,1930,1917,1866,1919,1890,1909,1922,1912,1928,1909,1889,1900,1924,2012,1876,1908,1946,1835,1759,1819,1838,1836,1842,1839,1789,1818,1849,1841,1770,1822,1783,1820,1828,1817,1821,1826,1822,1806,1825,1796,1781,1779,1833,1803,2623,2569,2680,2643,2599,2675,2660,2662,2762,2692,2711,2687,2600,2632,2733,2572,2536,2585,2641,2651,2643,2638,2678,2726,2642,2609,2632,2647,2695,2669,2630,2583,2685,2658,2639,2619,2628,2694,2629,2635,2639,2681,2688,2657,2610,2692,2701,2674,2620,2674,2621,2691,2616,2638,2612,2386,2365,2356,2363,2335,2369,2396,2344,2338,2365,2314,2315,2321,2390,2293,2385,2336,2373,2351,2303,2404,2376,2323,2368,2542,2594,2561,2469,2567,2419,2526,2515,2588,2464,2597,2546,2449,2492,2528,2485,2615,2591,2551,2521,2518,2503,2458,2467,2518,2434,2500,2461,2475,2474,2524,2495,2496,2470,2435,2489,2439,2485,2490,2482,2444,2471,2485,2532,2494,2461,2325,2309,2324,2353,2306,2341,2315,2327,2299,2330,2328,2273,2281,2336,2319,2365,2296,2326,2316,2292,2386,2364,2323,2308,2325,2341,2349,2372,2358,2314,1918,1888,1888,1898,1874,1892,1855,1930,1894,1938,1905,1861,1927,1947,1900,1888,1887,1927,1931,1928,1902,1905,1933,1894,1912,1919,1917,1898,1889,1922,1930,1942,2626,2557,2609,2664,2632,2680,2606,2530,2607,2642,2606,2685,2629,2601,2625,2673,2604,2616,2585,2676,2635,2650,2655,2645,2672,2679,2607,2619,2586,2665,2638,2684,2634,2638,2646,2639,2604,2577,2676,2695,2660,2633,2607,2643,2652,2670,2625,2655,2646,2644,2469,2458,2498,2451,2452,2496,2493,2429,2540,2459,2488,2524,2477,2525,2402,2420,2484,2469,2472,2460,2511,2469,2474,2468,2492,2493,2487,2481,2450,2488,2208,2209,2221,2206,2245,2218,2222,2200,2263,2224,2257,2191,2211,2197,2211,2269,2238,2221,2188,2226,2238,1918,1907,1953,1894,1941,1914,1926,1951,1921,1898,1932,1924,1959,1946,1972,1901,1911,1957,1903,1932,1910,1925,1941,1970,1927,1916,1889,1932,1921,2675,2775,2654,2808,2585,2664,2715,2684,2679,2674,2538,2627,2695,2698,2630,2476,2479,2462,2456,2409,2508,2436,2497,2502,2493,2469,2502,2449,2470,2470,2491,2418,2471,2535,2505,2441,2554,2501,2543,2026,2100,2043,2070,2058,2053,2119,1980,2032,2038,2091,2029,2031,2042,2028,2098,2033,2100,2072,2092,2057,2057,2105,2071,2039,2459,2515,2489,2463,2506,2462,2500,2510,2441,2467,2488,2432,2487,2463,2478,2455,2453,2473,2494,2458,2479,2467,2429,2533,2492,2454,2471,2506,2454,2501,2495,2566,2498,2531,2512,2530,2516,2509,2534,2506,2499,2545,2525,2518,2502,2511,2494,2498,2506,2503,2523,2492,2548,2509,2506,2472,2513,2526,2507,2488,2503,2538,2469,2538,2498,2458,2512,2463,2494,2472,2511,2514,2482,2480,2512,2440,2499,2629,2643,2610,2620,2647,2653,2642,2660,2626,2622,2646,2624,2673,2581,2630,2649,2618,2673,2639,2609,2625,2669,2605,2647,2356,2372,2433,2384,2376,2339,2429,2367,2411,2351,2427,2412,2420,2370,2425,2371,2316,2369,2402,2408,2403,2392,2371,2327,2364,2356,2406,2326,2321,2633,2648,2596,2653,2656,2624,2612,2645,2637,2626,2599,2641,2630,2667,2631,2660,2649,2635,2614,2624,2608,2618,2670,2458,2380,2374,2404,2404,2403,2374,2432,2398,2361,2427,2400,2386,2395,2422,2411,2385,2400,2345,2415,2379,2710,2681,2656,2678,2695,2639,2659,2654,2667,2692,2653,2593,2642,2662,2647,2684,2640,2645,2617,2700,2675,2648,2683,2688,2657,2391,2387,2385,2417,2378,2444,2393,2402,2386,2385,2387,2400,2381,2429,2408,2472,2425,2447,2369,2405,2372,2368,2431,2378,2417,2367,2419,2380,2426,2311,2413,2349,2391,2672,2741,2569,2578,2584,2698,2520,2774,2520,2617,2676,2600,2613,2563,2574,2585,2686,2649,2636,2538,2552,2643,2549,2570,2548,2580,2537,2526,2513,2530,2589,2597,2591,2575,2546,2563,2549,2547,2565,2570,2538,2550,2580,2566,2528,2532,2602,2616,2606,2603,2606,2606,2589,2616,2637,2602,2611,2583,2597,2600,2585,2615,2607,2612,2618,2595,2598,2394,2365,2357,2392,2399,2388,2384,2393,2443,2445,2419,2446,2399,2372,2412,2392,2369,2364,2402,2405,2396,2318,2412,2368,2391,2418,2414,2339,2338,2293,2300,2309,2315,2322,2312,2370,2337,2311,2344,2266,2367,2351,2275,2340,2310,2361,2256,2311,2407,2318,2491,2537,2458,2517,2495,2538,2513,2522,2473,2513,2553,2487,2495,2503,2558,2465,2520,2549,2501,2491,2538,2530,2473,2501,2510,2495,2513,2563,2538,2542,2530,2563,2529,2514,2538,2572,2532,2536,2533,2545,2557,2529,2540,2489,2556,2546,2521,2529,2555,2530,2542,2538,2532,2538,2523,2500,2553,2567,2532,2551,2522,2538,2562,2561,2541,2538,2562,2520,2555,2580,2548,2554,2571,2537,2515,2556,2532,2486,2541,2544,2553,2603,2577,2569,2589,2569,2496,2531,2539,2569,2568,2538,2600,2567,2571,2566,2536,2551,2551,2575,2563,2561,2562,2569,2583,2579,2585,2361,2354,2353,2357,2353,2340,2342,2364,2373,2356,2339,2343,2365,2305,2321,2326,2347,2287,2340,2329,2369,2340,2341,2317,2343,2322,2313,2331,2356,2356,2403,2302,2353,2361,2348,1975,1999,2003,1992,2011,1978,2027,1962,1958,2011,1986,1998,1954,2030,1950,1930,1981,2033,2010,1978,2029,1993,2379,2391,2371,2359,2335,2343,2335,2393,2342,2439,2315,2329,2325,2332,2343,2404,2344,2318,2372,2355,2324,2367,2350,2370,2274,2646,2618,2669,2692,2676,2647,2659,2683,2646,2678,2621,2668,2658,2658,2647,2713,2635,2726,2514,2488,2468,2534,2550,2530,2492,2520,2536,2487,2522,2508,2488,2486,2533,2521,2487,2557,2549,2543,2540,2510,2522,2558,2500,2540,2493,2521,2496,2548,2237,2169,2181,2208,2213,2175,2160,2213,2226,2197,2245,2196,2220,2198,2279,2224,2251,2192,2220,1904,1864,1861,1908,1930,1938,1901,1895,1856,1889,1858,1916,1923,1887,1923,1941,1843,1907,1926,1853,1909,1938,1904,1945,1837,1839,1802,1774,1785,1827,1851,1770,1783,1805,1791,1788,1831,1814,1815,1772,1826,1818,1774,1827,1830,1885,1937,1882,1863,1929,1889,1898,1897,1870,1897,1887,1891,1863,1896,1890,1841,1902,1903,1933,1863,1880,1822,1894,1856,1893,1922,1916,2506,2455,2530,2411,2437,2471,2448,2436,2515,2508,2452,2517,2519,2456,2436,2432,2506,2541,2501,2497,2499,2477,2446,2507,2153,2122,2122,2129,2142,2115,2176,2158,2124,2105,2147,2113,2163,2208,2122,2085,2119,2038,2108,2134,2124,2154,2110,2173,2116,2132,2186,1957,1938,1931,1955,1937,1975,1992,1986,2039,1946,1932,1975,1953,1968,1962,1932,1999,1961,1963,1958,1923,1920,1981,1970,1841,1807,1857,1822,1817,1812,1822,1806,1852,1806,1796,1823,1853,1768,1816,1861,1787,1825,1815,1807,1838,1816,1812,1750,1775,1773,1764,1753,1774,1783,1739,1749,1772,1767,1799,1757,1752,1737,1788,1778,1780,1755,1753,1877,1869,1912,1925,1876,1923,1943,1906,1911,1900,1929,1913,1907,1884,1922,1917,1902,1881,1871,1870,1899,1901,1906,1873,1929,1971,2018,1980,1972,2003,1969,1993,2008,1980,2014,2045,1986,2026,2024,1976,1927,2939,2887,2956,2890,2987,2963,2974,2981,2928,3035,2946,2818,2941,2833,2846,2977,3045,2857,2882,2809,2916,2806,2887,2805,2940,2991,2950,2877,2718,2732,2707,2745,2734,2747,2709,2690,2727,2715,2697,2716,2682,2712,2728,2645,2741,2770,2728,2723,2730,2654,2698,2704,2750,2741,2720,2732,2743,2693,2374,2433,2416,2393,2390,2425,2424,2425,2390,2362,2461,2391,2426,2394,2409,2390,2364,2372,2372,2404,2403,2414,2428,2427,2402,2332,2318,2450,2487,2464,2491,2512,2609,2525,2586,2510,2495,2400,2531,2607,2341,2456,2458,2428,2515,2440,2533,2557,2484,2499,2477,2553,2486,2539,2395,2415,2500,2452,2455,2471,2463,2462,2483,2461,2462,2469,2437,2447,2438,2415,2468,2430,2466,2451,2489,2501,2438,2408,2506,2436,2481,2456,2510,2475,2467,2464,2416,2490,2476,2523,2507,2477,2481,2514,2466,2502,2505,2495,2482,2496,2498,2474,2495,2523,2498,2502,2457,2454,2545,2468,2493,2478,2515,2523,2499,2538,2559,2516,2508,2549,2531,2568,2543,2519,2531,2541,2522,2531,2521,2518,2507,2544,2523,2517,2551,2551,2536,2536,2532,2525,2521,2576,2558,2574,2547,2578,2554,2563,2534,2540,2571,2583,2542,2558,2554,2544,2596,2593,2556,2554,2579,2538,2335,2327,2272,2303,2314,2372,2363,2322,2387,2339,2300,2282,2396,2379,2303,2279,2342,2283,2278,2361,2315,2282,2352,2373,2292,2877,2813,2832,2798,2774,2825,2825,2776,2771,2780,2792,2751,2788,2734,2802,2816,2797,2763,2817,2810,2798,2821,2776,2809,2763,2821,2817,2805,2833,2791,2786,2402,2515,2500,2443,2433,2521,2474,2392,2499,2497,2524,2564,2501,2425,2492,2476,2518,2505,2503,2502,2556,2550,2557,2497,2469,2482,2520,2590,2666,2627,2624,2514,2718,2667,2723,2679,2640,2586,2629,2623,2650,2659,2625,2643,2592,2672,2602,2651,2731,2694,2546,2555,2560,2590,2558,2540,2525,2574,2515,2521,2563,2490,2509,2530,2569,2551,2559,2565,2556,2526,2522,2602,2565,2573,2562,2553,2464,2489,2499,2476,2479,2491,2456,2471,2497,2460,2471,2480,2501,2464,2498,2522,2494,2524,2491,2475,2475,2512,2512,2509,2504,2486,2528,2487,2497,2490,2496,2488,2456,2458,2500,2523,2517,2486,2514,2565,2513,2532,2549,2526,2561,2544,2555,2522,2533,2531,2576,2578,2558,2530,2552,2534,2548,2544,2520,2512,2588,2557,2558,2573,2540,2546,2565,2563,2535,2568,2378,2404,2385,2332,2388,2368,2484,2412,2365,2437,2389,2400,2407,2417,2448,2425,2344,2403,2397,2394,2433,2388,1786,1873,1877,1782,1873,1907,1844,1913,1866,1966,1895,1921,1839,1828,1915,1919,1901,1890,1869,1934,1865,1937,1853,1859,1851,1869,1848,1941,1862,1920,1876,1874,1941,1871,1925,1906,1927,1852,1933,1934,1898,1915,1894,1906,1931,1915,1903,1862,1913,1922,2536,2511,2586,2575,2490,2496,2565,2618,2443,2515,2569,2565,2504,2568,2596,2549,2603,2532,2524,2627,2568,2555,2525,2504,2601,2663,2709,2721,2653,2717,2677,2701,2679,2665,2694,2671,2735,2679,2709,2710,2663,2664,2713,2658,2695,2392,2398,2420,2384,2411,2416,2415,2444,2372,2368,2422,2368,2368,2474,2424,2381,2425,2374,2456,2611,2613,2654,2626,2701,2702,2577,2595,2670,2611,2579,2535,2698,2619,2635,2579,2585,2660,2601,2580,2587,2754,2646,2549,2571,2606,2555,2530,2567,2536,2524,2568,2532,2523,2581,2583,2515,2562,2582,2584,2539,2604,2547,2576,2582,2553,2545,2401,2415,2388,2374,2367,2387,2448,2371,2408,2353,2395,2434,2374,2377,2420,2351,2369,2384,2398,2437,2411,2357,2387,2427,2392,2401,2400,2375,2336,2365,2342,2332,2314,2351,2356,2355,2370,2385,2344,2301,2360,2385,2306,2348,2337,2338,2348,2357,2377,2333,2318,2353,2331,2328,2354,2265,2257,2272,2262,2226,2227,2209,2222,2223,2251,2234,2259,2241,2206,2268,2180,2229,2219,2219,2220,2265,2225,2285,2303,2264,1940,1929,1957,1915,1922,1972,1928,1955,1974,1956,1936,1939,1913,1936,1962,1959,1952,1975,1962,1949,1872,1944,1953,1953,1906,2660,2668,2704,2665,2628,2641,2667,2605,2654,2661,2661,2657,2628,2685,2666,2703,2602,2689,2658,2599,2672,2726,2651,2688,2645,2685,2652,2674,2651,2588,2674,2619,2644,2584,2631,2638,2646,2597,2627,2616,2613,2636,2625,2584,2586,2616,2635,2596,2621,2631,2614,2597,2640,2595,2391,2443,2401,2448,2442,2376,2380,2403,2415,2458,2383,2387,2388,2404,2475,2365,2407,2383,2346,2392,2372,2000,1947,1991,1973,1998,1936,1959,2022,1945,1964,2024,2025,2015,2006,2008,1996,1994,1986,1977,1977,1976,1996,1999,2007,2005,1981,2662,2702,2752,2665,2688,2736,2729,2694,2718,2713,2592,2702,2742,2699,2669,2689,2654,2715,2786,2709,2738,2672,2617,2699,2617,2743,2699,2542,2476,2491,2510,2479,2455,2579,2536,2504,2512,2539,2558,2483,2564,2470,2434,2501,2513,2488,2495,2517,2501,2519,2542,2461,2517,2529,1970,1963,1974,1925,1964,1986,1971,1987,1995,1988,1953,1969,1876,1934,1969,1964,1976,1956,1973,1992,1951,2701,2732,2793,2590,2787,2691,2718,2679,2682,2779,2765,2731,2675,2723,2809,2758,2679,2785,2440,2454,2464,2487,2494,2455,2473,2463,2466,2433,2494,2463,2445,2426,2499,2458,2460,2466,2441,2454,2466,2464,2488,2464,2447,2751,2684,2722,2708,2726,2715,2744,2694,2789,2747,2706,2707,2730,2781,2707,2732,2779,2753,2689,2713,2746,2749,2739,2710,2739,2714,2732,2709,2239,2155,2207,2254,2257,2165,2292,2352,2282,2312,2206,2279,2242,2230,2235,2185,2272,2207,2249,2301,2308,2266,2249,2294,2312,2288,2278,2273,1846,1852,1892,1851,1853,1884,1880,1907,1869,1877,1855,1900,1873,1877,1886,1807,1904,1863,1876,1893,1870,1868,1825,1897,1867,1930,1944,1897,1920,1918,1898,1876,1899,1935,1906,1933,1939,1916,1881,1913,1883,1950,1923,1935,1884,1875,1912,1950,1898,1951,1954,1923,1960,1906,1937,1906,1929,1921,1918,1973,1893,1970,1931,1907,1978,1903,1928,1959,1919,1909,1954,1965,1833,1845,1833,1837,1823,1841,1826,1808,1851,1819,1840,1850,1812,1868,1822,1824,1827,1842,1835,1837,1802,1846,1867,1870,1832,1857,1820,1836,1865,1828,1821,1862,1863,1819,1847,1858,1862,1876,1839,1850,1850,1841,1846,1876,1864,1850,1839,1845,1855,1853,1857,1895,1796,1810,1821,1850,1804,1833,1809,1832,1834,1877,1845,1837,1811,1769,1830,1812,1858,1841,1851,2465,2467,2385,2462,2488,2502,2456,2427,2455,2421,2417,2455,2357,2452,2450,2457,2399,2383,2388,2491,2436,2415,2406,2343,2395,2409,2430,2487,2454,2454,2387,2508,2055,2034,2025,2034,1977,1993,2035,2030,2029,2037,2053,2039,2028,2050,2017,1966,2009,2031,1966,2023,2053,2047,1742,1827,1785,1797,1760,1810,1809,1820,1851,1815,1832,1778,1837,1820,1813,1778,1854,1836,1733,1800,1826,1804,1801,1820,1831,2589,2710,2689,2705,2645,2552,2675,2617,2665,2693,2644,2745,2592,2656,2732,2728,2710,2633,2629,2596,2708,2618,2664,2716,2718,2611,2782,2481,2527,2593,2585,2559,2581,2570,2517,2580,2599,2625,2543,2522,2500,2590,2569,2523,2550,2578,2520,2565,2553,2049,2055,2040,2001,2072,2078,2000,2072,2020,2018,2017,2064,2016,2057,2095,2095,2029,2115,2088,2092,1995,2032,2107,2070,2075,2073,2050,2104,1875,1912,1907,1843,1829,1888,1905,1879,1874,1878,1887,1899,1858,1873,1863,1932,1897,1874,1905,1918,1888,1883,1928,1845,1744,1747,1861,1787,1857,1754,1822,1812,1775,1777,1771,1800,1782,1837,1744,1805,1817,1825,1820,1837,1776,1841,1802,1836,1776,1830,1814,1788,2371,2420,2424,2379,2431,2361,2395,2335,2440,2372,2313,2433,2348,2398,2451,2375,2370,2322,2330,2433,2288,2395,2401,2427,2052,2064,2056,2027,2112,2068,2048,2064,2075,2067,2008,2060,2107,2005,2115,2097,2106,2009,2064,2133,2038,2106,2065,1956,1911,1922,1985,1927,1929,1952,1925,1891,1957,1958,1930,1901,1944,1955,1963,1939,1920,1947,1942,1947,1942,1922,1973,1938,1920,1923,2073,2071,2021,2067,2029,2048,2019,2042,2037,2040,2017,2016,2055,2078,2034,2064,2038,2052,2012,2028,2026,2063,2052,2016,2480,2471,2436,2578,2479,2474,2491,2548,2505,2524,2556,2483,2556,2496,2571,2487,2558,2489,2478,2466,2493,2540,2530,2488,2531,2469,2185,2212,2250,2211,2173,2175,2178,2249,2218,2190,2182,2230,2239,2168,2166,2244,2192,2173,2198,2204,2195,2209,2543,2552,2626,2584,2590,2621,2563,2566,2592,2605,2565,2593,2544,2571,2611,2518,2545,2562,2552,2574,2574,2572,2574,2531,2531,2559,2568,2537,2195,2260,2244,2296,2268,2266,2308,2296,2226,2337,2245,2199,2248,2275,2249,2214,1889,1909,1921,1932,1941,1931,1920,1933,1930,1934,1951,1852,1959,1947,1897,1949,1942,1949,1898,2585,2579,2497,2463,2434,2538,2448,2479,2441,2610,2508,2528,2595,2440,2621,2477,2517,2493,2485,2503,2489,2529,2481,2496,2509,2270,2266,2296,2323,2282,2241,2310,2309,2314,2292,2267,2271,2285,2225,2298,2312,2286,2247,2285,2277,2221,2291,2322,2290,1899,1927,1937,1886,1912,1906,1895,1930,1890,1918,1958,1947,1954,1809,1917,1905,1877,1893,1855,1924,1860,1933,1956,1910,1878,1924,1784,1805,1787,1820,1782,1767,1784,1797,1740,1782,1817,1769,1800,1805,1797,1787,1772,1808,1794,1767,1780,1785,1809,1789,1809,1789,1756,2627,2721,2617,2660,2722,2674,2605,2704,2695,2761,2689,2663,2740,2722,2643,2653,2702,2684,2675,2590,2732,2739,2746,2654,2590,2660,2641,2587,2681,2486,2563,2530,2511,2550,2474,2553,2526,2592,2521,2519,2522,2529,2514,2521,2483,2574,2526,2530,2495,2527,2515,2517,2523,2530,2504,2511,2513,2683,2623,2681,2669,2726,2703,2741,2720,2735,2703,2549,2699,2797,2679,2684,2724,2494,2692,2634,2684,2772,2663,2719,2796,2722,2736,2660,2619,2684,2745,2692,2650,2710,2662,2690,2684,2685,2690,2681,2681,2677,2690,2679,2689,2718,2691,2735,2695,2723,2703,2662,2697,2686,2703,2688,2690,2664,2676,2675,2671,2707,2709,2666,2688,2704,2601,2556,2584,2570,2580,2564,2520,2499,2560,2538,2536,2533,2528,2552,2553,2616,2522,2515,2521,2506,2568,2542,2573,1971,1983,1996,1980,2010,2008,2009,2019,2012,1975,1969,2013,2038,2042,2005,1978,1957,1999,1936,1917,1974,2018,1972,2021,1982,1980,1976,1989,1918,2009,2040,1951,2014,1869,1844,1863,1839,1919,1938,1916,1880,1898,1894,1909,1901,1850,1924,1853,1864,1864,1874,1924,1894,1878,1880,1863,1891,1933,1883,2655,2637,2734,2677,2604,2659,2588,2700,2700,2659,2700,2637,2692,2698,2694,2776,2695,2641,2625,2698,2729,2518,2509,2482,2534,2511,2503,2527,2512,2523,2515,2497,2520,2470,2519,2550,2500,2562,2489,2521,2531,2500,2511,2484,2496,2535,2534,2495,2496,2559,2245,2247,2255,2236,2278,2252,2280,2242,2274,2262,2200,2298,2244,2223,2247,2264,2248,2229,2255,2255,2248,2199,2224,2251,2062,2086,2055,2065,2077,2057,2052,2100,2103,2000,2074,2058,2049,2064,2048,2078,2138,2064,2110,1993,2013,2043,2058,2074,2110,2091,2490,2455,2482,2416,2397,2395,2508,2458,2478,2471,2457,2450,2397,2410,2515,2391,2431,2479,2441,2434,2491,2434,2451,2420,2508,2444,2493,2327,2312,2346,2328,2294,2260,2321,2292,2273,2364,2304,2286,2297,2329,2349,2348,2284,2262,2311,2378,2315,2301,2310,2297,2282,2302,2305,1931,1942,1974,1954,1888,1944,1970,1911,1973,1942,1949,1971,1968,1908,1963,1919,1935,1905,2004,2001,1884,1940,2666,2626,2636,2656,2700,2614,2733,2644,2658,2683,2615,2688,2658,2724,2672,2597,2684,2642,2660,2671,2649,2678,2620,2609,2643,2608,2637,2614,2653,2687,2631,2646,2637,2662,2660,2653,2664,2636,2645,2641,2687,2667,2666,2676,2634,2679,2628,2640,2624,2647,2650,2632,2587,2651,2664,2375,2406,2432,2418,2439,2421,2375,2372,2459,2441,2440,2469,2433,2405,2447,2440,2474,2402,2417,2363,2409,2422,2375,2448,2452,2417,2786,2754,2799,2796,2739,2764,2750,2766,2753,2792,2764,2785,2792,2764,2754,2775,2810,2760,2742,2805,2730,2794,2787,2457,2455,2359,2443,2481,2491,2368,2460,2419,2432,2461,2494,2451,2490,2485,2443,2471,2448,2447,2469,2511,2466,2499,2439,2412,2470,2730,2682,2645,2621,2681,2709,2772,2722,2718,2687,2656,2795,2665,2723,2637,2738,2738,2657,2779,2711,2746,2674,2673,2697,2722,2700,2781,2696,2684,2748,2664,2759,2720,2705,2706,2736,2480,2434,2501,2511,2482,2443,2527,2475,2552,2535,2544,2403,2494,2531,2452,2504,2501,2476,2456,2474,2510,2476,2510,2209,2136,2170,2207,2208,2193,2179,2221,2152,2138,2159,2175,2149,2242,2082,2158,2260,2158,2201,2138,2129,2174,2183,2189,2180,2164,2124,2182,2136,2156,2072,2680,2626,2599,2656,2701,2689,2665,2680,2655,2688,2693,2628,2671,2648,2646,2677,2720,2701,2673,2693,2625,2643,2665,2685,2710,2650,2452,2459,2473,2488,2429,2445,2462,2482,2447,2470,2503,2455,2467,2462,2441,2466,2468,2517,2493,2493,2421,2479,2495,2445,2434,2477,2456,2498,2696,2705,2712,2721,2680,2676,2688,2670,2694,2733,2682,2684,2691,2697,2701,2706,2745,2704,2687,2419,2347,2427,2398,2458,2362,2419,2426,2353,2419,2371,2392,2476,2359,2326,2387,2374,2385,2384,2329,2361,2312,2664,2620,2668,2640,2659,2649,2603,2657,2672,2652,2637,2661,2647,2673,2688,2654,2664,2652,2636,2682,2679,2662,2681,2701,2677,2661,2675,2651,2672,2582,2686,2371,2318,2341,2377,2424,2327,2424,2316,2353,2427,2358,2441,2395,2426,2299,2416,2403,2302,2373,2390,2377,2458,2415,2396,2388,1846,1809,1844,1820,1872,1799,1795,1806,1836,1872,1802,1847,1762,1845,1800,1815,1841,1855,1769,1847,1805,1910,1912,1904,1946,1871,1919,1916,1933,1880,1936,1972,1927,1920,1932,1913,1920,1901,1971,1952,1918,1969,1931,1982,1900,1873,1884,1974,1912,1928,1942,2764,2780,2815,2899,2827,2893,2858,2748,2747,2834,2836,2777,2815,2777,2741,2748,2771,2821,2781,2867,2809,2867,2778,2799,2826,2470,2472,2526,2525,2428,2461,2496,2436,2444,2468,2469,2462,2473,2484,2477,2455,2526,2518,2508,2453,2499,2512,2621,2616,2606,2613,2570,2616,2580,2626,2579,2632,2611,2587,2644,2618,2596,2647,2653,2643,2612,2580,2389,2435,2377,2452,2399,2481,2404,2452,2453,2453,2437,2361,2456,2422,2430,2454,2451,2438,2502,2432,2458,2495,2442,2446,2438,1920,1966,2022,1977,1989,1961,2001,1985,1965,2013,2014,1973,1978,2004,1934,2004,1978,2027,1972,2012,1946,1836,1863,1819,1837,1851,1863,1850,1870,1862,1827,1864,1875,1799,1843,1846,1854,1892,1827,1836,1838,1833,1869,1835,1870,1864,1851,1817,1866,1849,1861,1959,1971,2004,1971,1987,1978,1991,1975,1968,1976,1998,1958,2010,1975,1954,1992,1973,1951,1955,1955,1969,1989,1948,1928,1948,1999,1966,1981,1973,1964,1983,1957,1935,1951,1972,1961,1954,1929,1954,1932,1934,1948,1953,1922,1938,1976,1958,2826,2719,2759,2832,2717,2770,2687,2792,2773,2784,2810,2736,2862,2698,2826,2763,2670,2750,2790,2744,2764,2776,2828,2456,2479,2523,2539,2609,2508,2554,2570,2547,2546,2506,2479,2463,2468,2500,2451,2472,2523,2538,2496,2502,2550,2456,2479,2486,2784,2715,2688,2670,2784,2615,2754,2847,2653,2767,2763,2675,2854,2711,2732,2764,2733,2757,2762,2766,2773,2719,2780,2663,2711,2730,2726,2746,2746,2758,2686,2728,2723,2721,2688,2723,2747,2750,2730,2790,2731,2725,2364,2416,2410,2454,2402,2465,2442,2415,2385,2431,2409,2372,2438,2401,2418,2410,2437,2467,2426,2356,2382,2402,2398,2317,2396,2375,2419,2433,2470,2430,1878,1840,1877,1853,1924,1877,1832,1758,1901,1867,1850,1888,1878,1828,1861,1870,1852,1902,1893,1945,1828,1799,1861,1861,1932,2715,2837,2786,2779,2772,2773,2764,2793,2824,2585,2670,2783,2773,2766,2836,2740,2760,2794,2773,2866,2740,2878,2711,2791,2732,2628,2628,2647,2620,2638,2576,2592,2622,2536,2622,2579,2594,2587,2555,2562,2520,2610,2551,2579,2580,2619,2640,2608,2617,1994,1944,1993,2026,2080,1961,2075,1957,2025,1990,1960,2020,2053,1992,2028,1993,1982,2042,1984,1972,2006,2000,1969,1969,2056,2000,2001,2013,1937,1931,1966,1996,1945,1972,2009,1990,2001,2004,2002,1973,2036,2003,1970,1973,1993,1978,1969,2436,2399,2362,2390,2372,2353,2410,2338,2307,2384,2389,2355,2386,2376,2378,2369,2355,2401,2358,2399,2391,2366,2377,2339,2404,2372,2420,2391,2317,2350,2138,2118,2091,2097,2098,2103,2119,2168,2150,2114,2078,2177,2069,2124,2091,2127,2086,2119,2084,2095,2147,2093,2087,2065,2075,2113,2090,2086,2088,2098,2112,2088,2069,2070,2112,2048,2071,2116,2036,2112,2121,2130,2045,2110,2122,2100,2090,2102,2108,2063,2122,2074,2061,2071,2067,2097,2081,2063,2074,2071,2097,2027,2072,2060,2089,2077,2052,2081,2429,2470,2485,2423,2480,2416,2423,2415,2474,2440,2474,2397,2451,2453,2454,2466,2462,2491,2432,2432,2472,2462,2225,2208,2252,2243,2225,2243,2189,2256,2220,2232,2264,2232,2234,2222,2173,2211,2294,2227,2142,2214,2193,2279,2291,2225,2244,2244,2201,2686,2616,2697,2717,2666,2708,2723,2667,2686,2620,2703,2657,2686,2699,2710,2703,2648,2664,2654,2658,2732,2712,2650,2736,2739,2663,2514,2466,2494,2518,2497,2468,2441,2451,2513,2523,2519,2440,2483,2417,2436,2468,2512,2436,2479,2439,2487,2520,2472,2541,2516,2501,2435,2480,1901,1849,1900,1906,1938,1948,1871,1916,1958,1967,1941,1865,1910,1931,1897,1988,1944,1910,1944,1877,1874,1942,1953,1880,1935,2376,2451,2376,2370,2482,2448,2429,2468,2400,2406,2355,2483,2396,2463,2427,2407,2390,2479,2486,2378,2416,2380,2467,2475,2445,2452,2509,2392,2472,2405,2123,2115,2109,2085,2097,2103,2117,2069,2067,2129,2095,2091,2102,2115,2096,2073,2082,2128,2163,2166,2103,2106,2120,2345,2370,2317,2390,2434,2335,2343,2348,2355,2346,2431,2407,2350,2327,2334,2391,2386,2401,2279,2338,2372,1970,1930,1940,2006,1961,1993,1967,1949,1915,1949,1903,1974,1979,1911,1992,1974,1926,1903,1917,1981,1966,1957,1931,1963,1951,1906,1991,1941,1963,1897,1974,1958,1922,1945,1913,1889,1949,1954,1896,1935,1968,1925,1952,1918,2046,2073,2063,2124,2128,2081,2035,2072,2070,2086,2059,2072,2077,2092,2090,2068,2101,2127,2103,2117,2047,2081,2068,2025,1986,2000,1994,2026,2004,1998,2018,2019,2000,1972,1989,2001,1993,1991,1998,1977,1990,2041,1979,2014,1984,2000,1975,1975,1985,2498,2412,2462,2429,2461,2421,2465,2422,2411,2365,2494,2435,2390,2416,2465,2442,2401,2456,2490,2645,2660,2628,2667,2677,2655,2649,2659,2592,2700,2655,2669,2700,2720,2653,2636,2661,2651,2725,2403,2438,2450,2440,2465,2443,2477,2480,2431,2497,2503,2462,2500,2401,2447,2470,2466,2488,2462,2483,2458,2489,2384,2492,2476,1982,1997,1963,1979,1993,1967,1977,1917,1991,2031,1945,1960,1962,1974,1974,1943,1976,1959,1982,1970,1951,1983,1930,2008,1986,1954,2011,1945,1936,1963,1936,2067,2025,2020,2077,2023,2021,2030,2090,2027,2028,2043,2009,2024,2027,2000,2066,2056,2051,2064,2005,2030,2049,2040,2029,2065,2007,2042,2038,2060,2031,2051,2091,2087,2039,2075,2033,2016,2053,2032,2051,2073,2057,2052,2065,2054,2032,2044,2102,2044,2071,2061,2099,2060,2018,1931,1959,1926,1977,1920,1925,1964,1933,1939,1926,1953,1929,1955,1916,1931,1950,2001,1935,1938,1956,1949,1916,1927,1939,1948,1943,1949,1915,2716,2720,2724,2717,2700,2728,2719,2707,2767,2768,2749,2660,2803,2800,2712,2799,2759,2659,2724,2761,2730,2726,2727,2779,2739,2737,2687,2334,2428,2534,2365,2399,2434,2443,2358,2401,2402,2332,2418,2461,2372,2415,2506,2410,2453,2440,2380,2426,2354,2383,2385,2436,1930,1973,1942,1952,2017,1978,1864,1978,1999,1980,1946,1940,1995,1963,1965,1893,1990,1922,1987,1977,2127,2181,2166,2169,2185,2143,2207,2170,2231,2157,2209,2200,2221,2190,2188,2171,2585,2652,2547,2572,2564,2586,2580,2593,2623,2613,2528,2588,2642,2535,2603,2565,2578,2617,2649,2548,2580,2651,2591,2588,2578,2642,2570,2571,2068,1993,2130,2067,2067,2113,2063,2079,2064,2080,1972,1927,2006,1994,2127,2068,2020,2095,2018,1970,2101,2050,1753,1765,1751,1742,1766,1738,1781,1785,1733,1797,1772,1753,1745,1749,1718,1801,1804,1784,1691,1768,1765,1793,1755,1767,1696,1829,1770,1802,1748,1727,1755,1819,1780,1813,1809,1760,1767,1778,1784,1787,1801,1758,1805,1758,1798,1752,1795,2419,2441,2619,2447,2504,2573,2513,2478,2531,2488,2531,2542,2574,2536,2520,2503,2529,2502,2385,2469,2561,2570,2532,2508,2534,2592,2521,2511,2586,2536,2514,2502,2541,2550,2560,2537,2498,2504,2489,2508,2549,2552,2106,2098,2103,1958,2044,2038,2043,2074,2124,2039,2081,2025,2069,2155,2091,2064,2112,2003,2055,1999,2105,1971,2110,2495,2446,2423,2509,2507,2505,2485,2456,2490,2446,2450,2486,2479,2529,2506,2459,2489,2417,2449,2476,2430,2498,2505,2470,2468,2466,2486,2390,2493,2494,2454,2465,2445,2469,2502,2388,2476,2460,2457,2420,2484,2452,2428,2466,2481,2430,2525,2446,2476,2473,2531,2463,2471,2468,2405,2496,2473,2448,2423,2504,2477,2474,2492,2434,2528,2467,2486,2522,2417,2406,2487,2432,2473,2423,2438,2457,2417,2405,2455,2368,2467,2464,2455,2420,2451,2493,2459,2425,2471,2448,2482,2475,2447,2060,2088,1965,2019,2021,2006,2050,2008,1958,1949,2025,2049,1963,2010,2059,2059,2026,2030,2044,1968,2008,2068,2032,1940,2023,2003,2068,2007,2028,1964,1969,2001,2000,1975,2055,2064,2013,1983,1980,2006,2028,2011,1990,2003,2049,2018,1998,2004,2076,2013,2021,2056,2030,2068,2053,2096,2005,1985,2047,1924,1930,1948,1936,1922,1943,1912,1888,1934,1897,1915,1944,1918,1917,1974,1944,1916,1934,1939,1875,1923,1916,1900,2604,2613,2537,2593,2667,2597,2623,2570,2554,2604,2650,2667,2585,2617,2619,2619,2638,2638,2636,2603,2646,2622,2644,2586,2657,2675,2660,2732,2653,2693,2608,2692,2690,2662,2705,2732,2650,2673,2723,2634,2654,2636,2656,2707,2647,2649,2714,2725,2648,2684,2512,2483,2542,2526,2578,2542,2520,2507,2538,2524,2550,2494,2562,2452,2542,2511,2540,2537,2501,2566,2519,2538,2505,2073,2043,2039,2053,2028,1996,2079,2091,2022,2072,2011,2026,2006,2052,2064,2065,2038,2029,1985,2059,2042,2065,2049,2067,2038,2089,2052,2068,2087,2089,2060,2083,2112,2081,2060,2024,2042,2087,2083,2011,2108,2076,2075,2036,2124,2008,2086,2059,2084,2054,1910,1916,1941,1951,1926,1916,1916,1950,1934,1910,1953,1931,1904,1939,1912,1894,1914,1884,1921,1941,1938,1959,1922,1920,1940,1914,1928,1898,1911,1969,1951,2847,2849,2952,2886,2839,2768,2941,2790,2693,2767,2778,2868,2786,2785,2712,2827,2826,2816,2772,3022,2517,2493,2544,2431,2448,2528,2443,2481,2495,2438,2489,2560,2435,2533,2539,2470,2505,2427,2481,2488,2448,2857,2831,2855,2903,2882,2857,2800,2864,2899,2884,2899,2876,2832,2823,2797,2820,2862,2800,2885,2868,2835,2805,2486,2451,2517,2416,2440,2461,2514,2504,2464,2459,2513,2483,2438,2487,2475,2420,2486,2467,2526,2553,2463,2495,2526,2475,2469,2532,2485,2702,2661,2710,2673,2692,2714,2659,2674,2696,2655,2679,2718,2685,2700,2724,2733,2742,2680,2664,2648,2626,2673,2363,2352,2294,2314,2366,2329,2314,2377,2265,2278,2425,2336,2338,2318,2284,2384,2333,2300,2332,2347,2316,2357,2352,2407,2234,2288,1832,1795,1836,1800,1793,1784,1847,1834,1865,1841,1818,1823,1781,1849,1829,1823,1754,1868,1788,1828,1827,1829,1845,1811,1835,1800,1797,1842,1838,1762,1842,1794,1817,1806,1800,1815,1827,1822,1796,1798,1820,1877,1839,1848,1869,1922,1873,1852,1859,1854,1833,1865,1863,1810,1873,1836,1924,1889,1856,1866,1908,1851,1849,1856,1883,1863,1912,1841,1876,1890,1881,1869,1851,1904,1861,1921,1916,1926,1909,1866,1880,1891,1922,1925,1889,1914,1907,1919,1854,1896,1938,1936,1873,1929,1909,1886,1906,1937,1909,1976,1878,1879,1876,1876,1906,1847,1879,1885,1887,1916,1877,1889,1898,1874,1893,1860,1822,1879,1875,1862,1880,1870,1918,1871,1878,1863,1920,1844,1786,1774,1734,1757,1797,1740,1769,1794,1756,1765,1778,1810,1767,1757,1763,1781,1770,1757,1764,1779,1770,1740,1759,1743,1770,1774,1787,1744,1741,1782,1757,1771,1794,1754,1730,1813,1754,1785,1804,1875,1938,1872,1903,1890,1927,1918,1935,1913,1847,1864,1916,1868,1896,1934,1871,1875,1881,1891,1908,1917,1862,1881,1891,1917,2080,2004,2027,2008,2044,2052,2021,1985,2041,2051,2027,2027,2038,2117,2061,2031,2045,2089,2052,2544,2412,2475,2488,2477,2470,2469,2534,2437,2518,2461,2460,2481,2568,2441,2528,2505,2437,2441,2499,2380,2540,2489,2529,2479,2499,2617,2594,2562,2555,2570,2558,2546,2517,2598,2525,2547,2560,2534,2551,2539,2541,2548,2554,2538,2529,2579,2595,2579,2537,2555,2567,2546,2541,2278,2392,2331,2334,2382,2288,2338,2284,2346,2363,2344,2360,2300,2308,2396,2389,2402,2281,2323,2361,2393,2342,2330,2314,2374,2351,2343,2351,2320,2663,2619,2615,2675,2680,2627,2632,2604,2642,2605,2652,2666,2615,2666,2615,2659,2597,2661,2622,2639,2620,2622,2459,2505,2506,2534,2471,2489,2479,2513,2531,2477,2471,2488,2549,2495,2447,2484,2422,2518,2475,2476,2471,2541,1919,1876,1897,1895,1867,1870,1859,1889,1858,1871,1835,1849,1905,1931,1865,1907,1875,1853,1899,1875,1959,1912,1942,1961,1977,1925,1962,1948,1949,1960,1958,1997,1978,1954,1954,1970,1985,1976,1942,1968,1987,1963,1993,1948,1939,1945,1948,1981,1954,1949,1934,1968,1942,1921,1919,1925,1937,1976,1938,1925,1902,1927,1898,1926,1932,1922,1936,1970,1932,1914,1916,2767,2703,2724,2755,2694,2669,2780,2827,2724,2809,2712,2862,2813,2698,2658,2780,2741,2758,2713,2799,2751,2623,2669,2688,2788,2774,2766,2726,2728,2785,2743,2738,2772,2707,2759,2763,2770,2762,2727,2832,2799,2706,2798,2794,2772,2760,2693,2714,2736,2804,2538,2476,2498,2446,2471,2436,2400,2521,2492,2504,2504,2473,2443,2391,2397,2507,2490,2496,2478,2473,2459,2455,2474,2447,2456,2447,2469,2597,2469,2457,2561,2620,2563,2478,2542,2542,2431,2583,2439,2465,2615,2573,2449,2509,2595,2638,2580,2549,2565,2521,2484,2643,2545,2537,2603,2549,2578,2591,2574,2617,2621,2644,2624,2599,2636,2614,2621,2605,2611,2626,2628,2624,2589,2619,2627,2603,2470,2506,2438,2445,2448,2417,2451,2457,2413,2452,2438,2480,2522,2499,2460,2429,2464,2393,2430,2446,2459,2451,2442,2418,2444,2435,2453,2444,2461,2458,2408,2424,2454,2455,2460,2461,2434,2454,2456,2414,2422,2467,2457,2480,2397,2073,2128,2100,2070,2068,2070,2071,2117,2023,2063,2090,2056,2079,2051,2073,2054,2073,2039,2055,2101,2068,2064,2055,2048,2015,2431,2464,2405,2367,2441,2405,2398,2420,2476,2426,2389,2397,2417,2424,2374,2408,2372,2419,2449,2370,2493,2412,2378,2380,2406,2410,2421,2649,2618,2655,2650,2666,2682,2641,2605,2665,2600,2678,2665,2638,2687,2684,2652,2639,2653,2670,2632,2595,2600,2642,2609,2637,2649,2670,2659,2682,2641,2684,2660,2664,2658,2609,2646,2663,2648,2643,2655,2686,2639,2675,2680,2649,2668,2668,2654,2657,2660,2657,2378,2352,2362,2363,2344,2371,2288,2309,2320,2379,2354,2376,2410,2308,2329,2361,2329,2380,2374,2405,2366,2332,2341,2391,2356,2325,2388,2407,2338,2333,2415,2303,2345,2430,2312,2335,2371,2337,2531,2477,2473,2452,2439,2545,2386,2542,2465,2451,2496,2540,2533,2464,2471,2517,2467,2556,2543,2574,2473,2542,2494,2437,2555,2644,2565,2530,2465,2469,2555,2559,2463,2481,2489,2521,2435,2492,2500,2528,2481,2513,2506,2489,2456,2451,2501,2521,2536,2511,2489,2487,2495,2492,2446,2528,2603,2594,2571,2568,2602,2584,2601,2616,2589,2577,2602,2594,2599,2600,2592,2584,2562,2616,2574,2591,2607,2572,2589,2599,2637,2579,2599,2335,2272,2378,2309,2332,2336,2299,2321,2319,2314,2282,2318,2331,2355,2312,2313,2364,2331,2330,2349,2370,2341,2297,2347,2290,2529,2555,2528,2533,2518,2540,2508,2578,2561,2555,2568,2568,2568,2520,2521,2605,2685,2659,2516,2621,2550,2630,2605,2512,2601,2473,2605,2595,2564,2616,2500,2613,2515,2529,2572,2542,2572,2558,2576,2596,2587,2590,2556,2596,2581,2558,2561,2555,2607,2610,2576,2613,2547,2322,2347,2350,2348,2340,2386,2367,2350,2407,2376,2363,2341,2355,2346,2406,2338,2365,2344,2335,2331,2345,2399,2326,2393,2344,2356,2345,2044,2089,2066,2028,2041,2006,2048,2103,2032,2031,2094,2043,2075,2044,2013,2093,2018,2061,1987,2025,2019,2031,2066,2078,2030,2039,2041,2407,2415,2476,2406,2426,2417,2512,2426,2455,2443,2428,2463,2456,2414,2406,2461,2447,2377,2401,2434,2399,2389,2622,2624,2597,2627,2623,2674,2532,2619,2609,2660,2646,2553,2607,2618,2614,2625,2571,2645,2618,2582,2588,2680,2634,2567,2549,2659,2283,2253,2306,2357,2348,2270,2332,2257,2322,2295,2329,2327,2266,2360,2150,2281,2254,2264,2273,2310,2315,2323,2445,2265,2287,2294,2281,2370,2312,1916,1927,1914,1927,1969,1893,1952,1908,1900,1927,1914,1888,1911,1931,1901,1921,1904,1928,1873,1946,1915,1898,1907,1900,1963,1917,2718,2660,2647,2632,2693,2683,2687,2612,2680,2618,2715,2637,2593,2688,2636,2609,2611,2596,2693,2623,2695,2740,2728,2704,2690,2700,2711,2697,2686,2745,2666,2682,2663,2711,2653,2698,2710,2681,2352,2343,2427,2347,2401,2426,2367,2358,2341,2332,2405,2398,2425,2352,2345,2417,2365,2339,2325,2381,2427,1922,1879,1891,1860,1839,1878,1884,1901,1898,1936,1896,1875,1877,1944,1912,1796,1867,1843,1877,1855,1947,1913,1872,1877,1846,1879,1816,2033,2054,2031,2022,2032,2045,1978,1992,1991,1989,2027,1997,2033,2043,1966,1965,1950,1969,1977,1946,1958,2000,1941,1931,1958,1958,1954,1970,1918,1927,1924,1925,1973,1949,1963,1957,1949,1964,1983,1980,1944,1927,1988,1951,2584,2532,2613,2558,2526,2611,2555,2514,2550,2686,2533,2563,2517,2546,2594,2602,2598,2611,2561,2564,2552,2589,2573,2589,2556,2582,2550,2567,2574,2524,2555,2548,2554,2565,2568,2532,2533,2527,2545,2535,2594,2523,2494,2521,2519,2511,2533,2532,2539,2561,2524,2517,2297,2318,2317,2397,2371,2322,2303,2402,2351,2340,2346,2374,2383,2350,2336,2362,2416,2325,2351,2329,2326,2420,2372,2334,2392,2333,2080,2010,2052,2075,2090,2136,2080,2112,2100,2129,2086,2087,2102,2081,2066,2044,2092,2101,2090,2056,2049,2080,2135,2055,2680,2687,2659,2684,2627,2629,2633,2614,2612,2658,2620,2659,2607,2663,2659,2621,2619,2651,2629,2642,2629,2657,2670,2600,2016,2079,2092,2015,2076,2039,2086,2062,2024,1979,1998,2085,2118,2041,2039,2020,2033,2029,2129,2021,2007,2093,2077,1992,2636,2544,2620,2578,2600,2634,2623,2676,2665,2608,2649,2527,2624,2633,2611,2682,2629,2628,2644,2569,2622,2659,2599,2619,2596,2696,2705,2710,2708,2749,2704,2693,2720,2702,2697,2707,2751,2737,2757,2668,2687,2741,2727,2724,2647,2492,2366,2444,2466,2361,2474,2477,2346,2403,2385,2456,2416,2413,2414,2459,2445,2479,2518,2423,2427,2421,2447,2467,2465,2408,2473,1910,1807,1883,1832,1870,1903,1837,1857,1880,1804,1874,1814,1841,1894,1839,1802,1889,1832,1913,1841,1826,1856,1823,1891,1860,1872,1833,1854,1874,2748,2830,2727,2740,2757,2756,2704,2852,2828,2750,2821,2767,2756,2732,2675,2666,2741,2736,2783,2743,2600,2546,2461,2512,2462,2577,2549,2513,2467,2494,2532,2470,2482,2520,2534,2527,2538,2505,2514,2441,2517,2531,2548,2503,2569,2501,2509,2599,2512,2517,2574,1892,1932,1906,1901,1895,1913,1913,1930,1908,1866,1878,1943,1882,1846,1946,1847,1935,2889,2992,2949,2847,2801,2860,2853,2747,2864,2936,2837,2901,2838,2884,2876,2846,2876,2832,2843,2842,3031,2925,2835,2804,2904,2867,2777,2929,2606,2625,2569,2619,2563,2595,2629,2610,2629,2620,2605,2567,2614,2609,2629,2598,2591,2591,2678,2598,2645,2627,2650,2607,2579,2572,2599,2624,2599,2823,2784,2813,2759,2794,2849,2824,2825,2805,2866,2786,2766,2803,2750,2824,2805,2848,2776,2820,2784,2838,2795,2532,2539,2534,2545,2544,2531,2548,2551,2571,2567,2535,2565,2501,2529,2550,2522,2535,2601,2587,1941,1977,2019,2103,2057,2099,2003,2049,1999,1990,1980,2070,1999,2154,2107,2062,2028,2075,2011,1964,2027,2027,2327,2380,2387,2366,2362,2365,2306,2386,2354,2322,2371,2367,2371,2360,2373,2308,2356,2294,2380,2323,2332,2365,2354,2305,2315,2372,2344,2319,2383,2094,2071,2047,2062,2057,2069,2049,2087,2017,2045,2095,2065,2048,2066,2092,2076,2055,2091,2089,2021,2084,2098,2057,2034,2062,2327,2392,2413,2319,2315,2390,2332,2304,2366,2367,2410,2362,2321,2382,2328,2358,2415,2394,2348,2369,2364,2315,2333,2325,2217,2234,2192,2207,2268,2199,2221,2212,2208,2227,2224,2231,2204,2246,2195,2228,2197,2233,2279,2231,2609,2563,2591,2599,2544,2614,2547,2602,2599,2599,2567,2616,2586,2599,2574,2630,2576,2617,2619,2601,2682,2683,2721,2684,2644,2669,2589,2677,2641,2649,2662,2633,2621,2641,2642,2596,2630,2643,2642,2654,2662,2648,2674,2614,2657,2606,2464,2451,2387,2386,2467,2418,2428,2406,2416,2460,2482,2492,2424,2459,2420,2456,2419,2431,2423,1988,1921,1896,1950,1928,1951,1958,1970,1925,1934,1900,1945,1951,1940,1934,1980,1929,1973,1936,1973,1898,1914,1932,1951,1997,1981,2784,2744,2795,2796,2719,2748,2748,2877,2771,2837,2728,2760,2740,2748,2772,2733,2728,2769,2498,2615,2633,2593,2580,2539,2560,2601,2606,2655,2616,2617,2530,2581,2616,2612,2471,2572,2620,2576,2555,2515,2560,2574,2587,2566,2609,2552,2338,2383,2433,2385,2439,2434,2369,2394,2433,2324,2416,2374,2406,2435,2367,2768,2774,2756,2828,2735,2692,2803,2758,2768,2784,2826,2753,2826,2688,2747,2744,2775,2782,2818,2789,2846,2805,2748,2780,2783,2569,2597,2593,2569,2603,2603,2543,2584,2617,2585,2583,2586,2586,2582,2546,2586,2543,2601,2565,2575,2593,2566,2612,2598,2547,2568,2516,2461,2502,2474,2481,2515,2506,2461,2487,2474,2515,2501,2504,2520,2490,2514,2487,2557,2505,2437,2496,2511,2502,1993,1997,2032,1991,1986,2014,2015,2044,2009,2013,2084,2000,2058,2002,2044,2057,2034,1996,2015,2060,1953,1983,1969,1909,1897,1865,1867,1900,1881,1875,1851,1881,1924,1878,1877,1885,1877,1871,1917,1891,1873,1876,1881,1854,1890,1869,1855,1875,1944,1942,1961,1964,1879,1948,1917,1979,1966,1961,1956,1925,1950,1943,1910,1959,1955,1941,1948,1942,1948,1968,1929,1908,1899,1880,1874,1879,1881,1898,1946,1931,1916,1926,1916,1895,1909,1898,1893,1903,1906,1916,1923,1894,1892,1878,1907,1905,1930,1954,1901,1924,1911,1899,2951,2803,2902,2911,2899,2968,2898,2843,2705,2828,2912,3024,2961,2925,2786,2909,2826,2798,2845,2833,2837,2959,2788,2841,2863,2945,2831,2838,2667,2674,2625,2740,2607,2660,2642,2629,2683,2714,2631,2617,2622,2614,2646,2597,2641,2707,2593,2638,2668,2652,2640,2595,2625,2680,2672,2659,2173,2234,2205,2251,2201,2274,2255,2252,2186,2191,2274,2262,2212,2249,2221,2209,2200,2168,2173,2181,2249,2199,2205,2229,2237,2200,2211,2005,1978,2015,1984,2045,2002,1929,2013,1979,1990,1980,2050,2030,2014,2037,2000,2017,2021,1991,2008,2036,2035,2051,2046,1929,1938,1945,1970,1924,1987,1976,1980,1963,1950,2010,1960,1980,1948,1966,1955,2000,1960,1973,1927,1920,2015,1991,1950,1993,1960,1980,1978,1986,1948,1942,2010,2368,2431,2366,2423,2402,2406,2353,2417,2398,2389,2391,2400,2401,2402,2399,2429,2412,2362,2445,2418,2369,2429,2396,2348,2402,2378,2387,2414,2406,2407,2380,2379,2353,2323,2281,2300,2286,2346,2337,2356,2275,2335,2358,2362,2299,2336,2396,2308,2301,2320,2381,2287,2323,2307,2290,2352,2318,2324,2313,2355,1984,1979,1953,1939,1949,1920,1943,1962,1969,1970,1953,1945,1991,1948,1968,2802,2826,2858,2778,2842,2832,2747,2841,2889,2916,2919,2816,2820,2862,2865,2836,2943,2851,2850,2901,2955,2805,2819,2939,2529,2553,2557,2570,2624,2566,2621,2538,2571,2577,2645,2554,2536,2538,2600,2582,2641,2524,2563,2572,2586,2571,2602,2573,2625,2549,2640,2604,2581,2582,2578,2604,2631,1878,1950,1971,1965,1983,1956,1934,1932,2028,2014,1869,1878,1917,1898,1892,1965,1946,1900,1962,1985,1899,1881,1860,1899,1889,1858,1894,1821,1821,1857,1852,1948,1889,1890,1850,1873,1839,1903,1839,2653,2691,2601,2717,2713,2660,2666,2683,2655,2717,2638,2622,2704,2640,2703,2640,2731,2673,2677,2722,2669,2639,2687,2732,2690,2656,2597,2604,2581,2576,2602,2637,2627,2634,2586,2625,2612,2644,2638,2635,2644,2608,2640,2570,2629,2632,2676,2671,2678,2721,2675,2667,2676,2665,2642,2697,2679,2660,2653,2686,2664,2649,2585,2648,2650,2673,2662,2639,2648,2648,2328,2291,2325,2333,2370,2324,2285,2320,2365,2332,2265,2329,2289,2368,2370,2340,2350,2266,2336,2358,2395,2335,2298,2381,2321,2749,2757,2766,2747,2711,2764,2750,2690,2668,2716,2714,2728,2721,2797,2726,2744,2732,2753,2779,2763,2723,2764,2758,2762,2663,2526,2433,2516,2468,2461,2504,2443,2489,2504,2538,2494,2497,2470,2507,2450,2468,2508,2528,2508,2972,2830,2890,2899,2864,2862,2898,2889,2920,2931,2956,2889,2904,2925,2852,2904,2876,2905,2884,2877,2550,2605,2525,2569,2568,2582,2606,2537,2530,2496,2597,2544,2567,2569,2575,2571,2578,2595,2542,2539,2560,2577,2631,2562,2581,2472,2593,2508,2523,2554,2597,2550,2551,2470,2523,2491,2545,2471,2564,2541,2460,2462,2511,2601,2434,2524,2562,2453,2453,2513,2435,2545,2577,2556,2490,2556,2601,2553,2540,2527,2572,2547,2563,2553,2553,2533,2575,2557,2549,2569,2529,2530,2511,2563,2579,2571,2594,2558,2525,2545,2566,2355,2400,2434,2419,2419,2382,2321,2422,2382,2400,2412,2399,2387,2323,2374,2454,2349,2353,2362,2357,2429,2420,2369,2451,2377,2421,2385,2625,2617,2683,2727,2723,2684,2664,2731,2625,2733,2592,2645,2613,2681,2581,2731,2706,2657,2657,2667,2679,2622,2731,2611,2668,2618,2646,2678,2627,2610,2613,2673,2633,2657,2627,2656,2623,2644,2626,2584,2609,2609,2596,2630,2610,2670,2594,2590,2624,2650,2669,2696,2689,2740,2715,2757,2697,2724,2748,2738,2757,2767,2709,2703,2731,2694,2738,2735,2730,2745,2756,2510,2529,2513,2472,2506,2502,2513,2479,2509,2505,2515,2524,2520,2511,2523,2499,2517,2551,2513,2519,2504,2505,2518,2508,2532,2520,2509,2496,2479,2526,2480,2502,2283,2211,2301,2281,2272,2296,2296,2244,2286,2268,2235,2255,2250,2283,2264,2229,1965,1938,1965,1917,1966,2013,1900,1904,1932,1960,1904,1963,1978,1950,1943,2034,1994,1982,1959,1947,1912,1927,1910,1967,1873,1927,1956,1838,1783,1787,1767,1790,1851,1777,1800,1793,1809,1793,1829,1819,1745,1795,1819,1741,1797,1948,1930,1960,1963,1939,1946,1961,1955,1950,1938,1928,1952,1982,1950,1955,1958,1938,1930,1944,1922,1949,1964,1926,1960,1948,1943,1951,2050,2091,2071,2015,2016,2070,2032,2045,2065,2053,2049,2061,2038,2048,2076,2114,2055,2033,2078,1970,2066,2024,2027,2033,2569,2609,2582,2624,2671,2615,2615,2609,2582,2629,2625,2547,2600,2469,2569,2605,2609,2623,2608,2571,2575,2562,2725,2727,2696,2697,2723,2735,2734,2680,2704,2715,2686,2724,2678,2716,2707,2664,2717,2651,2743,2691,2679,2680,2695,2734,2738,2718,2683,2726,2597,2517,2523,2525,2512,2566,2482,2533,2544,2514,2480,2511,2484,2532,2490,2559,2518,2531,2487,2491,2534,2518,2556,2508,2496,2508,2486,2538,2542,2510,2477,2514,2634,2612,2618,2622,2616,2585,2589,2606,2610,2613,2591,2604,2604,2596,2619,2590,2642,2606,2620,2581,2584,2626,2497,2526,2551,2499,2538,2553,2527,2535,2568,2554,2562,2531,2481,2559,2548,2544,2505,2519,2559,2562,2578,2546,2589,2555,2513,2534,2559,2547,2535,2557,2540,2348,2338,2340,2334,2289,2328,2328,2308,2294,2329,2317,2322,2282,2299,2291,2299,2325,2288,2275,2294,2326,2326,2320,2334,2292,2326,2292,2280,2307,1941,1936,2005,1864,1887,1926,1911,1993,1912,1935,1934,2007,1961,1928,1966,1910,1952,1945,1994,1972,1917,1951,1920,1938,1873,1935,1898,1982,1946,1879,1934,1910,1914,1915,1929,1909,1916,1947,1922,1935,1924,2726,2702,2679,2713,2762,2730,2779,2712,2709,2707,2720,2709,2771,2741,2737,2739,2742,2726,2713,2131,2094,2083,2122,2114,2078,2128,2097,2125,2102,2145,2089,2097,2131,2124,2132,2097,2143,2121,2076,2091,2112,2105,2089,2102,2092,2128,2282,2345,2298,2342,2342,2255,2360,2325,2296,2296,2331,2289,2303,2241,2357,2314,2322,2299,2339,2308,2375,2274,2293,2308,1915,1982,1935,2019,1903,1940,2027,1912,1992,1992,1999,1981,1908,1918,1890,1901,2004,1938,1889,1927,1872,1922,1944,1902,1949,1931,1892,1882,1872,1851,1831,1835,1883,1826,1834,1803,1831,1894,1872,1860,1822,1891,1832,1873,1850,1831,1806,1827,1843,1797,1831,1801,1817,1823,1796,2753,2746,2860,2787,2854,2820,2835,2809,2767,2771,2801,2819,2715,2686,2790,2798,2889,2678,2819,2810,2829,2774,2800,2817,2768,2876,2716,2715,2749,2664,2733,2763,2745,2726,2737,2709,2732,2715,2736,2741,2740,2700,2732,2730,2683,2735,2738,2802,2742,2749,2710,2744,2491,2504,2557,2471,2548,2487,2524,2557,2577,2575,2496,2591,2542,2553,2574,2566,2524,2532,2542,2536,2502,2562,2534,2253,2232,2257,2191,2280,2184,2274,2221,2233,2243,2200,2289,2277,2275,2266,2284,2213,2251,2199,2263,2226,2265,2313,2227,2289,2265,2291,2246,2238,2592,2557,2531,2513,2554,2500,2531,2546,2571,2501,2549,2547,2501,2560,2532,2584,2574,2546,2506,2557,2560,2526,2562,2524,2497,2557,2542,2542,2529,2521,2522,2522,2522,2450,2382,2446,2419,2369,2412,2434,2413,2398,2397,2336,2409,2466,2372,2413,2436,2373,2419,2458,2432,2449,2650,2738,2683,2792,2784,2758,2763,2736,2747,2753,2800,2758,2706,2735,2753,2720,2760,2777,2810,2701,2617,2681,2635,2670,2576,2621,2562,2590,2662,2641,2609,2605,2628,2699,2635,2629,2556,2621,2615,2637,2681,2602,2625,2604,2615,2625,2640,2595,2627,2617,2659,2605,2625,2628,2622,2604,2624,2628,2637,2636,2366,2298,2413,2354,2390,2359,2376,2366,2408,2381,2317,2369,2376,2378,2359,2383,2307,2377,2337,2369,2381,2410,2396,2376,2388,2387,2374,2351,2371,1948,1934,1932,1970,1948,1959,1960,1993,1987,1961,1949,1960,1963,1949,1927,1967,1962,1929,1952,1957,1978,1961,1934,1960,1921,1926,1956,1957,1975,1947,1968,2358,2343,2296,2318,2310,2342,2282,2343,2324,2380,2385,2352,2301,2322,2307,2369,2335,2307,2322,2283,2312,2327,2335,2320,2387,2309,2137,2086,2103,2071,2015,2061,1974,2060,2094,2041,2075,2031,2063,2111,2110,1958,1916,1934,1904,1936,1873,1941,1915,1901,1928,1900,1942,1909,1949,1949,1938,1922,1946,1916,1944,1925,1918,1936,1922,1946,1921,1913,1933,1924,1917,1913,1945,1900,1920,1896,1912,1917,1921,1893,1932,1934,1939,1928,1929,1916,1915,1930,1937,1909,1944,1942,2409,2512,2420,2462,2392,2429,2468,2431,2488,2540,2513,2450,2424,2460,2456,2471,2479,2433,2384,2482,2418,2446,2003,2051,2113,2110,2091,2075,2088,2065,2068,2098,2069,2103,2132,2078,2080,2097,2088,2116,2067,2079,2044,2053,2152,2100,2008,2086,2095,2154,2117,2022,1879,1857,1852,1885,1857,1873,1880,1900,1858,1852,1879,1900,1869,1899,1913,1891,1907,1922,1894,1882,1873,1854,1851,1865,1884,1911,1918,1882,1904,1872,1871,1899,1906,1887,1884,1884,1936,1895,1901,1899,1924,1912,1916,1898,1869,1873,1908,1870,1918,2002,1978,2013,2003,2014,2017,1982,1968,1969,2015,2025,2013,2004,1990,1983,2030,1996,1997,2023,1999,2003,1974,2070,2097,2121,2022,2121,2102,2076,2066,2055,2053,2085,2100,2063,2074,2031,2048,2076,2541,2549,2563,2559,2550,2494,2529,2530,2527,2509,2563,2581,2518,2515,2536,2584,2526,2449,2513,2581,2563,2499,2539,2518,2497,2527,2470,2549,2612,2614,2569,2584,2577,2587,2618,2642,2577,2629,2661,2568,2541,2641,2613,2577,2566,2574,2552,2593,2616,2608,2591,2603,2559,2644,2588,2537,2588,2594,2547,2557,2582,2619,2530,2579,2549,2576,2578,2523,2567,2589,2560,2556,2576,2583,2561,2573,2571,2596,2585,2574,2612,2598,2531,2540,2603,2578,2573,2582,2513,2496,2434,2454,2441,2398,2451,2472,2391,2440,2444,2455,2421,2462,2451,2398,2451,2407,2451,2441,2485,2413,2503,2504,2432,2441,2443,2498,1991,1968,1973,2041,2027,2005,2000,1917,2032,1977,1983,1979,1948,2045,1950,2035,1928,1957,2038,1972,1967,1991,2007,1984,1873,1899,1884,1848,1877,1866,1909,1878,1848,1862,1866,1866,1878,1879,1900,1885,1878,1862,1885,1864,1883,1872,1844,1923,1876,1861,1878,1960,1934,1949,1956,1916,1966,1968,1965,1922,1965,1977,1976,1954,1972,1928,1981,1972,1979,2005,1989,2026,1983,2022,2031,1938,1981,2001,1978,2036,2020,1984,2005,1994,1991,2025,2019,1997,1986,1989,1988,1995,2015,1993,1988,2028,2021,1980,1994,1980,2612,2642,2604,2570,2681,2582,2635,2641,2632,2550,2534,2634,2588,2590,2529,2653,2610,2532,2532,2605,2669,2637,2624,2635,2660,2630,2696,2634,2636,2597,2626,2660,2660,2621,2599,2641,2650,2657,2652,2653,2635,2634,2641,2426,2408,2358,2361,2294,2388,2402,2393,2337,2323,2339,2369,2419,2361,2296,2388,2383,2367,2379,2355,2347,2379,2311,2367,2335,2372,2353,1931,1875,1861,1867,1918,1868,1840,1893,1879,1834,1891,1957,1882,1894,1814,1928,1869,1892,1926,1919,1909,1893,1908,1880,1904,1909,1907,1867,1955,1911,1942,1857,1891,1880,1879,1878,1925,1856,1923,1874,1911,1888,1913,1916,1892,1867,1866,1907,1882,1913,1860,1922,2700,2730,2676,2712,2677,2687,2699,2702,2715,2691,2685,2702,2651,2659,2641,2674,2655,2641,2708,2653,2681,2749,2645,2062,1925,2113,2111,2130,2022,2077,1912,1994,2040,2073,1925,2083,2021,2036,2070,2034,2117,2087,2091,2126,2091,2121,1974,1962,1965,2111,2090,2089,2088,2079,2141,2475,2496,2468,2501,2436,2438,2482,2466,2488,2501,2452,2479,2515,2438,2431,2453,2486,2483,2471,2434,2453,2449,2466,2491,2467,2474,2464,2480,2469,2488,2495,2560,2504,2513,2524,2515,2529,2455,2464,2509,2510,2550,2500,2499,2472,2521,2503,2523,2504,2491,2491,2518,2423,2382,2402,2331,2375,2366,2413,2360,2402,2409,2349,2413,2327,2348,2425,2361,2301,2362,2403,2325,2371,2342,2369,2302,2419,2379,2335,2573,2649,2650,2657,2631,2562,2595,2630,2611,2665,2625,2610,2614,2608,2654,2576,2626,2557,2602,2593,2657,2614,2659,2633,2612,2473,2478,2488,2499,2521,2488,2481,2512,2439,2506,2473,2454,2450,2497,2507,2484,2485,2476,2486,2460,2017,1997,1976,1996,1971,2061,2024,2053,2046,2003,2035,2018,2019,2037,2043,2030,2015,1965,2085,2012,2010,2012,2018,1991,1976,2017,1975,2443,2482,2425,2399,2391,2482,2454,2432,2462,2398,2508,2437,2500,2409,2403,2400,2432,2398,2389,2506,2500,2454,2422,2413,2359,2449,2452,2212,2225,2197,2190,2240,2201,2207,2204,2182,2206,2216,2211,2219,2175,2159,2195,2231,2179,2233,2239,2592,2653,2553,2632,2579,2536,2602,2605,2542,2627,2596,2657,2631,2668,2547,2581,2585,2580,2637,2590,2541,2586,2610,2811,2777,2792,2823,2788,2807,2864,2859,2790,2796,2839,2844,2800,2837,2871,2787,2429,2430,2388,2444,2461,2345,2486,2441,2461,2437,2510,2449,2460,2440,2463,2403,2446,2459,2445,2420,2415,2436,2452,2457,2450,2457,2771,2783,2785,2784,2809,2784,2788,2798,2774,2734,2746,2737,2790,2766,2763,2797,2780,2762,2746,2791,2760,2752,2812,2818,2773,2726,2776,2474,2485,2499,2481,2461,2468,2502,2468,2434,2462,2440,2481,2494,2497,2502,2418,2490,2504,2470,2442,2427,2455,2547,2449,2424,2477,2484,2517,2488,2492,2447,2446,2490,2481,2585,2642,2619,2614,2621,2651,2596,2644,2633,2683,2619,2658,2646,2617,2659,2644,2679,2628,2667,2641,2644,2620,2656,2667,2621,2667,2609,2650,2478,2502,2435,2450,2442,2472,2471,2441,2482,2471,2486,2491,2471,2491,2528,2474,2512,2456,2447,2467,2460,2498,2482,2516,2473,2466,2015,1995,1976,1961,1954,2023,2020,1968,1984,1918,2047,2001,1990,1963,2017,2037,1966,1917,1966,1953,1842,1831,1858,1847,1873,1841,1864,1830,1861,1841,1837,1830,1837,1836,1812,1866,1843,1890,1865,1891,1849,1893,1839,1850,1844,1906,1888,2699,2628,2638,2585,2679,2658,2764,2702,2631,2674,2607,2662,2672,2659,2725,2703,2681,2663,2463,2486,2485,2440,2477,2407,2441,2454,2487,2515,2477,2558,2445,2437,2411,2441,2435,2438,2443,2475,2461,2409,2467,2439,2461,2477,2552,2614,2579,2523,2563,2607,2549,2560,2565,2577,2570,2609,2601,2562,2625,2577,2590,2594,2541,2523,2580,2559,2551,2581,2530,2515,2526,2545,2583,2831,2911,2844,2861,2857,2858,2898,2858,2889,2857,2829,2909,2887,2845,2867,2830,2887,2888,2854,2870,2860,2870,2879,2588,2627,2553,2626,2588,2583,2552,2562,2571,2573,2600,2618,2609,2597,2615,2632,2593,2579,2620,2627,2568,2573,2585,2626,2594,2621,2626,1998,2028,1951,1912,1881,1907,1999,1910,2000,1978,1916,1910,1930,1887,1937,1924,1986,1923,1948,1936,1977,1906,1971,1896,1880,1886,1928,1933,1902,1901,1938,1908,1901,1908,1929,1926,1927,1879,1847,1929,1950,1956,1951,1933,1951,1901,1956,1918,1967,1922,1964,1926,1938,1963,1942,2619,2605,2640,2551,2581,2634,2703,2521,2589,2578,2599,2585,2633,2576,2502,2601,2604,2516,2574,2671,2632,2584,2520,2642,2667,2661,2668,2619,2635,2647,2729,2658,2617,2729,2659,2691,2661,2680,2651,2668,2636,2701,2663,2685,2687,2482,2501,2517,2524,2491,2465,2449,2461,2521,2429,2455,2506,2493,2491,2469,2452,2487,2470,2497,2485,2483,2424,2478,2294,2289,2289,2300,2246,2259,2236,2285,2243,2253,2247,2283,2304,2289,2278,2250,2212,2192,2281,2239,2261,2201,2146,2181,2145,2201,2141,2212,2173,2172,2156,2159,2131,2103,2198,2155,2132,2182,2175,2169,2134,2198,2149,2172,2138,2571,2625,2626,2582,2636,2585,2636,2645,2619,2613,2626,2571,2544,2635,2609,2616,2631,2608,2627,2599,2624,2540,2636,2602,2545,2585,2629,2573,2619,2642,2613,2636,2616,2612,2605,2552,2646,2614,2652,2599,2628,2632,2635,2648,2599,2558,2632,2619,2613,2601,2607,2662,2647,2635,2622,2634,2654,2532,2232,2280,2275,2327,2307,2269,2297,2419,2223,2199,2246,2236,2301,2374,2324,2293,2279,2256,2343,2283,2261,2310,2171,2173,2314,2302,2251,2266,2257,1863,1829,1870,1831,1835,1862,1855,1869,1865,1864,1901,1890,1868,1878,1854,1844,1896,1851,1841,1846,1903,1883,1823,1902,1915,1890,1858,1883,1840,1877,1885,1910,1852,1883,1862,1897,1876,1962,1917,1897,1873,1867,1893,1878,1881,1868,1878,1895,1858,1965,1852,1912,1898,1894,2495,2473,2491,2550,2480,2501,2474,2511,2451,2415,2486,2512,2491,2510,2462,2520,2480,2436,2516,2474,2566,2519,2449,2444,2520,1985,2039,2071,1975,2014,2029,1996,2062,1990,1954,1983,1968,2007,1987,2039,2040,2031,1898,1911,1998,1962,1966,2067,2073,1990,2048,2000,2011,1998,1998,2040,1994,1864,1823,1849,1824,1862,1827,1839,1877,1815,1831,1826,1902,1815,1823,1849,1821,1820,1849,1857,1870,1801,1830,1849,1884,1845,1878,1793,1807,2299,2327,2377,2332,2372,2307,2349,2351,2405,2299,2427,2358,2354,2370,2410,2342,2402,2389,2367,2404,2330,2398,2345,2341,2414,2351,2369,2336,2442,2533,2560,2480,2521,2505,2521,2508,2513,2524,2528,2539,2566,2525,2482,2464,2586,2491,2524,2580,2473,2444,2480,2581,2485,2512,2522,2555,2505,2519,2459,2518,2447,2426,2497,2419,2490,2488,2486,2511,2483,2483,2510,2449,2461,2520,2516,2444,2526,2541,2496,2466,2507,2473,2476,2440,2416,2494,2528,1948,1955,1849,1979,1850,1966,1940,1874,1921,1968,1877,1859,1894,1922,1830,1968,1862,1808,1899,1889,1884,1917,1869,1827,1857,1856,1798,1839,1831,1784,1850,1844,1816,1842,1804,1816,1800,1825,1838,1850,1867,1845,1877,1848,1811,1831,1802,1825,1838,1805,1788,1839,2431,2501,2518,2560,2496,2555,2560,2531,2482,2462,2515,2513,2527,2579,2527,2487,2495,2455,2477,2526,2480,2599,2471,2465,2462,2529,2471,2442,2318,2263,2315,2309,2335,2317,2299,2336,2337,2284,2328,2296,2318,2330,2321,2333,2308,2326,2271,2294,2346,2358,2329,2344,2311,2335,2295,2330,2247,2263,2252,2242,2219,2261,2257,2278,2232,2235,2211,2232,2284,2232,2238,2221,2267,1986,1964,1974,1974,1961,1988,1962,1966,1956,1935,1996,1988,2010,2001,1955,1974,1985,1993,1965,1875,1894,1951,1928,1918,1924,1918,1921,1911,1923,1920,1906,1892,1915,1937,1910,1874,1927,1936,1920,1945,1907,1912,1923,1897,1901,1866,1871,1897,1882,1886,1850,1886,1910,1888,1880,1905,1891,1886,1869,1900,1884,1916,1911,1894,1890,1876,1883,1890,1868,1824,1848,1844,1841,1829,1820,1875,1871,1863,1831,1811,1870,1878,1845,1862,1837,1849,1853,1850,1842,1835,1871,1872,1855,1826,1835,1848,1834,1868,1812,1871,1823,1855,1816,1824,2020,2026,2060,2032,2021,2043,2017,2013,2006,2025,2023,2002,2013,1997,2037,2036,2021,2055,2049,2039,1985,2001,2035,1992,2027,2024,2005,2053,2020,2147,2087,2136,2104,2151,2119,2135,2118,2148,2103,2125,2098,2165,2152,2119,2122,2074,2225,2178,2155,2142,2113,2133,3125,3073,3005,3220,2981,3194,3022,3137,2991,3171,3169,3051,3104,3195,2976,3182,3061,3113,3021,3217,3106,3093,3003,2637,2753,2643,2660,2675,2761,2678,2589,2752,2685,2621,2750,2691,2688,2648,2708,2739,2766,2702,2686,2665,2640,2652,2715,2725,2637,1917,1937,1999,1947,1976,1960,1966,1973,1919,1979,1839,1997,1979,2017,1883,1967,1971,1979,1937,1924,1969,1931,1912,1943,2031,1974,1900,1801,1806,1837,1787,1783,1776,1809,1759,1770,1795,1840,1804,1793,1823,1778,1782,1798,1818,1779,1774,1766,1783,1878,1847,1795,1811,1854,1848,1849,1779,1816,1784,1845,1818,1836,1795,1870,1804,1833,1856,1854,1875,2075,2049,2009,2060,2082,2067,2009,1999,2048,2116,2024,2045,2070,2016,2050,2020,2041,2042,2055,2056,2036,2076,2074,2036,2063,2075,2020,2041,2032,2090,2006,2058,2028,2037,2031,2042,2094,2038,2060,2054,2090,2038,2098,2054,2063,2056,2715,2759,2758,2816,2750,2731,2763,2670,2787,2777,2775,2799,2717,2763,2745,2755,2710,2809,2789,2700,2706,2744,2718,2712,2767,2462,2406,2443,2373,2416,2502,2391,2340,2386,2373,2412,2416,2446,2438,2475,2386,2365,2440,2452,2419,2416,2400,2396,1899,1926,1929,1900,1952,1943,1955,1960,1930,1910,1886,1924,1955,1884,1938,1949,1917,1980,1953,1920,1927,1947,1917,1932,1987,1891,2702,2770,2764,2666,2742,2746,2753,2733,2795,2655,2775,2801,2750,2749,2774,2806,2702,2702,2775,2795,2734,2667,2770,2721,2634,2736,2624,2558,2603,2564,2611,2567,2534,2563,2538,2586,2561,2602,2590,2516,2612,2602,2601,2574,2617,2631,1996,2047,2011,2017,1988,1999,1975,2068,1993,1987,1942,1978,1976,2006,2032,2011,1939,2036,2019,1974,2030,2052,1834,1837,1835,1814,1840,1848,1855,1857,1804,1799,1832,1851,1838,1846,1844,1865,1879,1823,1833,1861,1845,1858,1853,1913,1875,1842,1894,1845,1839,1828,1831,1845,1831,1814,1828,1861,1845,1815,1853,1850,1805,1852,1800,1833,1847,1829,1794,1908,1911,1896,1918,1933,1945,1951,1932,1952,1909,1909,1914,1936,1939,1924,1898,1891,1866,1926,1910,1899,1954,1907,1922,1903,1893,1949,2851,2754,2765,2834,2841,2846,2827,2853,2849,2776,2906,2791,2800,2678,2844,2770,2813,2919,2730,2846,2573,2589,2525,2525,2565,2587,2572,2550,2593,2568,2557,2515,2542,2587,2548,2603,2091,2032,2042,1986,2102,1992,2058,2034,2025,1995,2001,2073,2060,2033,2059,2012,2011,2060,2037,2057,2022,2021,2071,2093,2036,2013,1818,1847,1902,1859,1883,1899,1901,1876,1940,1946,1877,1942,1885,1929,1923,1879,1941,1910,1813,1967,1944,1937,1867,1843,1923,1921,2344,2380,2457,2359,2478,2416,2410,2427,2399,2415,2475,2407,2375,2423,2477,2430,2449,2457,2411,2372,2475,2479,2395,2437,2451,2411,2052,2073,2029,2052,2065,2053,2047,2105,2014,2031,2027,2080,2059,2036,2046,2060,2048,2001,2054,2085,1991,2071,2053,2062,1999,2080,2014,2002,2117,2051,2032,2719,2724,2777,2632,2780,2705,2789,2751,2782,2691,2694,2646,2827,2699,2695,2712,2664,2744,2776,2731,2747,2747,2782,2718,2524,2525,2526,2547,2527,2573,2514,2548,2546,2537,2542,2540,2530,2580,2528,2550,2536,2562,2520,2484,2561,2508,2576,2248,2234,2247,2180,2232,2214,2221,2186,2192,2238,2189,2174,2245,2180,2182,2204,2234,2187,2217,2210,2254,1975,2084,2025,2058,2062,2057,2006,1968,2003,2010,2060,2030,1964,2049,2031,2002,1980,2027,2000,2026,2009,2028,2027,2059,2046,2018,2068,2029,1978,1940,1942,1948,1987,1940,1954,1962,1926,1956,1984,1980,1953,1958,1960,1969,1936,1937,2370,2392,2448,2382,2369,2460,2412,2395,2442,2418,2435,2408,2407,2421,2416,2384,2353,2412,2372,2357,2422,2435,2390,2394,2684,2658,2620,2702,2603,2658,2728,2666,2712,2671,2679,2672,2685,2704,2682,2675,2685,2624,2678,2506,2484,2484,2536,2474,2452,2519,2521,2529,2514,2495,2525,2509,2472,2533,2478,2529,2464,2505,2458,2474,2501,2491,2505,2485,2492,2462,2477,2492,2519,2272,2269,2309,2275,2278,2296,2302,2236,2320,2295,2242,2247,2285,2242,2272,2278,2272,2295,2270,2246,2254,2279,2234,2302,2302,2129,2182,2109,2204,2198,2167,2173,2150,2198,2238,2157,2142,2203,2227,2146,2073,2166,2208,2164,2167,2193,2177,2137,2209,2173,2599,2655,2591,2540,2583,2572,2574,2551,2508,2508,2575,2580,2588,2521,2586,2532,2628,2565,2597,2604,2649,2467,2576,2555,2577,2594,2641,2523,2604,2592,2647,2582,2619,2624,2608,2617,2628,2555,2646,2630,2599,2595,2560,2664,2599,2543,2593,2583,2587,2607,2576,2572,2622,2612,2410,2406,2406,2373,2381,2384,2435,2365,2325,2383,2389,2397,2359,2387,2351,2408,2367,2420,2427,2372,2399,2387,2415,2418,2401,2336,2439,2357,2374,2333,2336,2318,2298,2355,2357,2362,2321,2381,2369,2355,2350,2367,2362,2380,2350,2370,2327,2332,2338,2360,2366,2183,2174,2211,2231,2190,2234,2219,2231,2176,2203,2204,2199,2185,2199,2154,2181,2202,2199,2222,2191,2201,2185,2198,2220,2157,2174,2196,2182,2190,2167,1919,1924,1971,1941,1855,1884,1972,1927,1929,1978,1938,1913,1965,1913,1930,1903,1937,1901,1894,1972,1909,1903,1932,1854,1858,1857,1881,1858,1860,1862,1859,1867,1862,1855,1847,1877,1832,1839,1862,1866,1833,1820,1864,1865,1859,1843,1817,1853,1854,1851,1856,1836,1877,1889,1824,2351,2357,2330,2455,2254,2359,2391,2348,2428,2380,2355,2387,2366,2393,2411,2402,2417,2370,2363,2404,2324,2370,2387,2434,2358,2488,2332,2359,2122,2088,2100,2204,2111,2108,2097,2131,2121,2171,2092,2144,2126,2106,2133,2143,2104,2150,2132,2100,2113,2124,2125,2143,2092,2125,2110,2097,2102,1946,1969,1969,1960,1947,1975,1936,1941,1967,1928,1937,1955,1926,1956,1966,1950,1923,1934,1964,1998,1950,1955,1967,1799,1797,1820,1800,1790,1835,1807,1862,1800,1815,1841,1784,1824,1815,1820,1792,1848,1849,1833,1871,1791,1815,1802,1883,1840,1818,1815,1818,1874,1805,1787,1823,1829,1812,1845,1836,1845,1849,1813,1930,1948,1885,1938,1893,1899,1934,1888,1929,1913,1942,1914,1933,1905,1919,1891,1899,1898,1916,1865,1911,1955,1910,1975,2734,2665,2687,2681,2615,2736,2696,2687,2661,2719,2711,2754,2710,2654,2687,2769,2757,2733,2650,2678,2695,2780,2708,2242,2168,2176,2206,2140,2181,2114,2263,2268,2136,2126,2175,2191,2103,2125,2151,2225,2129,2213,2185,2140,2491,2475,2502,2484,2490,2516,2499,2524,2467,2481,2494,2492,2518,2501,2480,2481,2507,2424,2554,1960,2087,2049,1954,1989,2012,1999,1992,1986,2043,2008,2019,1970,1974,2022,2008,2059,1975,2011,1997,1995,1978,1934,2020,2053,2562,2722,2729,2706,2682,2646,2674,2709,2664,2628,2726,2684,2727,2703,2668,2677,2661,2677,2723,2617,2656,2690,2633,2582,2628,2730,2650,2604,2575,2586,2517,2595,2536,2596,2582,2603,2543,2555,2601,2523,2592,2601,2597,2585,2599,2525,2530,2566,2555,2504,2564,2342,2388,2321,2361,2380,2351,2362,2322,2343,2319,2370,2368,2369,2324,2362,2343,2335,2306,2339,2350,2670,2704,2702,2683,2739,2731,2760,2683,2701,2736,2796,2713,2687,2713,2691,2713,2727,2695,2710,2699,2720,2725,2528,2571,2500,2518,2585,2532,2555,2533,2526,2506,2593,2583,2553,2584,2536,2550,2547,2571,2556,2532,2543,2545,2614,2593,2553,2516,2338,2385,2350,2386,2327,2334,2368,2410,2322,2275,2389,2360,2361,2366,2374,2345,2320,2379,2364,2378,2344,2371,2392,2325,2594,2600,2610,2560,2598,2607,2647,2578,2620,2609,2633,2608,2627,2614,2609,2594,2597,2603,2628,2605,2605,2552,2609,2580,2613,2592,2617,2564,2639,2605,2603,2632,2592,2608,2654,2638,2625,2662,2662,2627,2649,2627,2616,2626,2594,2640,2603,2604,2577,2615,2610,2655,2611,2651,2650,2618,2616,2612,2631,2366,2370,2347,2328,2325,2337,2372,2365,2345,2371,2420,2439,2352,2381,2375,2371,2398,2384,2316,2364,2338,2400,2428,2359,2358,2350,2405,2695,2685,2707,2675,2694,2742,2672,2674,2696,2699,2706,2683,2683,2666,2692,2706,2678,2724,2743,2650,2702,2696,2685,2695,2693,2409,2417,2429,2498,2439,2440,2538,2407,2508,2525,2460,2427,2516,2523,2423,2440,2506,2493,2444,2748,2614,2653,2669,2600,2669,2757,2675,2658,2637,2583,2712,2659,2674,2697,2651,2744,2652,2700,2723,2728,2557,2667,2628,2632,2758,2804,2822,2776,2721,2789,2774,2726,2783,2792,2797,2802,2771,2765,2740,2738,2771,2735,2790,2745,2791,2727,2468,2406,2468,2476,2478,2460,2447,2454,2527,2400,2431,2460,2460,2494,2481,2632,2667,2689,2672,2604,2619,2676,2673,2667,2608,2638,2631,2649,2643,2650,2644,2586,2623,2647,2639,2606,2630,2635,2672,2665,2675,2621,2603,2706,2611,2411,2439,2398,2409,2400,2462,2448,2456,2432,2477,2390,2462,2431,2467,2481,2442,2439,2444,2466,2418,2439,2376,2456,2413,2390,2418,2373,1918,1941,1981,1965,1948,1946,1939,1879,2009,1950,1907,1959,1955,1912,1922,1946,1882,1968,1920,2027,1996,1995,2033,2020,2061,1966,2016,2021,2063,2007,2078,2078,2039,2050,2067,2069,2027,1989,1977,2009,2073,2058,2599,2622,2604,2628,2602,2601,2579,2575,2558,2570,2567,2589,2588,2631,2566,2653,2608,2586,2608,2609,2554,2589,2623,2580,2594,2568,2635,2659,2661,2659,2677,2686,2648,2701,2657,2663,2697,2649,2686,2677,2715,2699,2691,2710,2724,2695,2647,2633,2662,2665,2673,2650,2658,2693,2435,2487,2413,2430,2447,2406,2441,2423,2442,2479,2380,2419,2450,2357,2445,2400,2442,2468,2407,2398,2462,1936,2017,2013,1967,1998,1942,1979,2081,2055,2058,1952,1994,2033,2008,1982,2047,1996,1978,1925,1995,2055,1963,1959,1954,1994,1908,2008,1954,1925,2491,2416,2454,2434,2436,2452,2302,2451,2370,2432,2364,2431,2409,2448,2344,2408,2445,2383,2429,2463,2371,2398,2462,2373,2403,2323,2401,2391,2432,1994,1991,1978,2000,2010,1988,1999,1989,1942,1904,1982,2051,2007,2008,1988,1933,1991,1989,1991,2013,2004,2686,2658,2670,2682,2653,2662,2666,2640,2655,2665,2685,2674,2641,2707,2656,2677,2691,2667,2698,2705,2710,2633,2652,2691,2700,2666,2684,2667,2706,2628,2657,2380,2389,2373,2351,2394,2384,2402,2398,2416,2326,2391,2413,2423,2383,2374,2403,2412,2429,2412,2378,2404,2422,2414,2422,2445,2389,2428,2395,2346,2396,2427,2420,2420,2434,2407,2429,2408,2367,2406,2358,2400,2425,2393,2769,2680,2749,2745,2741,2686,2693,2750,2728,2754,2768,2724,2733,2691,2787,2727,2760,2722,2763,2715,2720,2736,2738,2728,2720,2705,2699,2479,2456,2506,2461,2485,2487,2439,2514,2490,2472,2494,2467,2489,2466,2494,2442,2468,2454,2469,2449,2509,2440,2469,2507,1886,1882,1923,1923,1936,1960,2050,1904,1918,1923,1927,1948,1929,1949,1894,1946,1909,1941,1976,1942,1926,1796,1794,1802,1767,1803,1764,1818,1788,1774,1798,1820,1770,1775,1784,1774,1774,1763,1803,1771,1752,1769,1796,1780,1783,1867,1816,1842,1897,1842,1866,1866,1839,1838,1847,1862,1893,1812,1886,1878,1887,1848,1882,1851,1868,1843,1830,1863,1829,1864,1871,1909,1820,2610,2547,2602,2592,2574,2589,2601,2542,2578,2639,2669,2587,2617,2624,2620,2587,2606,2725,2624,2662,2626,2616,2600,2644,2158,2193,2206,2160,2102,2194,2249,2206,2187,2107,2195,2144,2044,2154,2202,2141,2191,2173,2134,2181,2196,2118,2149,2110,2136,2316,2313,2349,2345,2323,2346,2310,2323,2305,2320,2295,2280,2302,2314,2292,2334,2346,2330,2340,2360,2271,2340,2353,2341,2337,2304,2319,2342,2176,2078,2059,2099,2123,2120,2072,2097,2088,2085,2133,2103,2065,2088,2109,2096,2154,2077,2126,2110,2098,2062,2113,2112,2082,2450,2506,2475,2548,2417,2507,2449,2511,2466,2477,2411,2468,2482,2488,2507,2497,2507,2455,2468,2399,2401,2336,2390,2342,2356,2307,2377,2281,2353,2371,2339,2333,2334,2313,2391,2327,2382,2352,2347,2346,2358,2389,2402,1917,1975,1928,1929,1939,1964,1942,1914,1994,1972,1939,1917,1940,1930,1948,1929,1934,1947,2000,1937,1912,2018,1981,2015,2003,2020,1982,2000,1993,1970,1971,1965,1960,1966,1995,1973,1969,2006,1954,1989,1976,1982,1967,1979,1964,1951,1961,1977,2820,2711,2792,2771,2730,2793,2767,2852,2741,2778,2792,2834,2752,2823,2826,2708,2796,2744,2743,2718,2850,2490,2448,2489,2489,2427,2556,2485,2518,2460,2503,2520,2508,2497,2522,2502,2457,2483,2524,2473,2467,2506,2520,2483,2542,2481,1948,1940,1981,1958,1959,2028,2005,2070,2070,2046,1932,2026,1994,2013,2012,2015,1958,1999,2060,1980,1969,1982,2034,2331,2242,2283,2304,2223,2279,2253,2253,2337,2214,2265,2261,2293,2276,2279,2277,2271,2283,2236,2309,2272,2301,2270,2266,2307,2230,2299,2251,2587,2627,2599,2586,2587,2552,2592,2569,2550,2648,2621,2629,2590,2556,2520,2637,2630,2622,2576,2622,2631,2640,2627,2614,2471,2418,2433,2482,2448,2426,2467,2465,2441,2458,2391,2401,2463,2418,2480,2473,2428,2424,2028,2069,2017,2056,2047,1986,1965,2040,2037,1996,2021,2003,2011,1979,2000,1970,2002,2018,1998,1993,2630,2642,2664,2609,2573,2585,2692,2623,2577,2647,2656,2601,2583,2605,2569,2676,2617,2574,2578,2627,2647,2569,2606,2593,2655,2637,2586,2599,2578,2511,2544,2547,2578,2580,2526,2594,2575,2542,2535,2517,2607,2535,2520,2579,2542,2523,2585,2585,2574,2545,2539,2548,2592,2559,2589,2620,2608,2600,2667,2589,2569,2593,2609,2606,2593,2590,2621,2558,2643,2621,2607,2616,2585,2591,2598,2608,2424,2441,2484,2431,2463,2449,2442,2435,2474,2371,2447,2458,2452,2415,2409,2438,2433,2469,2448,2382,2429,2433,2506,2443,2411,2435,2454,2487,2461,2442,2493,2446,2383,2471,1878,1893,1905,1910,1902,1927,1937,1874,1945,1935,1942,1946,1952,1891,1843,1888,1876,1934,1934,1942,1985,1782,1818,1799,1815,1795,1768,1839,1811,1793,1827,1758,1772,1807,1822,1820,1798,1782,1789,1789,1810,1785,1828,1796,1978,1998,2033,1981,1981,1982,2007,2027,1985,2040,1983,1997,1982,2000,1998,1982,1987,1998,2018,1970,2024,2009,2021,1989,1985,2000,1993,1988,2006,2000,2023,1986,2008,1939,1967,2003,2056,2001,1997,1986,1978,2026,1993,1958,2010,2010,2003,2034,1996,1996,2019,2003,1969,2006,2024,2021,1942,2028,1948,1994,1987,2802,2785,2782,2809,2785,2852,2838,2751,2867,2745,2809,2859,2829,2836,2760,2828,2849,2814,2869,2807,2803,2809,2842,2775,2821,2458,2420,2484,2510,2511,2472,2438,2484,2473,2530,2550,2457,2460,2465,2474,2507,2528,2502,2491,2466,2502,2468,2385,2591,2441,2610,2590,2615,2592,2484,2591,2475,2583,2638,2677,2497,2411,2477,2600,2677,2561,2615,2523,2647,2547,2604,2637,2584,2631,2632,2595,2666,2635,2579,2596,2646,2624,2666,2627,2612,2586,2577,2596,2611,2611,2616,2395,2401,2458,2393,2459,2378,2428,2440,2357,2416,2366,2448,2398,2406,2406,2398,2391,2404,2429,2456,2404,2414,2437,2402,2407,2440,2450,2433,2396,2403,2625,2643,2575,2664,2662,2662,2623,2663,2647,2655,2629,2665,2632,2634,2650,2681,2687,2597,2665,2624,2670,2606,2662,2612,2615,2633,2647,2661,2630,2612,2682,2448,2437,2454,2462,2447,2377,2448,2472,2435,2461,2510,2461,2422,2468,2432,2445,2411,2458,2442,2427,2443,2465,2450,2480,2441,2438,2298,2356,2327,2309,2245,2316,2353,2380,2358,2315,2345,2384,2316,2256,2342,2315,2332,2295,2277,2327,2352,2312,2304,2345,2572,2590,2583,2578,2540,2553,2569,2582,2604,2586,2608,2527,2554,2603,2550,2562,2543,2561,2534,2526,2558,2500,2566,2549,2544,2535,2540,2542,2578,2570,2548,2531,2553,2520,2563,2533,2540,2570,2553,2585,2621,2557,2624,2609,2609,2584,2609,2572,2625,2614,2569,2583,2572,2613,2626,2606,2575,2566,2583,2605,2644,2626,2577,2595,2589,2612,2600,2606,2595,2582,2549,2371,2361,2393,2416,2368,2435,2379,2268,2400,2348,2369,2397,2422,2349,2377,2382,2389,2350,2377,2379,2380,2418,2436,2328,2490,2383,2401,2353,1951,1995,1950,1943,1946,2026,1965,1932,1932,1925,2013,2027,1877,1968,1960,2039,2005,1964,1878,1877,1894,1865,1868,1864,1889,1899,1876,1888,1868,1840,1858,1882,1861,1874,1852,1853,1859,1906,1870,1851,1889,1876,2937,2694,2819,2826,2828,2795,2796,2806,2810,2893,2770,2836,2883,2926,2842,2913,2805,2745,2783,2811,2783,2749,2777,2893,2767,2822,2786,2592,2555,2506,2608,2557,2641,2634,2584,2602,2582,2557,2599,2643,2584,2606,2584,2537,2565,2613,2541,2569,2576,2548,2577,2481,2497,2493,2443,2499,2515,2512,2514,2487,2494,2484,2532,2487,2513,2494,2483,2483,2572,2478,2464,2479,2477,2507,2460,2473,2157,2081,2087,2098,2058,2125,2051,2051,2082,2046,2036,2030,2127,2048,2060,2048,2128,2122,2051,2088,2101,2044,2035,2134,2045,2073,2090,2141,2311,2368,2278,2343,2266,2297,2274,2358,2331,2351,2354,2293,2313,2266,2340,2323,2332,2286,2636,2549,2573,2644,2679,2628,2582,2548,2645,2648,2631,2575,2573,2578,2578,2624,2561,2547,2632,2600,2557,2598,2621,2583,2599,2631,2608,2591,2491,2494,2515,2483,2568,2450,2497,2479,2448,2514,2467,2507,2524,2476,2456,2485,2571,2451,2482,2516,2495,2487,2476,2483,2480,1846,1861,1861,1947,1879,1960,1924,2012,1919,1949,1798,1949,1919,1997,1948,1956,1908,1907,1901,1925,1945,1945,1953,1838,2006,1884,1857,1858,1827,1852,1859,1828,1852,1813,1858,1850,1895,1869,1878,1845,1835,1830,1864,1860,1845,1878,1830,1845,1834,1845,1851,1826,1867,2608,2656,2666,2619,2704,2678,2726,2719,2731,2563,2653,2637,2677,2653,2588,2673,2723,2700,2699,2666,2655,2737,2664,2605,2629,2692,2851,2637,2658,2625,2655,2687,2666,2713,2672,2622,2666,2647,2671,2668,2646,2623,2690,2637,2660,2646,2700,2632,2657,2665,2654,2679,2643,2639,2644,2405,2470,2454,2425,2406,2484,2363,2417,2433,2420,2483,2419,2481,2403,2434,2418,2430,2445,2456,2447,2401,2426,2522,2399,2396,2391,2376,2403,2441,2463,1937,2005,1982,1917,1981,2013,1941,1971,1963,2004,1949,1962,1984,1949,1933,1975,1927,1971,1922,1945,1886,1953,1940,1982,1847,1916,1880,1856,1868,1871,1880,1896,1873,1885,1845,1894,1864,1914,1858,1834,1895,1920,1840,1899,1898,1872,1898,1869,1860,1948,1984,1924,1965,1909,1961,1979,1957,1961,1902,1946,1905,1940,1962,1963,1954,1987,1952,1956,1980,1965,1961,2636,2581,2696,2592,2662,2736,2613,2628,2714,2616,2654,2716,2610,2674,2658,2557,2585,2570,2667,2603,2601,2599,2627,2579,2578,2600,2639,2603,2620,2585,2625,2600,2598,2607,2607,2639,2660,2586,2392,2431,2334,2354,2335,2370,2346,2424,2376,2343,2410,2360,2411,2376,2350,2366,2367,2409,2344,2317,2291,2356,2553,2584,2578,2549,2585,2615,2590,2579,2564,2585,2565,2598,2605,2504,2571,2571,2563,2578,2540,2451,2465,2476,2481,2504,2495,2474,2453,2520,2462,2466,2453,2495,2482,2516,2524,2506,2439,2476,2488,2488,2469,2481,2484,2515,2471,2493,2517,2505,2509,2526,2532,2521,2499,2495,2545,2482,2470,2517,2537,2540,2492,2537,2523,2520,2519,2516,2567,2506,2539,2533,2527,2513,2509,2516,2511,2492,2551,2053,2067,2087,2015,2021,1988,2047,1994,2088,2106,1973,1988,2046,2023,2032,2058,2100,2063,2052,2036,2021,2114,1995,2032,2046,2468,2530,2374,2491,2450,2495,2421,2471,2426,2448,2433,2422,2406,2547,2400,2460,2486,2448,2443,2488,2463,2434,2492,1964,1978,1976,1959,1959,1977,1992,1972,1953,1992,1936,1932,1997,1962,1967,1969,1957,2014,1938,1957,1946,1960,1946,2537,2596,2674,2627,2599,2592,2488,2580,2560,2526,2589,2565,2487,2539,2570,2546,2522,2485,2566,2563,2490,2608,2559,2468,2639,2663,2740,2692,2683,2661,2722,2702,2672,2681,2703,2684,2670,2701,2710,2624,2671,2685,2697,2703,2675,2680,2723,2685,2695,2717,2416,2392,2376,2434,2393,2290,2315,2394,2435,2472,2402,2372,2394,2443,2260,2399,2348,2393,2398,2440,2403,2451,2505,2570,2658,2540,2596,2507,2615,2566,2529,2541,2606,2534,2622,2627,2683,2583,2589,2507,2545,2595,2574,2584,2596,2576,2648,2532,2521,2547,2588,2555,2540,2540,2544,2540,2563,2536,2558,2554,2561,2531,2512,2515,2561,2522,2513,2566,2527,2538,2549,2512,2564,2533,2559,2576,2559,2549,2267,2244,2282,2260,2231,2220,2273,2252,2240,2217,2203,2241,2281,2258,2338,2239,2229,2251,2246,2234,2270,2258,2228,2264,2233,2187,2258,2257,2224,2183,2289,1901,1922,1928,1908,1941,1931,1895,1907,1935,1873,1933,1944,1976,1912,1946,1903,1907,1893,1921,1953,1926,1944,1917,2794,2754,2874,2847,2782,2811,2709,2810,2790,2774,2731,2808,2800,2777,2753,2837,2791,2798,2812,2797,2776,2472,2473,2472,2427,2501,2476,2459,2498,2485,2459,2431,2459,2457,2465,2426,2460,2405,2455,2453,2480,2445,2495,2445,2474,2454,2425,2480,2511,2537,2471,2545,2492,2566,2490,2519,2558,2550,2486,2522,2570,2555,2544,2508,2492,2627,2556,2580,2556,2520,2515,2504,2483,2489,2484,2434,2468,2439,2469,2473,2493,2465,2446,2483,2460,2483,2492,2489,2486,2452,2416,2482,2467,2461,2467,2457,2447,2484,2451,2462,2474,2414,2491,2461,2435,2469,2458,2490,2497,2488,2494,2461,2488,2478,2485,2504,2486,2495,2478,2475,2497,2514,2510,2505,2470,2512,2519,2484,2533,2513,2519,2498,2484,2480,2494,2493,2308,2336,2355,2293,2377,2347,2321,2342,2371,2353,2323,2350,2362,2350,2397,2326,2353,2317,2306,2396,2431,2307,2330,2317,2376,2662,2625,2682,2673,2651,2601,2644,2669,2649,2678,2659,2666,2646,2624,2657,2626,2674,2626,2651,2629,2649,2632,2640,2447,2469,2441,2444,2477,2453,2500,2492,2498,2440,2490,2469,2476,2473,2494,2485,2521,2496,2462,2422,2479,2454,2474,2503,2465,2487,2481,2456,1855,1909,1875,1941,1956,1962,1993,1922,1884,1935,1916,1948,1961,1952,1950,1935,2008,1930,2464,2491,2425,2480,2508,2471,2488,2423,2492,2442,2450,2422,2479,2534,2424,2462,2457,2466,2441,2404,2544,2584,2463,2474,2467,2487,2494,2477,2475,2059,2056,2059,2060,2035,2064,2026,2038,2015,2021,2034,2043,2069,2008,2008,2005,2113,2069,2020,2004,2051,2098,2002,2882,2953,2874,2871,2869,2904,2958,2892,2929,2830,2916,2853,2844,2761,2951,2875,2855,2863,2961,2818,2774,2878,2848,2882,2963,2430,2435,2428,2427,2418,2452,2539,2410,2439,2469,2408,2509,2417,2465,2452,2445,2536,2463,2520,2398,2422,2392,2440,2419,2477,2414,2365,2452,2470,2450,2475,2434,2416,2477,2701,2636,2667,2668,2671,2661,2659,2625,2652,2635,2567,2712,2595,2600,2568,2598,2636,2676,2691,2670,2753,2708,2712,2656,2688,2671,2674,2691,2697,2711,2679,2733,2696,2670,2665,2764,2712,2732,2730,2778,2699,2710,2732,2690,2730,2712,2706,2713,2711,2700,2463,2424,2408,2450,2495,2434,2472,2462,2434,2467,2481,2446,2464,2523,2433,2436,2510,2414,2437,2400,2439,2665,2634,2542,2581,2660,2568,2635,2650,2540,2597,2645,2601,2613,2572,2648,2682,2641,2677,2657,2614,2646,2577,2678,2631,2595,2610,2646,2642,2670,2613,2631,2690,2661,2643,2666,2649,2659,2641,2630,2637,2646,2646,2659,2654,2624,2665,2658,2613,2675,2645,2677,2666,2427,2331,2390,2417,2417,2398,2400,2386,2388,2366,2346,2364,2377,2391,2412,2416,2417,2433,2338,2382,2403,2427,2410,2387,2419,2378,1998,1966,1912,1941,1953,1964,1942,1958,1947,1929,1923,1903,1941,1892,1907,1887,1937,1921,1949,1917,1941,1922,1910,1936,1923,1913,2698,2777,2702,2631,2693,2720,2747,2690,2660,2734,2650,2726,2733,2624,2622,2672,2627,2709,2648,2674,2703,2704,2761,2730,2660,2725,2733,2708,2726,2684,2704,2660,2653,2660,2603,2698,2697,2624,2667,2661,2722,2600,2686,2714,2667,2680,2692,2628,2652,2670,2700,2663,2685,2666,2663,2359,2386,2368,2374,2438,2403,2369,2345,2408,2383,2311,2356,2341,2363,2395,2326,2376,2404,2381,2349,2387,2342,2417,2614,2645,2671,2616,2642,2638,2635,2650,2660,2679,2659,2608,2615,2600,2636,2660,2640,2641,2617,2615,2625,2640,2646,2635,2627,2591,2366,2316,2303,2353,2263,2298,2331,2355,2349,2312,2344,2336,2293,2337,2354,2340,2375,2294,2370,2346,2310,2305,2328,2333,1964,1956,1899,2031,1981,1958,1948,1959,1973,1985,1955,1972,1962,1928,1957,1962,1865,1979,2596,2551,2596,2610,2507,2588,2637,2562,2601,2603,2652,2635,2593,2618,2657,2640,2632,2613,2619,2589,2642,2596,2633,2536,2603,2604,2300,2358,2298,2287,2333,2345,2315,2287,2342,2338,2312,2291,2324,2309,2325,2365,2349,2274,2310,2282,2165,2168,2184,2085,2197,2120,2176,2143,2092,2099,2140,2142,2210,2169,2185,2151,2143,2169,2133,2145,2119,2170,2160,2142,2158,2152,2148,2171,2149,2136,2491,2522,2538,2497,2495,2499,2504,2549,2500,2496,2459,2480,2501,2532,2483,2533,2480,2531,2529,2522,2492,2516,2510,2480,2472,2484,2458,2522,2508,2501,2507,2487,2477,2476,2499,2508,2497,2512,2505,2559,2517,2514,2518,2500,2491,2494,2545,2525,2495,2496,2535,2477,2530,2496,2479,2471,2516,2553,2408,2443,2411,2387,2420,2415,2387,2452,2450,2405,2379,2365,2392,2394,2421,2443,2393,2447,2390,2388,2408,2441,2412,2446,2450,2430,2403,2418,2414,2462,2037,2018,2037,1986,2068,1978,2024,2024,1964,2067,1999,2034,1979,2018,2006,2029,2027,2006,2024,2034,2014,1963,1995,1985,2004,2030,2042,2307,2347,2287,2332,2307,2344,2335,2353,2373,2312,2335,2283,2371,2314,2342,2357,2302,2341,2295,2358,2299,2372,2317,2301,2322,2350,2355,2298,2264,2279,2280,2270,2280,2288,2298,2252,2303,2285,2273,2288,2294,2237,2312,2276,2296,2283,1946,1893,1942,1883,1967,1952,1910,1934,1996,1884,1873,1985,1914,1899,1948,1954,1978,1943,1949,1947,1951,1944,1938,1959,2682,2712,2671,2689,2747,2691,2689,2673,2746,2718,2668,2691,2682,2689,2660,2730,2728,2782,2637,2658,2709,2702,2731,2673,2746,2701,2685,2661,2703,2662,2686,2717,2700,2682,2670,2711,2704,2713,2622,2658,2685,2676,2659,2681,2645,2630,2696,2678,2497,2496,2532,2605,2535,2541,2548,2491,2570,2525,2532,2525,2558,2518,2531,2539,2562,2532,2520,2519,2536,2538,2571,2575,2527,2523,2575,2533,2561,2557,2547,2557,2478,2465,2435,2459,2420,2485,2453,2468,2440,2501,2448,2471,2463,2503,2433,2420,2430,2446,2460,2479,2473,2458,2490,2450,2470,2284,2282,2304,2281,2271,2243,2250,2260,2237,2257,2250,2258,2308,2236,2283,2275,2261,2256,2254,2283,2289,2210,2230,2298,2223,2109,2175,2151,2216,2149,2152,2225,2165,2195,2227,2161,2173,2180,2226,2218,2180,2205,2220,2715,2724,2683,2704,2707,2814,2746,2756,2716,2713,2720,2738,2697,2670,2666,2733,2725,2716,2753,2764,2724,2738,2679,2710,2626,2717,2782,2400,2408,2423,2448,2347,2374,2382,2433,2398,2373,2457,2397,2382,2392,2418,2397,2476,2418,2388,2463,2389,2372,2329,2397,2413,2374,2329,2409,2388,2444,2400,2459,2358,2438,2517,2644,2592,2554,2575,2591,2583,2587,2530,2530,2527,2629,2579,2571,2626,2604,2489,2573,2606,2570,2620,2536,2545,2570,2550,2544,2558,2489,2488,2547,2553,2551,2539,2551,2553,2523,2519,2518,2552,2563,2547,2579,2591,2616,2590,2593,2562,2592,2565,2608,2614,2581,2627,2589,2585,2617,2549,2667,2598,2567,2621,2575,2561,2570,2349,2391,2377,2393,2369,2360,2357,2338,2306,2332,2412,2371,2416,2406,2389,2386,2341,2398,2394,2352,2367,2369,2322,2287,2322,2329,2343,2315,2429,2437,2457,2429,2423,2442,2436,2393,2445,2468,2432,2429,2431,2426,2406,2392,2439,2460,2417,2462,2432,2428,2448,2455,2402,2389,2403,2456,2443,2048,2033,2112,2114,2087,2026,2018,2041,2077,1992,2119,2054,2141,2121,2100,2084,2124,2085,2090,2098,2053,2061,2109,2127,2141,2027,2358,2430,2384,2428,2444,2425,2417,2388,2389,2359,2396,2375,2375,2366,2380,2386,2384,2404,2317,2371,2420,2374,2401,2422,2443,2377,2409,2349,2401,2419,2369,2420,2661,2667,2659,2631,2652,2601,2695,2637,2646,2639,2673,2655,2659,2659,2645,2606,2669,2634,2601,2604,2627,2361,2355,2409,2391,2422,2448,2420,2393,2354,2377,2413,2420,2387,2411,2361,2355,2366,2410,2400,1977,1950,1986,2029,1992,1974,2022,2027,1936,1993,2002,1973,1982,1983,1969,1967,2030,1934,2037,1984,1989,2001,1987,2042,1969,1994,1982,2321,2328,2309,2306,2358,2314,2291,2349,2342,2361,2367,2282,2274,2328,2301,2270,2304,2241,2342,2318,2305,2352,2281,2262,2282,2307,2343,2589,2547,2540,2464,2527,2566,2559,2543,2499,2531,2512,2521,2586,2513,2528,2547,2499,2535,2544,2553,2513,2562,2539,2520,2489,2544,2555,2557,2530,2544,2526,2489,2534,2533,2535,2553,2506,2563,2549,2502,2514,2524,2553,2525,2540,2503,2534,2530,2511,2561,2571,2533,2532,2496,2529,2637,2594,2635,2595,2647,2652,2661,2621,2613,2631,2637,2617,2621,2596,2590,2673,2615,2655,2602,2610,2358,2385,2394,2386,2385,2324,2377,2375,2354,2397,2368,2341,2435,2326,2380,2407,2411,2383,2348,2347,2415,2333,2347,2554,2622,2598,2561,2622,2618,2609,2595,2610,2595,2585,2667,2603,2569,2648,2616,2628,2600,2617,2632,2576,2601,2443,2450,2466,2455,2399,2451,2436,2428,2451,2467,2450,2447,2354,2423,2453,2376,2398,2437,2449,2501,2432,2431,2442,2435,2452,2454,1964,1969,1955,1935,1897,1947,1978,1926,1905,1908,1988,1982,1973,1986,1898,1936,1963,1959,1911,2002,1936,1982,1949,1955,1933,1952,1949,1934,1998,1961,1951,1994,1954,1954,2002,2017,1954,1953,2012,1953,2615,2599,2605,2598,2612,2738,2653,2661,2561,2675,2634,2689,2594,2662,2644,2567,2724,2590,2634,2606,2698,2632,2611,2623,2658,2712,2558,2672,2706,2674,2689,2678,2687,2612,2662,2678,2648,2639,2690,2701,2653,2658,2653,2652,2701,2702,2656,2644,2679,2693,2702,2451,2464,2421,2498,2507,2435,2395,2441,2462,2480,2503,2457,2414,2472,2467,2502,2494,2474,2434,2472,2462,2455,2527,2491,2494,2476,2467,2397,2464,2446,1982,2009,1962,1928,1886,1932,1963,1987,1994,1887,1877,1941,1973,1912,1960,1912,1987,1925,1913,1926,1964,1952,1904,1953,1944,1897,1902,1979,1881,1800,1794,1841,1828,1831,1818,1797,1828,1797,1810,1800,1823,1841,1852,1834,1839,1819,1819,1814,1818,1835,1782,1825,1845,1783,1835,1833,1804,1817,1791,1840,1831,2877,2853,2734,2869,2864,2948,2861,2816,2938,2830,2879,2848,2878,2822,2965,2889,2806,2746,2742,2865,2887,2766,2846,2960,2936,2450,2550,2508,2507,2472,2551,2530,2469,2515,2463,2505,2517,2476,2509,2496,2490,2545,2554,2487,2531,2428,2516,2509,2473,2494,2427,2141,2089,2035,2143,2144,2145,2143,2178,2178,2128,2148,2120,2087,2134,2116,2093,2196,2169,2196,2138,2183,2157,2077,2038,2076,2081,2046,2053,2074,2104,2073,2064,2088,2116,2070,2026,2051,2083,2088,2062,2055,2051,2049,2045,2049,2060,2092,2083,2919,2802,2844,2775,2806,2825,2822,2758,2907,2867,2865,2800,2772,2823,2794,2857,2774,2746,2861,2777,2831,2528,2507,2581,2554,2557,2578,2523,2536,2569,2529,2516,2483,2570,2550,2548,2528,2512,2543,2578,2547,2435,2420,2532,2473,2508,2453,2524,2512,2412,2432,2470,2479,2477,2456,2467,2449,2335,2490,2449,2456,2501,2417,2517,2596,2514,2521,2535,2570,2568,2503,2512,2511,2509,2532,2550,2574,2502,2531,2573,2505,2547,2533,2583,2533,2519,2520,2533,2543,2560,2554,2540,2571,2557,2587,2400,2441,2439,2436,2408,2407,2454,2457,2451,2408,2478,2449,2413,2380,2457,2454,2456,2400,2422,2423,2476,2461,2171,2110,2123,2098,2152,2095,2167,2159,2134,2109,2123,2115,2136,2115,2132,2181,2179,2065,2146,2099,2059,2155,2203,2161,2123,2183,2486,2456,2505,2502,2490,2492,2498,2488,2514,2482,2457,2525,2524,2512,2591,2503,2483,2325,2329,2301,2303,2286,2263,2331,2291,2266,2301,2294,2292,2310,2343,2282,2259,2301,2277,2320,2315,2279,2325,2302,2317,2269,2315,2286,1971,1943,1973,1974,1958,1969,1972,2000,1965,1945,1972,1953,1978,1965,1969,1955,1986,1959,1974,1964,1983,1969,1920,2832,2929,2837,2783,2910,2884,2771,2807,2923,2801,2792,2811,2823,2841,2746,2892,2934,2874,2866,2804,2870,2739,2905,2822,2858,2836,2436,2447,2455,2478,2497,2483,2486,2465,2472,2455,2534,2412,2488,2472,2457,2477,2446,2475,2481,2449,2509,2508,2470,2451,1999,2007,2021,1980,1986,1946,1993,1998,2004,1969,1952,1958,1987,1954,1991,1992,1959,1935,2002,1992,2888,2768,2972,2799,2896,2851,2879,2854,2863,2915,2888,2844,2882,2791,2949,2832,2951,2934,2962,2850,2813,2871,2862,2617,2586,2593,2567,2623,2662,2598,2537,2615,2555,2596,2550,2593,2535,2647,2622,2603,2623,2592,2532,2621,2544,2560,2681,2697,2684,2675,2690,2690,2698,2672,2679,2725,2685,2642,2697,2669,2658,2632,2679,2680,2680,2635,2704,2707,2695,2689,2691,2640,2693,2700,2671,2685,2676,2654,2690,2700,2661,2673,2668,2450,2385,2464,2506,2495,2495,2452,2478,2536,2486,2448,2522,2506,2454,2433,2455,2470,2520,2454,2471,2475,2451,2551,2401,1921,1916,1920,1967,1933,1954,1862,1928,1955,1947,1957,1949,1948,1906,1966,1891,1887,1879,1945,1927,1945,1926,1893,1916,1887,1914,1877,1877,1887,1860,1888,1924,1929,1889,1886,1853,1905,1871,1849,1840,1883,1928,1888,1873,1873,2868,2932,2799,2966,2858,2872,2830,2875,2766,2852,2882,2943,2873,2798,2890,2837,2736,2964,2863,2896,2807,2851,2841,2843,2794,2812,2848,2777,2776,2799,2501,2488,2527,2528,2538,2554,2490,2575,2574,2579,2494,2573,2453,2558,2563,2535,2567,2843,2853,2890,2908,2922,2875,2863,2846,2847,2876,2872,2896,2851,2850,2910,2858,2833,2853,2858,2848,2875,2864,2830,2858,2838,2902,2854,2843,2555,2549,2580,2578,2560,2516,2517,2566,2538,2563,2565,2515,2584,2581,2524,2488,2575,2520,2524,2568,2553,2539,2605,2537,2582,2555,2709,2671,2644,2676,2639,2633,2627,2676,2673,2642,2690,2672,2669,2654,2623,2690,2661,2689,2686,2629,2693,2675,2672,2401,2452,2470,2433,2476,2435,2397,2378,2449,2410,2438,2433,2419,2422,2424,2460,2469,2428,2431,2428,1967,1914,1950,1943,1937,1993,1942,1965,1954,1977,1974,1996,1905,1894,1936,1936,1951,1940,1993,1955,1971,1955,2643,2487,2674,2678,2624,2645,2673,2691,2653,2636,2619,2618,2637,2715,2682,2626,2596,2679,2648,2713,2580,2625,2664,2691,2702,2663,2686,2654,2601,2730,2709,2640,2676,2703,2678,2654,2675,2682,2706,2669,2680,2627,2688,2682,2700,2667,2548,2494,2487,2501,2449,2519,2514,2560,2504,2571,2557,2541,2501,2501,2521,2549,2472,2475,2511,2501,2506,2473,1903,1920,1936,1911,1915,1939,1960,1917,1928,1929,1972,1894,1898,1932,1930,1973,1882,1891,1945,1867,1888,1860,1893,1932,1898,1943,1854,1822,1839,1907,1870,1851,1818,1845,1859,1853,1903,1833,1820,1846,1834,1846,1886,1847,1866,1876,1825,1860,1864,1857,1871,1885,1883,1813,1850,2605,2723,2704,2678,2677,2702,2753,2725,2700,2842,2753,2745,2691,2648,2639,2728,2631,2756,2823,2781,2609,2567,2578,2571,2555,2589,2583,2560,2575,2600,2620,2541,2595,2552,2575,2578,2589,2545,2541,2526,2573,2598,2587,2562,2571,2546,2591,2529,2534,2613,2580,2536,2547,2583,2554,2594,2622,2581,2559,2545,2591,2546,2545,2571,2583,2531,2569,2562,2573,2589,2590,2560,2620,2544,2548,2583,2574,2579,2573,2602,2619,2593,2612,2633,2632,2642,2658,2617,2626,2646,2613,2609,2635,2592,2634,2656,2605,2584,2615,2610,2599,2584,2639,2301,2384,2338,2326,2350,2339,2354,2320,2420,2386,2337,2397,2398,2403,2410,2372,2347,2401,2347,2399,2359,2384,2297,2363,2556,2577,2587,2582,2586,2614,2632,2555,2536,2547,2606,2527,2606,2573,2606,2582,2596,2563,2583,2591,2591,2579,2561,2588,2567,2572,2348,2402,2364,2385,2360,2336,2402,2333,2384,2402,2364,2388,2314,2397,2323,2380,2360,2453,2424,2327,2394,2374,2567,2525,2584,2662,2596,2489,2570,2592,2567,2513,2606,2483,2498,2540,2538,2625,2561,2483,2716,2492,2596,2584,2491,2621,2554,2590,2574,2547,2560,2561,2557,2556,2625,2540,2582,2571,2568,2606,2568,2579,2576,2543,2558,2562,2593,2622,2628,2654,2562,2600,2632,2631,2631,2638,2612,2635,2650,2652,2653,2602,2592,2558,2621,2646,2612,2586,2617,2616,2410,2375,2374,2433,2461,2383,2400,2398,2369,2351,2366,2399,2409,2426,2386,2439,2410,2461,2413,2369,2381,2436,2407,2410,2403,2409,1921,1928,1911,1851,1873,1986,1845,1927,1878,1848,1927,1940,1904,1859,1818,1880,1879,1861,1922,1904,1898,1962,1896,1899,1902,1766,1850,1834,1802,1808,1819,1811,1822,1828,1806,1830,1809,1818,1817,1831,1792,1770,1812,1831,1851,1849,1824,1818,1803,1824,1784,1871,2891,2923,2943,2924,2830,2817,2805,2699,2847,2866,2855,2776,2823,2947,2875,2746,2971,2435,2326,2420,2461,2527,2458,2423,2320,2441,2506,2356,2393,2303,2395,2410,2394,2356,2495,2352,2441,2388,2366,2486,2498,2377,2483,2369,1961,1979,2005,1982,1936,1947,1937,2009,1961,1928,1944,1949,1946,1966,1962,1999,1960,1951,1988,2037,1991,2006,1975,1943,2449,2476,2445,2499,2504,2550,2483,2528,2468,2424,2519,2504,2451,2510,2446,2432,2438,2572,2493,2468,2451,2470,2434,2470,2454,2498,2505,2457,2216,2288,2257,2245,2242,2250,2295,2257,2257,2242,2262,2270,2244,2236,2258,2278,2229,2243,2227,2307,2295,2237,2271,2252,2268,2245,2250,2249,2312,1908,1885,1920,1977,1974,1901,1967,1932,1949,1952,1897,1941,1914,1947,1913,1901,1915,1903,1949,1974,1960,1936,1946,1987,1960,1927,1977,1997,2644,2625,2614,2593,2623,2622,2627,2633,2642,2604,2633,2588,2614,2613,2600,2610,2612,2620,2668,2650,2624,2405,2441,2441,2436,2532,2539,2480,2473,2506,2503,2484,2477,2530,2469,2460,2504,2406,2496,2468,2492,2479,2450,2485,2438,2391,2465,2492,1953,1919,1918,1913,1945,1938,1940,1944,1948,1926,1916,1910,1986,1942,1926,1983,1920,1931,1924,1929,1945,1947,1909,1954,1916,1974,1952,1942,1921,1919,1899,1944,1959,1962,1941,1918,1952,1917,1883,1946,1953,1918,1896,1901,1952,1950,1972,1946,1960,1922,2474,2462,2464,2473,2474,2474,2412,2425,2425,2501,2462,2505,2483,2487,2503,2442,2425,2410,2466,2488,2483,2451,2441,2489,2446,2510,2457,2459,2670,2712,2640,2708,2737,2681,2687,2687,2688,2681,2660,2706,2675,2679,2669,2674,2668,2745,2699,2672,2727,2644,2749,2700,2336,2320,2330,2264,2329,2346,2337,2403,2291,2328,2228,2368,2329,2414,2305,2300,2361,2400,2349,2374,2378,2314,2375,2296,1813,1791,1842,1809,1779,1838,1813,1822,1801,1804,1824,1812,1842,1851,1831,1783,1800,1804,1739,1824,1865,1797,1833,1774,1771,1855,1790,1875,1884,1809,1858,1846,1859,1836,1853,1866,1856,1889,1890,1877,1887,1884,1859,1817,1849,1867,1854,1817,1850,1861,2643,2683,2616,2679,2605,2639,2641,2639,2682,2603,2632,2558,2699,2652,2570,2587,2680,2618,2605,2573,2657,2628,2594,2676,2582,2595,2625,2574,2568,2580,2631,2574,2608,2529,2554,2554,2558,2598,2572,2583,2561,2580,2607,2587,2569,2626,2622,2547,2617,2589,2582,2614,2636,2608,2647,2611,2604,2601,2625,2584,2636,2638,2648,2619,2617,2623,2645,2591,2623,2641,2669,2663,2664,2599,2622,2617,2620,2447,2391,2349,2399,2415,2263,2351,2415,2406,2322,2360,2362,2319,2390,2219,2359,2342,2363,2363,2377,2382,2425,2384,2421,2487,2413,2402,2433,2304,2345,2387,2427,2636,2621,2584,2613,2636,2617,2571,2589,2601,2623,2610,2615,2631,2657,2645,2590,2631,2628,2614,2608,2558,2602,2582,2648,2456,2421,2467,2396,2398,2446,2447,2408,2397,2498,2393,2436,2429,2435,2454,2440,2398,2451,2375,2432,2594,2630,2659,2625,2675,2688,2677,2658,2648,2652,2664,2649,2656,2661,2651,2663,2668,2650,2603,2658,2646,2647,2659,2692,2647,2640,2392,2372,2400,2343,2428,2343,2385,2389,2416,2371,2419,2407,2379,2375,2369,2334,2416,2399,2362,2393,2005,2016,2026,1922,2007,1987,1939,1958,1945,1970,1991,1989,1922,2016,2056,2016,1960,1964,1994,1996,1979,1980,1970,2014,2022,1982,1953,2007,2022,1958,2341,2301,2315,2338,2333,2343,2354,2301,2314,2321,2345,2319,2291,2316,2322,2264,2314,2279,2339,2332,2318,2548,2608,2540,2548,2534,2504,2568,2596,2580,2567,2539,2515,2515,2570,2593,2583,2540,2558,2533,2541,2577,2587,2539,2606,2536,2541,2607,2549,2550,2520,2525,2541,2512,2536,2531,2516,2499,2573,2534,2538,2520,2549,2528,2517,2523,2517,2544,2561,2580,2546,2542,2568,2556,2537,2612,2528,2532,2537,2555,2530,2540,2558,2552,2587,2569,2577,2511,2539,2575,2552,2536,2587,2539,2526,2538,2536,2504,2604,2557,2546,2586,2572,2579,2605,2601,2547,2553,2558,2570,2575,2551,2526,2586,2554,2430,2386,2403,2433,2389,2401,2439,2419,2435,2423,2419,2410,2434,2393,2362,2418,2444,2461,2432,2415,2425,2430,2418,2463,2449,2412,2431,2066,2186,2180,2158,2123,2160,2159,2174,2151,2137,2073,2130,2143,2069,2171,2098,2116,2170,2132,2112,2131,2159,2122,2682,2674,2657,2647,2627,2659,2639,2677,2680,2668,2660,2623,2672,2669,2648,2624,2639,2716,2697,2610,2673,2656,2684,2646,2635,2347,2397,2359,2371,2389,2352,2391,2350,2440,2381,2424,2377,2426,2400,2415,2398,2445,2400,2394,2396,2408,2425,2425,2406,2391,2308,2376,2374,2373,2389,2397,2393,2363,1936,1961,1935,1978,1911,1913,1933,1933,1954,1966,1878,1965,1918,1935,1957,1979,1990,1951,1955,1944,1883,1943,2808,2703,2873,2770,2774,2770,2794,2827,2794,2763,2799,2752,2854,2709,2696,2801,2604,2781,2792,2813,2811,2764,2861,2728,2718,2655,2749,2839,2764,2550,2535,2555,2592,2531,2554,2555,2552,2552,2564,2539,2517,2551,2573,2567,2550,2531,2510,2539,2572,2535,2571,2535,2553,2539,2536,2240,2258,2227,2209,2192,2287,2242,2208,2279,2252,2156,2187,2237,2252,2184,2221,2227,2251,2249,2252,2226,2173,2251,2222,2230,2253,2261,2183,2173,2157,2185,2131,2168,2219,2155,2203,2156,2139,2158,2195,2135,2172,2165,2239,2173,2130,2194,2114,2161,2101,2166,2145,2170,2167,2175,2540,2520,2472,2527,2446,2494,2528,2518,2543,2532,2482,2504,2491,2504,2511,2485,2508,2488,2555,2500,2481,2527,2549,2517,2514,2513,2509,2527,2532,2494,2508,2523,2455,2522,2510,2474,2501,2450,2512,2500,2496,2450,2543,2540,2567,2684,2630,2660,2657,2665,2667,2681,2654,2684,2674,2682,2587,2625,2697,2626,2667,2689,2649,2684,2745,2663,2627,2659,2662,2655,2672,2644,2411,2439,2362,2430,2401,2437,2415,2440,2380,2468,2430,2496,2456,2475,1948,1869,1905,1915,1919,1962,1928,1945,1949,1920,1947,1915,1980,1932,1908,1909,1955,1947,1975,1925,1955,1971,1911,1921,1949,1935,1951,1921,2704,2683,2608,2653,2666,2642,2712,2705,2649,2696,2656,2769,2695,2708,2625,2686,2656,2643,2709,2727,2659,2685,2687,2487,2396,2425,2398,2420,2392,2378,2391,2418,2356,2420,2405,2418,2381,2339,2409,2420,2377,2340,2393,2351,2417,2386,2432,2409,2408,2607,2674,2703,2689,2638,2702,2709,2661,2640,2687,2654,2735,2656,2695,2639,2422,2438,2435,2360,2404,2375,2438,2411,2440,2441,2407,2429,2488,2381,2406,2398,2349,2426,2426,2410,2376,2386,2424,2426,2711,2731,2729,2712,2730,2720,2733,2719,2673,2693,2696,2751,2709,2683,2699,2720,2694,2728,2723,2732,2708,2779,2562,2510,2519,2530,2543,2547,2547,2564,2551,2547,2556,2530,2512,2544,2539,2546,2556,2561,2507,2510,2257,2281,2249,2257,2247,2264,2232,2281,2269,2297,2288,2249,2269,2303,2265,2325,2271,2312,2271,2291,2308,2252,1937,1985,1938,1925,1964,1962,1918,1968,1954,1926,1944,1900,1923,1895,1905,1982,1908,1941,1903,1947,1939,1948,1977,1919,1952,1915,1935,1938,1967,1872,1944,1885,2553,2628,2494,2617,2555,2571,2553,2542,2539,2533,2599,2560,2629,2521,2556,2651,2565,2587,2507,2573,2579,2606,2520,2502,2514,2472,2492,2542,2492,2569,2527,2503,2519,2466,2530,2489,2496,2502,2601,2468,2491,2487,2546,2559,2562,2642,2623,2671,2633,2617,2669,2645,2657,2637,2604,2630,2615,2658,2675,2641,2598,2607,2674,2557,2626,2620,2666,2655,2674,2602,2652,2674,2629,2670,2467,2474,2467,2509,2479,2388,2450,2488,2496,2405,2458,2523,2511,2480,2413,2449,2469,2401,2447,2451,2444,2504,2478,2420,2452,2505,2425,2443,2501,1946,1882,1888,1956,1891,1953,2003,1962,1948,1930,1924,1957,1891,1852,1960,1941,1943,1934,1934,1910,1937,1904,1932,1942,1919,1921,1963,2606,2593,2655,2581,2667,2635,2653,2608,2727,2684,2647,2623,2641,2643,2675,2571,2635,2669,2674,2623,2625,2670,2641,2657,2671,2653,2644,2569,2701,2716,2644,2689,2719,2726,2723,2722,2701,2753,2701,2736,2728,2695,2677,2646,2724,2729,2682,2735,2729,2753,2698,2705,2691,2450,2446,2465,2411,2482,2466,2428,2539,2529,2510,2438,2433,2466,2450,2462,2447,2438,2510,2400,2481,2457,2478,2508,2478,2455,2823,2826,2849,2848,2856,2841,2864,2852,2830,2764,2914,2808,2804,2873,2874,2807,2762,2763,2848,2869,2856,2834,2809,2869,2860,2600,2587,2578,2540,2580,2566,2554,2622,2584,2581,2579,2565,2619,2553,2596,2580,2575,2565,2574,2570,2545,2642,2592,2522,2414,2440,2349,2387,2371,2399,2373,2307,2388,2388,2429,2386,2378,2377,2359,2388,2362,2343,2356,2395,2388,2379,2813,2717,2755,2704,2757,2729,2748,2754,2708,2697,2782,2702,2773,2764,2743,2756,2712,2488,2512,2548,2448,2514,2532,2460,2476,2538,2535,2460,2466,2473,2489,2455,2439,2537,2505,2499,2544,2501,2496,2537,2482,2565,2475,1941,1921,1914,1896,1880,1898,1895,1959,1883,1916,1937,1930,1891,1864,1900,1898,1945,1931,1948,1889,1936,1903,1924,1895,1909,1928,1880,1908,1903,1893,1917,1899,1948,1867,1947,1934,1895,1892,1918,1909,1917,1894,1897,1873,1932,1950,1909,1893,2524,2566,2499,2495,2474,2478,2498,2524,2463,2514,2501,2465,2543,2570,2510,2489,2533,2518,2541,2499,2473,2583,2443,2545,2530,2688,2652,2747,2681,2677,2637,2670,2644,2675,2669,2623,2746,2770,2691,2630,2658,2589,2704,2734,2735,2713,2716,2612,2475,2480,2520,2505,2493,2490,2491,2482,2460,2460,2485,2504,2472,2483,2493,2457,2460,2497,2463,2497,2515,2440,2438,2468,2489,2520,2495,2055,2021,1983,2004,2046,2006,2080,2000,1981,1955,2058,1969,2014,2005,1980,1947,1982,2008,2029,2004,2047,1945,1993,2396,2316,2358,2345,2347,2313,2279,2347,2277,2351,2321,2360,2334,2319,2343,2318,2313,2321,2327,2327,2369,2298,2375,2241,2639,2677,2683,2627,2715,2737,2730,2692,2672,2745,2672,2704,2666,2695,2619,2598,2689,2732,2811,2693,2519,2509,2474,2516,2551,2516,2547,2483,2489,2468,2547,2545,2534,2486,2505,2541,2531,2535,2511,2525,2485,2542,2482,2495,2570,2460,2493,2544,2515,2530,2522,3027,3048,3076,3105,3088,3028,3006,3085,3071,3109,3022,3042,3057,3040,3093,3047,3074,2975,3072,3070,3102,3106,3023,3117,3071,2575,2647,2613,2682,2672,2641,2683,2644,2625,2609,2606,2682,2650,2577,2602,2700,2614,2637,2668,2652,2665,2574,2627,2626,2615,2596,2680,2609,2659,2619,1898,1937,1967,1940,1942,1968,1991,1948,1950,1907,1928,1948,1934,1960,1963,1959,1974,1929,2010,1928,1921,1968,2763,2763,2793,2782,2770,2852,2748,2739,2883,2808,2702,2792,2760,2798,2742,2785,2858,2826,2784,2786,2774,2820,2772,2792,2502,2468,2468,2425,2559,2463,2455,2508,2474,2475,2446,2415,2481,2568,2473,2505,2498,2441,2510,2539,2488,2450,2465,3012,2932,3002,2945,2928,2941,2924,2987,2942,2958,2903,2974,2953,3001,2948,2908,2943,2609,2570,2616,2580,2625,2521,2574,2560,2574,2554,2589,2622,2647,2588,2595,2558,2654,2573,2582,2673,2614,2579,2610,2654,2507,2568,2110,2074,2028,2092,2086,2089,2038,2127,2142,2052,2029,2062,2089,2143,2018,2100,1984,2083,2152,2103,2084,2100,2032,2052,2012,1850,1950,1851,1895,1881,1882,1871,1886,1875,1869,1907,1863,1904,1874,1884,1905,1848,1925,1903,1836,1854,1895,1915,1878,1855,2639,2642,2622,2657,2634,2662,2579,2551,2649,2637,2540,2664,2648,2592,2618,2638,2619,2599,2624,2679,2638,2599,2630,2659,2576,2599,2556,2580,2576,2550,2452,2476,2497,2491,2523,2514,2482,2521,2449,2423,2447,2488,2423,2491,2505,2423,2464,2463,2470,2429,2469,2482,2438,2450,2479,2456,2635,2650,2609,2625,2614,2640,2619,2648,2630,2599,2632,2621,2666,2605,2648,2604,2645,2640,2659,2616,2682,2640,2632,2361,2308,2343,2333,2317,2332,2374,2300,2315,2317,2344,2311,2353,2317,2356,2299,2317,2406,2265,2319,2351,2311,2317,2705,2713,2718,2757,2749,2735,2790,2761,2720,2728,2724,2747,2777,2726,2698,2685,2690,2733,2728,2786,2735,2756,2733,2521,2509,2483,2483,2469,2485,2413,2537,2525,2446,2470,2501,2450,2495,2463,2463,2486,2483,2540,2462,2498,2113,2122,2148,2154,2104,2207,2211,2118,2120,2114,2153,2183,2161,2184,2160,2116,2163,2127,2155,2112,2149,2169,2115,2126,2173,2687,2704,2682,2672,2695,2675,2637,2649,2661,2614,2663,2647,2687,2675,2674,2661,2672,2725,2632,2691,2504,2434,2577,2434,2481,2536,2479,2442,2533,2485,2427,2466,2489,2483,2473,2469,2451,2514,2467,2420,2475,2505,2391,2507,2475,2511,1810,1868,1790,1916,1894,1826,1868,1800,1781,1798,1919,1873,1835,1833,1795,1769,1818,1884,1854,1841,1881,1858,1868,1840,1820,1860,1844,1856,1850,1863,1899,1874,1822,1815,1823,1822,1894,1870,1929,1932,1903,1892,1934,1970,1944,1951,1884,1888,1903,1944,1925,1903,1889,1921,1931,1926,1917,1888,1886,1937,1879,1870,1913,1900,1935,1838,1915,2874,2856,2870,2927,2940,2928,2919,2827,2948,2912,2896,2949,3046,2931,2999,2889,3029,2850,2815,2868,2927,2833,2926,2953,2874,2837,2651,2605,2661,2624,2641,2657,2638,2615,2618,2686,2574,2653,2627,2676,2646,2621,2623,2623,2553,2648,2670,2653,2580,2620,2136,2150,2109,2165,2175,2177,2140,2177,2128,2114,2202,2083,2171,2156,2199,2190,2167,2153,2163,2199,2160,2229,2011,1957,1964,1957,1932,1993,1964,2010,2037,1941,1939,2006,1980,1983,1984,1994,2041,2009,1944,1936,1961,1977,1935,1988,1947,1978,2345,2345,2426,2348,2417,2305,2385,2358,2371,2379,2430,2426,2387,2310,2421,2423,2383,2372,2392,2389,2413,2362,2339,2181,2189,2204,2159,2186,2220,2209,2184,2196,2192,2166,2212,2224,2193,2178,2202,2240,2196,2206,2166,2217,2564,2579,2526,2492,2548,2545,2521,2553,2539,2551,2542,2553,2533,2612,2578,2563,2563,2533,2665,2660,2674,2645,2682,2669,2688,2666,2701,2632,2623,2704,2687,2663,2690,2628,2689,2671,2675,2731,2667,2701,2689,2649,2673,2691,2709,2709,2744,2766,2747,2737,2729,2717,2721,2733,2743,2738,2738,2780,2761,2764,2778,2728,2757,2718,2782,2771,2554,2440,2489,2453,2514,2508,2519,2479,2513,2535,2501,2443,2520,2475,2554,2580,2447,2515,2491,2466,2464,2563,2495,2532,2510,2524,2498,2559,2525,2516,2262,2253,2244,2250,2234,2287,2247,2263,2285,2230,2242,2228,2243,2244,2289,2200,2224,2230,2252,2245,2221,2242,2249,2296,2207,2275,1937,2025,2015,2036,2020,2002,2026,2014,1955,1966,2004,2028,2029,1936,1976,1974,2017,1994,1979,2034,1988,1989,1994,1975,2029,1989,1994,1983,2021,1966,1973,1985,1861,1851,1868,1896,1853,1880,1880,1876,1866,1897,1901,1864,1876,1924,1856,1849,1898,1836,1886,1901,1884,1860,1833,1885,1831,1874,1914,1899,1931,1967,1906,1920,1946,1947,1938,1915,1966,1912,1935,1918,1896,1933,1951,1886,1940,1921,1907,1915,1953,1922,1887,1927,1945,1972,1927,1939,1901,1897,1919,1923,1922,1936,1929,1926,1952,1941,1925,1914,1912,1944,1910,1934,1904,1940,1935,1942,1944,1942,1926,1923,1892,1909,1934,1951,1906,1985,1956,1937,1971,1947,1976,1960,1962,1942,1944,1934,1937,1950,1921,1930,1963,1970,1970,1962,1939,1900,1993,1912,1938,1987,1937,2011,1961,1983,1962,2418,2480,2475,2453,2440,2458,2401,2417,2360,2447,2427,2455,2492,2479,2488,2495,2485,2462,2427,1983,1987,2021,1987,2073,2023,2054,2063,2059,1985,2043,2046,2060,1957,2040,2045,2047,2001,2137,2040,2039,2022,2060,2009,2057,2032,2050,1870,1823,1837,1867,1837,1846,1825,1876,1769,1844,1787,1779,1877,1825,1840,1828,1855,1816,1771,1832,1834,1855,1853,1849,1824,1773,1836,1781,1819,1765,1745,1739,1753,1759,1751,1770,1766,1755,1700,1719,1754,1780,1705,1722,1693,1727,1723,1750,1727,1741,1728,1742,1760,1759,1729,1748,1774,1946,1908,1889,1907,1893,1887,1875,1952,1912,1904,1924,1904,1890,1980,1957,1934,1894,1937,1922,1893,1909,1945,1849,1888,1926,1888,1836,1930,2153,2090,2124,2139,2109,2095,2105,2130,2101,2119,2091,2085,2138,2102,2128,2099,2064,2069,2063,2056,2102,2134,2693,2629,2626,2728,2682,2694,2687,2714,2759,2606,2677,2674,2629,2652,2732,2681,2698,2682,2774,2667,2687,2701,2672,2669,2706,2650,2690,2369,2366,2430,2434,2394,2403,2415,2433,2438,2379,2384,2410,2399,2392,2401,2388,2416,2372,2369,2445,2363,2380,2330,2438,2388,2397,2400,1949,2043,1974,2038,2037,2039,2000,2081,1981,2033,2020,2013,2054,1983,2033,2000,2015,1997,2030,2048,2040,2025,2095,2026,2258,2235,2297,2273,2279,2281,2300,2261,2336,2222,2226,2259,2284,2279,2274,2274,2317,2333,2330,2307,2343,2212,2286,2310,2264,2023,2019,2016,2019,2050,2019,2018,2016,1997,2056,2026,2025,2079,2057,1980,2020,2028,1977,2042,2009,2032,2033,2052,2023,2008,1968,2065,2045,2044,1937,1941,1922,1894,1931,1928,1948,1929,1933,1925,1904,1970,1961,1955,1906,1919,1955,1951,1963,1954,1938,1905,1944,1913,1906,1977,1959,1953,1972,1926,2867,2863,2869,2919,2881,2783,2887,2928,2949,2894,2981,2944,2796,2967,2922,2821,2845,2973,2899,2850,2833,2815,2891,2811,2544,2597,2511,2473,2589,2532,2537,2530,2500,2520,2491,2483,2501,2552,2532,2501,2538,2562,2527,2485,2490,2030,2058,2076,2061,2030,2085,2099,1996,2046,2103,2063,2035,2061,2032,2001,2061,2034,1961,1990,2080,2102,2073,2054,2062,2121,2097,2010,2052,1977,2002,2476,2454,2471,2395,2420,2487,2414,2477,2413,2398,2437,2474,2461,2494,2477,2469,2447,2475,2448,2513,2496,2434,2461,2456,2481,2426,2706,2775,2700,2759,2725,2731,2699,2742,2710,2713,2758,2713,2761,2748,2759,2714,2692,2773,2718,2739,2737,2707,2695,2713,2724,2698,2733,2731,2507,2468,2462,2417,2446,2439,2479,2514,2454,2431,2480,2483,2499,2442,2473,2417,2474,2491,2528,2506,2423,2460,2451,2435,2523,2437,2430,2558,1948,1923,1965,1962,1980,1862,1908,1989,1893,1904,1914,1907,1918,1942,1943,1947,1980,1939,1865,1878,1907,1969,1913,1873,1950,1977,1984,1974,1992,1984,2004,1976,1958,1993,2019,1975,1967,1979,2007,2021,1969,1941,1982,2007,1993,2001,2017,1978,2010,1973,1945,1979,1956,1975,2001,1975,1983,1965,1985,1991,2014,1983,1974,1994,1976,1999,2000,1963,1994,1933,1965,1989,1984,1974,1976,1972,1969,1964,1962,1982,1967,1980,1973,1969,1958,1978,1981,1981,1968,1986,1955,1964,1962,1979,2006,1968,1987,1969,1996,1958,1979,1988,1951,1972,1989,2021,1965,1968,1975,1958,1974,1973,1945,1966,1974,1984,1973,1967,1955,1984,1973,2035,2019,1943,1983,1952,1997,1995,1999,1983,1985,1978,1987,1992,1972,1957,1975,1981,1957,1984,1993,1991,2023,1993,1990,1954,1973,1993,1968,2029,2184,2139,2152,2197,2128,2144,2104,2136,2136,2077,2122,2120,2119,2229,2128,2179,2186,2154,2207,2110,2115,2114,2169,2109,2123,2181,2152,2277,2081,2131,2149,2129,2091,2137,2158,2151,2103,2135,2125,2099,2124,2084,2127,2184,2126,2102,2085,2136,2088,2116,2127,2109,2110,3134,3129,3010,3181,3009,3005,2921,3299,2988,3040,3177,3040,2934,3157,3177,3123,3134,3102,3008,3154,3147,3003,3185,3208,3215,2562,2586,2537,2606,2574,2666,2610,2641,2642,2678,2612,2589,2561,2686,2575,2583,2630,2637,2561,2629,2595,2600,2556,2512,2576,2572,2596,2600,2569,2593,2608,2957,2881,3010,2904,2926,2910,2999,2903,2931,2938,2914,2896,2938,2975,2983,2977,2915,2947,2988,2884,2953,2926,2447,2487,2515,2531,2470,2458,2463,2458,2438,2433,2450,2511,2499,2530,2424,2542,2446,2544,2451,2557,2563,2473,2493,2890,2924,2914,2965,2975,3033,2851,2953,2960,2974,2869,2967,2955,2919,2942,2917,2918,2946,2923,2916,2887,2987,2957,2931,2945,2903,2965,2912,2977,2928,2959,2943,2917,2884,2910,2652,2637,2608,2673,2653,2694,2627,2629,2656,2647,2657,2678,2614,2627,2614,2670,2688,2655,2623,2649,2040,2042,2023,2036,2062,1985,2034,1971,2023,2076,2062,1997,2095,2001,2008,2042,2112,2096,2061,2030,2030,2087,2130,1981,2076,1924,1897,1929,1907,1885,1893,1898,1871,1896,1935,1913,1871,1861,1866,1931,1907,1894,1928,1875,2502,2571,2574,2525,2629,2617,2587,2531,2526,2563,2507,2602,2562,2622,2622,2567,2525,2546,2632,2579,2579,2517,2535,2503,2569,2474,2552,2534,2600,2657,2590,2629,2550,2587,2612,2627,2626,2660,2629,2609,2572,2558,2654,2670,2625,2719,2655,2640,2610,2646,2461,2480,2477,2478,2501,2462,2455,2494,2452,2401,2401,2475,2497,2459,2487,2458,2521,2435,2476,2437,2472,2475,2457,2448,2523,2445,2509,2480,2507,2502,2486,2454,2487,2126,2149,2130,2177,2231,2200,2175,2136,2169,2204,2169,2167,2148,2149,2121,2138,2193,2155,2113,2142,2188,1988,1966,1967,1976,1978,1956,1970,1983,1978,1986,1919,1920,1936,1919,1969,1945,1958,1982,1931,1949,2012,1996,1958,1953,2879,2770,2815,2785,2829,2795,2737,2810,2826,2729,2787,2821,2769,2801,2824,2905,2881,2791,2898,2806,2830,2794,2784,2902,2810,2628,2876,2650,2598,2589,2516,2509,2463,2549,2620,2517,2532,2581,2554,2536,2550,2521,2617,2485,2566,2613,2539,2575,2563,2586,2104,2057,2084,2080,2157,2103,2068,2133,2116,2092,2045,2123,2068,2051,2112,2027,2112,2036,2064,2090,2052,2049,2175,2085,2115,2171,2209,2289,2229,2229,2243,2194,2225,2214,2267,2264,2207,2198,2229,2196,2211,2186,2225,2143,2181,2206,2186,2221,2234,2038,2037,2080,1996,1997,2034,1993,2012,2047,2041,2022,2032,2053,2009,1999,2056,2018,2020,2033,2023,2076,1992,2029,2006,2006,2654,2641,2620,2600,2644,2664,2640,2564,2616,2567,2695,2592,2651,2565,2622,2668,2665,2582,2627,2638,2658,2139,2064,2118,2127,2139,2123,2146,2203,2115,2134,2119,2148,2173,2174,2187,2172,2082,2144,2120,2141,2212,2133,2120,2159,2204,2056,2174,2208,2228,2090,2548,2527,2571,2610,2584,2522,2557,2597,2584,2653,2597,2605,2595,2562,2555,2540,2613,2559,2600,2623,2581,2588,2579,2651,2620,2377,2429,2417,2393,2438,2408,2409,2415,2422,2400,2440,2416,2424,2383,2387,2438,2396,2421,2464,2393,2406,2347,2396,2040,2068,1978,2018,1982,2025,2016,1973,1993,2012,2022,1978,1946,2039,2006,2052,2002,2028,2019,1957,1968,2032,2001,1929,1934,1925,1930,1884,1940,1952,1883,1947,1926,1912,1938,1936,1945,1941,1945,1942,1932,1942,1908,1931,1903,1881,1927,1936,2098,2047,2135,2107,2071,2095,2080,2090,2067,2095,2082,2105,2102,2097,2070,2100,2080,2107,2111,2105,2065,2068,2007,1967,1976,1968,2035,2011,2005,1963,1969,1986,1964,1975,1980,1979,1940,1959,1943,1995,1959,1973,1981,1977,1962,2008,1987,1935,2004,2371,2413,2394,2454,2465,2475,2420,2379,2404,2422,2389,2409,2412,2363,2387,2419,2388,2349,2395,2358,2019,2030,1978,2039,1972,2014,1974,2011,2040,1983,1985,2017,1974,1983,1946,2014,1922,1927,1995,1989,2015,1947,2051,1947,1946,2034,2043,1944,1966,1980,1770,1769,1809,1809,1758,1789,1787,1811,1795,1796,1784,1805,1809,1774,1805,1762,1752,1800,1781,1763,1762,1809,1805,1801,1775,1941,1904,1884,1879,1938,1912,1901,1897,1921,1889,1912,1919,1954,1944,1935,1899,1934,1906,1897,1897,1901,1936,1939,1926,1888,1902,1887,1935,1940,1924,1900,1919,1880,1961,2000,1965,1964,1993,1934,1975,1968,2001,2006,1963,1995,2013,1979,1991,1997,1947,1999,1994,1969,1965,1995,1984,1999,2039,2019,1991,2007,2025,2040,2000,2050,2036,1995,1979,2051,2005,2050,2074,2015,2021,1988,2033,2021,2089,1832,1921,1888,1835,1831,1856,1847,1840,1848,1830,1869,1850,1835,1834,1856,1872,1844,1881,1872,1825,1834,1853,1849,1828,1883,1819,1683,1746,1742,1706,1750,1757,1741,1716,1757,1758,1717,1735,1754,1700,1752,1761,1723,1765,1728,1765,1739,1723,1737,1762,1717,1848,1830,1839,1817,1845,1818,1845,1840,1829,1832,1810,1844,1819,1826,1824,1799,1838,1844,1819,1940,1950,2067,1965,1979,2038,1907,2040,2087,2016,1982,2047,1964,2073,2035,2106,2100,1962,1947,2039,1978,2008,1998,1985,1965,1937,1924,1964,1928,1971,1926,1937,1967,1922,1983,1967,1940,1938,1969,1947,1948,1987,1932,1856,1890,1855,1884,1893,1898,1827,1868,1897,1884,1911,1907,1892,1889,1885,1909,1912,1881,1921,1886,1911,1899,1901,1886,1882,1865,1879,1889,1905,1882,1847,1850,1889,1867,1890,1874,1895,1914,1919,1991,1918,1911,1940,1930,1925,1910,1978,1962,1928,1963,1933,1919,1992,3072,3029,3187,3176,3079,3238,3164,3088,3103,3056,2962,3055,3233,3144,3080,3167,3224,3116,3088,3191,3094,3008,3025,3157,3085,3186,3132,2913,2811,2888,2807,2820,2947,2831,2789,2893,2802,2823,2873,2735,2754,2830,2774,2808,2792,2940,2887,2845,2848,2798,2829,2072,1940,1969,1961,2035,1921,1958,1958,1970,1933,1964,1962,2026,2022,1948,1895,1932,1935,1878,1898,1999,1882,2058,1972,1940,2013,1949,1776,1847,1846,1818,1802,1886,1860,1884,1889,1895,1877,1879,1890,1898,1805,1791,1879,1868,1778,1833,1878,1809,1837,1848,2478,2479,2487,2497,2427,2453,2531,2452,2421,2455,2459,2512,2476,2452,2456,2484,2505,2484,2531,2058,2099,2083,2071,2007,1994,2091,2059,2068,2001,2062,2053,2080,2084,2071,2040,2044,2043,2097,2073,2048,2091,2062,2110,2080,2706,2778,2742,2731,2759,2672,2775,2746,2778,2792,2743,2761,2740,2701,2733,2750,2750,2724,2789,2735,2760,2746,2761,2774,2737,2688,2517,2463,2446,2472,2456,2401,2479,2408,2371,2393,2481,2538,2423,2427,2457,2453,2496,2508,2433,2505,2418,2476,2440,2412,2478,2413,2417,2479,2406,2473,2437,1906,1920,1959,1928,1957,1945,1972,1938,1963,2007,1975,1975,1911,1988,2005,1969,1937,1928,1967,1860,1880,1836,1863,1882,1845,1838,1870,1898,1870,1867,1883,1888,1882,1926,1868,1859,1871,1865,1817,1875,1887,1858,1838,1847,1895,2873,2911,2903,2921,2952,2940,2999,2896,2885,2890,2880,2891,2917,2804,2855,2756,2836,2887,2928,2958,2856,3057,2943,2886,2910,2872,2924,2665,2641,2658,2662,2635,2628,2636,2633,2636,2661,2624,2643,2660,2614,2589,2625,2646,2662,2636,2639,2548,2653,2590,2645,2612,2631,2679,1999,2038,2052,2061,2085,1972,2088,2006,2059,2010,1933,1969,2031,2018,2101,2089,2061,2076,2040,1986,2126,2413,2346,2384,2378,2440,2395,2408,2350,2383,2383,2439,2396,2361,2380,2435,2411,2415,2369,2445,2381,2388,2320,2388,2355,2086,2167,2129,2132,2169,2172,2100,2143,2182,2140,2143,2110,2115,2174,2145,2146,2146,2109,2137,2188,2135,2137,2143,2136,2150,2139,2130,2193,2145,2176,2626,2695,2642,2651,2669,2684,2651,2608,2689,2694,2649,2618,2678,2665,2746,2641,2695,2615,2647,2676,2681,2684,2670,2655,2745,2594,2513,2464,2547,2535,2568,2561,2571,2523,2495,2548,2504,2498,2541,2541,2534,2544,2529,2519,2501,2537,2497,2527,2561,2542,2578,2499,2485,2001,1974,1916,1975,1937,1934,1948,1971,1942,1948,1972,1938,1921,1953,1980,1993,1961,1951,1970,1952,1946,1916,1981,1991,2703,2724,2699,2763,2748,2755,2762,2771,2738,2758,2801,2747,2805,2710,2735,2732,2792,2868,2750,2673,2772,2738,2805,2449,2499,2465,2470,2488,2465,2417,2499,2461,2447,2479,2426,2472,2425,2431,2509,2470,2476,2440,2456,2423,2453,2527,2462,2478,2494,2431,2450,2502,2020,2011,2031,2043,2053,2036,1967,1990,2069,2048,2016,2058,2016,2030,2026,2045,1954,2031,2007,1978,1996,2075,2396,2400,2493,2424,2432,2389,2474,2430,2359,2467,2378,2373,2366,2344,2378,2392,2362,2456,2364,2452,2393,2447,2308,2307,2324,2318,2278,2308,2275,2323,2336,2333,2298,2297,2330,2258,2305,2285,2295,2304,2318,2269,2317,2320,2278,2313,2301,2318,2278,2301,2322,2280,2012,2088,2023,2033,2004,2028,2029,2052,1980,2055,2031,2027,2032,2023,2032,2055,2056,2062,1983,2049,2034,2068,2026,2057,2492,2523,2447,2483,2475,2470,2481,2456,2469,2505,2488,2493,2472,2448,2506,2537,2475,2413,2424,2455,2430,2431,2527,2487,2306,2292,2274,2313,2286,2296,2297,2255,2306,2319,2280,2317,2301,2332,2299,2277,2292,2281,2281,2298,2315,2277,2230,2342,2265,2188,2248,2211,2305,2195,2290,2326,2324,2273,2314,2264,2206,2307,2276,2238,2316,2230,2261,2293,2229,2231,2234,2254,2252,2301,2257,2228,2269,2270,2258,2268,2314,2277,2287,2277,2238,2277,2273,2269,2270,2263,2261,2262,2268,2026,1994,2000,2034,2023,2013,2032,1984,2054,2000,2016,2023,2014,2023,2019,2047,2009,2014,1987,2011,2031,1999,2025,2067,2001,2012,2063,1891,1927,1890,1908,1896,1921,1926,1874,1944,1895,1909,1920,1897,1930,1918,1885,1882,1882,1924,1911,1922,1898,1887,2563,2593,2530,2577,2557,2517,2509,2601,2521,2643,2594,2601,2639,2524,2579,2558,2579,2557,2511,2577,2649,2497,2585,2581,2545,2640,2522,2536,2520,2520,2562,2544,2550,2584,2574,2560,2525,2546,2520,2539,2545,2525,2562,2549,2542,2549,2538,2574,2536,2557,2533,2593,2697,2730,2737,2714,2729,2719,2701,2688,2704,2718,2740,2721,2741,2752,2712,2727,2706,2722,2717,2702,2741,2740,2708,2718,2742,2744,2711,2725,2486,2536,2489,2478,2496,2510,2464,2536,2524,2475,2493,2485,2459,2514,2520,2511,2539,2471,2489,2572,2462,2472,2481,2454,2495,2536,2485,2533,2494,2477,2512,2513,2566,2394,2416,2418,2404,2468,2429,2445,2454,2410,2396,2444,2423,2440,2429,2425,2393,2425,2432,2460,2405,2459,2422,2436,2396,2467,2390,2445,2450,2490,2431,2449,2428,2330,2310,2310,2314,2300,2317,2300,2316,2307,2300,2317,2310,2356,2313,2320,2283,2328,2320,2321,2305,2297,1993,2014,2035,2002,1976,1967,1965,2057,2067,2000,1993,2028,2026,2002,1979,2016,1991,2024,2033,2018,2042,2015,1989,1996,2000,1998,2041,1998,2034,2534,2574,2573,2496,2509,2494,2534,2581,2597,2528,2583,2488,2539,2532,2529,2517,2535,2438,2480,2475,2083,2036,2052,2035,1988,2024,2046,2036,2094,2028,2079,2073,2063,2052,1993,2090,2029,2497,2456,2492,2504,2498,2438,2455,2482,2441,2449,2520,2415,2443,2494,2415,2487,2503,2457,2467,2471,2427,2456,2436,2459,2449,2445,2438,2468,2494,2047,2081,2025,2093,2105,2022,2141,2136,2065,2075,2031,2038,2064,2089,2069,2063,2119,2032,2051,2081,2088,2013,2086,2096,2067,2080,2062,2102,2076,2071,2081,2368,2376,2299,2378,2321,2322,2413,2336,2393,2313,2367,2362,2415,2339,2376,2354,2356,2329,2422,2388,2341,2303,2340,2361,2394,2313,2371,2372,2375,2318,2352,2331,2396,2236,2256,2287,2293,2265,2305,2296,2260,2261,2288,2264,2291,2227,2307,2273,2248,2239,2245,2237,2265,2266,2290,2295,2273,2296,2009,2000,1989,1989,2042,1989,1997,2047,1974,2020,2072,2029,1995,1985,2025,2052,2017,2008,2020,2030,2010,1998,2079,2008,2036,2026,2007,2007,2001,1978,1997,1995,2015,1926,1954,1962,1957,2018,1981,1972,1986,1977,1990,1992,1967,2000,1987,2797,2836,2752,2683,2796,2721,2777,2785,2691,2771,2790,2791,2786,2857,2662,2765,2745,2825,2541,2530,2549,2568,2567,2556,2540,2531,2556,2544,2552,2612,2545,2512,2585,2577,2566,2598,2555,2262,2263,2233,2250,2225,2303,2215,2272,2316,2247,2267,2218,2286,2263,2259,2294,2288,2259,2269,2270,2299,2288,2232,2247,2265,2283,2288,2240,2310,2294,2308,2339,2323,2310,2324,2322,2299,2273,2309,2288,2249,2264,2292,2284,2243,2281,2368,2313,2332,2269,2310,2312,2270,2293,2311,2280,2193,2198,2275,2228,2239,2213,2249,2233,2205,2248,2226,2209,2250,2194,2262,2225,2176,2242,2209,2219,2254,2234,2191,2181,2225,2164,2197,2179,2178,2159,2192,2191,2155,2168,2223,2164,2160,2209,2170,2191,2225,2191,2145,2210,2143,2217,2134,2102,2223,2256,2203,2167,2601,2577,2590,2601,2610,2586,2599,2564,2663,2532,2583,2600,2603,2580,2638,2586,2585,2605,2610,2586,2575,2594,2663,2672,2665,2659,2646,2639,2596,2701,2659,2632,2607,2632,2590,2625,2611,2614,2658,2626,2624,2597,2596,2629,2688,2672,2624,2608,2466,2457,2468,2468,2394,2484,2496,2459,2453,2396,2468,2470,2443,2461,2479,2475,2483,2479,2466,2491,2475,2518,2468,2454,2472,2490,2256,2272,2221,2217,2276,2249,2233,2245,2232,2294,2247,2246,2262,2259,2238,2213,2278,2274,2269,2250,2264,2239,2250,2263,2220,2214,2273,2206,2241,2246,2258,2291,2262,2258,2236,2239,2215,2259,2239,2291,2222 0 100 0 0 0 diff --git a/test/dna_full_contig.exp b/test/dna_full_contig.exp index 908b111..7300879 100755 --- a/test/dna_full_contig.exp +++ b/test/dna_full_contig.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN106 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!29903!+ 0 2048 -272.365141 748.5801 4000 273066 550,566,564,557,565,569,566,573,564,566,505,519,515,495,511,511,516,502,502,499,498,492,501,497,497,491,493,493,497,496,497,498,497,499,486,499,490,495,476,466,463,458,461,461,473,467,460,467,470,466,466,419,534,522,524,515,519,522,520,526,519,525,525,518,520,515,526,561,545,538,555,547,556,551,537,548,543,550,538,540,545,543,554,551,542,537,546,535,539,554,544,503,513,509,512,515,506,502,507,512,515,495,500,576,561,576,564,547,539,573,564,563,554,559,557,562,557,570,555,563,529,523,522,520,521,521,518,518,527,527,542,549,543,537,500,501,496,499,506,495,502,496,507,494,496,499,498,503,501,502,506,538,550,552,544,538,535,541,538,540,551,551,542,547,546,544,548,571,564,560,563,565,569,558,551,537,541,532,536,536,538,538,542,542,539,536,545,544,554,546,550,548,554,551,549,552,541,549,546,546,549,555,555,547,550,546,548,551,542,551,550,549,543,517,505,513,510,496,504,507,503,508,499,452,472,469,460,471,465,463,467,468,468,469,464,466,460,481,484,473,491,482,477,478,549,552,563,542,553,534,552,553,553,512,500,495,500,497,495,484,495,514,522,518,529,520,516,521,521,545,572,540,515,507,525,523,519,525,513,530,516,518,463,471,474,505,501,496,503,498,513,502,556,573,566,571,564,578,570,574,562,557,565,540,547,545,542,553,506,498,486,503,502,506,490,497,506,509,497,488,488,505,491,504,507,497,506,506,511,503,564,565,574,568,567,572,563,566,560,549,553,542,540,544,553,546,547,545,550,483,498,509,494,500,500,489,498,505,501,494,493,510,498,500,502,505,498,494,496,502,518,509,517,519,509,539,530,522,524,522,528,521,529,531,529,524,533,531,524,531,535,531,559,568,565,570,571,535,549,531,534,532,535,541,542,530,532,538,542,538,526,529,542,552,536,535,530,455,466,469,463,460,465,474,473,467,474,471,465,459,450,470,457,469,478,476,472,466,468,460,465,469,480,567,597,599,593,588,596,574,577,578,534,527,515,530,539,528,526,522,528,523,530,530,535,585,583,581,574,497,526,518,513,511,514,556,559,532,543,536,533,555,555,544,540,492,500,512,493,488,568,556,554,536,560,562,518,509,500,516,507,504,505,505,458,462,456,463,464,453,460,454,457,461,456,456,452,455,464,456,465,465,586,589,590,589,587,588,573,601,575,522,531,527,530,531,526,536,550,560,560,562,567,558,469,483,478,461,464,549,548,556,563,559,557,575,568,562,560,565,553,556,563,533,520,525,517,507,525,526,517,516,517,591,581,586,581,582,566,576,586,580,582,577,590,598,582,571,587,572,529,541,544,542,532,537,543,545,583,578,575,570,575,578,570,582,583,557,572,576,567,566,541,525,523,528,525,533,527,521,528,525,523,524,515,500,489,490,488,492,487,482,492,486,489,482,489,481,479,490,506,508,504,518,510,515,512,511,511,508,513,510,514,507,555,544,554,500,502,491,508,499,477,466,468,465,464,475,449,467,470,463,458,487,501,489,499,498,501,505,511,512,501,514,515,504,509,547,526,522,529,531,524,530,532,535,550,547,545,543,558,564,562,554,561,550,558,563,551,559,551,564,559,527,521,535,499,511,505,509,512,508,502,505,506,504,486,472,481,472,480,475,472,473,481,482,474,483,474,480,477,474,464,476,480,486,472,486,486,580,593,598,588,586,600,526,534,562,568,566,548,574,554,476,506,569,546,559,551,551,550,556,565,547,514,486,491,486,496,554,476,492,493,496,513,507,501,491,503,482,495,489,496,494,490,489,480,486,479,495,483,489,536,535,523,530,535,473,499,510,491,503,498,497,503,500,502,501,598,583,577,572,581,567,582,577,544,523,529,529,529,538,534,507,514,509,510,507,511,515,525,561,586,600,574,590,582,528,525,528,496,481,481,484,485,490,496,488,494,484,493,500,486,523,525,521,519,522,525,520,517,513,520,524,517,522,522,517,522,520,517,558,551,544,538,545,546,547,549,531,546,526,522,522,528,520,521,530,519,531,520,520,525,521,533,531,533,523,490,494,499,484,496,498,493,501,500,564,578,575,547,573,552,526,506,514,517,507,514,521,507,514,515,509,507,513,508,513,509,506,500,507,502,499,513,506,510,565,553,550,554,546,554,557,557,545,551,553,555,559,542,539,544,561,557,552,554,560,553,550,547,557,557,554,555,547,541,554,493,501,501,498,504,450,464,462,464,466,464,459,465,469,466,454,528,555,507,507,506,517,507,514,510,521,516,519,516,520,516,520,522,511,511,516,513,519,514,511,515,513,514,540,532,527,530,530,540,518,525,532,522,505,515,507,505,506,508,537,520,525,520,512,573,578,590,578,573,585,589,581,576,583,587,573,570,579,580,585,553,533,543,537,534,534,527,524,517,518,522,525,524,528,551,548,531,534,525,530,537,531,520,517,568,541,507,487,485,484,484,492,489,488,495,465,477,471,473,474,473,472,477,475,471,538,555,552,551,562,549,553,555,533,555,538,562,554,553,551,542,570,547,545,561,530,562,566,548,561,540,561,522,516,510,516,520,516,517,505,516,507,504,511,588,582,555,566,570,560,582,579,580,515,492,497,500,502,501,506,499,512,494,490,495,507,493,498,494,501,492,501,498,497,481,477,479,474,561,555,569,568,568,555,566,562,556,558,562,505,503,495,493,491,496,500,499,497,488,503,508,498,489,497,488,494,500,502,508,504,537,577,556,563,565,569,564,569,553,580,568,554,571,520,510,509,505,497,508,504,510,506,507,504,518,507,517,509,503,507,509,506,513,508,507,507,561,553,549,548,547,547,552,557,552,543,543,553,545,555,551,551,546,566,574,576,551,509,501,508,488,511,508,491,498,508,507,498,501,499,498,462,466,466,463,472,461,468,477,478,467,473,483,466,462,566,559,558,554,559,555,547,557,561,558,561,559,552,556,544,559,556,556,553,522,516,512,524,519,515,519,516,521,517,508,522,532,532,528,529,535,582,542,562,500,501,482,495,502,501,492,499,497,566,577,587,579,563,584,580,592,552,544,529,522,526,529,530,542,494,522,540,518,534,471,554,547,550,549,543,553,547,541,550,541,545,550,536,545,542,537,535,536,540,536,553,541,547,532,534,529,547,537,546,465,484,485,482,476,476,474,470,473,470,474,463,517,492,507,508,498,496,499,494,499,505,489,491,495,552,550,561,534,514,487,481,470,474,467,474,477,473,472,450,443,439,445,447,448,438,434,441,446,506,490,483,538,547,542,536,542,533,526,530,528,532,541,552,553,543,543,543,550,555,542,551,545,551,545,539,535,554,544,516,489,497,483,474,474,470,472,474,470,467,476,471,469,482,474,476,476,481,477,576,562,544,556,565,557,552,564,554,561,562,562,479,496,492,498,514,502,504,504,496,503,503,504,504,499,495,506,517,526,534,529,528,530,530,535,530,565,579,583,588,591,582,575,588,578,585,539,503,498,527,531,539,522,507,510,538,523,511,525,521,507,515,516,507,512,524,524,534,521,492,475,490,480,471,476,466,472,489,474,486,604,590,580,586,585,581,584,584,571,578,580,586,588,593,526,533,545,531,529,539,528,536,530,542,524,535,572,567,560,569,561,549,562,562,525,499,503,505,504,512,512,511,509,500,512,499,508,505,573,592,583,575,594,618,599,606,582,592,577,592,595,490,514,507,519,499,504,509,502,530,548,549,534,531,534,536,542,527,550,541,540,539,538,535,534,539,541,546,538,534,548,542,539,582,568,567,569,562,531,525,519,518,522,529,531,521,510,528,535,518,520,526,530,568,549,563,552,550,540,559,562,546,554,554,553,533,518,512,519,517,524,529,525,527,539,545,548,556,550,533,536,547,546,541,549,529,482,505,497,492,501,472,484,485,489,480,486,479,486,483,487,488,488,481,482,485,476,519,521,522,512,527,523,515,520,519,516,518,516,526,535,560,549,544,548,512,510,509,513,510,515,498,518,522,501,499,505,511,510,498,500,508,504,507,554,542,537,540,542,537,548,535,540,558,549,549,542,552,549,549,541,541,552,539,540,549,557,554,519,523,523,525,523,514,523,523,525,540,540,541,545,539,544,551,526,492,487,470,480,483,477,483,488,480,434,434,436,450,443,434,440,436,438,432,440,441,427,443,438,456,448,522,508,519,510,514,540,533,529,581,569,581,486,515,538,513,549,519,500,511,489,541,523,526,507,548,514,518,465,480,452,477,473,480,468,471,477,468,575,601,582,581,579,576,563,577,570,596,563,589,529,543,542,545,549,535,537,539,540,542,551,542,541,538,511,518,531,517,510,520,524,518,508,525,522,521,522,525,516,522,521,523,519,512,495,477,468,467,546,564,578,561,578,547,452,484,456,468,469,486,481,477,484,477,482,528,527,539,541,548,547,539,541,546,537,536,544,545,536,548,546,544,509,548,538,507,495,484,499,494,493,496,495,575,552,551,567,559,562,560,553,535,528,530,543,546,532,536,528,526,531,537,533,532,544,526,530,534,537,530,532,535,540,483,470,465,467,470,463,471,470,475,477,465,474,466,471,473,472,460,469,490,470,475,467,469,462,477,467,469,471,466,464,466,481,587,584,602,592,579,595,592,594,586,599,598,595,598,594,527,543,492,492,491,495,496,498,500,498,506,503,568,578,549,553,486,494,498,491,497,501,492,516,494,506,501,500,502,494,503,511,504,496,494,488,507,500,504,522,521,537,530,540,537,539,522,532,529,523,525,529,521,530,527,521,530,524,552,529,531,516,499,491,498,494,501,498,495,489,592,597,580,594,588,585,599,581,549,549,536,535,538,537,536,545,546,571,576,557,576,575,560,499,526,469,465,471,471,473,473,468,464,471,474,468,469,439,448,451,450,507,512,508,511,524,534,534,536,527,527,573,567,574,562,553,565,561,565,509,505,525,536,532,523,537,519,535,537,543,513,522,526,537,532,530,463,477,581,606,587,584,592,585,579,582,577,593,584,586,590,569,578,535,543,541,541,547,548,540,548,535,543,542,530,544,539,532,538,536,518,512,505,497,504,500,501,504,502,471,459,456,453,458,439,449,450,446,450,453,462,453,460,562,550,561,555,554,557,550,544,540,564,548,547,558,545,541,549,555,548,552,546,556,545,541,497,491,501,496,505,498,498,491,510,492,501,498,493,497,496,555,540,544,531,551,559,544,493,492,480,471,473,472,484,470,473,480,481,476,462,477,488,494,490,483,483,490,490,493,493,494,572,563,565,560,556,566,563,569,527,546,540,540,546,539,545,546,494,477,491,491,490,483,483,490,491,491,496,494,495,496,486,495,490,491,491,493,501,493,496,496,491,491,496,490,496,491,499,496,502,499,496,497,496,498,495,498,499,494,490,489,496,498,469,466,475,459,466,473,472,463,463,462,471,470,472,471,486,476,478,493,465,479,481,473,481,476,537,548,555,553,563,563,554,548,560,561,568,549,502,515,505,495,498,507,507,500,497,498,502,500,496,502,465,448,455,462,453,458,461,458,459,455,459,467,448,448,457,468,490,481,486,474,475,475,475,470,468,477,480,474,483,471,471,477,589,570,554,554,576,568,573,567,563,558,487,525,531,520,454,464,467,479,472,467,458,469,463,466,461,470,466,472,479,479,473,475,483,477,475,482,460,471,471,459,467,457,466,484,500,491,488,491,493,502,563,551,548,547,543,550,555,552,542,540,544,544,542,507,508,503,502,506,503,517,505,504,494,503,508,519,503,499,506,495,536,548,542,563,555,551,564,549,563,546,535,550,542,536,545,541,506,479,483,476,478,495,501,466,497,495,491,487,482,490,556,580,566,571,576,574,566,581,576,584,569,575,552,546,545,536,538,537,533,540,532,544,535,546,535,541,532,536,529,539,519,522,533,518,524,531,529,547,561,570,570,569,556,560,581,513,477,504,504,489,496,508,479,498,485,486,511,510,496,433,449,442,435,515,510,514,523,532,531,545,536,557,577,560,569,564,573,577,571,574,566,570,568,549,538,546,543,553,547,550,549,552,550,541,491,497,499,526,515,512,517,508,517,574,548,549,553,541,550,542,542,552,550,560,558,553,550,541,495,503,512,505,502,506,497,512,508,502,515,498,483,489,474,481,482,488,484,483,482,475,489,487,490,484,487,489,489,497,489,487,486,486,490,497,502,494,500,499,500,500,497,511,499,471,482,486,477,480,481,487,478,489,482,473,482,477,482,472,485,483,480,494,509,514,510,513,508,561,539,547,536,520,525,526,530,521,522,527,526,521,527,529,523,527,525,527,526,527,554,541,540,536,537,540,541,545,538,541,549,541,545,544,516,524,527,526,523,523,525,518,526,526,528,525,521,523,529,520,538,530,522,532,537,530,530,456,608,589,591,579,589,580,574,561,550,548,547,551,550,554,548,536,544,551,550,544,550,543,548,548,551,548,547,545,539,548,550,549,497,498,501,497,508,500,498,491,488,496,489,492,499,493,498,490,495,495,502,489,505,496,496,498,503,494,513,525,523,523,524,528,537,565,586,585,543,548,559,550,550,546,537,544,543,554,550,558,545,543,501,483,486,487,475,479,483,484,489,480,477,490,490,479,486,462,442,443,432,428,436,451,458,435,441,447,433,443,539,528,531,522,539,518,519,523,530,525,528,532,528,525,531,528,534,533,528,536,523,530,525,532,534,531,538,544,547,541,543,521,517,513,514,510,509,519,505,510,513,507,554,540,530,531,541,544,546,542,538,546,516,522,522,524,519,589,572,568,573,565,562,547,502,495,457,487,473,474,472,496,477,473,532,523,523,524,523,517,522,529,513,518,524,517,520,531,547,537,536,544,533,535,548,536,560,538,549,543,540,553,540,543,552,547,538,548,520,529,529,568,550,558,540,547,549,557,562,554,548,551,558,552,558,545,549,550,559,550,483,501,504,498,502,513,498,472,461,464,460,458,461,455,458,464,466,465,460,461,462,422,443,428,416,436,532,529,524,516,528,537,536,539,528,522,530,529,539,518,576,555,558,559,562,567,571,570,555,564,559,563,559,578,551,559,519,520,520,504,512,513,509,512,508,518,513,509,507,515,511,509,516,512,512,505,518,511,511,507,513,554,482,474,482,475,474,480,473,498,499,492,501,505,498,506,496,505,496,555,536,533,530,541,533,523,527,518,532,534,537,532,537,489,476,478,480,483,470,534,559,558,557,555,546,567,547,550,558,509,514,507,506,506,504,507,504,504,506,530,505,519,523,521,508,531,516,598,570,576,573,546,530,510,543,496,527,544,524,537,492,551,547,555,527,518,518,518,519,520,516,510,521,523,543,535,533,540,529,481,486,501,483,486,486,479,481,476,481,484,485,481,482,477,478,493,472,492,493,563,557,553,542,487,488,501,503,510,507,509,502,497,484,493,509,475,486,486,482,479,485,478,488,490,506,491,501,499,501,504,515,524,523,535,540,534,545,534,539,534,540,535,530,538,542,533,539,534,538,550,484,514,499,493,493,509,497,485,510,501,468,468,472,463,466,457,463,474,471,472,482,448,447,453,448,447,446,447,454,452,459,454,483,483,486,494,480,485,488,489,532,515,519,518,604,586,585,582,583,579,581,570,573,576,552,527,523,526,510,522,522,516,515,532,520,532,524,523,501,487,485,497,486,490,480,491,482,490,476,550,555,554,570,552,565,560,567,549,559,566,523,461,454,467,456,474,465,463,476,486,484,476,478,480,483,484,479,482,483,478,487,484,481,494,478,478,472,484,482,450,460,459,466,465,474,478,476,477,472,478,457,460,456,454,464,465,462,431,454,449,448,448,450,463,447,444,449,461,451,453,581,580,562,576,580,581,574,572,565,583,587,570,580,552,520,518,513,501,513,507,559,547,560,561,550,549,542,552,543,551,556,555,543,539,547,536,518,495,489,508,502,503,500,512,507,503,493,503,495,497,501,502,607,596,606,593,582,597,539,553,564,560,563,558,557,496,495,505,521,503,510,508,505,521,511,492,514,515,517,527,507,493,475,475,473,491,490,479,487,483,490,485,479,489,484,482,485,478,482,487,476,476,484,482,477,482,480,483,486,474,481,478,482,477,475,453,461,459,462,464,479,497,500,494,539,528,531,531,531,527,535,525,528,530,533,533,523,526,531,521,514,518,524,524,455,467,476,569,559,549,553,540,547,555,544,536,550,534,544,539,542,484,495,499,496,492,500,499,487,505,514,505,512,517,512,518,516,517,515,516,511,518,507,521,512,494,537,539,544,544,539,536,537,534,532,539,499,494,494,479,501,496,502,604,589,590,591,584,591,603,596,496,543,560,550,558,563,558,553,553,549,550,570,555,573,557,555,526,530,526,529,518,513,529,522,519,527,532,520,508,518,505,508,509,507,501,512,508,494,460,466,461,458,451,457,451,451,458,456,451,478,468,484,474,489,478,460,478,571,552,557,566,501,506,500,502,509,487,497,494,499,493,490,502,497,495,492,491,494,487,506,532,530,526,529,530,533,538,530,528,536,511,505,499,512,516,503,510,512,510,507,552,548,546,546,550,547,535,553,546,554,536,538,544,538,546,544,546,533,543,544,540,545,546,545,546,528,487,497,493,495,501,552,566,556,545,558,557,536,493,494,488,505,512,497,511,494,487,485,484,478,509,501,508,504,503,502,508,504,499,499,505,505,504,504,556,549,556,554,544,541,542,552,555,549,546,552,553,561,546,551,561,550,560,555,557,560,552,560,557,561,552,553,521,506,498,473,489,491,485,480,480,478,565,565,563,568,549,554,554,553,551,554,556,557,556,560,567,543,568,516,515,518,531,525,519,508,524,529,508,510,484,498,486,486,491,487,489,483,487,498,488,491,494,481,481,481,482,473,475,480,480,478,476,473,476,479,480,463,439,448,567,569,565,550,556,537,546,540,551,552,548,549,543,537,525,505,514,500,510,490,509,477,488,490,488,494,490,501,493,480,492,505,502,510,505,503,506,501,505,491,501,503,514,509,498,510,499,518,508,512,506,484,507,499,496,477,492,494,487,464,470,469,476,471,472,501,489,491,486,489,499,499,493,496,509,526,534,532,512,531,520,525,518,521,535,531,529,527,521,448,456,451,447,463,444,452,462,458,467,462,446,521,535,531,515,513,521,512,522,521,518,514,519,528,518,521,522,517,519,520,525,522,525,517,514,521,523,542,534,518,525,535,526,527,526,514,524,534,528,536,544,537,546,508,509,502,513,505,507,509,506,504,506,509,512,511,513,541,547,535,546,505,514,523,518,525,513,519,514,518,525,518,606,606,603,601,593,578,583,592,537,551,551,546,544,556,550,553,550,553,555,550,560,553,551,554,552,553,502,501,488,495,504,497,490,504,495,510,500,499,498,492,498,495,493,502,497,499,509,513,514,513,511,516,509,512,520,509,515,514,536,548,540,553,564,550,547,551,553,552,553,556,558,553,542,560,545,548,547,545,547,546,544,552,551,503,500,495,502,496,505,497,509,487,486,472,522,513,502,512,521,507,505,515,517,513,508,512,549,554,554,552,557,544,485,501,491,492,496,494,499,494,494,492,498,484,498,495,500,480,483,564,553,535,533,544,539,532,545,540,536,536,540,540,538,545,534,539,549,540,529,538,543,572,551,560,576,554,556,558,563,550,564,558,496,502,504,509,523,519,511,527,509,513,518,511,518,518,503,507,521,539,560,566,564,567,567,551,580,547,560,578,556,497,487,492,499,488,491,506,585,569,556,565,560,561,563,550,550,547,563,576,568,554,450,465,472,463,467,465,472,467,475,477,466,525,539,533,525,549,538,531,561,566,576,560,566,569,561,569,514,534,533,529,532,532,521,520,530,535,527,520,515,501,497,491,496,493,498,485,494,492,495,504,502,494,496,603,586,597,619,585,589,587,596,584,542,534,509,524,509,497,505,525,530,512,510,471,490,481,486,478,475,479,489,483,488,487,480,481,483,500,512,509,514,513,504,514,510,508,510,508,536,534,441,453,449,453,454,444,520,539,535,535,527,540,533,528,536,570,576,564,564,568,564,567,560,565,570,558,571,568,557,539,543,546,538,544,531,540,537,539,541,484,487,485,483,506,496,449,444,436,440,436,442,449,453,463,464,462,471,472,456,463,471,467,465,585,564,566,570,569,514,508,509,505,496,519,515,503,513,519,514,503,514,499,506,509,514,519,517,519,512,511,516,518,513,523,520,515,510,521,519,521,567,582,527,539,540,545,539,551,545,546,543,546,506,498,500,489,505,503,487,456,456,462,457,466,460,464,466,472,470,464,486,497,499,497,500,503,502,548,560,545,557,554,550,554,556,556,553,552,561,529,523,516,514,514,519,528,530,525,521,534,524,520,532,528,521,521,518,518,515,523,519,514,521,523,559,545,546,550,551,544,536,546,539,544,540,525,519,523,516,521,523,520,528,589,586,588,598,582,549,537,531,487,494,498,500,505,503,509,515,513,499,516,557,574,569,550,558,545,538,549,557,562,549,549,573,563,544,520,502,458,459,560,569,579,579,598,583,580,568,570,574,574,578,570,573,570,579,567,582,576,572,571,571,552,572,575,574,590,571,573,584,534,530,535,523,535,525,533,490,500,508,507,499,501,505,490,502,482,501,496,566,566,569,505,501,481,475,467,507,498,500,477,489,486,479,485,493,502,472,472,493,494,528,544,549,540,555,538,544,543,533,549,558,530,530,549,545,535,546,521,541,542,557,555,540,544,548,518,505,581,568,561,562,582,567,513,514,498,506,490,487,491,510,498,425,435,431,441,433,445,439,439,450,438,423,435,449,430,453,440,445,448,431,522,535,546,551,528,550,549,545,543,545,550,546,547,549,551,497,466,474,466,471,468,468,468,467,475,470,470,474,486,490,490,489,494,486,489,490,496,519,533,540,535,527,536,537,570,566,561,552,562,549,557,551,550,556,548,546,546,562,471,498,497,509,495,492,492,537,545,545,547,535,535,529,551,544,544,555,548,533,561,544,549,498,497,501,505,494,511,498,502,506,495,501,507,506,572,547,558,494,513,506,508,504,519,511,512,484,479,478,473,478,475,446,459,472,469,472,468,475,458,462,462,471,466,481,489,503,505,494,494,494,497,493,499,498,499,532,588,592,583,593,592,580,545,541,541,547,543,549,545,556,558,559,554,560,545,550,537,544,543,541,518,494,498,502,470,482,482,484,499,484,486,492,487,486,489,492,492,488,487,489,489,487,467,470,473,475,473,470,469,469,471,479,471,463,476,504,496,493,510,504,502,500,491,499,526,529,533,530,474,473,477,474,459,479,557,544,549,537,552,545,546,543,542,544,537,540,539,576,577,569,561,556,544,533,532,542,547,531,539,549,543,540,535,536,482,496,473,492,488,497,487,485,494,479,478,485,483,484,499,486,470,476,479,466,524,557,545,542,545,545,543,531,534,540,546,542,531,527,517,524,518,519,534,534,549,544,541,536,544,545,549,545,457,479,487,488,491,477,485,479,476,473,454,565,583,570,575,565,591,527,498,506,521,533,524,539,486,489,497,491,500,490,492,487,496,486,479,497,574,564,580,559,557,561,561,549,554,553,568,478,504,503,490,465,471,464,464,473,472,466,541,573,562,564,570,556,565,560,561,565,557,469,504,501,485,489,472,482,490,505,498,469,466,468,462,473,464,467,461,474,479,461,469,478,463,530,548,548,564,562,544,546,548,539,546,556,554,536,481,492,491,502,504,508,487,476,479,483,464,451,450,446,445,456,444,450,452,453,455,450,452,453,448,446,443,457,451,495,507,509,501,549,539,542,541,530,547,539,547,539,539,550,535,542,526,519,521,511,517,511,522,510,517,515,517,519,516,513,518,507,513,512,514,504,510,507,508,511,508,503,511,504,505,514,511,543,538,560,550,554,545,541,539,548,552,554,547,543,545,555,548,538,542,548,554,509,469,472,466,458,456,576,546,547,543,551,541,549,559,547,558,536,550,546,544,554,473,497,474,487,488,487,478,498,500,478,493,480,485,480,493,500,484,491,484,589,585,586,574,583,579,572,549,528,491,501,500,554,545,555,544,551,552,552,549,537,539,548,545,540,538,536,543,540,539,532,540,536,533,536,555,549,544,549,554,492,475,493,491,484,484,490,495,481,573,563,576,579,574,569,578,572,572,542,550,540,536,544,542,541,530,532,534,529,528,532,532,531,532,535,526,525,532,522,525,522,524,530,525,521,516,527,535,518,602,586,588,580,587,588,591,544,499,493,494,494,503,502,580,558,555,549,557,574,554,571,559,483,507,504,541,546,555,546,541,548,562,566,509,492,508,514,517,522,507,503,526,502,503,504,499,499,454,502,493,500,494,495,524,538,542,541,539,543,543,528,532,538,542,543,522,511,502,500,508,503,508,505,504,501,508,504,509,475,485,489,482,487,476,475,477,468,471,473,495,497,499,492,502,491,487,487,486,490,485,590,564,554,549,569,562,566,567,556,561,527,530,525,519,524,526,524,531,574,562,561,563,570,561,564,562,559,564,562,552,556,568,560,559,538,546,545,543,544,539,544,549,543,549,551,551,548,551,549,554,469,484,487,493,483,488,492,490,489,486,475,485,488,488,465,457,475,470,474,476,475,465,572,558,549,539,553,537,555,556,554,568,500,502,494,494,509,491,493,490,504,497,501,502,508,505,508,504,507,503,505,501,547,541,548,545,529,522,527,519,520,517,512,522,522,524,525,521,564,551,549,548,550,548,549,563,546,545,530,534,529,528,529,528,538,530,532,511,519,529,515,522,524,521,525,527,522,521,526,571,562,576,561,559,557,546,564,493,517,523,512,518,510,521,515,484,496,474,459,471,426,433,439,423,446,447,519,533,539,529,524,526,576,559,560,564,549,567,574,562,556,566,567,556,570,569,559,571,494,506,499,496,515,503,506,505,497,506,501,504,502,496,504,533,539,547,536,543,533,546,545,532,573,559,552,562,561,573,562,568,549,565,560,566,564,563,508,501,503,515,541,537,541,549,535,552,555,569,563,569,562,571,563,566,557,557,566,483,524,519,528,509,487,486,492,496,484,497,487,502,493,554,565,577,570,567,566,503,500,515,514,516,511,510,505,509,497,476,474,482,474,479,468,483,460,473,458,458,467,449,471,466,471,462,457,466,451,459,464,518,506,504,504,502,507,506,508,511,555,543,545,543,557,555,548,550,552,550,555,543,556,547,549,545,466,487,493,487,495,490,490,468,472,482,482,481,477,478,472,479,472,465,478,533,565,543,562,571,552,552,562,557,556,508,487,483,479,494,492,496,483,495,499,506,498,492,508,503,507,498,501,510,500,513,495,507,510,495,551,569,574,594,560,575,569,576,565,575,566,568,570,576,568,580,508,521,528,517,523,520,523,517,534,520,523,504,509,487,500,502,500,499,499,492,498,498,499,504,504,497,501,467,484,483,481,445,469,458,461,456,456,451,460,470,453,456,462,446,465,473,456,458,467,463,451,464,464,461,461,456,465,483,488,488,494,490,482,494,532,540,528,541,542,528,534,533,544,536,528,561,567,549,554,554,566,551,548,552,492,502,493,489,477,489,505,510,506,477,507,499,482,494,495,494,484,480,457,460,524,531,547,545,543,545,540,496,490,501,486,495,501,503,493,489,492,492,554,549,556,557,545,550,541,543,547,550,552,559,554,535,540,527,519,523,529,528,531,528,509,503,508,523,538,563,489,500,498,511,498,502,505,501,466,440,459,451,461,452,449,444,455,459,442,453,446,447,444,443,450,443,440,446,455,447,456,454,456,455,555,531,549,549,545,554,553,545,554,546,544,541,544,541,536,521,525,529,520,524,521,519,523,524,529,555,531,546,533,535,538,542,537,537,478,496,484,492,484,488,485,490,495,500,493,486,498,489,496,502,495,491,489,531,529,529,529,528,522,536,530,518,527,526,519,521,507,504,506,511,516,502,511,514,510,509,561,560,562,565,563,570,564,561,556,551,568,572,532,536,536,465,460,472,468,465,477,466,468,478,478,465,458,465,465,473,465,471,464,466,461,567,585,592,586,595,575,580,600,585,589,587,596,588,590,594,581,587,556,548,550,549,537,541,533,538,575,567,582,570,567,565,567,563,571,541,525,536,518,528,521,533,527,529,538,527,534,528,530,523,537,498,497,502,497,503,493,480,482,479,484,470,466,456,467,462,470,461,466,455,469,588,602,579,567,584,592,545,528,530,539,536,529,534,532,483,530,524,536,528,526,526,530,522,533,522,528,537,548,541,545,544,544,546,551,544,548,548,547,497,469,469,487,477,480,476,485,472,479,479,517,510,512,515,519,509,514,519,511,511,507,513,515,514,544,564,555,556,554,558,555,554,557,551,537,559,499,500,522,507,493,507,511,508,517,502,516,518,506,484,467,474,476,465,466,478,470,475,470,482,502,491,490,493,487,501,496,501,495,495,518,537,543,517,525,523,534,542,528,524,525,482,475,485,484,472,477,482,477,484,476,467,488,485,496,510,505,502,511,506,514,533,546,551,528,550,507,495,496,489,496,488,490,468,474,476,479,477,468,468,475,475,469,472,467,468,471,476,478,486,482,490,488,490,486,479,490,484,486,484,482,493,488,488,489,488,522,512,514,512,508,518,510,559,550,538,537,550,549,541,543,545,547,528,544,538,537,540,543,549,547,540,540,541,551,536,548,541,504,508,502,492,502,498,494,493,495,502,502,503,496,500,509,494,507,526,535,535,537,526,521,520,512,515,505,516,513,515,527,542,534,537,538,536,533,530,540,542,560,558,550,550,549,460,487,466,478,475,471,487,467,496,475,479,461,484,475,483,442,458,449,458,451,452,464,597,585,587,599,592,603,588,591,531,541,544,536,539,542,542,536,539,541,538,543,540,548,544,511,505,511,512,502,498,542,563,557,554,564,550,538,562,543,543,557,548,541,498,507,508,502,500,514,509,511,518,500,509,519,504,507,499,509,514,515,509,555,571,572,568,561,553,571,506,500,508,503,505,512,525,472,483,480,500,493,489,492,495,485,495,496,495,489,493,475,461,454,458,455,460,462,455,457,455,467,445,454,458,456,447,548,534,528,540,523,534,531,525,534,508,519,520,522,519,520,516,517,520,518,522,521,516,525,527,525,535,531,532,531,533,527,537,525,531,526,530,559,569,576,572,573,579,569,570,565,563,570,573,581,567,574,572,568,572,571,571,572,562,559,542,547,558,543,538,509,516,518,523,517,517,511,516,517,509,493,490,480,486,496,482,489,496,486,488,491,500,489,486,482,492,498,492,494,489,493,498,496,501,476,482,476,515,501,501,505,510,501,503,496,500,502,499,504,546,537,543,535,543,545,538,541,550,558,567,582,572,568,568,573,561,557,566,580,533,513,506,515,505,511,508,501,453,460,467,465,464,438,440,447,450,508,497,505,498,514,514,504,503,512,517,526,550,545,504,517,517,513,515,525,520,526,521,525,519,520,522,533,537,550,550,546,536,545,546,547,548,549,550,554,541,546,538,594,582,567,577,561,574,556,584,562,586,566,523,531,511,524,526,524,519,518,513,518,528,532,535,525,520,486,487,486,489,495,487,485,491,483,485,488,494,484,488,475,484,492,489,496,516,508,509,509,507,509,501,515,509,510,559,538,553,542,552,550,542,546,538,547,551,500,514,515,508,554,552,542,555,561,562,552,549,552,524,511,508,505,505,512,510,495,512,511,517,521,514,495,505,505,508,513,506,516,508,512,506,509,508,520,537,544,548,551,542,542,545,540,486,484,487,492,468,490,484,483,488,491,468,477,467,470,568,562,564,545,562,548,552,564,497,501,497,507,491,492,493,492,478,490,494,490,486,501,489,500,493,461,454,466,467,468,549,559,564,561,573,554,560,562,542,563,474,477,479,489,477,483,493,477,540,542,541,541,542,539,540,529,538,547,546,547,529,516,539,553,547,547,551,555,555,548,545,548,546,545,546,553,544,542,539,513,523,527,518,528,528,523,534,524,526,541,481,488,488,484,481,490,481,496,485,491,491,543,554,545,553,571,553,566,562,554,473,506,505,504,484,498,510,486,490,443,447,454,458,445,458,460,452,456,467,463,463,458,465,454,460,493,502,501,500,498,491,500,536,533,529,526,562,579,574,578,581,590,585,598,572,581,575,534,537,531,550,529,542,547,534,543,518,542,544,484,504,495,490,505,496,501,481,503,492,491,577,544,556,576,505,543,525,532,522,515,526,525,526,472,481,500,481,481,489,495,473,489,479,476,486,473,574,542,567,556,560,553,556,563,543,556,559,548,560,475,509,499,495,504,494,502,465,472,473,474,478,465,470,475,470,471,489,484,483,485,484,485,514,514,505,510,508,555,553,554,553,555,567,558,564,544,557,557,556,560,556,555,558,562,517,497,497,500,502,504,506,501,499,520,515,497,510,498,492,510,496,500,507,512,505,516,508,512,562,558,555,553,559,544,546,549,556,518,504,500,496,497,497,488,509,503,507,501,504,456,464,464,466,461,469,478,479,481,483,483,489,479,490,487,475,484,474,490,480,486,475,486,480,480,477,469,474,469,481,466,472,469,472,472,468,470,469,444,463,455,464,467,447,459,499,504,498,490,498,489,538,522,526,535,530,525,533,528,527,527,530,517,494,501,494,508,502,503,495,532,561,547,561,552,556,554,554,544,540,518,525,529,526,526,526,527,544,528,538,537,542,537,531,542,542,540,538,502,517,508,524,528,564,567,579,579,578,579,575,586,569,518,528,542,542,534,539,526,530,491,495,504,502,496,503,499,507,501,508,537,538,540,537,548,546,544,548,541,535,537,542,548,548,556,542,561,554,557,566,547,557,541,552,559,557,517,513,503,507,511,505,505,511,510,515,504,495,511,547,583,567,575,573,565,556,566,556,567,568,567,571,554,570,580,573,555,562,565,518,501,498,493,516,504,507,497,492,491,512,506,502,504,501,501,502,604,574,581,580,586,581,575,518,527,529,525,532,528,542,534,521,552,530,541,527,543,528,529,527,543,535,469,482,465,483,468,478,478,468,471,482,467,494,497,495,587,561,576,577,565,561,543,563,566,572,566,577,554,495,490,503,504,490,496,502,522,513,516,526,519,532,535,520,517,524,549,558,548,563,557,557,558,565,549,551,556,556,495,505,500,500,499,505,504,505,509,492,495,494,498,495,490,493,504,493,508,500,505,507,501,505,507,511,501,503,507,536,542,537,542,546,542,537,542,546,537,544,543,535,562,561,562,556,563,571,567,566,559,574,570,512,533,528,532,528,535,545,547,553,547,551,557,541,533,557,555,548,489,492,541,550,497,486,506,490,498,484,494,483,482,491,491,487,490,491,487,484,486,488,483,487,488,497,488,538,540,544,539,546,538,536,540,536,550,527,536,536,536,536,547,542,537,529,536,533,538,538,532,548,555,564,560,551,457,462,477,463,472,493,481,487,483,477,482,473,470,477,479,484,477,475,471,478,476,473,482,471,473,575,555,570,560,521,499,509,485,506,504,499,509,507,499,505,512,509,519,499,497,489,494,488,485,490,486,488,489,527,523,523,527,524,570,546,555,515,527,526,518,517,524,523,524,529,543,548,554,551,549,531,533,532,538,538,538,533,535,530,530,531,529,541,532,536,535,527,522,522,509,526,599,592,583,594,589,590,594,583,579,510,507,514,513,525,503,537,548,552,548,549,554,547,550,547,532,553,551,546,551,544,548,476,459,464,472,469,470,472,460,463,468,465,466,463,466,466,472,467,447,463,448,462,455,458,454,460,553,557,544,564,548,545,550,536,562,526,514,526,521,513,515,517,523,542,521,526,523,527,534,525,529,531,495,473,479,468,472,478,543,559,560,558,551,569,557,563,556,542,559,572,550,560,568,576,576,557,558,567,530,517,519,531,530,532,530,521,531,535,528,518,515,476,489,484,495,493,441,447,452,465,456,450,451,467,458,464,458,473,503,489,500,506,488,485,498,496,496,496,561,538,539,544,553,540,550,544,545,542,536,549,546,493,504,495,496,503,500,508,498,497,560,547,535,544,545,545,547,542,546,547,544,545,546,547,541,571,565,567,562,559,566,538,543,547,546,550,569,564,546,556,554,569,493,524,501,499,500,509,498,497,504,493,503,492,530,531,533,537,547,538,539,539,528,519,523,523,474,480,472,469,470,476,492,482,479,560,568,539,561,553,547,576,551,551,569,559,562,552,559,542,545,501,505,507,506,507,507,519,531,527,522,535,524,531,521,527,529,531,533,526,530,524,523,560,549,552,555,562,560,560,551,550,550,534,550,554,502,512,502,490,484,493,491,505,504,496,497,510,474,482,473,478,475,468,488,482,489,573,549,559,526,534,520,494,501,504,503,503,504,493,500,503,507,501,498,486,483,487,488,482,488,505,490,497,488,488,495,490,491,515,496,502,512,500,500,535,549,548,537,533,544,545,540,536,533,530,535,540,542,535,542,539,534,543,538,534,534,538,548,530,538,537,535,545,535,553,574,568,558,573,573,511,517,531,519,540,526,521,535,534,535,515,519,542,526,539,535,536,525,521,529,518,517,487,501,500,497,499,495,489,500,502,503,498,508,493,493,489,503,498,565,552,549,552,562,559,548,554,553,555,522,521,521,520,520,520,517,522,525,525,519,515,516,516,526,514,527,534,527,525,529,528,522,525,540,528,526,532,528,508,513,510,511,513,511,515,495,503,507,514,507,505,510,508,512,510,533,521,536,540,521,528,526,525,530,530,541,528,532,526,528,532,530,528,537,549,540,538,545,550,558,542,484,486,482,481,486,482,482,490,491,574,572,580,586,585,579,577,571,579,587,599,578,582,580,584,569,571,558,538,551,525,540,542,546,477,493,495,499,500,457,464,462,467,460,461,461,462,469,466,459,501,518,518,519,515,559,566,557,554,565,556,563,565,564,558,505,492,501,500,489,493,503,507,512,503,543,540,532,533,542,532,538,538,542,535,541,540,542,537,547,540,558,560,567,557,562,558,567,556,556,527,505,515,498,491,513,494,512,513,489,508,435,444,495,484,479,480,509,514,501,509,513,507,508,503,507,524,544,541,540,541,550,536,537,536,536,543,533,546,547,559,547,543,555,552,553,536,552,540,561,471,498,478,481,495,485,497,480,495,493,477,481,480,486,566,561,562,547,559,545,556,541,546,554,475,489,504,504,492,498,499,507,485,506,498,500,499,491,502,489,495,497,539,538,541,535,514,521,519,516,516,513,523,524,518,552,547,553,544,548,542,544,554,550,558,572,569,576,559,569,565,581,563,571,540,528,519,520,517,518,523,534,527,518,526,523,526,522,530,503,511,505,479,498,481,483,487,486,485,488,489,485,488,488,484,487,479,486,479,480,491,490,474,477,487,474,475,470,472,473,471,472,473,473,474,472,455,450,460,453,453,452,451,453,459,453,455,458,464,460,463,449,446,459,450,572,557,534,552,550,553,545,541,534,562,557,538,553,566,552,562,551,556,546,552,551,560,546,542,546,551,513,502,510,500,493,500,493,510,503,499,495,493,493,503,500,490,502,492,524,547,540,550,541,567,558,519,500,503,503,506,499,510,512,511,503,504,494,510,546,560,550,563,560,558,566,565,575,531,517,523,516,521,525,519,520,524,515,519,516,529,515,520,526,537,534,526,526,525,530,565,558,557,556,562,543,562,541,556,545,559,565,501,516,514,508,505,505,503,504,518,501,516,510,522,516,527,528,540,549,558,549,538,550,543,548,542,543,504,521,508,522,517,517,518,516,527,516,509,519,520,512,535,554,554,547,559,546,553,552,546,547,545,513,519,522,516,520,512,490,492,491,487,554,546,543,572,555,504,497,512,493,493,494,491,504,506,491,494,491,461,466,455,458,462,525,505,511,517,514,517,503,505,512,510,510,521,509,507,518,511,523,542,537,538,544,550,540,519,502,504,504,503,495,514,510,497,525,514,510,532,557,564,555,554,557,555,553,550,550,516,494,497,511,508,494,501,467,472,475,473,467,472,471,475,512,505,503,504,499,496,506,532,539,531,534,527,538,522,538,528,527,490,506,552,562,548,563,549,558,560,553,548,554,537,505,507,525,499,537,522,512,530,514,520,500,496,501,496,477,480,484,462,472,478,478,477,479,469,473,480,480,471,471,470,473,474,459,468,565,548,549,548,548,551,547,542,553,549,546,542,549,532,546,553,559,546,544,548,547,546,554,550,548,559,551,513,500,512,497,507,498,511,545,546,546,547,544,536,551,553,547,547,545,548,550,547,550,540,548,560,551,511,480,494,493,519,494,494,491,478,462,467,469,465,473,482,526,525,523,523,528,537,542,538,539,533,538,547,542,549,531,529,529,553,549,536,547,546,559,556,546,544,541,518,475,468,466,472,467,464,460,454,470,463,468,472,468,442,448,457,449,517,508,495,504,499,503,507,505,533,551,533,540,551,539,548,537,544,540,544,447,453,444,462,449,459,527,536,531,538,533,529,563,568,551,565,555,556,572,564,559,546,531,529,539,529,520,538,548,554,562,573,567,552,564,562,555,548,568,563,563,556,551,568,554,498,517,500,517,505,510,496,501,511,500,508,500,485,492,484,494,487,489,483,490,488,487,488,484,489,503,500,504,498,507,499,506,497,502,506,495,501,511,505,506,507,496,501,501,504,488,505,499,501,500,503,503,499,500,498,504,497,497,506,496,500,497,498,491,478,482,478,484,480,481,486,485,481,481,474,480,481,481,482,472,479,475,460,475,478,471,472,470,474,467,471,474,476,502,488,492,494,527,545,534,537,544,540,539,551,558,563,558,549,547,559,550,552,532,557,547,549,568,562,574,559,563,546,519,527,523,515,552,484,509,513,516,506,488,508,502,524,515,440,461,454,464,462,468,461,455,471,462,549,549,543,553,565,559,547,547,559,546,544,549,555,553,541,554,542,542,516,527,563,545,476,492,502,496,491,490,498,495,509,463,451,452,449,454,461,464,458,462,453,443,449,486,497,496,499,505,489,511,509,499,495,494,508,508,514,525,531,537,539,535,542,537,543,535,527,530,533,527,518,519,527,520,517,520,521,540,544,547,545,549,547,546,546,544,551,486,511,549,529,530,533,531,539,540,526,535,533,540,537,531,526,535,533,543,536,520,523,522,547,536,537,544,543,546,537,544,533,538,542,544,494,500,504,515,512,498,484,523,516,500,506,507,481,476,489,481,476,486,485,477,475,478,468,475,479,487,477,461,463,472,462,469,462,464,472,471,466,568,560,567,570,562,565,570,573,561,567,569,558,577,564,558,573,565,570,561,557,557,566,572,509,527,520,517,532,512,529,524,518,524,525,506,515,517,510,529,517,488,481,488,480,482,490,484,482,484,483,484,485,484,465,464,467,462,467,579,554,503,489,496,475,481,498,494,476,493,495,508,489,501,498,496,491,512,507,502,550,561,554,561,543,548,554,545,555,546,554,542,558,500,531,531,526,513,519,521,531,521,523,509,515,513,505,506,503,500,496,502,507,510,513,494,504,503,499,506,505,506,500,502,504,501,487,492,489,486,492,490,494,496,484,487,483,484,487,487,483,492,483,481,487,489,480,477,478,478,478,475,485,472,472,475,479,471,470,469,474,476,478,476,470,469,443,457,473,446,519,541,548,542,546,550,551,554,548,538,540,482,481,475,488,481,470,476,492,481,488,485,491,481,470,508,496,494,504,501,483,501,496,509,499,501,500,493,500,497,502,545,540,544,531,534,541,538,540,544,533,522,520,521,549,551,549,532,546,544,548,542,549,547,542,547,543,551,503,493,502,505,534,539,551,545,544,548,574,570,579,560,565,565,572,571,568,570,571,572,561,553,577,563,546,544,552,549,552,554,550,551,550,492,494,509,484,492,481,475,487,489,488,488,481,591,568,489,510,504,500,513,513,502,503,517,517,531,506,477,481,482,483,487,478,482,486,484,483,480,487,486,492,476,481,473,473,485,473,483,481,475,474,476,472,477,476,481,477,478,473,457,454,457,463,461,463,464,461,471,462,461,459,448,457,453,461,457,446,456,457,479,483,472,490,481,487,485,479,482,488,480,561,518,494,510,501,506,484,501,496,492,482,488,502,491,497,504,499,505,560,559,577,548,548,545,543,544,545,545,548,554,556,549,550,547,551,552,558,553,554,559,536,530,529,513,526,527,482,480,476,479,482,479,485,481,478,475,478,475,490,481,478,464,462,464,467,460,460,528,530,543,540,536,546,539,533,540,544,537,538,540,532,530,546,542,543,512,524,536,516,525,520,518,527,527,519,516,526,533,534,543,538,534,527,527,530,527,540,550,539,543,543,539,547,542,535,531,558,502,500,500,511,495,504,506,497,515,560,558,491,494,473,487,490,489,469,479,483,469,490,474,516,520,530,536,532,525,534,531,523,527,532,521,537,561,555,560,565,562,560,564,534,528,542,526,528,533,526,533,526,530,531,527,536,516,506,507,514,511,511,505,512,511,514,515,510,577,557,570,558,559,571,561,560,562,558,563,564,549,561,559,561,566,563,555,560,552,554,569,554,548,558,554,560,570,565,566,562,561,520,518,516,526,523,513,529,511,513,519,483,483,479,470,455,445,460,469,459,462,462,453,460,456,455,531,587,578,571,580,577,559,579,564,562,558,552,545,547,548,545,546,543,542,547,544,552,554,542,548,539,528,519,520,518,527,522,506,529,517,516,514,523,528,516,518,515,512,540,562,568,569,563,565,569,512,496,499,481,483,466,570,601,600,603,598,585,600,595,565,558,557,561,528,520,525,514,521,528,498,492,490,492,476,456,461,456,466,452,454,469,501,494,483,491,489,498,490,490,498,495,489,488,533,532,542,544,541,543,544,541,538,539,544,536,540,553,535,592,568,552,570,560,567,573,565,554,568,561,562,556,558,502,486,493,478,496,509,494,502,486,491,484,490,492,482,500,542,543,545,551,540,558,544,556,556,583,580,574,576,569,575,564,544,550,548,547,549,537,556,533,546,547,542,549,540,538,548,547,539,546,479,502,505,493,494,494,494,505,492,500,494,500,513,508,502,503,500,500,505,498,499,514,495,506,506,554,573,570,562,561,563,566,556,565,571,573,569,569,564,571,571,574,539,560,552,553,559,554,557,560,551,552,555,528,525,516,513,518,491,493,495,494,497,500,501,502,500,495,499,499,498,497,499,471,484,481,484,483,482,485,489,480,481,485,490,479,442,454,454,463,463,455,458,454,456,460,449,462,450,437,551,532,541,545,543,555,543,554,550,554,516,505,518,501,504,514,516,511,508,506,485,486,484,487,483,490,496,492,487,488,496,487,486,495,495,497,483,493,485,490,492,483,500,502,505,500,497,502,497,499,502,506,507,496,506,505,513,499,505,499,503,505,502,501,501,494,505,508,499,481,495,488,489,486,483,491,493,494,493,489,489,490,487,487,495,485,493,486,488,497,492,508,506,501,503,508,502,512,491,494,501,500,482,490,486,484,484,488,489,489,491,492,489,493,495,489,489,492,494,491,502,511,506,511,504,509,555,560,559,556,548,559,548,546,545,547,540,536,542,539,554,546,548,545,540,551,492,478,492,468,474,467,467,474,552,558,562,559,558,560,569,554,559,566,565,487,497,503,485,485,482,484,487,490,488,485,482,490,484,502,496,498,520,530,534,533,537,533,540,533,538,542,535,538,550,541,536,546,555,538,540,560,547,541,552,539,506,513,503,510,508,505,511,506,507,509,497,585,564,567,572,574,560,550,563,555,566,568,570,552,548,567,555,567,498,523,516,523,507,513,496,467,464,459,459,456,459,464,468,466,464,559,543,548,547,546,553,538,542,549,542,552,563,557,546,517,517,536,473,484,485,489,486,486,486,490,444,462,440,455,466,448,458,465,463,453,456,472,457,456,458,457,451,455,529,548,555,547,552,548,540,555,555,574,570,569,566,569,579,573,561,536,538,535,535,527,536,539,544,536,528,540,549,535,476,472,469,467,477,467,467,459,471,468,470,457,464,471,476,461,473,471,464,463,465,592,581,599,586,595,585,602,596,518,525,539,535,527,519,544,525,532,529,544,524,537,537,535,575,544,556,557,563,555,515,491,492,493,507,492,495,493,499,502,498,491,500,499,474,500,497,488,558,590,590,604,574,570,575,570,579,578,585,573,588,534,532,536,534,536,526,534,535,537,535,539,534,528,531,560,559,569,564,565,585,575,513,613,587,591,603,567,549,551,551,545,560,546,555,542,542,539,548,539,547,540,478,493,487,478,454,445,542,535,540,538,540,543,533,536,545,547,534,547,534,546,539,542,545,542,538,532,504,513,514,512,518,507,515,537,522,489,476,478,479,472,573,588,580,580,602,590,581,591,580,582,520,529,537,533,524,535,533,511,525,519,517,520,515,521,529,521,526,527,525,520,521,519,518,522,520,521,520,554,564,568,564,566,567,566,559,559,559,557,554,565,567,555,559,565,551,547,544,517,523,523,524,526,513,511,507,512,472,469,473,498,485,490,490,489,497,495,484,542,575,566,566,565,575,510,489,505,498,444,453,462,456,459,449,451,450,454,453,453,453,449,454,447,492,485,489,475,475,483,484,475,481,480,475,473,586,586,538,527,532,528,522,528,560,549,549,550,542,550,554,537,551,555,547,551,503,486,495,496,500,495,498,488,495,489,505,508,494,506,566,576,564,574,568,575,567,569,568,561,565,571,565,572,559,551,559,561,561,552,557,552,560,555,551,557,552,560,516,520,504,520,526,473,477,480,476,483,475,484,472,475,478,470,474,471,480,477,481,500,480,487,486,489,494,538,562,472,490,503,492,489,490,500,482,488,495,499,492,537,545,547,550,550,553,554,545,502,511,517,515,552,542,540,541,538,532,540,515,498,498,510,509,503,505,504,501,497,504,506,500,532,519,536,522,535,531,534,515,542,529,537,532,534,538,527,532,566,565,564,573,568,574,562,568,561,577,571,572,567,538,543,549,542,541,547,542,539,553,491,502,500,497,502,493,501,495,531,531,526,522,595,579,574,569,579,575,564,580,575,589,576,543,521,543,532,572,580,583,586,585,582,578,590,583,539,542,534,522,526,519,505,501,509,516,513,508,510,507,509,506,504,501,500,560,564,561,558,560,559,557,570,513,489,475,476,467,478,476,478,481,479,475,475,484,484,462,467,470,463,464,458,455,453,455,454,470,567,549,542,567,578,585,582,495,491,499,505,486,491,500,506,506,493,492,505,492,510,498,501,489,495,496,492,531,541,548,555,490,466,471,485,477,463,472,448,476,460,480,457,468,464,455,466,471,467,480,456,461,465,468,459,468,585,580,589,594,585,587,579,578,589,582,588,585,588,590,513,539,532,533,522,522,532,538,521,494,475,470,484,469,555,546,542,547,543,547,552,527,550,540,541,489,495,502,499,503,484,496,501,488,489,490,495,497,499,494,534,565,541,554,551,555,566,542,550,551,549,554,562,566,539,546,551,502,506,500,498,495,469,475,486,501,493,468,467,476,474,474,477,469,464,539,544,551,535,553,533,489,503,505,505,501,501,511,516,501,478,481,484,479,482,476,484,478,479,481,483,472,476,485,479,482,484,486,463,481,479,476,475,481,481,478,477,469,483,478,502,504,503,504,510,516,505,506,509,554,542,541,545,540,543,538,539,546,531,550,565,555,566,575,565,559,572,558,535,533,527,529,526,526,534,521,530,501,503,506,504,494,503,502,508,499,507,499,505,529,501,504,506,510,500,505,512,498,509,508,512,504,505,501,501,503,502,496,502,507,497,536,540,541,542,551,542,548,544,544,552,494,488,483,506,509,490,506,502,494,480,505,498,439,452,457,458,453,463,468,458,459,448,459,452,455,461,451,513,501,509,505,502,503,497,495,501,531,540,555,556,547,543,543,537,540,557,553,556,540,551,554,543,519,496,498,503,502,497,498,476,465,468,470,463,453,469,473,463,496,496,504,496,490,548,538,524,485,471,480,477,472,467,434,453,448,456,449,542,528,533,522,523,519,527,527,524,526,521,521,531,532,532,528,535,537,532,543,533,541,534,540,531,532,521,534,534,537,540,547,545,548,541,549,558,554,539,498,487,480,482,480,474,476,563,545,548,550,555,552,564,564,566,557,539,561,567,561,563,563,549,528,521,523,528,536,519,521,505,499,511,507,503,500,481,481,485,482,484,482,491,483,480,486,481,492,487,483,488,483,495,493,506,496,490,499,498,508,566,552,561,555,556,551,549,552,550,554,556,553,560,550,543,555,521,532,532,535,538,537,505,516,516,514,508,505,508,514,506,506,509,508,507,511,505,503,524,547,542,537,544,546,534,553,544,547,532,555,545,545,536,549,542,555,532,537,542,538,541,545,552,535,519,510,515,517,518,524,528,522,517,518,515,518,521,524,524,516,549,540,555,552,537,548,542,545,539,481,496,494,495,501,493,469,462,461,447,454,466,457,461,465,459,461,471,462,465,535,532,528,549,533,532,536,534,534,535,538,532,539,532,531,523,522,525,522,523,532,528,534,528,534,536,531,529,529,531,535,526,551,552,546,541,540,552,534,538,542,542,544,539,536,546,556,538,549,537,545,492,494,551,544,552,541,557,556,553,553,559,553,539,543,540,552,552,559,545,513,498,494,493,496,502,501,500,487,492,505,499,490,495,529,531,534,535,522,536,534,527,523,526,522,520,512,507,512,516,512,513,515,511,524,530,534,536,537,542,536,535,539,543,535,555,557,561,543,565,554,559,554,554,555,504,505,501,499,518,512,505,510,510,514,509,512,491,499,500,482,492,488,493,477,482,473,481,475,470,472,476,479,476,482,454,458,456,461,461,457,468,459,458,538,537,532,533,538,541,547,541,542,536,546,548,525,549,536,541,539,541,534,543,534,541,547,547,552,538,532,479,476,474,488,485,497,470,477,484,469,491,506,493,491,499,488,498,494,492,482,488,490,493,484,477,491,482,547,549,551,551,548,544,546,545,543,543,554,546,546,550,547,554,573,569,563,574,573,570,566,560,573,573,571,531,531,527,527,523,524,518,531,521,523,522,529,524,515,506,505,506,496,504,499,503,503,490,489,487,497,487,496,485,475,490,488,492,495,485,487,477,486,497,489,496,494,486,487,489,493,499,496,491,484,488,497,497,487,489,491,484,466,463,469,464,475,473,464,463,462,460,456,457,445,450,466,453,565,532,525,518,514,516,507,522,510,508,514,514,512,553,539,547,548,543,551,549,550,551,555,548,559,547,549,538,552,560,547,559,545,535,522,531,532,525,513,515,532,539,541,532,532,542,585,566,563,553,562,563,562,552,544,557,566,560,561,532,515,519,521,529,517,524,523,528,526,519,526,525,521,512,511,503,507,517,507,504,498,500,511,548,553,540,544,546,547,547,551,545,545,539,549,542,546,542,543,542,543,542,542,547,538,491,491,557,548,550,551,558,552,551,559,576,562,565,469,492,510,497,484,503,479,495,514,510,502,440,442,455,440,444,445,433,439,456,447,449,432,451,520,544,532,538,545,530,543,537,530,534,534,543,546,544,512,519,517,509,521,517,500,509,517,508,511,502,529,539,553,552,538,545,546,547,550,545,543,543,549,516,520,520,528,512,518,519,521,536,539,541,550,547,542,550,547,544,549,550,552,541,542,534,543,546,545,539,570,559,567,568,561,559,559,561,553,560,556,556,560,565,555,571,565,555,566,562,557,555,558,557,563,558,552,558,556,502,522,516,516,517,517,523,516,529,515,525,532,528,523,525,514,529,505,500,506,507,507,510,496,502,504,497,484,480,481,487,480,474,482,487,483,477,472,482,484,482,486,490,492,538,557,571,565,573,566,574,577,570,527,515,515,511,524,523,529,541,561,569,564,568,550,558,494,469,484,486,460,491,476,462,481,469,484,484,483,479,478,467,489,523,533,543,544,534,566,539,557,544,546,547,543,549,530,547,549,483,496,552,558,539,548,554,555,545,552,563,550,548,555,547,556,562,548,561,557,520,533,541,527,517,523,525,531,530,538,522,501,512,509,506,511,500,515,504,493,474,466,457,460,463,465,463,465,535,548,535,538,535,526,555,547,537,549,550,539,546,554,547,536,550,535,544,546,544,540,549,545,537,544,536,539,538,541,561,549,549,556,548,553,555,486,487,486,489,485,504,497,554,547,553,544,553,538,537,548,557,545,543,548,551,547,548,549,556,558,552,541,488,495,575,592,582,578,580,581,581,573,588,580,593,572,589,543,545,549,555,546,550,549,548,547,550,556,527,538,545,528,541,544,539,500,510,495,513,500,500,498,495,536,543,522,525,530,533,515,499,493,504,496,504,498,592,566,556,560,549,510,497,500,498,505,500,501,496,497,494,498,582,573,577,586,584,582,574,580,584,576,584,579,582,579,518,534,529,529,538,531,523,531,524,527,527,530,529,526,529,526,525,527,525,520,529,535,531,547,566,562,555,557,560,559,551,556,498,494,491,491,494,492,480,468,462,459,458,462,463,451,457,552,542,546,547,557,549,544,552,555,548,587,565,577,565,559,565,542,545,548,535,533,541,546,544,555,537,543,549,558,527,504,496,483,489,489,478,484,486,482,486,470,485,483,484,477,486,477,481,474,483,476,482,477,481,474,477,481,461,488,483,473,478,485,482,482,472,485,484,581,569,520,511,502,506,510,520,516,511,522,522,518,465,475,477,467,477,478,479,457,433,425,428,438,432,434,439,443,439,433,443,431,497,488,485,486,484,485,479,484,492,483,481,484,478,483,559,555,549,550,552,551,552,552,541,549,549,557,551,520,535,530,536,566,565,567,566,558,563,572,563,556,563,576,567,518,505,488,502,522,484,500,494,509,502,494,500,475,476,471,473,471,478,477,504,505,503,505,503,509,504,505,505,504,505,510,501,517,543,538,537,523,537,530,512,515,507,510,512,512,508,573,559,568,564,552,555,548,567,558,551,579,519,488,498,488,499,502,459,456,469,454,461,465,458,594,569,594,579,587,581,576,520,509,505,514,511,503,507,515,500,505,510,506,507,501,531,545,532,548,537,531,537,539,533,542,540,546,537,538,544,547,546,536,556,537,539,534,546,539,548,551,524,507,563,548,554,550,562,556,564,547,552,545,547,542,539,496,496,503,490,501,492,502,506,502,492,497,499,503,497,506,463,456,467,460,503,488,485,487,498,487,480,484,568,562,556,546,567,573,528,524,528,527,525,529,525,520,516,568,554,565,552,561,537,531,537,536,532,536,528,529,526,532,527,537,514,524,518,519,519,517,515,568,562,560,575,573,574,569,557,573,522,505,488,497,503,497,506,501,508,494,500,488,494,521,506,502,505,510,499,484,500,504,499,492,567,575,564,579,563,561,556,571,567,561,558,571,571,567,514,517,501,496,506,505,501,516,494,505,450,453,453,444,463,454,450,457,451,446,463,450,475,479,474,474,466,477,474,467,479,471,483,468,470,592,598,594,603,606,583,540,529,538,536,538,536,537,535,551,558,558,548,562,554,555,547,557,549,553,508,500,506,487,509,505,495,483,485,478,488,486,496,485,485,484,489,486,483,492,498,500,507,496,500,548,545,549,546,557,559,555,558,557,546,545,548,551,555,545,500,497,506,504,515,504,499,512,478,496,494,493,491,490,501,498,484,479,476,486,471,484,511,509,493,500,496,507,503,503,514,509,508,509,502,497,507,499,496,581,556,560,564,550,536,532,517,533,538,527,453,454,473,485,468,478,462,476,470,470,466,467,477,464,534,531,536,537,553,540,542,544,542,545,528,530,541,541,550,576,571,564,570,569,567,554,567,566,567,579,508,502,506,501,501,503,500,497,498,507,502,504,500,537,536,533,544,542,538,542,541,541,582,568,559,566,559,551,565,568,567,536,531,503,529,504,554,535,520,500,498,497,503,488,489,492,569,570,560,561,565,526,503,502,507,501,493,507,502,508,507,505,480,479,487,488,478,485,486,488,446,464,444,451,458,458,456,458,449,462,451,463,445,461,463,460,555,546,553,558,541,548,482,480,489,493,487,497,483,491,497,497,475,438,457,459,455,461,453,551,583,568,575,554,580,580,561,525,542,527,520,509,508,506,511,503,512,511,509,510,513,505,506,508,516,513,522,522,539,532,543,537,529,536,530,524,518,516,516,513,516,513,516,518,520,515,513,511,511,519,555,545,536,545,535,551,558,570,562,573,560,571,553,514,494,498,489,502,482,563,539,543,544,541,544,546,542,537,540,544,544,513,503,508,503,511,517,501,515,512,538,538,541,536,546,541,534,538,540,500,501,501,495,502,498,493,499,506,504,494,497,509,495,507,547,537,537,542,534,532,539,544,538,529,544,534,533,534,534,541,554,550,555,553,534,552,545,516,499,502,495,516,529,462,468,469,468,474,468,474,471,479,473,481,473,480,452,461,466,482,489,485,480,485,484,483,486,483,485,522,527,492,503,487,485,485,497,495,487,498,494,491,496,491,501,502,503,493,547,530,561,549,561,545,566,540,565,553,503,492,491,487,494,482,498,492,557,547,552,564,544,476,477,464,470,474,467,465,469,473,460,527,540,525,533,528,524,554,562,555,564,513,585,594,583,578,579,578,578,597,577,580,527,517,516,507,520,548,553,553,550,547,545,543,554,552,547,558,545,555,557,549,539,550,555,542,547,543,542,550,551,552,520,505,509,498,502,504,507,508,512,501,496,500,519,504,500,496,510,508,559,584,578,569,572,568,555,559,568,570,567,568,578,499,487,486,500,476,487,485,496,477,488,474,482,478,494,480,483,526,546,539,534,529,547,538,534,552,547,553,544,548,537,542,540,558,558,546,551,548,553,549,559,549,545,491,451,448,459,436,444,435,435,444,431,439,435,428,517,533,527,521,526,524,541,519,528,534,536,512,527,521,532,546,544,544,550,547,536,537,532,538,544,552,547,509,503,505,516,508,515,515,520,510,508,506,506,518,539,550,559,558,548,522,531,533,525,527,531,524,531,532,525,537,504,518,517,513,517,522,519,504,514,521,508,566,552,559,569,549,550,574,569,494,508,499,507,505,498,490,510,506,512,513,530,527,515,528,527,520,523,519,523,526,514,573,563,562,553,559,566,562,558,563,559,566,560,562,569,567,515,523,513,522,496,517,514,526,489,482,476,485,469,476,473,469,462,472,463,465,461,463,463,461,463,473,469,566,565,561,561,561,558,578,550,553,548,501,495,483,499,499,485,489,492,491,476,483,495,494,542,557,538,541,542,552,542,548,547,554,550,542,516,507,507,514,513,511,507,502,517,537,537,544,544,546,552,548,542,543,544,543,528,539,539,536,536,545,567,558,572,587,572,576,560,573,563,561,582,559,586,575,552,499,481,569,558,549,562,565,564,563,557,547,565,561,562,559,562,564,569,556,548,561,545,558,550,552,551,559,555,554,504,515,497,502,519,514,506,512,513,450,450,459,458,452,462,466,455,465,429,431,442,439,418,426,444,423,435,436,421,430,434,431,432,441,427,539,535,523,540,525,512,550,564,565,563,567,562,552,545,543,538,548,548,533,539,545,545,537,543,540,541,547,539,546,542,538,544,541,539,541,538,538,532,525,531,523,524,527,528,529,524,520,483,496,484,473,461,474,484,477,487,481,478,463,473,567,545,570,564,566,522,503,512,509,513,511,511,510,515,509,511,515,505,515,507,516,516,513,511,525,536,541,547,545,552,554,558,552,548,551,556,519,510,515,521,505,519,506,511,511,496,500,503,488,491,492,498,492,489,551,528,541,535,535,543,534,534,501,503,509,502,503,503,515,500,559,547,552,542,543,540,555,537,545,543,559,565,564,491,506,496,510,501,495,512,514,512,504,512,513,509,513,511,514,523,526,524,524,521,524,522,521,515,538,533,535,558,538,537,520,510,505,509,505,510,538,560,555,565,565,555,551,566,549,524,510,518,517,523,461,472,459,465,471,471,470,467,465,475,477,418,428,547,533,531,543,526,526,535,524,527,545,534,525,532,536,533,532,527,543,535,537,540,543,540,548,523,492,496,492,505,502,497,505,506,521,493,506,502,497,506,498,504,499,500,495,575,556,555,554,553,498,489,499,493,493,496,492,518,501,510,509,522,501,519,505,511,510,513,556,565,556,558,556,558,566,562,566,528,532,521,508,507,511,510,512,546,568,541,540,518,533,527,529,551,520,502,523,517,510,461,465,461,471,462,465,457,472,465,467,460,457,474,460,457,458,456,451,459,459,560,561,545,568,555,560,562,581,570,562,563,483,464,470,471,485,472,486,525,545,547,536,553,547,563,555,539,541,477,476,468,466,474,475,469,476,485,466,528,538,537,544,543,544,543,550,556,549,542,548,547,549,548,542,564,515,515,516,489,509,504,529,495,514,497,475,468,459,475,470,461,471,464,470,461,463,475,490,480,481,481,478,484,479,477,487,478,482,476,469,474,481,480,485,479,485,483,494,486,484,473,488,490,489,494,493,494,496,488,496,490,494,489,488,484,484,461,467,471,464,471,459,467,464,466,468,464,439,452,442,436,451,429,429,449,428,434,441,444,530,515,517,522,531,527,517,536,558,569,562,560,566,559,550,549,543,545,544,546,547,550,545,541,542,541,544,546,536,545,529,540,536,486,508,506,508,506,512,485,476,478,480,489,476,481,477,490,478,483,488,472,484,485,493,491,488,491,487,492,491,492,476,465,466,469,457,460,468,469,461,446,460,443,586,586,579,579,582,590,569,572,571,508,516,507,504,511,556,561,553,556,553,545,555,568,556,555,549,540,561,555,552,561,551,513,500,500,506,497,491,495,511,492,490,488,495,499,488,505,497,501,494,495,552,553,545,549,557,550,558,552,556,562,559,553,568,461,483,479,477,492,490,486,482,488,484,485,480,483,484,483,482,483,482,461,494,501,495,495,509,502,492,495,502,501,512,500,486,504,523,496,516,571,548,562,561,477,498,493,503,498,503,501,500,500,489,504,498,502,491,514,503,497,537,556,499,506,499,497,506,500,503,494,504,500,507,512,495,507,544,532,541,546,546,542,551,550,550,547,554,552,544,540,537,551,561,556,560,565,573,563,572,565,558,557,567,573,567,561,563,567,568,567,574,514,500,502,514,512,499,513,502,500,556,545,553,553,552,558,544,552,552,542,548,554,542,551,552,499,475,477,475,481,477,472,475,478,476,480,483,477,467,487,490,495,496,484,489,494,491,497,486,488,492,494,555,563,568,567,570,571,579,530,518,516,516,524,506,509,515,519,516,524,503,510,509,526,514,510,519,527,575,590,582,571,578,580,584,569,579,581,587,545,561,556,545,551,559,554,560,545,557,560,552,556,522,535,533,519,515,513,501,513,516,502,506,512,511,494,511,505,508,513,505,507,509,505,506,505,505,508,498,507,504,503,507,504,502,507,508,503,495,493,501,498,496,498,509,500,500,496,504,489,487,492,497,489,486,485,487,484,479,486,490,488,481,485,482,488,488,491,482,481,490,485,505,495,497,491,487,505,493,496,496,492,493,491,484,498,492,481,472,474,476,481,471,480,478,484,459,456,453,458,471,466,455,452,468,468,465,459,463,468,471,457,462,473,446,468,602,587,599,585,593,580,602,596,585,592,601,592,603,577,586,578,591,534,547,543,548,554,555,497,499,505,507,498,491,504,488,510,510,508,513,506,520,508,509,513,522,533,484,496,494,498,498,490,495,494,491,493,502,496,500,505,494,488,588,595,595,590,591,590,596,585,591,582,591,585,572,550,562,546,552,555,558,557,543,559,564,559,547,553,478,490,493,504,497,488,485,494,493,494,491,478,480,487,489,494,498,498,500,550,558,567,576,560,581,576,482,492,496,501,489,486,489,548,563,551,535,550,549,551,556,547,557,471,461,478,481,470,466,473,487,488,548,539,548,541,537,537,541,547,540,538,553,548,548,552,551,556,556,553,551,546,549,555,485,508,489,495,485,497,473,462,469,465,475,455,467,467,462,465,469,480,519,545,553,533,549,549,533,540,536,471,483,473,480,479,470,488,489,492,501,503,535,541,548,542,547,540,563,567,552,560,553,556,553,557,563,567,562,556,558,556,559,559,558,507,530,519,520,522,511,522,526,512,524,518,518,495,482,485,488,491,489,480,482,484,488,486,486,494,494,508,497,501,493,501,501,501,513,512,516,516,516,514,516,545,562,559,551,552,560,557,557,557,567,554,565,557,557,547,561,576,501,496,502,502,495,502,493,497,499,500,487,503,574,558,561,582,571,556,572,517,513,496,497,505,512,487,479,481,482,483,478,483,470,488,481,475,478,478,508,495,499,497,497,499,498,479,487,489,494,482,487,482,494,478,484,486,484,478,488,482,483,477,461,445,444,445,453,445,447,459,450,445,456,446,477,477,473,481,458,456,461,607,581,593,583,599,610,585,581,581,581,589,513,543,525,531,534,538,535,537,532,499,504,503,502,507,511,507,506,574,573,558,561,516,521,538,520,525,526,516,530,519,521,527,533,530,535,525,466,492,475,472,479,557,541,549,554,556,546,556,551,554,553,557,554,554,539,549,554,552,554,564,465,481,486,483,486,489,501,490,498,536,532,531,535,533,529,542,536,531,520,519,521,527,520,545,532,537,537,544,539,532,540,533,532,535,554,536,550,542,550,549,548,547,495,493,510,475,491,503,505,501,506,509,497,502,492,496,489,508,501,539,531,518,530,523,524,527,515,521,520,478,484,493,505,502,500,482,503,495,583,581,609,598,571,595,604,593,591,584,599,595,592,523,527,517,534,530,535,535,513,520,514,520,522,523,523,524,523,505,515,509,515,509,506,515,514,512,514,511,518,528,531,531,532,531,527,529,526,526,530,526,527,537,530,525,533,531,534,532,550,548,561,525,525,515,553,556,549,556,504,509,512,507,505,509,511,506,510,508,514,519,509,492,495,494,521,562,563,575,570,565,562,559,549,546,539,539,545,554,536,537,535,533,534,535,529,530,529,533,537,525,540,533,524,531,531,534,538,537,531,533,541,553,567,554,560,519,484,479,481,478,480,477,472,477,443,460,460,461,467,456,457,460,459,454,462,467,469,454,455,463,463,575,559,567,494,511,503,502,504,509,508,499,500,499,502,505,497,505,526,532,525,532,527,526,517,519,521,521,519,521,522,523,518,515,515,535,532,530,538,529,539,534,535,530,536,526,546,549,536,542,550,540,542,547,536,550,481,496,501,488,501,501,489,493,493,489,500,503,497,488,574,548,556,557,555,552,561,568,551,561,548,540,554,576,491,502,523,533,499,509,462,478,483,470,464,472,468,474,472,475,488,477,476,475,472,475,473,476,474,475,470,473,466,472,480,472,480,478,496,499,500,494,491,501,496,498,496,496,500,496,529,538,541,536,542,531,533,533,543,534,537,527,534,576,577,549,567,547,558,522,502,511,519,574,570,565,557,553,548,515,491,490,495,491,494,497,491,495,499,495,504,497,463,471,459,468,468,470,469,469,458,468,466,468,454,437,438,443,430,440,435,444,443,434,435,434,433,449,516,529,515,525,523,521,514,523,514,522,517,526,535,537,543,546,492,492,498,508,498,502,488,520,430,442,438,443,433,437,443,439,436,443,438,438,436,441,443,451,455,456,446,453,440,448,442,456,450,460,447,453,539,556,564,559,555,555,556,571,548,559,545,548,539,545,534,531,565,551,544,547,549,503,514,514,517,519,552,554,583,566,517,525,528,522,524,518,533,528,520,518,533,536,527,500,503,509,504,507,504,502,508,499,499,490,491,491,482,490,488,508,504,505,503,509,507,504,511,509,504,548,526,529,537,529,520,533,475,469,471,478,474,464,543,542,543,543,529,544,537,546,569,572,577,582,576,577,581,570,543,526,507,512,472,486,478,475,481,476,471,515,514,511,510,518,516,504,516,518,517,568,577,567,567,567,527,519,527,506,526,525,537,518,528,514,476,477,475,477,481,479,458,455,466,463,455,466,465,468,472,470,460,462,471,468,567,547,559,557,543,559,552,556,554,547,553,557,555,556,556,472,471,478,488,474,480,552,556,543,553,543,547,558,555,559,546,556,550,478,500,495,495,487,509,496,512,457,453,455,446,454,459,444,448,453,443,442,455,455,455,457,457,455,480,472,475,472,477,470,464,474,569,608,589,584,600,596,585,587,593,525,547,535,524,530,519,523,527,521,520,522,524,569,558,549,564,561,569,546,549,556,549,564,556,493,482,498,499,490,497,499,496,507,494,563,546,554,551,556,549,553,549,557,558,551,555,565,509,505,484,502,500,482,464,490,469,479,475,481,474,463,555,552,560,558,545,552,560,473,495,496,481,450,463,463,471,468,538,540,531,538,540,537,537,538,537,521,524,524,533,548,544,537,544,536,543,552,542,543,545,544,553,562,566,551,559,552,513,522,524,526,511,529,525,523,520,523,524,506,501,502,504,474,487,476,475,483,485,479,477,476,482,491,477,463,447,444,447,443,452,433,459,445,443,449,454,446,441,442,549,551,552,547,538,553,538,549,543,541,545,551,547,557,548,537,545,540,540,525,552,565,570,558,564,551,534,535,525,510,527,518,532,518,520,513,509,511,505,502,500,499,495,503,506,500,497,502,499,500,502,493,501,503,498,502,503,499,505,495,495,490,487,486,480,485,484,486,488,488,479,488,464,478,467,476,490,473,481,503,498,503,501,502,497,499,495,497,501,497,504,498,498,497,506,482,491,491,487,484,486,487,499,492,490,495,488,491,548,540,545,543,547,542,539,551,547,545,545,549,568,568,575,580,576,540,526,519,531,517,513,519,517,512,517,514,515,511,508,513,522,505,509,504,512,503,500,503,505,500,492,499,494,501,503,502,501,503,490,497,499,490,495,493,500,496,489,491,497,503,463,471,472,469,457,466,461,466,464,464,472,474,470,464,469,464,459,449,451,449,443,456,445,447,462,462,458,461,551,555,546,543,532,513,515,513,513,513,516,509,514,514,512,513,511,541,545,531,543,528,529,517,521,523,525,530,525,527,528,530,530,530,535,529,532,528,524,530,524,525,526,521,587,578,564,576,569,575,563,564,519,507,471,466,465,466,464,439,461,451,451,457,449,465,458,454,493,493,493,488,495,492,479,485,495,484,492,494,583,565,580,577,562,545,594,580,559,581,494,556,554,551,546,566,558,549,555,557,559,541,543,569,549,555,546,539,540,552,556,553,555,544,558,560,546,491,499,483,479,490,482,476,489,492,485,500,515,505,496,490,494,514,479,473,471,462,468,477,453,468,467,471,469,465,466,465,461,457,457,473,460,459,547,550,535,552,546,548,541,558,553,547,551,550,547,530,528,494,504,466,461,455,469,462,457,460,471,444,517,503,508,505,515,540,548,563,552,561,560,554,558,559,561,565,538,478,490,479,485,484,494,493,486,489,497,487,484,479,483,483,479,491,485,477,483,487,480,473,471,467,478,470,475,471,472,473,474,474,467,504,474,472,487,460,471,487,483,474,589,615,586,582,603,592,597,556,559,551,548,553,548,491,480,494,493,486,489,486,497,496,495,493,496,497,572,551,560,559,570,555,568,567,547,555,557,523,550,534,544,532,537,533,532,536,537,531,546,541,550,551,562,556,561,561,518,505,453,465,464,463,466,455,458,467,469,462,468,463,463,444,453,450,455,450,449,584,597,579,585,574,592,584,580,576,574,585,579,563,585,578,587,565,587,578,535,504,511,520,517,524,528,522,512,507,502,526,522,523,516,517,523,581,591,585,581,577,582,493,507,508,502,502,509,505,517,544,528,533,537,534,538,532,535,524,520,523,539,540,527,535,538,542,544,538,531,536,537,545,535,540,538,536,501,506,497,504,500,501,503,503,514,496,510,504,567,575,562,573,550,558,578,550,510,529,512,528,526,524,519,523,526,524,530,525,540,524,529,533,456,484,468,466,470,488,537,526,534,534,528,532,519,528,528,521,537,526,547,542,541,538,531,537,537,536,540,542,547,538,531,534,544,542,545,539,540,507,522,518,516,507,512,518,510,516,508,518,515,513,519,510,514,519,511,525,533,528,531,524,511,496,498,497,506,494,488,475,496,489,491,504,590,578,590,584,587,601,587,583,596,601,593,552,546,556,542,544,504,514,511,506,507,498,477,476,478,482,476,474,474,480,477,483,483,480,481,482,480,479,475,481,460,463,467,460,467,472,468,471,470,460,479,480,483,518,525,519,521,520,526,519,519,518,522,516,553,547,549,534,542,549,547,551,546,494,526,524,511,524,517,518,515,520,524,574,583,581,579,582,578,578,575,573,585,504,525,519,536,520,513,529,535,506,527,461,474,484,484,471,476,472,476,481,491,476,561,566,462,456,470,463,459,469,469,470,474,469,474,533,552,531,535,531,544,537,534,539,539,543,549,541,533,540,538,541,555,552,479,506,528,551,539,544,548,548,545,550,544,520,526,527,521,521,521,524,524,525,528,544,545,540,536,545,536,540,544,540,553,533,536,529,543,545,540,460,466,478,472,477,469,470,473,480,466,475,474,451,462,611,600,598,599,582,591,604,549,558,555,544,555,551,556,557,550,546,556,553,558,503,491,494,498,487,499,488,490,491,480,474,473,462,453,473,468,452,457,454,541,535,533,532,534,529,531,519,513,525,512,513,524,518,522,523,519,522,523,523,558,573,505,514,593,569,563,572,572,580,568,581,577,552,546,536,540,544,550,551,543,532,539,541,539,541,539,544,538,541,536,540,524,527,529,530,535,530,504,519,515,523,517,514,514,511,524,513,512,515,512,507,520,531,532,543,534,533,534,533,530,537,509,515,512,515,507,511,510,509,508,521,518,521,521,525,519,533,525,519,521,521,529,597,585,586,586,571,574,578,581,576,597,575,576,594,516,519,505,512,519,519,498,518,499,550,552,547,551,557,545,557,553,543,539,531,549,535,543,552,541,550,545,541,507,515,498,504,495,516,505,477,484,480,476,478,471,479,477,479,471,480,476,476,494,501,494,504,504,505,540,532,534,558,559,565,567,564,562,560,555,549,552,554,555,571,504,510,509,505,510,502,515,512,524,511,515,506,514,512,525,515,515,506,517,514,520,522,522,527,513,520,510,520,510,520,566,581,584,595,595,583,592,590,580,591,592,589,588,554,553,549,551,555,546,559,551,538,501,511,498,502,504,505,500,474,481,481,476,473,477,482,487,483,483,475,474,455,453,454,458,466,455,466,454,465,457,450,464,460,453,462,454,452,458,456,461,451,535,549,546,546,552,555,538,557,565,570,569,567,568,568,527,525,518,528,523,525,525,529,557,560,566,555,555,554,554,551,571,540,563,501,495,496,556,547,543,554,553,530,560,548,540,554,554,545,549,546,567,524,516,513,511,515,512,513,513,516,510,516,513,516,522,531,521,482,479,475,477,478,474,480,488,481,471,470,565,460,468,466,481,460,464,481,525,515,531,515,524,521,516,516,526,527,533,524,520,525,516,519,522,527,516,519,524,520,531,541,528,543,545,533,546,528,533,527,525,532,528,531,528,526,523,526,548,547,550,557,548,543,554,565,556,556,504,513,516,521,516,527,521,513,511,484,490,484,484,478,477,481,477,491,481,475,485,481,480,488,487,483,485,494,491,495,495,484,484,484,493,497,490,476,472,464,467,492,489,492,496,486,483,531,537,544,549,554,527,523,527,525,527,527,527,524,519,534,527,520,519,509,504,502,511,499,503,508,511,539,541,536,543,537,542,533,578,555,550,552,562,558,555,571,554,555,529,512,523,522,521,521,519,524,523,523,518,528,550,574,586,572,566,560,571,577,570,563,578,571,577,502,503,499,491,502,500,506,511,501,502,499,517,524,519,523,517,521,517,519,525,520,511,512,523,523,522,512,521,584,565,570,568,552,557,558,568,557,549,560,481,489,504,492,492,495,495,488,503,491,492,485,490,495,490,495,488,494,486,486,486,491,500,564,579,554,561,553,577,564,553,575,528,514,517,526,527,525,515,523,522,546,541,544,541,544,537,546,547,541,544,543,539,541,553,584,559,575,567,572,559,497,470,452,462,451,461,461,463,462,459,463,468,456,477,477,480,486,472,466,481,478,483,476,484,474,478,554,562,582,562,563,557,566,558,553,562,570,526,520,515,514,507,474,465,465,467,465,474,463,474,471,466,466,462,460,450,460,464,461,460,459,459,461,455,461,516,530,526,531,527,539,535,527,538,539,520,535,563,554,540,537,538,532,532,524,539,532,539,532,532,527,535,531,529,524,524,526,528,528,526,524,530,522,526,531,544,539,561,551,557,549,565,549,541,546,541,548,473,500,500,485,487,487,480,478,484,498,480,477,473,475,477,471,477,480,475,483,484,551,563,554,561,582,581,572,551,543,577,459,484,483,479,498,482,469,537,547,551,547,549,561,549,558,568,578,586,575,583,571,578,561,568,564,586,566,519,520,507,510,510,512,513,520,514,518,512,519,511,521,512,536,540,533,538,545,535,542,538,534,542,531,536,549,553,551,548,569,562,551,558,557,558,550,556,492,496,497,501,493,508,515,505,501,510,507,497,517,477,478,482,473,482,482,478,477,473,480,485,459,457,453,446,444,445,455,456,457,456,447,451,453,490,489,489,485,484,485,527,527,531,524,521,517,532,577,566,600,586,579,584,577,598,588,586,573,586,590,584,578,577,595,588,535,527,472,477,479,480,470,480,486,481,473,476,535,554,568,552,554,552,555,549,545,484,480,480,473,476,468,477,471,478,476,464,477,477,482,466,460,461,563,569,564,551,552,507,515,511,520,508,511,519,529,538,539,538,530,535,539,560,556,542,549,556,554,570,556,553,557,546,556,516,505,522,512,515,513,516,503,514,527,505,512,516,529,581,552,491,485,469,476,475,483,463,467,476,472,478,470,484,471,475,602,571,578,576,560,564,588,589,568,590,566,581,556,501,472,476,464,470,466,490,461,474,488,535,530,579,569,553,564,558,563,558,566,541,534,537,544,527,531,541,534,535,535,535,536,518,523,537,540,530,538,534,528,531,540,526,531,497,491,504,506,483,503,491,509,615,554,538,535,534,540,538,537,543,541,535,527,541,555,557,549,565,556,560,558,466,482,486,475,464,470,483,470,487,469,468,458,453,449,442,449,457,455,438,456,547,532,556,542,544,543,535,542,543,543,544,545,545,549,549,538,538,546,503,496,487,503,497,504,489,509,498,502,486,493,488,488,488,484,492,484,486,491,487,487,486,486,493,487,533,511,527,524,527,544,540,555,561,556,550,553,555,556,511,524,522,524,523,527,531,518,558,547,544,547,551,543,549,552,541,553,543,544,573,549,559,551,560,564,562,553,545,572,568,559,569,564,552,502,502,507,504,501,503,505,501,519,522,517,527,522,525,521,509,560,566,553,558,564,563,556,547,567,564,471,502,495,491,487,493,488,500,502,499,488,496,492,489,488,494,497,471,471,481,624,596,592,608,581,599,538,541,545,536,529,538,532,544,543,543,547,567,559,563,557,556,521,509,508,505,501,498,498,493,501,508,452,441,439,453,453,453,451,441,449,459,457,451,437,446,456,456,454,524,536,541,543,545,545,552,539,538,541,554,556,552,538,528,542,540,533,504,511,504,516,511,511,522,500,511,511,502,504,502,501,491,504,511,509,504,505,564,555,557,563,478,479,500,500,503,486,500,496,483,486,490,492,567,559,562,577,561,556,570,571,568,558,516,497,493,504,479,489,496,490,493,487,493,494,491,489,491,495,484,495,558,545,549,547,543,550,543,543,539,539,549,539,543,542,523,527,535,538,524,534,528,523,560,547,561,561,554,568,574,563,557,563,560,564,563,566,525,537,531,536,530,532,529,532,524,534,542,474,475,478,482,478,530,544,550,542,548,542,550,544,548,542,566,542,547,556,556,551,548,553,546,550,550,556,544,554,532,527,529,526,533,559,556,551,554,509,509,503,498,506,502,510,497,507,466,472,464,469,468,459,469,472,472,463,470,465,464,468,477,451,467,457,458,472,461,459,451,457,546,560,543,567,554,546,550,541,536,561,550,550,499,496,489,525,498,496,486,490,495,457,456,457,458,470,465,462,466,465,471,462,459,464,466,464,548,475,485,469,470,481,475,480,483,472,467,479,543,535,532,544,548,543,538,547,548,560,542,544,557,553,549,548,554,486,456,451,472,471,468,465,464,474,457,464,463,448,546,530,527,533,541,536,528,534,537,576,562,569,575,563,567,542,553,543,546,489,486,499,482,481,504,482,479,486,482,487,455,545,548,550,550,547,555,554,554,547,561,553,550,545,555,554,554,545,563,551,550,538,542,539,534,470,470,473,488,471,484,472,488,487,489,491,515,506,510,507,506,504,506,497,550,538,542,537,544,548,565,564,555,560,565,551,559,543,558,551,563,564,559,552,517,527,536,523,520,523,515,518,518,518,517,516,513,514,513,554,548,547,547,549,558,548,550,551,555,535,558,547,546,536,555,548,556,480,473,475,472,477,466,462,549,563,565,558,564,541,550,565,554,543,566,571,558,495,482,490,484,498,527,542,536,535,535,529,530,540,537,537,538,545,535,541,538,563,560,557,564,562,566,558,562,506,492,505,510,511,498,507,509,511,547,557,544,550,572,555,561,560,563,573,578,561,574,511,506,496,514,506,513,515,527,517,524,525,517,518,519,522,512,521,513,517,502,511,529,527,537,556,550,536,520,536,532,547,529,532,539,503,507,497,508,499,500,487,482,498,490,501,502,502,591,585,600,582,592,596,594,587,584,573,597,577,591,595,514,509,504,505,517,508,518,516,501,508,519,517,525,525,527,525,531,539,534,526,531,529,538,534,537,538,536,538,541,548,541,545,537,544,538,538,549,549,550,541,497,503,495,509,499,503,487,497,500,493,505,498,499,495,493,488,493,502,491,491,500,495,496,493,523,525,528,524,518,538,527,530,530,532,515,523,514,518,512,514,517,510,520,545,525,528,524,534,529,530,536,534,530,525,537,536,529,536,542,560,553,548,556,466,488,474,471,485,484,482,520,529,529,526,518,530,520,514,515,514,530,547,538,541,534,540,543,535,531,534,544,533,534,543,533,556,543,548,539,541,548,548,535,548,528,508,515,515,510,508,509,508,508,560,552,562,562,563,579,568,526,507,501,498,481,487,481,484,503,488,504,500,506,493,496,506,504,505,510,508,504,500,506,505,476,488,481,482,488,471,475,478,483,482,513,496,496,492,502,492,498,500,497,501,492,500,498,494,501,530,517,524,533,531,524,520,514,528,530,598,553,569,551,558,547,554,561,550,561,553,554,502,526,522,516,528,518,479,517,504,502,512,499,494,501,539,559,563,566,552,558,563,560,553,559,556,564,544,546,552,546,543,534,549,546,540,547,547,547,547,548,545,529,511,516,466,467,475,468,459,468,469,461,473,472,482,468,562,579,576,577,570,588,580,591,580,589,586,587,588,529,535,540,531,533,530,529,531,538,525,523,499,504,505,504,508,502,509,507,568,556,558,559,560,560,561,560,543,540,537,548,538,543,553,548,547,547,545,545,494,475,447,449,429,453,454,448,457,539,542,551,550,556,557,545,554,553,550,556,566,546,548,561,539,546,551,544,540,546,549,500,506,503,489,503,497,484,494,490,475,480,481,505,501,500,497,501,506,505,510,505,513,495,548,542,546,554,547,556,557,547,542,541,552,549,550,490,499,494,502,497,498,500,490,486,493,504,502,486,498,480,479,483,479,480,483,482,481,493,509,497,493,498,493,500,492,486,482,484,489,492,487,494,484,500,491,476,481,477,481,480,476,475,473,471,485,485,478,475,485,482,487,467,478,472,474,476,467,468,479,465,476,474,480,442,457,453,516,537,522,555,547,542,544,542,549,542,543,541,540,537,542,556,554,551,557,554,560,554,553,568,553,560,553,501,518,520,514,517,518,529,521,514,496,508,503,505,505,509,505,511,512,492,487,488,486,482,491,488,490,489,486,452,469,468,458,477,473,475,471,476,492,497,485,493,493,492,493,470,468,475,458,465,470,462,470,469,467,472,466,467,455,459,457,454,463,457,463,448,569,549,550,532,559,539,545,553,550,540,551,558,554,550,518,494,504,562,563,530,505,513,501,515,519,500,517,521,501,469,490,481,473,483,481,494,480,482,481,484,480,481,462,474,465,472,464,428,434,430,434,438,423,430,434,439,438,523,521,520,536,530,525,516,522,531,524,525,541,527,534,538,534,519,538,532,524,530,528,551,570,572,575,561,571,550,562,564,493,508,513,507,517,503,513,509,496,520,552,559,559,555,555,558,548,553,550,562,555,550,557,555,556,562,551,550,555,552,551,556,552,541,561,542,561,550,512,516,508,508,525,515,517,506,518,521,498,488,484,486,485,489,492,489,486,480,490,489,493,478,488,494,484,485,476,478,478,479,475,482,481,481,474,481,484,461,451,466,456,448,459,450,448,455,451,452,503,506,492,511,493,507,532,554,551,541,548,548,540,556,486,477,489,476,476,486,480,472,454,445,453,433,446,454,438,446,438,430,443,452,538,536,531,535,531,553,539,548,533,541,531,531,541,543,554,549,547,546,539,556,542,551,545,500,509,512,503,516,505,472,480,490,477,481,484,481,481,485,481,465,467,469,463,465,474,482,464,472,472,477,473,482,475,468,480,474,475,478,467,474,458,452,463,547,565,557,564,546,556,557,553,561,566,553,548,558,546,561,551,557,554,547,553,536,547,552,554,475,497,476,491,471,493,482,478,469,473,480,472,544,551,547,551,541,565,554,550,563,557,564,562,551,539,510,521,514,516,524,523,479,474,485,487,485,481,482,489,478,484,473,456,456,464,463,459,538,544,541,553,538,525,534,544,541,546,540,539,542,540,548,549,548,551,542,552,542,547,540,557,551,551,536,540,546,553,546,560,554,484,504,507,508,494,493,498,499,506,586,592,591,592,597,605,602,600,587,592,593,512,533,530,531,533,587,587,578,592,593,591,584,573,587,575,591,598,587,596,594,590,594,594,581,544,552,550,550,556,551,553,542,497,498,495,504,495,488,502,506,497,491,489,497,502,503,505,514,511,508,504,511,505,502,505,508,504,511,501,508,533,548,553,545,553,548,551,547,551,548,552,550,558,554,547,542,525,528,529,530,524,529,525,537,524,531,524,527,525,549,558,563,497,496,486,488,493,494,495,488,572,513,518,510,510,513,511,506,504,507,509,513,495,503,502,496,503,502,500,506,499,546,539,540,546,549,536,541,548,534,545,540,542,541,545,552,549,479,507,493,487,506,492,501,510,507,509,496,504,500,511,494,507,547,548,496,512,506,507,523,504,506,502,493,513,498,484,487,484,482,481,486,485,479,486,485,480,477,475,470,482,478,454,471,463,458,459,467,464,469,471,463,461,466,457,463,469,462,472,550,565,559,545,554,561,556,553,555,544,548,563,549,548,550,556,547,540,548,554,557,558,536,536,498,492,497,501,489,486,491,507,509,497,496,582,581,576,580,573,575,524,546,539,546,549,540,484,479,491,485,482,472,484,470,498,489,482,453,464,464,459,457,468,460,459,463,467,461,467,466,462,467,463,535,562,530,561,541,549,548,540,542,550,494,456,443,448,439,441,437,436,445,437,429,441,431,514,507,495,484,493,485,503,500,499,580,568,562,557,573,555,568,564,563,565,571,571,563,563,550,557,511,532,544,522,514,522,512,513,515,526,507,521,527,532,516,522,514,473,474,479,481,482,483,464,461,461,465,462,458,461,465,464,461,551,558,539,556,553,507,491,478,486,482,473,501,579,570,579,562,595,576,578,580,586,575,586,579,580,573,530,532,537,535,532,529,534,528,529,527,517,521,516,530,523,523,554,549,558,545,557,550,547,548,537,517,526,530,561,566,545,562,571,546,556,553,567,492,492,490,497,488,504,493,497,527,556,555,536,563,535,552,547,537,511,527,572,547,570,558,554,551,562,565,570,567,564,561,509,508,517,508,511,509,498,497,499,493,500,503,502,505,502,504,505,499,504,501,507,499,501,500,493,496,506,499,499,502,500,487,483,487,475,474,473,463,479,473,470,473,475,477,480,476,480,472,471,478,469,470,467,459,479,468,469,464,477,569,556,550,569,569,570,567,571,554,561,512,519,528,520,519,514,519,519,524,528,525,521,519,519,527,509,518,515,520,523,519,510,510,502,503,503,511,506,507,508,481,481,480,482,454,461,468,460,463,467,458,466,470,463,477,481,473,476,481,474,483,482,479,481,481,476,484,476,481,475,476,470,483,474,481,478,478,465,477,472,479,463,467,475,477,456,465,467,463,466,466,472,455,454,470,463,456,456,456,594,582,563,555,573,558,573,458,458,462,472,485,464,466,462,486,459,470,472,467,531,538,535,522,532,527,545,534,528,528,536,541,535,531,531,522,533,542,536,528,536,537,539,562,564,565,564,570,564,576,560,557,570,564,548,547,532,499,507,505,489,492,495,497,500,504,494,447,449,455,463,461,457,525,504,494,513,502,494,490,553,540,542,529,544,533,484,479,467,474,475,474,484,550,539,538,532,567,565,565,582,577,561,565,558,564,568,577,565,576,577,569,573,563,521,514,513,504,510,528,534,529,529,530,526,531,528,532,532,531,525,530,521,533,529,528,539,541,548,545,538,544,543,540,540,539,542,546,543,536,536,544,561,544,554,545,556,544,560,558,500,521,529,506,506,516,525,485,489,490,487,491,486,490,486,494,498,491,488,498,487,492,487,486,482,493,488,501,511,512,513,508,509,506,503,511,546,539,551,542,529,555,522,497,499,507,512,501,499,511,501,499,502,498,501,500,506,570,560,575,568,558,566,554,560,533,513,507,511,519,516,506,516,515,505,513,489,496,482,483,482,479,483,487,486,487,485,485,481,484,478,484,497,497,501,495,497,503,579,563,593,561,569,566,581,574,576,575,578,583,575,503,532,533,532,490,486,489,488,456,468,450,454,461,451,469,461,449,453,467,461,535,538,533,532,530,534,531,538,535,534,535,534,520,522,525,528,527,527,523,521,529,520,524,525,520,518,525,516,522,527,513,532,535,540,534,542,538,539,528,531,534,558,543,548,540,555,543,538,494,481,489,490,486,492,483,480,484,486,488,482,485,486,485,484,491,481,507,508,496,499,502,500,496,499,501,502,509,528,532,529,520,523,525,536,519,536,520,521,523,521,522,531,525,536,531,533,530,534,534,538,532,534,536,539,537,540,533,532,539,530,527,539,529,558,543,551,549,545,552,532,540,541,500,483,491,482,502,491,489,483,500,491,487,550,550,559,558,553,545,502,492,491,484,554,532,543,555,560,554,539,540,567,549,543,552,550,551,546,514,515,511,510,516,525,530,532,534,550,541,549,527,547,554,465,480,488,484,486,472,473,480,476,483,484,474,488,487,497,482,489,482,490,530,518,520,582,585,569,587,551,540,538,536,528,541,543,529,544,558,571,562,568,501,512,510,504,498,505,511,506,511,504,517,505,513,502,616,597,602,587,589,528,521,543,538,533,530,533,534,527,527,537,536,537,483,476,486,475,473,477,486,486,556,558,553,567,537,555,552,557,482,485,498,482,480,554,560,555,544,559,550,547,563,552,552,550,553,559,554,550,540,544,560,493,501,492,480,503,472,464,462,460,459,467,467,468,458,467,468,562,545,549,548,548,555,533,551,550,550,551,507,505,499,500,502,520,452,470,465,463,470,463,462,463,455,466,465,472,465,470,467,472,464,464,460,456,458,459,463,456,460,494,490,492,493,493,488,489,534,543,543,544,567,564,569,577,575,566,568,572,572,573,558,568,569,518,514,523,515,493,483,483,489,496,486,487,486,485,489,491,487,484,485,489,488,498,502,504,498,504,499,492,491,492,493,500,497,496,505,517,514,519,514,517,515,515,515,560,558,554,553,560,548,556,563,554,554,558,562,558,527,521,528,529,522,524,521,526,529,521,520,532,503,506,499,499,511,503,501,484,483,484,487,481,481,484,474,479,489,475,482,488,483,514,497,497,501,504,504,497,545,546,541,550,542,550,551,540,554,550,557,545,534,512,506,511,558,559,564,550,550,550,547,552,535,551,550,549,554,495,496,509,496,501,491,508,494,489,499,454,461,459,459,448,460,467,468,464,460,460,460,449,449,462,467,530,531,542,545,547,529,534,533,562,547,545,545,556,550,551,545,558,558,552,541,526,509,503,511,508,506,511,509,479,470,471,469,473,461,469,474,477,455,461,457,465,456,472,472,466,460,455,463,556,541,564,542,543,539,548,496,512,490,507,516,494,491,501,500,512,496,506,507,511,483,484,483,487,486,489,470,473,475,480,472,477,473,477,508,509,514,519,511,520,507,520,540,536,541,544,537,543,535,538,539,495,477,531,537,520,535,536,526,526,536,530,536,525,545,540,535,537,539,542,546,536,535,544,491,496,491,483,487,492,485,484,493,497,492,485,492,591,582,596,534,539,542,536,522,523,534,534,535,536,532,515,524,520,514,517,515,520,521,514,521,521,521,519,544,527,537,522,510,520,514,533,531,543,526,539,533,536,538,542,514,511,520,521,514,524,525,523,518,514,525,525,528,522,527,521,585,589,585,584,577,595,585,574,596,579,548,552,557,532,521,516,519,515,525,522,505,516,512,516,520,523,524,504,501,503,504,505,501,488,496,495,501,499,495,494,498,496,500,490,484,500,488,491,489,492,476,486,487,493,482,472,478,471,474,474,466,477,470,472,468,430,440,441,431,434,436,434,434,438,467,451,445,444,447,447,446,440,452,446,436,446,454,450,451,449,440,454,457,447,449,456,533,552,543,542,552,542,540,549,548,550,541,556,557,557,548,545,496,488,489,498,499,493,500,489,488,488,496,489,532,544,551,544,552,560,542,547,549,542,532,523,524,519,525,518,526,523,525,556,557,559,545,555,556,554,555,560,559,557,554,541,507,523,512,521,506,511,512,491,489,482,499,482,488,486,482,491,487,489,480,490,488,493,484,479,497,484,491,495,496,482,482,487,498,493,496,495,489,495,496,488,477,479,488,483,463,463,465,463,472,478,469,478,554,578,550,569,561,548,549,560,562,551,566,569,554,570,501,492,504,502,493,482,486,486,482,568,559,566,572,570,563,573,561,560,553,481,487,477,481,471,489,494,469,472,475,496,567,574,549,550,544,561,549,549,562,575,561,559,569,566,556,563,562,563,557,509,517,517,516,507,515,532,520,528,504,519,512,531,531,522,522,516,491,478,496,477,479,473,472,482,479,474,468,473,625,595,589,577,602,591,595,601,594,596,546,559,547,556,545,547,551,551,549,551,538,548,545,546,552,539,537,543,548,546,546,537,549,550,531,515,517,509,518,521,504,500,516,520,511,502,515,478,473,482,484,483,489,483,492,489,473,479,481,482,482,487,491,489,489,490,493,484,492,484,497,496,490,496,486,481,485,484,482,477,480,481,485,487,475,476,481,469,487,488,482,485,481,485,486,487,485,498,494,497,499,502,507,505,497,503,501,500,499,497,501,500,488,482,485,493,497,484,485,492,495,494,489,489,479,492,472,484,482,492,476,493,485,484,485,477,474,469,469,476,481,493,511,498,502,498,504,536,539,541,530,531,552,548,542,556,550,564,475,506,494,500,509,500,485,489,488,487,495,495,491,488,480,546,544,543,552,551,545,544,544,542,539,547,547,546,539,542,526,533,540,534,528,540,531,558,571,576,567,562,567,570,582,559,512,517,522,521,522,516,511,521,524,536,524,524,525,526,517,527,530,529,520,520,529,516,524,524,579,590,581,585,576,534,532,522,541,531,521,522,488,502,492,497,493,498,494,494,500,578,559,537,553,557,551,540,554,549,556,531,526,509,510,518,519,519,513,522,514,522,520,518,513,520,518,539,533,542,538,529,521,520,506,518,568,576,585,596,596,584,598,600,579,584,593,573,603,539,539,540,522,543,540,572,561,530,526,531,529,532,533,523,526,531,525,529,501,509,510,508,513,514,509,515,511,498,513,519,512,492,494,497,492,497,501,491,498,502,496,487,487,485,476,488,475,492,496,495,500,495,499,496,482,497,539,547,552,557,555,542,546,547,542,555,546,543,541,545,544,545,548,536,539,538,542,541,546,545,557,552,558,547,558,558,556,561,561,565,560,560,557,556,553,554,564,563,560,548,558,559,553,560,531,531,519,535,529,529,521,509,513,505,506,505,496,508,496,495,506,501,506,501,503,505,500,496,516,501,493,501,505,497,501,507,496,481,487,485,503,488,491,489,485,484,481,493,488,496,487,484,481,488,484,482,486,477,477,474,481,479,476,470,476,472,474,469,474,475,477,462,472,462,468,466,467,466,463,467,459,577,567,560,556,564,560,556,560,563,558,557,565,553,565,549,549,550,544,556,545,564,544,556,555,550,551,556,562,497,497,507,506,496,504,495,508,503,506,492,587,607,598,575,605,522,507,518,509,514,498,509,503,501,492,536,538,538,541,544,541,540,537,543,540,571,563,558,518,514,507,511,511,516,511,503,514,502,512,551,552,547,552,559,560,556,561,554,544,557,553,554,557,555,562,558,549,516,506,518,524,474,482,487,489,481,487,492,486,481,477,484,477,496,482,480,472,480,489,487,490,482,494,487,492,484,488,489,487,483,492,473,478,464,476,475,479,472,473,465,479,477,472,479,463,465,459,464,470,467,463,454,463,460,462,457,469,452,477,477,482,477,485,483,477,480,481,479,476,483,475,485,475,491,475,478,482,478,489,484,485,490,482,484,482,478,486,480,478,473,465,477,473,482,479,481,480,508,508,517,510,549,543,515,520,517,524,524,502,502,504,500,509,552,537,542,538,540,536,530,539,538,531,537,552,543,543,539,541,531,537,536,548,534,548,542,549,542,545,547,543,544,549,547,545,547,526,536,535,539,542,538,532,524,535,533,549,557,558,554,548,557,561,560,545,552,554,550,565,553,517,510,505,523,512,524,510,516,521,508,516,507,508,487,479,487,490,480,487,487,486,481,481,479,486,481,480,481,474,484,491,476,478,477,480,481,482,480,475,472,475,472,473,471,467,560,570,567,565,567,568,568,567,573,564,488,466,481,555,550,549,573,561,545,568,502,491,507,501,503,505,506,516,520,513,521,511,522,515,520,510,560,555,559,506,506,506,504,516,514,514,515,511,477,482,475,481,487,486,491,470,488,470,472,468,461,472,472,461,466,466,467,474,471,479,477,477,467,474,475,476,475,478,488,473,480,469,474,446,442,449,442,452,435,448,449,445,442,452,454,443,458,444,443,448,440,541,543,548,547,544,539,541,538,543,536,539,538,481,482,492,597,568,581,592,577,590,572,587,577,560,580,584,565,590,591,570,499,516,504,517,510,509,497,510,514,506,503,511,511,517,548,542,558,545,550,553,560,549,544,544,555,550,508,512,500,514,505,510,506,520,486,486,488,482,482,493,501,495,491,493,492,494,499,498,496,502,495,501,498,477,488,475,480,492,484,483,485,475,492,473,498,495,492,503,503,497,498,536,536,545,539,539,540,543,538,530,553,555,556,571,566,552,562,550,561,563,565,559,491,469,466,471,459,475,543,545,535,540,550,556,542,553,532,545,546,563,561,462,468,475,463,472,460,471,485,476,476,477,483,451,448,449,449,441,455,445,453,439,446,449,442,449,451,438,452,528,532,536,543,534,538,523,544,534,538,535,550,542,547,538,551,536,548,552,543,547,541,550,544,548,537,543,535,529,527,537,525,557,555,558,554,560,562,549,556,563,555,566,552,497,494,493,500,499,496,493,490,502,499,493,499,506,488,500,506,504,512,512,503,507,501,509,510,512,564,524,531,525,527,530,528,471,475,479,473,473,485,481,477,490,480,546,562,541,560,555,558,557,559,556,554,557,562,546,543,551,565,563,558,504,515,528,520,522,516,527,504,523,521,521,508,523,511,516,525,523,489,479,485,483,492,484,483,491,476,488,487,484,485,487,487,481,491,482,466,464,471,463,511,511,516,514,516,517,507,519,511,526,516,514,566,504,503,489,504,497,506,505,502,500,512,499,504,502,556,549,550,559,562,552,556,554,553,555,556,550,558,556,555,557,548,524,531,542,535,536,533,534,536,537,576,565,574,574,572,568,579,568,570,557,531,522,518,521,521,524,526,527,522,522,514,523,542,549,542,545,539,540,537,552,539,531,548,540,545,542,545,547,551,542,572,562,564,573,573,574,518,493,498,462,482,480,484,473,474,469,476,477,582,562,553,555,487,498,499,496,498,499,505,511,500,505,513,509,477,474,481,483,476,479,477,477,473,478,475,480,484,475,478,479,486,486,487,478,485,505,500,495,498,484,493,485,494,494,492,495,497,494,497,522,529,530,531,519,529,536,543,531,547,568,568,487,490,467,478,499,483,475,476,480,487,486,487,483,478,531,544,538,547,536,563,546,550,551,549,556,553,557,548,552,555,548,547,499,500,487,500,498,502,501,495,491,477,481,479,480,486,476,471,475,482,482,474,485,479,493,481,481,485,480,484,492,484,483,489,487,493,483,487,491,485,530,531,522,515,519,518,519,516,520,522,596,577,581,577,576,572,587,580,572,581,551,545,550,524,536,528,520,516,528,528,529,528,468,484,486,476,476,464,545,551,554,548,548,549,555,541,551,550,543,548,539,550,565,554,556,550,558,556,554,502,487,491,489,510,502,491,504,486,500,428,443,437,439,452,442,540,541,546,535,533,531,536,542,546,546,541,556,553,540,553,544,550,543,543,506,495,508,500,487,505,467,472,460,464,467,465,470,469,464,536,534,542,549,537,519,526,528,523,522,523,525,518,533,545,537,539,538,537,534,535,537,540,512,528,521,532,529,549,560,559,550,561,567,561,555,560,568,561,562,560,564,547,553,555,543,550,548,551,545,550,541,546,545,552,484,488,492,485,445,441,444,440,453,446,443,445,527,524,535,521,531,519,520,527,531,529,522,530,526,522,539,534,534,527,530,539,543,526,540,536,533,525,535,543,546,544,534,525,549,552,535,552,534,537,556,544,543,496,503,496,499,499,501,506,504,484,500,498,507,486,503,548,553,550,541,577,547,553,549,554,556,560,467,482,491,495,494,479,480,491,488,481,495,492,496,483,568,555,552,567,560,567,564,574,558,555,562,555,563,560,575,566,564,559,567,558,567,541,560,555,568,562,558,505,520,511,516,520,514,508,521,515,523,524,520,518,518,571,554,533,540,556,495,497,488,494,496,490,487,495,496,470,456,464,463,460,466,463,453,465,467,461,457,463,461,463,463,468,484,508,508,506,499,504,498,500,501,556,543,553,548,545,538,554,544,539,547,551,548,538,551,547,553,552,545,540,549,552,543,539,536,558,536,553,539,553,537,514,511,512,512,503,500,511,510,511,576,570,573,579,577,576,589,579,583,574,476,483,477,476,482,461,481,534,528,536,528,526,532,558,556,542,548,551,545,541,542,539,544,543,554,514,503,490,513,506,498,523,506,527,521,511,520,519,515,521,521,517,597,539,540,501,491,507,506,504,500,497,505,494,479,491,487,487,490,492,486,496,477,469,469,474,466,477,473,471,470,478,464,476,471,477,476,476,470,479,474,469,471,470,476,483,478,488,472,477,466,595,603,596,565,555,548,556,555,561,559,547,555,562,564,561,557,564,566,553,517,529,531,519,512,534,523,497,507,500,503,502,500,512,509,500,501,511,505,514,486,495,494,492,490,488,485,494,493,496,493,439,468,463,458,457,477,455,449,508,492,500,496,490,504,498,527,545,538,543,540,538,543,534,539,536,542,540,533,535,531,530,529,532,557,559,557,562,559,557,569,551,555,516,517,514,514,512,519,527,516,511,494,489,488,496,497,491,484,485,495,494,489,500,503,503,501,502,501,497,501,500,502,505,502,501,499,500,501,483,489,495,501,500,499,498,475,485,476,488,480,479,487,480,491,487,488,457,470,477,538,550,560,546,544,559,546,561,547,550,563,541,555,543,551,545,552,546,502,515,511,513,528,533,531,527,538,564,557,560,559,561,545,485,486,499,494,502,494,507,494,488,532,542,546,543,529,556,542,559,541,552,546,550,565,563,545,551,544,538,550,536,554,547,554,518,504,502,505,509,505,506,514,512,510,558,547,552,531,536,532,535,535,531,541,534,533,529,535,540,534,533,539,535,537,536,531,537,537,541,532,523,505,514,514,512,512,503,507,546,545,557,546,553,546,552,543,547,551,554,538,555,545,511,516,516,520,514,512,518,509,512,510,507,531,525,516,534,534,512,524,531,516,519,525,518,515,516,514,518,563,543,539,547,552,552,542,547,524,540,541,533,544,537,540,536,542,537,530,537,532,540,540,589,587,580,585,571,566,584,578,571,485,505,504,501,513,513,502,507,500,511,493,502,503,504,501,490,499,505,568,575,555,555,553,549,580,548,559,570,570,559,580,546,576,495,508,510,517,519,506,507,526,511,519,507,512,511,511,503,520,517,546,457,474,489,489,473,474,484,479,480,472,481,487,489,482,494,466,469,482,472,468,479,471,467,474,486,476,546,562,570,507,481,516,508,486,503,499,488,502,469,484,488,468,476,471,473,474,478,552,545,532,556,560,556,568,549,564,557,494,490,492,496,480,493,502,505,503,503,499,492,496,509,530,523,561,561,566,560,558,567,566,554,556,518,527,515,525,514,516,515,523,516,510,510,516,516,507,494,485,482,479,471,482,484,470,480,508,520,520,518,524,520,516,508,564,571,563,559,550,558,559,575,565,560,509,496,495,496,501,495,500,497,491,485,496,494,492,487,495,495,491,500,491,559,567,562,553,557,570,527,527,520,525,521,523,522,524,557,543,539,551,538,545,543,543,543,540,497,512,510,502,493,499,500,503,544,547,545,549,544,553,540,547,543,541,540,556,566,561,574,565,568,566,528,548,524,529,519,520,518,521,528,547,536,542,545,535,538,542,535,535,539,515,509,509,515,506,513,515,507,517,508,519,512,519,503,516,512,527,526,526,519,530,520,533,528,520,526,585,595,559,557,549,560,549,559,562,548,557,552,552,546,556,554,508,530,522,517,515,516,517,527,502,500,498,495,492,492,496,491,493,489,496,495,495,496,491,488,469,469,477,470,466,478,473,476,468,474,472,469,492,494,499,495,484,553,537,540,539,538,541,539,538,532,536,536,531,498,494,483,487,482,477,481,487,485,479,479,467,440,460,464,475,453,450,455,466,457,465,558,549,542,535,549,539,536,535,521,514,534,527,527,523,527,524,525,524,524,531,524,522,527,536,522,518,524,518,522,517,522,518,519,514,523,516,520,519,567,569,566,541,548,517,498,496,495,502,496,496,497,505,503,492,531,510,521,515,526,513,579,547,492,500,505,497,504,495,492,497,497,490,499,504,470,468,467,464,464,476,464,476,470,471,448,436,433,443,444,445,443,545,534,535,536,534,544,550,542,545,538,520,531,518,518,519,514,516,526,520,517,518,524,519,511,517,507,506,504,510,512,501,516,520,531,533,520,527,537,528,532,519,522,525,523,543,533,530,534,534,535,538,534,537,538,541,541,557,545,542,552,549,555,562,550,497,482,495,486,489,504,485,503,492,512,484,487,496,471,464,469,459,464,468,469,457,473,461,474,480,479,458,459,473,470,466,481,554,551,548,543,477,476,481,474,474,478,488,485,572,568,563,554,548,565,548,546,540,558,552,559,556,484,481,485,463,493,484,476,478,488,485,498,501,496,495,484,511,491,498,494,504,492,502,488,543,517,524,536,526,528,535,534,530,525,541,556,504,512,499,503,503,515,502,493,558,553,551,550,543,552,559,556,545,549,495,477,466,463,480,494,477,468,492,483,486,470,471,497,477,470,487,486,474,482,477,491,487,578,555,553,567,571,572,567,563,563,561,564,559,587,564,509,514,518,523,517,533,520,521,525,509,489,479,480,486,478,482,472,480,481,477,477,471,464,460,470,462,467,452,456,464,465,543,530,538,520,553,548,542,548,541,544,518,514,522,524,517,516,514,496,502,496,495,500,494,496,492,494,493,496,491,463,462,457,469,465,463,467,466,457,469,438,435,445,436,442,432,435,435,437,442,443,442,545,534,530,535,545,539,544,542,541,549,548,555,545,537,550,560,536,549,539,525,536,529,531,535,529,528,532,526,533,536,539,522,534,530,528,529,528,530,526,527,531,573,538,498,500,507,504,505,509,501,505,503,465,482,478,486,488,480,485,484,482,478,485,480,467,471,467,465,474,474,457,464,462,453,456,459,464,464,468,460,463,464,458,554,563,563,555,536,557,562,554,556,565,500,492,499,496,489,500,504,497,507,489,497,493,498,493,487,499,499,549,545,565,563,570,555,558,556,555,553,556,549,551,546,558,502,507,490,497,490,466,457,451,464,463,453,456,453,453,448,455,458,454,459,460,490,493,486,488,486,490,485,494,489,496,485,496,487,598,558,573,572,564,605,581,528,497,507,585,590,585,602,586,590,577,581,590,521,538,545,539,542,535,555,541,535,547,543,524,515,510,523,508,513,519,514,520,507,510,507,510,509,506,508,510,504,507,505,509,510,510,506,535,531,527,526,532,534,531,530,528,512,523,520,526,522,522,517,531,521,524,519,529,521,523,523,521,530,533,539,547,545,535,547,541,543,553,540,540,547,546,550,546,547,547,550,554,486,504,508,514,495,499,494,509,505,488,496,454,478,466,494,502,498,498,502,491,494,509,501,490,493,497,496,496,502,517,516,515,514,519,511,518,511,514,512,513,508,509,510,519,515,516,511,515,509,561,555,557,552,558,545,553,550,548,552,548,551,551,547,542,553,541,542,544,542,550,542,553,544,552,552,549,550,547,548,546,485,472,476,482,473,467,475,476,475,474,476,477,479,471,588,555,564,567,545,560,500,510,505,511,514,503,502,501,499,502,514,506,501,519,530,505,520,495,507,498,528,488,475,488,485,496,499,496,492,494,503,503,494,500,500,501,499,499,496,505,497,498,509,461,478,483,475,476,478,474,436,443,447,445,446,455,454,449,437,451,567,550,560,548,565,558,552,555,554,551,555,557,553,541,546,547,553,548,551,548,543,553,548,560,541,559,465,490,476,466,488,478,465,476,474,485,498,482,474,476,462,496,480,475,578,580,572,568,566,515,525,536,526,538,526,534,542,530,507,509,498,508,502,502,500,482,477,481,484,486,485,489,480,486,488,484,478,472,465,475,472,469,481,474,472,475,468,479,467,470,460,542,556,548,545,551,556,549,554,550,546,558,558,554,555,505,513,508,512,517,511,509,507,518,512,530,517,512,512,507,509,508,510,508,510,504,500,510,510,510,561,561,553,560,552,559,563,552,555,549,559,556,562,556,558,555,549,557,555,553,501,490,496,498,499,495,490,495,497,498,497,496,494,495,491,495,488,498,495,504,583,571,563,570,571,581,569,565,564,574,569,566,550,560,535,513,517,502,513,526,503,500,520,507,503,531,513,513,499,510,494,487,488,482,484,479,474,483,481,476,479,485,479,471,479,484,474,486,468,465,468,461,467,454,466,466,460,451,468,457,456,462,461,463,467,584,549,547,555,563,556,556,566,558,566,547,554,569,553,560,499,508,509,504,499,506,507,509,499,497,508,495,507,520,519,525,508,526,523,520,532,515,508,520,561,588,574,529,534,532,520,538,536,531,533,527,531,515,533,522,516,570,558,558,544,550,559,559,546,550,557,542,512,513,513,514,520,515,516,515,519,521,545,536,534,543,537,531,548,540,536,547,551,543,549,542,539,533,539,528,534,541,530,536,529,537,533,540,530,533,539,551,579,573,567,570,559,563,555,557,509,514,509,508,510,513,510,511,516,519,581,549,559,559,550,565,569,553,559,546,564,527,530,530,536,536,528,526,530,529,527,532,533,528,528,566,554,548,563,544,558,552,541,551,550,561,564,552,544,547,508,480,484,478,490,451,440,447,452,549,550,556,541,551,549,559,553,558,551,551,550,541,542,553,554,498,488,495,490,496,495,510,493,488,507,457,455,462,467,461,453,469,446,497,498,495,492,498,491,498,495,495,500,495,499,494,498,527,526,527,528,522,525,523,533,536,526,534,527,579,577,581,584,586,589,583,579,590,593,578,589,582,579,560,536,554,466,483,474,483,477,478,496,472,490,494,451,479,466,464,479,468,469,475,473,530,539,523,528,525,549,549,549,551,553,564,547,553,552,554,545,560,500,515,520,516,510,514,504,508,509,518,517,515,490,516,488,486,484,484,478,482,483,492,483,477,483,477,477,479,484,485,481,482,478,482,476,476,485,475,475,477,475,482,479,485,483,488,474,486,492,483,481,485,481,480,483,483,487,493,563,518,527,525,508,505,524,513,531,516,518,513,494,486,487,479,483,481,482,488,492,493,496,499,569,572,565,546,562,566,582,584,479,486,507,498,503,494,497,514,516,498,466,469,466,465,469,465,458,472,422,420,548,543,541,538,532,539,571,568,569,558,509,533,535,534,522,522,525,531,523,518,526,505,509,516,501,504,501,503,498,535,556,551,550,547,552,543,558,545,557,551,544,540,549,546,531,572,554,546,566,537,579,549,549,556,566,487,481,493,515,494,497,501,493,491,488,506,508,491,502,494,503,487,491,493,502,500,498,556,557,575,488,477,479,472,485,486,466,481,459,478,550,529,525,536,530,536,532,541,542,541,543,534,553,489,488,497,490,497,493,492,478,501,548,549,550,549,562,549,536,542,545,553,496,487,512,508,503,497,496,493,499,490,497,502,497,495,496,493,512,501,506,500,507,494,544,548,544,547,546,547,561,507,501,496,485,504,492,508,485,509,439,455,451,455,456,490,467,474,475,473,477,567,561,553,572,562,568,567,508,506,520,518,519,519,502,511,506,525,526,537,527,530,520,556,540,547,558,549,561,547,533,558,554,559,549,551,542,529,542,495,489,499,490,502,492,485,484,499,486,573,593,586,589,512,531,520,544,541,526,531,516,515,503,509,511,523,512,591,572,556,574,561,573,580,555,564,563,574,565,567,569,541,524,524,540,530,514,514,510,514,515,517,514,506,512,499,499,499,505,499,495,501,506,496,505,502,505,506,486,483,481,483,475,490,473,484,481,478,495,479,480,478,487,487,473,484,497,495,501,497,499,495,510,506,514,517,510,510,510,506,536,519,528,531,530,524,524,528,525,529,528,526,533,532,529,532,535,537,538,541,553,538,548,554,545,545,533,543,532,547,526,520,513,521,521,526,522,528,546,549,543,553,547,552,557,538,545,547,542,550,486,491,495,486,498,511,503,502,508,517,501,511,512,499,582,568,569,563,558,567,548,539,552,552,551,542,487,488,489,469,479,469,478,485,470,523,549,556,547,560,568,558,547,549,570,560,502,499,507,494,496,499,574,594,584,610,599,586,613,583,587,594,601,596,596,582,529,536,536,530,541,540,531,541,532,537,530,531,545,562,554,572,565,556,559,551,557,552,559,553,554,563,549,550,524,497,499,509,501,499,496,505,507,452,449,453,447,463,464,453,463,457,453,460,455,458,459,451,457,458,458,449,461,464,461,554,547,549,545,568,553,557,555,545,552,547,549,555,546,563,567,552,556,565,512,525,513,514,517,517,513,515,506,511,516,511,505,509,506,511,509,516,509,513,548,541,540,544,549,539,543,540,541,536,547,542,546,556,550,547,516,518,525,529,528,528,524,520,523,530,522,521,528,526,538,531,533,535,527,517,523,541,556,561,562,557,543,532,536,532,506,517,523,522,514,521,515,509,520,515,514,544,538,540,533,541,534,529,538,565,551,551,564,568,580,567,559,562,558,564,556,529,515,498,520,473,461,469,471,466,463,488,491,498,503,496,493,501,500,497,504,490,500,488,492,520,527,527,518,526,518,536,526,529,525,533,530,466,471,474,483,474,472,478,551,553,555,554,556,547,539,547,548,556,547,553,551,552,555,471,467,480,473,475,475,473,473,485,449,454,443,446,452,436,544,522,551,550,557,536,549,544,540,548,555,551,566,558,553,540,563,560,554,565,551,549,520,511,503,510,513,465,457,456,489,481,469,478,482,469,477,562,536,576,488,507,492,505,501,513,515,516,509,504,512,520,462,466,468,459,462,467,466,470,464,480,468,461,463,473,473,463,585,559,563,561,550,567,561,557,558,563,548,563,551,565,558,568,523,520,520,514,510,507,511,517,504,504,511,503,472,467,453,472,465,461,464,455,460,467,460,471,462,466,465,452,457,464,488,478,483,470,466,473,481,479,478,481,481,521,552,528,555,563,542,558,558,539,559,555,563,559,561,511,498,499,503,504,501,491,574,553,568,555,565,561,555,562,555,568,546,518,510,496,509,508,515,490,508,500,494,522,530,533,526,535,535,575,560,549,559,554,568,538,533,527,537,533,534,529,535,535,531,541,535,532,537,530,534,540,546,538,529,534,542,535,539,506,501,520,505,509,513,498,512,583,553,575,565,567,558,549,550,548,562,534,559,564,550,556,570,569,557,564,567,549,564,521,519,516,527,524,524,517,525,518,526,522,523,520,527,548,537,532,539,544,539,541,532,530,542,546,533,538,522,562,561,547,557,558,569,559,568,524,521,518,520,520,518,508,518,515,511,513,513,513,508,513,552,549,543,545,548,549,549,553,553,547,569,548,558,550,546,563,553,549,543,550,550,553,558,489,487,475,491,500,468,482,482,479,489,480,491,494,485,487,525,537,529,530,533,537,545,544,546,547,550,546,549,549,543,543,557,546,544,539,541,558,540,548,541,549,547,547,477,476,492,476,472,476,462,472,470,461,475,486,474,476,472,480,463,462,473,472,478,480,478,477,485,543,552,557,556,569,557,574,557,513,500,504,463,460,464,463,463,464,466,462,461,441,455,454,460,458,456,460,454,573,593,516,533,525,533,535,518,521,563,557,554,552,558,559,559,562,556,559,556,570,502,485,492,501,504,496,483,492,494,486,493,503,485,484,490,483,508,491,468,465,462,468,462,476,466,466,455,536,550,548,546,550,559,555,542,508,499,498,494,532,491,502,470,467,463,462,469,478,466,465,461,470,466,471,462,431,443,435,443,437,433,438,439,430,437,447,528,533,524,524,529,533,533,523,529,534,528,546,554,541,547,551,538,544,547,540,554,546,565,560,560,504,518,528,525,512,525,521,526,514,516,513,511,523,514,488,487,481,485,483,485,486,484,465,468,469,460,470,465,471,453,467,462,472,463,473,471,466,470,456,462,562,562,555,552,551,547,559,554,546,552,550,546,547,548,554,511,487,491,503,511,497,497,478,492,501,505,491,493,502,497,497,495,494,494,497,495,540,541,539,537,541,542,535,543,536,538,529,543,536,542,549,560,567,568,564,579,573,566,571,573,569,562,553,571,566,528,539,537,533,537,542,537,528,527,522,526,525,525,527,526,524,527,526,525,523,547,541,492,510,500,581,537,524,508,505,509,515,564,558,562,560,571,565,558,566,560,569,554,567,563,572,566,578,577,500,509,493,500,507,500,506,509,503,501,510,514,494,515,549,564,553,571,544,552,533,477,474,480,474,489,471,473,486,490,479,484,550,555,554,553,546,548,552,549,553,556,551,544,564,559,556,547,558,560,558,561,550,545,560,542,548,466,471,463,466,470,463,466,464,480,535,530,540,533,532,536,563,566,509,509,512,492,506,510,520,509,505,531,528,522,522,532,520,527,520,523,526,529,531,530,525,522,521,527,525,534,573,559,568,576,567,560,560,575,565,551,574,562,572,558,557,564,565,576,568,561,572,540,524,530,531,529,530,527,523,525,563,560,564,555,555,545,558,556,562,556,541,524,526,526,546,548,550,551,548,551,552,554,552,546,550,545,557,552,534,539,536,537,540,535,526,530,536,538,534,574,591,597,578,577,582,585,542,554,549,556,547,559,555,553,545,550,550,545,555,555,546,548,542,543,541,540,541,548,547,553,547,520,494,512,501,505,497,495,512,511,510,506,488,458,453,458,463,461,446,458,460,460,453,447,448,473,477,489,480,469,482,486,483,562,496,518,493,504,507,509,501,496,512,501,512,491,480,486,490,486,492,484,488,487,467,470,467,469,481,463,471,479,480,477,448,437,438,437,439,441,434,453,444,441,442,435,445,435,438,439,441,449,432,436,436,471,468,479,460,474,468,465,470,474,477,469,559,574,555,573,567,569,561,506,509,505,512,513,483,503,500,502,503,498,496,491,482,492,493,489,495,490,490,486,486,481,491,485,484,499,499,504,501,504,501,495,490,482,498,493,485,498,493,489,486,490,483,486,486,492,481,491,482,485,480,482,483,483,483,476,479,487,489,474,474,478,483,484,497,499,494,495,468,469,463,467,469,464,464,469,472,466,456,463,466,463,463,557,550,525,543,543,540,472,464,464,480,470,470,481,451,455,452,447,450,450,455,451,450,460,457,556,560,557,549,560,550,544,548,542,507,500,487,494,498,496,487,507,491,507,478,503,508,498,493,510,555,552,550,558,555,560,548,552,556,538,548,570,558,552,558,507,521,468,481,481,479,479,481,478,504,508,502,503,492,484,494,486,481,483,482,489,483,489,487,480,487,506,500,493,498,497,494,500,500,502,494,501,491,500,493,503,491,501,494,498,502,498,500,495,502,492,488,491,488,481,486,485,496,478,487,492,477,489,484,484,493,499,495,494,502,494,482,478,485,479,479,493,485,483,471,434,521,525,524,531,525,516,519,529,526,529,546,539,541,538,545,545,541,537,531,545,561,492,510,481,501,498,489,502,494,456,467,470,470,461,462,467,463,468,469,458,473,464,457,466,463,470,473,466,466,468,508,488,500,488,488,497,499,544,553,552,547,561,553,551,557,543,562,557,545,566,519,522,514,536,515,525,487,489,504,501,503,488,501,505,496,609,584,596,547,541,545,556,546,553,560,553,548,552,553,562,547,498,499,497,489,487,499,492,505,489,494,503,495,498,494,500,501,498,497,532,519,526,591,595,578,602,579,585,590,589,580,587,583,591,592,590,543,492,488,498,483,492,503,497,498,507,497,487,492,502,492,489,492,500,504,497,501,493,489,499,565,570,576,560,548,547,516,516,509,511,503,520,523,515,519,517,508,583,568,558,549,562,505,501,510,510,514,513,502,500,498,513,507,462,461,464,466,476,472,465,483,482,475,473,478,473,473,472,488,479,461,479,479,471,470,469,480,562,562,556,567,554,545,540,545,549,566,554,529,549,547,544,542,508,508,508,495,513,508,512,504,562,566,551,574,577,574,580,573,550,559,507,502,487,511,497,507,503,501,508,505,504,492,524,485,489,497,488,460,474,468,460,463,473,450,467,560,547,536,539,541,533,533,514,514,511,520,516,512,514,516,519,513,512,535,542,544,537,525,545,541,532,537,532,544,540,535,533,539,533,539,531,543,557,553,555,553,555,528,527,514,495,493,510,490,488,488,483,478,481,482,476,475,472,485,497,496,492,491,484,493,492,488,488,490,503,489,491,486,487,495,495,491,492,461,455,450,463,456,451,470,453,463,456,478,487,479,478,480,484,473,476,473,474,484,471,478,479,545,566,556,577,550,563,556,502,436,454,454,555,548,538,548,546,542,553,564,551,543,550,529,525,513,525,524,519,516,562,568,560,555,546,503,515,530,527,518,517,522,517,500,502,494,489,498,470,468,472,470,470,472,470,472,462,465,475,459,473,485,477,477,565,561,562,560,555,559,566,552,547,506,504,524,521,525,513,509,512,511,509,493,483,486,481,486,484,480,479,514,513,503,500,496,494,504,501,507,496,489,560,553,549,553,508,499,506,495,502,499,508,499,502,501,502,510,503,501,504,508,535,536,535,536,537,538,534,533,537,546,541,534,533,542,531,538,549,550,548,506,526,519,521,510,516,508,509,466,469,464,468,461,478,459,466,468,463,467,467,445,459,452,452,454,457,448,453,454,457,455,449,442,443,459,463,451,457,463,467,454,461,459,451,460,457,534,537,541,530,539,536,543,539,536,544,527,527,536,540,540,541,539,532,543,544,545,547,543,548,546,488,487,503,495,481,486,497,486,510,498,490,487,486,488,493,470,462,451,454,458,459,456,464,468,465,459,458,444,457,449,455,553,533,536,547,554,546,535,539,537,530,544,528,542,513,512,516,519,521,512,514,513,514,555,553,543,547,553,549,551,539,552,560,544,546,562,546,546,532,531,537,531,537,534,533,533,533,535,513,508,511,524,520,513,498,503,534,536,542,547,539,540,544,542,537,535,546,546,541,537,563,557,567,566,567,577,561,563,560,528,516,525,525,531,524,529,523,528,520,517,531,545,509,514,513,516,524,529,526,531,515,522,526,523,523,520,553,559,547,547,552,541,552,546,547,549,552,548,553,551,548,506,511,505,495,513,504,506,505,515,513,503,512,517,508,514,517,521,518,519,521,518,517,518,508,558,565,574,580,588,586,573,591,572,590,584,580,503,504,511,518,507,508,506,514,554,541,538,573,581,570,567,583,577,555,565,569,569,574,573,571,571,541,540,543,547,492,504,498,497,506,503,501,502,504,495,510,501,500,505,546,550,552,558,549,548,547,553,567,526,535,540,530,543,534,538,586,564,561,564,563,563,572,502,500,507,492,502,506,475,474,479,484,479,477,477,493,483,483,498,486,487,489,492,481,480,488,484,476,483,497,490,498,506,499,492,499,499,498,501,491,504,502,491,497,489,492,477,471,484,483,489,481,484,483,486,488,477,474,472,472,470,472,474,493,512,510,507,508,520,510,501,509,504,512,502,502,511,568,551,559,567,561,557,570,557,552,558,555,518,522,506,519,530,506,497,502,516,510,490,487,494,481,485,498,499,494,494,503,500,499,501,501,501,500,500,498,502,486,485,480,488,489,485,489,484,490,483,481,481,490,488,487,479,482,484,480,478,484,486,492,484,495,489,487,488,492,482,492,491,491,497,492,492,491,489,457,462,452,466,461,460,462,460,458,440,452,461,445,448,450,457,449,552,559,555,545,551,559,562,560,483,502,501,501,497,471,445,438,538,542,543,545,557,545,553,543,533,540,555,546,547,547,528,537,549,563,554,547,555,561,567,549,561,554,552,560,555,554,559,541,547,555,553,511,515,455,457,459,461,451,466,467,458,457,463,466,462,454,471,482,475,485,474,487,476,484,478,471,479,471,477,482,479,475,556,552,567,574,557,560,556,566,562,573,573,558,553,559,476,481,489,471,482,473,475,481,485,469,473,484,481,477,468,484,468,475,477,471,479,558,557,555,459,484,492,485,475,485,471,473,497,481,479,463,460,485,474,490,479,477,483,481,474,468,572,574,573,569,573,567,576,577,563,558,556,562,563,504,501,496,484,502,490,502,496,498,473,493,503,497,493,502,499,503,506,497,499,499,488,478,466,462,455,460,460,451,585,578,581,555,546,548,541,545,546,553,544,499,506,503,529,511,520,506,565,573,567,577,516,526,522,509,511,521,511,509,511,524,527,480,479,484,476,497,499,492,502,501,502,504,496,498,499,502,495,540,540,533,539,533,537,535,537,531,538,533,537,536,540,532,533,532,557,549,569,558,561,478,472,547,544,546,535,546,547,541,543,542,540,550,552,546,550,555,552,540,559,547,548,551,513,489,497,494,494,501,490,491,490,481,487,491,498,498,454,470,463,454,461,452,581,591,575,581,579,578,578,577,574,584,569,576,596,576,552,493,502,503,498,520,506,513,515,528,511,508,512,511,514,521,565,567,573,561,556,567,556,568,563,565,573,508,535,529,513,516,528,511,525,519,528,505,512,518,526,534,513,495,489,485,488,497,491,489,485,485,461,476,457,454,462,501,493,502,498,507,490,504,503,503,499,488,503,498,503,491,504,533,547,537,477,501,494,492,507,498,493,510,506,505,502,508,495,506,511,508,499,511,505,506,500,539,546,545,522,545,542,547,541,480,489,478,467,497,471,482,481,488,490,489,466,470,472,481,477,474,468,470,474,471,482,487,464,562,565,558,553,553,561,539,492,498,513,524,513,510,488,486,482,491,491,482,487,488,492,490,465,468,475,469,466,474,448,441,442,440,437,429,431,437,495,496,495,501,495,513,496,491,497,494,550,555,555,552,562,565,564,566,556,550,561,562,566,557,557,563,551,552,554,494,489,493,488,491,482,491,497,495,494,494,514,470,483,481,483,476,466,479,598,598,600,597,599,594,558,563,553,561,559,570,564,554,552,550,556,565,563,503,507,492,484,457,454,457,448,459,485,500,506,507,495,570,560,560,492,493,490,501,507,494,498,504,495,502,506,514,500,500,492,508,488,489,507,490,506,504,505,491,504,506,558,538,544,535,535,541,544,533,544,537,539,548,545,535,546,543,539,538,553,571,544,571,566,555,565,559,556,569,552,561,554,552,566,558,563,569,524,524,520,530,522,526,534,542,547,541,542,563,546,555,561,553,564,558,568,569,573,492,495,482,485,482,549,542,548,555,552,553,557,558,537,542,569,570,587,584,582,589,581,557,559,556,557,502,520,510,522,524,514,487,481,481,484,489,482,483,480,485,478,484,479,479,479,482,516,514,511,516,514,558,500,499,498,496,503,488,506,492,481,456,475,473,471,461,553,561,545,556,549,554,552,556,557,554,560,554,545,474,480,480,459,490,473,540,543,537,541,534,546,551,544,542,539,544,552,543,545,550,547,539,542,548,548,547,551,534,550,554,550,483,510,501,505,503,501,490,498,494,509,493,503,498,485,488,481,486,487,478,480,483,484,473,480,449,468,465,464,462,463,471,464,466,460,458,462,464,460,454,443,428,423,437,444,439,423,442,443,435,433,436,430,426,438,438,431,449,430,442,435,435,546,522,533,530,532,534,533,530,582,564,565,560,566,570,554,541,546,543,505,495,490,497,498,503,505,505,506,535,558,538,550,550,553,548,551,546,545,540,541,542,537,524,526,516,529,511,520,521,516,522,521,510,583,590,588,592,591,592,601,600,591,559,552,550,546,479,487,498,490,494,495,491,486,485,486,484,493,497,481,490,480,489,494,492,483,500,462,463,453,453,474,454,460,462,459,448,466,451,463,585,559,566,572,574,566,562,558,550,559,552,561,554,556,558,553,549,549,516,508,534,483,483,481,491,473,487,481,485,483,480,483,455,455,450,441,457,458,450,441,454,439,449,445,449,450,478,469,477,471,486,472,478,472,485,482,557,571,572,548,563,577,570,561,569,570,565,567,584,567,569,547,557,567,579,579,557,503,519,524,523,530,472,459,464,456,455,449,450,450,454,452,496,506,500,498,496,494,499,518,527,507,514,516,518,520,551,541,547,548,541,544,549,540,546,552,555,543,561,545,543,552,534,555,539,541,525,515,528,524,525,520,521,516,522,526,543,540,539,535,534,538,524,517,523,522,528,526,524,528,525,524,563,562,556,560,557,551,559,538,546,547,541,545,544,539,554,550,488,487,494,477,486,475,489,487,493,444,441,447,436,439,449,441,454,461,444,449,452,545,537,535,543,541,544,545,552,554,542,532,540,550,536,551,552,475,461,466,468,478,473,461,483,538,527,518,533,536,527,533,536,524,529,536,538,526,530,537,556,567,570,547,539,551,545,546,550,539,551,541,540,545,543,542,552,548,491,488,488,491,499,496,493,498,490,441,495,492,485,488,491,484,494,486,487,490,489,540,541,540,550,537,541,541,540,566,572,566,565,573,559,565,556,573,553,568,492,505,501,500,485,500,490,497,496,499,497,564,560,562,555,567,559,558,569,554,542,547,509,505,507,493,504,480,480,482,474,480,475,476,473,478,479,474,476,481,481,473,477,473,480,482,472,473,474,478,477,475,477,475,474,483,477,476,463,475,467,469,477,474,563,561,548,550,555,557,562,500,505,491,496,511,494,511,452,455,455,459,460,458,460,504,488,485,496,494,492,586,556,568,563,568,585,499,497,495,436,455,444,448,451,442,451,452,449,543,527,532,519,529,531,517,523,526,525,523,519,515,517,522,514,524,553,538,549,546,539,543,544,543,536,565,553,545,547,562,549,554,560,559,549,549,550,554,549,545,548,504,496,502,503,502,492,489,506,500,497,493,483,506,469,479,475,474,470,471,475,473,476,468,471,474,469,479,476,478,471,558,565,552,552,561,559,554,557,554,557,555,555,551,536,572,562,555,504,486,475,501,485,508,505,495,507,498,509,479,498,493,484,481,446,455,434,550,546,544,538,544,532,557,540,538,528,539,548,534,538,546,543,551,550,558,557,536,485,494,486,492,475,477,482,527,544,543,548,551,555,556,555,551,555,549,551,548,554,558,564,550,556,553,564,560,525,520,520,526,524,525,529,522,529,533,525,539,535,523,500,509,509,508,507,506,506,505,502,503,510,509,508,483,482,480,484,482,481,478,482,476,497,507,499,499,499,502,494,514,507,515,513,516,516,512,523,518,515,512,516,551,548,553,547,546,564,541,553,547,557,548,554,552,548,551,554,540,545,541,517,517,517,515,515,536,537,530,560,544,550,540,546,545,547,547,486,488,474,484,509,510,498,507,508,573,563,568,561,565,482,494,491,500,491,495,488,488,498,497,504,499,498,474,491,483,486,488,490,483,487,483,482,481,481,585,563,505,505,510,508,510,502,557,547,546,549,538,526,542,553,564,554,533,569,543,509,499,504,514,504,548,541,554,559,554,559,572,553,556,567,556,554,562,551,556,551,554,548,573,523,525,527,537,524,527,539,544,538,547,532,536,477,490,483,477,484,479,486,492,478,481,476,493,491,483,486,560,577,560,564,561,564,569,568,567,559,555,558,566,572,572,571,555,570,568,575,530,518,529,513,522,515,525,514,508,517,484,509,509,501,503,507,507,508,506,502,503,502,482,483,483,490,488,493,475,490,480,485,484,582,558,573,569,575,559,564,562,563,517,522,522,530,525,524,520,524,533,546,534,552,539,491,506,490,492,511,495,495,494,491,481,508,500,503,492,500,491,453,462,456,467,453,454,458,456,462,450,458,505,516,501,493,513,497,505,530,539,530,538,530,547,536,533,545,549,502,554,549,543,543,540,562,537,541,550,542,551,536,543,549,494,494,495,552,553,558,561,556,550,553,545,551,558,556,517,526,534,462,478,461,473,465,466,457,472,463,466,468,458,464,468,475,485,497,495,488,492,486,485,493,501,491,491,474,477,479,479,486,487,485,480,488,489,480,480,485,483,482,483,477,487,478,481,498,496,488,497,499,495,492,500,494,488,491,543,538,552,545,568,565,574,564,578,568,571,563,570,564,570,569,520,534,524,529,531,528,529,523,508,511,523,519,515,509,504,514,507,496,504,507,502,510,505,505,501,501,501,505,502,505,493,500,497,499,503,497,500,489,465,459,471,466,461,467,471,464,464,468,464,470,465,466,468,465,471,475,461,468,475,469,463,550,558,547,549,552,550,551,504,529,524,517,529,509,504,513,509,510,507,479,482,491,473,483,474,485,483,505,514,503,498,508,502,503,502,500,508,501,509,565,567,561,562,568,569,567,565,568,559,558,545,546,544,546,546,547,554,497,506,497,519,505,510,525,518,513,580,561,551,502,490,483,484,489,479,483,476,483,487,494,480,460,476,465,470,468,460,460,471,548,549,494,495,497,486,486,517,479,489,481,442,455,437,442,446,436,432,441,436,430,435,441,448,515,537,535,531,539,521,522,537,546,541,560,544,546,554,547,551,475,478,472,475,479,549,541,542,556,543,548,568,547,552,551,551,566,553,561,554,563,554,552,557,553,544,559,489,496,505,504,495,485,478,485,492,481,489,489,495,491,568,561,563,551,554,576,568,565,562,526,524,524,529,520,542,536,542,543,534,535,547,532,542,532,529,547,544,541,494,501,494,481,504,483,496,491,488,499,496,484,496,493,495,493,504,498,494,495,497,494,580,575,564,560,562,570,559,566,562,558,562,562,562,555,547,549,555,553,485,502,493,496,490,491,496,505,507,488,491,499,492,501,500,498,489,488,487,548,592,575,475,476,483,475,474,469,482,467,469,489,478,482,487,525,526,526,526,515,522,534,517,520,526,526,522,526,520,517,536,527,529,523,536,531,528,538,533,533,533,538,529,552,521,522,525,523,520,523,519,522,521,520,519,522,525,521,543,544,541,546,542,541,544,540,543,545,523,509,509,508,512,518,512,512,513,498,503,502,510,518,559,569,562,561,564,561,566,563,563,565,562,563,561,567,558,559,548,562,560,555,559,553,567,553,517,513,529,513,513,482,491,484,491,485,487,492,492,490,484,515,510,510,547,528,539,541,534,539,536,539,542,541,552,487,489,509,508,505,503,509,508,499,510,502,512,512,546,554,560,551,563,575,551,518,494,517,518,516,514,508,515,508,516,519,506,465,458,461,459,462,471,470,467,468,464,480,477,482,482,476,475,481,453,465,460,463,464,472,479,480,471,477,479,477,480,476,471,475,474,474,450,458,462,466,467,459,467,459,458,458,454,457,458,456,467,454,455,452,542,562,567,548,557,558,543,482,475,488,470,491,479,467,478,474,480,471,479,536,523,532,540,531,535,539,533,533,545,532,534,541,538,549,549,541,550,516,514,528,524,556,541,537,546,539,553,543,545,490,506,499,519,510,519,515,515,513,508,487,518,502,503,491,479,487,482,474,473,488,463,458,465,458,457,452,459,460,462,457,449,464,456,457,452,459,459,462,491,498,499,498,497,494,489,487,496,488,498,496,493,489,492,499,491,550,547,547,548,494,515,515,517,498,505,515,506,505,566,562,569,560,567,555,559,570,558,561,554,557,576,565,557,514,523,507,537,510,513,516,519,508,528,516,526,489,481,482,484,482,491,490,490,486,484,496,498,554,561,571,561,572,571,571,570,568,579,583,568,573,569,571,500,519,504,524,530,517,490,498,504,503,495,484,472,471,472,479,470,472,471,469,471,499,489,481,489,485,482,488,484,531,526,525,539,525,522,522,528,536,546,554,560,553,548,559,549,565,523,525,522,522,523,531,520,524,523,520,527,545,546,546,541,547,540,547,560,568,565,571,567,564,580,555,565,567,568,572,566,575,556,559,506,500,503,504,514,492,503,506,503,524,524,521,511,529,523,521,517,519,551,569,570,573,565,548,496,500,490,503,502,503,502,495,497,493,496,478,484,489,482,484,485,562,557,557,566,577,548,580,569,564,552,508,516,519,509,554,553,564,553,556,560,557,554,546,556,552,557,555,547,563,515,533,529,527,525,528,521,527,524,527,516,498,501,537,555,555,545,542,562,550,552,524,525,530,537,535,524,531,528,528,533,553,563,559,556,544,561,556,548,556,554,550,547,550,558,552,545,549,565,550,498,512,515,512,512,525,520,513,517,512,508,525,507,491,473,477,478,486,482,481,482,479,472,480,474,485,460,453,452,438,447,438,448,444,441,554,558,558,543,538,554,545,561,495,508,494,494,498,504,486,453,459,452,456,451,447,445,456,479,471,588,600,591,625,587,536,532,545,544,543,528,537,545,544,550,552,559,549,555,481,486,470,484,480,478,474,489,472,466,493,483,474,561,558,556,568,573,476,478,482,472,478,475,484,496,486,477,466,474,477,470,489,477,473,481,481,444,468,452,455,452,461,448,451,448,446,441,457,559,550,567,548,550,549,546,551,546,546,548,554,547,556,553,550,559,547,561,545,546,543,553,550,556,543,554,558,526,524,529,524,534,532,523,524,526,528,531,538,540,530,535,547,533,539,535,519,512,514,514,514,521,509,514,516,519,512,513,575,561,552,503,501,514,489,507,506,515,518,509,494,497,501,497,498,497,490,492,500,500,487,493,489,494,499,498,495,497,492,527,547,541,542,542,542,530,531,540,543,542,532,538,533,569,571,560,555,523,525,520,522,522,516,527,534,525,520,518,519,518,528,522,525,526,541,543,542,536,547,571,564,557,559,572,564,557,573,562,587,560,562,565,571,493,502,497,495,508,499,493,504,493,486,498,491,491,496,495,491,552,581,585,570,571,580,576,560,572,558,582,491,497,497,500,503,512,507,499,455,439,443,442,442,440,432,435,432,467,485,493,488,474,481,484,484,490,477,477,472,485,484,484,484,475,562,562,553,565,558,554,555,532,519,516,512,520,519,522,519,518,504,521,515,512,510,507,515,512,550,557,559,559,557,552,550,564,550,563,566,533,522,524,523,528,528,533,519,527,519,529,531,516,520,517,500,502,505,502,505,502,507,503,512,503,472,475,486,479,489,481,453,470,474,472,472,472,462,469,463,464,458,480,460,467,557,551,557,530,502,508,500,512,512,507,508,519,449,466,464,462,455,456,465,461,463,460,454,459,460,464,461,462,461,450,454,459,450,455,460,458,456,448,555,548,553,545,552,539,492,495,518,502,496,506,513,492,504,497,504,511,498,483,479,459,475,463,477,474,482,471,475,476,482,470,467,479,532,548,553,536,543,550,546,555,547,491,479,498,494,503,486,498,509,508,480,500,495,502,499,451,453,451,461,453,449,453,451,455,451,444,551,550,546,547,493,480,499,485,493,495,492,495,487,486,486,492,480,496,487,488,485,490,564,568,576,469,475,483,474,472,485,480,477,514,514,517,530,515,520,526,524,521,524,525,522,513,526,524,521,525,520,526,548,538,540,541,531,541,543,547,550,546,536,542,553,557,555,557,563,554,556,513,514,508,525,519,513,502,510,511,515,515,518,495,494,494,498,495,500,489,508,505,502,506,495,499,506,505,497,498,502,559,559,552,558,545,542,546,549,548,475,497,492,505,500,492,487,488,504,492,481,479,482,422,427,429,447,445,452,500,484,497,500,487,498,488,480,538,536,532,535,545,542,533,532,531,564,561,570,544,566,556,553,562,555,562,569,563,553,554,562,555,551,487,488,494,498,487,473,490,475,483,478,484,478,488,567,596,609,605,586,595,596,596,595,601,510,503,517,501,535,541,538,536,550,539,546,541,548,554,545,541,509,536,535,535,540,533,539,544,538,532,544,546,559,562,561,573,572,570,568,528,523,518,528,510,524,530,521,498,505,509,500,510,504,508,512,517,540,541,546,537,546,533,515,518,519,516,525,521,523,518,521,519,527,517,514,529,530,534,526,528,533,545,553,487,506,480,494,488,502,493,503,496,579,580,564,581,573,580,580,593,586,520,501,506,503,507,509,500,532,536,547,529,531,527,542,543,535,539,569,558,568,569,526,533,512,497,500,500,493,499,498,497,496,494,579,477,473,495,468,479,488,486,487,499,480,497,482,471,536,528,543,526,545,541,540,537,544,523,538,544,546,535,543,495,497,489,496,483,493,476,505,566,569,579,586,583,577,582,585,567,523,536,536,529,536,534,550,537,520,531,535,535,532,535,540,536,534,473,473,492,490,494,484,496,490,487,499,555,547,549,550,558,553,558,552,553,550,550,550,548,555,555,551,547,548,557,552,560,564,563,558,560,567,556,558,557,564,550,561,561,507,517,515,539,510,507,530,522,513,519,483,489,488,479,501,490,490,484,487,488,593,568,566,576,584,592,606,588,575,558,600,478,482,494,476,480,485,489,493,482,493,502,488,478,484,489,463,475,470,557,550,541,547,554,545,558,549,548,545,563,551,514,499,495,512,494,495,520,524,520,519,518,532,524,524,528,525,519,517,519,524,520,569,566,553,564,571,572,571,564,579,568,525,523,530,526,512,503,500,506,500,495,502,499,502,505,501,495,507,496,496,490,496,492,499,496,495,496,463,476,469,469,468,467,475,475,462,467,472,468,461,467,465,466,463,460,469,467,457,457,469,473,460,470,457,464,459,461,462,464,458,463,474,461,552,542,558,546,549,545,543,555,557,538,542,555,556,541,546,500,504,510,497,509,497,481,507,508,503,508,482,481,487,482,488,478,477,472,496,495,494,488,495,484,498,492,495,492,493,492,492,484,495,494,491,485,493,485,486,485,470,461,457,461,466,471,460,513,492,545,530,532,449,465,473,469,480,459,483,483,467,555,542,539,546,542,544,541,566,569,574,566,565,583,579,577,572,553,543,551,544,544,543,551,554,551,548,548,551,560,541,538,482,508,498,494,502,495,501,488,488,488,505,494,500,501,497,491,500,499,500,494,509,515,511,503,512,550,532,532,540,542,548,539,542,535,565,565,583,564,565,566,570,556,518,513,515,502,513,549,549,561,560,556,556,557,554,553,564,558,558,571,555,553,557,546,517,516,522,536,517,508,511,476,472,485,485,489,487,473,478,476,473,478,474,471,466,464,471,469,469,470,455,458,454,462,462,450,458,466,559,562,563,551,563,558,557,546,554,567,511,507,515,512,506,510,507,506,511,498,505,507,501,503,502,507,504,501,501,501,504,547,555,542,541,551,548,550,547,545,547,548,545,535,532,539,520,511,521,516,510,512,501,504,520,513,518,510,505,492,576,552,566,568,554,555,567,552,571,574,579,562,574,546,524,502,497,509,507,520,512,507,519,514,504,510,518,489,487,494,485,487,487,497,492,480,492,491,480,492,487,483,509,501,496,503,500,499,506,502,501,500,498,480,481,480,450,457,461,464,540,536,527,534,547,531,523,523,524,527,530,525,528,531,527,524,528,527,524,540,546,536,550,535,541,547,546,545,549,542,547,542,543,542,537,569,561,555,559,552,512,486,502,489,488,504,487,487,488,478,492,492,486,478,593,598,591,600,612,591,600,608,602,544,543,550,547,553,568,495,503,506,501,499,503,491,494,500,495,495,496,495,495,491,512,512,497,491,498,511,515,493,506,497,506,502,505,541,531,529,538,536,537,533,529,530,539,520,527,528,530,533,525,520,524,533,526,520,529,527,533,528,530,520,530,558,538,522,495,502,501,503,512,473,486,485,484,486,486,476,485,483,477,487,481,481,481,466,478,472,479,475,471,483,463,444,431,442,427,438,437,432,557,529,535,542,531,538,537,532,546,540,547,542,525,541,547,537,544,530,540,547,568,582,563,555,559,570,561,557,572,564,564,563,525,525,532,525,525,526,528,527,532,533,524,533,530,520,533,578,564,553,562,554,560,567,523,527,516,519,526,514,518,519,518,515,521,524,514,501,508,515,511,508,511,512,509,545,533,545,542,538,544,541,548,528,535,545,515,514,511,523,519,518,509,519,516,512,519,515,512,504,516,516,524,532,530,534,525,529,526,524,522,524,518,519,523,516,523,519,514,515,514,522,523,515,519,559,563,554,564,557,558,558,567,555,563,565,565,563,557,562,537,530,527,532,539,528,533,530,541,486,480,489,476,483,473,481,476,467,482,479,544,554,555,560,553,560,552,554,555,541,561,548,502,491,495,489,489,490,494,484,565,562,563,558,552,554,553,548,551,553,553,551,557,545,550,549,549,555,556,550,551,546,556,547,550,551,548,503,505,501,501,507,506,511,503,576,605,594,590,592,590,598,597,602,593,599,588,595,589,535,548,548,546,545,542,540,550,550,545,553,542,541,545,551,512,496,489,490,483,490,498,495,492,489,500,488,493,496,490,491,485,490,484,491,495,491,495,494,488,532,540,535,532,535,536,540,531,533,532,559,552,558,550,549,487,507,495,483,505,480,493,497,503,499,521,507,491,506,494,497,509,500,491,496,476,485,486,464,478,473,474,479,476,476,484,463,481,474,472,465,572,537,556,563,550,548,541,549,546,479,480,466,485,480,480,481,487,529,524,526,522,526,525,512,517,527,529,525,519,522,526,535,520,523,527,528,523,518,524,517,525,518,538,535,531,532,544,541,542,540,535,537,536,539,546,542,553,547,544,555,552,553,495,487,478,474,495,492,504,507,465,443,451,453,460,546,540,542,538,542,548,528,558,542,540,539,516,502,503,512,499,508,504,503,513,509,508,508,518,504,507,535,530,535,522,527,529,529,531,530,532,538,535,536,538,536,553,525,559,468,472,476,472,481,473,471,479,482,482,494,479,495,483,492,486,493,490,496,482,492,497,495,477,565,551,551,557,550,542,552,543,546,552,544,540,545,543,540,552,543,538,537,537,543,544,538,534,539,563,565,561,555,572,563,567,557,528,514,509,506,506,516,507,510,510,555,563,562,540,570,558,557,557,555,561,565,554,571,553,557,549,566,529,523,534,536,536,546,539,543,528,529,527,540,532,542,534,542,535,480,462,461,478,466,469,482,471,474,477,467,483,467,472,467,461,477,543,539,544,540,536,536,543,540,538,541,542,547,541,542,531,535,543,539,536,571,561,558,574,587,576,574,502,494,500,500,495,500,505,502,495,495,499,499,508,532,520,524,536,528,531,537,536,545,545,549,537,553,548,541,540,544,533,547,545,546,544,550,548,545,538,559,568,552,556,553,560,558,547,564,523,530,523,514,521,519,521,523,523,531,520,517,513,505,509,505,508,513,504,510,508,512,506,503,477,487,479,479,465,468,468,466,443,439,436,518,525,518,531,527,523,526,527,536,528,523,521,529,535,534,532,528,541,533,537,532,531,536,533,537,532,537,540,545,550,559,539,531,541,544,540,501,490,496,489,471,533,535,548,559,543,548,568,567,543,533,562,556,540,544,553,544,549,557,503,496,499,498,490,515,506,509,502,508,562,567,541,550,549,568,562,561,548,520,503,505,504,511,518,510,510,503,515,506,451,458,457,464,463,468,463,464,460,461,455,454,465,467,465,463,453,451,458,500,480,488,470,478,486,457,473,473,554,570,564,568,570,552,557,564,560,562,569,545,519,516,522,525,525,528,568,547,542,555,554,562,568,544,565,562,561,457,473,476,474,472,479,483,463,487,548,538,542,533,537,542,527,533,523,537,542,526,531,539,534,542,568,540,530,512,508,510,510,547,526,564,560,553,561,567,560,562,569,561,565,568,564,567,516,512,519,525,531,511,508,523,529,503,519,526,519,475,481,478,476,480,472,474,471,485,475,481,479,473,478,486,488,483,485,491,489,488,480,488,489,576,578,557,565,562,574,580,577,587,560,556,501,489,582,585,583,574,586,590,583,579,574,560,518,531,514,532,525,533,528,534,562,563,563,563,558,572,569,525,516,518,518,523,525,517,530,520,521,515,508,512,514,509,513,511,553,555,563,555,560,551,555,557,551,554,553,560,554,546,557,551,558,562,546,545,543,548,551,549,551,551,544,548,544,548,494,501,494,512,501,505,513,506,515,502,504,514,492,506,495,504,498,488,481,496,494,533,539,556,546,499,497,492,503,484,502,494,581,585,597,578,570,580,595,595,506,504,499,498,505,514,507,497,503,506,514,506,503,534,525,525,528,529,532,535,525,533,527,546,544,528,538,542,535,552,536,537,549,545,550,547,547,476,481,473,476,481,482,494,480,473,494,484,488,482,585,526,514,511,515,515,511,510,517,514,517,518,514,512,507,507,498,504,507,507,502,507,502,503,505,502,474,471,474,478,476,468,485,474,478,475,480,471,474,478,480,480,474,480,472,481,472,471,479,602,596,582,590,587,587,588,589,593,602,586,525,523,532,536,521,526,513,518,590,569,570,587,578,594,584,583,570,579,599,583,535,531,533,536,532,534,540,536,533,536,538,579,548,569,560,565,562,560,556,559,554,557,575,552,512,508,515,525,511,516,524,511,513,522,516,527,518,520,563,554,568,568,546,560,564,567,547,546,559,471,469,470,502,562,556,563,578,565,565,559,560,517,519,521,514,512,504,471,484,479,476,485,485,481,481,483,482,476,476,483,480,479,484,482,478,495,498,499,491,494,512,510,509,514,520,519,510,540,555,545,543,552,553,553,539,549,546,555,531,545,543,544,549,527,542,545,558,555,542,546,539,458,470,481,475,470,469,463,472,490,468,525,532,532,527,525,527,531,533,538,527,527,571,565,569,577,565,573,554,546,558,530,525,519,530,521,517,507,518,507,515,504,519,518,512,504,497,487,488,489,489,490,495,493,487,492,483,492,490,495,491,496,493,512,502,507,498,507,501,519,530,524,531,530,530,536,534,529,528,524,526,522,526,524,514,529,528,529,536,528,510,515,523,523,523,528,523,521,514,518,518,521,521,521,517,521,543,535,534,537,536,535,537,536,552,545,557,546,515,483,472,470,479,468,487,474,472,472,469,475,475,480,474,478,474,475,470,467,476,473,464,474,490,495,489,491,491,499,493,501,499,497,477,495,562,576,560,557,570,567,563,555,560,557,552,566,563,504,499,472,480,480,478,478,483,482,482,488,487,485,492,493,500,506,494,501,498,499,483,484,490,485,483,479,474,484,470,464,461,474,474,468,471,470,473,473,467,472,469,470,469,470,464,465,472,472,478,468,472,469,470,469,467,459,462,463,469,556,554,503,515,510,490,505,506,499,507,497,512,490,493,488,493,494,505,508,507,497,501,494,502,495,501,505,505,499,499,503,499,499,498,496,501,491,508,501,500,501,498,488,488,488,481,484,486,482,490,493,489,489,492,527,505,510,507,555,560,550,561,553,556,568,567,554,570,561,567,558,511,521,512,516,514,520,521,499,513,510,483,478,481,483,485,484,475,478,476,483,472,482,443,452,442,548,539,562,556,549,563,555,561,553,557,540,552,550,551,547,544,538,556,541,549,490,499,499,498,447,457,462,459,460,454,518,520,507,523,509,567,577,575,569,574,553,570,567,574,569,567,574,569,529,534,529,514,533,517,532,526,527,528,517,514,503,512,508,507,508,509,508,510,505,502,498,504,505,489,501,493,493,495,496,448,462,460,452,455,456,456,457,463,450,448,460,460,464,462,476,463,465,468,469,464,475,472,476,472,469,481,471,470,457,461,473,581,597,588,592,590,580,586,595,590,581,593,583,586,588,529,539,494,498,496,502,498,501,495,504,503,500,499,496,495,500,552,550,540,540,540,536,538,537,539,539,542,538,546,532,571,559,558,558,551,550,541,549,548,558,555,560,551,559,497,504,514,497,508,509,503,517,517,505,510,486,479,478,475,473,480,486,477,484,482,485,443,445,453,428,448,447,438,446,457,450,454,439,439,450,462,444,541,546,538,540,544,537,537,544,538,551,565,558,577,567,574,573,569,561,569,568,561,562,529,539,540,550,539,528,540,530,540,536,536,544,578,558,572,588,579,580,596,577,573,522,524,524,519,530,507,498,508,506,507,509,508,501,504,509,513,515,511,502,503,491,502,499,505,500,503,494,496,504,500,501,504,500,504,506,498,501,483,472,480,489,486,485,479,490,481,470,482,483,486,480,489,478,478,479,490,488,491,491,487,497,488,485,487,486,488,483,488,482,481,482,475,479,491,488,482,490,476,492,473,484,482,485,497,488,491,471,457,471,473,463,474,464,474,467,463,467,473,461,468,473,478,469,473,470,474,472,477,483,474,468,474,479,478,477,478,474,477,477,479,476,479,472,482,463,455,461,455,577,556,566,560,560,560,562,564,559,554,563,551,559,548,568,572,569,554,562,551,561,569,558,508,522,506,521,519,517,513,509,528,530,497,486,489,487,491,485,482,483,493,491,491,486,488,483,487,507,493,495,487,494,497,493,506,558,560,558,557,555,564,558,551,535,530,525,526,532,526,531,526,530,520,534,526,533,530,524,529,481,470,474,468,477,484,473,480,467,482,546,530,524,540,525,529,537,523,536,527,541,536,535,537,538,545,546,554,542,540,547,542,548,553,545,545,537,542,537,549,533,547,550,548,536,522,511,518,526,526,519,510,516,564,575,559,584,590,554,571,574,553,565,565,565,518,507,494,505,494,505,499,505,487,497,512,508,499,505,505,506,505,505,510,503,511,557,536,536,544,564,555,561,558,565,509,511,525,511,515,484,520,510,499,513,502,488,489,488,480,485,480,481,492,492,485,496,493,492,486,480,479,482,477,483,484,483,477,562,560,553,569,570,562,559,552,511,520,520,514,524,522,515,525,510,483,483,494,486,488,485,483,485,498,498,500,503,502,549,556,550,548,561,548,497,496,491,501,500,498,541,542,550,564,556,568,569,558,567,581,559,568,559,537,549,541,538,544,536,535,545,545,529,489,487,456,450,438,443,546,552,553,549,552,554,548,534,561,553,556,551,561,549,543,553,544,554,557,545,539,542,557,560,502,512,507,500,493,493,497,496,501,493,502,494,490,460,465,459,458,457,453,504,505,514,515,512,510,508,514,502,563,555,548,565,562,555,557,503,515,510,504,509,526,511,514,497,521,506,482,483,484,485,483,484,481,472,476,486,479,480,487,477,488,483,493,492,488,480,477,481,480,486,491,482,485,494,492,491,497,491,505,508,485,483,490,483,478,475,517,509,524,507,519,513,520,507,510,510,507,513,562,572,568,539,514,524,514,515,520,511,513,508,535,484,496,498,494,497,491,455,461,460,465,450,468,457,460,461,451,464,457,453,477,483,473,568,561,575,559,555,572,559,566,568,482,494,474,470,485,485,470,465,484,486,482,492,485,479,475,477,473,494,475,470,492,481,594,571,571,567,563,585,566,573,569,530,514,526,517,524,523,528,518,532,527,518,531,511,505,490,490,490,482,495,487,486,494,487,484,485,491,497,495,492,492,490,489,493,488,498,498,500,501,499,495,493,503,496,469,478,476,483,467,477,470,474,477,486,475,492,488,484,486,485,611,589,595,579,605,619,600,608,593,605,594,587,549,559,555,554,557,520,511,511,498,496,502,493,502,498,497,499,502,501,512,499,504,506,503,503,491,504,498,503,488,491,493,492,497,496,488,490,507,504,508,514,509,509,506,508,509,502,511,506,519,533,544,544,531,542,544,541,549,531,546,539,549,542,541,543,497,488,500,491,489,482,499,492,494,498,492,497,487,472,487,568,551,567,546,559,553,556,548,574,470,463,476,473,481,487,470,470,483,462,477,468,490,486,473,475,465,482,547,544,537,558,546,546,543,548,544,545,549,546,558,547,545,544,540,500,491,490,513,500,500,507,490,503,499,508,500,483,482,478,477,479,481,483,481,491,496,503,497,493,499,485,486,490,483,473,491,486,488,497,488,493,479,484,485,491,480,479,480,485,486,481,480,478,469,473,472,478,478,469,475,483,475,477,475,474,473,458,447,443,447,451,441,538,552,535,548,532,540,543,542,543,538,548,545,542,543,546,530,528,536,525,530,534,526,526,528,526,545,561,551,556,561,559,547,552,489,497,508,503,508,488,502,499,510,516,511,522,515,515,518,515,509,522,517,521,517,503,555,559,553,562,564,559,577,557,572,549,565,563,550,555,489,498,496,497,494,497,500,503,491,498,499,501,495,489,497,492,500,529,520,529,520,531,606,581,591,585,580,584,563,580,578,588,545,532,529,544,535,529,535,527,532,545,560,557,512,522,521,520,467,462,465,477,470,471,468,476,467,468,470,468,465,473,470,476,475,468,475,500,496,506,492,495,501,512,496,499,501,496,499,501,507,492,496,494,496,483,486,485,485,485,483,484,481,483,482,481,476,472,468,473,478,477,483,480,472,476,509,501,499,500,505,510,511,499,503,510,510,512,501,506,497,507,499,496,508,552,553,551,556,568,564,565,577,570,569,561,571,576,570,576,570,570,573,570,563,515,509,535,519,524,524,510,513,524,515,533,513,513,519,528,532,515,476,490,489,488,485,481,488,484,486,479,485,432,438,430,440,527,530,536,528,530,532,570,562,569,560,569,566,566,575,562,559,562,566,518,529,530,525,539,529,547,536,530,539,529,532,516,514,530,510,523,524,507,519,528,606,583,586,572,582,594,573,586,567,578,543,528,529,530,525,526,530,526,525,527,533,526,531,529,526,523,525,526,552,555,558,552,548,554,510,521,513,503,509,500,510,506,513,517,504,515,503,521,521,507,495,488,490,484,491,482,484,490,493,482,483,486,499,481,488,494,484,480,487,488,482,486,494,496,493,492,493,486,498,488,497,495,495,503,495,507,498,497,499,489,497,494,503,497,500,502,499,497,500,491,475,481,489,486,486,482,480,503,503,500,499,497,500,491,499,505,497,506,496,497,501,507,514,520,502,519,516,514,516,514,504,540,545,545,537,548,544,549,545,546,476,483,468,491,476,464,478,465,483,473,536,537,541,533,546,550,544,541,543,531,548,540,543,549,549,548,548,548,550,516,511,514,514,514,515,514,514,516,513,505,525,528,532,533,534,538,534,535,546,537,534,528,536,528,533,536,540,531,546,552,542,551,541,543,535,535,551,549,528,540,544,555,525,515,515,519,514,508,502,503,545,562,576,564,577,570,563,485,483,489,494,500,482,488,483,475,491,485,484,479,498,482,491,486,492,483,554,557,553,564,558,555,542,544,534,538,534,545,550,547,478,472,467,468,477,470,518,513,511,496,493,514,497,507,501,504,505,499,508,499,536,541,540,534,531,534,528,539,535,471,487,488,470,477,480,487,482,470,485,486,485,477,482,475,553,550,549,559,547,567,559,557,565,565,546,552,554,548,557,570,567,568,559,578,563,564,557,564,497,495,505,498,485,504,501,494,510,508,484,494,498,491,496,504,490,501,485,488,485,490,560,561,553,571,572,548,570,567,582,558,503,509,503,514,506,501,502,506,496,509,542,504,494,488,478,485,491,497,491,492,494,494,482,480,477,485,479,478,488,471,481,602,594,606,588,611,596,593,593,507,506,504,491,515,512,509,516,507,514,504,509,511,508,495,536,569,577,581,565,536,526,524,536,528,521,523,524,520,527,525,531,526,532,501,494,486,502,496,480,498,486,583,585,552,559,558,554,557,558,546,547,560,553,547,551,546,550,555,549,548,552,496,485,504,504,494,509,496,506,518,486,498,501,444,452,454,446,444,441,449,443,454,448,562,548,544,538,550,540,544,547,545,537,549,544,570,560,569,565,574,571,581,576,562,582,567,531,528,531,516,527,526,519,524,513,511,521,521,522,544,554,544,559,554,555,552,551,562,553,540,511,517,526,513,517,519,518,518,520,549,553,543,546,546,546,557,550,550,534,531,542,528,535,533,538,532,529,532,537,508,515,514,512,511,508,512,523,520,507,512,517,512,532,525,530,521,512,522,527,529,526,528,592,575,582,512,503,514,504,514,504,506,509,515,521,515,523,518,509,516,510,513,518,557,550,541,546,543,545,542,541,543,542,550,538,556,539,478,476,480,486,488,477,462,471,482,535,549,553,554,552,559,506,474,477,467,475,477,475,472,472,481,470,478,478,473,475,465,467,571,541,536,555,552,538,536,557,544,548,557,545,492,466,473,482,467,477,510,505,504,505,540,541,529,542,541,545,541,531,533,533,531,545,539,542,535,473,480,460,482,476,494,495,465,475,490,480,555,563,551,548,554,539,547,551,541,561,559,558,553,488,483,476,480,488,488,482,482,483,498,479,488,480,487,474,515,498,509,508,516,492,503,501,501,524,541,529,533,540,533,529,538,532,543,540,543,491,490,496,505,490,499,488,577,598,590,583,535,536,536,546,539,544,537,533,544,535,545,547,542,513,504,520,516,517,511,518,509,511,506,512,514,508,509,515,512,508,506,499,506,508,511,507,509,504,517,523,521,516,522,525,534,537,534,526,538,533,526,534,559,571,564,562,561,514,512,514,522,558,551,561,559,562,552,556,559,555,554,548,561,554,555,567,561,562,562,558,559,526,539,521,512,518,522,523,524,512,513,511,508,503,502,512,511,508,511,500,497,496,507,502,503,508,494,490,493,490,496,496,493,491,494,498,483,489,492,488,484,490,482,487,486,491,496,495,494,495,502,496,500,494,497,495,494,494,461,447,458,458,457,463,453,452,456,453,457,470,555,556,574,568,560,563,576,571,566,569,553,557,566,561,509,527,521,576,587,579,587,592,569,573,583,587,542,543,544,551,548,540,544,543,548,543,549,528,521,531,525,524,533,532,515,516,508,511,514,513,539,551,561,552,555,545,538,564,549,526,519,512,512,502,521,511,513,512,518,519,589,584,558,550,587,568,557,571,565,575,542,585,563,574,515,516,514,523,510,508,515,519,589,558,565,586,580,560,569,565,571,588,574,577,574,570,508,502,488,499,502,497,507,499,501,492,499,494,471,487,474,470,466,463,472,471,570,560,507,517,511,496,513,522,456,461,455,458,457,464,462,455,451,476,473,468,450,461,463,461,465,467,454,461,465,457,469,461,462,459,468,458,466,546,544,547,543,548,472,463,474,475,479,476,475,488,475,470,466,474,474,482,473,461,463,461,475,479,472,461,478,478,465,468,462,471,478,474,469,477,471,582,572,581,566,594,569,584,590,570,572,580,479,464,494,474,483,485,482,473,489,483,484,482,544,533,536,545,545,541,543,525,551,543,542,543,544,555,555,550,538,553,543,544,542,531,572,553,469,465,465,463,470,472,465,529,537,531,529,527,530,536,526,537,533,538,526,540,532,533,533,541,564,566,566,570,566,564,574,577,575,566,566,573,559,551,551,548,554,540,553,542,546,513,515,514,529,530,520,527,504,518,512,504,500,500,510,496,498,507,502,498,503,505,498,504,503,484,484,477,482,484,490,487,489,485,482,489,483,494,490,488,484,492,480,482,484,490,453,461,457,457,462,456,455,451,450,452,463,458,455,454,457,454,458,447,446,455,449,454,454,446,451,451,552,545,555,564,573,551,556,467,473,464,471,491,454,477,468,472,518,514,519,521,528,526,517,525,535,519,520,525,516,519,521,522,521,545,542,557,510,505,487,498,500,499,507,499,496,503,498,497,509,510,511,507,509,505,496,512,501,509,503,502,506,534,530,533,529,534,534,533,530,530,534,529,568,566,556,565,550,558,555,564,555,501,503,512,512,527,514,526,528,523,530,525,533,530,525,523,521,545,553,546,560,561,565,553,545,574,543,556,556,555,499,498,491,491,506,492,498,509,494,561,559,564,553,558,509,471,500,482,498,500,488,487,483,485,490,497,494,497,502,480,490,447,433,453,439,445,459,443,444,447,446,449,436,543,540,543,538,546,532,542,538,539,530,543,547,552,544,538,535,546,531,543,541,539,538,531,539,536,552,540,548,534,545,509,509,503,518,508,512,507,514,509,559,553,532,523,525,520,511,543,544,557,546,548,552,534,539,542,543,543,553,547,542,548,532,537,532,543,545,531,536,523,526,566,571,576,557,565,573,577,570,563,551,563,522,521,525,522,522,518,527,519,551,539,540,542,566,572,580,558,567,573,527,527,520,537,516,519,519,516,534,524,516,509,512,513,513,520,510,521,518,512,512,517,511,515,507,514,516,516,519,513,506,509,506,503,502,511,503,495,495,495,494,505,499,503,493,493,491,492,489,498,464,470,461,474,471,472,480,473,482,479,474,489,474,488,537,519,520,519,527,524,526,528,523,524,518,521,526,522,550,564,535,561,565,553,557,469,490,498,482,500,492,508,496,486,485,501,466,464,469,465,460,461,466,474,467,465,462,457,556,531,546,551,540,546,548,554,537,536,552,539,486,485,499,508,507,497,491,496,499,499,492,496,507,486,503,515,483,500,491,498,494,493,498,492,490,501,493,531,532,522,530,531,531,532,536,527,527,516,515,516,515,510,514,514,515,520,520,508,535,538,537,544,528,541,536,539,564,566,572,564,563,563,557,577,562,561,557,547,561,525,525,525,519,527,528,524,518,526,522,531,523,518,525,521,517,537,530,535,540,543,542,538,536,538,543,538,540,542,540,539,541,537,542,530,537,528,535,557,549,539,548,557,496,505,506,513,518,501,503,510,512,519,504,487,490,478,473,485,481,467,472,476,478,488,487,486,491,484,485,483,483,483,487,483,492,565,566,573,568,565,564,576,521,517,533,535,540,535,532,537,532,535,538,542,557,553,569,557,549,556,561,568,563,551,549,550,555,558,512,504,512,505,514,513,517,514,517,499,510,514,517,507,503,506,504,508,501,500,505,500,502,505,498,506,500,564,544,544,543,549,509,517,500,497,501,497,512,489,514,511,489,494,482,492,480,487,490,491,489,486,491,482,494,490,490,502,489,495,492,500,498,495,482,485,490,492,484,491,482,490,487,487,483,492,490,487,490,491,491,488,491,495,508,513,510,507,499,505,507,504,507,508,505,514,508,509,511,509,521,531,535,534,527,520,520,533,527,531,541,519,529,523,546,540,542,555,543,542,541,519,523,504,513,501,500,496,496,490,505,499,492,489,498,485,484,495,487,487,478,473,486,487,479,482,481,476,494,483,490,494,488,497,495,495,491,494,493,485,505,505,499,496,495,502,500,500,495,498,496,507,500,499,504,495,504,481,482,481,486,483,482,478,479,484,483,481,478,479,479,471,464,461,469,453,461,457,461,464,465,459,467,460,464,457,531,548,540,551,532,544,547,558,551,544,547,535,556,513,512,510,515,569,565,552,564,554,554,555,556,558,566,569,547,550,551,552,547,506,495,509,500,501,492,493,505,491,503,501,501,499,505,488,517,509,529,513,565,558,548,562,561,568,513,513,490,503,499,490,500,492,499,453,448,455,455,461,466,460,448,451,455,463,453,464,457,453,452,452,505,503,507,520,502,503,506,504,510,519,545,561,555,554,552,560,550,565,559,570,566,563,553,559,491,501,492,493,489,493,499,495,461,467,470,461,469,463,458,478,456,467,472,553,566,572,547,565,549,546,554,541,557,539,559,563,549,523,517,515,512,515,514,524,511,512,509,521,568,559,539,504,518,526,515,519,515,520,520,518,513,529,567,574,573,568,572,570,583,563,561,576,558,566,581,555,550,561,563,575,508,504,491,492,496,504,501,512,512,504,511,505,511,564,558,564,558,557,533,532,534,527,537,534,537,537,527,515,514,506,513,523,509,514,516,513,517,516,510,515,514,518,511,520,514,514,505,509,511,511,507,513,512,511,513,506,507,508,506,553,553,548,537,546,550,542,545,543,532,542,517,517,521,512,523,516,551,548,556,549,552,541,551,560,553,539,552,550,542,546,548,553,549,527,548,540,533,532,538,545,504,503,511,504,492,511,498,467,453,445,459,453,456,456,457,458,454,431,458,456,450,453,448,451,457,456,451,440,445,446,437,462,556,581,576,584,588,575,579,581,574,579,581,578,542,553,556,528,546,541,554,540,544,545,543,549,538,541,548,540,491,474,476,486,487,485,481,448,463,450,451,454,460,451,455,458,454,464,455,455,438,423,436,434,426,438,434,445,448,438,432,440,422,511,523,543,548,537,543,552,560,556,560,562,557,555,554,531,507,528,516,518,535,528,521,511,510,484,481,486,483,478,490,493,494,492,495,486,596,570,566,573,559,561,578,577,573,570,502,492,499,493,497,506,486,502,502,515,434,444,446,438,533,540,542,540,543,537,553,540,543,543,550,540,544,522,531,520,518,525,523,518,535,547,537,532,540,547,517,517,512,519,520,520,518,518,517,522,517,531,534,534,525,534,540,535,523,534,537,570,561,561,547,555,572,561,562,555,576,549,504,515,493,510,505,506,508,514,507,542,562,560,572,542,554,549,559,557,552,555,547,555,542,524,508,512,508,528,522,508,515,507,492,489,473,486,481,492,479,487,497,486,485,490,488,487,489,492,491,468,483,482,483,478,480,487,479,476,480,472,478,478,457,465,460,464,461,458,463,464,458,459,467,460,456,478,480,479,477,469,470,467,486,497,509,503,507,501,500,511,502,503,503,500,501,496,497,546,553,554,552,546,549,561,556,552,557,544,551,568,522,529,526,520,534,513,534,525,528,522,523,528,519,508,505,501,491,498,491,489,487,451,460,459,452,458,459,465,458,515,490,501,500,538,552,557,553,550,551,550,557,547,560,550,551,554,559,548,557,554,555,547,553,495,483,490,472,492,482,471,490,484,487,471,471,467,460,464,448,466,467,458,559,567,545,547,539,534,569,561,569,542,557,566,557,499,501,515,519,502,510,502,509,514,513,512,512,505,550,555,555,549,565,556,551,552,565,549,548,556,548,554,562,572,558,536,530,519,525,520,524,528,524,514,515,515,514,510,512,509,520,513,516,502,507,503,502,515,509,509,506,509,496,498,500,491,501,502,497,499,502,500,495,499,498,498,488,483,483,484,468,463,463,468,460,464,459,460,467,462,464,475,531,557,584,499,504,501,507,493,502,491,490,509,511,498,506,564,546,566,561,562,568,550,567,559,560,571,525,519,526,513,516,505,499,498,501,502,501,505,503,489,505,493,493,481,488,483,481,477,486,492,483,478,483,483,480,480,455,458,462,464,467,462,457,467,462,462,555,550,542,553,537,551,562,563,565,561,545,513,515,514,512,512,500,517,517,538,542,530,526,510,500,514,507,536,539,536,543,531,542,533,536,533,534,536,539,539,548,534,529,523,521,515,524,520,523,522,519,535,535,535,538,532,536,543,546,539,546,548,552,539,523,533,527,525,529,529,533,527,528,525,531,525,535,531,537,529,541,531,540,536,530,540,540,528,541,532,477,464,479,461,470,483,484,480,541,540,539,540,538,542,540,540,537,586,562,567,564,566,567,571,572,566,578,570,572,572,569,562,573,576,522,533,539,525,527,514,529,523,533,529,524,556,564,555,553,552,551,551,562,561,515,524,528,527,557,563,558,556,570,553,555,564,559,561,557,543,530,528,527,528,516,522,530,519,522,523,528,532,494,496,582,592,596,579,600,597,594,601,595,584,536,537,537,543,538,546,534,538,541,540,548,534,580,565,564,552,565,553,564,585,567,560,551,572,568,563,562,566,494,506,494,508,501,488,500,479,495,556,562,552,550,555,558,548,565,564,565,555,564,557,538,549,550,510,508,505,603,587,594,589,587,585,593,588,582,585,581,575,592,578,532,521,525,516,586,574,581,587,590,581,572,543,552,541,540,551,544,542,545,532,536,550,568,562,567,571,561,574,564,579,555,574,574,571,505,501,510,497,496,493,492,495,490,498,495,499,495,560,569,567,563,563,567,518,524,499,505,511,515,510,504,514,504,512,502,492,490,490,492,487,490,495,490,481,490,489,474,489,478,479,477,492,474,482,481,480,475,504,508,516,511,516,508,505,516,506,513,506,510,519,507,557,555,560,543,558,565,561,557,568,545,556,555,564,562,562,560,550,501,538,520,521,514,511,527,521,511,526,526,499,508,508,501,510,500,510,507,506,500,507,514,501,507,497,504,506,498,490,492,497,486,489,484,493,492,490,498,490,484,486,493,484,481,492,491,472,486,485,478,493,492,496,475,473,478,473,473,472,475,476,465,472,470,479,479,453,454,464,452,459,464,458,459,458,461,463,459,465,543,556,539,547,550,548,551,558,554,551,545,547,546,566,569,566,577,562,574,560,562,562,576,575,571,570,580,579,572,576,518,497,516,506,550,540,546,544,547,553,546,550,537,549,545,545,547,550,552,542,537,543,546,551,491,513,506,512,510,500,462,466,464,462,471,463,469,467,466,469,465,469,468,468,451,453,449,443,447,453,451,447,450,499,505,507,499,495,491,491,499,527,524,535,535,538,529,533,532,554,553,575,564,546,481,475,486,466,475,481,478,489,481,473,475,492,481,512,514,511,511,514,514,527,532,525,527,525,524,522,528,526,526,528,528,528,529,562,559,570,573,580,565,567,563,562,564,557,549,567,559,511,500,501,505,521,506,506,512,536,549,557,550,553,541,545,559,553,548,551,546,538,547,550,544,560,550,554,551,554,540,496,528,509,498,508,516,517,514,507,527,505,522,515,502,508,503,504,503,516,537,524,472,469,462,449,451,451,450,442,447,454,459,448,452,469,462,461,455,460,466,456,462,458,465,467,458,458,540,541,532,547,534,534,534,542,539,538,539,532,540,527,549,540,538,547,533,542,537,537,544,545,517,512,512,520,515,520,518,511,516,524,541,530,516,492,492,503,489,490,493,489,495,475,486,486,479,479,486,484,485,486,485,486,489,475,477,481,484,483,480,484,484,482,495,488,488,480,482,486,478,488,483,485,485,572,572,562,568,581,570,579,568,568,571,571,560,520,516,509,510,517,503,523,516,515,516,507,522,523,508,516,505,518,513,506,551,535,538,542,538,532,535,547,535,553,539,546,539,549,512,522,508,518,523,536,533,525,529,529,538,534,533,533,535,539,521,524,523,523,525,526,529,531,553,543,531,538,547,492,508,499,501,489,505,556,555,561,564,565,544,558,545,551,543,555,565,559,521,523,517,522,526,524,535,522,516,523,523,529,520,543,552,552,519,515,517,502,502,511,505,510,519,482,475,478,485,485,480,470,480,485,478,486,487,485,487,488,485,495,487,487,488,496,489,485,484,496,493,489,484,491,492,482,492,478,482,483,484,489,479,473,477,475,479,504,534,540,541,546,539,550,544,542,540,533,518,522,517,519,515,531,534,535,531,534,523,527,533,539,537,533,534,535,533,538,520,520,521,520,522,519,525,516,527,548,561,561,569,556,562,558,569,559,566,554,561,559,572,549,561,574,498,513,511,519,515,522,517,506,518,515,523,506,517,516,507,528,480,477,482,477,478,477,476,477,472,456,462,460,465,461,472,472,462,562,557,553,573,571,575,568,562,568,566,568,563,575,565,562,560,496,487,490,495,498,490,485,488,487,488,487,485,483,487,586,573,566,549,562,559,573,549,573,566,568,561,562,549,558,572,564,560,559,579,514,525,527,520,539,550,538,531,545,554,543,538,540,544,535,540,530,527,549,563,555,549,571,544,549,574,558,538,554,495,505,493,495,506,501,494,487,502,491,581,523,520,525,531,537,531,517,521,519,564,570,551,562,566,546,561,501,481,493,493,489,491,543,580,542,552,549,556,549,549,561,566,538,496,498,491,501,492,490,499,481,491,488,498,549,552,544,543,560,557,555,532,554,523,506,522,500,510,501,533,507,481,480,469,473,473,475,477,473,472,475,470,477,478,487,474,480,476,472,471,472,478,478,475,472,481,480,480,473,499,494,503,549,554,552,552,549,552,558,556,552,550,545,580,576,559,572,579,571,518,522,499,500,510,503,500,498,503,499,504,503,501,483,479,486,484,484,486,484,483,484,483,478,487,488,501,495,493,495,497,502,502,502,501,503,499,497,503,499,496,563,555,557,563,558,561,559,560,560,555,561,547,563,561,533,521,530,537,528,536,516,509,529,523,513,521,517,511,508,508,512,508,517,566,567,567,560,566,566,562,552,570,562,556,501,510,485,505,505,499,504,502,506,501,500,498,449,441,453,447,436,520,515,528,526,527,514,519,518,528,516,535,529,529,527,529,524,540,524,535,532,527,528,529,529,523,565,571,570,576,565,555,568,573,573,546,545,552,544,551,540,545,546,548,546,542,543,544,548,507,490,497,495,500,500,505,503,511,501,496,499,509,496,495,501,497,503,492,495,544,546,542,544,542,544,551,537,547,541,548,567,566,572,554,577,518,521,508,521,508,546,573,568,550,562,557,577,541,567,559,552,544,550,550,555,554,558,570,550,553,544,529,529,529,532,531,529,527,536,526,533,528,528,531,535,554,505,498,490,498,498,501,499,525,539,538,523,530,522,516,545,485,499,495,494,503,491,496,497,505,500,498,486,492,544,576,552,566,574,582,566,572,561,562,561,527,524,509,518,517,503,515,517,517,483,487,490,483,486,487,484,487,488,494,484,489,507,500,492,493,489,497,498,492,493,493,494,491,600,568,577,568,551,554,576,561,554,561,566,524,512,519,521,519,521,523,522,515,519,570,564,567,576,563,576,578,564,577,566,571,571,530,502,502,502,508,504,504,506,502,504,512,501,501,499,506,476,472,485,485,484,482,481,480,477,484,485,487,480,478,491,470,460,460,466,457,459,455,461,452,465,472,564,559,533,530,559,558,549,539,537,548,548,546,545,553,558,554,542,567,559,484,487,470,483,492,497,488,473,493,482,572,567,570,568,563,565,558,568,558,552,571,561,566,570,555,562,528,521,515,519,526,517,525,537,524,542,508,509,507,507,500,507,506,505,504,512,510,507,511,503,506,477,484,482,483,483,481,478,484,484,482,486,484,498,492,491,498,498,493,588,559,563,561,565,558,564,556,547,566,558,532,539,537,533,532,532,559,557,566,570,557,552,560,563,563,562,558,573,557,531,523,523,519,516,529,529,507,523,526,530,519,503,503,505,504,499,497,503,499,504,503,504,505,504,488,487,482,479,486,484,484,496,486,487,487,488,482,482,484,479,482,480,472,477,474,453,458,459,453,459,454,452,449,451,459,457,444,457,455,549,536,556,540,559,543,545,560,569,544,553,544,552,551,557,552,553,567,562,480,490,489,506,491,487,493,495,492,490,476,498,482,553,543,541,556,546,558,552,553,498,435,448,454,446,443,446,435,441,452,430,435,541,543,533,542,546,535,554,534,532,554,540,535,546,551,545,541,481,472,478,465,470,481,472,466,464,462,464,469,471,471,474,477,455,458,437,453,447,446,466,456,453,449,450,458,562,550,548,550,539,551,503,509,511,516,508,508,494,518,505,500,503,499,505,516,580,566,567,554,563,573,553,558,556,527,488,486,505,490,501,462,468,452,456,463,452,457,464,456,464,458,456,549,550,546,545,554,541,532,556,514,514,509,511,510,506,509,509,520,509,520,515,508,536,532,534,539,547,535,542,565,554,557,555,565,555,563,558,553,558,560,567,570,545,557,568,561,563,564,560,567,505,514,515,511,498,521,513,518,473,473,463,460,464,452,462,457,460,449,446,463,444,452,458,462,446,454,450,449,462,463,460,449,443,533,531,540,533,528,540,531,534,535,534,537,532,523,529,525,528,528,526,527,525,521,526,524,528,522,529,528,524,522,523,533,536,536,534,530,528,537,535,552,541,537,551,540,542,548,553,547,542,554,549,550,549,521,517,511,515,515,518,515,518,510,515,515,514,518,508,510,518,521,508,507,505,509,501,510,532,529,536,536,519,538,533,535,536,532,534,530,546,554,550,544,544,547,550,551,547,542,526,525,527,521,528,524,540,541,528,536,537,543,536,537,532,535,537,529,547,543,517,524,525,520,526,524,526,520,524,526,521,523,562,553,555,563,565,558,560,560,567,555,564,566,549,544,542,552,544,552,542,493,482,476,493,498,494,495,475,504,498,485,484,479,478,484,480,486,482,480,484,474,574,571,579,557,570,559,562,544,563,562,559,560,573,566,563,559,520,511,503,509,486,481,477,484,477,481,478,479,481,476,480,488,477,507,509,527,514,515,522,511,512,510,514,514,558,554,564,558,545,550,563,558,560,567,568,548,555,564,559,500,491,504,498,502,490,495,503,493,491,501,492,505,506,498,536,529,531,534,539,542,536,537,532,541,530,529,540,551,557,545,547,554,544,556,557,561,549,505,503,508,502,512,508,503,496,569,543,567,555,549,546,564,539,550,556,485,491,512,506,493,504,499,500,514,504,501,496,498,487,487,497,495,498,496,491,500,539,529,533,529,524,536,526,519,532,522,476,478,474,479,479,470,480,471,586,574,594,584,582,587,533,533,541,505,516,512,514,516,514,518,515,512,513,512,512,516,514,514,516,510,501,547,551,539,551,550,558,549,560,552,547,549,547,548,551,558,545,546,533,554,508,503,503,578,606,577,590,597,601,588,608,597,597,596,598,606,591,595,549,552,497,496,497,497,506,503,503,489,496,492,486,499,496,498,504,526,517,516,500,514,511,513,515,518,549,542,548,539,541,537,540,542,546,540,524,527,525,516,528,518,522,532,538,540,533,539,538,537,544,539,546,532,542,534,534,519,516,514,513,518,520,507,513,514,518,515,518,508,509,505,508,511,511,506,517,509,504,560,559,561,561,559,555,558,561,555,554,557,562,554,555,549,548,549,565,494,507,508,495,498,510,503,496,488,499,506,510,496,498,504,497,509,509,518,514,517,560,551,555,551,545,555,534,556,548,543,545,550,545,538,465,467,469,470,475,465,475,469,473,455,473,460,467,474,466,481,470,591,587,597,582,585,602,577,545,546,547,543,545,555,544,543,547,575,583,571,559,571,561,569,570,556,563,570,525,482,477,490,476,483,485,485,486,482,478,486,491,489,485,493,488,491,493,495,495,495,495,494,483,494,496,496,570,573,559,568,570,575,565,548,563,558,566,572,560,511,507,518,511,521,507,517,529,508,505,506,514,517,484,484,487,474,478,478,477,486,478,476,485,471,479,478,468,471,476,471,479,466,478,470,476,477,473,482,501,494,502,496,500,491,493,498,542,517,581,570,587,577,575,578,586,574,578,580,595,589,587,523,508,519,524,518,515,518,520,505,517,516,553,544,544,550,553,548,547,546,547,549,554,550,539,481,490,468,464,463,477,461,481,478,467,488,479,546,549,542,542,540,546,546,539,543,543,548,550,539,559,539,539,546,542,536,540,552,539,545,549,533,527,529,526,532,533,575,562,556,555,559,569,549,558,562,560,556,551,495,490,487,502,495,488,493,493,501,485,499,499,487,500,477,494,504,487,488,489,476,486,480,582,558,560,573,564,520,517,518,517,524,517,519,521,519,514,524,521,552,548,540,554,554,547,550,547,532,535,529,527,532,531,533,528,535,538,533,532,532,526,532,524,516,518,520,509,515,507,510,556,554,551,548,558,544,547,544,545,495,498,496,500,492,503,493,491,494,489,484,496,512,493,493,498,492,483,482,483,498,484,491,546,532,536,531,532,540,528,521,532,558,559,553,560,567,568,557,553,504,516,515,512,501,501,501,517,510,502,515,571,578,577,565,575,560,544,577,571,562,572,563,505,498,552,546,555,561,546,545,497,498,496,503,492,491,494,494,498,495,504,486,500,501,501,516,507,512,550,542,542,543,543,546,546,548,547,546,549,547,523,524,520,527,531,526,555,541,537,528,537,530,536,540,536,507,517,510,511,503,505,515,502,504,514,505,503,498,504,495,507,513,562,540,568,558,544,542,544,548,563,567,510,506,495,504,493,485,489,491,507,499,503,510,499,508,501,500,501,504,506,496,507,496,499,555,545,555,556,557,554,562,551,555,564,565,558,512,517,523,516,516,518,528,525,526,482,480,488,484,492,488,460,463,476,460,451,539,541,542,542,543,539,544,538,542,546,547,538,542,541,549,560,552,556,558,543,554,545,545,550,547,553,553,545,554,515,511,507,506,495,500,471,473,468,473,474,473,471,478,473,456,473,464,468,468,469,479,470,477,476,475,474,472,472,473,480,502,496,501,499,501,498,485,490,487,485,478,486,480,483,482,491,484,484,477,480,489,475,479,483,486,486,483,479,486,482,474,480,478,481,486,494,490,497,493,497,516,530,529,525,524,524,530,548,540,562,550,554,560,510,512,504,512,506,504,509,513,511,508,509,515,593,585,569,581,581,573,582,577,571,574,579,579,577,590,586,586,581,589,568,580,591,578,548,548,547,541,536,533,551,550,550,545,479,464,486,483,469,479,472,477,478,467,472,478,474,472,464,533,550,522,563,527,547,533,537,540,550,555,535,551,509,551,570,565,578,570,567,556,574,562,569,565,506,526,515,514,513,548,573,551,549,558,556,541,557,560,564,546,558,569,547,562,561,554,565,499,510,502,506,512,512,485,473,482,480,484,485,482,483,477,446,459,454,438,449,451,455,442,454,451,451,449,440,448,449,452,446,452,473,474,469,477,586,595,589,592,583,584,592,587,591,528,537,538,540,529,537,597,580,574,600,582,526,516,538,533,524,590,586,575,594,590,581,586,562,551,563,554,559,549,564,565,556,563,558,561,552,519,513,522,507,497,500,499,497,497,503,499,485,482,481,485,482,476,478,489,478,487,479,474,483,488,477,465,460,460,461,556,545,562,543,552,559,543,518,509,527,547,558,559,550,554,553,557,546,540,541,540,539,542,486,491,508,508,500,491,496,500,499,500,486,501,496,502,488,503,494,498,486,490,487,493,498,492,496,486,496,495,502,542,538,534,532,523,534,540,530,533,539,544,556,555,557,534,528,530,526,531,530,530,531,536,537,531,546,541,549,554,491,479,496,476,482,486,495,490,486,490,484,447,435,448,527,517,521,522,532,513,513,519,517,521,518,532,530,528,531,526,527,531,528,520,535,531,537,530,537,521,535,533,526,535,528,524,525,567,510,521,530,527,522,527,529,523,529,529,539,524,558,567,553,537,553,563,575,567,568,484,491,488,500,474,486,485,456,514,512,521,523,514,517,520,516,521,518,527,520,527,513,523,527,536,526,530,527,520,529,529,575,577,560,555,560,565,564,567,566,562,554,569,555,571,559,581,515,505,497,497,502,502,499,493,505,499,502,537,538,538,544,537,540,556,568,564,559,554,559,579,565,577,563,574,563,560,572,525,527,539,529,522,537,536,541,539,524,529,533,529,533,527,533,513,520,525,523,522,552,539,555,546,548,544,552,551,535,524,529,531,528,534,533,536,532,525,539,529,524,530,534,558,570,488,482,478,469,486,477,477,477,479,473,482,474,474,468,467,475,470,476,461,469,460,472,466,467,551,564,569,567,569,558,570,569,578,570,558,559,573,571,516,517,510,520,511,515,510,520,511,511,521,522,515,527,517,522,517,510,519,525,531,522,522,518,569,463,480,485,491,479,491,468,482,533,540,537,534,544,548,548,540,540,545,552,552,539,543,544,546,544,541,546,546,540,530,525,529,521,532,532,526,530,558,555,542,533,554,548,537,549,545,540,549,544,500,502,498,499,496,490,494,493,508,501,495,502,502,502,499,507,499,502,494,498,535,519,523,535,535,546,489,489,496,489,491,491,499,491,498,580,538,553,554,547,547,553,556,540,542,547,561,536,508,507,515,545,564,570,587,582,562,575,578,568,583,502,496,491,491,494,489,493,491,497,490,493,492,577,569,565,566,554,572,570,563,507,483,508,481,507,511,509,488,507,488,506,499,506,494,490,445,436,449,441,455,534,535,529,534,541,549,533,544,525,552,538,531,503,501,502,510,500,500,512,496,509,499,498,497,497,502,498,605,600,580,598,584,599,590,585,600,512,511,519,513,520,534,541,545,544,552,541,541,548,529,543,547,543,548,538,546,549,546,545,553,550,549,549,511,522,513,517,523,518,519,508,521,511,517,521,516,497,504,536,541,540,541,543,540,539,531,542,536,539,539,563,553,566,504,504,504,493,506,492,488,501,501,503,509,507,501,497,489,502,500,543,528,538,532,540,540,529,539,536,540,542,560,561,563,560,548,562,561,572,504,504,505,496,496,505,503,499,502,497,532,545,538,544,563,565,550,551,564,524,530,529,524,529,532,538,531,522,529,504,503,500,499,508,510,503,507,508,504,505,481,506,506,494,508,516,510,506,517,516,511,515,516,545,542,537,533,536,539,532,544,539,539,548,546,520,520,524,519,520,520,547,546,549,542,553,542,551,543,530,534,528,535,536,532,533,535,535,534,527,536,535,526,532,532,568,552,501,500,503,502,504,508,497,499,486,502,505,503,507,504,496,506,491,488,476,483,480,481,480,481,485,482,478,474,503,503,494,493,504,496,499,497,490,481,453,466,465,463,452,465,469,455,468,448,467,457,512,512,510,503,512,516,550,531,484,478,484,477,479,462,471,472,477,476,473,476,466,518,538,529,538,524,531,529,536,537,526,536,532,518,533,523,524,527,543,540,539,529,537,537,542,552,549,548,554,554,561,505,496,483,481,489,493,490,490,495,482,480,565,559,554,542,559,559,556,550,568,551,552,562,558,556,551,553,557,508,491,511,497,527,491,502,477,482,477,477,472,474,479,485,472,469,504,503,507,504,499,496,505,504,503,501,505,504,501,502,507,503,569,575,560,553,559,559,562,566,558,561,567,564,572,560,569,562,524,528,516,530,525,522,543,530,522,526,526,528,513,530,527,530,528,491,499,496,504,500,607,577,589,592,579,588,597,526,522,531,530,534,531,519,527,527,518,567,577,579,583,589,578,579,591,580,544,544,546,534,537,539,536,534,528,515,512,510,507,513,508,505,509,513,515,518,513,522,516,512,517,513,515,514,513,509,506,503,504,508,503,504,546,540,544,549,542,547,552,537,540,545,548,539,533,520,510,503,509,510,510,506,530,528,536,527,527,527,520,524,528,534,533,528,524,522,527,527,531,525,523,550,568,550,562,564,569,560,552,549,558,552,553,541,553,565,547,547,502,505,420,443,433,444,430,435,420,441,439,516,524,528,532,514,527,535,559,561,572,576,567,564,552,562,577,569,557,552,542,546,533,546,527,536,547,538,536,536,531,527,535,534,528,547,562,557,568,562,573,564,565,551,565,524,526,523,521,514,519,517,516,523,527,523,521,510,575,588,588,565,538,530,534,505,505,517,506,516,509,510,502,515,507,510,489,501,490,496,493,495,498,496,498,495,504,492,498,495,460,458,468,455,451,446,466,460,546,561,560,555,561,556,565,553,549,559,554,552,552,544,553,553,553,561,554,558,550,559,543,551,550,557,484,464,478,480,490,464,498,496,490,492,489,440,452,445,442,465,462,456,585,574,573,564,571,579,578,562,561,561,529,533,575,563,559,558,565,578,582,576,566,566,576,575,571,569,573,474,487,488,488,493,484,486,483,487,486,478,542,545,550,552,550,537,547,541,537,548,558,567,581,568,558,574,569,559,563,524,523,527,523,532,524,539,528,523,533,553,558,556,572,559,558,506,493,502,505,498,501,492,518,509,507,520,522,498,501,432,438,436,446,435,459,435,447,448,443,444,437,445,492,502,487,494,499,492,503,490,499,495,511,571,559,489,495,490,492,479,478,498,497,500,500,495,495,474,473,468,476,483,482,488,471,477,491,473,592,602,593,598,599,586,569,584,600,582,567,590,600,596,602,551,529,537,535,527,541,533,538,535,544,534,531,549,558,570,563,561,562,568,538,531,527,529,530,533,521,529,531,530,532,536,529,547,535,540,538,543,535,530,540,534,533,530,529,536,542,561,553,565,558,564,554,549,550,557,543,556,550,557,495,502,504,498,488,488,503,498,504,494,482,495,495,511,497,559,547,550,552,537,546,552,554,553,543,560,550,541,548,546,559,555,557,567,547,569,568,547,530,510,478,470,491,467,464,471,475,461,485,469,466,469,470,474,465,556,546,516,542,526,525,551,542,561,555,544,530,555,551,530,520,517,510,509,510,513,515,505,518,546,578,565,570,568,582,572,568,571,529,521,526,523,516,510,533,528,482,489,481,494,483,488,483,489,487,482,484,478,490,485,490,482,485,484,486,456,461,461,460,461,456,466,458,460,455,457,461,460,456,460,456,456,453,469,467,462,458,451,530,533,538,536,525,537,531,526,538,568,569,572,574,570,569,561,564,507,523,497,510,507,517,508,545,557,560,562,554,564,557,553,553,560,553,555,557,553,562,563,557,572,553,547,524,523,518,522,522,521,524,531,525,527,510,502,513,509,513,508,504,510,508,513,505,509,503,511,508,504,508,483,489,484,490,494,487,488,471,483,489,490,484,487,485,498,491,487,485,486,488,490,486,488,483,467,479,479,472,475,492,492,484,477,483,486,486,481,483,487,488,482,488,477,488,485,483,478,481,463,466,465,462,471,466,454,460,457,463,452,453,541,549,535,536,548,569,538,548,545,548,476,476,491,484,558,579,573,578,582,577,582,556,564,593,562,565,579,573,580,572,590,512,521,541,512,522,510,518,507,510,505,507,499,497,498,493,498,498,497,503,504,500,506,495,502,486,467,469,481,464,462,465,463,462,456,463,545,566,575,570,560,561,576,554,575,557,561,564,565,551,501,488,497,511,499,491,483,497,567,527,538,556,531,558,543,560,549,545,541,553,540,549,525,499,510,511,506,508,514,512,511,507,505,499,509,505,520,512,512,501,504,511,514,559,572,572,515,495,486,493,502,490,491,501,485,489,485,487,568,567,550,554,544,553,551,544,543,553,550,557,555,549,548,551,543,551,557,546,547,553,526,526,524,523,531,526,522,526,526,547,537,542,528,532,536,545,541,518,526,516,522,517,513,521,518,519,526,520,520,527,515,518,551,541,542,545,541,542,561,560,565,580,489,486,504,512,508,508,495,516,506,506,475,486,484,483,491,485,484,490,491,487,482,491,495,482,582,564,579,556,565,564,552,569,550,560,565,490,500,488,496,494,500,494,501,493,499,483,494,492,487,480,473,491,485,480,486,488,497,487,489,590,586,609,597,544,549,541,530,528,528,528,532,536,538,531,519,533,545,567,557,523,524,524,525,528,529,527,528,522,523,526,529,528,530,525,524,525,530,565,547,549,560,561,555,558,553,554,535,539,540,531,536,537,536,539,527,535,537,531,535,540,530,528,523,536,530,535,527,534,533,530,527,539,533,527,532,528,541,531,536,535,539,530,541,541,535,540,538,540,488,478,467,469,462,474,474,459,478,553,531,541,539,541,528,543,536,537,538,539,523,538,532,528,548,535,538,532,568,569,581,559,578,566,562,582,575,561,576,571,565,574,574,541,542,543,540,544,543,540,546,539,538,543,541,548,549,548,540,525,535,530,535,512,527,520,523,524,519,526,522,529,523,518,520,526,545,545,554,548,541,543,542,538,542,540,535,541,535,538,540,580,572,516,504,518,515,506,516,510,515,521,469,457,466,459,468,458,469,463,462,463,468,462,482,467,477,477,476,557,571,565,570,575,563,563,559,577,491,486,498,508,475,464,471,468,472,466,465,466,548,545,557,542,562,544,563,556,547,565,556,549,556,547,505,506,500,497,491,514,505,502,492,476,477,479,478,478,481,476,472,476,478,483,481,473,474,484,481,477,472,491,481,447,451,445,447,445,448,446,532,550,547,552,546,550,559,543,555,548,553,542,548,541,543,531,503,583,539,531,530,543,535,536,545,540,530,546,519,524,516,523,521,519,548,552,553,540,545,550,555,543,546,502,502,503,502,512,503,500,496,496,535,531,541,536,535,543,536,536,527,524,539,538,532,535,529,539,535,536,549,528,537,547,538,542,545,543,534,547,546,528,542,537,534,541,544,548,540,534,544,535,550,544,543,535,539,479,485,465,482,479,470,486,488,473,507,485,498,514,498,501,516,504,510,504,558,560,567,562,559,562,563,492,489,487,495,495,485,497,488,498,484,494,488,490,473,487,590,597,607,597,527,521,523,513,555,558,556,555,558,552,559,566,555,556,553,554,527,539,533,519,522,523,511,520,521,522,506,487,496,500,490,499,495,497,498,501,496,452,470,459,456,463,457,463,468,504,494,500,500,503,493,506,501,514,509,492,498,503,495,502,495,533,540,544,549,547,530,543,540,543,544,546,515,506,505,543,538,542,543,545,537,541,544,547,563,560,502,511,502,510,510,505,520,501,504,513,518,531,526,523,521,519,526,535,524,514,529,529,534,528,531,529,526,534,529,567,565,575,571,569,574,558,571,569,561,563,572,554,570,512,519,504,507,500,505,516,496,507,495,503,509,536,535,530,531,519,528,522,537,523,527,537,533,538,537,536,538,545,545,545,544,551,548,554,555,530,546,552,496,490,498,495,502,503,497,489,479,489,484,487,491,465,477,467,476,474,478,473,475,480,481,470,479,476,478,478,492,490,491,494,500,494,491,481,491,489,480,487,484,478,481,483,480,475,480,469,485,476,478,484,488,490,475,476,481,481,474,470,477,476,475,479,469,475,463,471,481,474,467,488,472,547,555,546,505,500,500,499,493,489,510,497,492,484,487,490,484,490,491,488,485,482,490,485,491,483,464,463,478,468,470,469,456,474,465,467,481,467,441,441,447,469,475,489,480,487,484,476,478,539,534,543,545,539,538,546,542,557,563,574,567,551,550,564,574,564,565,501,489,504,494,493,494,493,506,496,487,505,493,511,491,489,490,496,560,561,563,563,563,572,563,572,566,522,509,516,516,522,509,504,500,499,498,476,463,473,467,470,469,451,451,453,452,462,454,459,448,452,463,457,460,462,466,458,468,456,556,544,558,544,562,552,554,565,569,557,470,480,484,476,478,473,460,456,476,480,520,530,535,521,530,529,533,520,530,538,534,532,532,536,536,538,535,539,536,531,535,547,542,534,534,547,540,557,546,548,554,557,551,546,538,531,526,530,532,529,532,531,531,531,528,527,531,522,530,525,555,560,561,558,551,562,548,547,558,567,556,564,566,553,543,545,548,547,557,487,499,502,496,490,506,505,494,493,489,511,505,508,515,512,520,550,561,543,547,555,539,566,491,481,479,478,477,470,564,552,552,546,567,564,563,565,553,568,557,563,565,516,508,512,504,504,503,493,498,507,498,502,503,447,466,462,461,457,460,464,458,454,462,473,506,507,498,508,503,505,494,498,559,555,553,558,567,559,496,493,495,514,502,519,514,514,512,528,510,512,519,517,521,522,511,525,519,513,513,545,539,550,546,542,542,536,482,480,482,489,486,481,482,471,569,552,552,566,557,554,560,548,553,562,559,552,554,558,556,564,574,566,549,559,555,560,556,512,513,511,500,501,497,501,499,511,517,515,510,514,515,514,515,511,521,510,543,557,545,543,553,553,543,525,513,526,523,506,518,522,519,532,527,526,528,525,511,519,525,519,592,571,592,583,596,587,586,534,532,544,539,531,537,529,539,534,532,537,523,536,531,533,525,525,527,530,526,527,542,537,546,527,539,548,544,546,535,540,543,545,547,537,543,538,535,522,526,533,530,540,536,531,537,534,521,516,558,563,568,548,556,561,563,563,516,511,499,481,478,471,478,482,445,462,442,444,443,442,453,459,429,546,543,532,549,548,531,545,537,491,498,511,502,484,484,504,502,493,548,554,563,560,509,507,488,496,508,507,484,505,504,502,500,500,495,439,443,449,434,447,439,450,448,441,444,449,480,490,500,484,486,501,494,491,498,482,503,486,479,502,540,526,535,550,539,538,529,534,532,540,537,541,537,483,506,505,498,498,509,507,499,489,510,504,514,493,492,495,505,504,560,556,550,562,559,561,566,568,563,563,501,520,487,603,573,580,594,583,590,588,539,548,542,551,541,564,547,491,495,493,489,498,492,489,501,498,505,496,491,490,492,485,486,485,488,488,490,485,492,488,557,533,556,554,561,484,482,480,493,479,472,485,496,486,479,485,474,505,506,500,498,502,500,513,502,494,495,509,490,504,504,521,535,536,537,516,518,522,510,515,508,501,505,504,509,504,521,511,508,514,514,502,502,547,551,514,510,516,509,515,500,502,520,501,509,520,498,511,564,573,563,513,509,499,502,507,510,507,440,433,444,445,442,442,501,500,549,552,553,553,565,563,548,563,508,494,499,495,499,503,494,509,511,516,518,515,513,557,555,565,555,554,566,554,558,542,557,554,481,486,495,495,481,491,498,503,484,488,476,477,488,478,472,487,440,457,440,440,437,439,428,447,441,440,440,446,444,523,531,515,522,535,528,524,522,525,530,529,535,545,550,546,547,554,550,483,477,476,491,497,497,478,495,493,503,494,504,486,509,483,459,461,453,444,469,447,447,450,442,453,464,575,581,580,565,580,569,557,544,555,549,554,546,551,548,550,544,546,549,542,490,492,506,494,507,494,501,512,503,499,498,496,502,502,508,500,505,498,503,501,497,504,494,502,495,493,502,500,505,519,548,552,556,553,551,546,554,539,556,545,564,549,539,542,555,550,554,477,480,488,499,483,479,489,477,486,480,484,484,497,540,534,533,531,536,530,543,534,544,538,543,544,550,538,535,544,535,545,542,545,543,542,534,539,547,555,533,543,544,555,548,555,508,492,507,488,512,498,495,504,507,502,492,510,514,493,441,432,445,446,452,468,459,576,560,569,566,568,562,564,554,563,568,574,556,519,502,471,462,462,461,465,470,468,462,465,458,462,461,455,462,461,469,490,486,484,487,483,489,488,536,534,531,536,537,538,550,536,539,570,547,550,562,550,561,529,554,541,482,487,475,476,470,473,467,464,463,478,468,470,472,475,572,582,601,576,585,561,572,590,578,572,574,584,576,562,573,577,483,533,544,534,547,539,537,540,553,541,540,537,561,539,547,538,551,547,544,548,549,555,549,542,541,542,529,514,523,507,516,517,520,517,520,551,548,552,551,544,550,578,567,569,568,563,573,570,583,570,570,520,533,530,526,531,530,511,512,502,513,505,513,511,504,507,505,505,508,508,491,474,485,483,477,481,485,481,482,494,496,501,504,493,495,497,509,498,503,505,504,496,497,492,493,571,568,567,569,562,575,580,567,565,570,573,525,540,526,530,532,529,540,524,515,525,514,505,480,474,478,485,476,480,483,472,477,478,476,482,475,488,478,475,485,488,481,474,508,506,508,503,501,509,503,504,497,496,542,549,552,551,552,558,552,546,545,546,528,593,582,592,593,592,547,538,536,537,542,537,524,539,514,519,512,513,513,506,511,579,544,495,504,490,502,497,491,494,462,451,462,455,549,558,557,551,550,548,543,542,549,546,548,567,569,561,564,530,533,526,542,527,528,529,518,526,519,526,522,528,532,520,519,523,524,526,527,528,528,534,533,533,540,535,549,537,549,540,512,507,498,507,516,508,509,502,500,512,509,513,502,506,516,514,518,515,519,513,559,556,561,566,560,562,565,554,557,565,562,553,560,554,571,553,563,561,506,503,504,499,488,511,506,518,496,494,513,487,482,482,470,481,477,494,496,488,486,485,463,473,482,471,473,463,473,559,574,567,563,554,551,562,560,542,557,555,566,553,569,558,571,518,512,535,518,535,511,509,505,511,505,504,483,485,517,498,509,510,544,539,542,485,477,522,529,535,530,525,524,524,531,524,527,526,527,522,533,532,526,523,536,540,537,538,541,541,534,496,510,575,561,574,563,569,588,561,591,572,581,562,574,480,487,478,510,512,523,520,524,519,516,529,524,522,526,529,526,516,517,515,527,525,524,525,520,527,524,522,518,518,524,522,520,519,531,538,537,539,539,525,541,535,535,555,549,544,544,539,538,546,554,552,545,551,517,524,515,519,542,549,551,556,547,549,542,560,557,540,537,544,545,542,574,570,571,576,578,596,583,585,567,571,576,576,582,575,581,581,583,576,510,492,506,500,502,495,493,498,494,497,497,497,491,491,502,499,500,592,551,572,564,566,554,571,565,564,564,550,571,565,565,474,483,493,470,485,470,467,478,472,467,465,471,468,571,553,556,559,551,562,476,497,471,483,486,482,470,497,502,536,538,537,540,535,535,536,538,532,541,543,540,535,537,507,516,509,514,516,513,507,502,510,511,528,524,521,509,523,528,521,525,528,595,583,573,579,576,586,571,584,579,586,574,571,574,569,585,582,530,537,530,538,575,547,556,556,556,564,562,557,566,558,558,551,548,519,527,524,524,533,544,519,531,535,526,533,526,542,538,462,566,563,542,569,558,564,563,561,580,559,578,574,578,465,478,468,484,481,480,472,468,474,477,496,465,474,481,461,541,547,543,535,537,547,541,543,541,546,547,553,551,504,514,504,491,483,483,477,483,467,466,473,484,490,484,487,486,484,485,489,486,479,483,505,495,502,509,504,508,497,503,500,527,527,533,532,525,526,524,526,530,524,522,537,528,520,514,520,513,519,518,520,518,530,523,527,519,519,542,544,534,538,542,536,530,532,545,554,551,546,550,551,558,543,549,556,554,561,487,487,509,506,496,486,500,488,466,472,464,466,464,469,475,471,468,473,462,471,474,549,544,546,542,543,546,550,541,550,556,552,538,547,566,548,549,556,518,518,519,514,517,515,510,525,544,532,539,537,541,543,528,553,560,554,560,552,563,554,546,527,533,527,528,519,530,517,528,524,518,524,559,559,551,558,543,544,565,554,555,554,554,565,562,555,549,545,534,541,535,530,532,537,535,532,537,533,528,522,532,526,524,525,531,527,526,524,524,530,529,542,539,537,546,536,539,542,546,536,550,536,544,542,540,532,531,534,538,525,529,535,535,531,529,531,532,529,533,527,534,527,553,558,554,557,488,495,500,505,502,496,500,500,505,509,497,496,497,505,511,502,506,503,501,507,497,498,503,499,498,498,506,504,496,508,508,501,549,546,544,547,549,547,546,536,542,548,546,553,483,479,479,470,468,463,457,467,472,469,470,465,459,464,465,581,580,599,579,597,539,545,547,546,557,543,535,542,554,543,554,543,545,576,563,492,505,497,502,503,443,449,450,441,447,440,454,449,445,443,433,443,441,439,446,517,531,532,523,522,519,525,520,518,516,519,510,529,528,533,526,532,535,535,528,565,556,555,570,525,522,529,520,530,523,537,531,521,531,537,525,548,563,564,559,554,553,560,554,548,565,565,497,516,521,507,509,520,529,510,522,506,511,505,463,464,467,466,464,460,457,463,461,453,457,465,472,464,461,472,476,478,528,548,567,547,544,552,545,542,546,516,509,511,503,511,506,515,513,518,513,519,517,526,515,506,516,510,510,505,516,516,468,475,477,465,473,467,456,471,458,470,460,471,534,517,539,538,543,539,534,543,547,526,539,550,548,528,544,539,533,523,524,523,524,526,526,523,525,518,523,522,521,519,536,539,543,537,532,501,504,491,488,509,505,496,511,512,510,567,576,563,551,570,569,562,560,542,562,574,583,571,563,551,560,555,547,493,496,515,490,504,496,489,503,510,591,575,587,581,584,587,585,584,588,574,579,597,578,565,589,576,599,553,536,543,501,490,504,492,489,508,497,489,499,495,489,499,495,502,505,502,507,510,501,511,497,530,527,534,525,537,537,540,542,535,541,533,537,534,530,480,478,482,483,481,476,483,471,477,476,479,478,489,483,550,562,564,546,552,559,561,566,570,567,568,571,569,559,571,567,558,557,520,526,521,523,519,521,528,517,514,517,525,528,522,511,523,478,488,474,485,478,480,481,477,474,487,476,483,480,487,484,485,489,571,589,596,589,591,600,592,593,555,546,540,542,537,540,546,521,521,523,522,524,523,527,525,523,522,525,522,535,539,531,538,536,518,517,549,540,544,541,548,543,546,545,549,577,566,565,577,582,530,538,528,535,528,530,528,536,530,517,503,499,506,502,504,505,510,502,506,504,504,502,499,509,500,495,504,504,497,503,497,485,487,474,477,480,486,480,472,460,478,465,461,466,468,477,466,555,550,549,566,580,560,567,567,571,577,566,567,561,519,518,501,522,511,504,513,513,513,473,480,475,473,473,478,466,474,475,474,472,471,483,481,478,483,470,474,471,479,472,471,484,478,479,481,485,495,489,484,489,535,570,560,555,543,577,559,584,532,521,523,519,518,521,520,515,527,522,519,527,521,518,550,557,551,554,554,552,556,551,550,557,562,534,552,536,537,530,533,530,537,530,531,529,533,537,536,530,537,532,528,536,528,557,559,567,552,568,559,565,568,552,563,549,562,571,560,520,519,512,516,515,523,515,513,527,513,522,509,521,507,525,532,480,484,475,478,492,480,471,480,478,475,475,491,481,474,474,443,454,460,443,446,451,445,446,446,449,462,458,564,556,563,549,566,541,560,555,550,556,561,557,558,557,564,548,554,541,544,561,501,498,500,492,503,493,501,504,493,490,492,496,494,500,498,499,495,497,491,486,490,490,497,487,499,557,570,578,571,572,574,580,569,493,493,493,480,496,504,493,501,497,499,503,508,486,424,434,435,442,451,436,440,511,517,521,518,521,521,515,518,550,548,542,543,552,542,538,543,551,549,489,500,502,503,499,508,496,504,504,504,495,496,497,501,501,502,508,503,503,508,506,513,512,545,539,541,539,538,542,563,558,573,564,560,558,564,558,566,563,565,573,523,524,534,523,527,536,533,526,521,529,536,532,575,560,551,571,561,572,570,559,571,563,489,490,490,496,504,499,489,505,561,571,563,561,568,561,561,570,568,562,573,570,571,556,565,579,559,566,505,511,523,506,521,523,531,513,517,484,484,475,494,485,487,480,500,488,484,493,484,491,490,553,548,562,582,576,558,569,562,553,560,569,563,568,569,571,568,493,513,507,514,511,458,468,470,459,462,467,457,461,465,461,466,459,465,461,508,489,494,492,496,505,489,499,497,497,504,493,491,496,503,494,489,490,491,499,496,491,496,546,542,553,553,541,539,533,559,553,552,543,520,490,503,503,519,507,503,487,513,509,510,515,457,453,460,459,462,459,454,463,459,459,462,492,485,488,491,476,475,475,486,482,470,483,495,481,490,580,574,568,557,578,575,570,570,582,574,549,556,576,556,563,561,569,576,502,514,505,513,493,507,507,510,519,517,522,525,515,518,511,523,524,522,557,559,567,548,560,550,565,499,501,504,503,505,497,497,505,505,511,500,496,505,492,493,498,503,539,543,540,538,537,532,531,533,537,542,531,542,535,531,536,531,538,535,574,557,546,560,561,559,484,476,463,486,492,471,501,495,487,486,471,483,474,544,557,550,550,544,544,543,550,538,512,500,490,600,590,590,600,587,596,608,512,521,518,517,518,519,510,536,537,537,541,542,537,541,532,531,535,548,534,536,528,510,518,506,511,509,510,508,508,515,514,516,514,510,508,515,552,542,550,539,554,554,536,520,536,524,534,532,531,532,527,530,533,529,521,520,517,517,518,519,512,515,525,520,514,516,527,526,532,530,531,528,522,535,532,523,553,545,558,558,549,565,554,556,556,549,548,554,562,547,517,517,525,532,517,527,479,478,478,466,546,548,547,554,468,480,468,473,484,485,472,473,481,481,483,561,557,554,555,546,548,558,558,555,550,555,552,543,556,554,559,556,545,547,545,556,508,498,507,494,488,511,495,500,504,497,487,499,520,530,517,517,516,511,525,517,516,507,512,516,550,546,548,543,548,542,544,539,542,544,545,508,512,513,511,521,521,517,508,523,520,526,519,516,520,518,530,575,586,578,592,581,582,594,583,553,561,551,542,544,543,549,543,553,545,548,541,546,551,551,542,545,545,503,497,507,500,499,500,494,499,501,492,498,516,523,514,567,577,565,575,566,574,565,563,568,574,563,559,579,566,509,534,517,511,523,470,477,485,483,479,478,482,479,481,479,481,491,491,501,491,494,490,497,541,505,518,521,522,512,521,478,485,484,483,481,472,474,489,485,479,482,467,472,471,471,469,471,468,423,555,546,547,551,542,557,549,559,555,545,545,540,547,541,554,552,552,559,550,508,517,506,495,484,467,478,483,479,477,478,476,478,476,484,476,479,474,481,478,478,481,472,474,472,481,478,474,480,434,435,442,439,440,521,534,527,537,527,518,533,547,549,543,554,553,560,561,558,557,557,495,478,492,490,495,497,498,498,487,486,502,499,498,503,495,483,496,469,486,485,595,600,597,594,590,593,598,601,600,603,594,592,590,587,613,596,588,586,598,602,589,598,554,553,550,549,537,526,533,532,531,527,525,523,534,527,536,529,526,529,522,520,530,527,525,522,518,523,519,523,521,526,545,540,542,542,549,541,552,549,545,543,521,521,524,521,523,523,532,525,578,553,569,549,561,512,514,515,501,507,509,500,513,518,523,506,505,517,517,529,515,517,515,593,582,588,582,589,568,575,578,572,581,590,570,571,530,535,536,532,530,531,538,529,532,528,531,534,525,533,533,533,534,539,530,562,562,553,563,562,554,571,555,558,553,544,534,536,541,535,532,528,535,541,537,530,537,535,539,530,535,536,535,532,536,533,564,554,564,557,558,561,562,562,567,525,523,508,529,523,517,523,542,524,535,530,532,520,515,521,527,494,492,498,458,455,455,456,458,453,449,463,459,453,460,478,467,477,470,469,467,471,467,469,477,477,475,472,558,564,568,559,582,577,560,557,558,556,576,573,569,577,558,514,522,508,512,507,507,522,517,503,512,507,508,497,499,507,503,504,506,503,511,503,511,502,505,546,536,552,547,552,550,549,534,545,544,540,540,559,545,558,562,558,562,541,544,550,543,558,552,503,489,495,484,549,561,551,555,558,554,558,547,554,554,544,550,553,545,547,557,544,539,549,545,555,552,544,523,532,559,563,549,546,555,554,556,513,512,514,506,520,527,485,491,466,479,482,472,479,466,479,474,487,480,479,473,472,469,505,499,512,511,510,510,507,510,504,549,553,568,553,547,562,562,558,556,569,558,504,521,528,522,516,512,517,513,498,492,499,507,500,495,502,491,499,498,498,497,495,469,486,481,480,485,478,486,490,477,475,480,485,478,443,460,464,458,456,459,476,487,480,483,471,481,488,482,484,482,478,486,482,492,523,532,521,524,519,526,527,555,552,556,554,556,555,553,554,561,559,558,494,500,490,495,482,508,479,507,498,466,463,478,465,469,469,467,464,470,461,473,562,547,550,548,554,552,561,547,562,543,553,554,560,553,546,542,550,535,543,491,510,511,499,486,506,493,474,481,477,481,482,476,486,479,484,480,494,494,489,491,489,495,493,485,492,490,494,492,491,488,493,529,531,520,524,532,554,546,557,563,553,561,563,549,542,546,557,545,503,516,513,516,512,509,509,506,524,511,508,511,522,542,547,539,539,543,532,532,537,538,532,542,560,555,549,562,554,566,550,556,548,570,553,565,568,557,510,502,505,508,510,511,515,526,531,537,525,525,530,530,521,536,526,526,538,522,517,518,522,531,533,526,536,532,532,536,533,533,540,538,532,530,532,528,538,540,537,547,553,538,470,470,484,495,491,488,490,476,505,492,492,499,481,549,545,548,552,542,538,546,554,541,552,518,521,508,512,522,518,515,509,519,515,512,511,513,515,520,514,514,530,522,517,524,537,530,532,520,524,526,539,527,521,526,515,510,510,516,510,516,508,519,513,512,518,518,509,509,516,512,548,553,550,543,561,551,502,499,504,504,494,599,603,607,603,604,592,597,602,601,603,593,589,594,515,517,510,529,520,514,546,559,561,554,551,555,547,515,496,513,497,502,499,509,508,492,500,494,486,535,540,542,548,549,550,553,542,543,548,544,556,550,546,551,552,549,543,547,529,534,567,575,578,567,571,551,553,554,572,582,555,575,516,520,527,525,524,537,533,536,537,530,536,529,543,562,560,560,550,539,569,549,563,554,526,512,520,506,503,563,506,492,494,493,486,498,488,492,495,485,503,505,486,503,507,506,566,572,582,560,573,559,576,583,556,586,578,517,531,530,526,526,527,523,536,522,500,503,493,456,458,468,466,466,458,462,455,452,455,449,460,499,504,556,553,548,556,561,546,564,544,545,543,545,547,501,487,494,502,473,492,494,488,502,492,492,485,475,481,479,472,483,477,481,477,472,490,483,555,552,555,547,554,556,553,507,517,509,511,505,512,512,508,471,474,474,474,468,469,471,476,471,477,458,468,460,452,472,533,543,543,544,504,498,468,473,466,471,468,463,467,464,473,464,466,443,453,444,435,448,446,441,449,444,547,553,551,548,554,559,562,563,557,547,543,549,557,553,543,545,562,557,560,560,558,556,557,558,552,553,562,546,558,536,553,554,517,504,506,515,506,518,508,469,464,473,475,468,475,470,461,466,468,464,472,474,473,462,463,468,457,460,467,469,461,473,457,464,463,464,540,538,544,535,550,478,477,487,472,460,466,463,468,469,473,470,473,467,485,471,462,471,588,581,567,575,582,582,562,566,571,560,494,491,500,495,482,487,479,495,487,480,480,552,566,555,551,544,553,542,552,548,553,539,547,532,558,554,549,560,553,557,552,551,524,522,512,508,516,513,516,520,519,489,477,491,493,486,480,484,500,488,502,492,489,491,487,491,496,486,489,498,489,497,487,488,481,476,490,490,478,488,484,482,487,486,477,469,479,478,474,478,478,480,475,513,504,507,519,524,516,512,509,502,512,518,511,510,561,559,553,568,568,556,561,564,565,552,565,562,565,567,568,496,506,506,494,500,494,497,494,500,503,498,496,488,495,494,501,489,492,490,497,498,485,484,488,491,486,496,497,489,488,489,565,564,552,551,565,555,504,499,493,498,508,513,496,500,509,509,470,463,471,468,472,473,470,465,465,463,462,466,464,466,467,465,464,465,462,437,442,437,443,445,437,451,449,442,452,443,449,442,436,555,550,549,544,540,536,551,547,547,550,550,544,517,521,516,508,512,512,543,536,546,546,550,541,545,554,555,557,546,548,553,548,548,552,549,539,539,556,556,553,547,549,483,465,466,467,475,476,461,468,475,476,459,508,522,514,522,520,519,512,509,511,526,525,539,530,530,533,533,528,559,574,565,569,573,571,580,566,570,552,546,546,546,550,558,550,549,545,545,542,507,508,505,496,498,499,490,508,498,492,498,492,495,492,510,509,515,517,516,504,508,511,514,541,547,536,528,541,543,500,496,494,507,490,500,494,497,501,556,554,555,514,519,512,521,523,520,562,560,547,560,549,559,561,557,567,564,560,547,549,544,556,560,556,557,550,556,545,549,550,546,549,558,544,542,550,553,564,475,485,494,494,487,502,494,483,497,491,460,464,460,460,448,466,460,457,463,469,452,465,456,464,452,463,461,465,463,536,536,540,538,540,528,540,547,532,536,537,543,546,536,543,545,547,548,552,542,555,540,559,556,520,516,523,522,509,508,505,471,457,457,453,463,462,453,445,449,452,442,449,451,439,448,449,440,547,537,556,558,551,535,544,549,555,543,570,558,568,504,504,504,508,542,541,541,538,539,535,531,536,547,538,555,546,539,542,545,529,538,539,541,541,541,536,546,549,553,530,537,529,547,537,519,520,522,524,522,525,521,519,556,559,555,555,557,529,525,516,524,517,522,518,535,522,527,534,518,513,522,522,530,520,516,504,511,502,504,508,510,508,513,503,505,510,507,500,498,505,507,506,502,499,504,504,497,498,499,507,498,496,496,499,501,506,506,497,503,503,499,479,484,487,477,483,483,472,490,487,476,482,481,480,485,482,456,470,469,468,457,466,465,464,465,466,466,468,474,471,466,458,460,456,462,447,464,457,461,455,451,456,465,455,458,592,583,589,571,588,587,583,598,585,599,579,583,508,507,510,514,508,517,517,500,551,554,563,549,550,552,553,541,545,563,545,548,548,544,542,497,508,484,511,449,467,457,460,512,506,505,503,509,504,504,504,503,498,503,500,506,513,509,502,514,516,541,533,530,538,533,544,539,543,531,539,536,535,483,483,579,559,578,570,559,553,559,494,480,502,482,472,476,495,493,471,464,471,472,455,469,455,460,461,462,466,563,543,558,544,543,558,540,504,553,559,551,540,551,542,528,547,544,554,554,535,554,560,550,551,556,559,510,509,498,504,511,494,512,494,506,506,504,511,509,573,577,553,556,555,551,546,553,564,553,562,558,582,522,529,520,517,527,525,524,524,523,524,514,505,507,513,500,505,510,498,508,486,483,477,478,487,476,484,474,490,482,482,480,484,502,494,498,501,499,498,497,497,492,517,513,507,510,509,513,512,519,517,518,519,510,516,509,516,544,536,539,541,550,544,545,550,545,543,548,542,540,541,535,542,535,538,541,547,540,545,544,542,536,547,554,495,494,483,481,495,492,558,560,550,560,572,567,554,557,558,565,559,554,559,550,561,558,502,500,493,477,498,512,506,479,484,451,437,442,438,444,429,445,457,441,445,446,502,497,504,504,509,504,498,499,505,497,551,550,554,549,563,558,562,551,569,548,548,499,505,496,499,499,490,515,513,516,512,513,545,552,480,493,506,502,509,502,504,501,499,492,500,495,497,497,496,522,509,504,517,500,507,494,505,508,506,507,502,509,506,515,558,555,559,555,501,513,495,503,484,497,452,453,456,456,457,451,456,458,458,453,518,555,557,560,561,557,557,562,556,574,550,560,547,552,554,569,550,491,497,493,490,492,495,502,499,489,502,538,551,554,554,554,553,533,536,541,541,545,537,539,535,535,536,537,531,535,539,539,509,511,514,526,509,515,511,508,567,562,562,567,559,512,531,504,522,525,519,519,514,507,520,507,514,525,517,499,506,502,500,505,500,485,490,481,482,477,450,460,456,458,457,460,453,453,449,455,447,442,458,464,461,463,457,452,455,466,446,543,540,556,495,505,504,511,508,498,507,502,500,499,501,540,551,544,562,568,556,569,547,512,509,517,525,525,521,515,484,495,488,494,487,491,493,496,494,490,487,492,494,484,487,476,473,486,481,479,477,477,489,481,479,481,487,483,479,482,483,483,479,482,488,488,487,497,491,497,497,485,497,489,501,488,493,491,528,532,531,537,549,554,563,561,557,565,553,543,548,477,492,473,470,476,466,488,543,540,541,540,547,551,547,544,543,546,539,537,547,550,538,540,545,533,542,537,540,542,537,506,498,506,502,506,498,507,509,496,503,506,511,508,507,512,557,554,484,505,502,504,503,499,498,507,501,502,501,540,546,539,537,544,545,533,557,566,521,521,520,519,526,526,526,519,519,525,528,543,542,535,527,542,536,529,531,507,500,503,503,507,511,512,505,507,503,501,538,513,502,522,513,509,514,512,511,456,460,459,464,469,469,505,496,487,500,490,488,487,489,533,530,525,528,527,520,532,524,529,528,523,533,527,514,526,516,520,519,526,522,529,525,544,536,545,538,534,536,541,543,510,517,516,502,518,520,515,512,525,518,517,520,510,503,509,504,505,513,503,506,518,524,531,527,531,533,529,531,525,527,533,526,532,531,567,565,564,557,568,575,567,565,563,568,501,508,515,518,509,514,509,511,504,513,558,551,548,548,554,543,543,554,545,554,553,559,558,556,551,553,550,548,545,544,560,539,542,547,539,550,546,539,552,551,513,507,523,511,510,511,512,508,561,521,508,494,492,486,491,516,489,508,515,501,498,504,504,452,454,451,458,460,469,452,456,452,456,466,459,457,473,460,448,449,471,457,461,518,519,516,509,505,514,510,518,518,516,519,562,569,564,558,562,559,566,557,567,562,491,490,501,495,492,499,484,496,495,456,469,469,465,455,460,462,465,462,458,457,467,457,470,466,461,462,540,542,524,532,541,537,545,537,530,539,538,540,544,545,547,537,542,558,553,549,551,547,555,552,556,562,559,557,562,570,558,561,553,558,564,545,551,560,572,511,532,524,526,524,528,508,526,536,526,536,515,520,523,513,527,515,538,523,524,504,512,514,506,511,486,495,486,489,486,490,488,486,479,486,497,488,484,488,488,482,492,491,491,499,497,496,491,502,499,487,494,470,469,459,463,449,456,459,464,459,446,560,558,558,574,563,468,466,472,476,460,470,475,461,466,453,479,469,481,550,526,538,538,526,527,544,534,569,561,579,569,574,577,570,574,569,562,570,566,539,552,555,541,553,548,545,483,505,491,498,497,466,459,460,460,462,455,452,459,452,455,455,450,455,453,455,455,462,457,472,486,499,485,473,484,475,476,473,486,479,481,469,536,571,560,557,555,548,521,523,518,523,527,529,532,519,523,524,544,537,552,535,546,550,544,543,549,536,494,503,515,521,516,549,554,555,548,550,558,545,548,548,557,556,546,546,540,526,541,552,544,543,534,490,490,494,499,495,496,500,501,499,495,491,491,488,502,496,489,549,523,540,531,527,537,520,542,528,539,546,527,535,475,480,477,485,472,478,481,478,475,487,531,571,553,569,564,565,556,559,550,552,581,546,557,553,501,500,503,491,557,545,548,552,552,556,562,547,548,549,512,503,501,495,494,479,517,493,494,510,505,525,482,475,487,479,482,479,469,481,480,547,556,549,564,550,558,554,565,562,509,520,522,515,516,517,514,508,484,483,485,489,488,494,491,489,497,492,494,487,485,491,492,491,515,510,526,566,566,560,575,567,571,564,565,569,541,515,515,506,510,526,521,525,523,488,482,483,480,487,484,489,486,485,489,482,486,495,492,495,494,537,539,538,536,541,544,539,534,545,574,562,533,551,555,553,557,558,553,553,561,557,552,537,531,531,529,535,532,535,539,532,532,535,532,537,531,536,539,559,561,568,561,559,564,571,559,563,519,530,517,521,521,518,534,526,516,528,504,500,498,483,486,474,479,481,479,499,490,490,490,503,590,553,568,532,560,552,566,559,579,572,489,511,481,501,507,527,607,587,606,591,598,590,601,588,584,601,541,544,531,531,542,543,541,538,542,540,548,536,537,537,564,566,566,573,560,559,568,560,555,573,501,504,513,504,460,545,549,547,542,544,546,533,520,524,524,527,531,522,533,523,528,522,524,530,528,522,522,526,522,530,531,560,551,552,548,550,550,555,501,505,504,497,495,497,494,502,502,505,502,495,491,511,513,517,514,513,516,509,519,508,513,508,514,509,513,519,509,511,514,573,552,524,511,508,512,512,511,510,515,513,511,502,482,484,476,483,472,463,466,462,458,459,455,458,460,467,460,457,453,460,459,453,461,452,468,460,457,457,461,460,454,455,456,452,462,451,463,458,445,457,467,453,457,606,587,588,584,588,586,584,575,575,539,530,536,524,530,534,533,531,517,530,524,528,516,518,511,539,542,547,539,550,549,545,505,534,531,533,545,530,523,523,518,512,521,517,516,511,533,532,532,533,528,534,541,530,533,536,530,534,531,527,537,546,558,468,479,472,482,482,488,477,476,479,470,484,545,549,543,539,540,550,548,543,537,548,541,550,553,541,534,541,548,547,533,538,549,545,538,541,541,556,512,507,519,561,554,569,574,572,557,471,476,483,483,478,483,471,488,475,476,472,470,478,473,483,480,482,476,467,465,468,472,473,479,469,464,472,472,469,469,469,465,469,468,471,478,560,555,566,578,568,563,580,583,556,573,583,583,556,580,572,569,567,565,579,576,576,586,577,489,501,491,504,501,503,494,500,498,501,505,508,484,577,579,582,584,592,588,543,541,549,548,546,495,505,501,490,497,501,493,493,505,507,501,501,510,507,502,517,535,522,537,539,529,535,530,527,540,532,529,529,527,521,523,526,520,547,557,562,548,567,553,563,557,557,542,526,529,530,527,514,526,518,526,525,553,537,547,550,554,547,545,543,548,546,548,546,527,524,521,523,525,525,559,561,565,506,499,504,508,506,513,506,513,518,526,516,522,589,572,581,576,582,578,585,585,580,590,582,592,584,574,554,549,542,496,499,493,487,489,496,496,493,495,493,483,488,487,495,489,490,477,481,467,550,537,557,551,563,520,506,512,499,503,506,503,510,515,513,513,558,573,563,570,568,559,570,563,572,560,497,492,497,503,501,504,499,499,499,487,505,515,508,494,505,465,454,456,459,465,448,459,466,462,493,498,505,494,495,490,496,492,502,516,522,515,514,513,516,514,510,517,513,516,515,517,518,557,554,545,554,562,554,557,560,555,551,557,561,548,571,567,556,559,551,569,559,557,558,559,554,554,551,520,513,515,518,513,519,521,517,503,499,492,487,494,496,488,496,503,515,507,544,548,536,537,533,534,546,539,510,504,500,508,497,495,500,541,561,550,574,556,572,499,493,500,512,503,504,508,493,498,485,508,513,510,469,469,471,463,479,473,478,471,466,463,548,545,520,524,519,523,523,523,525,541,538,533,542,554,535,531,538,521,541,526,534,535,541,483,484,487,462,486,476,487,470,484,522,527,523,531,533,525,529,533,531,531,528,533,535,528,527,524,529,524,531,541,541,533,538,541,542,539,544,544,546,548,551,550,551,533,513,516,515,502,511,514,508,506,506,505,509,510,506,510,509,511,548,537,543,545,542,558,551,545,531,540,549,548,547,545,547,535,545,482,492,485,493,558,548,536,555,546,503,510,509,514,510,510,514,510,507,511,504,508,508,507,515,515,513,514,515,511,494,509,512,506,534,532,538,531,536,543,541,539,576,556,568,560,562,560,493,511,504,488,509,508,515,506,515,517,487,481,494,499,496,510,506,511,481,470,470,472,474,476,480,480,471,476,477,547,545,546,555,560,555,558,553,564,487,513,480,486,502,496,501,496,497,516,507,471,466,473,469,472,471,471,467,473,470,463,468,467,467,469,465,470,469,469,484,471,472,470,478,476,467,544,543,543,547,543,544,538,518,525,537,533,539,534,540,547,517,522,519,514,515,518,528,536,533,534,535,530,539,533,535,523,527,531,538,541,536,529,534,531,558,556,564,561,549,545,564,558,551,553,493,504,516,478,473,478,487,479,466,477,469,477,476,477,549,551,564,559,555,551,555,555,548,547,568,559,497,507,501,499,494,491,501,493,491,499,494,474,476,555,551,559,555,550,549,555,556,547,558,557,549,545,524,521,527,521,514,513,524,520,560,554,559,558,567,561,558,560,565,561,556,557,562,565,562,558,548,549,553,540,538,545,471,487,498,484,488,493,490,487,481,500,490,500,490,493,490,483,480,479,477,450,468,462,468,470,462,474,469,462,470,465,564,565,561,556,578,551,559,572,575,482,480,488,500,493,490,498,491,488,483,491,486,503,576,562,554,558,534,570,547,563,541,560,566,549,564,513,466,461,453,456,464,460,469,469,452,453,460,460,559,553,567,561,578,575,573,570,565,583,566,569,569,569,569,571,528,534,533,526,540,535,534,536,519,542,527,527,506,514,521,518,516,514,520,517,522,509,511,508,547,535,542,543,544,542,539,540,538,536,544,547,545,538,562,548,561,551,568,575,548,559,554,510,524,514,517,518,524,518,515,522,521,522,583,575,567,593,569,588,563,561,517,524,482,481,489,486,489,488,486,487,482,489,482,489,504,507,506,542,543,549,534,548,534,547,516,507,505,510,518,506,510,508,503,507,510,566,577,550,552,541,557,555,550,548,547,557,546,569,551,550,513,514,524,516,517,513,525,515,516,523,518,572,581,560,561,577,565,564,569,499,497,490,499,502,499,503,496,509,483,497,500,496,503,508,515,490,510,501,500,510,495,504,511,500,505,497,507,502,506,504,506,540,544,549,532,537,535,538,541,534,536,545,539,562,564,573,565,566,562,571,575,576,555,569,557,564,563,566,562,574,571,565,540,525,536,542,538,536,544,526,538,540,546,566,564,580,566,575,560,576,563,556,523,525,539,524,529,528,534,532,505,502,507,510,506,507,508,513,510,504,506,505,502,515,515,502,505,506,487,502,500,490,492,499,483,481,478,476,482,491,490,480,473,468,473,499,502,499,493,498,501,512,510,515,510,508,515,511,503,504,514,515,507,506,528,528,529,527,519,529,544,530,546,547,543,547,554,543,551,557,535,549,539,487,492,490,501,492,495,482,501,557,551,545,560,568,543,482,498,480,482,480,479,497,480,545,551,553,547,551,544,541,552,544,552,545,541,544,552,551,553,545,548,550,516,515,535,523,524,531,511,508,514,509,505,516,514,516,509,514,577,565,561,554,577,559,558,568,546,566,489,509,501,504,506,503,508,510,514,469,468,462,463,454,461,462,460,457,457,458,507,498,504,499,501,491,495,508,503,490,504,546,550,541,550,554,552,546,544,544,475,480,478,474,486,490,494,478,478,455,460,448,465,449,451,457,458,449,548,546,542,566,554,536,556,543,561,546,554,543,546,505,515,499,502,496,507,500,503,502,498,505,500,504,496,530,531,525,522,537,532,536,537,523,531,532,530,537,542,542,541,548,551,552,543,545,510,515,516,508,514,516,509,517,508,509,523,513,516,506,508,508,509,506,514,512,548,545,543,546,545,550,538,538,547,539,545,542,545,540,544,534,531,534,531,528,530,538,568,570,557,567,566,563,563,567,560,570,559,561,536,525,528,519,534,532,509,520,519,519,523,530,527,519,522,534,499,505,499,494,506,502,492,498,492,499,503,495,495,500,495,477,480,481,479,480,479,479,480,451,459,451,463,454,455,454,592,581,566,593,587,580,531,536,530,536,532,524,528,522,529,530,509,517,519,509,521,508,520,523,509,530,517,606,595,582,597,589,587,590,593,586,589,543,542,547,555,552,548,518,504,497,512,513,509,515,508,512,514,495,483,483,481,473,479,464,467,459,462,460,468,473,470,470,453,453,457,460,495,488,489,492,479,555,564,569,564,569,536,533,534,531,534,528,528,529,529,530,532,531,533,532,532,554,573,574,562,565,553,561,556,568,557,567,566,526,528,530,496,498,501,499,507,502,499,506,504,499,495,496,492,493,493,497,503,492,495,499,498,501,502,467,461,460,458,468,444,447,455,455,569,572,572,570,541,541,539,550,543,530,543,532,531,537,537,543,531,523,536,535,536,531,532,540,542,532,568,567,488,497,492,490,498,553,555,554,553,557,552,563,563,554,557,555,556,556,545,549,525,519,562,553,544,549,494,487,499,497,437,442,440,441,441,439,446,438,439,438,442,449,455,463,464,459,469,469,456,471,470,470,464,465,564,594,583,572,569,580,580,568,577,561,574,580,586,477,486,486,478,480,480,515,526,519,521,519,532,516,525,505,510,521,519,512,518,512,508,514,509,528,527,522,531,525,530,524,528,528,527,562,567,569,532,530,525,534,519,526,531,532,527,527,533,527,537,525,527,533,533,565,549,536,529,533,535,532,536,534,525,536,534,530,533,528,534,531,540,535,534,531,565,563,561,567,558,554,569,571,568,565,566,567,562,561,522,526,536,508,512,503,497,506,498,502,503,508,507,511,507,503,502,500,506,509,487,487,492,498,492,478,481,492,487,492,493,497,488,491,485,501,494,503,498,499,496,497,498,476,473,487,480,482,474,480,483,486,489,481,487,488,509,517,513,511,517,509,525,513,510,513,507,523,507,555,548,557,558,552,567,550,556,487,483,474,487,489,491,488,490,490,484,429,444,439,433,448,459,449,444,440,460,455,544,543,547,525,536,535,552,549,550,556,552,543,544,541,541,553,549,547,548,547,527,526,523,517,525,533,517,522,526,527,521,544,547,544,539,542,542,536,546,545,552,547,537,540,539,537,540,540,535,537,546,531,540,533,524,534,526,532,533,535,532,533,534,529,549,557,565,558,557,552,552,506,498,503,494,505,496,495,501,494,506,497,502,509,519,516,512,513,514,520,523,550,573,553,561,560,561,565,561,552,559,560,561,560,562,557,559,553,562,545,567,575,498,489,503,499,498,496,495,495,495,500,493,495,498,509,503,509,502,511,512,500,502,500,511,513,508,507,505,505,565,560,557,564,561,563,569,566,526,536,534,529,535,524,535,535,532,526,530,539,523,527,545,507,526,507,512,521,509,560,564,569,563,565,554,569,573,542,527,526,543,526,524,522,525,539,508,504,507,506,503,506,506,508,504,515,517,510,499,475,474,475,512,502,495,501,502,499,496,502,503,565,571,562,562,569,540,538,544,492,473,493,493,481,475,489,474,483,490,496,498,478,441,452,449,441,437,439,449,439,455,450,450,452,454,444,547,544,543,545,550,554,552,551,543,550,551,547,551,517,522,516,521,516,517,519,510,518,522,512,512,506,510,516,513,508,510,506,509,550,554,549,550,540,558,542,552,557,555,538,548,546,545,540,545,520,519,519,512,511,512,519,518,518,514,511,578,569,516,539,520,533,536,523,527,522,526,524,489,491,485,479,479,464,467,457,464,462,464,455,462,457,465,455,469,466,465,555,547,561,510,488,500,437,446,450,443,438,441,439,439,443,442,437,477,480,463,459,464,470,477,463,470,479,465,559,548,551,576,493,488,501,494,501,498,499,479,495,471,469,468,463,466,463,451,460,460,455,551,549,551,557,563,563,555,554,563,459,465,479,471,487,468,485,480,492,497,482,465,478,469,464,466,489,474,480,534,544,541,541,536,531,553,561,541,549,552,547,553,536,558,466,475,536,523,515,525,522,531,520,514,517,521,518,533,527,512,529,538,538,536,538,534,521,530,533,526,539,547,548,559,546,541,536,542,547,532,545,552,523,541,497,501,498,487,490,492,494,534,560,534,548,554,557,525,526,528,525,516,522,520,524,519,560,548,509,519,515,522,513,515,514,512,492,481,481,481,495,487,485,491,484,491,477,494,490,496,484,491,478,477,476,478,479,475,469,478,474,478,477,473,467,483,479,466,466,466,464,470,462,561,564,555,565,552,543,546,545,548,553,542,475,475,485,478,469,487,484,494,483,483,551,555,541,545,552,551,557,540,539,540,546,542,539,544,537,546,548,554,541,552,536,547,548,544,552,542,549,548,596,567,579,570,574,579,581,574,574,523,511,524,514,526,489,495,485,485,492,487,489,488,492,482,482,447,440,446,439,462,444,446,442,442,450,450,442,534,555,555,551,553,545,535,550,558,555,555,556,554,559,557,542,550,542,547,544,554,557,547,545,567,542,554,552,553,549,552,557,478,495,496,504,492,497,492,500,499,487,492,483,500,446,445,429,447,446,442,443,491,486,499,493,493,504,493,477,498,482,503,562,558,488,490,498,483,486,487,492,481,503,493,495,490,492,490,488,463,462,465,463,468,464,460,471,471,461,552,562,560,564,560,568,553,545,575,556,549,554,544,568,553,486,494,561,552,564,551,559,553,543,552,540,557,541,555,559,541,535,549,550,551,554,557,517,518,519,507,528,513,524,515,527,524,517,523,518,517,517,513,561,565,577,592,582,569,574,566,592,573,562,567,572,572,576,579,565,519,513,520,527,527,520,506,508,512,490,497,488,491,483,499,492,497,494,495,495,482,491,485,494,491,489,485,497,486,477,481,479,489,479,496,501,501,503,495,500,496,501,503,493,504,489,484,496,495,458,462,460,460,455,464,461,462,459,468,457,457,447,457,473,458,453,511,503,500,519,510,506,510,506,562,560,556,552,561,497,504,504,492,481,490,504,486,490,493,495,456,451,462,453,458,545,555,556,545,550,537,550,546,546,557,556,560,545,560,568,576,569,562,571,573,578,577,571,579,566,567,572,570,507,507,513,507,513,504,516,495,530,510,552,563,551,548,554,552,555,544,553,561,559,540,555,536,551,556,558,555,553,546,488,492,489,483,484,482,485,489,484,492,493,482,470,480,480,529,523,533,533,534,532,528,535,538,535,527,530,527,517,531,537,534,540,538,566,559,553,558,573,563,570,564,562,564,566,560,529,535,533,535,541,534,532,531,528,524,530,524,526,547,547,564,562,553,559,547,553,542,523,503,511,505,515,516,510,503,505,475,478,478,475,477,470,486,472,475,473,465,478,479,480,469,471,483,473,476,479,473,470,476,477,468,480,474,470,512,519,506,511,509,505,508,505,572,556,550,544,552,553,562,554,550,548,493,492,487,495,490,502,491,493,508,487,495,488,516,515,506,503,512,504,516,566,541,550,556,507,498,498,482,493,495,481,492,492,485,484,489,496,488,456,466,460,462,460,457,464,464,559,556,558,567,571,556,562,558,562,547,535,550,555,541,548,546,478,471,481,470,606,597,580,588,582,601,588,581,586,513,505,513,504,516,510,514,525,515,503,513,526,517,538,555,546,545,540,533,541,550,533,539,546,545,536,547,540,541,543,561,531,541,552,541,535,500,496,494,493,496,489,492,495,496,523,538,544,539,558,533,542,536,523,520,566,561,576,566,561,563,557,556,562,563,566,565,560,565,567,566,561,550,557,550,561,554,562,553,553,560,501,523,510,513,516,522,512,524,523,514,477,492,476,469,484,500,508,507,502,502,500,510,508,504,510,507,499,566,568,571,560,573,562,565,580,571,567,561,570,547,551,545,547,553,496,498,502,500,496,499,491,499,492,495,497,510,510,502,502,509,508,502,499,504,562,557,566,564,565,562,562,567,567,561,567,559,573,534,540,532,527,533,527,535,529,528,529,527,532,532,513,502,510,515,513,507,518,517,522,511,511,512,506,566,567,551,563,553,564,536,518,517,505,509,499,514,585,594,589,602,593,586,605,589,602,550,552,561,555,553,561,553,555,553,556,561,555,558,551,548,549,555,553,549,556,552,505,524,512,515,527,529,522,519,513,511,512,520,522,519,509,510,484,484,486,480,487,480,486,479,485,487,490,474,473,479,477,476,484,488,491,510,505,502,505,537,538,526,518,520,521,514,527,515,519,515,529,522,524,521,526,564,495,506,508,514,489,490,479,486,489,485,495,495,490,510,511,509,500,506,501,504,504,499,525,544,528,541,536,546,540,538,532,567,551,575,571,569,560,560,572,529,524,531,530,547,467,470,480,461,464,476,482,487,493,483,489,493,482,488,493,483,480,491,488,488,584,575,567,566,561,564,566,571,569,585,576,579,500,495,489,503,498,504,507,503,489,507,499,509,469,463,469,468,460,464,474,536,537,529,526,543,534,530,542,540,542,526,526,531,525,527,526,525,532,525,525,529,531,519,539,541,548,540,544,548,542,538,545,546,553,549,553,551,554,559,549,551,510,516,506,529,511,486,484,483,480,485,483,485,488,489,440,446,451,434,447,438,441,441,531,529,536,524,527,522,534,523,532,520,525,540,545,540,492,501,529,544,552,531,528,549,561,552,550,496,511,499,493,503,502,498,497,507,501,504,503,560,573,490,518,502,509,505,513,507,505,501,501,501,554,534,558,550,542,547,543,551,556,544,542,552,472,478,473,486,474,462,478,486,477,478,482,494,486,496,489,488,567,563,563,568,570,567,567,574,580,565,594,499,506,517,504,509,498,503,500,515,504,491,501,498,501,500,504,494,502,499,495,560,574,566,563,569,585,567,583,563,566,557,583,552,581,565,503,598,596,614,599,594,598,599,590,596,602,594,614,595,601,554,569,548,565,572,555,558,551,558,559,555,554,552,571,559,512,517,504,522,508,514,518,530,509,514,508,474,472,479,481,462,460,465,464,466,453,469,455,459,467,526,537,529,548,525,530,541,534,542,541,536,527,541,548,533,542,538,541,555,549,545,549,543,548,525,543,541,545,544,506,507,504,502,510,530,552,565,559,477,483,475,569,576,553,577,570,569,557,564,489,496,476,490,486,473,479,484,476,481,493,484,475,480,452,458,533,527,537,536,535,531,531,539,532,535,552,552,549,544,556,547,547,545,556,549,556,550,555,553,560,556,575,567,567,558,535,523,514,532,512,518,524,486,482,504,503,505,505,504,501,511,512,502,508,565,564,564,566,564,568,565,566,561,559,564,551,546,545,542,536,540,547,544,495,483,497,478,492,487,484,488,443,439,452,569,555,556,559,550,555,563,550,564,548,556,560,552,539,549,556,563,557,552,497,509,502,509,505,503,544,540,538,536,538,536,539,538,537,544,542,558,557,555,571,558,562,552,561,560,577,566,556,555,568,485,504,476,508,485,481,511,458,455,441,444,450,443,445,436,454,450,442,433,448,543,546,534,542,547,544,553,543,550,550,540,542,531,541,539,553,543,542,554,534,540,509,580,570,571,577,563,584,578,558,568,561,572,562,574,515,506,532,527,534,527,520,521,508,535,529,536,519,514,534,528,514,506,504,513,510,509,516,512,509,504,514,510,518,508,502,511,509,512,492,490,487,493,489,493,498,496,487,492,485,476,490,487,478,490,486,489,486,480,484,485,486,482,485,482,490,486,478,476,476,476,475,471,469,475,468,474,473,470,462,499,508,499,500,506,549,549,555,531,531,531,559,567,552,565,560,559,562,553,562,561,559,506,513,512,516,502,503,519,511,511,512,511,511,515,523,515,496,500,498,500,497,503,500,505,503,505,493,498,501,498,496,495,497,543,541,536,535,545,542,537,529,540,538,533,531,534,536,536,535,540,543,536,573,560,560,560,563,563,568,562,547,548,553,544,556,545,555,544,550,544,551,542,552,538,552,521,512,516,510,535,515,501,510,506,499,502,504,500,503,507,501,499,502,482,480,488,482,486,482,487,478,489,482,486,484,486,488,481,487,483,493,486,484,482,487,490,483,487,491,479,476,474,467,468,476,478,481,472,479,464,478,474,475,471,472,474,464,466,467,472,474,469,475,482,490,500,484,494,487,515,517,502,515,505,509,562,555,562,561,550,549,549,563,551,560,557,559,568,560,554,557,552,557,560,553,551,561,530,534,534,506,503,500,504,479,476,480,477,480,481,478,476,482,482,474,451,460,458,452,451,445,442,445,463,448,453,548,543,535,536,544,541,541,542,549,549,547,545,545,544,540,530,544,557,544,536,543,524,530,529,527,528,528,526,525,527,528,545,541,541,538,530,525,542,532,540,491,476,476,475,469,486,481,520,518,535,531,533,526,530,527,529,532,521,528,527,517,519,522,524,520,516,519,512,514,514,517,515,514,510,516,510,518,513,521,511,515,519,515,532,525,558,562,570,565,536,532,538,542,539,539,529,537,539,533,536,532,537,540,543,533,534,536,531,535,537,531,533,527,536,536,530,536,527,572,554,555,552,543,482,489,483,487,489,481,495,466,460,488,477,477,474,470,481,489,486,484,484,485,482,511,511,515,511,510,515,514,517,514,507,510,514,509,562,558,558,558,560,554,556,557,557,557,518,521,526,485,486,487,482,486,489,483,481,481,489,483,485,492,490,485,484,483,493,484,487,581,567,572,567,578,568,565,565,563,561,563,552,488,496,488,486,464,468,462,467,470,474,464,465,469,463,471,461,459,539,541,562,554,529,549,550,521,549,548,556,468,477,476,476,479,469,465,475,470,477,471,477,478,472,472,460,469,462,474,460,466,473,579,587,567,499,496,558,559,554,560,542,546,541,546,561,541,547,560,553,558,569,555,502,499,495,489,490,499,487,462,468,469,460,457,466,466,468,477,545,546,557,555,549,544,547,555,546,556,486,501,489,494,504,490,496,511,500,490,492,501,501,492,501,495,484,485,483,487,490,482,541,535,541,574,574,556,572,563,568,551,560,575,564,561,556,546,489,484,484,496,497,489,494,508,499,497,562,555,551,563,570,561,562,549,552,552,556,564,557,560,549,557,558,552,554,550,545,557,555,554,549,554,540,557,557,551,546,554,468,474,473,490,479,481,464,477,471,473,470,471,471,456,480,488,490,479,459,461,557,558,554,554,557,561,563,557,551,549,551,549,548,558,556,545,554,542,553,543,558,512,514,522,514,515,524,519,512,509,515,514,517,510,510,571,578,583,572,568,562,583,577,563,553,581,574,574,570,512,520,518,531,518,530,525,510,525,514,521,517,530,491,484,483,488,509,512,507,503,523,544,542,540,537,547,547,535,540,540,553,533,535,541,507,518,520,514,518,519,517,516,523,543,536,541,533,539,560,563,548,554,525,530,526,537,533,535,529,538,543,529,541,539,536,537,522,521,529,519,525,521,522,525,525,524,548,537,534,534,527,536,508,511,524,518,520,516,511,519,521,516,526,518,513,520,522,549,559,545,557,546,546,539,557,544,548,537,535,539,538,533,534,540,536,537,530,536,531,530,532,518,522,526,521,517,520,523,520,521,531,517,518,580,584,512,504,505,507,509,504,510,507,513,513,509,525,538,525,524,521,523,529,525,527,532,529,534,522,522,517,521,525,521,525,522,524,525,519,520,518,541,545,550,548,541,555,567,550,561,564,556,573,557,552,554,563,568,560,552,549,561,530,516,528,520,524,524,515,506,526,510,505,511,506,505,509,489,494,496,495,495,484,495,504,498,494,498,498,496,497,496,499,496,499,507,506,502,484,488,495,475,485,483,483,484,483,467,457,453,460,462,453,461,474,462,459,461,454,457,461,461,461,466,455,462,459,467,468,489,493,493,496,487,490,492,492,485,488,541,575,571,585,575,589,562,569,577,563,550,568,569,563,522,524,524,519,527,531,514,528,530,520,483,490,483,483,486,460,556,550,555,557,553,542,556,549,555,550,553,554,469,468,484,483,480,483,475,539,541,541,549,520,543,546,550,547,547,550,537,540,545,542,544,544,538,546,525,528,525,527,524,532,531,521,532,529,528,521,527,541,553,537,533,535,533,534,534,529,521,517,523,524,515,509,508,513,564,565,571,564,557,558,550,565,570,567,571,564,568,556,579,569,583,565,558,523,507,521,485,478,482,487,483,490,483,476,485,481,489,499,506,506,503,506,507,505,504,548,552,563,553,562,550,527,526,529,534,536,541,537,538,538,527,542,586,593,488,504,494,486,490,497,488,493,486,548,553,547,556,554,541,556,548,566,541,558,547,557,551,549,553,553,551,548,549,566,554,537,544,554,476,465,474,465,466,467,473,472,468,468,481,464,475,457,470,492,461,465,532,526,524,525,525,517,530,542,536,533,539,534,534,544,528,543,538,538,534,546,546,549,549,546,543,485,496,490,494,493,485,500,502,490,495,505,496,497,496,510,488,495,490,501,490,502,510,512,492,499,497,497,497,496,537,516,526,515,523,525,526,535,521,501,501,507,497,491,494,504,559,561,564,479,490,483,501,483,495,495,480,486,555,547,549,555,562,556,548,551,540,547,539,539,560,553,549,550,553,560,538,546,556,559,545,561,508,509,511,503,495,503,508,496,516,522,524,516,523,517,509,527,561,555,557,557,556,563,560,574,566,563,557,565,558,557,564,561,498,490,492,490,495,483,487,483,487,479,480,483,483,487,573,554,554,557,574,556,574,573,525,523,524,525,531,528,526,527,526,528,536,540,520,554,546,545,547,543,553,546,540,557,551,551,552,539,548,549,547,541,549,554,548,543,558,508,494,495,491,502,499,505,492,496,488,499,497,494,499,497,497,495,500,504,504,502,507,504,546,549,547,546,561,552,551,556,558,548,545,554,547,554,571,574,562,574,576,569,577,569,568,569,568,572,572,492,500,509,510,494,498,490,511,503,501,504,500,497,513,512,514,498,496,507,497,500,577,589,565,593,570,594,581,572,566,575,520,533,520,532,520,530,520,498,506,506,502,493,504,504,497,486,485,484,484,484,490,479,489,487,492,486,493,506,498,501,498,489,556,564,553,559,552,546,563,545,523,531,539,532,537,531,536,534,532,533,537,533,529,538,533,535,532,526,523,524,532,527,524,531,530,554,523,539,539,539,480,499,482,498,480,481,499,500,488,498,477,489,529,552,556,547,509,515,511,517,510,517,508,513,511,510,508,506,521,581,575,577,575,569,567,561,572,572,577,569,568,580,582,509,516,511,529,527,523,522,528,515,523,523,512,514,517,479,488,493,482,482,492,477,505,502,500,502,500,507,497,496,503,499,510,511,502,506,503,571,570,567,574,557,562,575,562,568,567,571,564,573,572,562,553,555,556,566,566,557,557,521,517,518,513,518,519,516,511,514,523,522,529,516,508,482,476,495,491,493,478,479,491,488,485,491,491,574,568,565,525,535,530,539,548,550,538,532,531,528,529,533,530,529,535,526,527,524,528,530,529,538,561,559,566,561,567,560,571,548,568,562,562,570,557,571,567,566,557,566,565,559,489,479,489,496,498,495,499,489,488,496,492,495,475,566,545,553,546,554,548,560,551,553,553,537,550,568,537,553,555,493,504,494,498,490,501,500,503,527,541,550,548,512,512,520,513,502,498,505,507,510,506,502,559,560,562,556,559,571,576,557,565,550,552,551,555,565,522,540,530,538,527,536,539,537,467,465,469,443,462,464,452,549,558,535,547,542,541,544,547,550,542,557,543,541,543,548,559,544,489,491,498,492,473,495,493,569,589,508,503,506,505,498,511,499,498,511,520,499,531,522,526,533,527,531,538,546,535,539,530,534,537,532,540,535,545,530,535,537,539,554,546,554,555,545,551,547,501,489,502,498,496,513,499,466,464,463,467,454,469,459,457,462,458,452,467,459,470,455,463,464,460,488,500,498,492,499,495,506,505,505,495,501,494,506,499,497,500,503,501,537,534,538,541,529,539,542,533,537,531,535,531,527,530,525,526,523,529,522,531,530,530,520,530,572,550,572,562,558,563,570,580,562,567,560,563,519,519,521,532,533,521,533,524,533,514,495,481,478,475,479,486,480,475,503,500,503,507,506,506,576,559,548,546,547,548,545,535,548,557,545,547,549,480,491,476,484,503,483,496,488,477,486,475,482,453,446,436,449,443,438,441,458,439,448,446,440,445,547,550,549,550,562,554,544,547,553,545,515,504,504,508,505,516,505,515,496,513,522,518,500,509,512,479,480,480,479,473,475,479,471,477,477,472,472,471,476,476,515,513,521,505,514,537,548,548,538,532,555,540,538,535,489,503,495,504,480,604,611,608,593,595,584,603,565,558,551,553,548,550,557,518,515,522,506,508,521,513,514,511,525,517,517,479,477,483,478,474,482,473,481,479,480,487,476,460,453,461,458,553,545,542,552,561,545,551,549,549,553,554,589,575,566,569,559,572,545,498,473,450,454,450,465,454,455,443,462,454,448,463,512,517,530,530,530,524,532,523,528,524,529,522,524,527,531,531,538,530,523,544,541,544,539,546,545,534,549,530,540,543,542,552,541,534,541,541,473,469,485,470,478,478,472,462,478,467,468,541,577,560,569,506,494,502,499,544,533,545,555,552,532,550,537,551,550,517,518,509,505,517,511,515,515,514,508,519,513,516,536,540,532,534,528,538,540,535,557,565,572,565,559,556,555,569,555,508,494,507,499,516,499,508,503,504,509,477,476,480,474,483,478,480,474,463,468,470,469,474,469,459,461,456,451,457,455,451,465,471,458,460,459,474,458,606,565,549,536,547,544,545,552,544,547,552,559,554,493,507,500,504,502,521,514,506,506,518,509,521,474,482,468,472,476,476,481,471,478,484,471,472,479,478,479,484,478,478,479,480,485,494,484,490,491,489,465,462,455,497,489,489,484,492,489,486,491,553,530,539,539,528,520,509,507,503,507,514,508,507,511,500,527,535,525,529,547,533,527,538,530,530,534,541,526,507,516,515,521,517,517,516,513,516,567,559,551,549,554,502,497,513,503,504,520,513,508,517,508,508,498,488,486,492,491,483,462,475,474,480,486,468,476,476,459,460,464,463,457,461,459,475,468,456,458,439,456,453,454,443,445,453,454,491,476,481,477,478,474,485,487,485,485,488,483,484,572,571,562,566,554,583,559,569,571,577,558,574,579,565,566,486,494,518,455,437,438,443,441,444,443,449,435,451,443,485,470,477,480,469,570,572,597,499,501,509,499,502,498,467,479,489,471,483,483,490,492,491,491,484,596,601,598,604,585,594,598,590,605,589,581,593,584,612,590,604,598,588,606,501,532,534,548,542,541,536,535,538,539,537,545,544,542,539,548,539,534,545,534,539,538,540,544,542,545,537,530,539,539,506,508,520,514,516,510,507,508,518,539,538,540,542,548,541,540,545,541,541,532,518,524,530,521,527,523,526,519,527,524,522,521,514,529,527,560,565,572,561,555,564,560,556,549,529,525,527,518,529,522,522,551,547,558,539,549,551,541,540,544,540,550,544,553,533,531,496,502,506,507,515,501,504,506,500,501,499,491,508,500,499,507,487,501,506,491,487,481,483,488,490,480,483,482,487,485,497,484,494,491,489,494,445,457,456,452,453,459,461,475,482,591,606,591,595,591,546,538,551,540,542,544,538,535,550,546,542,546,534,571,568,573,562,567,580,521,511,498,514,503,498,507,499,503,507,503,503,505,503,502,479,482,488,484,484,474,482,500,494,499,511,505,499,508,501,503,565,562,566,566,557,571,573,562,567,541,465,483,478,486,478,482,484,480,483,476,479,482,477,484,483,476,477,465,454,464,466,450,461,465,459,460,556,576,577,579,589,581,579,586,577,591,590,593,527,515,529,529,521,523,516,522,598,574,525,530,543,536,542,533,539,532,535,540,537,540,540,538,533,566,555,501,514,508,512,499,511,504,515,534,508,506,506,509,516,502,484,499,520,483,483,476,476,481,484,487,473,483,498,497,495,495,496,493,500,498,504,501,509,504,498,500,495,485,488,483,480,465,479,477,487,484,488,475,483,476,490,482,483,480,490,483,474,469,479,481,474,476,473,477,487,473,478,479,480,570,542,561,565,500,497,513,478,504,491,497,502,489,501,471,501,503,476,469,469,475,483,467,569,562,557,580,550,577,569,563,567,553,507,508,506,509,528,514,498,522,501,504,507,480,479,469,476,472,476,474,469,476,481,482,471,479,499,500,499,491,476,471,479,480,476,474,477,480,477,477,471,464,484,469,481,470,473,483,477,472,476,482,483,466,476,483,476,485,470,595,590,589,594,595,545,546,542,544,537,549,539,544,545,545,544,530,522,527,531,527,522,525,558,533,562,574,580,562,565,580,567,566,522,524,523,526,531,526,523,525,527,521,527,537,524,561,568,559,563,563,555,551,563,557,556,553,555,565,562,525,523,534,536,534,531,533,530,533,528,526,541,516,495,507,508,499,554,546,563,553,543,570,550,559,530,526,532,546,549,555,543,554,536,552,560,560,561,521,515,519,511,513,502,524,509,516,518,506,479,493,494,486,488,493,491,484,478,485,484,486,481,490,487,485,484,481,491,491,488,480,495,485,478,486,485,495,489,501,497,496,492,487,488,487,493,493,494,463,454,449,465,464,458,454,466,458,454,516,491,498,492,498,486,496,501,502,509,502,486,551,530,541,532,546,545,534,541,531,526,531,462,441,452,474,461,445,445,475,456,533,545,535,537,538,540,543,524,547,538,553,561,564,565,570,552,558,560,563,569,511,498,497,527,508,503,498,492,512,548,544,533,499,493,510,501,479,498,480,506,492,462,462,469,463,464,472,462,469,458,457,463,463,462,459,458,463,460,464,457,450,470,469,466,568,555,551,582,559,559,548,571,569,577,512,506,499,500,504,511,553,551,557,562,553,577,571,498,483,497,493,492,500,491,492,503,485,491,562,570,559,575,569,564,577,501,510,507,505,499,506,508,506,555,551,538,549,567,564,551,556,574,548,550,554,551,510,500,501,505,497,517,508,498,486,485,489,492,495,483,488,483,492,494,494,495,500,482,473,493,481,470,487,485,481,482,475,504,498,501,507,541,540,549,545,538,549,540,534,535,542,537,551,548,560,549,559,561,555,568,544,570,547,525,521,525,529,525,562,561,567,562,551,565,558,558,556,559,562,562,556,563,542,537,537,541,547,546,503,494,502,501,516,510,499,499,500,481,488,475,486,488,474,488,483,477,479,474,477,473,482,474,467,471,476,477,476,471,477,481,480,471,471,479,472,476,475,477,476,478,476,450,453,448,451,442,453,438,451,435,452,442,438,450,452,450,434,441,544,541,540,536,537,546,542,554,552,550,547,544,545,492,507,503,509,500,566,561,555,562,549,564,556,562,557,553,560,544,543,514,507,514,512,511,511,473,486,484,493,486,485,492,465,470,474,461,466,463,467,469,469,472,461,465,470,470,475,473,469,471,469,472,471,478,454,455,462,450,445,453,455,502,497,496,495,501,536,541,544,538,538,538,490,479,483,478,485,482,477,476,465,482,472,490,482,559,554,550,557,549,541,551,553,569,556,547,499,509,497,507,505,561,581,550,569,561,559,571,561,574,564,558,574,573,520,523,522,522,519,516,517,519,520,516,518,514,508,554,557,561,552,559,557,559,561,549,564,559,517,515,521,517,522,514,514,518,522,512,513,483,479,488,483,493,486,483,488,497,554,568,569,565,563,571,573,561,570,564,567,565,558,530,540,544,550,535,540,537,546,500,504,511,491,493,500,500,495,495,506,502,496,500,494,497,511,513,512,509,503,512,503,510,514,515,516,507,519,504,577,560,556,557,560,558,568,558,551,551,560,563,571,555,547,510,512,520,519,514,516,516,520,517,502,511,512,517,485,484,469,482,476,472,482,487,481,477,468,478,493,501,501,504,497,492,500,485,493,501,581,589,584,589,580,580,575,579,565,588,570,501,503,500,502,504,497,580,575,568,562,584,577,563,566,576,564,568,509,507,505,492,510,500,498,496,495,514,514,505,493,443,445,440,440,448,443,450,442,528,527,523,531,531,521,527,526,526,525,540,529,545,541,537,541,540,543,555,551,541,550,540,554,543,546,547,566,557,553,555,559,565,559,566,524,528,520,523,528,537,523,523,515,513,518,514,512,518,518,509,518,510,517,507,508,512,515,516,498,479,486,481,479,484,482,484,485,475,477,478,477,484,484,485,467,464,556,552,564,561,567,565,547,559,549,551,553,549,545,559,561,559,545,557,554,552,541,527,536,531,528,534,524,523,523,526,527,528,529,528,525,554,550,547,558,561,557,545,563,550,527,504,509,513,516,509,516,515,512,505,515,512,527,518,498,508,511,487,481,485,486,486,484,485,478,482,486,485,482,488,489,489,486,490,488,477,482,490,497,488,482,501,499,500,496,493,490,497,500,493,492,490,477,486,491,482,486,479,489,482,479,488,481,466,458,474,462,451,465,454,462,459,457,458,460,456,447,441,447,445,436,435,436,448,443,455,437,438,534,534,544,538,543,538,541,535,538,538,541,530,550,533,541,537,549,548,544,537,545,544,537,532,526,548,539,547,546,512,492,501,484,484,496,489,495,491,487,533,548,542,540,543,545,544,539,543,547,548,551,551,547,536,546,540,526,527,536,534,524,535,535,532,531,532,536,532,533,539,530,527,524,532,524,525,525,527,527,529,528,521,530,531,527,526,537,541,542,540,540,537,553,538,531,547,551,542,538,544,532,526,528,532,526,531,565,562,542,556,549,556,556,559,569,563,565,482,509,510,504,442,456,450,450,460,447,452,448,458,464,453,456,461,468,589,591,598,594,593,543,546,547,549,545,534,553,546,556,541,536,543,542,555,570,570,568,568,511,507,503,491,499,495,496,497,499,501,509,513,498,498,498,498,503,500,503,497,493,566,558,572,567,566,497,517,519,496,497,502,507,508,500,499,503,519,500,500,495,509,481,482,490,490,483,483,485,481,478,492,483,480,487,482,517,516,523,515,516,526,528,527,531,519,524,514,526,527,527,538,568,551,548,553,551,554,558,550,560,546,511,506,505,505,508,505,503,499,504,498,510,501,505,550,555,546,552,538,551,539,548,540,548,539,535,532,545,565,536,548,540,547,543,545,548,546,551,502,501,505,501,514,513,510,493,498,512,512,503,507,560,560,566,584,570,568,568,564,561,574,575,579,551,562,559,555,565,556,548,491,505,556,542,560,559,551,554,503,497,498,502,503,499,505,505,501,509,505,466,462,463,457,465,469,473,460,469,465,449,473,503,509,514,505,498,500,499,501,559,554,499,486,492,492,502,493,486,487,459,454,458,443,450,445,458,466,460,463,531,546,549,546,553,543,553,557,550,556,555,569,574,564,569,574,577,575,566,555,535,535,562,561,558,556,558,568,561,563,553,556,567,565,553,498,500,483,496,503,494,485,485,459,473,458,470,458,458,468,470,459,593,587,580,575,587,499,507,513,512,502,507,508,504,504,507,503,511,548,544,547,541,545,545,543,544,544,551,539,546,549,544,544,547,545,546,556,542,561,542,556,515,524,521,518,522,523,530,516,521,516,513,516,519,520,522,511,517,518,519,545,543,539,537,547,540,541,544,538,534,548,539,558,564,502,495,493,492,500,495,484,503,564,574,567,568,566,572,556,560,569,555,556,553,574,560,562,563,569,562,566,510,515,522,518,520,519,521,531,526,519,527,522,506,509,509,515,516,494,488,494,495,491,491,493,489,483,473,495,505,496,505,499,502,500,500,500,504,509,503,554,553,548,547,544,547,546,550,563,547,557,531,544,543,529,545,539,537,577,590,575,571,590,585,580,578,594,500,500,491,501,497,506,498,504,495,558,574,565,561,558,568,563,568,568,561,588,506,509,504,512,508,491,518,509,503,499,503,454,447,448,464,453,449,453,447,453,462,459,468,465,463,468,457,460,461,464,465,459,467,462,461,565,561,564,561,541,556,553,553,548,551,552,558,541,552,535,541,541,500,503,493,493,511,501,503,503,512,493,589,603,599,591,599,539,544,552,542,543,544,543,540,546,539,553,543,529,535,570,557,560,560,553,512,528,529,520,514,526,526,521,531,526,520,483,482,487,484,482,476,479,482,477,481,490,488,483,485,469,475,477,478,476,465,474,471,477,481,475,468,478,470,479,549,581,546,568,567,479,474,500,493,480,577,559,569,560,559,568,558,572,559,548,561,555,555,552,560,509,507,463,465,466,474,469,461,466,466,469,464,466,428,440,437,434,441,441,438,434,428,438,519,518,519,526,513,516,530,517,515,531,541,540,538,537,539,550,541,545,551,547,550,554,500,513,489,507,495,513,501,488,477,499,484,482,490,492,494,491,486,488,500,495,497,482,477,480,487,475,475,482,479,480,476,466,478,475,488,485,481,476,479,484,495,502,494,507,499,496,490,492,502,504,564,536,535,529,537,535,538,539,532,513,516,508,513,505,546,547,537,544,541,553,542,551,541,510,511,497,518,511,512,510,509,512,513,518,516,508,519,538,528,529,518,533,532,532,528,532,529,551,567,555,530,523,521,519,517,518,522,514,517,518,527,531,523,519,526,521,524,517,521,529,520,576,585,580,581,575,574,579,586,576,576,586,575,586,528,495,560,556,559,565,564,553,561,582,556,477,476,510,496,489,487,503,489,495,506,503,502,439,434,444,439,449,443,432,441,426,512,526,518,516,524,516,520,512,513,520,508,533,549,543,541,543,550,542,539,531,540,548,543,547,539,547,538,543,546,547,542,556,556,559,553,537,548,560,552,551,555,551,498,510,505,509,494,503,508,508,503,503,505,501,507,510,510,491,493,490,533,521,524,529,533,531,518,523,532,522,537,539,553,549,548,563,545,551,545,561,551,559,541,559,513,512,515,518,500,518,510,513,507,513,511,504,511,520,520,521,519,528,523,528,528,525,521,526,525,546,566,555,557,555,484,500,467,490,476,551,543,552,565,564,564,556,549,561,568,544,556,551,498,507,493,491,493,499,495,508,499,493,495,501,502,507,503,511,500,500,500,501,500,495,587,564,556,561,567,573,567,494,503,482,502,500,498,494,501,503,503,501,506,495,497,506,500,472,469,468,473,472,464,466,471,468,468,544,569,563,570,573,553,576,558,563,482,483,478,497,481,481,575,584,576,568,560,590,567,573,589,576,573,534,541,537,540,552,530,536,536,536,538,535,531,539,542,540,534,529,536,535,534,535,533,540,532,529,530,533,516,502,507,511,512,508,516,504,543,556,555,547,572,556,563,557,556,546,545,550,554,556,552,534,543,546,552,544,550,552,543,501,500,516,527,510,521,498,504,516,505,507,485,487,471,468,475,474,468,470,476,461,477,472,478,476,481,473,476,473,482,471,471,468,434,438,423,428,434,463,483,463,473,469,470,471,463,476,465,464,547,569,559,552,562,567,549,561,564,553,555,564,582,580,572,525,524,521,525,520,518,521,531,537,539,539,538,540,539,537,540,546,531,544,539,545,530,560,554,557,555,563,554,547,568,562,505,517,516,521,517,518,517,519,519,520,517,520,523,521,517,518,514,550,559,572,545,572,555,566,564,566,570,558,563,569,511,515,508,507,501,495,511,498,508,512,509,491,493,491,494,494,497,485,494,490,494,493,501,550,547,536,548,545,534,546,549,578,551,564,570,565,561,558,566,566,573,500,504,503,496,496,496,494,507,498,499,516,500,503,467,468,468,467,469,468,468,469,466,463,469,465,556,561,570,559,543,545,545,534,538,550,510,509,502,509,517,545,557,551,575,566,575,566,570,555,567,517,514,539,540,532,541,534,532,537,546,541,536,540,560,571,569,557,567,575,559,564,566,579,539,513,504,518,514,535,517,510,526,517,480,483,490,483,490,488,504,501,493,492,501,496,490,501,498,499,506,493,547,549,545,548,551,541,542,538,537,543,548,543,547,551,499,498,502,503,500,495,505,514,509,500,508,504,530,541,538,528,527,539,534,539,524,525,529,570,561,565,562,567,507,502,512,509,508,503,509,520,507,495,557,551,553,553,498,507,524,519,530,526,519,524,513,514,531,520,513,518,525,514,520,529,528,521,522,520,571,560,569,577,570,566,564,563,500,520,518,519,531,521,531,517,498,493,502,507,501,491,509,498,474,489,483,482,487,485,484,482,479,479,479,476,471,485,479,474,485,443,450,458,442,441,455,447,438,443,456,450,448,452,445,547,547,544,540,546,557,559,551,554,544,545,551,561,465,489,471,465,471,474,477,553,544,550,552,552,551,555,554,551,553,547,551,550,554,546,547,550,553,554,556,557,497,498,504,497,506,509,498,503,501,509,489,511,506,495,472,470,474,475,481,472,471,485,476,479,484,548,539,537,546,544,553,537,554,544,546,537,544,553,530,524,526,528,523,524,522,551,554,548,543,548,547,500,502,494,496,500,490,504,505,506,496,503,496,503,544,531,538,538,536,530,543,542,546,538,541,538,537,540,540,540,544,527,534,541,538,554,564,559,562,563,564,565,558,563,522,525,524,517,523,527,517,525,525,524,520,549,542,541,558,570,563,554,568,566,506,512,503,508,502,504,506,489,501,506,507,502,508,519,510,517,527,511,514,516,524,543,547,547,545,548,533,546,508,512,518,510,514,520,507,505,517,520,513,566,555,561,548,558,556,493,513,504,491,441,456,534,548,544,560,553,545,539,544,554,540,549,544,546,546,541,546,522,526,527,519,523,522,534,528,530,531,521,531,529,533,528,531,522,526,558,546,551,533,544,555,546,537,542,534,487,485,487,487,486,485,473,470,462,459,453,452,450,449,455,463,458,462,465,561,570,542,558,566,474,455,473,481,466,473,487,476,468,480,528,527,524,532,540,551,552,540,544,537,562,560,557,554,559,560,565,552,563,522,524,510,509,522,514,520,517,526,491,486,488,489,524,496,511,495,498,506,506,507,506,500,504,575,561,568,551,565,561,562,559,520,519,519,529,532,520,522,518,527,487,479,583,567,579,553,568,562,568,560,575,564,562,572,477,463,476,467,471,454,528,532,520,521,528,520,524,526,516,523,524,519,521,527,521,525,527,533,540,531,535,531,544,543,549,526,552,536,544,542,491,503,497,507,498,478,500,501,502,492,505,493,496,500,494,546,547,548,545,541,549,534,556,546,531,551,543,556,520,517,518,519,520,513,519,514,545,533,551,545,545,551,544,552,569,580,564,562,581,577,562,578,562,575,560,507,506,496,503,503,503,512,463,462,469,476,464,481,473,479,472,470,473,566,556,561,564,559,549,558,557,553,552,542,543,570,533,560,549,539,549,540,558,549,549,545,521,518,517,516,511,505,575,494,512,514,505,517,509,498,494,500,506,547,533,574,549,545,569,562,524,519,521,526,515,509,520,519,520,516,521,516,542,535,534,538,545,543,531,539,534,541,533,503,514,513,515,503,511,549,552,555,557,557,534,563,564,553,555,546,548,489,537,529,531,522,517,533,538,536,532,528,526,527,530,527,529,538,528,534,529,534,539,537,535,538,535,532,532,577,558,570,559,564,568,565,572,514,503,499,500,504,506,510,505,528,523,528,543,542,531,527,526,524,522,525,536,534,536,545,536,533,532,529,532,538,529,534,540,531,533,532,541,543,547,550,540,538,549,550,515,510,509,513,517,520,514,518,520,518,520,510,518,518,509,504,502,512,510,507,505,514,504,507,507,509,505,509,505,514,506,505,536,543,531,535,532,533,539,539,541,543,530,535,542,543,539,536,539,540,548,555,544,485,479,497,486,489,490,484,489,474,479,496,477,483,483,487,487,491,484,482,478,481,546,544,546,560,546,539,549,541,553,544,539,557,547,556,550,552,543,551,545,542,536,546,547,548,545,507,503,506,519,531,522,534,537,538,564,549,548,560,553,558,565,549,561,546,554,531,534,541,536,534,557,557,558,556,571,553,563,492,492,495,499,467,457,561,562,559,549,550,543,544,553,561,541,551,552,491,492,489,481,500,494,499,493,550,542,545,559,573,545,543,559,553,530,556,544,544,503,498,483,492,491,503,493,508,544,544,545,546,554,516,513,515,515,513,508,511,505,518,512,516,512,509,507,508,508,506,506,513,510,530,527,532,532,523,519,527,525,518,522,526,522,520,523,516,525,538,540,537,550,541,544,543,540,525,518,528,517,521,523,518,519,509,543,541,547,548,543,537,546,541,542,568,575,561,555,570,570,569,577,553,558,566,576,561,570,570,565,568,565,561,562,563,541,525,516,527,526,526,530,492,498,494,492,492,485,490,483,478,484,477,486,493,487,473,477,483,470,481,475,478,475,467,471,481,482,473,475,475,552,544,553,544,553,548,527,526,531,524,525,528,520,527,536,525,527,527,528,531,530,559,562,562,563,552,554,572,557,558,515,507,525,523,539,474,476,474,475,478,476,477,466,461,452,462,467,451,459,548,553,546,552,546,554,559,551,551,579,565,572,536,574,573,562,568,576,556,556,550,561,548,566,552,561,559,522,527,529,474,488,496,480,489,483,484,484,487,488,459,450,468,462,462,447,465,460,461,464,465,463,473,457,456,461,466,467,464,452,450,468,468,459,469,454,456,464,465,469,462,465,464,463,457,459,463,463,453,458,453,572,571,562,569,570,565,570,569,572,565,572,570,569,568,561,553,562,566,571,575,567,567,527,529,511,517,537,524,523,527,519,526,529,521,505,512,500,504,503,505,502,507,502,508,502,500,501,494,507,507,509,504,511,510,501,504,506,516,528,534,526,527,522,493,495,494,492,493,495,495,502,485,505,494,501,500,487,498,499,491,589,593,589,596,573,579,585,592,589,544,546,541,539,554,541,534,550,532,542,539,545,541,537,548,540,527,535,543,543,555,556,498,504,513,520,509,568,544,554,557,557,578,559,555,528,512,519,523,525,515,547,545,552,555,552,548,553,541,527,532,516,531,522,529,524,517,527,526,476,475,484,476,474,505,497,494,491,498,503,500,500,503,485,527,533,535,536,539,546,537,538,529,536,570,556,556,520,516,523,542,543,541,545,560,558,560,565,573,541,581,558,562,562,563,558,570,564,577,561,523,579,562,552,552,561,549,568,567,562,582,561,565,511,509,517,512,512,504,501,518,506,508,516,517,563,555,557,546,538,537,510,520,526,524,526,505,505,503,501,495,506,507,499,501,498,504,509,501,515,499,501,504,502,496,502,504,506,471,468,464,466,460,471,465,465,455,470,457,489,491,490,483,482,496,478,481,477,564,553,569,568,570,569,574,565,573,566,568,581,578,574,560,572,578,524,523,519,518,519,530,520,516,522,524,517,516,526,527,532,531,529,560,571,586,543,547,559,483,492,488,484,494,557,552,551,539,557,553,558,556,567,549,554,559,556,558,565,554,518,510,517,520,523,508,508,509,504,507,509,504,518,496,480,477,488,478,474,474,479,482,466,472,470,474,465,468,470,475,473,464,470,464,459,455,475,463,461,456,457,471,463,468,460,568,578,565,564,559,562,557,557,571,557,576,574,469,472,579,564,579,579,578,575,593,575,565,543,544,530,525,542,528,537,541,536,536,540,539,490,467,486,495,485,490,487,467,482,472,481,481,471,475,477,476,480,486,474,461,476,557,556,568,515,526,521,522,516,525,482,482,480,485,490,484,484,480,484,488,480,473,470,470,468,462,454,459,540,535,527,531,527,525,524,534,524,534,530,539,538,535,525,530,528,538,534,539,542,549,549,552,541,546,487,506,488,476,487,502,505,489,576,573,582,522,534,536,536,523,525,533,531,526,539,540,562,560,555,552,576,572,566,573,561,565,563,533,520,516,535,508,519,519,524,514,527,482,480,477,477,486,481,489,480,486,480,483,476,486,480,472,467,459,465,457,462,486,486,492,496,495,491,495,496,500,487,534,530,540,538,536,541,536,534,564,571,561,557,573,566,568,516,530,525,534,532,536,519,522,474,471,473,462,477,474,474,480,474,461,479,468,477,532,534,552,545,545,544,543,555,546,544,554,543,542,553,553,545,552,559,558,558,548,557,563,553,544,552,501,490,493,493,500,499,492,483,495,496,463,468,476,467,473,467,456,563,557,566,561,560,558,546,566,553,549,548,557,562,552,552,556,549,574,497,480,486,478,479,481,488,479,486,492,489,537,532,549,543,555,536,542,545,548,542,544,558,544,541,546,555,552,542,553,553,549,554,552,553,550,497,482,503,492,494,491,508,508,512,501,489,479,474,482,473,474,473,477,480,480,478,472,477,476,481,466,475,478,476,480,471,472,473,472,481,471,463,451,468,462,459,464,458,461,458,473,462,459,582,588,584,580,589,582,578,581,592,586,584,573,587,572,583,585,591,576,584,592,581,523,532,535,529,526,539,537,522,531,529,527,533,536,534,519,518,513,523,516,509,545,549,547,558,543,553,550,547,540,550,550,544,535,541,537,542,576,573,579,576,580,581,496,489,501,499,490,496,497,499,501,486,482,460,463,471,465,473,461,467,465,465,543,541,540,530,542,535,531,527,533,530,523,523,522,531,519,525,528,523,520,523,524,522,529,517,522,512,521,521,528,524,526,527,565,570,560,566,562,575,568,561,570,561,562,574,540,543,540,543,533,574,562,574,571,570,578,577,572,576,533,529,517,518,536,512,480,493,480,484,483,492,491,481,482,486,501,494,505,499,508,497,505,502,491,502,501,503,543,542,540,537,543,544,545,543,548,542,543,542,545,540,536,552,553,550,541,478,473,480,480,481,491,485,489,488,484,451,476,480,494,469,488,479,490,567,591,568,578,585,518,519,519,515,532,538,518,521,524,530,530,525,524,488,489,484,492,486,487,494,501,498,498,496,498,492,497,493,493,492,500,570,568,594,564,568,582,588,575,564,497,503,492,497,488,503,501,498,488,477,492,561,572,563,562,554,561,559,562,566,569,555,545,549,545,547,538,550,547,550,550,549,552,536,521,519,511,510,516,518,517,510,522,521,519,579,586,581,557,576,578,573,495,500,494,498,495,502,489,500,499,493,506,504,503,513,507,487,497,457,530,528,538,532,543,539,541,535,537,536,545,537,545,546,549,541,541,544,542,538,541,547,537,538,546,543,549,538,545,556,549,541,543,542,550,500,492,501,510,476,501,501,481,478,496,490,497,494,503,444,438,426,430,444,505,513,510,514,519,516,529,526,516,514,517,513,521,522,517,519,525,513,523,533,536,535,545,531,542,540,544,543,549,536,539,548,546,552,544,540,533,543,523,520,525,522,515,517,515,536,541,539,540,568,560,564,561,556,552,566,558,558,563,556,568,584,560,558,562,487,492,493,502,483,495,496,491,485,489,559,575,573,559,570,567,563,562,554,569,574,564,560,554,565,554,567,564,561,571,573,562,574,563,562,557,560,570,564,520,518,515,511,514,485,483,489,484,485,494,488,488,492,479,457,456,469,452,471,459,573,571,567,573,556,566,568,577,568,567,572,573,457,469,461,465,464,476,464,477,480,470,479,480,475,463,481,521,525,522,525,526,527,523,531,517,540,527,529,533,535,525,532,534,527,540,529,539,526,545,548,538,532,547,551,544,519,512,512,518,513,506,510,512,514,515,518,515,548,544,543,540,548,550,542,540,545,533,546,544,544,554,541,533,534,537,544,532,529,532,590,527,509,512,505,461,466,469,464,465,464,440,430,436,434,421,421,537,519,525,527,520,527,518,532,541,529,529,528,537,532,534,520,535,529,525,520,534,577,564,564,568,561,570,567,567,573,498,526,533,524,530,528,537,537,530,527,536,534,533,538,537,550,544,542,544,539,546,545,538,543,542,546,546,539,553,553,553,561,551,490,512,502,486,494,479,482,488,491,497,493,496,490,497,501,476,484,478,479,487,481,482,486,590,598,588,584,587,535,535,533,535,539,526,562,567,558,564,559,569,553,565,511,526,520,516,521,516,510,521,520,514,524,515,529,526,519,523,522,527,528,527,530,524,527,573,577,589,582,578,585,589,585,584,551,545,551,541,490,501,486,497,494,502,508,505,506,499,508,510,504,509,566,553,556,563,563,556,559,554,554,562,558,555,547,561,561,520,539,531,528,525,539,521,527,530,540,530,540,528,522,526,527,502,511,508,507,509,502,504,504,507,506,504,508,504,511,540,525,535,528,527,550,548,547,559,550,546,555,543,501,511,505,510,503,504,503,497,503,505,508,498,498,524,524,535,534,539,525,537,532,533,521,526,531,534,525,535,538,533,537,546,547,532,543,539,548,536,536,556,551,549,551,541,552,514,522,524,514,517,510,516,524,498,512,511,507,471,479,464,472,471,464,475,464,461,461,469,459,447,450,461,455,459,470,460,464,456,455,559,558,548,570,543,566,565,543,553,559,571,457,457,470,474,458,486,469,466,474,461,477,484,525,523,526,520,523,529,519,523,520,524,525,517,517,525,507,516,545,551,535,545,544,539,543,545,557,563,551,557,554,552,560,550,501,500,500,490,502,491,492,506,484,497,499,495,495,501,492,485,494,562,570,596,566,570,586,583,578,577,573,566,559,576,569,564,483,496,500,480,511,496,495,481,500,498,491,488,477,491,587,554,567,572,577,589,567,581,536,531,535,535,537,532,538,533,535,561,560,561,572,570,568,585,554,569,571,564,553,569,567,503,507,475,462,457,468,469,468,536,528,545,536,533,549,541,541,524,553,547,547,553,544,561,552,553,555,547,553,559,554,490,513,512,510,512,508,511,509,501,516,477,473,474,467,472,470,476,467,478,467,479,476,468,473,507,497,501,499,494,499,501,493,495,498,506,485,498,523,500,503,492,491,486,497,492,498,494,566,551,556,536,537,541,558,558,513,515,518,513,517,515,541,541,545,537,536,542,543,538,535,535,533,538,532,555,539,542,541,540,490,488,504,543,546,542,542,556,542,542,542,576,568,558,569,577,563,568,507,517,506,511,498,510,514,515,509,515,513,511,511,515,514,514,543,541,544,546,549,555,538,554,544,541,541,548,550,550,548,553,549,517,513,519,518,511,518,510,514,515,515,528,532,552,543,552,545,512,546,550,555,547,548,538,556,540,552,538,539,538,507,509,510,513,513,512,520,511,512,512,512,515,533,528,527,541,531,527,549,551,557,563,512,500,500,498,485,446,443,446,532,534,531,537,534,534,542,541,537,544,547,549,548,543,543,547,550,540,546,523,529,529,527,550,554,554,557,548,560,552,555,568,548,542,511,516,518,506,515,507,506,512,520,506,482,479,481,476,475,481,476,488,485,483,485,484,471,479,492,492,487,496,487,491,484,494,498,494,488,491,492,490,494,486,489,477,469,478,481,477,477,483,489,488,492,492,484,487,491,482,477,466,475,464,472,464,469,486,485,480,476,477,482,491,498,486,482,493,538,539,540,526,523,539,530,560,557,563,540,573,560,566,550,554,556,559,571,549,560,505,490,487,502,492,496,497,500,489,525,537,528,544,547,544,550,541,544,556,538,553,539,542,555,550,483,498,503,496,498,503,487,500,508,497,504,487,486,491,502,496,496,512,503,450,458,459,451,456,459,457,456,459,457,488,485,495,495,498,497,501,490,488,495,498,524,527,514,528,518,524,521,527,528,530,523,581,534,535,532,543,531,541,532,528,545,528,541,528,553,561,553,549,563,553,569,557,524,528,526,523,518,524,527,520,526,523,522,522,526,530,520,515,527,526,543,546,542,547,549,543,573,566,560,576,559,561,569,565,566,562,489,491,490,495,495,496,497,500,505,500,489,496,499,489,495,493,486,501,492,565,569,562,586,499,498,497,504,506,488,496,492,498,494,511,499,483,500,587,575,592,563,582,579,581,575,575,575,584,577,573,587,569,579,537,543,529,530,537,537,520,517,520,516,511,524,516,514,510,517,524,522,521,516,521,538,544,542,543,531,539,539,532,543,539,546,545,563,558,569,564,576,561,581,499,491,485,500,495,547,552,558,550,557,553,553,537,555,554,545,550,548,541,553,542,552,550,545,559,558,561,523,528,519,526,516,523,518,512,524,522,537,551,534,554,557,555,534,545,543,546,503,491,490,511,507,499,507,500,497,505,514,550,560,553,558,557,551,552,540,534,526,564,562,579,559,563,572,565,569,555,582,576,574,518,518,524,514,527,524,520,520,517,521,515,518,515,519,521,533,530,536,533,529,524,524,531,550,545,570,552,551,560,549,540,552,560,556,574,564,565,555,552,561,557,551,554,555,493,496,496,494,500,517,490,505,496,507,509,539,559,549,549,544,553,516,521,513,513,514,533,532,529,522,534,534,529,534,531,535,531,533,533,534,534,536,535,528,531,553,557,557,567,560,556,552,558,563,552,560,557,558,485,500,506,508,499,488,506,507,483,505,490,495,491,506,502,491,494,497,499,506,435,442,432,430,449,436,429,442,437,434,440,443,442,435,440,449,526,520,543,526,532,535,531,537,529,544,533,523,573,556,566,572,568,566,526,535,536,532,533,530,555,551,547,546,559,562,563,555,564,518,515,512,511,503,509,556,565,542,555,570,565,520,524,541,553,548,540,538,551,548,553,541,551,509,507,511,519,504,509,503,511,498,499,511,509,506,504,557,553,552,553,551,552,555,552,540,557,546,550,556,543,539,552,540,547,546,531,503,490,501,506,504,500,502,553,546,541,542,544,494,485,506,507,496,505,504,490,495,500,480,469,468,467,474,467,466,472,473,471,473,469,468,561,556,581,565,570,561,576,479,488,469,479,457,473,473,475,480,521,521,522,520,518,513,528,520,531,538,535,533,529,534,538,546,550,559,532,549,532,552,537,554,490,491,492,487,482,495,497,480,489,495,492,487,492,582,586,569,577,584,570,573,575,573,578,553,572,515,493,520,499,508,513,511,512,508,511,550,553,552,564,547,552,511,504,497,489,507,488,508,472,475,469,469,469,477,477,471,472,478,470,472,483,556,566,562,564,568,555,556,567,568,473,502,505,485,469,494,479,491,495,500,507,498,488,505,479,498,485,493,516,499,450,444,439,425,514,513,510,520,511,517,538,539,538,542,539,549,550,552,545,551,553,560,539,546,515,510,522,460,452,452,455,468,464,462,460,461,446,450,463,452,462,462,452,466,455,440,453,440,440,433,437,449,460,461,455,443,444,548,543,557,548,546,545,560,551,536,538,550,540,575,561,565,559,507,505,503,490,507,499,511,509,500,498,502,503,505,526,528,535,526,525,533,533,529,529,527,523,533,540,539,545,545,532,542,539,537,537,557,556,539,553,555,556,562,550,556,551,553,556,549,547,546,565,560,493,512,508,517,514,509,519,520,515,516,499,502,501,505,502,508,511,502,506,503,453,456,465,473,457,470,475,469,456,465,461,457,507,493,488,505,496,517,493,509,503,505,488,508,538,538,534,540,536,536,537,536,528,523,520,526,526,519,521,523,542,553,557,546,546,543,538,534,537,530,532,537,530,538,533,535,542,541,561,560,566,576,568,562,572,554,562,554,555,577,564,581,561,503,507,506,503,506,505,507,570,603,598,598,591,594,586,589,590,594,598,591,578,535,545,540,536,536,547,547,542,538,546,542,492,500,496,500,491,503,490,494,490,504,549,543,553,549,544,554,553,563,558,563,570,560,573,567,571,558,562,560,572,511,507,509,500,497,497,495,509,507,535,535,536,535,523,530,527,536,529,535,524,529,529,532,534,545,543,536,542,542,538,546,539,541,540,541,541,538,544,540,544,553,559,558,550,545,547,560,550,564,548,551,557,541,547,553,564,519,509,529,515,519,510,510,521,519,519,525,505,495,498,497,498,489,491,483,488,500,488,489,483,475,484,485,489,475,480,492,496,485,471,472,504,505,511,502,497,502,500,500,505,505,491,496,495,497,493,507,502,508,502,504,545,541,551,551,550,562,549,555,561,555,509,504,518,518,515,506,556,562,560,550,557,553,572,559,559,565,572,528,536,530,525,535,533,530,531,561,554,568,556,559,561,565,545,571,563,561,516,515,518,513,517,509,508,527,516,523,514,518,518,477,474,474,484,478,472,478,481,473,478,475,475,475,483,481,465,466,462,463,455,460,462,462,470,471,467,461,460,464,458,470,471,556,554,553,545,557,560,550,567,550,565,546,557,547,541,541,541,549,556,547,547,547,552,560,544,555,552,548,550,524,522,518,518,517,520,520,519,524,523,517,514,528,525,525,524,557,563,561,557,559,553,565,559,532,528,529,527,525,528,534,525,491,470,481,537,527,525,515,514,528,525,532,526,509,522,538,528,583,563,568,568,563,567,579,564,570,571,569,572,572,521,505,494,496,491,586,584,578,577,592,573,592,586,588,602,584,572,591,594,575,599,580,509,515,498,516,510,509,504,518,513,509,537,528,523,545,517,531,536,534,529,530,531,535,532,524,521,522,524,516,528,521,526,518,518,523,520,520,525,525,519,524,519,528,521,521,522,549,550,547,539,542,549,546,543,563,553,556,552,561,562,565,562,554,564,559,514,520,513,524,520,527,526,507,523,524,532,516,511,483,478,482,490,482,479,481,483,481,480,479,482,495,484,491,479,491,488,492,491,492,492,485,489,491,493,486,487,486,494,567,569,582,571,518,519,526,534,471,478,468,470,468,478,468,477,477,472,471,478,466,473,478,436,457,441,445,442,441,456,445,456,451,435,453,439,442,454,452,452,441,445,534,538,535,525,539,529,528,540,536,530,537,534,544,557,557,545,553,544,546,541,555,560,550,542,501,499,506,506,489,513,498,516,508,504,507,543,535,535,531,530,538,539,536,564,546,568,551,544,560,557,561,557,567,552,511,513,521,509,519,519,509,506,513,505,502,502,504,501,498,526,527,529,533,523,527,521,520,520,522,522,521,520,521,517,536,540,538,534,535,533,542,538,535,544,544,540,547,557,556,534,493,496,498,492,498,505,489,496,503,478,482,486,490,485,488,500,502,507,507,504,504,508,497,506,504,504,551,553,552,544,547,558,547,549,549,544,544,544,552,551,546,550,548,552,557,559,556,562,562,555,554,567,562,564,480,498,494,495,511,455,444,447,453,452,455,443,444,451,441,440,449,551,534,544,535,536,548,525,518,515,521,515,521,520,516,522,519,517,521,513,517,514,520,535,542,544,555,540,546,537,543,545,549,557,550,497,509,516,519,507,526,512,525,512,505,502,505,494,492,489,481,468,468,465,467,466,469,468,463,475,457,564,548,558,564,557,559,558,564,484,482,483,495,475,494,483,497,495,512,490,500,491,501,493,490,492,435,442,436,440,439,435,434,517,513,516,517,521,521,518,516,511,513,510,516,514,520,519,517,518,519,517,518,521,520,514,521,515,518,525,516,526,516,526,519,523,547,533,527,539,531,537,529,544,536,545,542,539,543,532,551,533,546,492,495,496,498,494,502,497,492,500,500,489,502,505,495,502,508,505,495,488,491,520,523,529,534,534,520,499,514,505,512,507,504,544,574,567,548,556,543,561,565,564,533,551,566,565,563,543,516,518,517,526,521,523,518,515,560,574,565,577,582,577,495,478,483,466,485,493,482,478,470,472,493,554,539,555,558,537,539,546,562,579,570,574,566,567,562,558,499,496,500,508,495,509,504,501,504,514,501,504,521,531,529,531,539,525,524,523,516,528,524,515,526,527,537,532,536,526,529,521,535,538,530,567,568,565,558,554,561,533,523,530,525,542,533,537,537,530,526,509,513,515,524,514,511,512,514,513,520,517,511,516,520,540,543,562,564,572,569,570,564,565,565,561,566,562,525,517,524,516,511,514,514,510,520,512,518,518,524,520,506,515,517,525,517,516,470,473,469,473,475,474,446,427,439,430,438,445,448,430,430,440,437,440,437,523,518,520,502,515,514,518,515,520,520,521,517,517,517,514,517,521,517,516,514,515,515,527,518,512,512,523,515,519,513,521,517,530,529,526,533,530,532,576,573,558,568,569,569,564,569,561,585,559,558,560,570,529,531,540,532,526,535,529,539,527,530,535,530,535,537,537,535,532,530,542,530,536,558,550,567,545,552,563,573,552,552,559,560,533,558,574,554,561,559,557,517,510,503,509,508,498,510,564,577,558,552,554,578,546,562,513,510,493,495,496,497,499,547,548,544,555,520,515,509,507,517,508,514,512,520,525,505,513,512,511,507,510,560,541,545,550,554,556,554,541,549,550,545,540,553,549,552,545,546,548,543,540,550,535,546,539,545,550,548,514,499,499,508,436,447,434,445,446,442,428,443,442,445,446,444,440,436,441,444,447,454,554,557,552,551,563,543,556,551,546,512,506,502,505,494,497,491,476,503,481,490,479,485,487,490,480,483,487,519,516,521,509,543,551,548,549,555,548,551,543,528,522,526,533,522,527,529,529,535,521,524,525,539,558,547,552,547,556,551,490,482,492,483,473,478,481,476,487,470,477,486,485,483,475,474,470,483,473,478,484,484,472,491,618,598,594,598,610,605,589,593,587,602,516,533,523,538,530,538,533,528,525,493,486,502,495,500,494,496,493,498,503,554,568,550,547,549,570,560,555,569,567,552,556,564,525,526,526,530,527,524,526,527,531,526,529,525,523,528,525,527,526,524,525,525,541,563,559,555,553,545,553,551,544,547,548,544,500,509,508,456,467,465,470,470,469,474,461,459,461,467,470,464,468,457,466,470,550,550,557,547,563,555,538,538,558,473,469,478,471,483,459,483,481,520,520,519,515,524,522,524,523,516,526,516,514,521,526,528,518,518,514,526,519,516,515,513,520,517,519,510,505,522,513,514,518,512,511,518,509,522,537,532,536,523,535,531,535,526,530,532,579,550,499,492,492,510,503,502,508,495,496,493,487,498,498,485,493,495,491,492,498,498,494,490,490,488,491,492,496,494,536,542,575,563,555,558,568,569,561,567,539,559,564,561,570,558,497,488,502,499,488,477,485,503,536,529,531,542,532,532,541,545,543,542,531,531,537,522,531,531,529,521,532,521,527,529,522,522,526,525,527,518,525,532,521,534,524,534,525,529,531,526,531,529,536,552,536,543,550,542,544,536,539,537,536,554,544,547,516,525,516,531,522,522,527,538,540,535,553,548,533,541,546,536,542,495,490,483,489,506,499,481,472,469,470,473,471,469,471,544,546,530,554,545,533,549,549,556,542,524,529,522,524,513,521,526,526,533,541,534,540,545,489,468,486,471,471,490,471,478,471,472,481,474,483,476,473,534,532,524,531,532,522,524,534,537,532,525,527,527,524,544,542,535,538,540,540,530,541,545,539,537,541,548,548,548,543,554,555,558,549,552,528,558,546,539,555,552,550,546,537,538,565,486,482,491,480,489,496,556,564,562,548,560,553,572,551,570,570,562,561,562,550,562,555,560,504,498,494,503,503,490,504,492,488,481,486,479,479,488,483,564,581,581,556,558,560,552,561,560,562,559,552,554,582,565,556,573,554,569,567,571,482,485,496,488,486,485,500,487,501,497,483,484,460,463,456,467,467,456,457,465,459,454,457,461,462,460,457,464,458,465,550,545,548,555,550,550,544,555,550,555,544,550,549,559,580,572,558,576,563,585,568,567,571,561,562,582,576,576,504,516,517,501,507,548,551,546,549,546,549,557,546,552,539,545,539,540,543,539,546,545,547,542,541,540,501,508,482,478,488,491,482,481,486,487,503,497,509,508,547,545,544,549,550,543,538,542,546,531,554,556,547,544,550,549,550,507,503,501,507,505,504,503,499,514,505,508,504,504,556,550,566,569,556,512,508,511,499,507,504,492,503,496,572,545,555,562,556,567,547,551,557,556,556,541,481,500,479,488,504,501,504,499,482,505,485,493,494,495,442,445,453,444,451,456,452,451,447,452,446,530,543,543,542,551,555,550,545,543,547,541,549,559,554,569,560,555,560,568,551,562,501,488,495,491,500,505,503,506,506,495,567,574,586,566,566,571,567,574,563,564,501,503,499,498,503,484,508,504,502,465,477,468,474,467,468,460,466,473,463,462,466,476,577,569,575,570,562,564,573,566,558,568,570,574,574,561,573,554,552,557,554,558,567,557,567,561,574,562,560,503,493,500,490,483,479,476,482,480,496,480,487,485,486,464,599,607,496,517,520,506,515,508,499,526,517,524,518,514,508,519,510,514,542,549,553,542,545,547,550,533,534,485,496,503,498,538,526,534,551,549,525,523,529,524,527,530,524,531,526,521,527,566,561,568,558,570,570,564,556,555,546,561,569,562,516,501,512,529,523,517,523,511,512,518,522,527,524,477,476,483,476,473,482,478,478,476,485,478,479,477,477,486,482,494,487,486,487,493,490,487,492,488,491,484,486,485,487,487,495,565,558,580,566,565,568,559,558,511,510,497,501,503,486,498,517,508,501,508,511,493,493,484,481,490,491,494,485,482,481,494,485,551,532,535,537,540,535,531,539,539,544,546,543,540,539,564,557,553,550,552,563,551,557,551,522,540,541,537,541,539,535,466,472,473,472,479,465,473,469,476,472,458,449,445,450,460,453,533,532,535,529,527,528,527,520,529,536,534,535,531,537,528,533,542,570,579,574,565,572,578,546,552,553,537,559,537,541,493,499,496,500,494,500,503,499,502,495,507,497,494,493,486,495,492,489,496,490,496,494,488,496,498,490,494,489,497,489,497,496,488,543,537,538,545,537,559,542,557,548,553,557,546,544,551,548,537,546,548,560,549,549,554,560,564,538,537,495,517,509,500,561,559,569,555,561,574,563,570,505,500,504,511,486,500,486,501,516,442,450,440,439,445,455,441,434,451,446,441,446,452,454,431,447,462,452,448,443,554,545,546,550,540,542,547,543,550,536,540,547,544,548,552,554,552,559,549,512,511,524,515,524,516,516,522,522,521,528,529,507,513,492,483,485,482,486,488,486,453,458,458,461,460,459,479,482,479,582,584,568,573,571,561,580,572,570,559,578,502,508,502,514,504,498,506,498,501,505,499,504,536,542,542,554,548,530,547,545,540,550,545,522,520,510,519,523,527,522,520,524,520,525,525,523,523,523,525,533,532,524,533,542,539,526,534,529,527,540,537,504,491,494,503,496,493,493,496,492,500,503,585,590,591,599,508,516,501,512,508,508,503,520,495,511,495,501,511,509,504,542,537,546,536,536,542,537,540,535,535,576,559,565,567,564,570,558,507,509,499,510,503,513,509,500,496,502,505,508,533,529,519,530,538,523,525,534,529,528,530,529,523,528,531,529,528,533,526,527,524,527,531,522,542,548,549,522,516,524,511,516,522,517,513,518,525,526,527,528,524,521,522,502,493,492,488,498,493,502,496,501,489,491,494,491,500,502,490,495,494,499,497,492,569,593,584,604,589,615,588,586,581,588,529,535,544,535,539,536,536,521,461,472,486,472,475,476,476,467,473,482,469,473,467,476,534,528,533,529,528,525,540,530,531,530,526,532,535,525,529,526,525,523,526,521,523,521,525,525,526,526,525,542,555,561,555,555,559,550,542,551,564,540,563,494,497,481,490,554,563,546,549,547,559,559,556,551,544,554,554,554,535,553,549,542,544,553,547,554,544,551,552,541,556,545,545,550,552,542,550,556,563,557,511,505,506,515,574,564,549,569,566,573,565,553,555,574,569,603,557,567,560,565,495,511,511,504,504,510,500,509,516,504,535,536,543,539,554,550,516,547,538,530,499,498,499,502,498,509,508,516,502,560,576,561,565,562,551,579,567,573,558,567,562,573,573,522,505,498,506,508,524,522,522,515,473,470,468,473,471,480,482,485,485,469,479,481,488,472,473,485,473,479,479,484,503,499,499,509,502,499,499,500,502,504,504,497,500,495,491,496,495,484,483,481,483,480,478,442,446,457,451,440,458,446,456,443,460,449,450,448,454,449,546,558,553,558,556,542,536,551,536,535,507,504,511,513,513,513,510,501,500,511,507,510,499,555,565,560,556,564,568,566,568,561,568,552,550,560,558,550,490,552,545,538,555,539,552,521,522,514,519,522,529,524,525,526,529,493,499,501,511,503,497,499,507,504,489,558,566,559,498,474,481,493,485,480,492,471,484,469,497,493,476,481,482,492,473,539,548,537,541,553,546,540,542,548,548,540,546,543,506,508,501,504,501,507,497,517,508,505,502,497,547,553,564,558,553,560,570,493,505,496,497,500,500,495,511,503,504,497,508,509,499,463,464,462,458,455,462,457,462,454,470,467,467,460,455,498,502,503,502,493,504,488,507,500,501,501,501,546,547,543,542,482,483,488,476,470,474,483,477,471,482,454,441,452,437,455,451,440,451,447,461,430,446,442,448,444,434,537,549,544,553,546,534,539,542,502,508,508,487,501,505,511,562,562,549,494,488,492,462,459,460,464,452,462,461,464,466,469,537,551,550,553,553,544,554,559,587,565,561,569,538,523,524,530,521,521,535,530,522,524,527,478,496,492,499,497,496,496,490,496,494,489,495,491,490,490,499,588,602,604,601,586,593,585,594,592,587,599,595,588,584,547,549,552,555,550,538,550,546,554,559,543,551,511,494,498,496,497,495,496,504,496,492,503,494,494,496,504,497,496,504,494,500,496,500,505,512,514,551,548,538,531,548,533,546,546,558,536,542,540,539,538,535,548,499,481,499,496,505,496,572,551,554,540,554,539,550,551,544,558,514,517,504,496,509,497,511,510,500,510,499,509,507,509,496,511,499,511,549,557,554,569,570,566,561,549,570,565,553,490,483,486,482,474,459,472,466,473,470,464,472,472,557,560,485,493,564,555,561,573,566,556,557,573,472,458,469,466,485,472,476,493,486,474,473,553,545,538,552,549,540,541,548,549,542,533,541,537,549,546,544,546,532,523,534,528,539,523,528,568,565,496,518,516,530,509,515,525,520,515,480,476,491,489,484,487,476,490,482,484,490,491,486,484,482,512,507,506,505,505,504,525,550,551,554,553,536,540,516,488,498,575,559,565,567,571,555,574,556,559,567,546,547,559,553,496,488,485,493,503,485,504,504,499,501,503,570,587,559,575,554,590,562,565,551,572,580,585,520,518,520,518,508,520,525,522,534,520,523,506,503,516,528,483,481,487,490,478,476,488,479,480,462,467,468,474,470,468,471,475,465,475,501,506,512,561,494,502,487,491,499,493,499,503,498,492,497,519,513,512,517,509,522,555,517,523,526,513,511,522,522,534,513,523,505,508,489,506,500,505,502,499,500,471,478,480,474,481,481,482,483,465,466,461,468,477,466,438,456,450,454,454,459,459,457,608,585,580,598,577,583,590,589,578,587,582,585,591,583,594,583,578,586,575,553,559,545,526,544,557,542,550,529,509,504,489,499,505,497,487,496,477,460,455,462,459,458,458,459,462,459,483,482,489,485,477,488,576,574,565,570,573,569,565,502,497,489,494,493,495,491,498,493,502,496,503,544,542,544,542,545,538,527,543,534,546,543,532,546,543,522,522,529,560,555,556,556,561,497,491,502,505,509,498,496,505,503,505,507,506,509,507,500,498,499,505,504,547,541,540,539,550,544,544,549,542,540,539,541,543,548,543,549,550,543,567,557,565,562,553,568,558,568,564,563,560,564,488,492,493,503,490,502,485,498,494,480,489,559,535,553,548,557,551,548,540,562,551,555,555,552,551,557,549,566,551,541,554,542,552,548,546,495,471,470,478,467,470,471,539,548,545,548,552,545,554,545,563,560,550,554,561,563,551,552,567,563,549,562,551,501,490,490,500,500,488,491,494,501,499,498,516,496,495,494,496,486,490,489,497,492,498,500,504,493,577,570,559,563,566,571,568,564,572,564,558,497,481,492,500,466,464,463,466,456,460,459,461,456,463,462,556,562,551,550,560,574,553,549,560,563,569,560,474,461,472,548,551,554,553,546,550,550,558,552,554,546,559,556,555,556,552,555,557,551,545,557,557,520,511,517,510,526,511,520,526,519,486,495,487,488,499,484,491,489,479,490,485,484,480,488,481,473,498,496,487,490,498,499,490,495,489,497,489,497,491,496,497,492,497,490,495,460,466,470,458,463,471,455,457,464,466,459,465,446,436,456,438,447,438,446,449,445,567,536,540,532,537,537,530,536,538,490,508,501,505,501,508,499,500,526,532,532,538,514,525,525,521,513,523,521,522,521,520,538,545,537,547,546,546,550,549,551,546,550,538,538,546,542,540,548,537,550,545,544,549,510,507,502,516,502,497,507,501,505,498,567,543,558,561,558,561,591,579,498,491,507,500,486,497,501,497,489,570,572,543,535,539,530,532,530,531,540,533,554,557,551,560,568,556,563,550,544,553,572,564,553,514,516,510,508,503,499,505,511,507,574,565,571,559,513,511,523,512,527,518,513,511,518,518,538,538,544,534,545,541,533,533,540,538,541,540,530,536,534,545,572,574,562,567,567,561,501,505,488,487,495,494,486,499,488,497,486,492,499,498,579,571,575,572,563,562,572,584,571,561,576,571,562,559,570,563,514,519,514,510,509,503,513,460,465,465,461,456,469,472,463,457,465,472,465,459,470,470,475,475,476,469,477,480,472,474,474,476,472,459,461,464,468,461,465,460,468,459,460,454,461,467,476,471,465,482,474,472,475,464,569,552,548,563,563,558,579,552,573,559,566,556,564,518,521,521,512,520,519,516,505,495,490,499,492,501,491,486,493,470,471,477,471,472,470,467,474,470,464,461,465,470,461,481,484,484,488,480,480,482,481,483,485,478,482,492,483,487,502,497,503,504,500,498,499,499,496,500,508,497,501,535,522,524,531,527,527,532,525,527,522,531,519,522,520,534,524,526,523,517,531,529,523,529,530,524,536,531,539,545,543,547,548,539,540,517,518,523,555,560,562,552,557,557,555,504,508,520,505,506,515,511,487,483,476,493,508,494,501,505,498,505,497,536,538,543,541,541,539,532,548,540,544,538,557,554,571,540,523,520,523,526,532,527,540,538,540,541,537,532,534,533,531,532,532,536,538,532,530,561,563,559,561,499,491,458,469,565,565,560,555,554,557,567,566,555,560,554,560,556,544,565,558,564,550,565,563,561,553,559,544,555,558,553,556,513,462,464,454,448,455,458,446,463,448,453,446,451,459,449,456,461,467,462,466,456,451,463,466,465,550,557,546,545,550,555,549,547,541,490,498,487,498,492,497,566,551,563,546,564,572,558,561,485,475,469,465,476,480,480,485,548,546,553,550,555,563,552,543,560,549,542,550,548,553,549,550,566,566,554,553,561,563,559,560,560,570,498,497,498,490,500,508,515,491,495,496,495,503,457,470,459,468,467,462,458,463,477,452,560,551,553,551,555,533,547,554,552,545,541,544,548,548,558,538,496,501,500,502,506,487,489,559,548,554,552,550,559,566,555,552,545,536,539,569,553,555,542,465,469,474,473,468,495,476,471,478,473,551,553,541,567,541,561,552,569,558,565,564,566,567,569,561,564,545,566,568,531,526,530,532,530,528,527,525,536,534,547,548,537,521,538,529,521,538,474,546,543,532,536,543,545,545,546,563,585,558,586,576,572,564,573,578,564,564,524,556,543,550,548,548,556,483,495,502,505,499,483,554,542,563,548,554,563,550,543,558,551,538,573,552,545,557,560,511,505,501,508,514,508,500,511,503,510,501,507,537,519,527,545,553,557,556,490,501,512,491,491,491,497,491,486,490,505,481,486,495,470,477,471,476,472,482,469,477,477,472,470,473,551,551,550,546,538,555,547,554,551,549,554,551,549,555,548,551,543,558,554,488,499,486,499,503,461,475,476,479,475,476,469,474,546,554,551,550,552,537,544,522,526,525,531,518,524,522,527,529,522,513,533,530,528,537,535,534,475,487,476,479,487,472,458,524,533,536,535,524,539,535,534,524,528,532,522,550,535,541,541,540,540,533,542,544,537,549,543,552,552,548,554,541,543,557,546,551,552,545,548,485,478,482,480,489,488,500,472,492,501,485,563,558,551,564,555,554,562,553,552,561,567,486,500,504,484,507,502,512,473,472,542,543,568,484,482,475,479,465,471,457,475,472,484,478,467,473,463,473,479,551,567,549,571,580,564,558,560,559,565,571,569,575,571,556,508,494,500,497,489,493,510,499,476,481,483,479,482,474,476,473,484,480,480,475,455,453,448,450,453,443,454,452,443,442,434,450,444,450,539,541,540,542,528,530,536,545,533,546,535,554,528,543,548,514,516,521,515,520,511,522,514,516,512,539,536,548,536,542,538,545,535,543,536,536,510,492,507,502,501,487,501,500,501,493,485,503,500,491,503,484,482,480,490,488,483,494,487,490,494,495,491,467,476,480,477,476,480,490,479,486,475,479,474,477,468,476,486,484,455,440,444,448,445,450,454,452,453,456,453,457,453,473,476,492,488,520,505,510,504,515,509,512,515,510,509,509,507,515,549,542,536,541,544,546,544,537,544,540,552,535,544,549,547,533,544,547,543,546,495,490,489,485,493,586,563,520,536,537,523,526,538,513,517,523,515,522,522,522,507,517,538,537,543,535,536,538,533,533,540,535,533,541,541,542,539,537,542,539,543,558,570,554,555,560,553,557,556,556,555,556,561,558,571,561,556,535,531,555,556,549,484,481,488,488,491,488,490,485,444,452,422,437,448,439,452,434,436,446,442,531,524,516,537,529,525,536,553,537,545,542,548,544,549,556,544,552,563,552,570,557,561,553,560,560,561,563,564,516,517,524,523,534,526,522,531,525,538,529,505,516,513,508,515,509,512,510,516,514,518,500,503,504,500,507,501,493,500,485,502,497,495,492,493,491,488,488,486,492,490,490,493,455,450,450,461,508,488,492,500,498,497,490,489,497,487,499,495,504,476,492,493,492,501,578,560,568,561,559,557,550,554,547,546,548,545,549,551,554,553,553,544,513,497,499,497,509,501,502,492,500,495,502,493,497,497,572,565,571,571,579,564,594,566,579,576,584,583,590,566,574,514,530,523,514,521,520,531,529,516,520,522,479,476,479,486,483,483,485,479,485,479,475,484,486,479,483,487,479,472,479,479,589,611,596,592,592,603,594,543,540,547,547,543,543,542,530,524,520,536,536,532,535,532,525,530,533,529,524,527,538,528,526,534,531,527,568,565,567,569,574,573,563,528,520,520,527,513,523,542,542,546,526,540,542,540,532,550,560,545,478,476,488,482,465,467,490,471,481,484,475,498,491,489,490,489,486,489,488,493,503,499,494,486,488,494,557,555,556,557,565,568,560,563,555,550,538,542,549,547,552,549,545,500,483,486,470,487,493,480,487,479,473,472,484,479,480,453,468,448,474,468,460,452,448,460,455,468,462,466,458,464,587,572,570,574,576,571,582,585,570,585,583,583,582,586,590,591,583,494,497,490,491,499,503,505,530,540,532,541,540,548,544,545,538,539,569,555,557,568,568,521,513,499,515,505,507,506,507,516,505,554,548,542,538,547,541,544,543,554,548,547,549,542,540,539,545,524,536,534,540,529,539,532,535,545,541,515,496,501,501,493,487,497,496,573,588,585,580,591,600,596,599,587,591,583,583,582,579,529,523,524,510,517,544,504,553,530,460,454,465,462,462,451,472,462,460,458,460,458,548,546,558,554,541,549,544,546,548,551,553,565,550,544,533,541,545,549,543,537,556,542,548,540,549,545,467,468,479,473,485,473,482,470,485,472,483,467,486,472,479,478,480,489,481,489,478,473,484,493,470,478,480,489,475,556,573,548,584,571,562,568,565,558,494,485,506,506,488,504,509,516,501,495,502,500,504,503,507,473,462,463,470,471,458,452,466,573,567,563,571,567,567,565,483,471,473,483,476,476,484,491,479,470,529,548,542,548,553,542,538,535,548,548,546,546,523,523,533,526,530,534,524,525,526,523,523,532,524,551,559,554,553,545,552,487,496,496,488,488,483,484,496,483,497,483,487,481,481,483,489,487,494,472,466,466,473,469,469,476,474,476,468,469,468,563,559,558,568,566,545,558,506,501,504,494,500,494,521,512,506,512,491,489,474,484,486,482,477,492,502,494,498,499,492,493,501,500,479,489,476,480,479,479,494,488,485,461,466,465,463,475,457,460,456,452,459,469,463,456,452,464,464,485,577,564,498,502,518,519,510,499,515,496,497,512,501,504,442,426,434,437,427,449,445,436,428,528,536,516,515,521,516,527,530,564,562,563,556,565,560,578,563,576,562,564,565,569,562,539,552,545,551,537,527,525,526,520,474,493,602,589,592,578,589,590,574,584,578,597,564,552,550,544,549,548,551,550,530,524,530,525,523,492,494,492,491,499,503,493,579,593,578,590,519,514,503,511,509,509,517,514,496,508,530,533,525,529,532,531,524,531,537,533,526,539,537,533,537,538,538,543,535,528,554,551,542,551,540,554,544,547,544,548,549,544,542,543,518,520,526,514,502,506,501,508,501,510,509,507,504,527,521,526,537,537,530,532,536,532,523,534,527,543,540,536,538,541,540,542,533,541,543,546,540,547,542,539,541,535,549,540,549,552,544,536,534,545,546,551,462,475,487,474,486,490,477,490,491,481,475,487,489,501,565,572,565,599,594,568,573,586,576,581,524,532,528,526,526,528,525,501,485,489,480,479,481,491,489,495,491,493,495,496,489,491,497,493,493,495,488,497,496,493,491,535,527,529,531,531,521,560,555,555,554,557,544,569,470,489,479,485,483,493,500,476,499,486,494,492,501,487,487,445,452,453,456,471,462,576,572,573,588,573,568,571,597,576,578,565,584,568,551,554,555,561,550,539,567,555,548,549,550,556,528,529,530,514,527,533,522,514,513,522,517,525,534,503,517,502,500,503,504,483,497,497,495,485,496,469,469,456,447,453,466,456,483,485,494,496,494,486,513,506,509,510,511,511,514,511,511,510,512,513,510,509,516,551,556,547,520,547,545,556,552,542,509,511,506,522,513,558,571,558,559,554,569,563,565,557,562,563,567,564,573,546,568,565,517,513,515,503,503,523,483,489,492,485,480,488,484,494,491,498,497,501,494,496,498,497,495,502,495,499,500,498,500,498,500,501,498,501,497,490,499,503,499,448,467,456,465,462,461,460,453,456,448,467,460,458,463,467,463,504,550,537,527,526,534,539,526,526,541,538,535,535,470,474,460,471,477,472,473,544,545,548,544,533,551,540,544,549,550,551,532,536,542,538,538,570,581,568,573,563,568,568,565,561,570,575,576,564,556,569,557,571,511,518,509,586,577,573,574,574,594,582,575,570,579,580,572,580,578,508,532,523,529,529,534,530,529,591,579,570,581,575,577,595,592,586,571,584,586,525,531,535,540,523,526,523,524,527,574,572,582,581,575,584,579,526,529,531,536,525,517,532,575,584,583,579,588,584,586,597,588,541,542,533,532,532,481,459,471,481,470,475,477,484,473,472,478,459,475,475,462,466,523,518,521,517,532,528,527,519,530,529,527,522,530,528,521,523,542,536,531,536,537,536,536,526,535,556,555,560,555,550,546,552,555,540,549,545,537,478,469,473,469,481,473,479,547,567,565,544,552,553,559,541,546,550,545,554,551,543,549,497,503,509,501,503,493,503,500,500,494,507,482,500,507,512,506,497,499,507,500,510,500,508,508,515,508,519,514,510,512,515,514,513,513,516,514,559,556,556,557,548,552,554,545,556,555,551,554,550,556,558,555,557,550,494,501,506,506,503,507,520,512,503,500,501,520,502,492,506,510,513,507,517,509,463,464,458,458,456,464,458,459,467,468,462,480,457,466,455,455,503,508,515,504,510,514,498,499,567,561,557,566,553,562,556,560,563,557,555,555,547,559,552,557,554,543,491,484,505,490,493,497,501,500,493,511,500,500,501,489,503,496,507,496,502,511,499,505,509,512,556,550,552,529,528,536,531,526,535,533,574,556,562,560,506,509,493,505,508,514,502,491,488,490,485,487,493,484,483,483,487,488,476,461,476,474,474,462,472,469,482,476,480,477,483,471,469,471,477,466,469,465,472,469,473,469,494,491,492,490,485,494,555,549,541,541,544,543,550,546,550,559,555,573,562,561,561,565,568,571,560,565,565,573,549,564,561,573,571,502,499,500,506,503,515,501,500,506,495,501,497,501,505,501,501,504,502,499,571,575,574,569,566,568,578,566,577,578,562,566,565,560,518,495,511,502,500,506,515,515,514,522,522,525,507,515,510,538,544,535,541,541,549,536,541,521,516,513,520,521,515,525,518,525,528,515,520,519,549,547,558,553,548,546,569,582,574,562,578,544,530,519,510,521,520,533,532,528,515,502,504,503,511,507,509,502,503,500,500,499,492,497,504,495,459,471,469,468,468,467,437,433,438,446,432,431,439,426,429,435,442,433,426,524,522,517,539,536,529,531,537,537,528,529,530,531,537,535,562,565,555,561,555,573,568,530,529,533,527,527,523,526,532,532,475,478,492,488,481,480,472,467,480,480,489,480,469,481,525,538,545,542,541,542,550,542,548,542,544,541,552,535,540,551,536,553,535,546,540,548,512,512,505,510,506,515,511,505,546,537,546,538,541,540,542,541,545,537,539,534,536,537,539,535,535,533,540,531,527,541,540,530,524,529,531,529,569,554,571,581,555,585,564,563,570,494,498,491,498,492,494,493,485,495,488,493,481,506,489,558,563,568,550,573,558,563,561,557,562,565,559,494,500,501,503,501,503,495,493,482,496,496,490,488,484,487,496,495,578,590,578,581,574,577,585,584,567,482,486,489,481,484,478,543,541,548,541,543,547,547,540,543,539,547,532,545,544,541,545,533,554,546,549,545,545,542,520,505,515,502,522,523,574,584,564,566,579,574,576,580,498,501,498,506,508,512,505,496,495,506,505,490,491,506,458,528,520,521,524,526,522,519,520,524,525,527,546,533,537,548,530,544,547,534,540,539,541,560,547,544,549,547,540,544,548,541,537,536,535,550,552,463,471,466,462,469,476,466,477,472,464,558,561,565,558,575,562,585,563,567,503,504,504,481,497,509,502,517,517,506,511,479,492,467,477,481,477,480,473,491,476,566,544,558,536,567,560,557,544,516,481,480,479,483,483,476,475,470,478,484,478,476,468,464,481,481,482,582,598,600,607,584,598,603,561,563,551,556,568,567,559,522,517,529,519,538,526,531,528,526,525,524,518,500,504,501,502,497,499,504,499,506,505,503,503,506,505,502,506,506,501,499,497,503,483,482,473,476,479,489,477,477,479,486,479,491,492,483,485,487,481,579,574,564,585,509,498,510,504,506,507,503,512,500,498,503,510,523,505,498,502,516,516,501,504,510,501,553,545,562,552,553,558,544,547,557,560,563,550,557,533,550,496,525,504,514,491,507,480,478,472,491,479,480,480,480,481,482,491,501,502,500,504,500,503,495,505,500,498,502,477,485,479,479,481,476,483,479,486,484,481,477,467,465,458,462,461,453,459,463,450,472,460,458,463,469,483,473,477,473,472,482,588,596,593,590,588,595,603,579,586,579,593,593,582,532,530,532,524,532,540,527,522,544,538,532,533,498,492,494,490,504,495,497,482,603,602,545,531,536,530,533,527,530,553,568,558,567,558,542,543,539,559,551,519,520,526,520,530,526,528,523,526,525,525,523,522,523,521,543,556,559,554,547,561,569,510,531,524,516,517,503,502,505,503,498,506,502,501,507,505,509,500,497,477,485,477,490,482,470,476,480,472,477,482,471,605,608,596,589,611,552,542,549,537,551,508,495,497,496,504,503,494,478,500,498,493,499,498,494,496,491,501,496,493,502,493,532,528,530,529,533,473,476,568,587,595,589,588,580,588,584,576,575,516,531,520,528,518,512,531,520,538,527,530,523,537,554,568,570,537,560,476,483,477,487,487,480,482,478,473,473,470,486,464,480,522,518,522,522,534,530,534,536,530,537,538,537,538,533,527,533,528,533,528,535,538,534,531,534,541,533,549,554,556,544,521,523,525,529,521,520,539,534,534,535,548,540,533,548,541,530,535,548,553,554,553,555,554,555,532,554,544,551,478,470,484,494,480,441,457,461,466,458,472,455,459,460,443,447,463,467,465,577,582,596,590,575,592,542,549,543,554,546,544,531,542,545,533,551,548,540,544,490,487,499,496,496,493,500,498,495,494,499,490,494,491,491,488,500,492,494,493,491,494,487,492,508,504,507,511,509,537,557,542,546,544,543,547,539,542,541,552,550,536,547,539,549,550,549,532,544,553,505,501,501,492,505,504,504,503,497,575,569,557,565,570,573,504,483,480,497,499,494,552,558,565,550,542,556,556,541,538,542,559,569,574,494,483,491,489,490,486,482,477,499,483,490,476,491,492,484,486,490,486,512,588,587,574,593,586,580,583,582,557,538,556,544,542,531,539,558,542,542,545,545,545,493,484,505,497,497,494,498,488,503,506,501,510,501,502,508,504,504,500,509,513,554,560,550,536,531,533,534,563,574,578,566,564,549,563,553,555,574,562,555,564,570,512,509,512,512,515,518,507,515,513,513,507,512,524,519,566,564,575,565,563,567,566,565,570,573,529,523,525,536,528,530,527,524,537,529,529,530,533,530,537,555,563,566,563,555,559,488,486,482,489,485,494,547,529,522,544,537,543,554,539,547,547,551,542,544,551,541,541,545,542,550,533,552,518,526,519,523,517,523,519,522,525,514,512,535,547,537,548,548,543,544,544,549,547,577,568,563,559,513,518,520,526,515,515,515,511,509,511,522,510,514,516,447,456,452,461,463,460,458,456,456,457,469,607,596,586,581,584,585,606,588,580,609,578,599,588,567,550,540,550,557,558,556,537,496,494,507,501,510,491,458,466,515,500,498,497,496,506,487,509,509,494,507,501,495,526,518,537,519,537,529,540,523,528,529,527,521,530,534,535,527,531,522,477,473,482,477,480,481,484,480,549,544,553,560,560,551,560,556,550,562,564,562,553,552,566,566,559,494,497,504,519,493,494,503,496,504,478,462,468,463,562,553,554,558,560,567,570,562,558,473,494,498,477,493,489,489,498,498,477,485,488,491,587,567,563,566,578,572,571,572,572,568,586,591,562,573,525,541,536,537,536,524,526,530,524,527,545,545,544,557,557,557,563,563,483,474,482,473,483,484,485,465,474,466,476,477,468,471,579,571,586,577,479,470,483,541,541,531,540,545,546,535,548,540,543,539,541,546,544,548,544,549,541,549,543,559,546,556,552,539,538,484,487,485,502,506,493,492,503,481,498,519,485,493,474,475,468,464,467,470,472,476,464,466,548,547,536,533,552,541,540,557,549,549,543,549,474,483,481,466,471,488,476,474,468,489,563,561,573,578,577,587,560,561,573,506,504,491,494,463,464,459,456,465,456,456,551,555,552,551,547,556,549,547,552,551,519,514,513,518,524,518,515,515,516,508,510,514,514,543,549,541,539,544,545,535,551,504,496,501,501,511,496,504,501,466,469,466,481,472,462,470,475,468,474,466,476,472,481,478,473,471,471,478,480,475,475,483,472,476,444,451,444,446,446,451,435,435,545,542,531,546,536,542,543,538,533,542,555,544,538,537,542,531,547,541,540,541,507,516,524,516,519,522,513,516,518,517,521,521,538,541,539,538,540,541,535,535,550,550,542,549,547,541,470,483,455,444,457,458,449,451,441,456,434,573,551,566,552,541,557,551,560,555,557,560,557,558,549,554,561,566,563,550,564,527,519,517,524,537,510,509,504,508,507,479,482,479,471,482,483,474,485,484,497,489,575,579,578,602,596,573,563,597,576,573,580,576,586,575,561,481,474,485,476,491,482,479,482,474,478,483,487,481,521,510,519,523,521,527,516,532,528,529,537,534,536,537,537,542,550,542,541,531,542,543,538,556,539,537,553,545,477,479,464,465,474,469,471,475,485,474,469,462,476,478,467,469,475,470,575,560,554,576,576,560,559,515,513,516,507,511,510,517,518,510,513,506,507,510,511,508,509,536,550,544,539,548,538,545,549,542,545,547,533,549,541,549,547,538,539,539,551,537,545,548,526,526,526,521,530,534,528,521,531,536,525,537,537,537,523,440,472,449,465,472,466,459,462,457,462,556,562,561,553,570,565,551,553,554,559,554,552,553,566,568,551,552,566,559,555,554,504,499,496,491,501,508,505,488,496,489,494,499,490,574,558,539,570,576,552,569,553,551,556,551,568,529,523,522,528,520,521,523,530,527,523,524,522,519,533,525,531,524,545,477,449,521,517,532,527,535,525,526,527,521,521,524,510,519,514,514,518,511,533,530,529,530,534,529,529,529,532,529,530,532,525,537,529,524,531,533,565,569,562,564,574,575,564,562,522,530,517,522,530,523,496,491,487,590,597,597,578,601,602,605,599,556,549,543,506,500,496,498,492,483,503,496,504,503,512,501,494,493,494,503,483,497,499,509,491,494,496,494,496,496,494,500,508,506,511,518,503,514,510,511,509,509,509,528,529,531,519,527,528,534,534,531,533,530,529,520,519,522,552,541,545,542,543,545,546,547,545,543,542,551,548,554,543,550,548,560,544,553,504,498,500,500,508,500,485,508,495,499,489,492,482,498,515,515,516,514,511,511,514,514,516,516,539,547,538,545,528,528,536,504,489,497,481,485,480,492,564,542,544,551,546,546,549,540,543,550,548,538,542,553,520,523,517,518,523,519,523,516,515,517,522,519,517,565,560,567,557,566,562,564,567,563,567,563,565,560,572,555,564,562,549,553,545,546,559,543,549,547,553,562,558,554,549,543,492,487,487,564,578,573,560,564,574,590,570,583,511,520,526,475,475,461,472,462,478,470,472,477,466,470,461,481,481,477,480,483,472,482,485,483,504,504,497,509,500,504,502,505,505,505,507,502,497,500,502,503,504,495,484,486,481,492,481,486,493,495,503,496,496,530,532,530,515,530,534,531,525,530,521,590,596,585,595,547,559,560,549,546,553,545,558,552,560,559,557,552,557,551,527,499,495,502,506,497,499,505,496,485,490,479,483,480,485,486,480,508,505,511,546,545,547,551,548,540,550,543,546,550,521,517,514,514,520,520,517,524,525,545,547,568,556,568,555,561,568,498,498,509,504,501,506,502,499,508,504,510,503,459,443,452,544,548,548,535,528,538,541,545,535,545,534,542,528,532,542,529,538,543,533,542,517,511,518,518,518,523,523,514,525,551,542,536,552,548,548,554,543,557,554,498,497,490,489,495,504,487,502,483,491,501,492,508,489,501,502,501,507,504,503,542,533,531,519,531,526,531,526,533,532,537,537,552,549,554,552,552,552,552,518,519,530,521,551,549,545,556,560,543,550,521,509,515,512,487,482,484,482,482,485,479,476,486,485,472,481,478,487,473,497,497,498,535,536,540,533,544,541,529,546,537,539,546,559,509,486,501,502,491,492,483,505,500,496,511,457,460,456,465,459,454,450,457,454,497,499,500,498,497,511,496,501,497,504,513,512,510,512,514,515,512,524,514,504,517,511,514,508,515,509,541,538,541,540,547,540,542,533,539,532,549,544,537,543,533,540,549,519,521,519,514,521,522,524,519,519,522,514,557,546,566,562,554,542,557,556,551,551,557,559,563,542,556,516,523,521,520,509,511,526,520,524,518,516,503,501,508,502,505,507,503,510,497,504,501,505,512,507,498,507,498,500,507,501,484,483,492,481,490,474,497,478,490,458,461,465,461,467,461,483,569,558,575,565,491,495,499,500,496,552,557,566,537,540,557,551,548,541,486,488,492,489,481,472,481,587,577,578,536,530,534,501,512,553,557,554,564,555,571,557,560,553,555,549,559,565,559,556,550,547,550,560,542,545,507,514,511,508,506,455,464,505,504,493,503,496,496,502,510,507,497,497,520,504,508,492,561,559,565,568,565,489,507,511,493,492,487,481,487,578,567,561,563,557,570,499,494,475,483,492,492,495,495,489,500,495,502,577,513,517,510,550,551,555,553,550,540,562,552,549,549,534,551,539,546,546,532,555,556,499,494,507,506,503,506,496,495,504,601,590,597,603,604,585,597,536,537,533,528,539,531,540,527,531,537,534,533,537,567,552,560,520,522,521,520,523,528,524,502,507,508,512,500,505,503,509,501,504,507,495,506,509,502,504,526,528,533,531,522,523,523,528,524,540,534,534,544,534,537,540,540,543,540,538,526,542,537,541,536,542,545,540,549,539,537,546,547,547,544,541,541,548,550,475,487,532,533,530,523,533,534,529,534,527,527,537,537,531,535,537,532,541,535,536,541,571,570,570,576,569,565,543,537,557,539,538,539,530,541,543,498,503,496,495,500,505,500,505,506,508,499,510,563,545,541,547,543,541,545,537,535,547,539,546,545,546,548,488,506,496,495,504,493,500,489,506,494,497,477,494,490,485,489,494,493,494,494,496,489,490,492,492,490,541,520,528,577,585,596,579,578,588,582,581,588,586,577,588,528,548,540,529,533,535,542,529,542,553,474,496,489,517,515,511,535,552,552,546,544,543,552,543,553,542,554,526,512,524,507,509,526,516,527,502,498,530,513,511,501,480,482,483,484,479,482,479,483,476,477,457,454,460,449,454,454,461,449,459,448,456,456,456,451,451,433,424,427,433,523,515,507,506,514,520,523,517,523,511,527,529,540,536,531,532,535,535,526,532,536,526,541,533,539,534,536,542,555,538,545,547,554,547,543,490,477,474,472,462,471,479,488,472,472,475,473,479,477,480,477,546,549,546,527,547,546,544,549,534,547,546,548,543,462,482,475,470,477,478,464,466,473,487,480,472,471,469,468,430,445,441,450,449,448,450,444,463,534,544,551,544,546,554,545,541,545,545,547,539,546,570,577,578,579,563,576,571,569,564,567,576,566,575,563,549,537,560,540,543,496,499,505,506,505,470,454,451,450,458,458,445,453,449,457,476,469,475,474,471,481,476,481,473,476,477,475,569,576,574,554,558,564,566,572,578,572,568,551,558,504,513,514,517,508,504,507,504,502,512,518,508,510,513,553,566,554,549,539,567,553,547,550,563,551,556,559,515,527,509,515,521,518,511,504,507,509,519,488,489,491,495,487,493,502,488,491,485,494,480,485,474,489,480,486,483,487,479,491,485,472,471,487,473,477,481,484,471,480,509,497,501,507,494,504,503,555,552,553,572,574,593,579,566,569,571,582,567,569,561,521,528,528,532,520,530,528,534,521,534,521,502,511,511,506,511,510,506,505,511,502,504,505,507,497,499,497,494,497,498,492,497,453,460,466,452,445,463,460,480,581,563,469,497,483,494,484,481,477,536,535,538,557,533,544,535,540,556,550,540,537,556,556,547,548,548,543,554,560,535,554,549,550,557,551,542,557,555,545,478,487,466,476,478,470,475,466,546,543,547,548,539,555,553,540,551,547,556,490,509,478,489,489,513,502,461,458,488,483,552,576,567,587,577,578,563,568,583,503,494,497,487,483,493,493,505,476,487,492,505,486,488,498,565,583,589,586,587,586,583,555,584,569,586,575,573,572,592,571,581,587,570,565,588,605,585,582,570,593,507,511,507,513,508,510,502,499,507,513,559,563,561,559,556,563,565,555,567,561,564,525,523,525,519,514,512,491,482,477,488,481,478,448,463,451,463,464,555,555,548,558,551,559,555,552,547,556,533,557,555,547,551,543,546,548,543,555,507,476,482,478,487,487,501,487,497,488,482,577,585,583,582,584,581,581,578,590,589,584,577,530,526,533,538,536,540,530,527,531,529,522,529,523,523,528,532,545,531,532,524,524,535,537,535,547,540,491,497,503,594,592,592,592,594,593,599,558,550,558,559,554,558,559,559,546,553,548,558,556,560,555,548,477,495,491,475,482,488,469,488,482,601,535,532,527,532,539,532,538,536,531,557,552,544,558,551,480,490,475,480,482,474,487,485,479,486,482,482,505,510,494,486,540,538,534,534,532,543,529,541,517,513,518,502,510,512,510,557,562,551,567,568,554,526,519,525,519,523,521,515,521,496,490,497,486,488,484,489,490,496,497,487,492,496,489,478,478,487,482,485,487,483,483,479,464,476,471,480,480,475,478,442,462,448,449,445,445,448,457,450,450,452,443,440,452,434,445,444,456,444,550,552,550,541,550,551,539,549,563,547,548,537,542,545,538,553,542,556,546,520,514,520,513,519,522,520,518,515,525,514,520,533,532,537,540,532,540,532,534,539,528,533,530,538,540,538,532,531,526,532,542,531,539,541,553,490,486,506,511,505,487,499,497,487,501,497,500,502,505,500,494,537,534,527,543,546,525,536,538,540,532,530,538,462,485,495,477,481,474,483,489,483,488,493,561,565,562,578,575,569,569,573,502,495,505,504,492,489,512,509,501,502,506,505,507,497,497,457,554,546,549,556,552,541,548,541,537,545,544,544,549,543,547,547,537,531,543,538,550,507,503,503,499,498,507,500,499,502,509,515,506,578,543,558,561,576,564,556,487,491,487,483,493,486,494,503,506,503,506,508,501,495,566,503,498,511,496,502,500,497,507,502,504,500,506,515,516,509,503,505,507,547,543,569,561,543,557,562,555,559,563,570,503,517,517,519,513,520,517,518,519,565,565,568,562,554,560,560,571,567,561,554,505,499,505,506,563,562,572,539,570,575,556,571,569,567,582,555,562,580,571,522,514,506,508,511,502,506,509,513,506,521,501,518,518,518,518,517,519,524,522,570,584,568,572,579,582,591,573,571,550,538,531,541,533,543,529,534,533,533,523,521,522,522,516,521,524,520,546,550,544,546,556,548,550,560,547,553,553,550,547,542,552,544,557,557,552,539,536,527,533,530,536,535,530,541,545,537,527,527,558,572,565,549,574,567,563,562,566,566,568,575,515,529,523,522,525,512,527,514,533,549,508,496,503,508,506,504,506,497,513,501,514,507,494,498,497,498,519,496,507,503,504,502,503,520,520,512,525,520,566,571,561,578,574,559,565,521,520,529,511,496,496,499,502,497,502,496,500,500,500,501,479,476,478,482,478,478,475,476,484,440,449,443,445,439,438,445,458,455,444,564,550,560,553,551,540,554,552,544,561,566,541,548,551,542,555,547,555,549,549,555,542,549,554,555,546,539,547,546,545,505,503,497,510,506,488,487,489,488,488,483,492,482,493,491,502,500,495,493,492,490,501,501,496,496,500,500,493,479,495,474,484,481,482,480,484,482,483,514,510,505,510,510,515,504,505,512,535,541,540,546,548,542,546,542,543,549,543,537,542,540,550,548,506,501,514,509,514,506,506,516,510,507,513,516,526,544,547,543,537,546,549,551,546,535,543,561,480,490,483,488,484,477,482,482,480,481,481,471,492,501,526,535,537,538,539,532,534,525,563,551,554,540,534,544,543,555,547,550,553,540,546,548,543,538,549,549,546,549,545,523,522,527,538,523,537,528,524,534,533,482,480,492,489,487,550,554,549,549,550,548,560,484,462,465,486,472,465,474,469,471,473,482,467,469,483,479,496,503,490,490,497,491,494,493,496,499,508,493,556,545,512,505,503,510,508,511,512,504,558,553,553,559,550,552,549,538,545,543,549,550,561,489,506,511,492,495,477,497,495,466,471,459,463,469,549,538,560,545,541,545,554,533,560,553,541,502,507,502,501,503,508,496,501,506,496,504,507,507,504,537,533,544,540,529,551,531,545,500,503,495,500,502,502,492,490,504,503,503,501,503,501,503,544,541,558,549,561,554,561,570,488,484,490,483,491,470,479,476,475,479,478,475,473,556,576,568,555,553,544,554,550,566,550,545,542,549,547,545,533,544,547,535,553,550,487,485,482,474,482,479,480,476,475,471,485,475,495,488,500,494,487,491,495,494,481,486,479,491,495,490,487,486,488,528,536,525,524,536,533,534,523,532,534,531,561,569,559,550,551,554,567,552,539,541,568,509,507,513,503,511,504,505,509,502,508,510,505,495,493,508,549,561,546,561,558,545,536,567,493,499,481,476,484,495,495,501,456,464,466,458,466,462,468,456,462,551,550,547,561,571,506,542,531,526,535,530,530,525,539,524,524,534,523,530,497,507,504,511,502,509,533,526,521,515,539,533,529,483,471,488,487,607,586,586,579,524,529,521,532,530,528,533,522,537,525,523,496,508,511,493,506,501,511,504,514,509,505,511,521,508,520,508,593,568,564,562,559,575,557,559,558,555,576,486,496,502,505,497,565,561,556,571,566,565,561,558,565,557,564,565,573,567,553,562,488,500,490,505,496,480,541,573,546,565,567,572,566,556,514,520,523,522,518,521,526,533,534,523,524,537,520,544,522,517,515,512,515,516,513,520,513,552,550,544,543,549,546,555,560,540,543,514,514,505,511,502,496,509,502,465,465,463,470,474,459,463,469,487,482,466,477,477,470,479,473,468,471,463,472,547,529,547,556,548,544,545,537,535,526,543,554,542,542,537,544,534,500,492,514,512,511,511,516,503,511,517,508,509,562,567,560,563,553,564,555,553,569,565,566,522,529,525,513,527,530,517,534,510,513,528,530,511,508,514,509,508,509,502,505,507,507,515,511,506,512,496,509,492,504,502,500,500,496,499,505,489,499,501,474,477,474,482,484,477,475,476,463,450,459,454,459,469,458,581,579,576,568,583,530,538,526,544,538,526,534,554,549,549,547,571,568,555,548,498,496,507,502,504,501,492,496,515,508,512,514,514,519,516,518,512,502,525,503,547,543,545,544,559,540,543,545,537,533,540,542,545,541,481,471,477,485,483,543,540,546,547,549,553,540,546,540,544,558,555,548,505,507,507,503,507,506,505,504,506,508,508,513,502,502,502,505,505,507,503,505,500,500,502,501,501,505,501,500,531,525,534,543,547,535,537,540,534,537,544,544,546,547,540,542,553,547,491,479,463,480,484,476,479,479,473,466,471,484,485,471,481,486,477,468,477,474,489,469,477,472,477,489,490,494,481,540,561,514,522,509,511,568,570,555,561,572,568,574,559,577,562,562,566,567,562,556,562,572,565,503,522,506,525,514,515,519,517,514,511,525,514,506,470,449,447,451,451,452,443,456,449,443,441,455,448,454,446,507,504,504,493,505,498,505,499,502,509,500,512,540,459,477,455,465,476,469,466,469,456,445,463,463,461,457,465,450,460,465,455,554,564,561,558,554,560,563,550,571,549,563,562,553,550,564,552,569,555,511,531,518,512,519,519,526,528,533,529,517,511,511,503,510,503,508,512,510,514,499,512,506,509,508,508,495,491,501,497,494,496,495,493,497,492,499,497,501,492,453,446,455,457,462,460,451,462,457,456,452,455,463,457,441,454,443,452,450,532,541,531,531,527,540,533,535,534,528,540,541,531,539,533,540,534,559,566,572,559,568,574,566,565,557,565,564,565,563,539,518,528,536,527,520,524,540,531,507,498,502,498,507,495,495,510,491,504,495,493,482,499,495,504,496,488,505,557,582,563,563,570,565,588,564,575,555,542,552,501,499,494,588,580,582,581,582,580,587,587,526,519,541,522,536,528,525,467,480,480,482,473,480,475,477,486,479,478,487,473,479,482,485,477,542,538,545,539,543,550,550,548,544,543,545,551,546,544,548,555,552,539,554,541,550,547,546,491,490,490,489,490,489,495,480,485,474,486,488,496,576,574,568,573,582,570,595,577,586,566,576,542,531,523,521,529,527,529,535,568,572,562,565,569,553,549,568,560,556,572,554,552,561,492,500,503,496,507,501,504,501,502,459,459,509,510,512,522,514,503,506,517,510,514,551,504,495,499,495,499,502,504,505,503,541,550,539,542,535,536,572,556,551,565,555,554,542,530,536,527,528,559,543,556,543,555,559,541,544,547,556,536,542,553,549,558,492,504,502,497,511,512,505,512,515,506,502,507,509,507,518,499,504,499,499,490,486,485,489,498,498,502,497,495,497,499,500,493,502,494,491,493,504,494,497,503,483,483,485,485,476,519,515,504,524,508,565,567,556,578,571,562,570,579,569,564,568,524,500,518,521,526,526,509,522,514,517,520,528,522,514,516,478,484,478,484,481,483,483,480,481,490,489,490,497,492,489,498,488,485,496,488,487,499,491,487,491,567,569,554,553,546,556,530,524,526,525,528,526,528,522,528,526,519,524,528,516,541,528,527,533,533,544,550,530,528,519,532,499,490,495,492,489,498,502,486,494,498,495,494,498,563,565,567,563,559,553,562,561,555,556,498,494,493,480,506,512,504,458,453,460,464,454,460,455,464,456,465,466,559,557,556,565,566,569,553,565,569,514,504,511,519,521,526,545,553,542,551,556,548,558,550,540,549,544,562,551,557,561,559,564,549,504,510,504,507,512,513,518,519,511,511,509,507,514,539,545,539,533,541,542,538,547,551,535,543,544,566,565,561,566,560,571,558,534,522,533,525,532,523,534,524,522,516,509,518,511,517,506,511,510,511,519,518,515,517,513,511,507,505,510,509,511,510,501,503,500,508,506,501,502,498,506,506,504,507,498,501,496,503,495,498,501,502,503,499,496,504,497,508,485,493,482,480,479,482,476,480,475,491,487,483,470,465,461,458,462,465,464,450,462,460,462,461,502,495,499,489,500,496,488,496,498,501,497,502,576,568,575,581,574,562,567,551,567,573,566,494,499,504,500,522,514,513,536,543,543,554,553,551,550,543,541,546,543,538,541,551,548,545,539,542,545,536,546,544,555,543,549,540,543,540,541,554,543,539,522,519,518,527,524,518,520,524,553,542,559,549,503,503,503,495,503,509,503,495,509,532,542,544,535,533,529,535,531,535,532,524,526,521,519,523,525,521,521,517,532,515,541,544,540,564,563,565,559,548,544,558,556,558,547,549,504,522,516,526,526,524,518,511,516,483,487,490,494,478,489,488,485,487,465,451,443,455,455,442,444,445,453,545,546,554,557,551,555,539,565,554,549,551,540,539,537,540,540,540,534,536,546,533,530,541,544,536,546,479,483,510,509,509,505,507,541,533,540,546,540,541,538,542,527,533,538,497,499,507,499,506,505,496,499,494,502,502,506,497,546,497,498,500,492,503,488,485,491,492,490,502,487,541,549,551,549,552,547,527,518,526,519,516,524,551,551,533,541,547,491,506,496,505,503,504,502,510,500,505,503,540,541,564,557,559,562,561,557,553,555,553,556,561,561,569,568,566,564,520,543,540,544,539,568,567,560,563,563,516,504,510,466,516,510,515,497,516,514,502,493,496,505,513,496,497,566,573,564,563,525,512,506,505,516,517,478,480,482,481,478,478,480,480,472,478,483,482,477,485,482,476,451,447,456,447,445,539,541,545,535,556,539,550,552,551,471,465,549,560,546,556,542,556,545,545,545,566,552,556,547,554,548,559,552,563,558,563,550,561,554,558,489,498,495,512,494,510,504,490,490,494,482,487,489,493,493,496,492,496,585,584,587,580,591,586,579,577,586,585,584,576,579,581,581,473,479,467,474,493,489,493,479,491,543,542,533,534,534,540,543,545,532,541,550,557,534,532,543,544,542,538,537,506,501,501,495,505,522,516,507,501,505,560,554,544,561,542,550,557,551,554,565,492,500,498,494,496,520,520,520,517,523,508,520,517,527,530,514,512,518,520,530,522,522,525,554,556,551,565,554,555,563,563,564,567,551,564,562,562,549,564,556,559,558,555,489,494,497,483,495,506,501,500,515,528,509,522,522,515,509,508,518,518,514,517,515,508,564,561,566,567,569,565,563,561,514,518,527,528,526,518,526,536,529,519,506,505,506,505,503,503,512,504,505,506,497,490,495,499,499,491,492,497,502,501,442,457,467,459,461,461,467,458,464,449,461,505,485,483,486,485,481,479,486,482,481,473,487,478,585,579,559,558,573,561,564,568,555,557,511,506,494,506,519,504,509,515,511,502,519,507,510,498,504,506,509,508,502,503,499,503,503,503,505,498,504,501,508,508,500,543,541,543,531,539,515,511,518,515,510,507,521,513,512,511,512,504,510,507,555,556,557,557,558,559,563,564,560,550,556,547,556,557,561,552,548,513,531,517,517,514,510,512,519,515,514,503,505,503,497,503,501,496,503,511,507,500,499,507,500,508,505,480,480,477,483,481,485,486,478,481,483,483,487,482,476,452,451,457,454,454,451,456,459,450,463,446,455,454,463,554,550,548,543,558,543,545,560,555,545,552,553,557,539,553,537,543,561,553,551,499,491,499,482,498,493,507,481,471,482,491,479,460,476,483,468,560,563,557,569,546,562,569,565,559,554,561,564,548,551,524,518,538,520,513,523,520,513,503,506,482,473,483,487,475,475,482,467,460,468,465,468,464,471,464,550,561,557,556,556,551,560,561,557,558,553,559,558,555,540,552,550,553,559,562,487,479,473,488,495,496,482,480,483,488,460,472,484,480,552,539,551,545,550,551,551,555,544,553,548,548,550,552,554,563,558,546,550,559,554,553,552,484,505,487,505,488,497,501,495,505,507,503,498,505,513,507,507,503,570,575,570,564,565,581,567,586,585,501,508,497,509,506,511,497,509,506,495,496,471,474,472,476,469,465,469,473,561,549,563,563,561,556,561,561,556,548,552,553,547,548,559,551,569,493,497,488,499,491,497,495,493,453,435,439,442,546,540,540,542,541,546,546,551,560,551,554,550,556,546,548,551,495,512,501,507,517,492,504,499,471,478,471,469,481,482,471,485,486,486,478,488,479,487,493,478,480,488,487,489,480,489,482,476,497,497,510,542,546,552,556,552,534,546,499,481,479,483,480,487,489,485,483,443,447,447,459,456,440,462,452,444,567,557,559,562,564,559,561,557,559,546,551,545,494,490,498,501,500,506,483,493,487,498,497,504,491,496,492,501,503,504,483,491,494,497,495,502,475,464,471,470,469,469,470,471,468,473,467,473,570,570,566,560,568,567,563,566,574,567,564,559,563,571,567,567,557,567,509,525,526,517,504,516,529,525,521,519,531,505,509,501,505,502,501,505,502,503,502,503,504,482,481,480,481,480,483,487,486,469,481,479,466,433,451,443,450,445,438,441,446,445,460,446,443,447,449,448,448,557,539,545,553,539,549,556,546,551,543,549,536,548,545,521,527,518,554,539,541,511,513,512,516,513,514,509,504,511,508,503,509,504,545,538,554,542,548,551,537,542,545,544,540,548,544,541,550,540,551,549,549,548,541,529,538,542,551,538,547,487,496,485,482,491,490,503,564,560,557,551,472,462,464,453,533,528,523,539,532,526,524,529,522,536,528,525,531,564,545,561,568,559,560,562,560,562,564,558,561,559,566,532,534,534,544,538,528,538,539,532,543,540,537,540,534,539,548,540,497,514,499,497,509,505,500,534,531,532,529,534,527,532,529,530,535,523,525,523,522,531,526,525,523,520,523,525,517,532,522,518,520,524,513,523,518,529,525,523,525,525,526,519,532,530,529,530,531,533,541,549,551,547,542,557,541,547,540,552,461,466,474,456,474,478,522,541,533,545,531,533,540,537,555,550,544,546,543,539,536,540,545,545,541,508,510,512,514,509,503,508,516,507,506,504,509,508,498,505,520,522,525,520,530,518,522,520,518,525,527,552,548,540,556,545,551,550,563,560,514,504,504,525,509,515,513,515,512,537,526,532,538,528,532,526,527,540,526,543,562,568,495,502,500,484,492,501,541,539,527,532,540,520,532,523,513,525,516,523,523,519,516,517,526,538,535,535,530,534,525,529,528,531,528,525,529,530,534,566,569,555,566,561,567,563,558,569,561,571,537,535,529,529,531,533,534,527,530,569,565,573,565,569,571,562,573,566,559,564,561,502,505,487,492,495,492,483,476,499,496,538,539,546,538,536,532,537,553,557,553,553,547,558,551,550,546,546,554,561,543,559,550,570,545,562,557,556,552,552,492,504,497,510,501,503,508,510,493,511,498,507,504,562,564,550,576,568,565,555,552,574,568,556,571,562,573,562,566,574,571,559,500,509,499,501,513,502,492,501,517,500,501,508,518,511,504,516,519,523,518,512,510,519,525,512,517,515,526,546,541,549,538,537,546,548,534,542,540,544,548,530,536,522,525,519,518,525,521,520,519,518,518,545,542,551,541,542,542,551,552,542,548,549,551,552,548,542,526,521,529,525,526,523,531,529,520,574,561,561,573,565,580,571,570,559,568,570,565,561,556,575,553,566,560,476,469,489,472,476,486,468,482,487,471,484,485,484,494,482,495,497,469,484,534,528,538,536,539,536,543,533,530,573,565,569,561,566,574,572,569,537,527,525,522,523,509,501,511,494,496,505,499,506,502,549,562,561,586,563,540,574,561,560,573,492,511,503,494,499,504,500,488,500,491,490,494,500,492,585,579,578,579,587,596,577,582,582,580,594,577,571,574,523,528,527,530,517,522,537,538,500,500,499,502,505,496,491,509,502,500,505,492,490,506,502,557,566,556,553,560,556,566,499,493,492,490,499,493,480,502,490,493,592,582,571,574,585,570,574,585,583,540,535,538,533,570,524,519,517,524,519,531,517,488,490,487,491,481,482,496,491,489,488,492,488,505,507,539,544,550,542,537,537,543,547,541,540,553,501,498,508,504,506,514,498,507,498,498,501,508,503,495,567,570,560,556,535,559,556,560,544,554,522,516,523,523,523,514,524,520,524,526,515,541,539,537,543,539,541,538,534,539,538,548,542,535,553,553,556,545,554,550,546,554,535,556,566,541,544,548,542,490,480,477,485,490,487,472,481,479,489,472,479,491,478,491,490,493,494,495,489,488,498,504,502,515,509,505,505,537,532,531,533,530,525,534,526,535,525,536,517,516,518,517,517,522,512,523,524,512,513,518,507,513,513,529,531,528,530,562,573,577,569,545,550,554,547,545,545,552,552,549,542,502,518,508,500,516,515,503,515,511,513,517,505,526,525,476,477,485,480,485,474,483,479,479,481,482,475,473,479,477,479,473,482,479,480,483,480,474,471,485,466,473,469,467,471,570,559,545,567,557,561,548,557,551,547,561,564,572,495,508,504,508,511,496,509,504,510,491,484,482,476,482,480,474,467,474,479,483,476,491,474,479,483,593,591,594,594,591,591,599,602,589,594,597,548,528,548,532,544,549,539,525,522,535,533,537,535,530,528,547,539,535,539,533,496,569,552,554,545,556,552,504,531,534,526,525,524,532,511,521,532,517,520,520,473,484,468,484,476,488,492,494,483,479,480,482,486,485,489,454,460,469,468,561,563,556,562,529,539,527,533,532,532,524,530,565,573,547,568,558,560,576,559,555,538,513,506,518,509,514,519,507,532,525,512,507,517,512,522,495,497,491,489,487,492,494,492,494,493,501,469,480,468,475,533,523,528,535,526,524,534,524,527,526,533,543,555,558,565,573,552,555,571,578,569,565,560,488,504,490,508,486,497,489,484,491,497,558,551,558,555,562,560,547,552,562,567,549,560,539,541,559,541,548,471,477,479,469,476,477,477,473,469,480,467,488,481,479,475,487,474,469,481,474,466,470,571,580,564,567,563,560,560,567,567,560,561,505,492,508,500,501,504,496,491,456,467,460,469,460,465,466,476,456,542,528,559,547,561,529,548,536,548,543,551,553,543,541,494,504,478,494,492,500,491,491,504,473,455,464,461,459,453,537,556,543,534,552,559,575,504,487,492,494,467,501,491,496,496,487,487,502,498,488,583,580,597,583,582,572,572,589,566,582,585,544,520,540,531,528,527,515,510,512,506,511,508,520,522,521,514,527,517,534,515,522,515,518,526,524,587,590,584,582,584,586,580,583,595,586,580,581,571,540,516,522,482,513,500,514,515,516,523,531,505,519,475,519,533,498,485,486,490,540,539,548,553,542,544,552,546,548,540,546,549,545,484,482,473,481,473,479,485,466,495,496,502,503,488,509,502,500,501,505,499,504,502,493,499,506,536,531,539,535,542,527,532,537,540,542,531,503,512,567,555,543,537,559,547,551,577,553,555,561,550,568,554,514,505,526,516,510,509,514,492,513,511,511,504,503,504,523,524,529,522,533,537,538,534,528,527,534,526,496,496,482,498,493,500,586,584,588,599,592,602,602,591,590,530,562,554,550,560,552,552,562,572,567,559,556,556,556,558,565,535,530,537,523,553,550,556,570,558,547,549,557,556,550,552,513,503,509,500,503,501,500,503,514,448,457,453,450,453,465,449,488,480,479,559,569,564,566,565,560,575,564,554,562,566,551,558,564,558,517,522,521,519,520,517,525,518,523,515,523,519,524,511,516,516,507,513,503,503,510,511,509,516,512,511,507,509,509,535,541,547,543,542,540,538,542,546,539,550,551,537,542,548,544,546,552,474,465,493,476,470,474,490,454,481,478,477,520,525,516,528,520,529,517,526,524,518,528,527,522,523,525,521,527,536,528,529,518,532,526,534,542,543,536,554,506,508,509,512,499,511,502,504,511,508,513,518,507,511,504,507,510,533,542,546,543,535,543,533,535,542,561,569,555,558,560,567,492,503,502,505,502,516,576,577,577,571,577,579,570,562,565,532,509,496,513,524,522,516,526,510,521,520,518,479,479,479,487,479,477,489,474,511,515,510,514,515,508,509,507,500,548,534,540,537,542,544,537,544,535,545,548,497,505,509,493,496,492,496,501,501,504,504,496,498,501,505,486,504,552,516,509,516,516,505,525,514,511,512,517,515,509,520,515,501,505,514,514,514,510,529,527,555,551,542,553,555,556,552,562,555,547,558,473,487,497,468,471,490,461,474,476,481,461,451,456,529,526,528,532,532,535,531,527,540,541,543,539,539,528,539,523,529,539,536,528,529,534,535,531,536,525,531,524,525,523,524,524,523,521,530,515,523,524,531,530,524,524,525,523,528,546,540,538,538,541,541,541,530,535,540,540,539,534,544,529,550,541,487,483,483,485,475,506,499,490,495,503,537,529,541,542,546,548,545,537,547,535,539,541,548,539,523,540,534,544,539,532,541,506,503,503,509,498,558,568,546,554,572,563,545,562,565,550,578,558,559,567,549,499,507,502,508,493,504,520,430,440,516,526,519,514,519,523,520,524,514,520,550,539,549,542,549,542,539,548,551,554,552,550,551,551,547,539,547,543,506,505,503,496,493,497,558,565,560,561,566,569,554,562,553,562,555,555,554,564,562,555,545,535,541,545,544,537,551,546,534,538,549,535,541,542,535,536,546,548,543,546,481,504,500,486,499,501,487,496,504,501,502,499,501,498,504,500,497,494,496,499,495,495,491,503,507,504,497,497,506,503,500,553,532,530,542,528,530,527,543,536,530,542,531,530,524,539,540,525,525,533,525,534,526,532,473,471,470,492,476,555,552,550,565,559,501,477,465,470,460,469,464,459,454,451,463,555,546,551,544,543,554,554,493,499,491,496,508,474,504,492,495,495,469,507,491,479,555,536,541,558,540,552,555,551,552,549,547,553,534,554,555,553,559,547,497,508,501,508,492,489,503,490,449,447,450,445,455,452,444,448,456,443,557,555,553,542,558,555,562,555,554,556,559,547,537,534,552,542,546,543,545,545,530,537,537,507,507,513,506,500,516,497,516,511,507,509,507,512,560,567,557,574,572,521,519,518,522,526,520,525,522,522,524,549,545,545,542,545,553,575,566,570,564,562,576,586,580,568,577,567,564,497,504,494,496,496,501,500,503,491,485,517,501,499,495,492,495,489,500,494,558,554,483,470,489,479,493,493,485,467,482,487,490,497,502,500,498,500,496,498,491,501,512,510,506,503,508,496,498,502,505,507,509,496,511,510,494,487,509,510,571,558,570,570,529,527,528,519,531,505,500,500,498,503,498,501,503,492,496,500,499,501,483,488,492,486,487,477,489,485,485,484,491,490,500,494,490,491,494,491,486,512,508,519,510,516,512,510,541,532,536,546,533,539,538,548,548,533,543,542,537,544,533,546,542,540,529,546,539,539,515,511,507,507,503,500,514,502,508,508,509,497,501,535,547,543,545,540,544,547,536,545,545,557,548,553,552,556,547,543,552,546,546,543,532,533,532,533,527,542,529,528,537,535,520,529,526,478,476,474,479,476,478,474,481,477,474,479,482,483,478,475,479,478,554,554,544,554,541,555,557,561,550,558,553,546,559,552,544,549,554,560,548,484,473,490,478,481,477,473,470,476,477,475,476,443,443,449,443,463,543,553,550,558,560,538,539,545,542,549,552,555,545,510,506,507,503,519,517,522,519,520,522,520,519,520,523,559,541,552,550,559,553,546,557,544,552,528,519,529,524,516,533,548,540,494,483,459,477,471,459,465,459,451,462,467,462,448,473,465,458,460,459,456,468,474,593,579,582,579,587,579,526,543,524,524,529,520,528,537,528,527,537,515,522,510,508,507,512,520,553,530,550,559,563,535,568,556,563,563,557,580,560,547,551,549,496,500,502,505,502,505,521,517,526,518,522,523,551,558,574,569,557,563,558,559,562,560,571,564,574,561,565,526,517,521,529,528,525,501,499,503,503,501,500,508,484,488,490,479,488,485,478,486,481,476,485,481,471,482,476,479,478,480,488,481,476,482,482,480,480,479,492,481,481,479,480,481,485,477,487,475,486,476,477,477,483,483,476,477,483,476,476,458,469,465,568,561,557,558,568,562,560,545,552,560,488,515,509,515,498,518,520,511,496,459,460,456,460,460,452,462,458,423,426,439,436,437,433,444,433,425,436,433,509,516,515,524,510,516,517,514,521,521,517,517,528,514,520,521,516,516,519,519,519,531,527,527,538,541,535,544,540,541,554,544,550,544,538,489,491,489,473,497,483,496,497,577,580,564,573,576,576,569,512,476,470,463,465,459,475,456,472,544,561,549,563,547,511,513,519,514,505,510,520,513,507,511,521,511,517,510,516,503,517,548,541,542,538,543,528,529,521,531,569,568,570,561,568,557,566,555,555,496,468,503,510,451,438,437,438,445,441,440,436,447,424,420,438,519,525,511,510,517,514,532,529,534,532,520,531,533,533,543,537,546,547,545,542,540,541,536,543,536,529,533,509,504,513,519,513,512,500,514,503,513,519,514,545,549,543,529,525,532,523,525,531,528,571,558,552,562,480,494,492,482,503,491,492,494,509,504,521,504,500,499,502,493,505,499,493,499,492,505,491,491,495,497,500,498,505,521,532,524,532,529,529,534,529,526,520,524,531,522,518,525,517,520,521,526,527,521,552,532,544,544,535,478,476,480,471,479,477,475,473,501,484,481,492,484,499,492,488,487,488,484,475,486,470,479,481,570,569,575,550,565,577,580,581,556,571,499,494,493,469,559,551,571,554,559,546,552,562,546,557,562,549,546,548,551,558,553,556,564,552,555,549,552,558,544,552,550,545,551,531,548,554,549,541,512,526,518,520,515,525,525,534,536,544,512,515,520,517,515,518,515,515,516,513,517,511,516,539,527,531,539,533,532,538,531,535,535,532,534,529,525,531,532,531,526,535,524,566,545,490,492,505,490,502,496,500,506,507,503,504,498,497,500,499,491,496,502,498,498,509,507,498,506,499,507,501,544,549,547,548,547,552,561,550,557,552,553,550,569,571,569,568,572,572,579,570,561,570,564,569,491,500,498,502,500,498,506,503,501,506,504,499,495,496,487,490,487,498,490,492,496,484,495,494,485,574,580,499,496,508,500,492,467,476,462,466,475,472,479,461,543,531,542,551,546,539,525,542,534,535,551,531,547,525,542,496,474,475,475,471,473,473,471,492,488,480,479,483,469,483,491,497,496,492,482,486,488,494,483,507,511,512,511,506,509,511,531,524,527,534,535,532,528,531,526,533,521,517,523,515,519,522,527,519,520,523,520,525,518,519,519,523,519,525,522,526,531,523,527,533,533,530,530,535,538,530,532,529,534,531,535,531,540,539,539,533,514,520,521,515,520,517,520,520,520,519,538,527,523,520,538,522,478,471,476,474,528,518,523,528,530,520,520,522,530,531,533,535,532,531,535,534,528,535,536,526,532,533,562,570,514,508,549,540,538,550,536,553,549,551,539,545,537,537,544,541,542,536,550,545,533,544,533,539,536,521,516,520,528,549,550,553,560,551,546,552,548,545,552,544,538,540,536,530,542,538,532,570,568,513,523,520,516,524,520,523,524,513,521,528,514,522,488,484,482,483,486,487,490,495,479,482,488,483,486,484,485,487,486,478,490,473,477,487,472,464,469,470,472,469,466,467,463,441,441,444,439,436,445,434,424,440,439,432,445,435,441,439,443,520,519,521,533,529,517,523,511,530,515,530,530,530,528,522,525,515,517,525,520,520,520,524,515,509,516,524,520,520,516,525,520,520,547,546,545,540,547,547,545,544,545,532,539,542,559,548,502,495,500,467,457,451,469,468,460,474,469,541,555,558,555,547,551,570,554,557,535,519,522,520,514,516,525,512,514,521,528,530,537,540,527,539,555,554,546,549,476,477,494,486,478,477,494,485,483,500,488,493,487,444,444,452,449,444,436,448,551,548,545,551,535,550,562,544,548,561,558,549,558,546,550,556,558,545,545,547,544,562,552,504,489,479,496,488,514,508,500,491,491,489,497,500,497,491,503,475,477,477,469,479,483,480,475,480,470,470,474,473,472,475,473,557,561,549,555,540,564,548,554,540,552,550,539,546,490,499,505,493,492,519,514,519,522,546,537,542,539,553,538,540,545,490,483,501,492,495,492,491,582,572,586,601,582,587,579,583,590,604,583,585,574,595,588,590,585,591,575,583,591,529,534,534,524,531,547,533,526,522,538,571,556,555,577,556,484,485,487,485,496,492,495,484,475,540,534,540,533,546,536,544,538,550,548,545,534,537,542,525,527,531,526,528,522,529,520,524,530,522,524,523,525,547,543,542,540,542,540,539,523,524,524,528,523,521,523,525,523,526,520,525,523,525,541,530,529,540,534,542,532,533,544,537,545,543,526,533,543,538,533,523,516,526,525,519,520,525,555,557,558,561,563,558,559,557,560,550,556,554,518,521,533,526,524,524,528,528,526,527,531,534,527,507,489,495,495,494,494,504,496,486,494,511,580,596,598,597,573,601,549,564,551,559,557,560,552,560,553,558,522,521,519,516,528,515,523,507,497,497,477,480,477,481,481,495,485,479,478,496,498,503,502,491,498,489,503,503,497,498,492,499,494,502,494,517,508,553,549,551,552,547,549,553,546,556,555,548,538,540,540,557,545,550,545,548,549,507,528,521,517,515,513,513,512,512,512,511,521,516,569,572,566,562,563,577,564,553,528,511,509,518,514,519,517,521,510,525,522,514,522,491,482,490,478,495,471,481,477,490,496,484,469,474,476,467,480,465,465,466,471,471,471,475,473,460,457,461,547,540,546,544,544,536,534,567,517,522,522,523,519,523,520,519,514,539,548,540,533,530,541,537,538,537,535,547,538,539,538,543,544,539,509,518,522,523,517,516,513,509,521,521,513,535,535,540,530,541,534,548,545,553,556,549,555,548,494,485,474,487,471,470,493,476,477,481,474,482,475,477,493,486,482,492,492,484,481,504,505,509,506,506,508,510,508,508,500,501,511,506,534,532,532,520,529,526,528,534,527,526,520,543,532,527,527,534,535,528,530,523,529,529,524,525,539,545,542,550,538,548,517,517,518,525,547,562,495,495,504,503,510,513,512,514,517,516,501,546,540,535,491,495,507,498,496,493,492,493,506,497,497,488,501,584,597,586,579,578,598,593,575,551,556,551,494,494,494,496,497,509,502,490,494,494,508,497,491,492,488,491,487,482,486,488,494,495,488,490,488,486,494,495,489,517,509,540,535,536,541,538,535,488,490,485,480,489,486,485,489,490,490,500,485,501,493,489,483,484,560,555,556,554,575,548,551,553,573,567,577,482,477,459,466,460,459,456,486,460,518,529,516,516,521,519,527,531,540,538,531,536,530,538,533,548,538,543,541,541,548,546,543,543,538,546,540,545,550,537,540,543,540,546,537,496,506,487,487,496,484,479,490,501,481,491,528,520,515,515,521,515,523,518,522,551,558,553,551,551,552,564,547,538,555,561,568,509,515,534,531,536,556,557,558,496,494,510,511,504,512,492,451,454,458,459,454,453,464,487,484,485,474,489,482,480,468,475,481,481,480,483,477,577,554,571,566,561,488,498,540,546,543,529,550,547,533,546,554,530,519,520,526,524,528,560,560,547,559,567,497,490,498,484,489,496,499,481,460,459,451,454,476,466,538,525,539,536,526,531,535,533,542,541,537,534,520,526,518,524,518,527,518,514,540,541,565,563,557,561,560,564,527,532,528,527,528,530,521,522,515,523,520,520,520,509,497,494,494,495,501,503,495,465,460,463,462,469,458,455,456,461,459,454,459,458,459,475,470,465,469,472,471,470,475,467,463,467,477,465,471,481,573,557,570,559,570,568,577,567,564,553,564,507,508,510,505,520,507,493,497,500,495,504,498,497,495,499,494,495,494,532,530,538,526,535,533,538,539,535,560,577,563,567,580,563,571,556,529,536,523,527,519,530,516,537,563,553,564,548,562,562,561,572,561,565,577,493,500,494,492,501,499,495,509,496,477,486,467,480,488,481,486,484,488,481,471,483,486,474,549,543,558,556,556,509,518,513,510,506,515,509,487,492,498,494,492,499,501,496,495,490,507,493,505,495,495,498,502,561,557,537,544,543,540,545,543,540,540,549,539,540,546,496,497,488,464,479,480,478,479,469,475,479,475,467,465,464,469,474,528,541,535,556,538,549,545,548,538,534,539,516,516,520,521,514,516,517,520,519,521,562,559,555,560,563,554,554,558,561,563,533,536,502,511,505,512,503,561,569,553,572,575,549,559,575,566,549,574,555,582,563,550,562,570,576,549,553,586,554,485,551,544,555,562,559,557,559,553,571,563,556,554,552,484,474,466,472,479,483,509,486,475,462,471,469,469,540,545,553,552,550,543,497,515,509,516,549,566,577,550,563,551,564,553,560,480,492,476,493,489,472,492,485,478,489,470,473,487,479,485,475,479,478,470,551,553,555,569,550,558,548,555,567,565,527,527,525,525,519,519,530,521,527,556,565,551,561,559,568,564,559,567,561,560,561,562,557,562,559,563,547,556,546,560,504,485,501,493,492,498,494,501,491,497,488,489,571,578,551,569,562,558,559,575,547,560,578,562,505,506,496,500,504,500,496,505,498,490,501,534,547,550,556,546,530,538,544,553,537,557,542,552,557,538,538,547,519,519,518,512,514,515,517,531,514,518,539,544,544,537,551,541,543,540,562,567,581,587,564,559,565,558,571,574,559,557,558,575,571,556,567,522,527,517,521,518,533,523,533,517,523,526,526,496,486,490,483,494,479,479,495,477,486,492,485,481,482,477,473,485,482,490,484,497,490,493,471,466,467,469,468,468,477,465,473,469,471,466,435,528,536,532,530,538,535,531,528,526,541,520,533,529,531,534,529,571,567,561,560,563,573,560,563,561,563,563,568,552,565,558,563,567,557,567,536,523,535,537,521,568,564,562,577,564,554,548,559,566,553,552,571,557,576,558,487,481,481,490,491,480,474,474,484,531,536,548,551,548,530,547,537,546,540,539,535,545,551,542,541,538,534,552,537,500,509,505,501,499,505,507,505,503,508,506,507,505,549,536,562,532,541,548,548,535,543,553,542,539,543,546,546,540,505,513,569,559,575,514,499,507,516,522,519,499,485,482,477,483,502,496,493,491,494,489,499,498,490,490,493,495,490,493,494,496,490,491,478,477,481,474,484,483,475,482,450,453,444,449,438,440,457,450,446,527,530,535,523,521,537,528,535,534,530,540,530,534,543,532,543,542,542,542,560,545,546,539,519,523,522,517,535,522,526,526,524,519,517,532,550,530,529,525,531,531,523,533,494,506,511,541,558,545,546,537,538,535,540,535,536,537,533,538,531,539,534,538,526,529,536,533,526,555,563,554,550,550,554,555,473,482,485,480,475,485,493,484,483,476,483,509,484,540,545,544,540,526,526,520,526,521,527,536,545,536,540,535,535,530,544,538,539,544,538,536,546,534,547,535,520,526,526,525,532,531,518,511,541,530,535,534,538,469,455,468,469,456,465,467,456,460,461,462,562,548,549,546,550,544,536,558,548,547,548,548,545,532,516,569,554,559,570,581,567,549,582,566,495,494,498,485,496,487,489,494,547,556,554,550,557,509,514,505,495,506,503,505,498,506,511,507,502,494,500,504,510,515,598,594,587,540,534,536,533,544,533,533,546,531,538,530,538,507,514,510,507,501,508,509,567,556,562,559,548,555,567,557,571,558,548,564,560,568,507,521,518,511,506,513,505,439,448,437,442,436,444,441,448,437,433,461,471,464,465,470,470,467,558,563,569,564,569,569,499,509,506,507,506,520,491,485,483,481,479,482,478,480,500,521,516,507,521,519,514,508,512,519,512,509,517,587,569,571,582,581,588,568,584,580,563,582,586,577,585,566,571,539,535,534,532,546,574,557,560,551,579,576,582,569,578,552,549,570,560,556,487,479,496,498,499,500,554,568,557,547,565,554,556,553,558,559,560,480,475,478,488,484,482,489,487,543,551,546,543,550,543,548,543,551,544,548,556,573,564,554,551,549,541,548,545,543,548,556,548,496,497,491,485,484,494,498,486,485,494,497,495,468,470,476,457,535,533,528,529,526,531,537,530,535,530,538,531,538,528,531,530,534,536,532,531,526,548,563,566,560,572,564,565,561,566,573,555,536,537,538,531,536,539,539,535,533,551,546,539,533,545,541,528,532,537,531,545,587,500,506,499,497,497,496,495,510,493,504,514,509,514,513,541,535,546,541,537,536,515,544,550,545,556,549,554,555,547,545,546,548,532,541,530,530,533,532,531,542,527,531,545,534,527,561,561,555,565,565,581,569,567,533,531,522,527,522,525,527,550,554,539,547,546,542,549,541,546,540,555,548,552,539,543,507,509,510,507,508,508,553,555,560,566,555,550,561,549,550,555,558,563,556,557,556,554,556,554,552,539,546,552,546,553,547,559,548,541,558,497,514,495,501,491,508,503,477,478,477,477,490,497,486,493,461,463,469,467,466,477,467,474,458,464,467,468,462,434,432,436,430,424,531,533,523,524,529,536,525,533,570,576,564,545,566,563,535,525,524,525,519,527,553,561,560,543,581,553,542,547,563,542,559,555,562,557,475,478,478,477,489,475,481,497,483,492,484,496,553,540,543,540,551,538,550,559,554,550,560,552,553,560,515,519,507,511,523,516,522,508,517,506,521,515,525,513,517,488,490,478,485,489,480,467,475,473,467,460,458,466,458,469,456,463,463,475,464,454,462,460,463,458,465,464,456,462,466,475,559,559,566,566,553,500,507,490,488,476,476,485,486,473,476,474,488,472,482,480,488,479,538,551,562,552,539,552,559,559,549,557,551,552,556,539,543,498,506,489,502,498,501,506,515,527,518,521,523,516,570,568,566,557,567,567,560,556,559,554,557,499,498,504,502,506,503,494,497,500,506,493,496,496,504,510,508,490,499,512,512,511,512,510,512,511,511,538,535,529,532,520,522,525,525,525,521,523,520,519,525,525,537,535,540,541,540,532,535,542,535,546,538,540,540,550,544,544,541,467,454,476,482,483,479,472,468,483,475,473,481,473,469,479,460,473,444,457,439,450,449,440,462,448,445,450,455,441,445,453,444,451,447,444,539,551,553,540,552,540,548,543,539,538,548,543,543,538,554,545,543,569,564,568,570,569,575,574,562,534,524,531,529,529,534,535,528,535,537,535,533,543,544,556,549,559,547,570,571,555,545,544,556,559,556,514,497,507,498,504,466,468,465,477,469,464,469,473,478,467,470,471,474,475,462,477,472,551,555,559,560,540,558,554,552,548,546,553,546,515,512,511,515,511,515,512,509,518,515,538,529,532,518,528,524,533,538,528,537,525,533,538,536,536,563,553,561,557,569,548,550,561,557,537,555,502,509,496,507,514,495,504,507,510,515,510,508,504,506,504,493,497,505,543,544,543,553,561,548,524,511,509,510,502,492,509,511,474,474,471,470,471,473,470,468,496,496,495,486,530,532,527,535,526,522,520,523,526,526,533,525,527,531,528,523,515,528,522,520,524,523,523,523,528,524,528,524,523,526,537,524,547,540,546,539,531,492,490,488,488,497,491,500,498,497,506,503,493,502,502,502,528,530,526,531,527,520,527,524,530,532,523,524,528,533,526,527,526,528,523,529,503,513,509,510,513,509,508,509,512,510,512,512,512,510,512,552,555,531,550,540,535,542,546,544,546,542,545,538,544,545,550,547,543,542,549,547,536,550,551,542,551,539,550,536,544,541,531,537,543,532,553,541,511,495,501,502,553,558,562,556,557,549,564,549,553,557,567,570,548,557,550,488,509,499,499,514,499,508,503,504,507,500,485,481,478,481,487,485,502,493,498,497,503,495,494,492,494,491,498,496,488,491,490,495,491,445,462,460,471,461,458,464,459,468,471,465,595,599,597,594,588,591,591,576,598,595,589,605,596,609,598,600,555,555,513,518,508,511,497,512,482,479,489,477,490,489,483,487,487,485,475,477,478,488,486,480,477,487,487,474,477,477,479,484,485,489,478,481,484,482,488,478,474,474,487,482,490,489,492,490,489,488,495,488,499,495,535,535,533,539,535,538,530,538,534,530,534,523,535,535,531,535,539,534,538,563,494,492,491,511,496,497,487,498,494,510,490,501,465,461,457,474,452,445,554,561,550,549,555,563,546,553,567,555,555,479,472,464,471,468,473,481,471,464,522,518,512,518,527,525,523,527,528,530,528,535,536,527,536,541,534,543,538,541,546,554,556,553,540,539,544,543,547,538,480,492,498,492,492,494,496,482,502,496,497,556,573,544,549,506,509,502,486,510,492,489,494,506,496,503,498,520,546,559,560,536,537,562,538,551,537,559,497,496,504,511,483,588,593,612,532,539,537,537,542,562,563,560,568,558,559,559,558,561,573,560,572,559,519,524,523,524,544,534,548,545,534,541,544,547,546,572,584,568,571,556,560,572,565,565,556,499,494,509,493,479,473,469,468,469,478,474,469,480,476,473,546,570,501,505,505,496,495,488,507,483,557,540,556,549,543,545,557,515,508,492,504,511,505,492,520,512,513,506,519,513,509,510,499,466,448,466,460,460,461,462,463,457,457,455,456,466,472,483,469,475,472,557,580,573,570,568,568,580,558,552,555,578,567,570,566,567,575,525,514,519,504,464,456,454,455,465,468,458,464,465,473,464,457,462,464,472,456,459,468,467,452,456,462,459,476,469,549,541,528,529,548,537,543,538,510,517,512,516,516,510,506,514,510,510,524,508,513,515,517,507,510,512,516,513,507,509,511,519,506,514,512,556,559,562,555,550,559,555,558,569,564,556,546,551,543,553,553,490,512,495,502,488,485,503,515,513,518,521,530,555,560,565,561,551,569,563,572,564,566,572,562,551,556,566,544,550,559,501,503,503,497,498,496,502,488,491,503,488,486,497,495,494,490,490,493,494,496,484,488,566,565,565,566,550,562,575,564,555,558,548,569,479,476,475,466,473,472,453,460,454,443,450,455,566,553,548,556,555,560,557,551,561,549,561,552,553,562,546,562,554,561,477,490,491,485,483,499,487,500,500,487,495,487,490,488,547,543,565,562,556,550,561,555,561,556,547,564,551,549,547,553,554,551,552,538,545,550,538,523,528,529,530,522,527,525,528,526,529,533,526,524,533,528,530,551,557,562,507,503,499,449,444,443,452,445,451,457,458,446,449,453,447,454,457,445,458,468,485,486,455,463,466,479,477,466,464,603,585,607,595,590,604,588,598,591,580,599,583,520,512,512,514,520,518,508,517,512,516,514,508,516,516,521,513,510,512,511,509,531,530,536,523,533,521,538,531,533,544,536,541,544,542,537,540,544,538,555,541,538,545,554,554,541,543,523,522,520,522,525,522,523,516,522,529,526,519,524,522,558,560,556,564,568,557,564,566,557,571,562,559,531,552,540,546,545,549,536,545,538,549,514,521,512,515,511,516,509,511,515,475,484,480,481,478,478,482,477,479,482,480,484,485,484,478,477,475,488,483,480,476,461,463,452,457,461,465,467,471,464,464,464,453,465,459,472,464,466,458,460,457,466,457,467,461,464,453,462,460,461,444,440,450,435,444,438,453,454,522,518,523,532,523,523,525,532,528,525,510,517,520,523,520,527,537,531,528,528,565,562,559,553,566,569,575,567,570,561,563,561,569,574,560,557,511,529,531,527,521,518,524,524,552,535,537,535,551,565,546,552,552,562,508,503,509,536,553,555,560,565,547,558,556,547,479,504,490,490,495,493,507,507,458,462,463,471,461,454,461,453,558,561,553,539,564,552,552,549,532,546,562,548,543,544,559,539,552,507,504,495,502,490,492,510,493,502,566,571,543,546,545,555,554,556,557,566,554,572,556,562,551,549,551,559,543,491,510,505,511,505,505,459,453,460,459,479,473,472,464,485,469,460,473,467,467,470,460,472,567,578,563,506,511,521,515,513,513,516,513,509,518,510,518,510,527,526,527,525,524,531,525,525,518,522,522,554,551,547,561,569,557,558,557,541,560,556,507,519,519,513,507,508,514,496,496,561,557,555,574,552,562,570,574,554,561,564,566,563,517,483,482,479,485,488,485,490,487,458,452,457,452,459,461,457,463,461,466,464,540,535,535,536,545,528,542,535,543,536,534,535,551,535,542,543,537,543,531,540,542,532,542,548,543,549,558,547,549,541,549,550,548,548,546,567,546,559,552,519,515,518,517,516,519,509,515,512,506,507,518,521,508,516,504,514,543,539,534,553,545,545,554,549,546,544,554,554,551,551,540,551,548,542,556,523,519,520,517,520,522,553,544,540,543,541,547,552,540,559,561,571,558,570,504,507,500,490,497,496,504,500,507,573,568,568,556,570,578,549,566,545,547,568,562,514,498,500,505,504,505,504,506,497,572,566,575,582,591,576,580,583,562,481,479,485,490,463,475,492,473,475,489,483,479,522,521,535,538,531,534,536,538,531,538,541,548,548,543,546,537,537,534,539,537,553,543,543,545,539,540,531,526,523,529,530,529,525,518,525,521,529,524,517,535,544,537,534,533,540,549,521,525,522,522,545,560,539,539,517,512,532,519,519,524,517,525,521,520,525,539,548,548,549,544,544,538,554,565,571,558,565,567,579,578,569,568,574,495,484,503,509,491,498,500,500,509,469,552,545,553,554,551,559,553,552,550,576,570,576,575,582,574,570,531,552,545,545,542,549,546,546,545,545,537,537,531,544,550,549,558,484,493,494,490,492,497,503,489,500,498,498,499,506,498,499,501,500,503,523,508,505,506,508,510,548,553,550,554,553,554,546,553,550,558,534,537,535,536,532,538,540,534,542,526,562,575,570,570,574,578,575,569,563,565,500,483,495,493,550,553,555,566,548,554,558,549,559,551,554,553,557,556,551,556,553,557,560,555,499,467,504,505,490,494,487,482,475,482,498,485,494,461,457,541,554,547,493,506,507,506,500,505,514,521,527,531,529,527,530,526,530,529,518,535,533,528,539,529,538,545,547,542,551,553,548,543,543,548,520,501,491,511,493,501,514,502,516,508,434,452,439,441,439,441,437,448,436,448,503,487,480,502,482,490,503,489,490,487,500,549,533,540,543,512,512,510,507,503,520,508,512,510,513,516,507,509,509,520,550,546,560,502,503,498,509,591,595,594,588,595,545,553,483,504,490,499,492,501,492,492,502,501,502,506,504,501,503,498,508,499,506,507,511,529,526,495,502,498,488,491,502,589,591,584,606,597,594,590,596,588,581,615,590,581,597,545,534,541,540,564,558,560,553,558,557,568,554,554,545,558,520,516,578,565,565,590,567,567,569,526,512,518,514,514,503,510,498,503,500,498,499,501,486,485,481,480,485,486,484,476,489,480,500,487,482,574,544,548,551,538,556,548,557,539,552,543,493,517,497,506,487,491,500,503,505,514,497,496,495,493,539,527,535,527,557,543,558,550,496,489,492,501,515,508,489,495,484,489,481,489,498,494,463,465,466,473,460,563,562,556,539,552,502,512,483,510,503,478,495,502,503,492,500,496,472,480,471,466,480,480,546,543,525,568,535,554,557,547,546,535,542,488,486,480,491,488,493,489,475,494,489,555,555,554,553,552,552,553,559,558,490,499,502,499,554,546,556,548,548,545,547,547,551,557,560,549,551,538,549,548,553,493,495,506,496,490,503,499,497,500,499,493,494,494,494,496,499,501,496,535,537,540,545,547,533,549,542,534,536,547,546,535,569,558,544,574,575,556,557,542,553,558,558,547,553,554,572,559,560,526,512,491,510,503,501,511,505,509,495,493,504,508,509,516,510,505,508,616,601,595,596,607,602,597,594,588,608,601,597,499,532,557,513,529,498,489,493,498,484,497,491,491,494,499,494,485,564,551,544,553,558,555,556,566,543,570,567,553,570,551,548,574,562,566,569,565,565,554,563,510,506,495,512,484,569,557,565,564,546,558,492,496,497,509,497,492,498,506,492,494,492,497,497,485,508,497,512,514,514,513,525,510,526,525,518,528,514,520,508,545,547,535,534,547,538,533,543,539,537,540,552,553,549,527,542,501,492,502,549,570,536,553,567,552,556,543,569,548,563,540,520,513,533,547,539,538,538,536,539,542,538,541,500,502,504,504,507,500,501,507,507,548,542,549,548,542,549,546,555,546,543,547,541,544,550,544,547,548,539,537,537,552,545,541,509,502,516,512,514,516,504,503,515,517,507,541,552,537,552,541,544,546,542,543,541,535,547,525,533,526,531,573,563,582,573,573,561,579,564,550,525,522,528,538,536,575,561,573,489,504,502,502,504,499,480,486,492,482,484,491,486,485,500,493,495,479,535,541,539,526,529,540,535,533,536,536,537,540,540,529,524,531,529,516,520,525,531,531,525,518,530,531,539,537,552,540,543,539,541,543,542,546,540,540,547,540,541,511,509,516,511,517,517,513,511,559,561,569,572,557,547,565,553,549,518,515,514,518,502,526,503,511,502,515,502,508,502,511,500,501,510,481,482,480,488,483,485,485,483,479,481,484,452,459,464,454,456,463,465,460,458,471,459,467,431,441,434,431,430,429,425,424,518,526,529,521,526,512,517,513,525,518,514,519,525,520,520,518,516,523,533,536,546,539,542,544,548,535,547,543,552,547,549,545,547,544,550,515,528,524,517,528,521,522,524,528,511,514,529,523,522,511,526,514,513,530,487,494,482,488,483,488,483,484,485,490,483,477,483,487,487,479,482,485,486,484,501,498,495,478,477,470,467,468,475,472,474,464,466,467,474,470,478,493,505,508,505,506,513,505,500,506,534,536,527,527,523,524,523,530,527,519,535,522,525,524,535,525,524,509,530,524,522,533,537,540,538,548,547,556,552,547,558,551,549,549,550,542,551,482,466,464,464,454,458,460,468,464,460,549,533,549,537,558,562,561,544,549,492,499,508,507,505,498,518,508,486,508,498,451,457,457,447,485,495,479,485,488,485,487,493,486,483,487,483,486,558,548,570,576,555,552,557,526,534,528,527,533,528,532,525,534,547,553,548,554,549,547,485,480,495,479,484,470,485,487,477,482,483,449,461,458,472,578,578,578,594,571,583,572,519,524,528,531,519,515,542,516,529,521,551,534,543,526,507,509,581,557,565,515,516,503,515,506,565,559,558,559,548,553,570,559,553,554,496,503,509,497,494,497,502,493,497,493,438,445,451,444,451,443,452,457,445,454,445,443,441,445,450,543,545,540,539,531,543,535,540,536,545,546,545,538,534,544,556,542,544,538,509,507,506,505,505,511,510,509,506,512,510,509,549,536,529,541,544,535,530,534,541,550,539,544,541,507,513,502,498,494,503,525,541,533,531,540,535,542,548,548,541,552,544,543,548,544,541,539,546,544,545,547,553,551,555,550,555,559,551,567,560,498,504,496,504,490,502,565,565,557,570,562,570,556,560,522,525,506,513,507,505,510,511,506,507,505,508,505,512,511,528,522,533,524,528,540,527,529,536,533,536,533,538,532,545,544,558,543,553,552,550,553,542,547,548,553,554,553,543,546,522,521,517,511,520,514,516,524,513,542,542,564,546,565,559,558,555,562,474,494,489,486,491,489,500,492,492,483,480,490,527,546,537,530,541,536,539,534,539,544,540,561,576,572,565,577,542,535,538,531,536,540,537,532,533,536,525,501,507,502,508,503,512,508,512,514,503,562,552,562,563,541,549,534,540,535,541,544,548,546,545,543,550,560,539,547,557,554,546,548,563,536,556,534,527,534,552,545,517,501,500,499,505,511,507,511,568,555,580,571,573,565,583,553,513,511,486,489,494,511,505,574,586,576,590,590,585,589,571,523,513,523,515,486,475,469,466,468,478,472,466,481,467,477,474,469,472,547,544,543,572,570,566,575,570,579,569,571,570,573,574,572,570,565,571,527,541,527,535,540,530,531,538,535,533,512,515,510,509,517,515,512,509,526,530,532,536,529,531,533,541,563,563,565,555,553,568,550,549,564,571,501,502,496,491,484,490,506,498,496,547,544,544,546,539,546,540,528,546,505,510,516,514,516,511,511,504,519,513,504,519,507,515,533,526,528,533,516,534,583,575,572,584,590,597,581,583,573,588,575,591,588,546,531,526,527,534,531,531,536,530,535,566,564,552,479,477,491,470,481,531,529,520,524,521,525,522,544,549,542,550,548,563,555,567,540,560,564,549,556,551,553,558,549,558,494,502,498,503,495,502,495,503,502,496,516,512,510,520,520,531,538,544,549,547,522,520,524,524,525,526,521,529,526,521,557,555,562,558,566,557,555,555,480,490,493,491,491,485,492,487,474,489,441,449,452,449,445,445,445,448,449,447,440,432,448,444,447,442,524,525,532,528,530,541,524,526,527,527,532,542,529,529,544,546,549,548,545,551,553,545,543,540,550,542,525,525,519,522,523,520,527,528,531,515,524,527,589,585,521,526,537,529,535,518,542,530,482,472,476,469,472,465,476,474,466,477,540,534,545,533,537,531,565,567,515,505,510,514,511,509,509,516,509,500,504,505,503,549,552,536,541,547,551,545,542,548,549,539,542,533,543,549,548,542,545,550,553,539,540,543,517,521,520,517,529,520,525,520,520,525,518,523,520,524,552,542,540,543,544,556,544,548,555,544,547,543,537,542,552,546,550,549,551,535,528,528,525,526,527,527,527,524,534,576,571,559,566,559,556,562,495,495,495,483,502,495,490,504,453,459,462,463,457,473,460,460,569,566,539,566,552,556,553,552,559,550,458,470,479,468,471,455,525,524,545,538,537,540,534,537,544,538,538,535,540,556,541,551,554,557,559,564,538,485,488,486,469,486,477,493,495,485,483,545,555,556,553,541,549,552,550,544,548,548,552,554,551,552,547,550,541,557,567,566,577,567,567,568,560,569,575,565,568,558,574,520,515,525,521,526,530,533,529,531,526,531,577,548,559,563,558,572,571,555,571,553,545,579,568,550,549,482,484,495,547,538,538,547,544,551,547,554,551,538,544,534,480,491,490,497,479,478,486,492,481,488,467,485,472,485,483,482,526,534,543,536,527,536,542,537,545,537,542,546,539,533,545,544,555,551,548,538,549,538,541,557,540,540,542,539,553,561,522,518,519,524,518,521,507,511,539,544,540,549,526,498,486,503,496,486,503,494,493,496,504,548,556,541,551,548,557,555,542,538,543,546,543,546,553,538,509,514,515,516,523,508,521,517,509,512,508,520,505,513,501,508,502,510,502,507,509,503,510,514,508,506,557,557,550,543,552,555,543,555,552,555,550,546,549,557,547,544,525,537,548,543,542,542,541,543,466,491,476,485,477,484,474,486,475,497,496,497,490,499,510,502,512,496,503,512,506,505,499,512,486,493,532,527,535,538,532,540,553,545,533,471,484,474,488,476,528,523,534,524,524,528,526,525,526,528,531,518,524,538,535,547,542,541,540,549,558,540,496,496,489,501,497,499,586,509,523,514,545,550,550,548,553,554,538,546,546,551,550,558,548,555,556,541,522,514,517,527,519,514,517,511,517,515,515,518,519,509,550,548,548,549,551,567,576,583,561,559,575,590,570,562,559,507,505,507,500,498,496,508,484,494,500,496,492,505,493,484,493,501,498,492,497,489,487,557,567,562,568,576,563,561,560,474,471,479,497,479,481,470,478,474,486,476,470,486,474,484,479,477,470,462,469,471,473,478,468,464,570,593,587,575,564,574,583,589,577,579,561,596,486,484,481,481,482,481,478,461,469,488,476,480,484,470,520,518,523,515,518,508,518,521,523,516,520,520,516,507,526,520,516,516,524,527,530,531,534,533,528,528,562,567,568,558,568,542,561,557,503,510,507,495,499,494,505,507,502,507,498,506,501,500,505,529,528,529,534,522,532,518,520,523,518,521,521,521,524,522,520,526,522,519,519,517,526,522,517,524,546,544,542,546,538,539,543,546,541,546,532,549,551,562,557,559,554,559,546,554,548,546,539,549,521,508,511,513,507,506,511,499,514,500,497,508,500,506,494,499,492,510,536,540,535,537,537,530,530,534,536,532,539,518,526,531,526,525,525,527,544,535,541,546,541,540,537,529,542,499,512,512,515,517,518,515,565,570,563,570,567,559,578,559,484,477,484,496,478,538,554,579,573,570,575,578,576,569,578,546,545,546,541,540,538,538,545,541,503,498,501,489,481,496,483,486,500,472,461,479,462,475,464,470,564,555,564,565,552,568,562,553,560,589,553,550,562,526,504,494,518,492,506,516,489,525,506,486,497,436,432,439,432,439,437,449,449,441,445,437,442,448,433,431,472,569,567,514,495,505,502,490,505,510,488,496,500,492,492,492,509,504,450,432,550,556,540,540,541,530,554,540,540,547,541,531,552,547,548,548,556,540,507,591,560,584,580,580,575,574,562,565,564,595,564,579,580,561,594,478,467,478,458,475,483,465,539,528,538,533,534,531,531,563,562,568,553,556,564,565,558,556,564,570,560,565,561,570,538,530,534,541,537,531,535,523,539,536,527,529,535,530,529,528,537,525,514,520,521,523,523,523,520,524,527,546,530,533,536,543,544,536,540,539,524,526,526,518,523,522,520,527,522,522,520,524,518,520,539,550,552,541,549,500,504,504,505,496,503,500,504,500,507,504,509,497,537,536,536,531,542,533,537,534,539,548,542,538,544,548,559,548,538,545,556,552,554,556,551,550,506,507,505,489,498,508,496,514,475,471,476,474,471,536,550,544,552,552,543,553,559,541,538,558,540,552,550,508,516,523,521,553,556,545,537,542,538,547,545,500,495,490,500,496,502,505,503,501,509,502,532,520,523,528,524,539,522,531,531,519,526,530,524,529,531,529,533,576,575,578,560,567,577,518,521,518,523,527,522,515,521,516,526,530,526,530,529,525,570,555,558,550,553,569,562,567,567,499,507,501,521,505,523,496,513,511,505,501,526,496,509,498,511,512,443,442,445,447,442,443,441,438,446,481,477,486,493,469,480,470,477,565,546,560,564,567,569,506,505,508,523,515,520,527,517,511,534,521,513,529,518,517,527,555,567,565,562,572,561,569,571,554,561,556,570,560,559,556,562,556,559,559,561,561,560,487,493,494,481,490,498,504,487,494,503,508,455,459,466,461,465,547,551,551,558,544,548,547,544,550,551,547,547,540,541,543,545,547,561,537,543,557,545,502,505,508,504,507,498,517,503,502,512,508,512,503,509,514,504,559,559,554,538,544,536,542,544,537,533,552,533,555,547,508,519,521,510,511,511,509,498,578,561,566,558,573,553,564,498,510,509,595,590,586,590,578,580,541,530,487,475,481,460,471,482,478,484,483,478,477,477,465,526,530,535,535,538,537,541,538,537,541,543,536,542,529,541,540,554,504,503,500,502,498,494,551,549,556,556,569,546,536,539,555,554,481,475,476,496,488,487,481,527,534,536,533,526,524,525,534,530,523,526,537,533,537,536,533,535,529,529,533,529,535,526,524,531,534,577,572,557,561,562,569,568,569,545,539,546,549,536,546,546,538,545,538,530,527,534,534,528,530,532,538,532,536,529,534,533,563,562,559,560,575,553,554,570,565,559,559,566,564,527,521,527,498,499,502,498,498,494,497,502,501,504,499,498,485,484,491,485,488,494,486,490,492,492,512,500,504,502,500,516,511,505,507,517,500,538,540,535,530,537,535,531,521,541,532,538,524,534,528,529,473,474,475,470,461,479,468,473,481,478,529,523,526,528,519,524,519,540,541,531,527,537,538,537,536,533,530,540,543,555,555,565,559,580,572,541,530,537,523,522,533,540,532,532,534,524,539,532,535,558,573,560,579,548,554,563,569,570,572,583,483,480,491,495,491,505,561,549,553,560,554,554,546,558,543,556,548,555,560,551,552,502,482,496,492,492,486,496,489,488,435,437,436,441,448,526,528,535,531,571,564,545,569,572,567,564,563,564,556,564,565,509,506,507,507,504,497,503,495,510,497,492,511,504,534,529,525,533,528,534,531,535,528,524,526,533,533,537,542,542,541,537,533,539,536,535,542,545,539,540,537,557,555,550,553,551,560,499,484,491,487,476,497,490,488,494,480,488,488,478,490,563,565,569,574,579,573,551,559,565,552,563,478,504,497,502,510,497,488,494,493,501,467,472,471,459,468,475,465,470,471,551,554,540,556,557,557,558,558,562,560,555,547,541,542,541,544,556,549,540,520,515,520,528,516,524,529,524,522,520,527,550,548,553,539,545,551,539,538,531,541,540,543,536,532,540,540,543,538,538,542,552,572,575,532,514,530,534,534,526,537,536,507,503,510,507,507,510,511,510,501,512,506,503,507,512,506,497,490,495,492,501,499,505,505,504,496,503,497,497,503,499,481,484,484,483,487,483,487,487,481,486,485,485,480,485,471,454,448,446,447,458,449,448,451,443,458,445,496,502,495,493,495,498,493,496,491,501,498,497,544,525,484,484,477,477,469,485,479,481,483,479,476,478,565,563,561,551,563,502,507,496,505,509,513,503,493,509,554,569,549,551,554,554,472,487,489,497,504,485,504,515,496,488,487,497,497,478,494,482,500,486,457,463,466,582,572,588,593,577,586,572,577,583,577,584,506,499,496,507,502,504,501,505,505,511,514,518,504,502,524,531,543,533,527,529,528,530,525,533,541,545,555,537,547,549,550,540,548,542,542,566,554,555,492,501,504,492,493,496,487,573,559,561,570,567,571,570,572,570,557,500,499,494,512,508,501,459,463,474,456,449,468,552,562,544,567,557,480,478,472,462,473,476,467,480,464,477,469,462,510,518,520,522,527,523,520,521,539,519,566,566,559,573,554,557,561,565,566,564,554,535,509,515,500,506,491,501,497,503,500,502,538,529,535,538,532,542,538,536,550,535,543,549,537,541,544,552,552,549,545,553,544,550,557,560,559,544,549,553,549,556,558,505,489,496,501,518,497,504,503,504,503,467,471,479,468,476,472,476,470,565,540,553,555,550,565,557,555,567,551,549,566,551,555,548,552,516,515,517,515,516,514,510,514,514,517,513,516,500,505,506,504,508,510,508,512,506,516,504,505,527,534,532,537,527,528,539,520,513,527,520,508,523,522,525,516,520,522,529,518,519,522,526,519,527,519,516,525,523,518,524,546,537,542,546,537,550,536,539,543,552,549,546,551,548,545,558,554,549,546,546,551,553,562,513,498,503,505,514,494,503,505,513,512,515,503,480,463,486,485,499,500,491,501,504,500,502,503,495,495,500,489,490,500,489,487,492,474,492,493,496,496,493,483,488,491,484,488,484,476,482,482,479,487,474,488,491,479,488,485,484,482,483,480,480,478,481,482,480,484,486,489,494,494,496,486,492,493,493,490,491,493,494,532,527,529,527,525,532,523,532,546,557,560,531,548,545,552,540,548,561,541,552,545,528,509,518,520,517,517,514,519,526,524,510,509,512,514,510,516,513,515,525,520,539,524,526,525,534,523,523,519,521,516,530,519,527,523,538,513,495,499,503,506,499,503,499,511,497,494,499,505,497,523,527,525,540,528,532,527,530,533,537,543,528,554,550,547,549,545,565,540,552,554,497,540,529,553,549,546,540,550,550,549,557,556,540,561,550,562,555,521,514,514,516,511,513,520,516,516,518,505,513,534,524,522,527,530,533,528,523,529,527,521,521,512,513,521,519,515,521,521,555,553,534,541,547,550,546,546,551,545,512,496,511,510,500,501,511,502,527,526,539,533,528,534,536,527,532,531,535,534,518,522,519,520,525,518,514,520,521,520,525,520,524,519,535,536,523,536,540,533,540,473,472,477,483,468,472,471,565,553,553,547,553,548,557,553,560,555,561,553,559,547,533,513,489,491,486,492,484,489,492,483,482,499,498,487,498,502,498,502,486,584,549,580,564,579,571,564,579,587,573,527,518,526,520,519,532,527,527,538,511,523,517,525,540,530,508,507,515,515,512,507,512,500,502,510,511,510,510,512,507,509,508,497,505,507,503,506,508,497,501,498,488,491,488,497,501,490,491,498,491,489,485,489,492,484,486,488,491,497,485,495,483,486,487,485,483,485,489,484,481,484,465,478,478,468,474,479,478,466,473,479,476,484,480,473,468,478,489,492,579,589,558,565,573,572,580,565,557,559,548,561,564,581,504,498,503,515,512,508,504,503,491,507,536,550,540,537,545,554,555,550,500,492,512,501,507,497,492,497,498,505,493,499,604,594,587,612,573,576,580,582,597,548,546,548,547,542,535,552,544,554,570,569,573,584,525,533,532,528,516,511,535,522,527,500,506,500,501,508,504,504,508,514,507,513,472,485,472,482,480,478,482,481,479,483,479,474,482,475,473,483,480,435,446,447,446,450,439,446,445,451,455,448,441,461,447,454,450,441,542,543,542,542,539,536,536,545,543,529,525,540,535,543,529,539,545,543,544,545,534,510,512,519,508,517,506,517,519,512,510,508,529,529,521,532,530,530,525,531,520,528,527,480,498,491,490,495,490,498,493,498,509,492,491,482,572,564,563,567,491,498,505,502,478,466,471,473,472,473,483,472,474,552,552,552,553,564,553,549,475,470,471,469,477,483,474,466,471,470,472,472,472,468,467,475,463,469,458,473,471,472,585,578,552,563,570,491,486,488,497,503,496,496,490,498,485,504,492,544,557,552,511,506,509,510,506,509,509,509,513,497,528,533,534,523,532,539,524,532,524,536,541,529,544,544,503,496,498,501,488,498,501,493,508,491,502,494,490,501,560,565,560,565,554,555,547,550,553,541,549,553,548,546,548,554,552,556,551,548,544,556,554,552,518,522,518,526,525,530,550,543,542,543,533,540,551,541,541,541,543,502,510,517,521,514,518,529,528,528,529,522,526,530,526,517,579,514,516,509,517,530,507,507,526,507,520,526,530,547,538,543,549,542,549,542,543,547,551,543,540,546,552,541,537,546,537,535,546,538,518,525,521,517,513,519,524,521,525,527,537,538,534,535,530,540,539,535,538,538,536,529,532,530,542,515,521,521,528,519,519,529,523,576,558,559,564,558,496,492,490,501,501,498,501,495,490,498,499,488,498,563,576,569,563,564,563,563,572,579,555,545,573,510,524,519,526,514,556,585,570,488,500,495,502,512,502,507,499,516,494,500,505,505,504,504,494,501,495,504,493,560,576,569,563,571,584,555,561,557,567,570,568,514,514,522,515,501,506,517,514,516,513,516,520,465,464,459,453,474,473,477,470,481,470,476,473,487,473,487,474,485,563,559,556,551,572,563,560,566,566,520,524,513,516,520,521,517,526,517,512,512,507,510,512,555,556,554,564,556,561,555,545,553,561,563,556,553,554,545,545,548,538,551,511,497,511,511,500,494,513,495,501,503,507,502,500,504,501,496,485,489,489,496,488,483,492,490,534,526,518,526,521,521,528,522,529,522,525,531,526,520,523,520,592,585,573,584,587,579,581,569,585,575,578,573,578,576,594,590,578,585,576,565,580,575,506,501,504,508,507,516,511,514,509,497,510,510,501,502,511,506,502,542,534,532,528,525,533,529,540,537,543,534,539,539,538,542,540,538,547,546,561,548,544,543,542,542,543,542,550,555,552,535,516,520,516,511,514,517,512,585,575,561,568,566,586,563,567,578,500,499,502,507,501,494,495,563,552,577,578,564,574,567,571,569,579,580,560,574,503,521,523,515,524,529,499,483,484,492,483,494,489,492,479,475,553,541,543,545,545,548,555,545,553,553,538,536,539,557,525,532,522,522,526,526,517,529,522,525,525,529,525,549,504,507,510,518,528,525,513,502,500,473,482,487,481,469,462,476,480,478,463,563,561,559,551,571,555,546,549,567,563,475,481,474,491,482,540,524,540,527,529,528,537,532,530,542,540,533,532,529,531,530,530,547,538,545,536,547,541,529,542,543,545,559,552,555,552,551,557,557,555,552,544,543,550,543,547,553,556,493,506,495,503,495,500,503,506,496,489,491,496,470,567,557,550,554,548,501,512,508,504,500,519,465,465,462,457,462,456,453,466,472,464,465,459,463,467,469,461,462,461,469,463,459,454,459,457,462,468,453,461,458,461,462,460,506,496,512,503,510,551,566,576,555,556,555,557,559,546,557,550,509,484,493,489,483,483,501,491,497,504,483,490,487,482,566,570,568,574,564,526,511,516,502,502,501,510,529,517,501,508,516,508,501,507,509,511,511,500,497,513,500,451,442,442,439,440,433,446,442,443,439,475,469,489,466,472,464,571,558,553,562,562,560,575,557,562,584,556,530,531,530,553,548,554,551,562,547,562,550,509,497,493,503,500,497,500,493,494,503,500,503,510,492,509,497,504,500,502,504,501,494,506,545,544,538,547,550,548,553,540,545,546,549,555,562,576,557,568,526,508,519,503,503,502,503,506,513,500,510,489,502,515,491,497,495,492,493,495,494,496,497,499,495,492,495,496,498,497,496,536,537,540,530,542,536,529,538,527,538,540,538,536,536,534,554,552,555,554,546,558,547,555,552,565,554,558,550,534,558,572,545,564,563,546,550,557,513,501,519,512,517,515,516,507,504,518,510,513,491,482,476,478,486,484,487,480,481,487,479,477,496,489,490,490,478,473,481,481,478,491,473,481,479,482,489,484,487,485,479,472,484,481,482,471,483,482,473,479,480,477,478,482,476,482,485,485,494,498,487,490,497,496,494,484,495,492,498,531,527,530,524,528,558,555,557,549,537,547,555,553,540,547,556,556,508,515,519,503,519,509,510,508,510,502,516,510,505,509,504,503,503,504,492,507,506,509,537,543,534,537,540,549,536,544,540,541,562,549,551,558,548,560,550,570,546,545,492,472,481,489,464,442,487,471,472,474,476,474,480,478,479,478,471,476,476,541,532,546,531,530,475,474,587,583,516,498,500,495,492,484,493,492,595,575,519,533,529,531,534,526,520,533,532,524,533,561,571,566,577,573,579,572,574,554,522,522,511,515,519,555,566,567,569,564,553,554,561,569,566,553,564,568,562,564,566,562,516,512,514,523,520,522,512,529,513,524,524,517,496,502,508,498,502,498,503,505,504,490,493,495,495,499,490,486,470,473,470,462,470,475,465,472,464,478,473,467,470,469,490,479,481,484,481,482,483,508,516,513,517,513,518,516,574,569,580,577,579,514,518,533,525,526,532,528,575,592,591,588,582,575,588,595,593,581,595,587,593,589,586,599,586,590,559,550,553,549,547,547,547,555,549,553,548,550,490,493,493,486,492,490,510,492,486,492,485,497,494,490,561,555,544,562,551,570,560,546,558,552,566,500,470,488,479,496,476,481,487,487,475,486,488,483,496,500,483,496,503,502,507,504,499,502,499,514,505,498,498,504,512,548,565,564,570,557,564,572,559,577,569,527,544,545,553,547,556,538,539,541,531,496,491,495,490,489,487,486,492,495,497,494,486,477,485,474,491,485,478,483,486,482,479,476,566,565,554,568,558,556,566,556,562,551,558,559,561,559,558,562,574,561,487,505,492,497,495,496,500,496,507,501,504,505,499,501,507,526,533,534,528,535,586,573,572,594,584,578,588,584,569,596,531,546,550,544,558,548,539,552,536,485,500,499,508,505,490,486,510,517,500,505,487,507,518,456,460,465,469,461,457,430,444,445,427,435,432,435,434,435,435,433,430,437,431,448,432,438,528,528,526,533,535,534,571,558,576,561,565,557,568,566,566,555,557,568,566,571,536,536,538,535,530,524,528,534,518,522,537,524,526,523,523,540,524,559,550,570,559,557,548,561,570,546,557,552,548,549,555,563,545,551,485,465,469,472,477,470,476,455,479,460,477,471,467,465,464,466,471,470,477,473,460,475,487,471,473,474,582,579,581,577,563,579,583,576,575,580,573,573,572,460,463,537,546,533,537,565,556,573,568,554,498,509,500,508,512,505,511,500,496,509,492,500,509,507,531,523,534,534,536,534,537,529,528,533,528,521,529,534,541,536,534,529,538,535,533,535,536,537,544,544,538,540,548,545,521,522,519,531,523,519,560,557,546,543,548,553,550,549,547,550,545,550,557,546,546,493,492,508,492,503,499,495,496,505,501,499,507,506,503,506,502,507,495,498,554,565,553,550,553,556,557,531,527,532,530,529,532,538,526,532,532,529,529,528,533,531,522,529,526,527,524,532,527,531,548,567,553,567,554,529,537,535,532,538,535,534,547,534,532,531,546,537,545,543,528,530,534,532,531,530,534,559,564,556,562,557,568,559,562,573,563,517,522,517,517,524,519,521,504,518,510,516,534,522,508,479,468,475,477,474,479,482,483,486,481,477,484,484,502,502,505,506,505,497,503,505,509,536,553,544,534,513,525,518,519,518,519,570,579,598,589,587,583,583,590,590,591,604,599,596,533,531,532,535,536,533,529,534,548,556,566,545,558,557,546,551,554,575,579,550,557,506,508,498,495,498,516,510,518,521,506,514,606,583,579,594,587,584,593,591,534,535,525,550,516,521,520,524,546,545,556,547,555,547,534,527,522,522,517,536,600,589,588,605,581,582,593,585,596,590,601,591,585,596,589,590,597,528,547,535,546,551,547,539,542,540,500,503,485,495,499,490,494,500,487,502,498,501,506,501,499,509,496,492,495,535,535,531,531,531,536,526,554,555,552,577,546,549,546,565,544,556,473,480,479,481,481,476,484,482,524,527,521,518,526,521,520,520,520,517,520,522,528,533,531,531,524,541,540,544,537,541,537,539,523,522,520,545,545,556,543,535,550,546,552,524,510,511,507,507,489,509,484,478,481,466,472,474,461,467,476,469,464,466,471,470,465,469,453,458,465,576,552,548,560,554,568,489,485,443,435,432,441,439,431,427,431,520,522,527,520,520,532,552,560,550,540,564,517,520,525,526,484,489,495,494,493,503,508,486,501,486,491,503,492,482,490,485,492,479,486,508,503,505,504,503,506,509,505,505,501,503,511,504,500,502,503,507,501,504,497,502,489,498,508,473,483,476,480,477,479,485,480,477,481,480,474,484,476,469,487,484,492,485,487,483,486,490,481,492,492,488,482,489,563,562,573,564,561,559,564,558,567,556,562,566,558,574,494,509,502,500,496,501,492,499,494,490,492,501,497,502,523,529,521,531,529,523,534,524,538,532,530,466,474,481,468,470,465,468,467,542,538,536,533,527,537,535,537,574,550,576,559,574,571,543,536,545,538,532,545,544,547,531,539,539,551,554,549,546,549,547,554,544,519,535,526,531,527,527,497,492,491,488,486,509,490,488,502,595,589,593,571,585,584,601,593,602,540,535,529,535,538,532,533,535,543,534,531,539,518,523,568,556,554,559,549,558,563,567,573,505,511,498,492,490,502,500,506,509,492,489,483,497,508,508,473,499,477,468,476,551,573,548,563,551,558,564,535,563,575,555,557,523,528,511,511,516,512,521,514,516,523,523,516,525,526,520,519,530,508,501,503,510,510,506,504,480,477,478,475,480,481,447,447,447,557,552,546,558,557,550,535,552,547,541,541,546,533,556,543,540,555,551,556,545,547,553,559,547,509,505,501,495,499,492,493,481,487,485,486,486,483,485,490,481,490,482,489,485,485,482,485,482,480,476,475,480,476,474,479,488,478,472,474,458,457,456,461,461,455,457,460,461,462,459,460,455,456,433,428,434,455,438,442,442,441,434,429,433,438,447,441,535,527,540,536,537,532,547,542,560,542,538,544,546,546,501,485,484,491,488,498,508,498,500,500,539,537,528,537,547,542,540,541,540,556,547,543,562,535,498,499,500,503,572,579,565,573,557,563,575,563,499,507,510,520,506,503,504,501,506,501,495,506,516,502,508,461,472,470,468,467,464,461,474,463,474,469,546,543,544,552,532,527,534,525,527,563,545,512,502,514,505,518,523,486,483,489,483,483,481,486,480,482,489,480,485,482,490,484,479,487,482,489,480,483,478,476,478,492,563,582,551,559,548,572,557,562,554,558,555,557,561,556,551,563,551,553,569,494,486,502,493,498,491,507,500,501,512,515,503,502,498,506,498,494,500,501,503,507,511,513,501,520,517,509,545,541,547,549,552,542,544,543,550,548,542,540,543,546,554,495,495,489,500,498,484,487,497,502,493,490,486,543,559,554,547,559,571,503,508,490,479,502,487,501,490,461,475,464,469,466,465,529,548,541,537,546,535,529,548,529,530,543,535,543,540,535,542,534,553,538,548,535,542,532,525,527,521,523,521,529,559,559,553,566,550,559,564,553,546,566,565,559,493,496,506,502,502,499,501,505,539,547,545,532,533,539,538,541,540,540,538,537,559,565,550,563,567,558,555,560,565,568,563,553,554,559,537,560,561,571,568,562,565,524,525,529,527,531,525,531,529,537,542,540,536,534,535,545,550,535,533,536,538,511,506,514,507,516,507,516,509,509,512,513,513,505,504,508,512,513,560,557,562,548,554,557,554,562,564,554,560,552,558,554,556,554,544,550,559,552,561,552,555,564,551,553,518,504,506,503,491,497,518,519,512,515,513,507,555,542,546,533,553,539,478,476,457,461,448,455,452,451,445,458,457,465,456,584,588,577,573,560,583,563,495,502,518,507,533,530,533,528,519,540,529,516,531,542,536,542,545,542,536,532,540,533,538,539,546,524,541,530,534,536,546,540,546,542,548,556,539,538,534,548,545,539,494,502,488,505,505,501,486,503,482,487,492,484,484,486,490,490,485,505,501,502,505,502,501,505,501,500,554,538,551,545,548,547,556,548,539,543,539,547,547,550,555,465,468,461,472,474,467,490,486,476,471,469,481,476,482,556,552,563,552,560,541,538,559,553,486,487,479,490,491,492,484,477,507,491,502,499,501,503,501,495,500,494,495,496,496,506,495,533,535,532,533,544,527,527,526,531,545,531,545,525,476,496,494,488,497,505,506,489,493,489,497,498,498,488,486,489,491,561,560,560,495,503,497,503,498,501,493,496,498,494,501,487,501,493,506,436,451,445,448,446,444,442,451,443,443,439,525,521,537,528,529,533,536,534,522,534,531,530,520,533,534,533,541,532,547,542,547,551,551,535,539,550,551,546,547,547,521,515,516,523,518,519,516,518,529,535,529,531,537,534,526,536,545,563,549,557,565,553,552,545,565,546,481,488,495,497,496,484,494,487,495,581,579,593,581,579,577,585,541,546,545,545,553,548,555,548,548,544,549,548,550,557,558,548,553,548,546,561,548,540,556,548,550,549,550,544,548,554,554,545,553,553,499,522,522,528,495,497,485,492,491,491,487,486,496,497,498,491,457,458,458,463,460,465,465,464,446,463,452,455,466,499,493,510,505,502,491,499,504,493,502,503,502,504,496,508,506,498,537,542,536,543,535,538,544,497,485,509,502,502,503,502,500,511,500,548,563,552,575,550,556,571,552,545,552,589,552,517,513,502,508,515,509,506,510,509,520,510,506,498,515,511,552,548,549,548,535,558,552,542,545,550,550,481,474,470,470,474,471,467,478,467,464,482,462,468,468,466,486,454,476,475,463,463,467,583,524,534,545,558,546,551,557,514,524,515,522,509,528,521,520,525,527,527,530,524,522,524,528,523,520,523,515,519,522,510,518,520,519,517,518,513,519,516,521,523,518,514,519,516,520,551,546,541,544,535,545,544,552,547,546,543,547,543,521,581,583,592,584,588,583,590,542,540,545,545,538,532,539,543,570,562,542,552,570,557,562,556,562,513,505,515,509,506,502,512,499,501,511,507,502,496,520,483,476,484,488,480,494,483,475,486,486,498,487,487,483,488,490,489,485,489,482,496,482,490,487,490,487,450,465,466,457,467,502,499,502,505,508,501,518,507,510,498,513,506,506,506,500,506,512,527,534,550,491,517,503,497,505,497,499,496,500,502,503,504,495,499,553,557,567,548,515,509,512,502,511,506,503,505,556,556,550,549,553,561,552,557,553,559,547,561,556,544,560,490,504,496,487,490,504,499,487,490,497,506,504,521,510,551,549,557,551,556,550,544,553,563,559,539,543,539,547,547,537,541,553,544,543,548,545,541,549,540,540,578,574,563,585,563,572,587,582,566,577,494,496,498,505,492,509,496,500,478,462,468,471,465,468,464,481,476,465,463,474,473,456,560,551,557,557,566,547,553,564,555,549,555,553,561,564,571,564,562,557,548,547,540,561,536,561,552,552,556,550,548,551,547,505,512,506,510,504,564,568,563,578,574,570,558,554,502,519,515,509,479,483,480,481,473,479,491,480,488,472,480,489,489,497,493,491,491,458,453,465,466,465,453,453,456,464,459,452,449,440,465,449,454,441,443,461,455,444,446,533,535,536,536,532,539,533,541,532,538,540,527,532,544,551,536,549,534,534,542,539,535,537,537,529,549,538,537,548,556,544,547,549,550,550,522,512,517,514,519,515,516,516,513,524,533,522,520,523,520,524,519,569,591,575,581,576,580,587,588,541,540,464,462,486,468,481,467,469,460,466,461,474,472,548,549,538,543,549,544,551,541,571,568,560,574,563,570,556,573,574,578,578,568,563,582,571,570,572,532,509,533,530,503,526,545,519,536,533,531,516,493,496,488,496,492,495,496,492,488,486,486,492,555,568,576,564,559,569,570,553,555,565,566,565,552,545,568,568,531,516,513,520,506,489,482,480,480,474,469,448,457,467,463,455,460,458,455,459,459,560,585,574,576,586,581,574,581,582,604,564,590,584,578,534,539,530,542,537,569,569,571,567,566,567,547,571,572,571,563,563,561,564,569,570,555,578,577,556,563,562,563,480,496,487,501,478,475,483,486,478,482,594,581,595,584,589,594,588,607,578,600,593,606,600,589,587,535,530,529,531,537,533,535,533,521,540,518,503,504,512,510,511,510,511,505,515,508,514,509,569,562,564,573,564,562,560,575,552,575,572,494,491,492,489,493,509,470,473,466,453,474,460,464,461,465,457,468,458,474,470,466,468,534,542,527,537,532,523,538,538,529,527,537,531,527,526,528,548,536,535,530,530,538,538,533,535,558,567,565,567,558,559,563,562,562,557,558,506,507,510,500,506,512,547,560,555,544,548,548,542,546,548,552,536,554,548,554,540,555,487,494,489,513,507,482,497,497,513,496,516,496,474,459,465,467,482,478,469,457,466,478,459,461,460,462,472,470,546,535,540,538,532,524,532,526,525,517,519,528,527,523,523,521,517,524,525,528,522,523,527,522,544,541,559,558,565,509,496,502,495,493,504,499,503,495,511,467,479,471,470,474,469,465,483,485,485,481,480,485,526,538,524,529,526,524,553,548,546,570,532,558,560,555,517,497,495,494,504,482,496,498,497,508,510,488,505,491,480,469,480,488,483,471,473,473,483,471,472,481,481,468,476,560,541,555,543,564,555,554,547,556,497,495,476,492,492,491,484,492,493,496,493,485,496,488,488,490,489,493,497,485,484,485,589,569,567,583,582,593,576,584,572,572,561,583,486,474,473,465,459,487,469,472,460,493,498,472,470,545,534,572,570,571,581,571,569,538,551,549,543,543,545,502,498,496,497,499,492,504,499,500,501,486,499,492,497,500,493,498,491,536,527,525,525,535,530,532,583,549,550,552,549,552,552,517,508,500,508,511,495,498,515,503,514,498,505,494,478,478,481,485,475,482,484,481,476,477,480,474,478,487,484,487,456,460,460,459,456,423,446,446,443,430,448,450,440,440,439,445,537,553,537,536,540,532,547,552,542,546,537,549,550,554,552,538,547,546,541,481,494,483,492,483,481,475,489,485,485,490,485,499,487,483,489,478,495,551,558,562,558,555,547,555,554,557,561,557,560,544,554,558,553,552,540,544,561,564,551,552,494,486,506,502,494,479,492,508,500,506,512,500,441,486,493,491,505,493,482,507,486,499,492,497,491,493,541,537,542,541,532,540,547,545,542,541,543,531,539,470,462,472,473,472,470,480,463,471,471,475,548,529,532,536,550,579,575,564,539,539,534,530,529,549,509,519,510,508,502,513,504,507,499,506,503,513,505,513,500,551,556,578,550,527,528,530,559,557,553,556,550,552,558,555,566,543,554,545,508,518,506,520,517,537,528,532,523,525,505,498,503,499,476,486,486,481,477,479,461,469,465,468,553,568,555,555,564,569,550,563,547,550,556,560,550,483,552,546,554,531,503,528,541,541,537,534,515,515,516,509,508,511,517,507,514,512,516,511,514,506,514,510,515,506,508,508,513,519,511,517,555,551,558,552,563,550,562,560,560,564,566,555,555,553,562,563,560,548,557,554,563,553,555,563,558,561,521,518,515,508,502,515,520,519,513,523,520,519,515,509,489,493,498,494,492,490,488,494,492,498,487,493,486,491,485,490,490,512,513,511,558,555,560,562,548,556,564,554,558,550,555,564,552,560,552,558,560,552,517,510,511,510,521,522,522,520,501,501,498,507,501,503,502,504,498,507,506,503,502,507,494,473,469,471,453,468,469,458,462,470,459,470,469,461,472,449,441,435,440,440,443,440,426,457,458,442,443,553,540,537,533,541,543,545,533,544,545,547,541,545,549,470,488,482,481,495,478,485,476,477,480,483,471,477,483,471,472,472,481,486,493,553,544,538,553,529,534,536,531,529,531,530,525,531,534,549,552,550,545,544,499,505,487,494,488,498,488,490,499,491,487,495,505,494,559,563,557,550,547,549,549,548,496,487,488,482,470,485,478,468,598,586,603,609,604,606,603,589,586,601,610,591,590,552,531,545,546,553,552,548,549,545,550,543,550,540,535,540,568,580,571,578,568,575,522,501,505,494,491,491,497,497,500,501,498,499,451,459,461,454,465,458,456,489,504,492,531,537,536,529,539,535,530,539,537,541,526,526,530,521,518,517,517,522,550,558,554,545,547,551,550,551,546,552,536,545,528,539,536,540,544,544,548,544,575,590,579,571,579,574,576,575,581,572,571,528,529,520,523,523,510,516,520,521,511,523,515,525,531,517,489,483,485,489,484,488,486,489,479,475,475,494,470,462,483,476,479,479,469,484,480,479,482,543,546,547,550,551,557,557,559,522,553,557,559,554,513,510,510,522,513,519,511,507,515,510,511,510,515,570,585,587,572,576,579,575,576,567,561,559,583,551,534,524,529,531,518,520,541,526,528,504,526,534,529,541,516,487,490,441,444,444,438,438,447,443,525,531,520,528,523,517,526,524,528,527,525,517,530,516,531,531,536,529,537,538,532,528,528,546,545,551,556,544,541,467,476,471,471,465,488,466,473,462,459,462,466,538,532,559,557,525,530,515,521,538,527,538,524,534,540,528,542,532,531,552,524,514,512,514,512,519,503,515,512,512,511,513,520,541,536,550,531,532,537,542,529,540,469,466,478,472,460,468,548,550,544,537,534,538,534,530,535,547,535,544,532,534,569,583,573,579,574,572,567,578,581,575,536,543,543,494,488,493,497,507,508,508,501,500,507,510,556,567,570,557,567,566,561,564,559,571,577,567,543,549,538,541,551,546,547,510,513,526,516,516,511,471,462,466,477,460,466,476,469,471,450,432,438,450,447,433,436,444,494,496,573,557,555,558,551,489,507,500,502,494,494,499,500,502,493,507,504,491,500,463,474,450,457,453,458,440,462,452,451,453,457,452,452,457,481,493,505,511,517,509,511,521,539,537,532,531,529,539,531,518,520,530,525,522,520,522,524,527,516,519,529,514,513,525,527,518,534,532,529,525,528,537,531,527,528,537,528,532,575,558,566,567,567,549,545,539,540,533,540,541,532,545,538,546,540,498,487,483,496,486,478,488,489,496,491,490,485,485,490,493,485,464,461,459,471,467,453,470,466,468,470,559,571,560,571,573,570,561,584,570,575,576,571,566,580,569,498,474,472,474,470,483,484,500,483,548,549,553,547,547,546,538,532,548,547,537,547,545,545,547,564,551,550,550,559,543,547,544,550,548,549,555,549,543,551,546,549,544,554,548,503,499,508,505,499,486,491,499,496,492,491,494,497,498,488,493,494,485,491,485,486,504,511,509,516,507,552,552,538,540,540,549,544,544,554,550,560,562,559,559,551,545,541,553,570,539,552,481,471,466,484,461,472,539,536,542,552,551,531,526,530,536,533,530,532,533,554,562,560,565,555,560,490,504,502,492,489,497,502,496,505,490,487,485,490,484,486,482,480,491,484,492,491,487,560,575,578,572,550,570,561,556,582,550,565,567,573,506,489,504,487,509,490,504,516,437,446,437,441,434,434,452,441,436,445,434,441,439,424,436,435,444,436,526,531,546,531,534,534,536,532,538,524,523,534,522,529,530,570,554,557,522,520,525,529,531,526,533,516,527,519,524,515,521,518,516,521,521,519,548,550,565,567,547,556,557,557,557,544,559,555,557,527,528,526,520,521,532,527,526,525,534,543,521,499,504,496,495,494,496,500,501,496,507,497,485,496,503,491,506,504,592,594,601,580,535,535,534,535,533,537,527,537,549,552,560,564,562,553,551,575,509,485,498,485,491,495,491,491,495,494,482,505,486,495,499,493,459,476,454,465,455,464,448,551,568,557,558,565,579,560,543,557,566,560,472,483,481,468,478,453,474,529,517,517,515,520,514,520,534,540,536,532,539,537,531,547,534,544,544,545,556,545,545,547,549,538,521,524,516,519,524,526,525,520,518,558,572,564,563,545,555,548,552,549,546,560,559,557,554,479,487,490,498,493,489,493,489,482,566,573,567,581,577,564,567,564,577,568,571,554,555,554,570,575,566,562,573,495,492,497,499,494,489,514,490,486,491,501,555,546,551,554,556,541,524,544,553,555,544,563,553,556,549,509,506,507,513,503,503,509,505,506,507,513,533,527,533,533,537,532,540,523,532,544,548,545,560,549,550,549,548,565,551,549,509,516,510,515,510,516,560,551,560,561,555,564,512,513,497,478,476,480,484,477,481,481,477,485,476,465,461,463,471,461,473,459,463,464,465,456,463,458,463,451,457,472,499,480,490,478,486,487,493,482,492,486,539,543,554,554,550,547,552,551,557,555,545,547,554,557,547,551,550,555,560,560,559,556,548,565,553,557,486,499,491,495,489,484,498,466,467,463,458,466,461,461,459,541,537,532,531,535,525,540,532,525,536,532,536,529,529,536,532,535,531,535,536,540,527,535,562,569,561,576,558,569,564,555,557,563,564,566,563,562,562,565,576,572,566,532,542,530,534,533,537,523,527,526,536,526,537,528,543,527,511,526,520,509,539,543,535,546,544,568,577,564,561,565,563,552,576,569,575,550,564,580,559,561,570,555,567,494,501,553,562,565,563,553,568,559,559,558,559,563,554,566,564,570,559,556,568,573,567,562,564,561,561,572,563,522,523,514,517,513,521,506,518,519,517,515,520,516,518,516,512,526,506,504,502,505,501,486,484,480,482,482,480,479,480,486,489,482,480,483,486,484,487,484,456,456,461,424,436,428,442,522,516,520,535,535,532,522,531,529,543,527,571,562,564,565,567,575,556,563,575,566,566,565,571,586,559,561,567,561,557,565,557,559,554,525,530,477,467,472,479,481,527,539,540,536,538,527,538,533,538,565,530,535,531,532,538,533,538,535,545,537,526,526,534,539,535,511,494,506,503,511,517,511,503,565,561,563,560,562,564,569,555,547,559,548,557,553,568,547,552,565,558,565,489,505,493,479,488,495,503,489,497,495,489,487,493,573,557,568,562,560,573,571,562,573,571,568,570,574,564,569,571,489,487,489,508,495,505,490,518,510,511,514,486,496,445,438,438,434,426,442,430,432,442,428,434,533,517,531,518,528,530,533,523,534,567,564,570,569,567,571,573,570,559,568,571,561,567,577,559,530,536,529,533,525,522,521,513,531,505,504,508,503,499,505,490,504,502,499,507,500,507,492,490,500,562,555,565,545,564,558,559,546,562,581,575,492,508,497,498,491,508,499,486,489,510,501,503,484,516,500,506,555,553,558,555,545,547,542,551,554,566,545,556,475,502,500,508,503,464,471,478,468,467,463,545,549,551,557,543,554,554,548,555,549,555,537,558,541,493,464,475,468,466,471,586,578,556,554,572,466,473,467,489,481,465,474,546,543,544,545,550,545,542,538,549,548,535,551,554,547,545,540,545,557,555,544,553,543,547,488,433,435,444,433,439,447,457,445,441,444,457,450,520,522,527,515,517,517,518,513,512,516,514,517,520,514,525,527,530,552,558,542,553,548,548,543,550,550,533,555,555,551,555,547,552,549,551,510,500,504,508,497,510,510,522,516,517,520,506,527,517,525,526,519,518,540,546,541,541,527,547,544,547,551,541,546,539,534,513,510,515,519,566,566,559,538,554,569,577,561,545,561,561,508,514,514,515,523,517,517,513,520,508,510,450,442,457,544,557,551,557,559,575,565,550,542,543,543,537,553,543,555,549,560,546,549,499,509,514,504,508,521,513,497,519,546,558,546,480,490,493,484,491,480,482,481,489,488,501,484,490,491,487,492,491,493,539,530,531,537,524,542,535,550,557,552,550,542,539,559,545,560,564,505,496,483,491,501,503,490,561,543,568,562,552,539,561,553,490,489,488,481,486,490,506,480,491,497,562,573,572,578,566,583,570,515,521,518,522,576,577,571,587,583,575,590,584,587,573,586,510,510,514,514,508,515,508,513,512,514,509,536,532,522,523,519,522,522,516,525,520,523,523,523,520,519,520,510,534,533,541,536,541,531,530,534,534,527,537,526,527,534,529,533,529,535,532,535,550,558,544,541,551,550,552,550,539,552,560,543,543,554,552,533,546,556,560,487,464,485,479,471,528,543,547,546,543,551,545,550,544,548,540,554,545,542,536,542,547,527,524,527,525,523,522,528,524,527,527,531,532,534,534,528,537,543,541,493,503,509,489,497,495,499,494,490,502,506,545,561,558,562,544,544,550,519,523,516,523,523,516,516,516,525,518,520,527,519,522,527,537,526,534,522,527,532,525,567,562,546,560,553,554,559,559,556,559,529,523,537,532,525,532,531,538,531,536,508,510,512,512,505,505,511,515,520,514,511,510,514,507,539,535,549,559,534,553,549,535,507,501,515,503,516,514,506,516,513,508,562,569,571,563,529,528,500,501,506,496,511,522,468,470,463,467,472,471,471,448,453,457,458,449,450,460,469,557,560,559,547,563,548,550,559,540,550,544,544,540,556,548,549,548,524,519,520,520,527,519,520,526,519,523,563,562,567,554,565,567,559,557,565,569,559,567,567,570,548,540,501,503,499,501,501,497,502,488,497,504,494,496,501,500,510,500,496,507,495,534,546,529,544,538,542,537,543,531,536,553,553,557,552,557,550,555,563,555,558,568,552,551,568,562,565,573,525,502,519,511,500,504,502,501,529,506,464,459,465,459,465,463,465,461,463,455,462,455,459,465,472,470,462,445,432,521,538,538,543,528,553,562,564,533,530,530,534,525,530,530,526,516,533,507,532,533,528,522,535,531,489,491,494,490,499,491,498,500,496,500,499,495,554,561,554,555,553,552,557,510,505,514,517,505,524,529,527,530,527,535,529,522,526,535,523,560,555,547,559,550,548,550,545,540,541,557,546,494,495,509,505,494,500,488,506,518,511,498,498,492,530,524,532,528,518,522,525,532,524,525,552,552,545,560,554,560,567,561,553,486,484,487,498,495,492,492,494,493,498,493,495,488,508,496,463,457,454,458,457,464,485,488,482,483,491,483,479,489,515,510,513,509,510,509,507,507,512,552,560,562,556,560,554,545,563,555,549,555,552,552,553,556,560,560,553,527,514,512,524,518,517,520,521,521,491,484,492,490,492,490,492,498,490,488,481,491,489,479,481,487,481,480,479,491,491,489,486,493,497,490,489,497,490,486,498,489,491,497,486,492,494,462,471,470,471,472,468,469,461,469,471,467,473,474,478,475,480,472,482,475,476,465,476,551,545,557,546,551,543,555,551,555,560,554,550,494,495,491,495,491,484,501,492,497,498,502,496,509,505,505,507,513,503,510,529,531,538,524,530,541,525,526,520,527,521,526,525,521,524,522,517,521,545,538,535,537,534,551,546,536,547,542,546,540,542,538,539,539,530,546,543,539,548,544,552,549,544,536,541,550,558,508,510,520,514,521,510,508,499,509,516,512,507,519,509,561,565,560,560,552,564,561,554,574,509,516,503,492,505,505,489,501,506,510,503,495,515,509,432,429,437,451,439,445,443,435,485,474,477,492,480,487,491,549,547,545,546,546,542,549,548,550,544,546,544,502,507,508,509,509,501,512,502,500,508,500,513,539,541,534,530,537,539,529,533,526,531,535,538,537,529,550,553,554,533,549,550,552,547,560,541,454,470,467,460,487,542,537,548,537,542,552,543,542,534,538,549,538,548,544,537,529,544,534,534,535,546,538,537,536,530,536,484,473,476,488,472,476,484,474,477,480,509,497,501,507,490,495,498,511,553,545,550,543,546,551,553,562,549,549,551,544,497,501,515,508,466,470,467,468,479,471,469,502,503,498,505,546,566,546,559,550,544,553,502,513,523,511,502,523,529,476,484,475,483,476,478,481,486,473,492,472,479,510,502,511,511,500,514,509,509,505,518,508,516,547,560,553,556,558,549,555,497,501,501,493,507,505,499,498,500,508,500,501,504,500,497,500,502,498,539,535,544,535,539,537,537,538,539,530,537,524,527,522,530,533,531,527,551,567,567,559,563,565,563,567,559,558,515,506,507,523,523,507,514,511,512,518,518,476,485,484,508,505,503,516,509,510,511,514,508,500,540,546,540,545,549,545,537,541,533,544,556,552,538,558,540,537,551,501,487,491,494,493,504,496,490,496,490,532,538,534,531,535,532,539,557,563,547,551,551,550,555,552,553,547,552,491,492,483,500,462,486,469,468,462,471,473,470,465,455,461,555,532,540,543,543,552,532,530,538,534,539,539,520,521,527,530,536,552,549,551,538,540,555,560,558,537,512,488,484,490,489,497,480,439,450,447,438,441,458,430,434,438,447,443,443,437,440,447,432,437,430,432,435,442,487,483,496,487,496,487,494,494,535,541,551,530,535,535,530,533,536,531,529,532,530,533,540,533,531,534,534,535,526,534,554,571,556,551,541,550,547,558,553,548,564,549,562,556,492,511,497,495,501,501,496,500,499,499,501,500,503,505,500,485,498,506,497,504,509,503,502,499,498,508,499,502,542,543,590,568,588,564,571,563,497,568,551,555,560,558,559,554,555,544,555,557,531,527,528,529,523,525,524,530,524,527,531,531,525,534,556,545,543,486,488,486,488,478,477,487,487,482,479,479,488,488,498,485,486,489,492,487,493,477,444,455,447,451,443,444,440,455,442,553,551,567,554,555,559,555,556,564,564,549,556,559,508,498,504,498,498,507,498,495,487,496,487,575,558,589,577,583,577,568,580,479,474,475,483,489,490,482,475,479,483,514,522,524,522,530,528,520,518,518,521,514,524,522,521,519,523,522,545,540,539,551,548,548,546,542,556,500,512,513,505,510,502,509,511,502,518,492,499,513,515,498,491,493,487,494,494,488,486,497,487,509,501,516,514,544,546,544,542,536,538,550,545,544,550,541,542,548,551,547,494,495,498,493,492,503,497,497,483,433,450,438,450,449,440,442,444,433,446,447,533,537,541,539,524,542,544,492,553,551,531,543,538,538,539,523,513,516,537,534,525,542,529,490,500,509,502,504,529,527,529,529,549,551,546,542,559,558,551,548,563,543,551,544,554,546,515,511,509,502,512,529,524,529,518,528,557,550,553,546,559,546,552,554,548,554,557,559,484,497,470,553,548,546,546,549,545,547,546,536,543,545,550,533,543,553,554,550,533,552,546,543,557,540,520,519,514,522,516,515,519,517,504,510,514,515,514,517,518,585,576,564,573,575,575,519,521,526,512,534,533,530,506,482,484,479,482,490,484,478,491,487,555,571,515,525,525,513,506,510,522,521,508,474,461,475,474,467,478,471,472,473,462,446,455,454,452,442,457,449,457,459,457,460,459,452,452,445,445,457,495,500,510,495,499,507,556,554,555,561,551,560,510,509,499,510,505,496,510,505,508,500,456,462,463,457,468,452,463,456,550,551,561,543,553,553,495,500,505,495,507,502,490,473,500,482,499,432,421,515,516,516,523,534,532,536,532,527,538,537,534,552,550,562,566,555,556,562,555,561,556,554,565,564,505,523,511,520,520,518,526,528,517,598,583,580,587,580,587,595,587,592,540,556,544,546,553,553,549,551,548,548,549,551,545,548,545,492,490,495,478,490,491,484,497,487,480,475,478,476,478,475,476,571,597,591,594,605,596,587,607,596,585,608,552,545,550,542,539,544,553,544,539,547,549,467,465,472,479,471,466,481,475,470,479,465,469,469,465,449,455,450,457,445,454,454,452,446,537,532,534,532,543,539,539,526,532,528,538,546,545,540,539,547,541,533,551,541,546,525,528,522,526,525,523,556,557,561,557,560,535,534,535,535,530,536,536,533,539,543,534,540,539,541,536,535,534,527,537,536,531,536,526,557,561,545,497,508,503,487,494,497,498,498,503,496,493,501,501,496,497,501,495,494,498,499,525,528,524,526,532,590,587,584,587,576,579,573,581,592,519,521,514,510,520,557,562,564,554,563,560,561,553,559,552,551,548,549,554,556,553,553,559,558,554,544,562,493,491,501,507,499,507,491,500,499,504,480,498,492,493,495,501,497,496,499,562,555,540,549,562,548,562,553,483,492,481,481,474,483,479,476,477,481,485,477,494,497,490,490,490,490,481,482,490,494,490,486,483,512,496,505,502,533,520,529,531,530,535,531,529,529,520,534,532,539,534,529,537,525,520,545,547,542,548,540,552,550,548,550,546,549,565,551,554,551,508,491,494,489,495,497,496,495,489,502,506,507,506,511,510,515,510,512,517,513,504,520,515,515,521,517,543,551,550,554,542,546,548,559,549,547,556,555,558,554,507,507,509,517,508,510,511,519,559,549,541,550,524,531,533,549,552,553,547,540,540,546,555,539,547,499,483,504,478,488,549,550,543,544,541,548,547,546,538,499,491,497,508,502,492,497,494,489,488,493,492,490,491,492,534,531,538,535,527,534,528,535,544,535,524,530,529,535,534,529,525,534,535,561,552,547,553,552,553,541,541,550,540,542,561,553,555,560,513,527,517,523,523,513,516,507,530,558,566,573,556,564,556,555,564,557,562,567,563,511,501,498,496,487,471,479,474,477,481,479,481,477,468,476,476,477,480,478,483,479,479,477,466,469,470,480,479,471,471,480,484,475,468,470,466,552,539,543,546,539,553,546,542,548,562,543,543,519,532,526,529,522,524,528,560,559,571,563,557,561,547,553,558,548,553,480,484,494,503,485,473,468,460,469,464,461,475,475,478,468,566,560,551,562,556,561,563,563,541,543,560,544,550,547,550,559,555,540,504,519,510,499,509,501,510,514,518,511,509,515,506,512,518,509,569,571,568,565,566,573,494,513,494,479,501,505,510,459,451,462,458,451,487,498,558,557,558,546,546,544,548,546,550,551,546,548,521,517,527,514,516,511,519,522,518,533,521,532,520,513,513,514,586,600,580,538,550,542,544,545,533,547,542,548,551,536,543,543,543,560,555,568,570,572,559,564,555,495,504,516,492,510,505,504,507,513,507,512,506,514,506,547,533,533,523,530,538,540,535,531,535,562,559,569,567,568,542,568,569,560,556,559,562,567,565,520,517,518,516,520,530,521,514,523,521,530,491,494,496,491,493,494,485,490,496,495,489,495,457,449,462,454,460,450,460,456,451,498,491,491,482,546,561,561,555,561,556,546,525,527,527,534,537,525,529,528,526,533,528,501,496,500,495,492,505,575,579,578,553,566,560,576,578,575,475,480,546,547,529,536,552,540,553,544,543,551,546,541,539,484,475,469,470,482,488,486,477,480,491,482,485,484,478,509,501,504,490,495,518,508,506,501,501,501,493,492,497,516,497,542,535,534,545,550,506,504,499,508,509,508,505,497,503,505,507,507,492,497,551,563,554,520,521,523,523,523,524,521,519,525,528,522,517,519,521,546,572,564,552,565,558,562,569,560,573,566,552,562,563,555,535,516,516,514,517,522,512,521,529,516,527,514,478,481,477,486,480,481,477,429,441,425,433,443,433,447,435,434,439,420,447,480,487,494,482,478,479,484,473,476,482,545,539,554,547,554,523,514,583,580,588,592,587,587,510,507,497,506,504,499,523,522,519,522,530,525,525,523,522,521,528,526,526,515,539,531,528,525,521,530,532,570,566,570,560,562,566,568,574,554,556,560,568,524,519,521,519,522,527,526,525,520,534,533,529,521,530,525,523,522,564,566,555,547,558,566,553,563,565,556,551,566,547,561,544,562,505,507,508,504,517,509,514,514,512,506,502,510,524,522,514,510,522,522,525,517,517,513,509,522,507,514,580,591,579,583,587,587,591,586,591,578,583,581,555,564,555,563,571,556,557,559,556,564,561,556,569,553,549,553,555,520,509,504,520,511,522,505,522,522,499,518,521,500,516,479,482,473,474,478,481,482,478,489,477,482,479,477,482,501,495,540,540,540,544,536,532,545,541,540,536,547,554,558,557,564,557,555,503,509,510,522,512,503,523,474,467,463,465,468,466,464,465,475,465,469,464,467,469,459,462,471,469,449,457,456,455,452,451,456,445,463,462,462,464,458,453,455,460,448,460,555,557,550,544,547,547,550,517,510,505,517,518,518,511,513,519,509,523,515,505,521,507,516,513,519,511,506,546,555,553,541,553,545,546,544,562,556,546,549,526,526,532,524,523,526,515,521,442,464,453,454,459,450,466,456,455,449,526,518,530,532,529,520,524,524,541,524,522,529,529,522,523,521,525,522,523,519,545,546,546,539,545,546,550,540,541,547,549,562,551,558,557,557,556,551,557,554,557,513,519,521,507,528,510,519,455,464,465,461,468,465,454,465,464,468,451,470,493,478,475,562,574,561,560,567,550,553,560,555,575,565,502,512,505,509,507,502,502,510,511,507,506,503,506,513,508,510,559,561,562,565,558,491,498,493,498,499,496,501,501,538,538,540,538,552,561,552,553,556,563,553,484,487,487,558,561,548,529,550,551,559,501,516,510,512,511,508,509,509,506,516,514,503,504,513,515,501,504,492,500,498,503,502,491,535,544,544,539,557,569,564,576,571,569,570,565,567,564,531,521,531,530,548,526,527,518,526,486,470,476,479,480,483,477,550,561,558,550,556,567,559,566,562,567,557,573,560,520,521,528,522,525,513,536,526,543,525,526,533,524,514,526,531,521,516,513,512,523,498,498,496,502,509,498,499,506,502,509,504,502,506,508,503,505,503,483,480,483,477,489,486,483,481,475,482,485,461,458,455,465,453,455,459,466,465,557,553,559,548,552,554,552,552,556,560,557,549,553,551,554,547,561,552,549,546,551,551,560,554,520,520,510,520,531,525,524,523,532,533,526,525,524,523,520,533,547,569,554,552,557,553,551,544,556,558,546,561,523,525,522,525,535,529,525,527,555,557,572,556,565,548,552,552,556,557,552,550,553,549,544,553,540,530,536,531,520,517,514,542,517,525,526,528,529,532,513,499,501,506,502,510,502,479,476,492,487,488,498,485,571,558,580,557,575,578,565,564,568,569,568,565,566,581,570,495,509,515,509,498,516,490,493,491,497,495,512,510,510,501,495,471,463,464,567,546,551,522,536,518,494,499,509,504,509,503,496,506,565,552,553,576,565,562,560,563,564,568,555,588,569,574,503,493,510,508,509,515,494,495,510,502,503,508,451,452,452,455,455,464,456,459,456,453,440,442,479,494,484,482,484,485,484,482,486,486,479,470,484,484,556,562,583,562,559,576,584,575,569,567,561,574,561,560,569,554,500,507,499,496,496,494,504,448,439,438,441,449,439,433,445,427,439,446,476,496,487,493,504,489,483,494,491,498,526,525,543,525,542,530,542,534,541,538,533,530,526,540,538,495,482,495,497,553,541,541,552,546,537,546,539,552,557,546,534,542,546,539,554,550,516,522,513,515,521,516,521,511,510,561,560,558,561,565,556,560,550,563,541,536,536,527,535,527,536,509,517,515,569,556,557,561,501,486,490,504,487,479,489,493,481,503,555,562,557,551,552,561,554,555,557,559,566,552,558,549,560,551,540,546,555,551,538,550,551,559,549,552,555,553,513,506,509,512,505,508,520,505,518,504,459,460,460,459,459,464,464,474,456,467,470,459,462,471,480,469,463,469,459,474,471,466,459,478,483,464,559,560,562,559,550,549,551,546,553,551,551,537,553,550,550,505,495,492,488,484,486,487,504,486,497,465,465,461,460,458,469,461,461,562,516,499,515,510,507,496,506,509,506,500,500,498,498,498,500,510,501,527,530,532,535,527,529,529,529,530,532,543,530,546,529,540,534,532,555,559,561,553,544,482,477,483,495,501,486,492,490,491,500,494,490,566,563,557,561,558,564,561,564,560,556,557,569,569,575,569,567,569,523,523,530,520,530,517,509,485,488,496,481,491,484,478,471,477,482,486,478,479,487,474,494,491,493,492,487,491,496,460,467,461,454,461,467,446,461,453,449,482,473,479,471,478,481,471,480,482,561,560,567,569,567,565,555,574,569,558,482,501,511,510,494,492,504,459,454,466,452,454,450,444,451,447,463,455,464,466,462,453,466,463,464,458,465,459,466,540,535,542,536,539,539,542,534,533,545,540,540,549,536,536,538,541,535,531,546,541,540,554,554,547,539,548,553,542,543,550,551,542,540,551,543,529,524,525,532,528,520,529,524,531,528,528,538,548,536,542,532,535,519,514,525,523,561,540,549,546,552,545,554,557,545,544,544,552,546,547,551,549,549,550,509,504,500,501,510,502,534,539,532,536,532,536,535,535,540,533,527,521,528,515,525,523,526,514,536,539,526,539,542,548,543,548,552,547,552,545,477,464,461,488,471,475,479,478,469,481,479,478,475,476,473,476,479,468,473,470,485,477,475,458,471,566,564,568,565,573,590,567,572,583,585,573,566,472,472,476,469,483,477,480,479,537,527,543,549,536,536,538,541,545,542,542,528,537,542,542,546,550,552,543,481,477,483,469,465,483,469,480,463,474,486,474,467,466,471,555,539,552,556,556,541,546,555,551,542,539,553,543,562,544,558,541,553,546,552,539,550,547,504,504,507,516,508,506,511,501,514,514,519,506,513,459,461,501,507,486,553,490,487,491,485,479,482,489,568,571,572,574,565,574,571,500,511,510,511,510,518,519,517,515,518,571,589,571,571,572,586,590,579,584,555,548,552,550,557,538,536,545,548,550,562,548,551,557,555,549,546,547,499,508,504,509,495,464,467,458,458,460,471,472,453,462,452,470,465,459,463,462,463,475,466,467,446,457,470,460,455,463,449,464,550,545,552,556,565,488,479,467,471,540,545,555,538,543,540,531,538,543,543,546,541,542,550,549,546,542,517,511,513,519,509,504,507,517,509,509,508,521,524,525,531,527,513,522,526,532,527,527,521,537,526,526,524,531,522,521,525,569,566,552,577,561,563,550,547,548,552,554,547,542,553,551,556,553,553,553,551,556,550,556,560,553,551,524,513,529,533,524,506,513,516,534,522,527,499,500,495,493,496,498,493,499,491,499,498,491,483,486,482,484,490,455,464,469,540,555,549,543,558,558,560,546,570,554,545,525,518,515,517,514,517,508,520,514,519,522,516,516,531,545,542,554,544,542,545,549,551,547,538,540,552,539,536,537,542,546,529,487,490,487,499,496,479,480,482,480,488,490,482,484,477,495,479,493,486,486,485,476,468,469,471,474,569,553,575,544,555,566,550,545,501,497,502,510,520,512,509,497,497,505,497,507,501,517,516,514,517,478,494,486,491,491,493,487,499,492,492,490,481,500,510,504,500,506,496,502,492,500,502,511,501,502,505,512,511,498,507,504,504,498,494,506,500,512,480,487,464,483,488,488,487,460,474,468,467,456,459,457,461,471,463,466,468,457,465,464,452,521,515,507,515,517,570,481,493,497,495,487,494,492,499,499,488,494,490,501,504,478,605,592,615,607,609,590,596,598,606,598,603,611,605,603,597,546,554,558,554,549,560,550,559,562,560,521,513,518,513,529,511,508,511,492,495,497,501,498,496,503,502,492,488,500,499,497,497,485,477,482,480,485,487,483,481,486,458,459,457,455,462,458,458,469,460,474,460,464,460,466,459,467,469,457,467,466,529,530,542,541,553,533,532,536,529,531,526,521,522,526,523,526,524,546,537,543,539,537,540,542,540,525,523,524,524,525,522,520,531,535,535,536,534,540,538,528,520,521,526,531,522,523,523,528,523,529,523,520,521,558,552,551,554,554,557,560,560,562,562,565,552,552,548,559,526,532,538,539,533,543,536,537,538,533,535,533,531,524,521,517,515,518,542,557,558,505,512,447,429,534,545,542,547,555,546,553,555,546,550,552,556,483,469,469,475,491,484,470,478,484,477,548,545,543,545,540,536,543,535,549,551,549,552,557,541,542,541,550,547,552,515,516,533,519,527,521,526,523,587,599,576,580,531,532,528,531,530,525,532,527,525,524,529,526,562,556,552,564,557,554,564,562,556,565,560,561,547,560,555,553,550,487,493,497,491,502,488,491,504,485,491,488,468,458,449,459,463,457,464,538,534,543,532,538,538,537,538,534,534,539,535,530,539,530,535,540,536,532,532,525,527,523,517,519,529,522,521,522,522,526,524,522,524,516,536,541,538,544,542,545,548,540,543,541,535,555,536,544,531,536,546,534,540,476,470,474,491,479,483,490,480,471,484,475,469,481,489,470,480,481,462,488,500,490,485,481,489,492,488,499,475,481,488,485,492,486,483,506,509,499,504,499,502,514,500,501,505,499,504,503,501,543,533,539,548,542,538,543,560,568,564,571,574,564,559,565,567,565,561,560,565,557,566,533,534,539,543,546,526,534,533,537,535,528,542,525,546,510,523,520,518,503,512,507,503,503,510,505,506,504,500,508,505,530,526,526,532,522,531,533,524,520,530,531,531,523,525,531,526,527,524,521,539,533,545,535,543,536,537,539,545,552,551,561,551,546,548,561,558,480,493,493,454,444,452,449,457,453,436,437,438,438,444,445,445,448,454,437,440,522,523,526,525,523,519,524,520,520,518,525,523,525,519,524,528,526,525,525,523,518,549,538,536,548,545,546,546,549,554,553,548,550,548,559,549,550,550,546,556,545,546,551,557,549,543,505,489,501,498,495,482,485,489,508,494,497,491,486,501,478,455,454,475,452,461,458,459,463,567,579,584,592,579,566,594,590,577,583,590,561,594,546,538,548,549,539,547,547,555,558,542,549,548,550,551,559,555,547,547,538,549,544,552,542,542,544,542,545,548,548,556,550,544,549,512,527,471,477,469,485,480,476,482,469,471,473,470,471,466,470,475,472,476,465,459,474,462,562,546,553,553,548,564,556,555,542,544,510,512,513,513,512,512,507,515,517,515,520,508,520,527,518,520,519,525,586,593,586,583,589,579,581,584,585,593,583,593,590,577,555,553,554,544,550,558,558,546,554,546,554,551,488,499,502,497,482,499,486,486,492,488,492,485,495,495,484,481,487,483,489,485,485,479,493,487,492,495,483,492,581,569,549,583,560,560,577,495,481,491,491,489,509,495,512,509,443,461,465,468,463,466,454,464,460,460,457,465,446,566,578,575,572,570,572,584,579,567,574,582,566,565,567,576,578,588,496,499,514,508,537,517,532,527,527,537,525,535,535,533,539,532,533,533,535,537,532,549,537,555,547,550,535,553,537,550,479,464,462,469,470,471,455,467,535,525,539,537,540,528,536,526,560,567,565,566,507,492,504,499,502,502,499,504,509,507,503,506,491,499,501,531,534,535,531,527,524,541,526,534,525,524,538,532,538,534,537,531,533,520,521,525,524,519,529,525,519,524,518,514,517,517,519,509,522,521,523,516,514,518,517,519,523,523,528,532,532,530,532,532,532,535,550,547,537,533,545,544,535,498,494,499,509,502,492,504,494,507,498,498,513,497,505,496,496,505,496,505,571,541,541,548,513,508,511,512,504,515,512,568,562,570,568,586,575,570,562,563,574,574,572,514,505,502,505,514,503,514,504,503,509,511,502,508,508,519,508,494,486,487,483,494,483,481,490,486,493,490,490,485,494,498,500,495,505,498,497,495,496,502,477,479,474,481,490,477,474,469,468,481,476,476,482,483,484,482,491,485,488,490,482,485,489,553,566,565,552,573,515,514,518,512,512,539,541,539,542,542,539,533,538,538,544,543,536,543,507,500,502,542,529,537,536,531,536,535,534,530,533,537,537,530,539,522,525,525,530,520,517,519,524,524,515,518,524,516,526,525,524,523,525,517,526,520,521,528,526,519,541,530,541,536,532,538,536,527,530,539,540,550,553,544,546,554,544,545,545,549,542,542,544,532,547,544,539,549,525,523,521,531,522,516,521,523,521,544,555,539,542,545,549,538,548,550,540,551,543,554,548,502,511,506,500,504,499,505,492,503,509,495,511,534,536,532,544,532,533,544,536,538,532,532,535,528,519,523,527,526,528,525,516,519,536,534,533,522,538,523,531,541,546,542,545,528,550,539,535,546,544,538,502,534,535,533,532,547,534,532,537,541,531,540,555,547,545,553,549,569,551,560,560,564,554,550,518,509,524,510,512,511,512,512,506,550,549,569,563,561,558,563,565,567,573,508,509,509,529,507,508,510,521,506,502,521,509,465,470,477,469,467,462,469,553,562,546,534,554,537,558,548,540,545,553,554,522,542,486,480,493,490,492,489,490,499,490,497,544,561,559,554,555,560,569,560,556,552,560,570,561,553,549,551,551,564,571,553,548,550,547,484,505,491,476,475,484,487,484,469,479,491,495,483,493,480,546,544,529,552,542,549,553,543,559,547,557,542,547,549,553,549,545,549,549,503,503,530,536,537,533,530,533,534,532,538,528,539,553,547,545,561,549,553,568,552,560,552,556,552,545,556,552,499,508,498,509,508,512,511,514,502,500,512,504,503,509,506,509,524,506,514,565,562,569,560,588,570,568,570,575,571,572,570,566,579,571,566,570,565,496,493,493,497,487,506,491,524,491,506,507,501,516,502,497,499,504,566,584,568,568,574,570,564,566,580,566,583,508,522,520,513,526,527,516,522,521,518,523,562,557,549,553,555,552,556,516,513,517,516,517,502,507,503,497,500,497,507,502,495,502,496,507,495,506,500,497,499,529,532,524,525,526,524,523,527,527,527,529,525,530,521,523,522,514,530,519,515,530,530,533,529,530,529,526,527,534,532,520,538,532,536,539,542,541,545,554,543,538,540,539,536,532,521,519,529,512,510,553,549,550,501,483,497,476,497,493,502,488,499,492,491,499,490,493,493,495,491,494,495,494,570,550,554,568,555,557,558,571,561,560,560,572,584,568,565,560,559,485,483,476,474,483,480,464,476,476,468,471,474,463,480,572,571,553,565,583,587,480,478,474,500,473,480,488,482,485,477,484,522,518,521,518,525,523,526,529,533,535,536,532,543,545,540,544,550,550,484,509,496,489,479,498,494,488,497,488,489,489,481,493,478,498,590,594,587,592,582,594,567,581,583,581,597,554,557,557,515,507,510,505,509,527,522,515,522,516,514,521,519,511,476,482,485,482,492,477,480,487,482,477,477,477,488,481,485,484,496,484,488,487,504,516,522,516,515,511,505,508,508,513,512,508,515,499,511,538,539,549,536,558,555,551,535,533,541,545,537,546,514,508,517,513,503,550,581,574,553,549,570,508,521,514,523,522,527,525,524,532,530,517,496,496,493,491,493,494,513,513,507,506,499,510,501,512,509,505,542,533,527,526,527,535,490,550,553,527,522,518,530,527,535,533,535,523,532,540,517,474,485,478,480,523,527,525,523,526,524,524,534,524,537,528,519,534,540,532,568,568,563,559,519,519,530,522,513,520,529,577,570,592,576,581,585,574,532,529,523,538,517,523,533,537,569,563,559,562,552,559,571,567,567,559,568,579,560,551,564,547,567,563,476,482,479,476,477,473,489,483,479,482,529,521,520,524,525,527,521,519,520,541,528,536,530,532,528,533,538,533,546,548,542,536,549,549,544,545,547,544,552,542,549,565,556,537,474,455,483,468,467,481,478,469,473,466,475,465,476,469,468,473,457,475,474,482,524,516,526,522,524,518,518,519,517,519,520,523,517,516,518,523,535,529,531,535,533,537,545,537,553,550,531,541,551,547,558,569,558,552,549,557,469,479,471,488,461,539,534,549,540,545,532,544,538,551,538,547,552,540,521,519,520,517,521,516,516,522,517,518,522,525,518,525,521,513,522,521,519,524,545,554,537,549,534,551,541,551,544,547,546,498,507,503,499,505,495,497,503,499,544,552,544,540,547,544,564,542,543,534,579,562,564,564,550,570,559,565,558,555,565,572,564,574,519,530,511,587,573,567,566,587,527,517,515,542,532,542,539,535,542,531,530,545,545,536,543,512,556,546,550,530,528,538,526,527,530,537,529,531,537,532,527,519,517,502,518,514,520,516,514,525,522,516,517,514,515,515,537,532,530,531,539,531,549,536,567,552,564,572,543,504,492,505,509,497,519,497,502,538,546,545,564,553,552,541,552,544,544,543,495,491,500,494,505,499,497,501,498,496,492,491,490,494,489,510,515,516,507,505,514,508,515,513,512,504,506,511,508,512,514,543,547,553,558,543,546,548,553,549,540,555,555,547,539,557,544,557,552,551,548,475,486,484,475,471,487,485,533,540,541,537,535,534,528,537,538,527,535,546,544,533,538,531,523,519,526,525,528,531,523,522,519,529,516,527,538,542,546,547,536,540,546,543,552,558,493,491,496,494,507,567,561,553,571,569,558,554,577,546,559,570,567,549,507,505,513,512,512,509,523,558,551,560,554,561,489,481,464,464,472,458,458,459,446,456,582,562,581,578,561,564,576,580,565,529,530,533,534,533,524,527,535,537,531,536,556,547,561,555,565,569,516,515,515,513,520,528,512,516,516,519,515,520,519,581,579,546,553,588,548,548,554,565,561,553,565,556,552,584,563,528,508,503,506,519,507,506,493,505,516,506,496,496,512,501,560,558,564,558,552,554,546,572,556,569,557,519,517,516,521,519,510,524,522,510,514,516,509,516,517,522,514,519,521,517,557,544,538,539,553,542,538,546,546,532,549,546,550,524,521,525,519,519,517,555,556,568,574,554,568,561,512,526,514,512,519,509,513,521,514,513,518,506,517,533,546,538,540,538,533,538,547,557,546,557,557,546,548,549,567,552,548,572,565,486,494,497,496,501,508,505,498,504,495,494,505,505,436,450,450,451,452,455,551,550,546,561,548,540,548,540,544,544,544,543,555,547,545,552,506,524,495,504,462,458,465,460,458,456,460,462,466,461,469,471,466,454,458,467,450,457,471,468,461,469,461,470,533,554,541,529,541,555,468,478,461,476,468,483,465,475,461,464,468,467,474,460,473,468,565,559,577,571,570,561,563,563,552,558,567,548,569,560,581,521,515,518,516,525,521,539,530,533,516,528,524,532,518,528,517,530,512,528,520,498,504,495,492,486,490,487,492,486,496,485,487,534,564,572,582,565,563,553,564,547,489,483,483,487,501,478,485,485,491,494,563,556,555,547,567,560,559,570,548,545,561,554,541,538,537,509,503,510,498,517,512,515,505,505,513,516,502,512,514,553,490,489,485,469,481,486,476,493,480,503,501,499,500,504,504,506,538,554,533,540,529,537,534,534,541,538,540,518,536,503,495,509,508,498,509,513,502,514,505,501,564,557,564,555,517,508,504,481,492,485,493,494,507,493,495,509,432,438,436,442,449,456,448,437,442,525,541,544,537,538,555,548,552,549,554,553,557,545,547,545,539,491,514,490,510,500,501,506,512,490,495,517,511,440,434,450,449,440,451,452,449,432,447,447,431,450,445,458,482,482,476,466,474,472,469,489,549,571,562,567,564,559,565,515,506,509,521,502,515,508,504,501,514,515,509,579,555,562,568,573,580,575,559,568,558,494,516,508,512,495,491,509,505,503,513,501,500,509,508,497,449,454,445,435,448,441,447,548,529,535,540,549,544,539,541,546,537,531,542,540,544,552,481,487,485,468,474,472,477,464,482,484,493,483,497,490,469,468,568,570,560,553,566,557,569,561,564,561,559,557,557,517,533,532,515,525,524,523,520,522,543,542,547,545,540,537,540,536,556,569,572,577,565,565,493,500,494,500,525,488,496,494,490,495,506,450,435,433,452,432,435,447,446,443,523,531,535,534,535,532,540,555,551,546,545,547,546,485,482,481,490,490,483,502,484,484,493,494,496,485,583,573,588,578,590,574,576,580,582,591,532,524,526,528,511,527,535,530,535,521,525,536,561,553,554,556,568,556,551,562,561,554,501,483,507,500,490,490,478,493,499,499,522,438,448,427,451,439,446,446,431,444,423,437,439,437,443,514,517,510,518,517,522,514,520,515,519,519,516,517,513,519,508,522,517,520,518,516,543,549,540,538,539,544,547,539,554,559,563,564,565,551,548,545,547,550,560,511,519,515,520,528,509,519,528,520,521,523,519,487,493,498,490,489,492,492,493,489,490,496,481,486,496,490,501,492,501,498,498,500,492,543,541,543,540,544,540,537,542,541,546,544,550,539,541,539,542,569,565,561,560,530,512,532,543,520,542,535,513,517,509,507,515,513,511,508,521,510,509,505,507,503,497,500,505,502,502,500,487,491,487,492,486,487,499,493,493,494,496,496,495,492,457,455,452,470,458,455,451,464,458,452,469,475,498,497,486,488,499,492,481,493,488,494,541,527,536,531,539,531,537,530,537,528,531,561,555,543,560,550,551,574,554,562,542,560,508,490,486,496,495,496,490,562,563,558,553,578,566,562,571,564,577,486,474,487,490,482,474,462,485,486,543,558,555,541,553,561,549,546,555,540,542,545,545,549,540,543,541,556,529,545,542,510,497,499,509,508,512,516,511,505,550,564,591,565,581,564,545,508,497,510,505,501,495,547,553,544,547,550,549,543,542,545,547,514,502,496,508,495,502,492,548,553,550,563,555,555,571,572,552,565,568,540,548,576,556,558,561,572,548,570,520,524,517,519,526,521,529,524,520,525,527,529,531,529,532,529,526,526,529,528,522,523,500,495,484,503,492,497,492,482,491,584,592,577,597,599,584,587,588,593,537,564,542,539,564,553,537,532,545,492,492,500,498,490,493,497,487,491,492,487,495,489,538,534,531,529,525,533,535,535,536,523,535,536,533,529,533,528,534,552,568,546,549,551,549,563,561,545,548,550,504,510,507,503,507,509,540,558,549,559,550,545,495,503,484,500,501,496,504,498,500,492,502,491,507,491,465,464,464,473,466,459,466,478,463,467,556,574,553,553,551,574,575,561,555,559,571,562,568,476,489,483,480,474,478,464,478,492,467,476,542,529,536,535,542,536,541,539,539,547,534,542,544,547,547,535,541,540,537,547,553,550,549,545,525,518,521,515,518,513,520,514,522,519,521,515,516,551,550,548,547,557,547,547,546,546,546,540,570,566,573,571,571,566,567,561,567,560,503,505,494,488,477,475,482,475,482,471,497,482,600,588,599,592,534,546,534,538,545,534,543,540,541,545,534,540,539,539,538,543,550,506,512,505,511,510,548,556,551,557,552,551,547,548,554,542,537,543,550,538,545,503,506,492,512,505,503,509,506,505,525,503,506,513,513,508,553,546,547,548,563,549,544,554,556,553,551,545,558,495,493,491,480,483,480,479,495,492,498,507,497,495,500,495,508,500,501,503,488,501,560,547,543,544,541,549,541,556,502,501,505,494,501,505,499,506,519,506,507,509,514,506,507,514,510,511,496,508,508,506,510,510,578,562,552,557,522,520,507,507,503,512,499,508,508,480,478,479,481,466,455,457,459,460,461,471,469,462,463,495,497,493,492,493,498,499,502,496,498,500,492,537,527,537,557,545,566,556,554,560,555,550,564,558,546,560,555,494,483,514,493,506,501,494,502,496,493,543,563,550,555,564,554,550,546,536,542,499,498,502,496,502,498,496,518,489,506,495,547,535,532,547,532,549,533,546,554,548,551,541,519,565,535,538,534,551,508,502,498,506,503,568,572,563,564,483,480,469,471,474,471,471,562,550,482,487,482,489,480,485,495,480,489,480,486,474,476,478,468,472,475,461,479,475,471,478,471,476,458,466,486,478,475,478,465,470,467,467,453,463,555,574,563,554,580,571,561,561,564,570,581,568,564,566,557,560,527,499,489,498,498,501,501,502,500,496,500,456,454,451,460,459,464,566,558,538,547,514,511,499,507,509,506,510,537,543,537,540,535,534,535,535,537,541,532,536,561,532,516,519,525,535,514,514,485,494,487,485,494,481,481,484,486,474,491,492,498,479,466,466,465,471,458,474,461,480,482,475,475,481,472,478,473,470,475,479,475,476,472,478,476,482,466,470,470,469,467,470,472,473,467,466,471,465,467,458,456,465,460,460,462,470,449,465,456,464,459,453,551,567,556,564,552,571,571,550,561,567,563,571,576,566,555,554,559,563,564,562,484,479,502,489,499,485,491,493,496,496,501,488,498,488,555,556,560,573,560,566,565,549,484,487,436,440,440,446,438,433,447,441,493,495,503,486,493,507,476,491,491,498,493,485,542,540,534,546,531,545,539,550,512,514,514,513,522,514,510,512,510,509,508,513,510,510,551,549,555,553,552,541,551,553,545,557,548,552,549,554,556,552,551,556,546,552,549,547,548,545,549,547,505,503,502,513,510,505,517,516,509,502,513,579,562,486,499,495,510,499,494,507,509,512,520,505,512,507,518,505,515,516,499,460,450,455,460,458,455,455,456,468,447,485,579,568,569,587,570,560,583,575,562,491,494,489,479,503,479,578,593,578,579,589,592,579,502,518,499,504,517,511,507,554,553,540,549,556,533,544,547,536,537,536,483,471,487,482,465,487,482,471,477,480,490,482,492,492,504,495,501,503,498,499,504,500,498,501,542,542,549,542,535,537,543,515,508,512,514,516,519,508,514,510,528,515,521,531,541,528,525,526,535,525,522,535,587,582,579,590,581,581,584,586,585,586,485,527,546,513,516,556,457,457,459,465,519,522,524,516,530,527,529,523,527,524,524,522,524,530,518,521,531,527,527,534,543,540,532,541,535,523,506,514,524,515,523,516,519,514,514,513,515,516,520,571,579,573,581,574,574,569,580,556,572,569,569,575,526,525,534,526,531,525,527,533,517,506,501,506,483,478,473,478,483,448,431,444,444,432,446,525,526,532,527,528,531,521,529,525,523,525,529,543,539,530,535,535,530,539,543,549,492,493,493,488,483,497,472,480,483,567,555,564,561,552,569,543,550,547,556,548,537,555,563,542,551,552,507,500,503,505,502,507,503,512,498,506,506,514,512,504,558,537,567,553,501,494,493,510,493,497,503,487,474,471,486,475,478,479,472,567,552,545,550,559,557,563,556,545,482,475,490,487,482,490,480,497,493,580,582,568,559,565,507,511,520,511,517,515,511,508,501,509,513,507,496,506,523,530,537,529,531,534,522,528,524,539,556,556,563,551,557,553,494,510,505,506,509,511,503,500,505,509,446,453,452,449,460,461,452,452,452,450,452,468,463,465,476,460,472,463,587,591,602,607,607,594,601,592,593,603,600,595,589,588,585,548,545,548,561,548,562,548,563,550,555,552,513,495,500,516,494,512,507,507,517,511,507,507,516,479,488,497,491,497,488,496,492,502,497,499,497,497,502,491,498,565,551,560,560,561,525,522,526,530,529,523,528,521,531,532,527,529,481,465,526,531,510,530,520,525,529,519,531,529,525,525,535,533,533,527,529,538,532,579,568,562,561,564,564,564,564,561,562,567,566,567,573,567,549,569,572,568,548,543,539,547,546,541,536,536,523,538,534,521,525,531,525,529,527,532,533,528,534,535,499,504,544,576,566,562,541,560,561,554,536,568,501,492,500,492,486,508,498,497,503,488,499,486,503,502,493,539,551,555,546,548,547,556,557,551,506,518,505,508,493,517,512,501,516,504,515,500,506,508,501,451,471,462,468,467,465,463,459,470,465,464,466,466,452,468,476,516,519,519,519,576,582,585,588,574,515,520,513,520,520,518,518,518,522,512,525,527,514,552,558,553,533,560,551,555,539,552,550,537,541,552,539,560,536,549,545,513,519,507,565,581,568,576,566,572,502,497,506,492,503,496,493,501,506,495,486,485,489,486,481,474,479,487,479,489,488,477,484,485,474,487,482,486,483,587,598,598,587,598,579,601,602,613,596,525,520,519,521,532,512,520,521,538,521,519,548,530,534,542,529,575,580,590,585,588,592,537,528,534,522,525,529,538,533,527,529,538,539,544,526,529,523,580,566,550,560,574,559,552,551,547,550,558,477,484,487,484,497,483,475,500,553,533,541,548,539,551,532,537,543,541,537,541,531,545,545,534,542,541,534,542,554,547,550,542,543,547,537,540,544,546,545,556,543,548,533,541,541,544,517,510,511,517,515,519,514,517,508,515,523,504,508,543,538,538,541,540,540,542,561,568,566,566,566,561,568,569,534,540,540,543,542,535,538,547,536,537,540,529,567,500,513,505,494,513,499,507,507,506,502,503,506,510,502,543,542,542,542,542,535,534,538,546,538,542,533,536,544,539,542,537,561,558,563,562,575,564,579,553,554,551,561,563,569,558,545,513,516,519,518,522,518,517,524,519,521,516,534,528,527,524,531,532,521,527,574,598,588,584,585,581,590,545,545,549,556,560,544,553,555,544,507,514,501,505,504,472,467,458,457,463,466,466,457,469,458,462,450,461,464,450,456,459,548,553,539,553,536,546,563,551,494,502,501,495,502,501,497,507,493,512,509,513,559,497,506,491,498,494,497,486,491,506,505,488,491,492,488,487,496,506,480,446,443,453,454,458,446,442,457,451,538,544,545,545,547,542,545,544,548,548,539,545,533,558,523,535,532,527,553,551,560,560,557,540,550,494,496,504,490,495,490,500,496,493,508,496,499,516,501,498,494,505,497,502,502,500,510,508,505,504,500,534,535,540,529,538,547,547,559,549,545,538,554,558,576,548,562,558,554,542,568,554,537,565,491,487,482,513,484,483,490,498,491,491,488,490,511,492,498,584,584,583,579,589,572,581,578,584,585,521,527,523,537,524,523,534,515,522,541,528,499,491,490,494,499,492,493,570,583,569,576,566,562,571,557,548,566,553,566,568,553,468,474,486,480,477,477,479,484,482,526,519,527,522,530,518,531,529,514,524,521,531,516,517,514,517,515,526,515,520,515,517,529,524,521,530,538,527,534,536,536,535,531,535,530,538,538,532,545,542,549,543,540,547,508,497,494,496,490,483,490,489,494,497,489,489,545,556,550,554,547,556,547,562,552,549,558,541,551,541,506,498,508,509,499,514,504,505,505,515,511,504,519,506,506,503,507,475,480,473,472,477,485,482,474,485,479,467,479,469,477,477,478,476,475,488,482,483,477,482,483,485,480,492,484,488,459,463,466,462,467,475,455,464,468,452,466,463,470,454,465,464,470,468,473,476,466,471,472,463,469,524,552,546,527,550,562,564,554,550,551,568,556,477,476,559,549,555,552,557,547,551,553,557,569,543,548,484,465,461,466,462,474,479,481,472,513,518,518,521,522,522,520,517,518,519,526,520,520,524,521,521,525,520,526,522,520,526,524,522,523,540,537,542,538,542,534,547,540,533,541,542,549,537,551,552,554,532,540,543,546,554,542,497,494,508,507,511,509,506,502,513,555,551,567,570,564,572,573,505,508,495,505,498,497,480,498,494,506,503,488,503,504,507,493,555,563,562,564,552,545,490,474,477,494,483,486,503,497,496,495,483,502,559,561,567,556,566,553,471,496,484,471,471,483,479,461,485,480,543,536,547,537,550,543,543,553,558,541,544,538,550,545,543,551,563,546,550,544,556,552,550,545,551,555,495,511,484,489,493,501,509,493,476,465,467,466,461,465,468,475,473,467,461,485,565,486,492,482,479,481,492,486,480,544,545,552,545,537,553,549,538,542,538,551,540,543,542,510,509,513,503,508,516,507,506,514,514,517,507,513,512,546,547,542,552,552,544,543,552,540,542,538,542,540,539,532,542,543,540,544,536,541,536,538,539,536,571,569,561,557,576,564,579,560,560,570,578,508,502,484,492,498,493,493,496,536,537,527,537,537,516,521,523,527,527,533,528,533,531,524,521,529,537,525,533,530,525,525,523,562,567,574,570,566,567,563,567,564,554,573,568,506,496,503,495,499,498,501,496,506,510,538,540,540,544,539,545,541,553,567,565,566,566,566,573,561,563,564,532,524,528,538,532,518,517,512,517,511,515,517,509,517,524,510,510,506,509,519,513,514,516,545,567,565,563,555,562,556,556,557,544,566,564,498,504,500,510,504,507,504,542,546,534,539,538,533,550,541,534,532,542,539,534,541,543,533,533,567,558,556,555,561,562,562,559,566,561,561,558,491,490,513,483,483,505,499,491,486,479,507,498,498,505,506,492,481,484,475,475,467,477,481,479,471,486,481,468,478,479,479,477,483,538,557,561,550,546,548,564,556,555,562,545,496,500,487,498,500,485,499,483,499,496,485,483,487,507,559,568,562,565,564,564,578,550,566,557,570,530,521,531,522,529,526,531,532,527,530,525,531,521,527,525,534,532,523,532,537,542,541,556,544,529,541,540,542,541,542,538,547,535,532,543,546,512,523,507,517,504,505,509,512,506,547,541,530,536,542,538,533,540,541,571,574,567,578,574,575,561,561,547,543,540,539,536,538,534,535,546,541,542,541,489,494,486,481,488,486,488,488,491,483,468,469,465,556,553,560,568,568,561,573,561,556,550,565,499,494,499,496,499,494,499,541,557,526,542,537,547,540,547,539,532,558,552,539,559,547,545,507,509,510,513,504,508,512,517,517,507,515,515,512,518,520,582,591,560,570,580,555,503,512,499,499,512,500,493,502,498,510,504,502,510,485,481,491,487,485,491,488,493,500,491,483,488,486,489,586,567,579,567,571,585,578,566,569,561,561,562,563,560,518,537,529,540,533,532,567,560,562,553,555,569,559,567,551,547,555,569,559,563,567,553,506,502,503,502,502,509,496,498,517,500,497,508,494,451,454,461,443,447,447,441,451,432,444,445,442,443,523,531,521,533,521,525,524,535,528,525,527,521,534,539,543,532,537,537,539,546,536,550,551,555,541,554,544,544,550,549,552,543,556,546,561,555,560,481,494,477,498,486,496,497,474,544,546,543,544,553,554,542,547,544,547,545,474,465,464,479,474,481,488,467,473,473,476,471,521,513,517,508,506,523,523,515,518,515,510,518,520,523,540,527,532,531,530,537,536,523,527,549,565,571,558,568,557,567,568,576,570,563,574,506,508,497,495,507,505,499,519,513,512,503,507,497,506,508,517,551,553,550,549,552,555,551,550,550,553,554,553,545,553,541,549,554,563,558,492,514,503,516,506,509,516,507,500,501,512,507,511,505,478,481,465,467,483,491,529,534,533,532,524,540,527,523,529,530,537,534,524,530,535,531,564,550,553,562,498,488,498,487,490,487,493,532,533,532,531,536,531,526,524,527,522,528,525,527,521,516,522,517,515,534,532,530,538,537,533,529,535,531,534,542,545,553,541,554,542,541,540,489,492,494,495,494,490,544,515,509,512,521,511,509,518,512,518,516,518,513,515,507,517,507,512,509,504,517,516,506,551,552,538,541,545,551,550,550,549,545,555,547,560,552,557,545,545,550,559,541,463,479,494,474,478,471,480,470,481,493,460,472,465,542,537,539,548,535,535,534,542,534,550,542,543,551,544,545,549,554,550,549,514,519,513,519,525,514,521,519,518,512,509,510,509,511,508,508,512,510,511,512,511,513,504,506,525,533,519,527,525,534,528,533,532,533,540,527,533,537,537,540,536,527,532,530,548,554,543,543,547,544,489,498,485,502,489,500,490,488,492,497,498,487,490,493,492,480,497,488,493,548,536,538,536,535,533,537,538,529,532,525,523,526,518,528,520,516,518,579,505,522,527,531,524,531,539,540,523,533,519,534,527,539,530,522,522,518,526,519,525,527,527,524,515,528,520,535,529,534,541,526,540,533,534,534,522,539,538,536,532,532,530,542,547,557,541,550,553,555,553,552,546,546,540,537,476,459,473,515,531,522,522,529,511,531,522,522,514,518,523,519,522,530,517,525,526,523,530,547,550,539,533,530,536,537,530,534,533,552,555,539,543,544,550,548,546,543,515,513,513,514,513,514,512,518,504,519,534,519,521,525,529,525,531,521,589,597,588,580,596,581,583,581,594,574,579,589,588,584,579,593,547,551,554,544,552,549,552,559,558,553,486,494,489,496,489,512,515,508,505,554,555,548,558,563,548,560,551,534,530,528,526,529,531,507,508,512,507,503,504,551,538,535,541,537,541,548,546,558,558,551,564,556,554,552,561,518,511,521,519,520,521,524,520,523,526,524,522,519,503,508,509,504,529,528,531,535,550,541,541,540,537,547,536,548,544,535,537,540,549,551,560,557,563,547,549,559,558,554,555,558,508,507,508,514,515,500,510,518,499,513,507,508,507,514,499,476,460,450,461,450,458,464,459,456,460,465,464,491,495,492,490,496,491,491,490,483,480,497,534,539,543,528,535,537,545,540,538,543,535,543,544,535,544,540,545,554,541,555,553,550,530,552,541,546,547,487,473,489,483,483,487,478,489,480,482,481,486,492,484,480,487,524,520,529,529,522,519,531,533,587,578,586,574,583,584,575,584,575,510,508,523,509,524,513,512,551,552,548,552,545,556,548,548,547,541,548,557,547,556,550,548,550,545,544,539,552,544,546,556,550,541,544,504,459,556,562,563,564,557,574,561,482,472,479,472,464,467,476,474,457,475,471,482,448,470,464,476,465,465,520,525,521,525,523,525,513,525,530,519,532,538,540,547,543,538,538,543,535,540,532,530,531,541,550,559,538,548,546,536,545,529,538,548,538,537,507,498,506,507,505,550,556,555,552,554,559,561,560,571,547,479,486,482,471,473,475,491,464,475,457,453,454,449,448,461,449,450,457,462,451,458,447,446,457,445,455,448,447,466,550,554,544,549,554,558,555,547,555,543,549,549,542,547,545,523,516,517,512,514,516,508,505,512,506,510,505,524,514,557,558,560,562,555,558,552,548,552,570,550,550,571,554,555,557,540,560,552,548,549,551,550,558,506,502,504,495,496,446,453,444,454,444,443,519,519,521,522,531,523,520,531,530,529,531,532,529,535,561,571,570,572,561,576,568,567,573,566,558,565,564,528,528,538,562,559,560,563,556,569,524,527,533,528,525,534,533,531,525,533,525,521,534,539,536,530,532,532,532,525,535,529,530,534,560,547,557,553,556,563,555,546,544,552,543,554,544,543,548,556,552,549,540,555,515,512,506,514,506,511,503,481,481,489,481,480,480,482,483,482,463,458,458,464,468,463,466,460,456,460,463,462,461,429,444,430,429,448,521,521,531,537,533,535,524,518,527,519,528,527,522,523,541,539,563,554,547,555,561,559,547,516,516,513,515,519,509,517,504,461,468,460,467,459,462,462,460,461,489,491,494,477,484,479,480,479,485,488,485,544,554,556,561,570,563,577,511,513,515,508,513,518,515,514,510,517,512,514,509,527,508,505,520,574,536,561,545,549,517,515,525,519,521,510,505,512,526,507,506,519,512,508,566,560,574,569,556,565,566,554,562,506,498,502,512,506,497,519,455,438,448,449,446,456,461,459,440,459,451,451,463,457,445,549,548,571,568,571,567,532,541,529,525,531,528,532,534,536,531,527,523,519,524,529,525,527,535,534,533,527,529,523,562,565,549,548,561,559,497,510,498,524,494,506,504,508,507,515,506,513,487,486,488,487,485,481,490,481,488,478,481,478,477,482,489,456,470,455,461,467,469,461,476,467,470,469,465,469,424,423,432,437,444,435,439,448,436,437,429,433,428,488,488,486,486,484,495,473,482,488,485,539,532,538,538,543,544,533,533,535,561,521,520,518,516,513,517,520,517,531,519,520,519,522,521,523,527,527,524,518,513,530,530,514,514,522,588,565,585,590,574,586,578,591,571,567,580,576,574,571,570,554,549,559,545,547,548,550,545,523,538,528,529,539,535,533,540,520,522,523,525,525,519,522,519,523,527,522,563,552,554,559,547,560,550,546,546,559,548,562,557,560,550,569,553,550,543,548,561,562,525,510,507,522,536,529,521,514,523,528,528,511,526,515,503,505,506,510,507,511,506,506,508,506,485,475,487,493,485,483,480,481,481,463,468,458,460,483,497,494,491,484,501,503,479,495,494,490,505,538,560,565,571,570,573,569,570,556,554,563,566,561,572,551,568,544,506,504,511,512,499,508,506,499,511,504,498,541,526,532,532,537,530,541,550,544,540,532,529,537,534,534,536,512,517,509,509,513,512,514,504,510,521,509,519,514,504,514,578,559,562,575,564,566,574,547,550,551,563,512,521,522,525,516,461,464,458,461,464,466,470,473,470,469,475,476,475,466,470,482,545,564,562,544,561,561,521,526,521,517,517,524,519,516,521,516,516,541,546,534,542,523,531,537,549,541,494,498,500,508,500,498,495,503,508,490,550,543,554,549,549,543,544,559,570,571,574,566,568,559,572,549,554,548,555,534,520,518,517,520,495,514,514,476,474,476,478,487,484,478,492,474,480,499,500,539,538,520,586,592,597,586,561,494,502,490,508,502,492,504,495,510,513,513,522,508,507,521,520,512,510,515,551,478,495,475,477,485,480,489,491,476,478,567,544,550,555,552,552,566,571,556,530,515,514,520,526,527,517,526,519,516,509,512,522,518,485,479,481,473,486,490,486,486,485,489,482,495,481,484,481,478,475,475,486,482,480,484,467,457,465,467,472,464,550,560,549,547,561,556,546,558,558,553,558,549,562,534,566,556,549,479,478,470,461,472,475,470,471,481,484,467,461,472,472,544,542,557,544,541,539,539,544,551,543,540,549,544,551,544,548,544,548,548,491,520,499,509,518,504,513,513,518,513,513,515,509,508,500,520,465,464,459,462,460,464,441,441,445,452,454,445,459,448,445,447,451,551,565,562,550,477,483,488,477,472,461,484,493,463,488,470,478,477,485,473,472,467,469,477,542,540,542,548,524,545,538,536,529,556,556,551,543,540,544,546,551,559,544,487,485,485,483,498,463,470,453,462,463,463,454,467,463,548,540,539,549,538,563,545,549,537,561,552,545,486,501,502,503,507,505,496,499,511,502,556,524,504,501,522,513,503,514,514,506,519,511,508,485,478,476,483,479,466,469,474,476,475,480,495,514,507,503,497,498,548,556,552,554,548,547,547,549,551,559,550,548,553,560,556,501,511,507,505,503,501,514,506,515,507,549,549,549,556,554,547,557,556,542,543,539,534,536,533,546,494,499,498,497,500,495,506,494,500,493,496,529,558,548,530,552,558,523,563,485,501,594,589,598,596,593,606,594,599,608,592,607,589,606,591,606,586,614,604,592,564,557,564,553,560,549,566,565,551,562,551,546,548,517,523,528,525,514,513,521,536,515,527,517,518,521,499,499,495,499,500,495,494,502,492,480,485,485,483,483,488,473,474,487,485,486,472,549,555,559,541,554,561,548,559,558,483,505,503,487,493,491,497,494,490,505,495,502,499,498,501,507,498,555,556,552,561,555,567,552,550,544,564,539,540,537,533,532,530,528,528,535,525,543,534,543,528,527,538,526,524,515,524,519,519,509,513,519,513,517,514,523,518,525,523,534,527,527,531,530,542,555,560,504,502,506,498,500,492,504,494,495,509,486,503,499,542,538,548,548,522,524,524,518,527,517,529,550,551,554,546,552,547,551,553,560,549,559,542,548,552,553,545,477,489,468,477,481,471,487,484,485,481,463,470,461,457,466,456,456,460,454,463,586,578,586,576,577,586,588,585,582,538,541,542,534,544,534,582,575,564,570,576,563,570,581,576,542,529,529,527,525,534,529,513,505,508,508,510,516,503,476,472,480,481,481,481,481,479,478,481,482,471,487,482,486,488,478,486,486,490,487,483,494,493,484,584,574,488,508,491,499,511,500,507,505,497,499,487,489,565,584,587,581,591,574,588,575,545,550,547,550,555,546,499,512,495,504,505,512,452,451,449,455,453,448,459,467,476,479,481,475,473,478,483,482,570,558,570,574,553,573,552,572,557,574,562,571,518,504,567,558,560,553,575,556,556,567,565,562,558,558,547,516,512,518,519,514,510,521,524,526,533,518,522,508,503,509,503,504,511,483,478,484,483,481,470,481,482,479,476,477,477,481,476,477,485,464,463,466,469,466,458,453,464,460,455,458,461,467,471,540,561,558,563,551,561,513,517,519,515,513,517,511,508,513,510,519,513,522,510,531,526,528,528,533,537,526,529,549,532,537,534,536,533,528,543,533,494,489,491,492,506,490,483,501,493,498,509,499,498,502,497,603,599,600,598,600,582,578,580,602,594,597,592,579,602,571,555,552,556,558,483,494,497,491,489,486,488,496,487,485,492,482,486,498,483,492,487,495,491,478,484,492,470,490,478,476,478,492,560,566,559,558,551,565,496,483,510,501,498,497,500,459,467,465,459,583,580,593,584,571,584,577,607,500,518,511,503,517,504,511,510,514,509,500,504,509,508,504,544,543,557,550,547,542,553,554,548,543,553,551,551,549,545,554,545,552,551,548,547,555,511,513,516,519,520,525,577,584,576,580,570,574,581,568,573,569,585,577,532,567,592,591,577,597,587,582,576,585,563,552,537,540,477,477,483,507,483,482,491,491,493,444,449,439,431,439,446,444,449,448,531,522,526,528,526,525,529,518,520,526,519,516,530,513,529,525,543,540,523,521,522,523,515,526,520,518,526,526,526,520,520,516,526,527,521,529,551,556,552,561,552,554,548,553,499,481,501,493,488,495,491,501,499,494,500,518,514,512,508,516,508,516,510,520,509,503,525,523,518,527,533,508,512,557,573,503,494,501,493,498,494,496,502,506,501,484,502,494,504,502,501,493,500,507,495,498,493,490,523,528,531,529,530,526,525,529,517,532,528,588,595,586,588,546,555,547,543,554,550,548,544,550,546,519,511,511,516,476,483,480,479,477,480,470,477,475,485,471,480,483,485,465,471,468,461,464,471,468,458,470,467,469,471,489,471,470,477,471,474,481,466,556,544,562,558,555,579,552,563,559,561,550,568,572,515,506,525,510,508,519,515,514,520,507,511,494,476,481,483,488,487,487,480,480,487,490,484,455,464,465,459,461,471,452,461,462,459,480,468,484,479,478,482,480,470,612,597,597,599,613,591,590,601,586,600,591,599,600,532,537,541,529,542,486,493,490,491,493,605,592,540,532,527,519,522,533,536,520,533,491,494,488,497,497,494,490,492,488,489,497,587,599,587,591,581,582,600,588,539,545,545,544,543,547,575,568,562,584,567,564,568,572,577,528,520,512,517,526,524,501,512,526,521,481,480,478,485,481,489,484,489,489,482,490,485,477,482,476,464,469,465,555,544,553,557,546,544,553,537,545,544,560,531,556,559,504,500,489,482,499,495,508,488,486,536,550,553,546,557,539,508,493,501,523,512,511,522,499,508,500,508,503,504,465,464,467,460,468,463,461,458,462,461,456,461,454,463,470,464,471,473,485,480,473,480,483,478,526,516,520,514,518,510,509,526,572,588,580,586,585,590,583,578,588,581,578,575,552,552,551,545,554,501,492,489,495,501,478,487,504,482,500,499,504,497,489,488,490,490,488,490,480,492,483,490,488,556,579,574,488,499,494,498,495,504,494,490,552,546,557,558,563,557,532,560,544,552,557,553,563,488,489,494,477,481,474,496,505,581,589,590,582,582,570,593,579,572,571,546,545,551,556,554,543,543,532,544,543,538,553,549,538,536,540,484,486,482,480,482,446,442,446,451,448,455,441,454,453,541,553,541,532,543,540,542,544,539,546,550,560,547,551,542,538,550,550,550,542,552,541,547,523,521,525,523,528,528,523,520,521,522,524,524,524,529,529,538,534,538,533,549,535,530,528,532,530,530,527,533,533,532,534,561,559,549,563,558,559,567,556,565,492,490,494,499,490,495,491,481,494,495,572,547,549,554,567,558,557,568,476,487,481,462,493,486,481,491,482,504,503,498,506,511,505,508,509,539,544,532,544,528,477,475,476,478,463,466,468,458,479,481,469,468,470,531,552,537,550,538,537,539,542,547,538,542,541,545,572,572,562,566,571,587,573,568,521,525,516,517,519,525,528,516,529,520,533,522,518,522,516,527,591,582,575,579,513,519,512,520,512,515,517,521,509,553,547,554,551,554,563,561,551,556,550,560,555,551,543,556,557,508,512,493,495,498,493,491,486,500,497,492,541,532,540,543,555,571,573,570,528,524,533,521,526,531,528,515,525,533,516,522,523,526,527,521,526,505,509,513,508,512,515,510,514,509,488,493,497,493,492,501,497,464,457,460,463,453,454,459,455,482,481,468,482,480,477,475,489,468,468,486,470,481,481,478,478,486,566,563,528,521,524,526,516,522,515,527,522,523,520,524,523,516,522,539,539,542,543,534,537,536,543,532,533,536,540,545,538,535,535,539,563,563,557,571,565,564,573,547,565,561,562,520,514,530,514,521,522,528,521,526,525,526,521,521,543,540,544,536,527,539,542,539,537,570,561,561,563,562,505,513,508,502,500,510,480,476,477,474,477,482,484,474,477,478,480,479,470,473,470,478,478,484,480,478,482,483,489,476,477,481,482,480,477,480,483,494,494,547,547,553,542,543,543,542,542,541,549,548,549,498,501,507,537,539,529,533,534,533,535,531,532,543,536,529,541,543,547,539,536,537,539,541,534,541,552,552,549,557,540,526,506,515,511,508,501,493,506,493,494,491,488,494,483,483,492,488,484,501,497,508,509,501,514,511,499,512,514,506,512,506,503,507,509,504,512,496,503,498,504,503,503,508,498,500,498,478,479,482,477,480,486,482,482,474,484,484,479,474,470,490,487,490,490,484,486,492,490,561,580,576,556,569,502,523,496,512,505,497,503,487,483,423,430,444,441,444,448,441,452,433,432,452,425,442,516,508,528,530,530,527,534,526,536,529,534,525,534,524,529,536,533,534,531,524,559,564,565,560,569,564,559,565,568,567,539,530,524,517,515,518,520,517,518,521,512,535,556,567,558,547,518,518,521,520,522,522,525,516,518,522,517,518,523,526,520,515,507,512,509,506,510,500,505,508,522,532,523,518,530,531,530,522,526,533,532,527,530,526,524,526,518,529,528,515,528,568,559,565,559,555,566,574,565,574,563,561,562,562,563,526,520,537,520,551,560,554,559,552,562,568,567,547,551,482,470,467,488,475,479,479,490,525,529,518,532,519,527,511,513,523,522,512,522,518,518,520,518,523,521,522,525,527,528,536,534,533,529,530,540,551,539,540,541,545,552,546,549,544,541,498,506,510,512,510,511,518,503,505,501,493,508,505,507,522,524,514,526,522,517,526,520,525,522,527,526,520,525,527,524,565,573,573,560,554,570,561,575,562,547,568,563,554,564,543,544,543,537,543,545,547,542,552,536,543,548,542,539,530,526,527,534,527,524,524,526,497,496,510,498,497,498,481,503,511,545,548,539,558,557,541,546,578,559,548,542,560,523,520,523,523,529,527,529,517,545,533,546,551,545,550,557,544,532,540,556,537,531,548,546,531,542,536,543,505,505,506,502,511,487,485,488,478,482,483,478,474,479,475,484,473,482,478,486,475,457,457,451,457,450,452,458,448,447,456,449,453,449,458,461,458,449,533,550,560,544,547,548,557,555,565,512,517,514,500,506,516,509,506,510,528,529,549,553,554,559,537,555,565,562,559,550,559,539,541,562,572,562,550,510,508,514,507,506,499,515,517,500,499,566,557,557,555,550,501,503,512,501,512,506,494,496,509,507,509,500,508,494,504,464,461,471,467,467,463,473,463,515,511,503,494,537,541,538,532,541,543,533,534,528,543,541,531,539,544,538,518,511,503,521,515,508,512,576,572,569,558,518,523,522,523,515,519,515,489,489,486,485,486,489,490,491,485,480,494,481,489,491,508,507,513,514,507,517,508,510,512,505,511,523,510,521,508,510,506,561,576,559,561,564,564,510,504,508,503,522,518,523,512,516,518,516,522,506,518,502,484,484,482,481,482,484,485,489,488,489,491,494,486,487,494,490,496,485,488,490,496,507,509,509,512,530,521,536,525,526,531,520,523,529,519,527,524,527,525,529,523,537,525,524,523,530,523,529,529,532,533,535,546,555,556,541,542,545,499,492,504,501,508,503,522,492,555,536,562,554,547,492,506,506,510,503,506,500,521,501,503,511,484,500,498,502,480,475,481,480,482,481,474,475,480,485,484,475,478,479,496,508,495,500,500,497,502,502,492,492,492,494,492,487,500,490,490,480,490,478,494,480,485,492,489,488,493,487,472,483,481,467,477,478,478,479,479,479,479,484,568,562,564,516,514,507,510,504,507,508,513,517,505,509,532,525,532,530,523,533,533,531,521,524,522,534,530,527,526,531,532,528,526,532,524,553,556,551,555,553,557,554,561,552,494,506,483,509,496,505,497,502,496,504,447,497,552,552,561,546,554,557,558,513,491,496,505,495,507,507,504,507,509,512,513,520,519,514,511,519,555,563,501,503,491,472,469,470,473,453,503,497,496,494,495,505,494,501,501,502,496,503,497,500,496,498,531,536,560,543,542,559,548,554,547,542,536,543,542,548,542,501,489,499,503,490,488,489,505,497,491,509,497,507,512,555,544,548,550,545,550,551,552,553,555,554,553,513,507,510,516,514,511,503,556,564,540,539,542,549,537,548,543,552,529,534,530,533,526,531,563,556,563,561,557,554,564,565,520,520,511,509,520,506,524,512,519,512,494,504,527,518,507,511,505,518,481,487,480,483,479,498,503,493,495,493,494,490,501,497,499,495,499,498,498,493,498,488,496,497,535,539,540,545,534,540,549,536,540,550,537,538,563,549,523,516,522,508,517,514,513,526,515,515,571,573,572,567,525,497,497,507,501,491,485,497,498,487,497,496,501,497,491,495,506,498,494,502,496,540,546,543,539,539,518,518,524,510,520,527,512,520,511,521,525,529,528,511,516,515,524,521,513,510,591,584,590,592,590,577,591,605,592,543,553,550,544,546,556,537,501,509,507,507,510,506,507,515,514,512,513,514,507,508,481,481,482,469,476,476,469,467,476,465,465,466,473,468,473,469,472,470,467,470,467,429,448,439,442,436,440,526,533,532,528,529,533,517,537,539,546,544,548,543,544,548,549,555,552,550,554,556,550,543,558,546,547,490,499,488,488,499,503,484,502,457,444,441,433,445,441,442,448,449,446,441,450,447,442,441,439,447,534,526,535,530,526,532,526,530,524,545,558,551,539,533,530,531,527,533,537,534,533,537,534,517,508,510,493,508,500,497,503,505,514,502,507,506,496,505,501,501,535,547,539,574,559,568,578,561,558,570,574,567,569,544,551,538,525,496,498,502,496,496,498,495,499,490,496,589,591,583,604,585,589,593,587,579,599,597,583,575,579,591,597,532,526,531,534,534,524,542,529,530,539,497,506,547,571,564,552,532,573,558,502,524,504,498,507,508,558,551,552,565,552,565,553,554,565,550,574,549,567,563,558,548,567,517,527,528,525,524,523,529,530,525,529,523,520,526,534,529,527,528,536,550,530,542,540,547,539,534,535,536,549,535,536,529,501,497,485,492,495,490,498,495,507,497,488,496,505,497,489,492,502,485,490,495,483,487,492,499,496,488,508,509,510,507,513,512,507,529,536,529,530,527,543,526,529,528,525,523,522,524,520,518,517,517,517,522,519,524,524,525,523,523,531,530,518,533,534,526,525,525,541,540,538,546,544,541,552,553,544,539,543,548,544,538,548,513,505,512,509,507,504,525,525,535,564,561,551,562,524,527,530,525,522,519,521,522,520,524,533,527,530,529,529,551,545,561,512,509,509,503,501,515,506,518,512,513,513,503,504,510,504,513,514,513,513,511,515,517,590,588,578,594,587,537,550,560,515,510,521,524,522,512,522,531,525,513,517,521,517,526,523,522,491,504,502,505,506,506,494,505,500,508,503,500,486,479,490,484,494,479,477,484,478,480,479,477,490,485,488,483,485,486,487,481,481,481,481,482,484,494,492,491,497,487,491,510,515,514,515,504,551,539,542,547,557,548,552,543,555,541,552,540,549,548,546,546,544,537,542,511,518,496,512,513,499,564,574,560,565,570,566,512,523,492,506,511,496,490,502,476,475,464,473,474,502,504,499,511,497,554,551,545,543,547,560,548,558,548,551,559,552,548,550,540,542,493,506,495,506,502,503,501,505,503,501,504,496,503,486,500,506,492,474,463,465,488,488,481,485,485,480,481,482,482,484,529,525,522,520,515,522,523,522,561,558,554,476,478,484,471,490,468,478,478,489,475,477,466,541,528,527,535,549,560,539,542,542,540,558,546,545,537,539,507,501,494,505,542,537,542,533,550,542,538,533,560,563,560,574,568,561,559,570,571,559,560,499,500,499,500,492,501,501,497,504,488,502,514,488,493,496,487,492,491,494,489,491,560,572,561,582,569,514,462,454,467,474,468,458,473,461,465,462,464,479,471,540,556,549,540,556,532,542,562,467,467,489,479,473,476,478,473,480,489,473,470,467,448,447,446,436,448,455,449,450,539,544,552,533,551,551,543,542,544,569,577,567,563,569,565,576,569,570,572,572,570,574,575,572,571,566,572,562,527,527,524,533,530,534,523,525,529,561,565,551,551,513,508,500,500,508,509,512,471,478,479,477,476,481,474,485,480,473,481,478,478,477,476,476,479,483,479,450,446,453,441,440,530,534,546,560,544,544,548,551,543,548,559,540,537,554,453,464,458,462,453,456,471,528,523,538,537,545,531,526,564,559,564,552,567,559,563,563,559,562,553,549,511,500,516,508,497,506,511,512,509,509,564,563,552,563,558,560,559,568,556,563,557,563,561,561,556,559,560,525,514,519,521,530,531,525,536,517,508,502,506,504,503,510,501,507,511,499,506,494,495,496,500,495,498,495,501,496,482,480,481,484,489,479,445,446,454,445,441,439,450,442,446,445,437,552,552,550,548,543,540,552,543,541,543,544,543,547,550,549,554,547,558,552,550,554,495,510,496,504,521,503,498,485,479,478,486,480,476,484,496,501,504,484,497,483,489,488,480,482,483,484,487,487,487,478,471,465,467,461,469,462,461,455,465,463,464,586,597,579,573,580,589,513,495,495,508,501,512,512,501,497,512,503,512,500,519,527,524,528,524,528,530,525,528,530,531,521,539,525,540,536,531,539,535,546,549,551,544,543,555,547,548,548,549,502,454,453,446,464,459,457,449,458,462,462,456,452,449,478,476,480,600,575,563,559,567,566,571,567,575,578,567,576,494,506,507,495,496,510,496,504,490,509,543,553,558,562,539,554,546,552,552,557,502,509,498,502,501,478,491,479,486,490,479,488,492,491,491,488,533,542,534,547,526,533,564,574,565,527,511,532,525,530,522,535,526,524,527,483,484,474,478,487,478,473,480,477,472,475,473,484,483,487,472,587,565,610,612,599,594,593,549,536,543,544,534,534,544,544,536,543,530,539,532,545,539,548,566,568,551,560,560,565,555,562,554,554,559,501,488,495,508,491,491,508,508,498,506,511,453,449,451,452,451,460,446,460,455,463,457,447,448,467,468,454,462,460,546,535,540,541,547,535,537,542,532,534,533,538,537,546,544,551,546,546,543,538,547,540,550,544,550,540,541,538,551,550,556,540,546,533,539,530,547,534,545,539,535,536,468,486,466,473,499,484,490,495,492,494,506,491,493,505,489,499,498,496,494,488,541,555,546,556,556,551,564,549,547,518,532,512,484,484,479,494,483,488,486,495,491,487,493,480,483,489,494,487,487,576,557,554,552,557,554,559,544,551,563,544,553,546,540,558,549,553,564,464,466,477,472,468,482,487,468,466,467,462,468,461,464,475,475,460,464,474,476,460,456,474,466,466,471,537,555,545,564,559,557,558,566,526,528,525,533,522,530,521,521,524,525,527,545,551,545,539,541,539,543,543,534,492,487,480,496,488,493,501,497,499,494,500,489,497,488,494,495,502,500,496,500,496,503,496,492,494,496,497,497,499,490,495,495,501,502,557,555,560,556,554,557,566,561,553,553,565,556,557,555,563,566,563,563,561,526,529,525,526,535,525,533,533,523,524,524,528,529,509,512,566,553,559,565,532,529,528,530,527,528,527,531,524,527,531,533,534,526,533,534,548,552,544,542,545,555,539,551,513,506,507,500,507,506,512,508,504,504,509,518,507,530,551,543,542,538,548,542,543,558,504,495,508,500,489,494,512,494,508,501,499,488,507,563,571,565,561,563,566,569,518,512,524,515,522,514,511,513,509,521,486,483,482,484,479,479,482,492,490,479,481,488,485,484,449,455,440,452,453,441,446,454,444,444,445,446,451,452,450,443,446,548,545,530,556,555,550,560,553,550,550,547,557,544,548,549,556,546,553,550,550,558,546,548,551,505,513,489,502,514,516,521,515,472,470,472,470,475,478,479,489,484,478,486,483,480,477,481,473,492,484,481,482,478,503,507,501,492,502,497,500,506,501,500,501,503,509,502,501,498,505,491,485,500,497,498,499,455,456,477,466,464,476,471,473,482,472,473,479,469,476,567,556,565,547,561,556,575,560,571,559,554,554,563,492,501,505,509,505,518,504,491,499,505,497,491,479,484,478,491,487,491,485,487,487,484,522,527,536,539,537,521,528,534,525,530,561,559,548,567,546,483,471,477,484,460,484,486,486,475,467,464,456,475,460,459,465,459,467,459,466,464,477,462,456,466,468,476,459,467,470,465,604,596,604,595,587,596,613,588,569,511,513,516,521,519,518,515,481,485,485,487,484,479,484,484,496,490,536,539,539,534,533,544,535,536,538,536,546,543,546,545,562,559,554,567,554,561,554,549,553,557,559,552,548,536,560,551,516,517,517,518,513,525,519,511,509,523,523,510,519,513,546,554,563,558,557,555,556,466,477,472,474,484,476,482,482,488,478,485,493,488,496,490,487,489,487,483,498,485,486,486,489,492,495,540,551,559,560,552,565,552,560,548,550,557,547,555,551,556,555,556,561,549,543,549,548,552,557,563,557,557,566,555,566,559,556,565,529,515,525,519,503,515,520,474,476,484,495,495,492,480,481,487,488,481,568,557,579,575,562,579,550,565,581,579,573,571,579,569,502,514,506,545,562,535,557,556,540,547,540,555,554,515,504,509,511,511,518,499,506,513,518,517,598,570,581,572,580,568,573,567,557,590,595,530,513,530,521,518,523,526,523,511,531,489,486,490,486,488,483,487,490,492,483,485,512,512,519,516,502,514,508,509,497,509,505,516,513,506,508,518,517,558,561,549,554,549,561,503,509,509,505,495,509,504,492,494,494,512,496,505,490,500,504,478,472,464,469,459,466,468,462,485,489,491,484,544,542,533,538,532,533,532,549,529,537,538,575,565,564,558,557,562,557,559,567,521,519,517,517,507,523,502,452,463,457,465,452,462,457,454,449,463,451,472,463,480,454,593,587,574,601,598,595,601,532,547,545,540,536,540,537,537,535,537,537,543,534,557,548,555,560,575,559,569,564,546,528,492,505,507,508,513,503,485,489,485,478,483,483,478,491,485,484,491,468,480,468,470,466,470,464,435,434,443,446,432,442,432,433,430,439,434,486,494,483,506,495,498,489,491,498,495,564,549,566,555,560,559,560,565,556,529,507,519,519,531,523,527,516,526,529,527,532,501,496,495,498,502,499,502,503,506,503,494,503,497,495,498,496,497,481,478,483,483,479,489,479,487,486,473,488,484,483,488,491,487,477,477,459,456,459,456,454,452,497,551,547,555,557,540,554,568,516,527,525,524,526,524,531,514,519,525,531,517,507,514,504,516,502,503,511,504,495,507,497,491,493,492,500,485,484,482,485,474,480,485,480,477,476,475,478,485,479,483,480,475,491,488,459,448,439,439,450,445,445,458,449,450,547,546,552,552,540,547,544,540,549,544,553,544,543,548,554,554,545,552,544,542,550,540,538,538,536,549,548,544,516,525,514,515,523,519,522,524,520,518,523,510,510,515,541,564,566,562,560,561,569,562,563,494,490,473,470,555,554,557,563,511,523,512,514,506,504,506,510,516,542,531,530,540,532,542,529,543,531,541,536,526,537,553,564,554,554,556,522,504,510,513,513,500,503,502,565,520,517,520,522,521,526,531,523,525,523,528,527,528,521,526,526,526,526,551,537,553,507,490,501,502,512,487,498,508,503,486,452,455,446,449,447,455,450,453,452,452,450,461,506,518,502,525,509,515,495,506,504,562,555,562,559,557,551,562,559,555,555,564,553,556,557,557,491,491,490,500,486,496,501,495,504,494,492,485,483,484,487,489,477,486,483,481,486,485,479,484,485,567,556,568,563,574,562,563,567,567,572,511,516,511,520,509,512,512,506,512,513,510,500,508,503,495,509,506,530,530,534,531,516,514,514,522,518,511,512,513,533,531,532,526,529,535,533,523,528,525,531,529,530,562,577,566,567,568,569,556,551,565,556,528,529,527,536,529,527,540,529,533,533,532,523,520,515,509,515,510,516,516,516,510,521,513,508,541,539,544,550,544,546,581,555,553,556,559,549,564,510,505,510,514,583,566,569,568,567,558,568,564,513,515,509,508,503,509,508,505,500,500,504,507,552,552,557,552,545,557,549,548,552,553,552,550,559,557,549,558,553,554,554,561,552,551,520,508,517,519,523,509,511,518,514,526,497,496,493,494,490,495,490,493,491,488,488,491,492,496,497,480,492,485,484,485,475,478,488,492,485,493,481,489,485,481,497,485,499,488,492,491,492,495,490,490,494,494,482,497,487,492,490,486,479,482,482,484,481,480,479,477,483,476,476,474,474,483,479,484,478,451,453,449,452,437,437,453,455,449,446,434,546,550,539,543,547,538,539,556,542,554,544,543,552,553,539,556,541,551,550,566,559,543,551,540,546,549,554,551,554,493,498,497,505,495,509,500,500,503,490,503,511,499,505,510,443,446,447,441,428,436,448,441,437,443,443,479,469,460,480,471,580,563,569,584,586,581,549,561,567,582,568,574,566,570,500,504,499,498,502,511,507,509,504,509,495,503,493,491,498,497,489,499,495,492,495,558,553,561,561,559,572,573,552,563,558,556,485,470,476,474,462,464,471,469,470,470,453,471,546,568,563,546,564,572,550,555,569,545,555,567,523,517,513,522,519,518,526,515,523,521,513,542,533,536,537,527,544,524,533,520,534,523,538,506,507,509,508,508,516,506,510,509,507,513,504,505,525,529,519,535,521,519,528,521,519,530,527,525,529,513,593,591,592,580,588,573,576,569,585,596,589,597,584,554,546,551,551,556,501,498,501,485,497,495,510,516,521,521,517,515,511,524,517,523,522,518,520,514,530,517,512,547,558,560,557,549,562,570,559,571,560,556,573,505,492,495,498,503,509,505,505,500,510,512,506,512,508,504,522,510,513,510,511,518,512,513,509,503,547,552,487,490,550,553,547,557,553,554,552,547,544,560,548,555,551,557,552,484,503,505,505,502,504,507,619,604,598,608,588,591,589,603,589,553,497,497,494,495,499,491,500,500,508,525,511,520,509,520,508,510,518,510,523,508,521,520,529,516,508,523,564,486,496,484,497,494,507,501,489,497,491,494,492,499,496,482,484,476,487,483,481,491,487,488,478,477,482,481,481,478,553,574,548,577,566,525,536,526,527,528,527,535,523,520,522,555,548,530,511,509,519,517,513,521,502,509,499,496,503,502,507,502,486,490,482,485,487,479,485,478,489,488,486,486,448,456,463,452,447,443,480,474,471,470,475,477,560,583,560,570,570,575,517,495,496,506,443,463,440,454,435,444,444,450,447,448,451,458,447,526,539,542,537,530,539,532,544,533,545,550,532,544,542,545,524,547,543,545,548,540,537,495,477,481,488,493,558,564,559,571,564,558,551,540,560,561,558,552,567,561,574,553,544,561,575,544,558,557,570,566,480,454,518,520,530,532,536,547,529,535,526,522,518,522,528,533,529,537,538,527,566,567,569,560,537,542,534,533,535,527,537,533,534,534,532,536,530,531,537,535,539,513,509,510,514,513,550,554,549,549,559,556,551,540,537,546,547,557,549,543,550,551,558,544,539,499,499,483,494,482,509,500,476,498,494,504,492,504,506,502,462,507,538,551,536,540,538,540,517,518,518,524,515,519,517,517,508,517,514,578,559,567,562,564,580,564,580,557,567,554,509,503,497,508,498,489,496,496,499,494,501,502,499,499,496,496,494,509,499,493,490,491,567,554,576,565,564,572,554,523,526,520,532,523,523,521,515,524,543,539,554,551,542,545,543,540,543,544,546,546,540,539,540,546,550,528,523,520,522,525,524,523,530,520,525,536,522,525,517,520,583,581,578,594,596,591,592,591,577,597,588,515,520,519,516,517,548,546,557,543,527,536,537,533,523,523,531,529,529,527,529,534,526,545,558,565,555,568,555,553,549,552,557,553,496,499,496,494,505,499,499,504,488,506,520,513,517,544,544,550,505,490,498,498,495,495,499,508,497,493,498,498,508,511,513,501,512,511,509,510,508,533,546,547,551,536,549,540,539,532,536,497,496,483,491,489,493,500,498,491,489,493,492,508,499,497,490,509,493,492,564,566,566,559,553,560,559,562,545,543,552,555,552,549,558,512,509,518,512,485,487,485,489,476,481,481,483,479,506,512,499,510,504,505,502,502,554,546,550,552,547,543,578,568,564,567,572,572,562,565,493,503,500,490,491,504,496,495,496,499,482,496,495,499,494,487,496,493,491,495,496,486,564,573,564,559,555,561,505,495,486,515,511,506,492,487,505,506,495,493,492,497,514,434,446,444,445,457,444,442,440,445,433,452,442,445,449,540,529,530,526,543,531,542,534,528,523,542,533,536,534,539,533,534,536,539,548,545,540,533,546,544,549,546,539,548,545,552,535,538,473,496,489,494,480,485,493,502,497,485,495,574,579,572,587,583,593,590,578,582,573,582,579,574,597,576,575,532,518,536,496,500,500,504,500,551,541,533,544,559,552,553,549,539,549,554,528,521,525,526,527,523,525,524,526,553,557,556,562,571,556,559,553,548,510,496,494,503,501,496,495,510,455,456,457,462,459,459,455,456,457,459,463,456,449,454,464,457,489,497,487,535,551,540,540,540,536,547,536,541,539,544,540,543,543,544,540,539,545,554,568,566,566,557,528,529,512,522,521,512,520,521,526,589,576,578,582,577,574,572,583,574,573,568,553,573,497,496,502,498,512,495,507,500,496,495,511,517,499,521,521,515,520,513,517,512,518,511,522,505,519,508,510,516,517,511,551,541,549,546,547,549,554,544,550,539,554,549,543,548,539,528,531,532,542,548,556,543,539,533,541,540,539,533,548,546,529,541,537,536,505,551,568,565,549,549,516,523,519,513,518,516,516,525,519,577,525,518,534,519,532,529,528,515,526,534,522,527,516,511,513,513,508,517,517,516,514,513,510,507,514,516,522,521,508,501,502,508,511,505,496,500,505,501,508,496,508,506,502,499,502,498,473,483,478,482,478,483,479,489,484,494,501,485,497,485,491,490,492,489,482,492,487,501,556,556,544,565,552,567,568,569,557,525,539,531,534,537,520,527,536,482,481,486,485,485,463,483,485,473,548,563,558,550,555,487,505,501,484,506,511,489,555,552,545,531,551,455,486,476,480,476,471,474,472,475,475,479,464,479,485,493,480,480,464,486,475,469,472,474,476,478,569,567,568,581,566,565,514,499,499,498,486,499,514,511,501,517,489,474,472,544,532,528,521,527,521,520,524,525,528,524,523,535,525,554,539,551,547,560,539,498,500,501,505,518,540,552,551,537,545,544,537,555,538,542,543,541,542,541,536,486,475,480,478,474,474,490,484,477,474,476,529,523,528,530,549,538,540,539,544,545,555,538,546,545,550,551,550,564,515,513,515,516,516,519,520,507,513,513,511,517,507,511,509,551,551,547,561,547,548,550,536,561,546,493,554,550,571,566,546,567,557,553,557,547,550,557,566,561,520,523,516,524,514,523,520,525,523,524,526,526,521,523,536,524,529,498,497,491,500,496,504,485,498,500,582,591,599,597,591,600,598,592,596,592,577,594,595,562,550,552,497,508,507,490,492,493,499,497,494,492,495,502,490,494,505,502,503,500,511,507,512,514,510,502,514,512,504,502,506,549,540,527,538,538,528,528,532,540,527,537,536,536,541,547,469,477,479,475,480,470,486,469,477,475,479,489,489,484,479,546,546,532,547,538,542,543,546,549,545,546,552,547,552,548,545,541,554,552,541,549,539,555,540,537,537,557,554,539,497,498,494,488,488,491,488,507,506,495,482,508,484,491,501,486,499,495,496,506,488,495,489,548,547,540,565,568,566,498,522,502,504,519,507,516,517,524,503,527,502,517,522,518,519,487,478,481,487,484,474,482,482,482,484,477,466,475,466,467,467,468,472,475,462,464,466,466,463,481,479,472,477,471,477,480,479,474,478,476,470,470,485,467,475,477,477,472,484,488,476,599,592,594,599,581,600,590,610,592,588,598,590,595,596,593,567,552,561,553,558,555,555,559,559,557,552,554,562,551,553,554,548,564,550,550,544,553,546,550,553,550,547,548,549,548,545,550,549,553,503,495,504,508,503,495,486,505,496,502,498,507,493,520,511,522,505,514,515,522,511,507,520,519,507,501,510,514,512,512,509,513,547,559,549,560,547,562,552,549,556,549,505,506,506,513,506,514,504,516,514,498,501,470,473,464,463,461,463,469,467,465,439,448,459,428,440,440,440,444,447,441,436,542,540,527,538,524,538,533,540,534,527,531,519,529,537,536,545,530,540,549,546,541,536,544,553,538,548,547,545,541,567,543,543,498,490,507,497,490,500,495,501,505,506,499,547,556,551,552,552,550,560,545,551,556,550,497,497,511,510,457,464,456,452,453,458,456,454,454,462,460,455,462,461,470,468,469,475,465,472,484,469,469,474,474,477,465,560,553,551,546,560,565,572,575,567,572,562,553,527,531,544,538,540,547,551,529,548,509,512,507,505,505,506,499,496,492,499,498,486,505,454,465,451,454,463,462,451,460,486,485,490,565,562,563,567,567,573,500,516,496,495,510,514,510,505,495,509,486,478,569,568,556,566,565,563,518,522,528,523,516,510,507,503,505,509,508,507,482,480,474,475,475,475,482,482,477,484,486,479,479,475,460,468,461,462,467,456,463,466,551,550,555,561,564,552,566,551,547,552,559,553,544,555,553,562,557,560,552,558,458,470,470,463,465,462,463,481,464,459,463,472,535,534,530,536,534,528,527,535,537,533,547,536,524,570,572,560,567,564,571,548,547,541,536,544,491,484,491,500,490,497,492,505,502,493,500,505,498,499,498,502,511,513,513,511,517,513,519,524,518,514,513,555,561,560,558,556,551,554,563,564,555,555,561,562,558,560,558,503,519,514,495,469,478,484,475,477,478,471,470,477,481,464,553,562,553,564,558,557,508,520,507,506,510,502,504,500,505,526,506,482,485,480,481,477,487,476,468,479,481,476,470,475,477,481,474,473,472,468,477,474,476,482,465,464,464,459,456,467,564,573,565,570,574,570,571,554,567,560,564,566,565,565,570,560,571,573,566,570,559,554,561,564,550,562,565,507,495,501,505,507,503,511,492,480,470,485,479,470,486,471,477,485,477,560,568,555,504,505,501,505,506,511,507,567,579,508,511,488,450,427,433,449,444,447,446,453,443,440,445,445,452,426,443,438,445,445,450,440,443,491,492,499,501,496,507,500,498,494,495,499,495,496,552,570,556,564,562,573,551,559,565,489,496,458,468,461,449,463,463,459,464,453,451,549,548,550,548,549,560,549,549,550,550,546,547,554,554,551,569,571,579,569,564,567,565,554,576,557,532,525,531,534,535,535,537,526,526,527,531,528,519,519,517,520,517,513,520,516,518,519,517,511,540,543,538,539,539,543,538,547,542,529,542,534,535,546,534,544,536,536,576,512,458,459,463,470,474,463,465,466,462,461,467,455,459,461,471,474,472,467,474,460,547,546,537,544,545,545,544,543,549,550,554,543,545,549,552,547,548,543,551,546,552,547,510,500,503,510,505,501,514,512,508,504,511,514,498,535,522,499,503,519,506,499,507,504,550,560,497,502,499,500,508,500,496,502,502,493,492,488,499,495,494,477,488,497,494,494,490,483,531,522,517,515,530,514,513,512,519,523,523,507,529,521,584,582,582,580,570,584,590,512,536,520,520,509,510,508,504,551,561,562,545,550,553,556,553,556,556,553,556,552,549,545,559,557,556,548,545,553,563,557,535,488,483,490,489,490,492,487,551,553,546,552,551,558,549,554,548,553,544,548,545,548,553,550,551,494,506,503,495,497,503,506,516,561,546,543,555,558,544,566,544,555,497,490,497,499,498,483,504,496,489,499,499,490,508,489,521,524,518,518,516,522,516,510,556,561,549,552,544,547,549,517,499,500,501,492,494,483,492,481,493,496,500,509,506,505,513,502,501,524,539,520,525,524,528,533,533,528,523,544,543,541,538,539,548,541,546,548,536,558,559,553,522,510,517,524,516,516,525,526,525,517,524,514,506,522,500,503,508,504,505,501,509,503,502,501,498,506,502,482,481,477,484,483,476,485,481,483,461,462,446,454,454,462,448,460,457,480,485,490,543,553,553,561,540,555,553,564,552,549,555,551,558,551,543,547,481,495,491,485,495,488,499,499,494,490,494,444,465,460,456,451,456,552,548,548,557,550,547,559,553,542,541,560,542,555,554,545,539,550,564,578,573,565,557,569,568,560,568,577,572,572,528,520,520,521,526,542,552,562,556,548,564,539,548,559,553,555,557,550,563,557,512,510,510,510,509,503,512,505,518,518,511,522,522,525,519,523,536,519,519,520,550,580,553,502,487,498,488,488,490,511,496,585,579,589,584,579,595,579,591,585,599,587,578,552,549,554,542,552,520,521,517,473,485,474,478,467,477,479,456,462,472,462,465,468,466,461,554,556,547,553,559,550,552,560,563,553,542,561,555,548,552,543,547,551,551,542,553,551,553,556,556,558,547,548,526,526,526,524,534,524,529,556,556,570,553,552,551,564,564,562,556,557,554,565,510,524,519,517,474,486,465,455,459,466,458,466,454,468,465,469,456,460,501,493,488,493,486,584,559,580,578,568,570,501,505,504,497,506,500,496,498,493,508,498,515,497,477,501,492,498,497,563,566,497,509,500,497,507,505,496,511,489,488,508,513,509,502,508,462,474,463,469,469,469,476,469,487,486,515,502,520,548,552,556,554,551,553,549,546,551,548,536,547,555,553,551,553,552,556,552,553,551,559,497,501,490,484,485,490,494,482,489,502,498,454,461,456,454,467,458,465,443,588,594,584,568,585,580,582,573,588,582,577,549,541,535,538,524,530,525,522,577,573,582,557,476,488,478,483,485,472,470,478,469,530,538,538,541,535,542,537,546,545,540,542,517,515,518,514,518,516,510,515,513,525,528,513,507,516,513,520,514,540,533,532,526,528,534,539,532,542,537,536,556,569,548,550,556,557,558,554,569,562,550,556,531,532,524,535,528,534,526,527,535,533,554,546,540,550,546,532,528,542,532,543,545,487,476,482,486,470,488,469,482,490,489,482,489,488,485,506,496,552,552,547,552,557,551,545,552,570,557,552,553,560,553,508,505,507,499,515,524,505,499,497,453,448,464,445,457,451,470,483,474,474,475,475,466,466,469,466,467,482,566,561,584,560,559,587,558,556,499,492,499,494,589,562,587,558,571,579,582,572,585,511,515,497,492,506,503,536,546,545,546,543,544,543,540,547,543,546,549,555,543,534,554,544,543,525,478,540,575,550,554,544,559,543,560,546,551,548,555,536,557,513,501,504,502,508,512,510,509,514,516,516,516,520,520,525,518,523,523,523,523,517,512,528,548,547,549,566,554,544,546,548,548,550,548,560,549,509,519,516,516,513,518,516,517,539,547,549,552,557,555,554,546,549,543,557,547,546,533,499,482,493,477,499,482,485,458,474,470,475,472,479,461,467,464,460,472,477,469,536,551,548,535,535,543,540,531,544,534,533,520,514,520,515,514,514,516,526,538,544,536,535,539,540,539,537,543,527,538,542,567,565,564,547,543,552,563,549,554,546,557,560,529,546,541,536,546,545,538,544,536,526,533,532,535,532,530,531,537,531,560,557,552,565,555,567,573,570,565,571,563,572,576,510,522,520,518,507,509,504,522,512,519,516,523,477,501,495,494,497,494,501,501,500,498,500,505,500,497,502,494,499,539,529,530,535,534,532,534,533,529,531,528,530,535,528,531,536,548,554,549,569,576,561,556,562,553,558,557,553,566,560,545,561,567,557,513,512,516,509,505,504,502,505,507,503,500,495,507,502,504,504,505,540,541,537,539,537,540,547,536,542,537,528,532,541,544,537,541,543,539,543,529,532,533,541,545,543,550,539,542,541,533,541,537,540,521,514,518,514,511,517,520,522,522,515,528,541,549,533,528,530,525,524,534,530,533,514,526,500,519,518,511,517,517,522,514,512,539,534,539,535,536,542,546,561,475,478,478,483,477,472,484,487,478,478,474,475,484,477,468,479,483,471,482,553,553,551,470,495,484,474,486,475,486,493,482,478,475,486,493,470,478,491,480,500,505,506,507,511,494,518,493,506,562,567,564,548,564,555,556,556,550,550,566,565,568,564,500,497,494,492,484,499,484,497,494,499,501,502,489,488,501,482,487,477,485,479,482,486,567,555,513,525,519,516,517,520,519,524,517,522,516,523,515,536,529,525,530,523,527,529,528,520,540,520,478,456,469,452,464,474,463,450,465,458,464,572,564,549,552,557,564,543,546,553,565,554,553,545,550,540,561,551,546,549,543,558,561,552,546,540,555,549,544,555,551,554,542,543,557,548,551,540,544,549,557,498,504,505,510,511,507,516,509,496,513,505,500,509,507,499,500,491,487,486,487,498,496,489,493,497,489,487,496,495,495,493,512,515,514,515,514,516,507,517,510,512,519,506,509,539,544,535,543,543,548,541,560,547,546,547,522,518,520,518,521,533,531,534,536,537,535,546,540,547,539,536,555,550,556,564,560,562,561,563,568,555,550,543,565,568,561,564,568,530,537,537,529,531,533,533,541,560,562,553,556,496,500,499,505,509,502,491,509,500,507,534,543,548,544,551,537,542,550,542,542,544,540,543,543,543,527,531,532,534,537,534,532,533,531,532,530,528,536,529,537,561,561,552,550,561,499,499,500,491,496,501,484,502,503,504,501,501,508,491,497,495,497,496,499,519,513,516,516,515,520,525,578,570,565,571,574,562,532,526,529,504,500,500,497,509,503,499,499,496,503,494,498,498,498,503,500,490,496,497,488,504,483,481,489,495,482,489,488,492,484,486,485,471,466,473,469,483,472,464,473,464,476,473,474,476,475,472,471,470,475,462,457,456,460,469,454,464,469,475,475,462,463,473,473,465,466,476,462,472,543,539,551,549,550,540,560,557,552,549,536,549,541,555,512,519,504,511,498,476,468,469,469,471,469,467,463,431,428,425,426,437,448,440,446,439,439,444,431,517,511,521,521,525,523,524,537,531,533,534,532,541,537,547,550,536,537,548,512,492,481,483,493,502,498,491,491,487,502,501,514,502,504,556,545,540,555,535,548,541,542,516,515,508,510,515,514,509,516,511,513,511,511,506,507,499,511,511,508,510,503,516,538,535,533,553,535,539,538,544,532,541,544,543,545,536,545,539,534,547,542,516,518,516,513,515,529,536,531,536,532,521,506,513,532,527,533,528,527,524,533,532,528,529,533,536,531,564,558,566,543,547,550,568,568,549,545,558,559,562,566,557,545,555,492,485,475,487,482,485,480,481,484,477,495,528,547,548,544,540,553,541,540,546,538,536,548,550,545,534,546,557,543,531,552,547,547,543,504,509,494,487,495,492,496,579,588,591,587,592,590,587,599,588,551,558,550,555,562,556,546,556,545,552,550,543,532,525,537,535,527,526,478,476,471,472,465,466,468,464,474,472,474,474,468,475,465,470,467,476,471,461,445,450,446,452,446,457,449,452,456,453,530,540,539,535,534,546,531,534,543,538,545,552,555,538,547,533,542,549,547,540,550,559,548,550,543,544,539,542,552,542,543,529,527,523,529,532,519,528,527,526,534,526,527,525,534,527,532,532,544,552,556,550,545,557,556,552,542,544,556,517,512,506,513,512,517,509,507,506,530,516,513,474,479,477,473,461,480,484,474,480,436,438,443,439,435,428,448,443,437,435,434,448,453,442,449,450,446,438,451,437,445,451,533,527,528,535,530,543,541,546,550,554,512,507,504,505,484,486,485,487,487,480,473,476,476,472,487,473,474,475,472,476,490,581,575,550,565,563,574,578,567,559,578,502,509,515,497,519,501,508,507,509,519,518,508,513,526,512,523,513,512,461,459,460,462,460,460,475,485,488,482,481,484,487,486,488,540,565,554,529,520,494,519,518,507,524,514,508,512,509,507,532,541,460,466,453,465,457,468,473,463,471,454,450,443,440,456,443,441,447,538,536,530,543,583,569,552,561,564,562,563,571,559,563,561,563,568,537,537,545,542,533,547,538,540,544,542,546,540,552,550,540,540,547,536,549,541,569,573,582,567,580,568,567,579,575,569,580,584,577,587,518,527,521,527,521,526,532,519,537,517,533,536,519,531,517,520,522,513,511,510,509,507,507,503,502,505,475,480,486,484,483,469,480,475,481,474,467,470,464,466,472,472,466,471,470,472,467,471,480,472,471,467,472,467,466,460,466,556,551,569,571,559,475,473,466,476,485,470,470,480,477,475,471,473,476,475,476,476,464,475,466,466,462,468,469,584,576,570,562,564,553,562,571,577,568,564,559,569,550,563,567,562,574,564,557,561,520,507,510,527,532,518,530,512,514,523,514,526,522,502,467,468,465,477,460,468,453,460,446,452,455,449,445,466,449,455,458,447,455,449,443,451,447,499,499,505,501,498,506,494,496,498,503,547,545,542,532,545,538,558,555,561,567,563,561,562,548,564,554,500,488,493,514,505,491,505,500,495,499,505,464,464,473,467,462,471,540,534,536,546,537,539,530,534,537,541,544,551,543,521,518,519,518,511,507,533,542,535,536,547,541,540,564,575,569,556,562,575,564,559,509,497,503,498,515,513,508,510,498,518,506,512,595,600,598,585,601,593,608,607,609,534,539,531,538,545,540,527,533,538,533,541,538,560,557,555,573,543,571,560,547,549,559,556,566,569,566,565,516,500,522,523,514,510,512,514,519,513,514,517,507,517,520,558,543,551,552,556,553,560,560,554,551,544,550,529,560,561,567,554,558,558,564,556,546,555,554,564,562,556,503,510,515,509,515,518,516,515,526,522,512,518,481,479,469,465,456,467,459,462,458,457,468,472,465,493,503,498,491,498,503,502,497,500,501,499,495,497,502,498,494,497,534,530,540,541,538,536,539,544,565,566,553,552,564,562,562,548,565,560,571,509,524,469,467,471,432,451,456,453,436,454,446,451,449,510,508,509,495,506,499,493,506,506,499,505,506,502,509,502,561,526,539,530,528,530,530,532,532,528,530,529,532,528,525,519,523,524,519,521,519,517,518,523,528,531,521,515,522,524,520,545,551,543,545,548,545,539,543,538,549,551,538,548,542,501,552,546,549,547,546,551,542,545,532,534,542,541,536,549,535,556,559,503,510,504,507,513,493,494,498,497,535,560,559,552,531,516,499,502,504,511,510,470,454,474,473,470,464,472,466,430,437,447,428,446,435,444,441,435,430,435,524,515,516,525,517,528,513,520,524,519,522,532,531,530,530,539,536,528,535,529,536,531,528,538,539,536,544,546,541,555,543,540,547,544,553,543,493,485,463,467,484,474,531,532,540,544,550,537,546,546,540,544,546,545,549,543,526,524,532,529,529,532,530,532,528,528,519,523,529,564,552,555,544,555,550,548,495,496,488,494,494,493,497,502,501,493,445,457,459,502,498,500,503,489,494,503,509,499,488,505,492,540,538,542,536,532,546,533,524,528,520,522,525,523,524,525,521,529,525,529,521,524,521,522,529,523,523,539,539,536,531,541,544,522,532,534,532,521,523,524,517,523,513,521,522,515,519,516,523,556,547,542,551,553,544,556,550,552,551,544,546,548,541,533,539,535,539,541,539,537,542,544,569,582,579,580,576,583,565,578,527,523,521,527,519,521,529,515,529,518,528,512,512,503,507,505,500,492,497,469,468,466,468,465,455,464,460,467,465,464,468,471,467,452,446,455,463,451,467,445,457,454,437,585,573,577,576,579,567,565,574,582,552,574,584,574,579,574,561,563,572,541,533,541,538,539,542,539,536,533,535,538,544,580,576,574,583,582,580,571,588,576,577,580,525,521,532,522,525,519,517,532,534,524,528,523,537,523,525,523,513,515,504,502,510,501,507,500,513,507,502,501,500,501,506,504,481,480,481,472,551,560,564,559,552,554,551,555,488,496,497,497,502,500,513,515,481,481,478,478,468,477,469,479,477,478,478,478,486,487,476,479,477,481,468,486,478,466,479,474,483,473,482,479,476,483,477,477,485,475,577,567,554,552,559,557,552,555,571,549,476,478,475,472,481,476,482,486,496,481,488,535,539,532,542,537,544,543,540,547,538,548,535,540,543,541,550,546,540,515,504,557,566,522,516,521,523,517,519,516,518,522,523,504,506,507,505,510,503,505,504,529,536,523,536,533,526,537,529,528,521,536,521,537,541,534,535,534,540,534,539,541,534,540,549,554,557,551,555,546,555,547,571,542,542,509,497,486,483,486,490,489,491,478,489,485,493,565,553,554,564,566,559,572,555,561,562,563,577,564,568,521,530,510,500,503,511,496,504,505,504,496,503,509,506,505,505,505,499,506,501,504,495,503,502,480,477,480,473,473,442,464,454,449,447,446,437,442,449,577,566,565,567,560,566,571,554,555,565,572,560,555,562,563,521,521,525,518,529,524,518,524,517,523,524,526,520,523,516,493,484,487,486,488,525,522,514,516,511,513,513,515,507,508,507,500,574,546,572,561,557,551,551,569,554,485,496,493,494,499,501,508,511,499,488,501,489,502,503,496,509,558,551,552,557,550,555,558,548,546,560,551,551,539,534,536,581,585,570,535,532,524,512,533,525,529,524,522,527,516,519,530,537,526,492,479,491,487,479,488,485,485,484,489,492,486,490,478,481,489,491,488,500,588,568,554,564,572,565,573,566,569,573,571,566,522,505,521,527,520,512,517,521,508,489,473,482,482,479,486,480,491,472,491,485,484,482,484,487,481,458,459,464,459,459,472,465,470,461,463,469,466,472,456,464,466,460,456,473,475,462,470,471,472,480,482,471,542,530,537,531,543,533,530,554,529,498,505,501,513,499,503,502,513,499,499,500,498,506,501,503,503,502,565,562,569,560,556,581,575,555,581,571,548,514,504,505,503,509,491,507,470,541,546,544,531,542,533,534,538,548,531,530,539,543,542,542,510,508,507,514,506,507,506,502,515,505,507,509,513,550,549,541,551,544,549,547,542,531,541,552,552,541,485,505,498,494,496,511,503,501,495,488,499,481,489,499,485,473,473,472,474,543,558,547,562,546,563,554,552,546,554,557,548,553,484,489,493,483,450,434,439,447,444,532,529,544,550,549,538,538,552,538,538,543,550,541,536,535,545,540,545,554,547,549,543,542,492,509,516,498,502,500,506,492,496,485,490,493,522,525,525,528,526,525,517,531,553,560,538,542,557,546,546,539,538,547,556,553,516,523,524,517,516,522,515,520,519,552,542,558,545,554,544,558,554,542,552,531,535,539,536,527,532,523,531,526,532,530,534,534,533,535,535,526,525,527,548,546,549,543,552,556,502,488,482,493,492,501,495,492,498,500,491,487,495,488,500,494,469,475,476,474,466,467,473,475,542,556,542,558,547,539,548,547,521,509,519,526,532,531,530,543,494,480,472,475,477,472,479,484,469,472,480,467,483,589,589,572,582,594,596,574,581,583,580,588,580,591,572,587,577,576,569,524,533,530,531,536,536,527,530,530,529,528,526,532,526,531,531,524,530,525,533,573,559,563,570,562,563,556,564,530,577,562,560,562,554,554,568,562,561,554,561,560,563,517,502,529,522,487,489,486,488,495,491,493,499,495,496,491,494,531,532,541,530,533,531,536,532,568,552,555,549,549,558,562,555,491,485,476,493,509,486,512,498,482,480,470,486,482,471,478,468,481,478,474,477,468,479,548,549,556,558,554,557,561,563,558,544,545,544,564,553,554,491,481,491,490,487,488,480,491,484,482,489,489,484,496,491,489,485,489,486,483,488,492,491,485,497,564,581,571,563,556,554,555,561,524,528,534,522,527,524,520,525,534,525,521,523,552,551,543,498,490,494,501,500,489,487,490,495,509,501,488,494,490,489,513,507,519,526,566,553,552,568,559,576,554,551,566,557,564,557,524,519,509,522,513,516,484,484,482,484,485,482,481,483,479,488,489,488,479,480,482,484,487,490,481,478,469,471,471,470,469,470,469,467,476,474,472,482,479,482,473,470,460,473,548,534,547,549,513,511,508,516,504,517,508,544,541,546,543,547,540,538,543,550,537,536,543,548,557,520,520,543,556,552,573,554,551,559,561,552,560,567,517,520,520,516,563,554,555,551,564,550,554,555,546,501,501,485,504,494,482,441,468,453,457,460,465,453,449,458,462,463,461,457,543,550,546,558,561,575,563,574,586,581,574,571,582,566,574,574,564,533,547,545,536,547,549,552,500,493,500,501,497,497,491,502,498,494,501,508,501,500,497,497,492,501,509,506,506,504,536,540,535,526,538,537,537,534,539,538,540,534,535,575,546,557,546,489,489,504,502,504,501,505,496,506,508,499,506,508,550,538,540,565,563,490,488,497,479,493,491,490,481,480,492,558,565,551,555,543,541,503,499,505,501,498,501,498,500,502,504,584,599,594,595,598,601,604,508,488,512,507,501,516,517,511,525,519,496,532,526,530,523,521,520,527,533,535,528,535,530,532,542,532,535,574,566,555,568,562,564,576,565,525,524,528,523,562,565,567,564,557,553,549,557,498,476,491,504,481,545,555,560,552,546,558,562,545,543,504,515,499,503,505,496,506,502,504,501,501,497,503,503,500,502,535,527,530,536,536,525,528,525,522,521,527,522,521,521,510,526,511,527,532,525,538,533,532,525,529,540,553,552,546,541,551,549,554,509,502,511,516,522,523,523,524,523,523,526,528,524,522,518,520,518,531,574,542,543,507,503,504,503,502,512,512,498,506,511,504,501,504,557,543,571,564,561,555,561,550,554,553,560,554,498,516,507,518,504,499,497,502,507,502,511,503,493,508,465,461,463,459,455,466,452,465,457,452,454,479,475,467,475,558,517,509,515,521,514,511,511,504,510,510,517,508,507,527,518,518,519,524,529,519,513,540,558,556,520,511,521,509,515,510,508,512,515,515,509,513,516,510,506,537,548,534,533,537,543,542,540,537,537,534,558,564,574,564,554,527,515,509,513,501,507,500,495,505,513,495,485,486,490,492,483,492,493,482,487,482,489,491,491,491,491,482,499,494,505,503,545,546,537,539,539,544,548,551,545,546,555,544,547,548,545,533,526,532,534,531,531,535,565,562,568,560,564,562,558,567,560,576,569,573,522,525,525,524,528,521,521,507,499,498,499,508,508,503,498,501,490,495,488,462,466,446,458,447,453,461,450,451,455,445,461,460,455,458,456,459,460,545,557,553,551,564,570,551,552,562,550,559,555,564,549,554,557,557,554,560,544,567,548,567,552,549,547,551,552,542,553,538,554,551,504,508,499,493,487,514,499,499,510,504,503,597,608,594,595,598,596,598,602,595,538,540,541,542,541,543,562,565,567,557,544,560,555,561,496,505,512,504,508,506,488,500,493,502,496,488,491,496,497,501,500,490,493,491,489,525,538,538,538,543,538,535,545,562,556,563,564,560,559,550,503,503,487,504,498,492,507,499,496,493,511,508,475,475,476,470,465,543,540,560,566,568,567,558,528,511,521,511,527,500,508,511,490,481,481,482,480,471,483,486,469,476,460,472,471,465,465,465,467,466,468,459,459,437,437,432,437,441,436,438,433,434,442,425,428,440,441,491,494,493,496,497,484,510,491,489,503,481,556,555,494,498,497,497,498,487,505,485,496,489,494,500,505,502,508,508,509,506,502,503,501,500,510,503,510,504,516,561,564,558,566,577,568,559,567,552,551,556,549,546,544,554,489,473,499,491,481,499,480,487,504,493,502,487,491,486,491,493,492,487,499,505,495,479,481,473,467,485,478,475,477,482,481,486,467,486,466,590,601,594,587,528,538,543,541,544,542,540,544,543,513,516,518,506,515,522,548,544,548,547,550,569,561,555,563,568,560,569,574,563,505,503,507,500,502,498,505,504,495,500,499,502,498,486,503,489,497,463,466,466,469,472,458,469,467,471,476,473,554,549,553,553,556,553,553,553,555,557,550,551,553,549,544,550,547,488,497,482,482,500,496,488,480,484,487,491,495,544,556,552,547,573,556,557,482,539,545,555,551,549,545,557,563,551,542,545,551,554,574,553,556,560,520,524,540,512,530,528,509,517,516,518,522,526,518,521,522,500,499,500,506,497,502,507,493,501,491,502,459,455,457,454,464,457,479,474,473,466,469,469,473,478,479,571,566,575,563,565,568,556,562,579,569,587,573,578,479,483,488,482,486,492,534,539,528,538,541,537,539,541,551,544,544,481,490,478,495,536,551,561,548,573,566,548,543,497,496,494,490,500,491,502,499,547,553,532,546,539,552,553,550,541,541,519,522,525,528,525,522,515,521,522,524,522,519,522,524,523,522,538,541,537,536,526,535,534,537,527,526,522,524,519,528,529,525,527,524,542,541,537,538,546,541,538,545,541,531,540,544,528,530,527,520,528,520,522,529,523,520,524,536,544,545,542,534,533,513,519,519,533,544,525,532,532,542,531,541,526,529,536,533,528,529,545,549,561,556,565,556,561,567,519,511,495,480,499,501,498,486,496,505,490,460,464,476,466,479,469,464,467,546,540,535,548,542,548,550,530,552,545,512,515,513,513,512,513,538,531,536,538,534,526,531,531,536,536,532,534,533,533,557,561,558,550,568,556,539,563,561,484,455,581,581,583,585,564,570,546,562,545,550,533,556,550,539,540,546,545,540,550,551,536,542,552,542,545,538,554,490,511,504,499,497,496,500,499,502,467,463,511,493,504,501,501,499,504,494,490,501,503,546,537,554,541,552,551,555,549,545,555,550,549,543,547,557,548,542,513,493,487,501,492,501,500,493,496,499,503,492,504,506,486,490,483,499,497,496,495,492,500,503,499,495,505,496,494,510,497,568,566,567,562,564,566,553,549,575,569,566,572,562,568,566,560,510,497,506,505,493,499,505,500,524,518,523,515,517,513,520,514,518,515,517,521,545,553,556,555,564,542,561,500,485,484,479,493,484,451,450,438,447,459,443,451,446,542,552,536,541,544,525,518,523,528,527,543,539,540,539,534,536,541,537,538,534,533,535,518,524,525,516,523,522,521,523,526,522,519,549,552,566,563,560,560,551,553,550,551,557,553,526,539,549,543,535,536,541,543,544,547,546,546,543,550,548,545,545,538,548,545,539,545,484,507,498,504,506,497,507,498,515,500,464,479,465,473,474,463,479,470,484,472,471,471,474,476,475,477,481,483,474,474,472,474,477,477,478,476,503,503,496,500,502,502,499,569,559,564,561,584,562,560,571,565,566,573,564,561,553,548,488,494,494,506,500,495,498,499,499,563,574,568,571,574,574,560,575,502,509,514,506,519,504,511,508,511,561,556,558,566,555,574,569,581,579,581,560,566,571,571,502,489,507,517,502,513,508,449,445,445,430,432,437,442,433,436,443,443,440,437,454,449,469,461,443,460,453,464,464,457,456,459,593,607,598,596,578,612,583,594,550,557,547,547,555,546,553,557,549,557,564,559,558,558,552,562,555,555,527,530,522,517,527,517,516,510,537,513,531,505,512,506,507,497,509,506,508,505,511,504,500,485,493,486,484,482,479,485,457,458,452,451,456,448,457,459,464,456,460,459,458,470,467,475,467,463,478,477,473,482,476,483,604,586,598,600,598,594,597,592,612,542,540,538,533,545,553,545,539,550,544,533,518,506,497,500,499,498,495,503,499,507,496,539,534,530,537,537,546,533,537,542,549,553,551,550,551,553,547,550,485,491,491,497,492,502,466,461,460,470,460,450,465,466,464,462,467,467,456,540,544,561,538,553,549,561,503,496,494,492,505,498,491,496,498,498,486,500,485,502,466,454,451,466,463,457,462,448,458,462,461,539,534,534,551,542,546,534,544,543,541,537,519,513,522,517,524,520,525,522,519,489,501,490,493,501,492,484,482,499,491,497,501,507,492,501,588,595,599,587,618,585,586,590,581,488,540,500,520,496,493,508,522,524,525,522,531,474,472,481,473,481,480,490,469,470,474,478,473,475,474,477,461,467,582,568,585,570,583,575,557,561,593,561,585,584,555,481,472,478,467,482,494,481,484,480,471,466,476,473,463,547,534,532,540,544,545,541,543,540,540,535,535,535,540,530,517,535,551,537,545,533,547,550,535,541,541,534,543,540,540,482,491,489,503,502,483,475,489,498,488,491,488,485,481,490,492,493,572,575,568,573,588,576,529,524,543,530,519,528,517,532,538,524,528,575,560,544,559,558,552,555,548,547,553,548,562,546,555,554,497,500,500,556,536,557,543,546,540,541,550,552,531,550,543,546,509,516,521,526,508,517,517,516,511,523,515,538,534,534,531,530,572,516,523,518,550,549,552,537,553,550,515,512,521,522,529,528,533,512,515,440,456,465,451,470,473,466,462,455,450,554,542,544,520,530,535,510,508,508,508,516,514,508,514,508,513,510,546,552,556,542,544,556,544,552,545,529,536,536,532,533,540,534,529,527,534,527,527,529,535,536,532,522,538,510,513,511,509,513,514,504,519,526,513,506,511,509,556,556,543,554,563,557,548,560,560,552,563,562,565,555,558,557,511,452,460,452,462,459,464,454,457,460,463,460,460,465,472,460,481,469,452,482,462,468,469,468,481,467,588,594,592,596,587,600,589,595,593,582,594,526,533,536,535,536,532,528,538,539,543,494,495,489,490,494,475,592,594,583,599,587,598,585,592,582,591,554,550,560,545,556,556,552,551,555,554,547,560,548,552,549,553,550,546,557,549,555,549,557,552,524,529,508,531,521,514,461,480,472,473,476,482,476,466,477,478,480,479,478,471,476,476,573,580,602,545,553,544,541,543,549,537,547,542,549,536,539,536,535,542,566,565,581,591,585,580,571,572,520,519,525,534,525,533,534,504,512,497,503,500,501,505,491,502,502,474,478,486,485,480,479,481,482,450,446,439,444,434,428,444,437,435,439,437,439,441,446,439,446,439,448,435,441,451,449,450,447,454,444,450,456,442,435,458,538,540,536,537,543,530,526,521,529,524,531,537,543,535,533,529,535,530,535,532,540,532,534,529,539,531,520,536,538,542,549,547,540,543,542,499,502,503,486,505,499,502,489,503,548,535,541,538,572,541,534,542,465,485,466,472,472,476,473,469,486,477,472,480,478,487,503,514,513,513,512,504,511,509,503,510,511,506,507,520,516,508,506,548,553,560,556,552,558,562,556,562,552,524,535,537,507,508,516,507,514,510,501,498,500,499,501,500,502,509,500,499,499,502,494,500,463,470,464,464,466,469,460,475,470,479,471,462,467,466,476,475,463,464,471,478,461,480,476,460,481,471,553,557,542,562,551,503,514,512,522,515,508,506,505,523,518,518,504,530,509,510,515,497,493,488,489,480,489,486,487,485,495,494,491,471,486,470,462,481,474,472,480,479,470,477,468,561,552,562,564,540,537,558,550,564,548,566,545,536,553,562,551,536,495,498,550,562,580,563,549,558,581,578,556,560,571,565,560,558,569,492,503,505,494,512,492,509,492,502,531,534,531,542,545,551,536,530,542,539,546,524,523,523,531,524,525,529,526,528,567,568,556,564,566,566,565,566,560,567,569,555,571,557,543,573,558,560,569,556,520,528,516,528,511,504,522,508,508,506,523,521,478,476,476,476,500,490,484,499,495,495,498,498,484,490,496,491,492,493,487,486,562,521,511,531,518,530,520,524,524,525,525,521,557,531,531,538,537,541,523,536,527,532,540,527,533,559,565,569,568,566,560,565,561,557,564,560,553,532,543,532,537,533,531,534,532,552,558,553,559,561,548,553,553,554,546,564,556,494,501,495,496,504,493,503,496,510,504,517,515,508,511,511,507,548,537,553,554,534,551,549,540,537,541,537,544,543,538,478,489,487,496,473,488,557,551,546,540,561,550,558,511,539,545,536,541,538,536,532,535,546,540,547,548,534,532,567,569,571,568,555,569,574,574,552,571,565,571,578,573,571,558,565,554,567,573,487,493,496,500,498,501,509,508,497,497,501,492,500,487,496,491,496,493,494,493,559,563,559,556,555,558,544,553,559,552,472,479,476,480,467,464,481,481,478,476,479,475,473,484,478,487,487,485,491,491,492,481,479,501,480,492,492,495,487,493,485,488,500,487,495,483,492,479,548,557,549,549,551,554,551,546,546,548,538,544,537,541,542,538,524,532,517,537,528,529,525,526,532,533,530,528,534,537,519,536,526,532,537,568,551,563,553,571,566,550,561,494,549,553,548,551,542,547,566,562,549,551,541,513,495,463,463,457,459,455,459,459,466,459,429,428,440,424,432,447,437,439,519,518,513,520,509,521,513,524,523,517,524,525,516,524,516,524,521,515,520,531,533,537,534,535,534,535,534,538,535,533,537,542,548,557,551,546,540,542,552,555,544,553,544,548,553,539,522,528,521,528,521,518,526,531,555,544,537,541,533,542,534,540,531,541,542,539,536,516,511,514,507,516,511,514,515,514,517,509,516,511,513,508,547,563,561,554,554,550,550,553,567,573,564,552,558,562,565,526,528,524,515,520,536,526,528,522,520,529,527,528,529,519,513,518,513,510,513,511,516,513,515,502,503,503,503,504,510,503,497,485,487,486,483,493,477,484,474,480,486,479,485,486,479,482,512,509,502,506,517,510,499,510,510,513,506,505,537,553,539,552,552,537,526,530,531,536,529,530,528,526,530,531,524,529,529,554,560,553,550,556,553,552,539,545,557,540,542,486,480,484,480,474,480,483,475,480,494,464,465,463,455,458,440,453,457,458,592,593,597,585,579,578,577,525,526,529,517,556,557,564,545,536,557,506,497,496,504,499,551,547,540,549,550,508,524,515,517,514,516,523,519,521,518,559,556,555,556,548,531,523,519,509,523,525,512,523,521,510,516,458,464,475,478,470,468,470,465,597,569,592,585,580,518,534,565,547,551,561,547,550,562,557,548,559,554,542,549,550,546,529,527,516,519,521,517,518,514,522,522,528,535,537,535,539,537,537,533,535,539,530,541,525,537,539,541,538,492,490,480,477,485,482,477,492,492,479,494,483,485,469,477,476,473,547,545,495,512,497,502,494,499,504,496,505,496,507,508,499,508,496,502,505,564,565,557,563,571,572,566,556,559,493,496,503,503,493,500,498,505,505,500,497,497,498,549,555,564,562,554,562,561,544,500,522,530,514,497,515,505,509,525,513,478,469,474,467,486,473,479,482,469,477,475,468,476,476,482,476,474,481,482,468,492,497,503,499,500,495,493,496,490,500,489,501,497,465,460,467,465,463,465,461,471,471,461,462,462,472,464,462,447,443,448,448,444,454,450,440,441,531,533,542,536,549,546,546,547,540,551,548,550,543,550,540,540,545,538,506,516,514,505,502,504,505,504,505,515,575,570,572,568,564,566,566,556,564,557,546,559,503,516,508,495,502,499,494,503,503,487,482,487,491,479,476,485,485,488,488,525,528,523,519,528,528,522,545,551,557,546,552,537,549,539,518,504,500,503,502,505,498,505,547,552,553,548,559,494,490,493,491,504,508,493,497,496,496,505,490,495,442,448,449,443,448,440,443,450,447,534,542,542,535,547,541,545,543,551,548,545,536,547,539,537,549,540,499,480,510,485,509,483,483,494,501,488,484,494,496,570,553,549,547,554,537,541,541,545,555,531,544,558,550,551,543,553,548,539,549,531,483,478,480,477,466,471,478,471,470,470,462,461,463,477,466,466,459,600,591,605,597,557,555,551,545,548,561,550,499,502,500,504,494,503,498,498,489,507,498,498,502,499,496,496,494,491,506,499,495,502,497,502,499,504,503,529,524,527,520,520,533,515,530,529,576,584,586,593,583,588,579,578,583,587,585,587,530,549,548,540,549,540,546,548,533,523,523,527,529,530,529,519,504,517,517,519,512,555,552,532,546,504,487,499,468,461,455,462,458,468,457,462,462,469,464,496,490,499,499,502,500,489,494,506,496,492,508,498,493,564,564,550,556,553,559,560,561,550,554,552,547,551,542,550,550,545,550,556,544,549,548,546,552,546,533,532,521,531,533,539,540,500,506,487,499,504,506,494,500,566,562,570,560,555,563,565,565,556,568,506,504,540,542,542,539,544,535,544,533,548,546,532,537,538,574,563,552,579,558,566,566,565,567,564,565,565,540,544,542,548,552,535,543,545,538,488,473,482,476,480,479,478,484,490,475,485,478,468,463,456,459,466,468,449,452,470,594,545,545,543,534,529,545,544,548,549,556,534,544,553,550,493,487,500,493,507,499,495,488,505,491,492,493,537,543,541,543,540,537,530,542,532,537,534,534,540,535,554,543,545,554,551,551,551,549,553,562,554,559,535,558,561,551,482,484,476,478,483,488,462,461,466,471,467,470,469,475,469,469,468,464,470,462,563,540,579,555,561,547,569,561,558,548,561,562,560,559,522,531,517,520,517,524,530,533,530,534,533,539,531,531,536,531,523,524,532,524,529,527,530,524,556,550,555,552,564,551,565,570,559,565,570,551,488,483,504,483,508,502,498,494,491,502,487,486,493,498,493,483,487,486,463,470,477,471,482,624,608,604,590,537,514,533,523,522,561,524,528,534,459,440,452,464,449,457,461,460,457,443,517,522,522,517,533,522,517,521,522,518,516,518,514,514,517,520,523,524,525,523,519,520,522,521,516,521,542,546,542,547,540,541,546,546,547,542,561,550,568,558,564,521,525,517,526,518,542,520,518,512,528,518,514,520,515,488,494,483,489,492,487,478,491,504,513,505,509,514,513,537,550,548,552,560,545,535,546,554,494,498,497,489,505,464,460,465,460,459,459,461,462,465,453,459,465,462,437,439,430,449,431,426,427,430,441,434,439,519,511,509,517,521,519,528,519,521,513,525,531,539,521,528,524,532,536,537,544,545,548,536,544,543,542,538,540,547,544,503,513,514,516,517,524,518,517,515,518,513,516,520,510,515,518,511,513,519,507,514,508,541,536,539,526,527,533,538,538,539,541,481,482,481,475,478,479,488,479,481,467,457,456,467,539,552,547,554,555,539,558,511,488,499,504,504,514,511,578,560,548,554,565,569,551,558,570,557,556,564,515,524,507,502,512,511,499,502,517,497,515,507,495,484,494,497,479,460,471,469,466,466,466,467,557,542,544,546,558,544,569,542,528,511,515,516,520,519,529,528,550,527,525,522,522,531,492,498,501,490,495,489,495,495,484,492,490,488,493,556,552,558,546,554,555,551,549,542,556,544,550,549,541,541,540,542,545,549,536,546,538,514,522,534,534,518,475,483,465,482,472,473,458,480,464,470,467,478,470,477,472,561,586,580,587,594,586,591,583,572,582,584,578,574,589,506,495,501,524,508,517,508,514,511,514,508,511,500,508,545,542,543,545,547,539,544,551,547,532,541,541,548,549,542,548,548,550,550,544,556,552,550,524,528,531,528,522,519,527,529,523,522,521,521,529,522,537,536,534,518,530,519,517,522,522,518,526,526,523,524,522,525,523,560,561,552,551,564,555,549,558,540,553,553,518,527,520,521,515,511,514,527,486,473,492,477,476,466,472,468,476,490,482,484,532,538,561,537,543,518,516,511,519,516,514,510,523,524,536,490,484,483,497,489,486,485,489,498,505,504,497,503,496,510,503,509,497,498,536,522,522,532,526,531,532,528,538,527,528,539,529,523,528,527,525,521,532,556,547,542,498,505,467,459,462,468,469,459,468,463,464,469,469,465,481,475,476,472,478,500,529,527,522,526,523,522,531,513,514,523,518,520,513,519,518,509,521,545,545,561,557,563,565,574,572,567,571,568,566,515,510,509,517,489,509,476,471,467,481,471,477,476,468,469,479,556,555,554,555,550,551,553,566,551,514,513,514,514,513,511,516,512,510,510,516,510,516,509,514,518,510,513,539,537,535,527,544,536,538,539,537,540,523,545,542,548,543,542,545,536,546,547,560,572,562,564,557,547,551,558,556,554,478,485,486,472,488,482,481,476,471,465,467,474,467,475,468,481,477,473,478,462,470,564,511,493,489,495,485,503,493,508,496,483,493,494,492,501,576,577,570,565,574,581,512,495,509,539,516,475,494,491,474,490,496,486,492,497,473,539,561,563,534,533,535,549,552,549,548,560,562,546,523,545,558,502,509,503,505,509,500,518,516,512,502,500,503,551,532,534,529,527,527,533,535,525,533,534,534,531,540,550,556,554,547,519,488,479,477,447,460,459,454,460,456,456,455,475,474,480,479,485,488,483,486,482,486,484,482,501,495,498,498,502,504,499,501,494,494,535,525,523,524,527,529,519,526,530,514,522,521,525,522,522,517,524,522,521,514,551,539,540,534,540,543,536,539,532,537,542,537,542,540,553,542,546,537,534,552,544,537,542,542,530,551,539,482,485,472,481,481,493,494,479,490,479,489,496,496,492,496,502,501,501,494,497,496,507,496,491,501,496,500,496,534,535,533,526,535,535,535,534,543,529,482,509,495,493,495,492,496,487,593,586,599,530,536,533,526,535,535,538,534,537,534,539,537,531,534,533,537,537,555,557,558,551,562,550,560,558,560,539,534,538,532,538,558,559,560,565,565,554,549,557,556,558,494,503,496,498,495,494,486,503,491,500,486,489,490,492,485,498,572,486,478,484,470,490,489,484,489,486,495,489,478,487,494,574,583,590,578,576,571,572,565,574,578,578,581,559,568,583,521,531,539,533,530,531,519,523,527,522,522,510,495,486,484,481,480,488,480,479,485,485,487,483,543,490,510,487,499,506,506,505,502,510,498,515,507,487,502,485,488,495,541,528,531,536,532,540,530,528,537,570,561,555,558,546,556,546,561,550,545,560,495,499,509,488,503,495,484,443,433,446,431,429,435,445,433,439,446,445,436,521,517,517,516,513,514,533,520,511,515,512,519,530,507,519,517,519,523,521,527,522,519,522,521,510,510,522,532,528,537,530,534,531,530,530,528,538,539,554,550,546,534,550,544,498,506,508,509,514,515,501,513,508,541,536,534,542,539,547,531,543,542,536,533,541,532,539,539,543,572,572,570,565,573,567,566,554,564,567,565,561,528,519,515,485,486,482,483,490,459,459,465,463,454,463,465,454,457,458,460,458,451,545,553,550,555,545,557,574,563,555,561,560,576,566,571,566,563,557,582,571,567,562,573,569,577,541,539,537,530,537,532,537,546,545,543,533,539,539,539,538,539,585,576,568,586,579,594,581,576,581,578,570,586,576,576,578,580,573,569,528,525,527,540,533,537,529,521,519,514,511,520,517,521,516,509,515,508,512,513,514,513,502,494,501,497,502,498,505,499,500,486,478,478,481,481,487,481,487,485,501,491,500,500,505,495,505,506,503,502,554,550,553,556,551,545,543,558,544,550,557,550,556,558,543,574,561,574,559,563,569,567,564,566,564,567,502,502,509,500,473,463,471,459,460,470,467,551,550,557,558,555,555,549,545,542,553,558,557,552,551,563,550,547,561,548,549,552,472,463,475,475,539,535,531,545,531,528,529,543,547,539,544,540,550,551,532,497,488,486,486,470,488,496,592,577,567,580,546,530,526,528,528,529,539,528,525,533,519,533,527,523,525,520,522,521,501,498,496,494,503,530,530,534,525,531,534,533,529,529,533,531,567,558,548,573,562,563,568,568,566,566,569,566,562,561,555,550,550,552,554,543,544,557,558,553,558,544,548,558,550,526,531,530,511,529,520,510,513,528,516,510,500,505,505,506,511,505,507,503,510,506,483,494,495,492,495,493,476,494,498,496,483,498,494,486,487,487,491,486,488,492,485,489,487,497,491,505,504,501,499,497,504,492,499,507,502,500,497,498,501,466,471,465,478,439,436,440,439,506,484,501,495,492,489,562,553,498,491,482,484,481,483,491,492,495,497,502,487,493,494,491,496,492,496,501,491,487,462,455,471,452,463,458,483,481,480,479,478,485,474,478,483,476,474,486,487,476,476,473,474,485,488,476,484,467,483,492,475,489,480,467,534,552,548,551,547,487,485,463,473,475,484,480,477,483,481,480,475,502,510,502,497,506,561,555,562,548,562,562,566,556,568,495,501,492,447,466,461,455,453,460,455,456,458,461,458,465,464,447,542,532,537,535,540,541,547,539,547,542,532,534,534,541,539,543,553,563,553,556,546,567,560,555,546,556,561,564,555,499,504,497,497,495,491,495,481,499,493,493,470,472,469,461,477,466,467,474,464,462,561,555,561,564,559,556,564,556,558,569,543,546,554,554,491,484,476,462,481,471,474,476,465,481,466,439,447,440,442,449,455,448,443,451,443,452,543,546,545,549,553,550,538,573,563,571,577,564,568,506,519,505,512,520,552,545,545,543,547,551,549,549,545,554,541,553,544,553,516,522,519,519,518,512,504,519,517,510,516,515,522,518,510,517,508,508,503,508,506,509,508,506,508,511,522,532,527,528,523,526,527,528,522,528,531,531,536,534,533,533,536,537,536,540,538,526,523,525,525,538,530,531,539,536,531,533,548,545,544,543,538,547,543,564,503,500,497,503,507,514,504,497,515,503,504,566,554,558,557,548,553,485,495,500,489,493,491,500,497,449,452,441,459,443,455,556,562,556,555,565,549,555,561,558,562,553,559,569,555,557,554,558,553,559,552,554,560,561,554,514,515,528,510,525,509,512,482,483,483,488,487,489,488,483,478,477,478,481,479,482,481,486,455,455,456,445,460,449,459,501,507,497,495,492,490,506,498,503,488,533,535,527,542,544,539,544,536,537,534,549,538,546,539,530,520,529,528,530,521,525,526,525,529,544,542,544,539,536,540,538,538,517,507,512,518,498,512,507,511,508,509,515,507,506,530,517,529,532,570,569,569,563,561,562,556,562,509,520,531,515,520,588,574,581,574,584,576,581,577,565,586,577,578,572,582,579,590,584,579,586,578,583,575,602,588,537,542,542,533,539,547,542,534,555,567,574,571,566,491,511,507,511,497,505,500,502,499,508,507,502,501,509,505,503,505,503,510,504,504,509,508,508,508,504,509,515,510,497,502,515,544,550,545,542,552,536,559,569,573,562,555,561,558,558,545,554,552,563,563,557,559,546,521,526,521,531,522,525,523,529,526,521,530,524,525,523,526,563,557,567,567,558,576,565,566,569,564,561,558,559,573,565,556,573,558,561,565,551,543,548,544,553,550,543,545,554,546,540,487,495,494,495,502,492,493,501,519,508,517,524,513,521,517,517,512,520,526,536,537,544,535,540,540,534,539,546,541,539,524,511,509,507,513,508,518,498,510,520,547,565,546,575,556,496,490,495,501,520,504,514,506,508,513,482,482,478,504,495,499,499,501,496,503,498,495,501,494,486,490,488,491,492,492,487,492,492,489,492,490,497,500,480,486,486,493,478,483,479,476,478,464,477,469,480,472,481,470,476,521,515,514,520,517,514,519,513,517,516,508,515,565,560,560,565,576,556,558,561,564,509,488,489,500,495,499,491,497,490,484,485,495,489,495,459,457,453,453,538,543,551,547,540,542,538,541,547,549,552,542,540,542,559,541,546,537,544,544,537,551,549,529,549,520,519,575,574,579,587,494,498,497,505,495,508,500,485,489,500,496,512,496,505,468,469,463,467,460,464,468,455,469,538,533,540,538,540,542,529,536,536,543,544,538,540,541,536,541,543,543,539,539,538,540,540,548,547,554,554,549,542,557,551,538,545,519,516,520,517,519,515,516,515,519,514,505,511,517,507,508,510,510,558,553,562,557,560,562,557,565,547,558,516,521,522,511,525,524,509,517,518,505,504,502,508,506,512,505,510,508,504,503,501,481,472,480,482,474,475,478,437,446,436,437,445,440,441,448,463,448,441,550,554,553,551,549,548,557,547,553,552,550,550,549,559,553,548,542,551,550,484,491,479,494,479,487,488,491,503,473,489,490,571,587,567,582,550,545,553,546,550,551,546,557,559,555,555,560,543,543,535,534,538,537,538,532,542,538,535,537,545,486,498,510,496,516,500,499,495,500,501,490,489,492,493,494,490,494,529,534,535,530,553,552,568,562,551,561,562,557,562,547,565,481,478,485,494,493,480,483,468,482,478,486,481,490,484,536,526,528,540,540,532,544,531,545,552,538,543,537,552,545,542,544,549,538,544,545,540,543,505,505,507,504,509,537,539,542,540,542,538,540,550,540,548,540,582,568,519,521,519,524,521,519,534,513,522,512,516,518,525,519,490,494,512,515,529,537,545,542,542,538,549,545,545,541,544,502,518,512,511,503,493,511,516,508,512,544,546,547,548,539,543,542,545,550,544,479,488,479,481,486,481,496,490,489,491,507,500,502,506,499,500,532,533,539,542,533,540,542,545,536,565,570,554,555,580,488,513,504,494,501,518,508,513,520,548,544,538,537,540,543,546,546,542,549,540,550,542,545,542,544,567,554,556,549,569,550,551,558,560,551,562,560,568,515,490,488,486,487,485,480,484,478,484,480,488,484,483,489,491,486,439,451,445,450,447,441,527,522,532,531,520,520,525,524,519,521,537,536,520,523,525,541,545,537,548,547,547,544,538,535,542,543,538,546,545,543,537,546,557,555,556,555,556,562,558,514,509,518,513,513,525,488,497,484,487,486,481,485,479,481,486,490,466,457,461,466,456,475,462,454,465,457,456,470,462,460,462,457,455,491,497,487,491,486,563,584,576,572,558,559,569,566,565,573,503,510,511,504,505,505,506,516,509,503,513,522,511,507,470,456,472,463,461,471,463,465,467,493,498,500,501,493,496,512,497,493,496,502,487,499,500,491,499,511,501,490,492,547,545,542,547,553,544,552,545,537,546,552,557,543,555,472,489,470,475,480,481,479,489,491,455,463,468,466,456,483,454,453,544,550,548,543,547,538,478,509,497,495,508,501,497,505,507,504,492,529,542,533,536,506,515,516,500,504,500,499,507,499,500,550,535,558,495,500,509,505,509,501,466,466,476,458,464,468,462,462,467,456,464,541,539,544,535,543,531,534,544,539,531,544,543,519,520,510,517,522,523,516,554,556,558,558,548,547,539,537,529,531,536,531,536,528,534,524,521,533,529,536,529,531,530,535,529,535,530,534,529,536,533,527,537,533,545,552,502,509,507,501,516,498,509,505,513,512,570,545,561,552,558,554,569,556,552,541,551,543,553,558,541,551,511,519,520,509,516,555,569,571,567,575,565,554,556,512,502,512,503,507,514,496,515,512,504,496,505,502,505,508,503,579,599,590,585,579,574,584,528,540,539,533,540,540,550,537,527,544,542,532,541,532,535,512,522,522,522,523,527,525,525,474,474,485,489,468,471,480,484,470,477,479,474,482,478,472,470,469,586,597,579,601,581,549,541,544,551,552,546,550,547,551,540,550,530,501,500,498,495,489,494,503,491,508,498,500,490,500,496,496,496,501,511,505,512,507,511,517,507,509,507,508,520,541,529,537,543,538,476,460,472,483,474,598,570,582,582,583,600,584,589,592,592,587,593,590,597,595,505,504,508,507,516,511,510,513,506,509,508,524,509,546,550,543,553,553,553,544,551,553,549,556,562,558,554,517,518,516,514,528,520,523,525,519,519,520,521,517,545,549,543,548,547,542,541,546,550,539,542,541,551,548,545,574,579,582,529,524,523,519,482,481,489,491,485,488,491,486,485,492,491,498,490,503,555,522,528,530,522,524,519,545,544,543,545,534,531,538,530,533,528,534,533,531,533,529,533,532,563,552,556,561,556,561,550,554,563,562,563,562,558,570,491,502,490,498,490,488,486,497,500,502,489,489,491,574,571,568,555,501,501,511,498,509,492,497,503,504,503,500,500,502,499,496,495,500,504,508,493,496,509,543,544,554,543,549,548,537,551,548,550,559,550,544,492,488,489,489,494,489,446,454,451,458,449,441,463,451,462,453,492,487,484,494,491,488,499,481,498,488,539,513,530,525,517,517,523,528,512,526,526,516,525,582,598,577,587,591,597,595,577,516,533,516,539,513,508,529,509,522,505,496,519,506,471,469,473,473,483,472,475,470,481,473,475,472,483,472,475,458,593,578,572,591,581,591,598,585,584,582,593,576,589,587,588,578,541,524,530,537,539,540,536,537,517,543,525,541,534,528,536,532,534,531,540,535,532,536,525,557,538,567,547,561,563,566,502,502,524,508,505,500,513,510,498,497,515,500,551,564,565,569,558,572,565,572,573,568,580,558,559,578,565,564,568,514,510,508,511,508,512,503,504,498,498,506,501,504,531,528,531,526,535,526,525,524,526,519,532,534,542,550,539,540,538,546,540,548,557,554,566,554,555,555,559,548,558,572,548,558,553,559,566,560,559,554,525,523,492,496,494,499,499,491,479,470,472,475,475,474,471,474,469,477,480,472,491,500,493,510,495,525,532,522,525,527,525,529,529,470,534,528,532,526,525,523,522,521,520,527,523,524,526,526,521,530,523,527,532,542,538,542,536,535,542,534,541,538,546,539,550,547,546,549,540,476,485,470,471,483,476,464,469,465,476,473,472,472,477,567,563,572,576,573,571,563,562,562,572,565,570,506,506,510,500,518,500,499,481,484,478,481,480,482,475,486,477,476,478,495,493,489,495,499,495,462,466,467,463,467,465,474,467,473,475,473,468,477,468,558,552,556,543,555,564,553,574,556,570,546,561,560,576,491,494,491,484,483,479,499,503,487,473,474,470,467,474,475,469,463,467,478,463,468,471,555,562,555,560,547,550,560,556,556,548,550,549,540,555,556,553,556,546,554,552,541,546,550,548,546,550,496,496,492,508,497,491,556,545,535,554,548,530,541,555,543,541,550,541,540,551,544,545,526,475,478,482,473,471,469,468,470,483,489,481,494,485,500,493,491,496,499,490,504,497,497,502,492,503,544,540,537,533,541,539,549,534,536,537,525,522,529,524,536,543,545,537,482,494,491,491,476,483,483,474,480,469,469,560,551,560,558,555,561,563,564,555,563,556,554,564,576,569,573,571,559,564,561,523,519,508,515,515,518,511,514,515,510,503,496,499,512,507,500,487,490,491,494,489,482,479,483,479,481,484,475,485,477,487,492,474,478,475,467,474,468,479,480,478,479,494,488,562,558,564,555,568,564,563,568,579,517,519,520,517,518,517,518,511,503,510,502,506,507,510,506,508,510,512,504,502,538,540,544,547,544,539,547,548,547,551,548,537,540,535,532,551,537,544,548,550,542,542,497,486,500,491,506,488,487,487,477,488,486,569,591,585,586,578,582,574,585,566,568,595,581,572,569,580,577,580,579,542,544,539,534,545,531,531,532,527,538,533,535,529,533,532,525,532,525,525,531,523,520,521,523,541,548,549,533,549,546,546,546,540,536,535,538,544,535,534,503,514,505,500,501,504,503,514,509,505,512,508,494,511,552,554,553,551,546,550,573,568,561,541,557,553,566,564,530,528,534,531,528,562,498,491,498,490,491,494,494,504,495,494,496,493,463,458,462,455,469,470,469,547,554,555,552,563,553,554,551,554,554,554,545,557,470,477,546,533,543,543,536,540,536,527,551,534,536,553,548,540,537,541,550,548,551,544,543,542,551,534,546,486,492,546,552,554,556,545,553,564,546,547,556,542,555,543,532,487,474,466,461,466,468,468,475,478,561,560,565,566,565,563,551,570,556,546,563,566,481,476,474,478,475,471,473,470,477,474,471,473,478,476,579,566,547,569,483,478,478,472,483,472,442,451,453,443,441,456,553,561,560,558,555,552,551,556,553,552,559,553,557,485,481,488,474,480,489,474,475,481,491,487,490,476,532,535,537,534,530,539,522,527,530,529,531,537,574,567,574,575,583,570,577,551,557,559,542,544,555,543,544,557,544,545,496,489,502,489,497,492,509,494,503,503,495,497,503,494,499,501,490,494,498,565,562,566,571,576,580,577,585,563,576,523,518,533,535,526,519,528,507,513,515,509,512,511,517,515,520,512,517,509,518,515,514,514,524,513,515,504,503,500,503,500,506,503,499,499,517,491,503,497,500,503,497,500,497,494,495,494,502,501,499,462,479,469,475,473,478,473,472,466,475,467,445,434,432,432,439,442,436,446,488,480,479,484,485,484,470,476,484,485,478,483,481,524,535,533,539,536,533,547,546,542,561,558,555,552,558,556,552,555,492,501,496,478,494,493,480,499,481,468,479,473,472,475,483,486,478,470,468,465,478,471,530,540,551,553,537,529,505,501,503,516,512,509,567,558,567,565,561,565,469,476,483,486,484,478,444,537,522,526,524,525,522,528,521,524,519,532,536,535,537,531,541,535,534,533,536,537,539,530,538,534,529,539,541,543,546,545,537,541,507,498,496,501,508,499,503,491,503,547,540,543,552,557,553,556,573,514,509,514,510,521,489,486,497,502,487,487,493,496,500,494,490,490,492,486,499,484,489,485,487,476,492,481,506,497,493,500,498,478,484,477,477,484,479,480,479,482,481,483,502,499,503,495,498,566,557,554,551,558,563,560,555,564,556,562,559,557,564,549,541,545,553,553,556,563,552,545,549,567,545,552,547,502,501,504,507,498,501,511,508,511,493,514,500,497,506,512,491,513,507,496,501,459,477,490,486,494,480,486,489,551,550,557,559,500,515,517,511,519,517,514,517,513,513,516,516,569,560,596,568,573,587,570,576,560,593,570,580,569,561,580,560,572,569,490,494,497,477,487,507,476,554,544,561,544,564,550,554,558,549,559,559,553,547,546,549,552,547,547,546,555,560,523,521,521,522,517,521,521,526,539,538,530,533,539,537,537,533,537,530,514,515,519,532,537,532,526,530,535,532,525,539,533,530,534,483,482,489,497,489,494,484,491,483,491,483,494,481,493,565,530,552,563,537,556,556,549,542,560,557,575,550,534,563,562,552,542,524,550,510,504,519,501,512,520,496,507,502,507,514,502,554,565,560,556,562,567,578,513,524,530,529,527,520,521,520,525,528,523,524,522,526,524,525,537,534,528,529,525,507,510,508,519,501,505,514,560,563,571,563,559,574,569,558,556,566,549,553,544,547,544,544,549,550,547,548,542,534,552,489,490,509,492,501,501,492,497,498,492,501,507,498,492,505,501,500,495,503,498,499,501,513,514,548,564,558,555,561,556,553,556,555,563,543,561,544,553,554,553,547,532,514,507,520,502,508,500,518,511,519,508,508,522,464,472,463,466,475,459,470,467,474,474,457,453,466,463,467,457,539,548,546,549,567,544,549,493,491,481,503,485,483,488,488,450,461,459,460,451,462,462,465,507,511,507,505,506,527,544,523,536,532,550,516,547,473,477,479,471,478,482,479,492,562,555,495,491,500,495,541,531,557,551,547,549,548,549,543,551,555,547,516,515,518,518,517,521,521,519,534,523,535,532,527,523,534,531,535,535,531,527,523,537,506,511,515,515,512,506,553,557,573,561,567,564,565,565,566,565,566,567,559,558,564,558,558,560,547,556,547,554,544,559,554,551,541,550,504,510,501,513,514,519,511,481,493,489,487,482,490,488,485,494,484,492,493,490,487,490,488,503,510,504,535,534,535,525,534,537,559,551,550,553,543,543,543,541,542,466,470,479,479,473,476,470,480,480,474,493,481,473,482,471,475,482,476,460,466,469,473,546,555,550,560,552,546,534,561,568,550,561,563,558,563,557,532,521,518,523,524,534,522,527,538,529,527,516,516,507,512,519,520,514,516,504,510,499,505,505,511,500,483,476,511,511,514,511,519,514,519,541,553,558,552,502,497,491,492,482,488,488,495,486,490,487,467,472,461,472,477,475,467,460,471,475,480,475,475,551,566,557,557,549,518,564,560,560,556,566,575,564,548,560,564,496,494,498,483,502,490,499,501,498,490,490,498,496,490,492,492,502,500,459,464,454,454,453,452,550,546,550,545,545,558,552,555,546,570,567,567,568,571,555,569,526,526,532,525,529,526,524,523,524,518,526,528,519,555,545,555,558,555,547,557,545,569,554,559,557,548,564,558,542,556,502,503,502,506,504,513,497,500,492,498,497,552,478,476,470,460,479,466,475,482,480,480,480,463,475,469,478,482,477,463,463,459,462,467,464,472,468,449,469,472,468,471,468,560,556,555,559,538,552,515,517,522,520,528,516,524,515,515,513,564,551,550,555,553,550,546,553,528,531,523,532,530,498,497,500,500,503,499,499,564,563,551,557,532,522,522,524,526,518,527,539,535,552,549,542,547,552,499,506,492,489,488,494,482,492,481,491,484,481,474,483,479,473,478,471,477,472,474,467,482,478,480,471,479,480,488,480,479,491,578,569,575,566,552,577,572,563,576,560,517,508,511,512,513,509,511,501,511,515,526,545,560,545,553,556,559,503,488,493,493,493,506,516,494,492,479,488,510,513,499,474,469,482,475,470,461,461,471,564,569,549,537,534,536,560,542,485,491,488,550,541,557,557,558,563,557,544,561,542,548,554,538,552,544,554,548,544,558,557,550,556,551,547,550,550,468,470,475,481,479,476,476,479,549,548,547,549,534,552,527,539,533,536,537,540,534,552,550,549,552,551,551,551,560,557,545,546,548,548,546,548,547,561,548,545,536,485,488,482,494,487,494,486,476,486,492,490,484,479,492,461,460,467,461,450,458,454,458,458,469,465,461,465,557,558,490,491,500,490,494,498,490,490,490,489,497,514,493,497,504,501,546,540,552,536,542,546,545,540,547,543,546,552,550,544,510,504,516,512,519,510,508,515,509,541,538,538,541,540,535,539,543,535,542,536,537,530,547,539,533,543,539,549,474,489,471,484,484,490,476,490,499,505,484,492,505,500,496,496,492,531,543,534,532,543,542,546,536,539,534,531,541,535,467,488,473,482,552,556,557,558,565,566,552,557,567,564,519,509,514,510,505,523,508,514,507,469,463,463,466,463,457,454,464,460,479,481,477,487,484,487,488,479,487,481,486,509,487,479,484,569,579,568,581,578,562,574,565,568,580,580,578,492,497,490,508,502,499,496,483,483,483,484,484,482,486,491,496,583,605,602,594,601,608,562,557,545,551,549,558,555,533,519,516,495,515,514,514,522,515,524,516,515,523,499,500,495,494,498,495,461,453,453,460,458,460,447,445,477,462,466,473,461,456,478,473,479,471,461,462,473,491,457,483,605,584,583,596,590,586,576,523,539,521,526,522,523,528,526,530,531,532,527,528,523,524,523,599,594,583,580,583,572,586,588,583,576,551,549,549,552,545,558,553,553,556,550,545,551,547,552,553,547,554,494,501,497,486,489,489,494,497,495,503,504,510,497,489,481,490,483,485,488,494,491,484,491,488,496,558,566,558,561,570,564,544,580,581,563,566,581,561,583,569,571,563,514,507,496,496,507,509,501,497,504,505,511,485,517,507,495,514,489,519,483,471,471,471,475,473,484,475,477,479,483,554,551,563,562,549,535,550,530,552,545,546,555,558,549,549,542,551,562,514,506,496,495,496,490,479,487,502,500,497,497,483,492,502,507,528,565,557,557,566,563,507,505,496,484,484,498,482,506,486,492,493,489,492,481,498,493,478,484,472,459,468,473,475,471,463,472,545,547,529,543,537,535,514,511,509,505,513,506,503,506,506,501,504,514,510,563,573,556,548,564,568,556,546,558,573,553,483,474,483,478,478,468,476,474,445,446,447,442,532,524,521,580,555,567,564,575,564,565,588,567,563,561,563,568,531,537,528,540,539,528,531,537,533,542,529,476,488,475,479,485,480,483,477,482,487,489,473,485,481,463,483,480,470,482,467,470,473,466,472,460,546,541,557,564,554,549,547,532,543,538,478,469,471,489,485,475,474,480,484,475,453,477,479,471,468,447,445,440,447,431,443,528,523,539,533,539,538,530,572,564,569,574,571,571,577,561,578,560,564,568,570,577,569,572,579,527,498,508,501,514,506,511,509,511,508,554,557,524,536,540,528,536,531,537,532,555,558,556,570,560,563,552,555,564,565,499,511,469,486,476,479,475,471,475,503,500,555,549,555,564,566,562,567,552,549,544,526,525,526,519,521,544,528,529,530,528,533,536,522,529,531,527,513,514,508,510,517,505,515,519,512,507,508,509,578,555,557,572,563,565,571,558,558,564,565,559,564,558,548,550,547,536,542,545,504,509,500,507,467,469,477,461,466,463,475,480,481,542,543,560,552,565,550,541,543,502,491,488,492,489,499,477,490,497,503,501,483,481,494,489,473,471,467,475,474,481,476,557,515,521,523,518,500,511,490,465,455,461,459,466,470,464,466,466,462,465,468,455,458,463,456,465,441,426,432,430,438,424,445,430,532,535,533,528,542,534,537,572,563,564,525,538,531,531,550,546,539,531,536,540,533,535,513,529,525,526,526,531,566,580,571,570,574,573,581,582,580,575,491,469,474,482,505,495,477,479,482,477,525,537,527,537,530,546,547,545,542,538,547,546,550,545,549,541,547,501,496,548,558,541,548,562,548,569,568,565,517,513,501,503,508,506,505,509,510,509,503,508,495,510,514,453,463,454,460,458,453,457,468,456,455,452,440,447,446,453,456,440,451,441,546,545,536,543,547,540,551,544,542,540,557,575,578,576,573,570,509,519,503,542,544,543,558,555,545,548,552,550,483,494,479,493,488,494,502,558,564,552,558,560,561,560,557,552,562,555,566,560,561,549,560,548,560,551,552,551,560,473,462,483,548,549,543,577,575,578,578,567,567,583,577,564,578,574,584,534,516,527,526,524,523,538,531,535,467,476,468,468,477,476,544,550,546,554,535,544,540,545,566,563,552,550,555,558,550,554,541,558,559,559,545,537,550,549,563,546,462,479,472,464,470,475,466,468,470,473,551,562,550,553,566,567,554,543,552,563,513,502,508,496,498,493,500,489,485,488,487,492,495,495,484,569,558,565,570,560,555,569,561,557,560,556,583,551,555,561,568,518,517,520,520,518,512,526,508,514,513,518,546,535,539,542,541,538,548,547,544,535,537,536,528,540,525,530,532,532,538,533,571,564,524,514,517,523,523,523,515,515,512,513,523,516,522,512,519,514,511,517,579,587,569,564,569,571,577,589,576,568,481,504,491,497,485,487,503,492,569,562,567,564,564,563,565,569,553,569,551,560,558,563,564,563,552,555,561,544,559,491,504,501,505,490,494,493,498,484,500,501,503,502,515,508,513,557,555,553,542,509,557,558,554,558,557,553,552,555,552,552,559,550,553,548,552,542,535,536,541,542,540,539,538,537,544,541,479,470,483,473,465,484,476,467,492,492,502,491,496,497,498,499,497,482,491,551,557,563,545,543,559,548,542,552,553,540,550,552,549,557,549,529,510,507,516,504,512,508,510,509,498,475,480,479,484,485,482,479,479,480,475,480,482,459,454,457,460,453,456,459,457,447,454,458,477,482,486,483,484,479,481,480,484,501,504,489,499,497,504,493,504,493,522,532,526,533,520,534,545,543,554,549,550,542,547,546,540,544,539,537,544,548,554,554,553,560,547,552,546,555,557,543,546,560,554,501,499,505,497,504,492,494,504,499,502,504,491,485,504,498,509,491,503,494,510,505,498,511,533,532,559,540,565,552,556,547,560,543,553,567,555,521,519,528,522,528,519,523,519,532,525,517,521,521,515,526,552,547,546,549,548,552,535,553,554,542,535,539,557,516,476,483,474,482,479,475,473,475,470,482,473,478,476,475,471,472,475,472,466,461,462,464,459,463,463,463,459,460,577,585,532,528,539,534,535,534,529,542,525,524,529,528,538,533,543,543,543,532,535,542,535,537,535,535,504,499,498,496,499,499,492,508,502,502,502,503,499,563,569,564,583,577,564,558,555,574,568,577,576,477,481,471,477,497,469,483,480,479,478,476,470,495,494,494,471,548,549,551,545,536,549,538,539,545,549,531,535,535,543,541,533,492,483,476,479,480,470,477,469,507,504,488,502,505,500,544,531,518,515,518,510,518,515,519,525,510,522,517,511,513,519,509,537,532,537,537,536,535,533,543,549,547,557,534,553,548,475,475,488,479,473,481,477,470,482,488,478,483,479,484,480,479,489,476,486,485,497,484,484,510,510,516,516,511,504,558,559,543,550,548,568,553,552,548,553,486,502,508,501,490,507,505,504,504,500,501,499,495,500,511,497,491,519,527,524,513,523,528,560,580,568,571,568,569,563,566,526,540,519,510,498,498,505,493,491,480,484,495,487,486,485,487,484,484,488,482,479,479,509,483,494,493,538,549,541,545,554,549,540,552,548,539,546,546,546,501,507,508,506,501,499,515,503,552,552,546,548,545,542,551,536,543,546,528,525,532,529,529,532,525,529,533,529,544,531,534,530,493,490,481,471,484,487,476,478,477,482,487,489,557,560,559,568,563,564,550,556,559,566,569,559,557,552,562,561,569,560,559,560,571,557,562,518,522,523,529,525,484,491,484,490,486,486,476,482,463,476,470,462,463,466,465,556,562,565,564,554,550,549,559,562,555,580,559,560,578,557,564,508,515,521,499,522,514,518,519,505,514,508,523,499,513,473,472,472,476,470,465,439,441,442,438,458,440,456,443,441,447,454,455,542,533,549,529,535,529,537,541,530,534,535,539,532,537,539,530,542,533,548,542,541,545,554,477,486,479,467,492,464,476,549,552,548,553,551,543,555,557,550,558,538,551,544,562,561,563,560,564,568,568,553,552,552,555,552,515,534,532,527,526,508,522,518,524,519,529,527,517,530,523,536,532,510,506,511,516,512,507,506,503,506,505,505,500,483,487,486,484,483,477,483,479,497,493,492,495,500,509,567,569,558,558,586,566,566,563,573,552,518,514,510,523,515,511,514,514,508,565,556,554,560,562,539,488,492,476,483,502,500,508,504,504,509,508,501,508,503,501,505,507,503,504,500,541,538,542,565,560,569,566,570,564,565,568,567,563,519,535,530,534,529,520,525,520,522,532,522,526,527,525,524,526,516,545,555,547,544,504,500,510,505,502,498,512,460,470,472,464,475,473,463,473,475,473,480,472,478,481,474,475,473,476,471,474,476,477,472,501,503,496,496,494,497,497,494,496,492,502,492,490,490,481,491,483,480,487,487,495,486,490,484,480,491,487,490,485,484,480,490,494,490,488,481,487,483,483,488,489,489,484,485,477,467,471,475,476,486,487,483,479,482,490,487,485,467,468,463,459,464,462,458,458,441,432,542,558,550,559,543,564,554,558,563,567,526,524,540,535,519,530,534,535,527,512,502,511,505,504,507,506,497,505,500,502,511,482,478,483,485,499,502,492,498,496,498,484,491,498,489,498,496,493,504,537,525,525,586,585,572,578,578,509,512,525,528,528,514,522,543,529,527,535,531,527,534,534,532,520,522,531,543,543,539,543,529,537,548,536,538,539,539,551,544,542,536,483,474,479,486,484,476,460,474,475,475,472,490,494,486,498,493,493,492,499,481,497,492,485,495,493,492,493,486,561,553,560,553,553,547,565,506,525,510,526,523,530,522,527,523,512,522,464,462,458,461,465,471,463,467,461,466,469,466,479,557,539,537,554,546,549,550,478,468,480,491,483,468,478,526,530,536,539,529,535,535,528,523,528,523,530,527,518,520,545,542,538,545,546,548,538,539,567,558,560,547,517,519,487,483,487,497,483,488,486,486,481,492,487,478,482,487,492,488,499,494,501,482,496,494,579,568,569,556,592,565,573,584,562,590,582,559,489,495,492,501,495,492,484,485,484,503,488,492,551,555,565,549,558,565,567,558,563,563,567,555,550,548,550,556,561,561,553,553,561,557,548,555,559,551,513,498,499,522,515,508,514,499,511,522,477,472,484,473,421,433,430,431,427,425,426,434,436,433,472,455,465,454,464,454,443,454,594,591,589,597,607,593,567,565,560,553,550,550,553,569,567,536,548,491,498,498,498,498,502,493,499,492,497,502,506,487,497,476,491,486,459,464,450,462,457,460,456,453,455,455,453,510,497,495,501,513,505,501,501,499,535,540,536,536,547,539,539,538,547,541,536,544,509,504,560,573,563,560,533,528,524,520,524,531,526,522,523,528,556,557,558,556,554,545,549,567,548,559,562,556,530,538,536,529,533,533,537,529,530,538,533,519,523,518,524,516,521,517,522,518,552,550,548,554,552,557,560,548,561,555,560,564,554,566,523,525,512,514,523,475,476,477,476,477,483,477,480,470,473,477,466,549,540,546,534,557,539,551,561,491,495,494,488,486,480,485,484,485,494,498,490,498,495,494,568,554,562,551,554,553,556,557,565,488,481,484,475,484,471,483,464,479,489,555,554,551,553,556,546,551,553,559,549,549,560,549,551,545,550,569,551,562,555,552,557,562,562,508,511,509,504,506,495,502,496,514,505,500,504,499,500,493,507,503,498,511,507,502,503,513,507,510,513,502,506,526,541,528,534,533,535,535,531,534,534,535,565,549,570,574,552,557,568,554,561,547,564,481,484,488,480,479,497,476,472,476,483,475,528,520,521,520,521,527,516,521,518,535,536,536,536,543,532,533,552,553,538,545,551,545,541,555,557,547,493,498,507,503,490,441,448,440,438,440,434,449,452,439,442,446,436,438,442,442,444,441,440,446,444,432,449,478,477,468,475,466,471,478,464,475,467,460,473,573,559,559,548,483,477,474,482,472,488,482,484,503,499,516,490,496,491,505,498,488,501,497,484,495,498,505,506,495,556,557,558,557,550,550,555,564,568,558,548,559,499,502,501,516,500,497,506,504,498,498,509,505,450,451,446,462,445,460,455,457,474,471,474,472,463,473,482,483,481,559,560,571,570,520,525,515,526,525,517,524,529,522,529,528,464,488,479,467,468,474,470,552,534,545,548,547,544,543,582,573,567,572,573,567,571,566,514,554,561,539,550,557,561,553,548,538,516,528,521,516,521,525,523,538,522,516,475,483,477,468,479,486,477,477,468,475,480,475,549,550,548,536,546,551,551,538,535,547,547,541,560,560,546,557,490,485,489,547,542,550,550,528,515,523,565,558,556,548,548,547,552,557,556,557,555,561,562,564,551,548,524,522,517,510,479,471,477,479,480,498,495,494,489,490,499,500,511,508,512,515,513,507,505,506,512,506,511,511,526,534,526,529,525,531,521,521,537,528,536,532,551,546,541,541,542,536,538,557,562,562,558,564,553,560,558,556,549,558,564,553,494,498,486,498,491,498,507,497,489,503,495,503,501,499,485,485,481,490,485,491,489,487,557,580,472,474,469,464,477,487,480,468,478,521,521,518,518,515,515,521,531,524,516,520,521,523,526,519,523,520,545,545,539,537,552,540,544,546,540,541,561,547,552,553,562,542,477,472,486,492,484,479,480,475,478,480,548,551,571,572,570,565,579,561,574,571,570,577,565,563,570,561,564,572,562,528,504,524,518,528,525,578,578,587,574,582,583,588,593,575,584,581,537,533,534,528,540,537,537,536,528,533,537,561,530,528,530,531,532,531,535,534,528,555,550,551,548,544,554,545,484,492,484,488,492,488,490,478,481,491,492,488,505,489,501,490,487,471,466,469,468,470,464,458,463,464,471,462,463,462,476,463,464,570,573,568,578,566,572,581,570,558,577,582,567,557,565,572,558,584,454,460,465,535,532,520,527,528,538,530,530,533,533,530,534,527,529,532,533,561,557,555,561,561,557,556,554,551,564,551,562,563,565,557,561,558,556,540,542,543,543,539,542,540,546,539,550,546,545,545,547,542,526,534,536,541,530,520,524,519,518,527,524,523,516,525,518,523,526,523,550,555,553,546,550,547,547,548,543,553,550,545,549,550,528,535,536,529,531,535,540,530,577,570,538,534,538,532,537,532,532,536,530,533,534,533,564,565,564,554,566,553,566,573,498,513,505,508,515,516,519,527,504,496,514,510,520,523,506,520,517,512,523,515,505,484,481,481,477,481,441,445,435,436,431,443,450,523,532,539,520,530,525,528,525,523,528,528,530,529,526,528,528,525,528,525,515,528,521,526,526,540,536,531,533,533,539,543,530,534,534,542,536,535,536,536,543,552,496,502,493,493,493,498,502,492,508,436,433,437,445,443,439,435,437,440,452,444,485,482,486,489,474,556,551,552,560,559,551,557,544,555,539,531,531,538,535,535,523,519,523,517,525,520,523,520,521,546,546,543,546,546,548,540,547,549,553,579,570,569,564,567,564,560,493,491,513,500,504,523,499,482,476,471,472,479,471,476,475,478,566,562,553,553,557,547,565,559,564,549,556,560,556,571,507,504,502,492,508,490,510,512,486,492,491,493,493,484,494,484,489,491,493,494,494,489,483,491,484,474,484,480,486,475,482,494,480,481,485,478,496,491,485,487,493,481,489,488,491,487,492,488,501,503,502,502,497,504,506,504,500,504,503,497,504,508,501,509,504,500,510,496,503,498,505,497,502,503,515,488,484,477,481,492,479,485,487,477,482,480,494,496,505,492,500,496,566,578,590,579,583,589,576,571,576,577,582,550,466,483,494,494,481,498,538,529,543,526,526,543,530,533,532,531,530,540,544,538,534,541,543,546,539,555,539,550,554,546,546,559,543,468,485,468,481,483,479,538,551,545,547,546,555,549,542,544,544,542,540,546,546,548,542,539,549,537,541,483,487,492,470,467,467,479,479,468,479,477,570,553,577,562,492,500,504,496,490,499,489,508,491,494,509,493,509,457,458,456,468,465,464,460,460,452,458,466,576,559,565,557,550,572,540,561,554,559,551,582,550,562,568,556,543,556,451,474,455,478,460,453,467,474,462,479,471,462,454,474,473,465,530,539,536,531,545,525,520,530,544,514,540,530,520,570,566,568,566,576,569,561,558,570,564,568,538,544,545,556,528,524,470,478,483,469,479,459,466,475,479,530,527,521,531,531,521,531,527,543,526,527,520,536,532,533,539,536,535,542,533,539,540,542,538,540,545,548,537,535,500,504,542,554,541,543,553,544,557,555,552,559,480,493,484,501,484,501,446,449,449,442,454,440,452,453,451,450,444,426,448,450,530,533,516,524,521,519,519,524,526,518,525,517,526,527,532,531,526,535,531,529,534,540,524,531,527,579,572,573,565,581,570,570,576,541,538,550,542,545,550,559,545,501,497,495,494,507,504,503,512,497,506,506,501,502,536,534,535,537,542,539,539,540,549,560,573,561,559,553,571,511,494,496,516,496,511,494,497,492,438,445,437,431,446,443,442,451,439,443,453,442,466,550,561,561,554,560,524,526,519,532,525,525,523,531,532,524,522,526,516,531,558,559,557,553,558,555,556,562,548,556,557,549,556,541,534,533,531,532,538,537,532,539,532,530,530,532,542,507,516,524,516,518,517,500,501,501,499,506,505,511,497,543,577,571,580,573,568,555,579,544,559,575,550,542,540,539,551,543,555,548,553,545,537,556,507,513,501,505,493,511,498,503,483,507,480,482,483,476,487,478,482,487,488,479,474,484,486,484,483,485,487,489,482,477,481,473,469,478,469,466,470,470,467,469,471,478,477,468,472,464,476,464,496,490,489,489,486,492,493,490,500,492,498,543,547,538,535,565,565,561,559,563,554,577,557,549,559,553,569,526,521,517,517,525,512,506,515,518,516,523,466,463,466,470,471,470,465,464,470,471,476,476,470,464,473,473,452,459,461,451,457,447,455,453,462,452,458,447,459,455,446,459,456,449,555,569,565,561,555,551,553,560,567,470,473,473,480,472,469,455,484,483,486,471,468,481,475,545,533,549,539,538,538,544,539,540,531,550,495,492,488,486,500,487,504,490,505,528,548,523,521,517,518,537,535,535,535,538,535,532,526,535,524,538,539,515,511,503,518,514,513,516,523,569,577,580,582,578,564,490,500,498,506,481,489,492,496,511,492,492,481,487,482,473,491,479,478,479,479,482,590,606,592,591,605,599,612,600,591,598,593,596,547,545,554,547,554,551,556,543,562,549,546,521,512,508,517,517,526,502,497,523,470,431,436,435,442,450,443,446,443,436,464,466,468,480,463,472,468,468,464,558,576,574,565,558,557,568,584,511,516,507,505,510,516,518,511,517,514,503,552,554,567,564,571,516,497,508,514,487,489,484,495,486,489,479,493,501,484,501,502,512,514,515,514,514,514,514,518,517,512,507,519,514,510,543,551,546,546,542,544,545,538,542,545,545,546,523,513,531,529,529,529,522,524,530,531,526,533,544,521,513,515,522,513,508,517,519,521,512,507,566,563,546,556,539,558,550,512,506,506,512,493,488,487,497,494,491,525,513,525,528,533,584,590,572,576,596,582,590,573,546,537,537,534,531,530,542,539,537,528,533,533,541,545,542,556,565,564,568,564,564,567,572,564,507,509,499,515,509,516,521,518,455,463,455,466,460,482,494,483,488,483,490,482,483,487,509,506,513,509,514,553,548,557,553,559,547,555,556,563,559,547,567,564,547,503,485,497,499,448,452,456,441,445,448,449,444,525,527,528,535,528,529,532,523,525,526,544,544,539,541,554,542,544,554,567,555,553,558,560,550,553,545,552,550,553,549,552,561,564,508,516,529,526,508,526,511,523,500,510,506,502,502,508,506,510,512,493,487,488,480,487,488,481,485,485,491,490,491,489,493,492,491,461,462,476,468,471,464,464,470,450,451,452,455,439,466,454,465,462,463,468,466,455,460,459,464,558,563,548,560,559,575,542,561,560,550,559,560,551,563,558,553,562,547,554,556,548,554,560,550,556,520,519,521,513,514,515,515,511,513,523,514,514,510,507,510,507,547,541,546,546,542,547,543,546,536,544,544,544,543,538,541,538,546,541,551,540,537,555,545,545,487,481,504,479,484,480,484,501,489,486,486,497,488,487,486,495,540,551,548,536,538,523,546,549,548,557,567,554,563,553,551,498,492,496,497,509,493,498,506,524,495,501,500,499,503,496,493,500,490,491,569,558,577,572,515,516,508,510,504,516,512,516,519,513,508,510,510,520,511,509,507,512,512,520,516,516,518,524,524,514,530,524,523,519,552,547,537,546,550,565,547,554,552,556,556,557,547,558,540,542,534,550,559,505,507,513,512,516,515,505,510,511,515,514,509,514,537,534,530,540,534,528,532,534,534,560,549,540,554,536,564,475,483,483,486,467,487,477,478,492,470,476,469,470,481,493,481,495,485,496,493,488,500,498,486,501,550,554,544,552,548,544,544,547,548,535,543,536,551,533,547,535,535,540,530,539,541,536,536,515,533,528,527,521,527,513,526,527,525,531,523,557,563,562,557,564,557,565,565,542,569,561,511,517,515,529,512,512,519,521,531,536,540,532,532,526,538,540,534,522,536,540,542,534,540,531,554,550,545,539,559,531,564,558,550,555,569,561,558,546,556,555,556,512,509,503,508,508,502,505,516,502,510,514,566,558,571,567,568,561,561,565,558,558,522,523,528,522,521,532,528,528,530,529,527,525,536,538,528,508,517,522,519,521,519,512,520,522,523,529,536,535,530,495,501,506,504,502,509,506,499,497,530,524,526,527,530,525,527,525,530,530,527,533,536,520,552,549,541,558,558,552,555,552,548,555,566,548,561,555,554,544,539,561,550,556,565,502,514,524,506,499,492,497,497,532,533,526,536,539,533,544,540,534,534,532,570,561,568,560,570,578,573,554,565,558,563,562,565,538,537,523,538,556,551,555,559,553,560,551,559,558,564,550,552,559,563,491,490,500,475,477,558,548,560,543,481,483,503,488,502,485,496,480,504,478,480,486,486,481,597,600,590,595,594,579,607,542,545,542,538,537,537,540,535,559,567,559,564,578,556,576,560,570,562,554,557,500,484,503,488,492,504,498,482,503,496,547,553,554,561,562,551,551,560,556,554,563,541,550,556,544,550,552,555,557,552,556,555,565,552,544,521,514,543,539,537,541,534,571,571,574,575,570,570,562,560,562,559,563,511,515,521,464,502,494,492,492,495,482,482,588,580,576,577,587,577,572,571,527,520,516,526,518,525,524,533,512,529,512,507,531,516,520,511,522,518,507,518,491,490,486,498,478,483,488,481,482,486,490,505,510,507,508,506,508,508,501,512,506,508,506,498,503,544,538,537,537,540,534,542,542,535,548,543,550,549,514,518,516,518,515,513,511,509,520,508,517,515,536,515,512,519,509,514,511,515,520,512,525,513,536,531,540,536,530,536,529,532,538,539,531,532,560,558,567,559,566,549,544,554,569,559,549,552,531,527,532,533,532,526,529,526,537,531,531,528,531,530,530,524,518,478,477,480,487,469,481,474,479,482,474,478,470,474,471,561,549,548,550,563,553,561,508,510,511,502,502,511,505,505,507,516,512,516,508,502,498,501,498,498,495,501,501,500,524,528,535,527,531,519,528,528,524,527,526,524,523,526,513,523,517,517,515,514,524,522,516,517,510,522,514,513,522,535,534,532,526,569,574,567,573,560,573,572,565,562,560,566,563,571,563,548,541,549,556,550,545,544,544,537,544,547,491,491,501,486,496,492,485,494,483,489,490,482,490,492,492,486,486,477,476,476,486,482,488,483,479,486,554,564,553,548,563,552,560,563,554,554,555,550,557,550,499,509,500,511,502,506,502,502,514,507,499,491,501,489,494,530,525,528,523,526,551,534,558,554,551,557,552,561,549,547,517,525,523,523,522,527,523,520,523,521,511,519,534,525,522,527,536,525,529,529,533,530,529,523,538,534,517,513,510,502,517,505,515,515,507,509,510,512,511,512,541,550,545,546,556,545,544,553,551,545,553,551,533,520,517,520,524,512,518,516,519,525,520,519,522,553,546,545,542,540,550,539,542,543,548,546,567,555,561,577,502,514,509,505,504,506,501,499,498,499,505,508,507,505,523,528,522,516,531,522,524,521,522,532,524,556,555,563,556,556,558,560,557,561,564,496,487,496,489,501,497,497,481,483,492,483,480,479,483,491,491,484,478,480,487,489,482,489,572,595,589,575,578,573,582,574,592,566,569,598,475,484,482,477,479,472,531,533,535,535,521,538,525,533,530,552,531,533,549,534,555,548,551,537,551,557,554,545,548,539,506,505,511,498,508,504,503,506,501,504,499,502,502,504,500,502,500,532,528,526,524,533,537,523,527,529,528,521,519,519,516,521,521,516,526,513,520,513,515,521,521,514,519,517,521,520,525,569,564,566,564,571,567,561,570,565,583,561,557,551,547,541,556,549,550,552,553,539,555,552,557,513,511,525,506,487,486,487,481,480,481,482,483,487,486,482,490,540,532,539,536,534,533,530,535,530,535,537,540,531,559,540,555,550,547,554,539,557,558,558,497,483,492,504,489,485,500,600,578,582,580,552,540,555,551,547,568,549,556,545,544,510,520,518,511,515,497,513,518,523,514,502,517,499,513,481,483,471,481,479,469,475,494,498,500,498,508,499,500,492,559,570,565,553,558,544,560,558,550,554,547,551,547,551,525,536,543,538,537,545,545,540,481,489,495,489,489,479,489,489,479,494,491,495,485,483,472,480,480,493,488,477,503,484,500,466,464,486,478,473,477,477,468,483,474,473,482,473,552,555,557,543,550,557,571,556,559,554,549,544,558,496,501,501,485,489,495,485,488,483,461,470,475,457,458,462,459,473,463,465,461,465,460,458,540,537,520,528,530,524,529,522,523,527,530,527,521,528,531,541,545,547,544,546,557,558,507,494,511,506,502,498,513,504,493,497,496,499,481,495,503,499,496,506,506,484,518,523,527,519,516,511,514,514,520,517,524,521,524,573,575,564,585,561,559,560,528,521,512,535,499,500,492,482,494,496,492,489,491,493,490,453,458,469,460,448,452,464,454,462,460,459,467,494,479,487,489,487,493,496,492,484,489,498,492,499,498,501,506,501,507,503,500,498,503,506,503,503,549,536,534,545,548,546,545,542,574,571,572,578,566,556,563,562,575,537,531,534,527,541,533,531,526,536,532,531,527,541,533,560,558,553,562,566,522,510,506,520,507,516,522,543,556,539,541,555,556,564,548,569,563,565,554,567,483,480,480,477,498,492,509,511,510,516,523,540,530,526,534,533,527,529,530,536,532,550,542,543,528,510,499,504,507,514,503,511,497,522,522,531,524,533,522,529,524,530,530,517,556,554,561,557,543,488,494,490,495,500,487,510,492,549,557,555,553,546,554,545,547,548,561,551,557,492,491,493,487,484,498,568,589,595,538,536,540,535,539,529,538,529,539,553,570,567,566,582,583,572,576,576,564,565,571,532,531,523,526,522,513,516,531,533,507,504,499,504,501,512,509,498,483,493,482,494,467,454,464,451,451,457,457,454,457,457,461,457,454,461,445,442,434,436,442,447,437,431,431,433,429,439,509,505,517,521,519,506,507,520,512,527,535,534,530,527,525,536,527,529,569,568,573,565,494,493,502,534,526,526,539,529,538,525,530,534,536,531,532,535,530,527,542,551,545,535,538,542,562,562,561,557,556,558,529,505,521,514,511,507,504,506,509,507,507,511,505,508,499,505,510,504,490,485,489,489,485,484,490,467,481,468,471,463,471,476,475,473,474,470,476,471,473,499,500,496,500,488,504,497,493,505,480,493,484,485,491,483,467,462,461,461,468,458,464,470,467,461,463,469,460,464,468,471,478,468,465,470,475,470,472,476,478,474,478,481,474,480,482,477,469,480,443,440,442,440,443,437,437,431,439,532,537,528,538,527,533,544,542,523,539,538,531,558,557,567,567,563,556,572,517,517,547,536,551,557,565,540,478,486,482,496,465,489,475,481,542,549,550,548,543,540,543,548,543,547,542,544,548,546,553,550,549,541,558,557,554,554,546,548,486,508,502,496,502,452,450,451,460,457,449,444,457,459,457,465,572,566,573,563,569,571,566,568,574,562,576,579,571,527,528,533,527,537,520,524,506,502,503,510,503,516,506,505,508,511,511,510,505,510,505,499,490,477,480,476,512,508,542,549,546,545,544,542,539,545,548,516,518,514,516,498,498,506,499,506,495,502,501,505,506,545,536,547,546,545,540,535,541,541,536,544,538,568,568,564,561,565,576,564,572,562,568,571,564,558,499,516,508,501,547,540,538,544,535,546,538,548,545,530,556,558,552,563,581,574,564,561,512,508,490,507,529,528,520,532,529,528,528,522,532,543,545,539,536,543,545,551,554,538,539,505,503,505,504,501,507,503,501,498,503,504,503,509,514,524,526,519,517,514,520,524,507,589,579,577,564,582,576,579,590,576,576,585,575,590,582,591,536,544,549,555,546,512,509,503,511,514,507,512,476,473,484,480,484,433,448,431,432,438,462,476,477,569,557,563,567,567,510,504,499,517,513,501,500,500,484,492,496,504,497,495,492,482,470,487,476,478,478,496,473,478,488,573,559,558,552,556,495,480,498,495,484,484,490,487,478,487,485,490,496,588,578,562,558,575,572,571,570,557,512,517,521,516,509,516,505,513,518,505,508,514,512,522,532,529,517,516,524,519,530,518,523,519,555,545,542,553,553,556,544,513,510,519,518,516,510,504,512,515,526,538,525,540,537,538,540,532,542,530,538,562,498,510,509,587,588,590,610,597,595,595,593,600,603,599,603,598,583,579,590,557,552,546,547,549,557,551,544,552,545,557,551,503,496,509,507,502,510,507,500,500,502,505,501,501,509,522,540,557,538,547,546,546,545,541,547,540,535,539,545,465,470,471,474,561,559,558,551,559,556,554,559,558,555,552,553,570,561,546,549,551,560,544,552,545,550,551,547,554,510,509,505,509,506,506,516,508,519,507,511,512,512,563,559,476,475,484,482,480,485,492,482,480,473,487,483,496,494,496,496,492,489,480,491,498,492,540,536,537,540,537,532,543,531,541,537,560,572,570,562,564,544,567,553,561,559,568,553,528,524,529,524,528,524,516,541,537,531,533,543,537,542,572,559,571,557,568,574,566,573,548,547,561,576,564,534,515,509,509,503,508,514,589,592,589,597,594,519,495,514,533,550,519,530,513,551,497,557,518,447,468,465,453,454,461,454,478,468,468,453,455,461,537,554,561,555,555,530,536,545,542,549,536,541,542,541,542,531,524,519,512,516,582,557,584,579,570,574,565,578,493,501,500,483,479,484,489,479,489,488,490,478,602,594,603,611,585,599,600,596,603,600,531,540,528,530,534,542,538,531,539,528,540,540,549,554,543,559,551,553,561,563,553,561,530,528,531,526,529,525,530,516,562,562,565,554,551,555,544,558,543,549,546,549,550,497,504,497,507,503,489,510,520,523,521,509,515,515,564,500,494,486,504,496,497,497,497,496,498,494,500,495,494,487,486,487,484,484,488,482,489,478,487,480,563,564,575,575,577,578,570,495,484,495,490,484,508,546,547,550,548,557,549,543,494,514,490,501,504,501,499,495,541,546,543,560,557,549,553,549,563,556,547,539,552,469,471,483,488,471,472,487,485,474,472,478,470,470,475,473,468,482,479,534,569,558,577,569,565,564,575,559,554,593,567,558,578,506,515,505,508,509,490,498,493,495,507,505,512,500,512,509,509,601,598,574,602,591,606,561,554,543,564,482,488,479,503,487,513,486,501,502,488,503,490,501,453,454,459,453,458,458,449,464,449,501,511,504,555,553,555,555,551,556,546,556,498,509,501,507,492,502,490,505,510,497,497,511,512,503,502,507,506,505,504,500,505,502,541,543,543,531,533,542,549,537,540,540,568,569,552,558,554,555,555,524,528,523,518,526,525,523,519,517,534,529,541,574,553,559,572,566,576,562,568,572,473,478,494,487,491,503,480,478,490,494,491,529,541,536,543,540,541,540,535,536,527,540,535,549,544,551,543,536,544,537,544,538,540,549,534,515,494,493,504,505,508,504,503,492,507,553,566,566,559,549,556,556,562,558,486,499,498,506,504,482,479,487,497,489,507,488,483,490,453,460,451,543,544,547,553,549,555,554,549,545,546,543,552,542,557,551,556,551,542,552,544,559,547,548,551,557,506,504,496,502,498,488,476,476,477,484,477,473,477,477,470,477,474,478,472,475,478,441,449,452,450,448,446,443,443,450,447,448,541,549,549,551,469,462,468,472,479,464,463,483,479,465,466,467,457,477,482,471,459,477,548,552,545,543,547,550,542,542,543,543,547,535,541,541,541,549,546,540,543,549,535,552,538,551,545,554,543,544,540,545,550,545,553,474,482,478,485,477,479,471,482,474,491,487,599,560,590,573,516,517,526,516,518,513,529,525,522,514,524,519,522,510,493,491,486,483,487,476,476,473,473,474,477,473,478,470,481,479,558,561,541,553,559,547,512,513,513,510,510,512,508,510,509,508,508,513,516,520,515,515,517,511,514,507,512,507,514,507,506,526,527,537,536,540,542,545,532,539,545,546,548,549,543,539,552,547,549,541,556,552,541,540,546,543,544,472,471,469,460,459,476,469,486,444,445,448,440,450,451,453,461,448,440,456,549,547,546,551,556,545,548,544,552,551,553,543,536,545,545,570,556,560,556,556,552,547,488,487,478,475,460,454,478,471,468,470,475,476,535,535,539,536,537,547,534,537,545,552,550,551,538,538,543,542,542,549,538,546,544,546,554,520,525,526,528,524,521,525,527,527,526,525,536,455,479,469,475,482,467,477,481,480,472,482,483,569,567,566,556,568,575,569,562,555,577,570,558,555,565,572,495,483,496,495,460,452,469,534,549,553,541,505,498,489,496,503,513,497,488,496,493,489,487,481,489,487,484,489,491,478,479,486,486,487,489,489,483,491,529,528,527,517,523,524,528,530,522,517,530,523,528,517,526,565,556,544,556,538,544,494,503,514,498,502,499,494,561,546,557,552,549,554,545,552,566,553,536,555,487,491,492,493,488,477,490,487,561,572,566,558,580,567,562,565,575,568,566,558,560,504,489,488,482,484,485,489,490,560,569,564,563,585,573,515,510,511,527,514,522,508,529,539,542,534,535,535,568,558,562,556,558,565,567,573,563,561,558,575,557,564,563,483,498,501,497,494,508,510,491,505,506,504,503,495,502,511,507,518,521,516,514,506,513,508,509,519,507,569,556,555,548,558,552,557,536,503,523,519,476,476,457,457,469,456,463,459,472,465,464,463,462,456,576,582,573,581,574,595,587,523,523,516,529,510,486,493,584,601,587,595,592,584,579,582,599,578,602,589,593,591,593,587,598,473,458,467,471,485,478,471,473,582,585,577,579,583,587,546,540,539,553,546,550,549,540,551,544,532,551,547,540,495,502,490,522,510,514,516,508,516,513,520,515,516,511,509,503,555,491,498,493,506,490,490,500,509,498,508,504,502,502,498,484,490,500,505,508,495,515,503,515,505,550,553,556,553,551,556,555,560,545,548,547,539,535,534,533,527,542,539,545,538,569,573,575,560,571,577,581,516,515,511,504,510,504,500,512,513,518,504,508,460,463,460,458,464,463,469,465,467,455,456,457,462,465,460,466,470,457,463,462,506,508,508,496,498,498,500,502,503,496,513,514,564,575,570,566,565,562,567,564,570,519,517,521,518,540,515,523,508,528,525,515,517,507,523,521,537,525,513,476,480,478,477,478,474,478,476,480,475,476,475,463,481,473,483,485,473,484,599,606,595,604,562,554,551,551,552,491,501,494,487,489,488,495,492,497,490,493,492,497,527,541,521,534,529,528,538,543,534,538,534,530,541,566,547,555,545,557,553,554,543,557,560,559,554,547,561,545,553,477,491,481,480,513,483,488,482,489,512,489,481,444,440,524,517,520,512,521,513,516,525,517,510,516,516,517,521,520,504,515,506,512,512,530,566,558,560,561,567,579,577,551,542,558,535,528,521,525,469,520,530,539,551,546,552,555,552,556,541,542,560,556,550,561,560,571,550,545,553,554,554,552,492,496,492,507,504,489,509,496,494,508,495,506,502,492,508,586,523,531,515,522,524,521,521,515,526,520,515,532,524,521,534,484,490,480,494,482,489,488,483,481,490,494,487,492,487,482,489,570,563,563,566,566,572,569,569,558,568,586,543,517,526,508,513,505,488,474,470,445,447,448,455,452,449,445,453,464,489,465,468,476,554,543,549,558,541,553,565,503,528,515,508,505,513,502,516,517,503,505,505,492,499,497,493,495,500,504,465,469,470,479,475,466,470,469,467,457,463,472,470,474,461,494,482,482,480,479,481,477,483,481,487,530,537,534,543,547,549,529,559,560,559,572,543,548,556,500,510,505,521,526,515,499,509,504,515,508,506,499,507,469,454,470,467,461,466,466,464,458,464,464,459,484,481,485,486,487,490,491,491,495,481,498,494,495,491,493,485,510,508,511,516,507,507,507,507,511,510,507,503,529,540,531,531,531,531,527,529,534,528,534,530,538,539,540,543,544,541,540,543,531,543,539,541,546,544,542,550,567,555,552,546,554,545,545,564,545,498,481,483,482,484,490,488,484,490,484,559,555,564,564,565,555,566,561,555,550,553,555,553,556,563,553,544,555,550,546,545,555,547,554,557,511,505,506,518,508,510,508,509,514,506,570,563,555,556,563,566,545,546,571,484,473,489,481,484,477,466,481,442,434,450,443,464,450,445,438,439,443,432,455,543,547,544,567,575,580,573,575,581,578,549,545,538,549,502,489,499,493,496,495,494,498,483,494,491,495,492,487,495,495,498,491,492,491,492,490,489,479,483,561,552,558,566,561,511,508,518,509,507,510,513,513,494,494,507,493,513,502,464,467,472,459,467,470,465,444,442,440,446,437,452,440,439,442,456,452,455,436,548,553,549,555,543,539,541,538,542,539,543,537,534,540,508,511,517,515,500,510,508,516,510,517,516,519,518,503,551,550,562,577,569,555,558,559,575,578,496,510,502,512,490,512,505,485,495,482,483,486,484,489,488,480,487,488,492,476,470,467,482,478,454,447,439,452,448,468,458,455,457,453,464,448,459,600,594,589,586,581,583,590,590,559,552,542,557,558,557,559,551,559,556,562,554,551,564,551,515,497,493,502,497,495,493,485,499,497,488,492,461,451,459,450,467,457,474,466,472,481,464,551,562,548,559,523,517,516,525,516,535,536,526,531,541,534,531,529,538,515,520,517,511,506,512,515,516,506,506,503,509,508,513,529,525,525,525,535,537,529,526,527,512,517,518,514,519,521,516,520,523,518,519,521,522,535,523,536,534,565,565,561,564,569,565,558,560,563,562,573,559,523,535,530,517,531,525,525,525,528,531,527,514,507,516,506,507,518,516,510,514,510,512,510,543,537,539,538,533,538,536,528,530,538,536,509,514,500,513,512,502,549,560,537,561,555,540,550,536,547,558,561,566,498,517,514,509,508,549,557,562,567,552,562,537,534,531,531,533,536,537,525,528,533,561,558,568,566,562,561,562,572,579,570,556,559,516,529,531,527,541,529,514,523,525,537,523,525,526,525,528,533,513,534,522,533,519,518,519,496,507,499,502,499,502,509,503,506,506,500,484,479,482,479,480,482,481,486,478,483,473,482,509,509,508,506,513,514,508,508,504,506,502,510,506,512,512,536,534,547,542,548,550,527,547,541,544,557,550,545,491,500,494,501,495,497,484,555,569,566,560,569,565,565,567,572,564,572,501,495,493,488,498,495,494,485,484,496,497,500,489,501,485,491,484,495,566,555,593,568,567,585,587,552,507,495,560,577,576,586,576,584,603,582,579,527,529,531,523,519,513,522,529,513,525,528,520,488,490,484,497,493,486,497,499,598,588,592,571,585,590,586,586,580,534,543,536,551,535,535,526,531,537,533,538,540,578,566,579,571,582,563,563,525,524,523,528,524,522,517,516,517,520,543,533,541,544,548,539,541,546,542,537,571,561,549,550,520,518,521,523,516,523,515,566,568,561,578,564,559,576,579,584,557,577,561,503,504,508,493,504,504,495,512,501,508,498,506,490,499,503,506,503,497,495,507,510,500,501,498,531,521,538,532,534,527,527,522,528,532,531,522,534,532,531,521,599,554,552,554,562,552,559,554,557,547,567,563,553,569,551,545,556,551,528,521,533,519,526,528,524,514,516,526,523,501,524,511,514,520,482,477,481,476,484,474,471,483,478,474,477,470,476,477,479,474,485,479,476,469,474,491,495,490,490,484,490,492,496,560,564,565,567,570,566,505,509,515,495,506,503,521,507,505,499,505,454,465,454,453,458,463,454,454,464,470,482,471,461,469,474,482,479,473,476,478,467,473,472,593,601,586,516,510,516,520,531,514,510,506,515,510,518,562,553,557,559,557,557,556,557,553,553,556,552,564,552,561,554,554,561,551,560,518,520,514,519,514,512,490,494,486,486,485,496,488,479,479,482,482,485,477,477,476,472,477,555,543,535,555,551,538,564,495,508,508,499,500,558,564,569,574,574,554,562,522,521,511,518,528,548,554,546,554,568,556,546,521,525,527,479,480,482,484,469,486,468,480,483,487,475,552,554,561,545,546,558,557,554,546,559,560,561,554,557,562,494,506,491,495,492,489,504,489,468,462,468,470,459,465,460,461,457,462,556,551,556,550,545,538,550,556,575,546,548,543,567,556,522,522,554,552,554,555,556,555,554,560,550,548,548,553,562,521,497,515,510,517,523,504,518,520,527,525,529,506,499,506,504,496,510,511,498,502,501,499,500,506,506,492,503,500,502,477,486,479,475,489,480,492,487,495,486,486,470,460,463,455,457,455,458,470,459,468,457,470,495,499,492,503,480,496,497,495,489,493,574,572,552,569,572,572,561,572,550,579,569,570,508,512,529,521,517,519,509,518,521,527,510,517,528,518,478,472,480,473,489,485,476,478,480,485,481,470,472,468,471,475,472,472,469,472,469,471,469,474,467,490,485,491,483,489,491,484,520,524,523,526,523,527,524,519,527,573,573,576,580,571,587,577,578,569,573,536,526,548,532,534,516,532,527,530,544,533,504,512,504,503,514,508,520,501,502,533,528,530,532,528,518,517,550,563,556,547,554,558,553,563,555,551,555,564,554,563,560,557,556,545,522,532,528,526,524,519,509,497,485,488,491,497,486,505,495,536,561,550,557,545,553,564,509,499,493,496,498,491,496,496,506,496,493,492,494,496,496,494,492,495,487,491,496,489,532,536,553,553,552,547,551,560,551,546,550,560,553,549,566,559,482,457,468,457,448,460,468,471,472,459,461,455,458,465,454,459,460,459,459,461,549,540,572,549,557,564,542,549,543,546,557,487,487,493,492,493,490,475,477,483,489,483,497,484,485,490,487,497,586,573,566,578,577,567,586,530,538,518,523,517,517,525,583,580,586,581,585,592,578,579,592,586,578,587,531,539,535,544,533,539,553,551,549,545,549,570,571,568,577,516,507,518,518,505,495,514,506,505,516,506,507,505,502,588,585,589,583,588,597,593,588,588,605,603,600,598,533,528,539,530,527,540,534,540,525,535,526,532,537,524,527,552,560,561,560,562,562,506,498,509,514,503,507,509,506,515,508,504,501,496,564,552,568,567,564,557,550,562,537,551,551,498,504,515,494,508,509,492,499,500,499,499,471,481,473,478,465,483,484,474,469,479,472,477,477,566,550,553,516,512,511,523,517,521,540,545,541,543,549,539,548,542,544,558,552,567,571,560,564,559,553,566,567,563,559,561,568,561,554,519,511,504,523,520,505,514,516,506,506,520,521,541,561,553,565,540,553,563,557,555,542,560,553,540,553,569,543,557,561,477,469,480,480,477,488,476,472,479,483,481,478,494,503,492,495,490,496,500,493,499,496,500,573,567,556,564,562,561,566,566,567,565,566,562,568,568,562,565,565,569,553,552,543,547,549,554,492,500,502,491,493,494,481,490,492,517,482,504,493,497,498,490,500,490,495,502,495,498,570,573,568,502,514,512,504,497,519,466,454,505,502,500,500,504,501,500,513,553,549,481,493,486,490,488,490,488,484,486,479,450,450,439,452,447,456,440,438,448,436,441,455,450,445,443,508,525,520,526,523,521,527,529,528,520,517,521,523,528,524,524,531,535,529,535,564,566,576,571,578,566,529,537,525,533,514,522,522,525,522,527,500,488,603,600,606,568,601,590,604,589,573,553,557,559,552,562,563,555,563,555,561,524,531,528,522,539,520,526,523,526,535,522,520,507,512,507,508,510,506,512,511,504,504,496,499,504,503,505,496,500,501,484,475,472,476,486,481,472,484,482,479,474,468,460,467,460,465,468,560,563,562,550,560,557,562,565,549,558,558,576,558,550,556,558,553,560,546,549,541,554,489,490,476,483,500,476,481,489,483,559,554,557,553,553,558,551,563,566,559,558,563,558,551,561,556,545,553,547,568,553,547,558,507,514,507,503,511,504,507,499,492,507,506,502,506,499,528,522,498,502,508,504,499,482,481,471,476,471,469,477,475,473,486,487,486,475,478,475,478,480,481,482,588,599,582,593,595,614,596,597,591,553,559,565,560,552,554,550,551,562,558,492,499,494,493,494,497,507,493,491,493,491,499,498,492,507,501,504,562,566,569,561,565,561,562,575,559,543,559,558,565,498,509,518,506,517,498,510,509,498,495,502,491,508,490,499,501,494,492,500,559,554,553,548,551,551,555,559,543,552,544,556,512,524,525,520,528,524,527,524,509,516,517,510,512,565,562,555,548,551,552,563,563,555,562,559,531,522,534,522,519,516,524,526,522,518,547,542,548,552,546,540,536,549,572,577,563,571,558,558,520,522,510,475,477,479,487,476,484,485,485,492,484,481,482,484,486,484,488,486,495,487,487,493,492,485,487,492,489,487,484,481,479,481,484,479,487,471,475,482,475,485,473,458,468,462,473,459,472,467,457,461,450,454,464,463,468,460,454,457,459,466,468,460,459,459,467,465,489,489,486,492,525,536,541,542,534,541,533,541,525,528,559,566,547,554,561,562,521,530,524,532,516,523,527,531,526,528,525,549,496,504,505,495,502,505,502,506,498,511,549,556,560,554,560,546,563,553,502,493,498,489,495,496,484,477,483,487,553,570,577,557,573,566,570,562,564,564,481,488,490,495,479,490,490,487,498,472,472,470,466,474,456,469,476,462,463,470,468,462,463,473,460,472,558,555,560,551,547,561,493,519,511,462,473,467,465,476,472,470,458,462,468,470,470,467,443,450,448,446,512,515,512,513,506,512,554,565,560,567,562,561,556,568,570,559,571,573,562,528,507,509,528,516,520,518,499,512,514,519,487,486,488,485,490,491,489,486,487,489,488,492,486,484,487,481,484,508,514,507,510,504,509,509,509,514,517,513,511,515,510,502,513,508,509,562,563,570,557,558,559,560,566,562,554,518,513,512,527,505,518,510,523,522,511,510,474,484,480,477,475,481,477,477,483,477,476,474,483,479,474,476,481,477,458,461,457,462,457,455,455,462,456,459,450,544,535,547,550,545,551,548,552,548,550,542,547,538,561,544,551,566,569,578,579,571,568,564,568,575,574,566,558,572,575,561,567,542,541,537,535,531,529,553,549,563,566,547,567,547,553,549,562,542,557,559,568,568,545,563,503,525,521,514,505,524,512,509,506,510,502,513,511,519,512,506,571,567,559,586,558,567,553,557,555,570,563,565,567,561,565,562,548,581,570,569,494,495,480,506,493,497,488,497,514,508,502,502,471,456,464,465,461,464,455,559,553,550,545,545,552,558,543,556,488,498,487,488,500,481,502,489,495,494,494,445,434,447,440,438,439,446,450,439,434,534,543,539,544,540,544,528,530,534,536,550,544,539,531,539,537,541,542,491,489,508,483,502,503,496,496,486,489,499,524,531,534,523,532,527,537,522,532,532,532,533,524,526,539,536,533,529,527,534,531,532,528,527,561,565,563,552,547,553,546,564,555,554,550,557,548,547,545,552,555,552,488,497,499,503,496,493,505,490,504,504,501,505,517,509,525,540,539,548,543,545,551,534,536,505,495,511,499,571,570,560,566,580,550,547,555,571,578,574,569,565,571,577,594,565,569,568,562,574,498,490,490,499,544,556,551,539,563,558,546,557,555,554,556,551,553,548,558,552,566,522,521,517,511,528,529,512,525,525,519,523,521,510,516,517,507,511,521,503,499,496,501,494,508,493,499,498,501,497,502,478,485,475,480,483,487,486,502,496,501,505,502,507,496,504,533,533,531,554,559,564,552,554,568,492,479,493,486,473,481,480,469,482,470,465,490,488,483,479,485,527,519,528,517,527,521,520,528,530,532,522,532,541,537,542,504,522,514,562,573,576,568,570,566,558,566,559,576,572,568,496,503,493,499,477,470,481,475,467,472,476,483,473,470,471,478,563,565,561,555,549,560,550,475,484,477,477,479,472,468,470,474,467,474,472,477,479,474,472,471,566,548,586,556,578,563,552,561,501,509,513,506,506,503,556,547,551,559,552,552,551,499,507,520,526,515,524,519,519,512,489,500,495,501,501,481,493,501,493,492,486,490,494,491,483,480,478,492,495,494,498,504,487,492,480,472,482,475,478,484,481,481,479,477,477,478,469,482,482,483,502,507,503,503,557,550,559,551,553,538,540,535,539,538,515,527,523,517,524,520,516,519,515,533,525,522,536,523,531,517,527,522,533,525,582,582,590,577,587,582,583,591,592,582,601,581,537,531,540,528,531,539,532,538,534,535,535,536,529,530,519,521,520,523,518,519,515,522,520,519,517,516,549,544,556,541,533,549,557,552,545,544,545,544,517,506,514,509,523,509,507,517,516,510,505,558,558,558,552,563,558,556,561,567,564,535,550,542,539,502,497,507,508,513,510,503,508,506,505,552,561,562,557,575,559,579,574,561,576,567,509,515,522,505,507,517,520,454,463,463,460,466,454,417,439,445,447,444,419,447,440,426,438,435,447,428,546,551,527,541,530,535,531,532,546,537,543,537,543,535,528,552,533,542,547,558,547,547,498,473,479,478,473,469,464,478,439,443,434,429,434,439,437,436,443,453,452,450,438,444,450,448,441,454,449,452,556,554,547,555,550,546,552,556,564,549,563,548,556,556,563,543,547,541,546,547,551,492,508,495,498,505,500,602,587,606,595,594,608,593,583,610,608,548,544,550,545,538,581,558,577,515,523,528,525,520,526,524,528,532,529,530,523,538,516,522,480,482,481,482,487,485,490,488,492,483,481,489,492,496,486,487,486,580,572,564,577,562,560,582,570,572,561,569,582,556,510,496,505,500,557,545,551,549,535,554,563,551,549,542,543,550,475,483,482,482,469,498,474,480,484,483,482,491,484,485,483,575,522,524,519,504,515,526,511,530,511,482,471,467,479,464,468,495,499,498,499,495,488,488,558,553,562,573,559,533,526,527,528,534,530,528,520,505,505,501,509,488,492,500,496,494,555,543,552,563,542,554,555,558,552,548,546,552,561,518,549,548,542,552,537,545,543,547,548,540,536,546,543,537,550,531,539,540,540,576,570,564,570,562,575,572,564,557,567,557,567,576,510,499,512,505,522,521,517,519,522,512,521,552,500,500,504,539,560,552,555,544,571,550,554,559,551,562,550,552,557,555,563,507,520,505,509,508,504,504,500,507,555,551,551,544,542,548,556,548,549,561,559,559,551,551,555,559,515,517,509,525,518,511,484,482,487,465,463,460,462,470,464,462,467,477,460,464,475,560,559,562,552,568,575,554,566,565,571,554,556,539,561,575,559,553,562,545,540,504,512,503,508,509,501,568,561,501,514,495,501,511,503,496,502,502,492,513,506,485,485,494,498,494,492,488,487,488,484,491,494,491,489,491,493,495,529,533,525,548,537,542,540,523,530,535,535,545,519,525,516,514,531,518,514,520,518,509,585,589,586,593,578,595,583,587,586,580,600,534,544,536,541,544,545,537,528,544,547,516,502,541,550,540,544,548,554,550,471,476,460,456,473,470,467,464,457,471,462,463,463,537,532,531,539,534,534,537,523,525,536,523,536,536,536,542,562,560,558,560,570,563,563,571,568,561,559,569,572,514,512,510,507,514,509,500,508,549,543,540,532,543,533,538,540,542,549,549,544,538,544,534,549,537,545,548,540,544,551,536,497,504,511,501,511,516,517,519,520,516,514,523,511,527,522,578,566,590,576,564,574,574,578,571,568,592,582,569,575,571,582,572,589,529,544,529,540,537,529,539,519,540,535,526,518,518,515,516,519,517,513,520,570,568,569,552,566,572,500,510,524,474,479,481,478,486,477,476,485,478,481,514,522,513,510,513,513,517,505,517,518,537,548,539,537,546,545,538,542,533,546,541,547,530,518,510,500,514,502,501,508,510,509,506,508,506,554,548,558,534,529,531,536,539,531,547,549,559,562,554,555,565,561,555,552,557,551,550,549,550,549,482,496,489,491,502,497,505,494,506,508,502,503,508,511,504,512,529,548,542,527,554,528,534,522,537,547,528,476,472,472,482,475,486,482,473,478,473,479,482,483,475,561,561,566,582,561,475,477,483,466,488,481,476,471,455,478,485,541,534,535,539,541,544,540,525,539,537,539,542,540,531,544,549,540,499,543,565,538,531,504,505,494,490,502,502,501,503,506,499,509,499,492,487,508,512,505,512,512,516,541,549,542,550,546,543,547,561,527,546,545,553,545,539,551,544,491,488,486,494,489,488,478,492,493,493,492,495,488,494,487,489,477,572,583,579,591,576,579,529,535,530,535,534,541,527,533,535,529,534,533,545,521,519,523,519,525,519,523,520,539,543,529,538,534,530,532,538,536,535,532,537,530,525,534,532,532,541,533,542,522,521,516,520,525,523,531,525,520,518,524,527,520,526,526,523,556,551,560,565,553,555,554,554,559,551,519,529,520,535,522,516,464,505,526,524,524,521,520,525,522,521,515,516,511,521,515,523,534,529,529,536,519,527,523,530,528,532,536,529,532,525,527,529,531,530,524,567,549,562,530,521,535,531,529,530,530,527,525,531,525,552,563,573,551,560,523,524,513,520,522,522,521,563,567,569,575,567,577,561,562,564,570,573,580,569,506,460,455,453,458,462,453,455,465,460,454,450,455,463,450,451,459,466,456,446,453,454,456,464,549,560,555,558,552,565,560,552,555,564,553,553,561,540,556,552,550,554,555,541,556,539,500,516,509,510,502,499,495,495,493,494,496,544,547,540,543,547,542,553,533,538,545,540,546,572,563,563,571,568,555,559,487,498,503,502,498,482,499,496,507,494,502,491,496,493,563,579,556,563,561,557,579,573,560,564,549,564,548,500,507,493,509,498,515,469,464,464,462,468,471,475,463,469,460,468,468,470,468,458,468,451,468,469,450,466,466,461,459,460,466,470,459,467,459,543,560,572,561,482,479,488,498,492,499,487,492,488,491,483,487,490,563,541,561,540,554,562,556,558,558,549,565,557,501,505,495,504,518,514,523,516,529,525,515,523,517,520,516,518,531,513,513,519,514,530,523,523,587,597,590,588,593,592,582,560,550,551,553,551,551,553,550,552,539,552,545,561,553,556,560,557,544,523,484,477,477,477,480,481,483,478,481,473,471,472,478,571,549,571,544,479,477,484,481,476,481,483,474,479,562,559,551,559,552,562,552,561,566,551,561,549,555,555,550,563,551,546,507,497,492,506,508,498,504,509,480,503,474,458,467,466,467,461,466,468,465,464,471,471,469,467,465,459,460,472,466,464,470,469,464,468,468,541,552,550,560,507,512,502,494,508,504,505,507,516,515,526,497,498,523,508,499,499,477,486,486,488,474,479,486,472,471,477,481,475,468,476,474,469,480,471,490,489,488,484,487,485,486,496,585,570,557,565,544,574,570,566,570,570,573,572,578,566,504,490,506,491,500,492,501,488,470,463,454,471,436,569,566,574,569,563,576,589,566,580,578,569,574,579,535,530,521,537,502,509,502,497,506,508,492,503,502,498,562,558,568,559,550,566,548,570,561,579,560,493,493,496,501,492,493,495,496,493,495,502,490,553,559,484,510,489,555,555,549,555,542,551,556,553,544,541,482,498,504,499,500,490,494,495,496,494,493,496,498,495,501,541,533,538,533,484,477,491,475,486,488,480,476,487,480,457,428,444,434,435,434,431,436,435,433,432,531,532,531,536,537,533,568,537,519,534,534,522,516,513,520,510,512,511,506,512,540,548,547,542,547,539,539,529,536,556,569,559,571,562,539,556,547,549,563,562,574,572,561,561,550,556,550,551,562,557,560,520,509,526,514,553,564,578,554,581,559,561,537,545,549,556,560,566,557,508,512,510,514,512,513,503,503,497,507,510,519,508,504,508,499,561,576,599,561,491,486,483,488,494,480,472,488,490,551,563,548,553,540,560,556,547,554,551,550,564,549,557,562,556,545,565,566,564,557,517,523,514,507,515,522,510,507,523,521,515,487,483,484,493,475,509,504,499,505,504,506,499,503,511,518,502,504,501,496,501,503,506,560,568,566,558,572,567,555,568,559,571,554,545,542,558,544,550,543,547,542,502,512,510,499,499,502,518,501,506,499,511,502,510,500,492,507,511,500,516,512,503,504,509,463,466,464,472,457,468,463,461,463,454,459,457,461,559,558,566,557,550,505,514,507,521,528,515,506,532,502,511,512,506,510,507,509,529,462,465,473,462,468,469,445,448,439,456,449,500,496,498,501,498,497,505,494,514,505,503,548,542,551,555,554,548,547,525,512,524,528,521,527,515,521,527,522,521,518,522,588,587,595,596,601,575,598,592,551,531,521,530,539,527,530,530,518,532,531,539,525,532,532,527,532,500,507,494,494,493,508,481,500,490,598,591,598,600,588,581,588,597,589,584,597,560,549,562,520,512,504,512,512,516,511,509,481,483,481,479,481,461,455,476,459,468,472,464,468,462,461,471,459,468,459,463,472,466,451,444,450,449,453,449,450,454,475,483,469,479,470,467,482,468,555,553,557,558,563,559,573,560,521,520,517,528,516,516,557,535,546,551,550,548,547,548,557,555,544,551,556,531,543,526,528,539,533,530,527,532,537,534,528,532,532,533,529,552,555,556,564,552,551,547,556,556,556,555,496,487,504,506,501,506,502,504,505,502,498,498,501,534,535,531,530,531,537,539,546,559,560,551,556,553,552,550,542,565,548,560,511,505,514,511,517,512,516,513,509,513,511,511,517,502,518,512,504,507,500,511,511,511,503,510,499,502,503,510,508,550,549,550,545,549,553,554,538,545,554,544,544,536,534,547,536,542,544,542,550,486,514,504,500,499,492,513,503,568,513,519,519,523,515,548,538,541,550,542,545,549,532,545,541,544,540,540,531,576,566,564,565,553,573,570,560,500,497,496,497,494,499,579,560,492,511,503,500,506,502,500,491,498,505,495,498,491,462,462,458,467,475,461,467,483,464,467,470,546,555,556,572,558,573,574,586,566,552,579,564,471,472,467,479,470,521,515,525,521,525,524,523,525,519,514,512,521,513,514,523,512,524,521,515,522,514,518,526,517,515,516,518,524,525,519,518,524,519,525,550,533,546,542,544,545,546,543,541,548,558,557,546,555,556,549,559,548,556,559,548,559,556,550,494,495,515,511,514,500,490,509,506,495,522,524,515,512,517,515,545,547,542,542,475,478,477,474,469,485,468,470,479,466,483,462,469,528,537,537,540,541,537,530,538,535,543,540,553,541,529,542,537,551,491,484,487,477,485,490,496,480,486,488,489,491,489,485,480,496,491,496,503,593,576,584,592,591,591,552,548,550,552,548,544,547,558,551,548,555,535,554,510,510,486,487,483,487,485,488,485,486,495,490,495,491,491,493,486,493,537,524,526,533,534,523,559,542,543,556,550,555,566,543,563,543,546,499,504,498,485,493,482,492,496,487,496,492,474,490,492,475,583,572,574,580,576,563,581,576,585,574,575,577,538,534,538,533,522,538,524,534,532,526,525,527,521,528,524,525,524,524,522,520,535,528,542,533,528,540,530,537,534,468,484,484,483,482,488,482,481,487,487,491,485,498,497,500,498,496,494,484,496,553,552,558,558,565,548,555,553,560,561,550,560,544,546,552,556,555,554,546,548,542,545,545,554,548,554,557,554,544,546,486,487,492,478,499,485,485,488,494,488,492,494,483,484,492,570,573,579,575,564,572,593,488,486,482,500,477,564,549,547,549,542,549,560,565,547,561,542,556,552,556,550,568,556,557,564,547,557,496,503,490,496,497,488,486,559,566,522,523,528,532,536,512,510,509,517,521,513,514,514,507,510,504,510,511,505,505,509,522,529,535,524,530,530,534,525,527,535,534,533,524,528,522,532,522,529,532,526,534,541,544,544,536,534,530,548,544,539,541,536,538,549,540,549,498,504,508,506,504,505,580,602,591,615,599,599,579,541,540,543,538,536,532,532,527,565,554,563,547,563,568,564,558,555,568,553,559,555,565,560,555,561,558,521,523,523,523,518,523,523,522,540,546,536,542,540,539,540,535,530,536,547,542,554,569,551,546,548,556,551,561,480,478,482,484,471,469,471,470,459,467,468,470,578,574,559,581,570,557,492,511,498,501,504,484,527,519,511,492,511,497,486,508,494,517,494,493,490,481,482,481,466,476,482,468,474,477,483,487,564,548,549,557,550,554,556,561,561,548,554,484,488,492,484,480,490,498,487,514,495,498,526,519,518,521,529,516,528,521,517,521,521,532,515,526,519,512,518,514,519,567,569,568,581,566,570,568,561,576,563,516,520,523,515,519,524,531,517,534,524,497,502,502,499,499,501,503,505,478,478,476,486,484,475,483,487,469,480,478,479,474,479,459,464,463,465,465,458,457,452,463,469,468,462,465,560,540,555,539,541,548,551,552,541,558,545,554,549,544,550,547,544,546,519,513,511,505,513,509,508,511,549,552,563,560,560,567,553,558,551,553,549,554,528,536,532,538,529,535,542,530,535,531,528,537,527,524,487,474,482,473,477,475,477,474,478,477,481,475,475,493,492,484,496,490,487,485,489,487,496,491,503,486,483,492,570,573,567,563,573,552,567,582,516,523,519,522,521,522,530,532,526,489,493,487,490,486,489,494,493,493,489,485,492,493,479,481,474,470,480,476,540,535,541,554,567,552,564,569,565,545,551,498,498,508,504,505,503,501,510,510,497,506,489,499,592,576,562,576,569,565,581,500,474,503,489,492,497,590,570,581,577,590,590,587,599,582,571,575,583,595,577,541,543,539,542,544,536,538,539,536,542,542,544,541,539,538,527,528,530,533,537,522,524,522,528,532,523,524,527,523,527,522,565,555,555,554,558,553,554,561,563,555,547,559,553,557,503,489,496,492,504,500,497,488,485,478,498,492,469,452,468,455,461,467,453,457,452,468,539,537,541,539,538,536,545,544,536,542,547,553,534,547,537,540,551,547,558,536,543,548,539,554,526,531,534,529,534,521,532,527,527,531,538,531,528,566,561,552,557,550,555,502,498,494,494,495,497,502,502,496,499,506,515,508,506,512,504,511,515,508,513,526,510,517,547,532,535,529,528,528,529,530,531,526,527,531,525,528,530,532,527,525,547,569,556,545,551,556,551,506,483,497,496,500,493,497,515,497,503,495,503,462,449,448,450,455,440,456,453,491,503,509,511,514,501,505,512,510,516,502,539,531,527,533,530,534,530,550,539,535,540,554,536,554,535,542,544,540,543,550,543,554,546,538,543,544,545,506,546,557,554,571,575,561,572,562,560,546,557,572,499,517,511,508,469,468,465,465,470,472,468,468,468,467,465,472,464,463,460,458,455,465,456,456,458,456,463,553,559,560,570,559,570,557,554,555,498,500,477,490,489,497,504,575,583,574,576,581,573,564,575,572,518,522,524,518,514,520,515,531,524,513,525,519,520,588,584,585,572,570,565,589,583,579,587,582,584,576,576,530,536,539,529,539,540,536,535,535,539,530,534,546,566,563,551,567,526,516,512,523,522,519,521,506,567,570,571,586,552,567,572,571,524,519,527,512,526,515,518,490,492,493,487,492,491,479,483,490,486,485,487,479,490,467,481,481,483,476,470,477,478,473,471,480,489,491,505,483,503,493,497,501,564,570,574,581,582,577,563,591,577,570,523,517,509,526,520,526,520,517,492,493,483,486,478,486,486,483,485,487,490,490,486,479,483,450,446,441,459,449,453,445,443,455,447,485,474,476,471,484,472,464,470,484,589,583,575,583,574,601,590,552,563,567,491,477,490,488,475,468,478,486,482,477,557,545,546,539,538,552,551,524,550,536,542,550,538,530,533,541,536,536,541,545,556,539,538,547,548,485,486,472,480,477,474,500,495,501,499,502,493,502,500,491,546,541,536,542,541,538,540,537,530,528,530,531,532,530,530,533,528,528,532,520,549,553,550,561,545,563,541,550,553,560,548,562,551,536,492,501,501,497,506,508,492,495,499,501,448,454,466,461,459,464,463,454,457,467,456,457,459,453,450,450,489,493,485,486,492,480,489,504,508,511,505,537,535,519,530,526,524,530,529,527,534,526,536,538,530,529,528,528,538,534,531,532,563,548,542,541,530,542,544,553,546,549,542,560,527,533,547,555,528,550,498,498,492,490,495,497,478,500,487,492,522,494,560,547,551,551,558,553,565,560,559,561,556,544,558,552,550,540,563,534,555,514,496,494,497,510,495,487,497,477,499,490,477,448,456,459,453,450,461,456,462,450,461,496,482,491,499,485,481,488,492,487,483,485,484,571,567,565,567,560,553,560,571,576,560,581,576,499,503,507,510,501,499,496,501,465,466,465,466,470,463,463,466,460,468,472,469,443,444,451,436,436,436,440,428,431,447,442,442,435,530,527,533,527,523,531,530,528,523,522,527,523,517,521,529,522,519,518,526,521,518,538,530,531,528,539,536,531,533,535,539,543,548,550,551,547,544,548,552,541,541,544,551,542,541,546,539,540,541,542,540,522,528,524,524,510,520,514,519,536,533,524,513,509,514,511,516,518,519,540,538,537,553,528,528,527,542,534,504,519,507,511,504,513,507,519,512,508,500,510,505,504,506,514,503,552,556,564,563,564,561,562,489,486,538,535,537,532,530,544,532,530,529,538,536,539,543,526,535,533,543,532,539,533,535,537,540,549,537,535,546,543,546,538,535,545,543,547,503,519,511,509,526,529,531,532,524,528,487,488,502,495,489,563,586,547,557,517,524,514,516,514,517,516,489,487,490,490,487,481,483,479,484,475,481,486,486,480,483,493,491,489,482,510,515,517,514,512,546,532,552,548,545,548,536,543,526,545,543,541,533,546,472,475,483,481,476,474,476,479,482,481,460,526,517,510,529,538,526,540,544,537,534,532,526,534,535,537,538,533,558,561,574,560,573,559,550,560,561,570,560,510,521,521,531,519,511,534,524,524,528,517,528,578,589,582,591,582,550,555,547,554,558,545,552,492,488,562,552,556,556,561,561,564,568,564,568,567,556,567,557,558,483,483,472,481,483,477,478,471,469,476,482,476,477,476,474,560,566,561,545,564,480,470,479,479,465,492,488,477,475,494,477,490,484,484,474,480,483,474,490,484,478,481,485,486,467,480,477,482,493,481,477,472,484,561,552,556,563,563,576,571,566,519,516,517,520,522,515,514,524,518,518,527,516,517,514,517,522,526,538,525,522,525,527,520,523,580,569,571,572,573,585,585,583,572,519,526,523,521,522,532,522,573,579,576,589,575,593,588,587,528,539,543,538,527,537,541,539,534,557,527,542,543,550,550,546,553,557,461,488,487,484,494,499,473,479,486,482,474,483,475,497,499,500,503,498,488,500,499,502,500,495,505,527,551,540,549,542,543,544,545,485,473,474,468,464,479,482,473,475,481,568,569,551,562,571,588,513,516,507,515,513,506,521,503,509,506,529,526,559,544,563,562,551,550,551,560,543,561,565,561,559,567,560,567,560,568,478,482,478,541,537,540,548,540,546,541,528,540,543,539,548,552,539,544,486,482,500,493,491,478,488,488,548,557,562,554,554,484,489,494,483,475,505,499,494,485,551,551,555,562,542,554,564,466,475,472,467,519,527,533,528,531,528,533,533,530,537,535,522,529,571,571,569,567,585,567,549,549,557,547,483,497,492,490,497,490,496,500,495,496,498,501,512,502,495,491,506,513,502,492,511,501,485,495,504,494,495,499,570,552,567,562,573,551,563,575,504,505,505,498,511,507,507,498,516,520,508,502,507,501,536,539,532,535,538,539,535,535,539,535,512,510,514,510,506,510,510,515,508,509,515,519,509,547,545,547,551,547,555,559,552,553,559,541,533,544,549,551,540,547,546,555,555,552,549,499,509,509,513,496,496,500,499,494,499,515,501,549,555,542,561,564,584,555,576,554,562,553,540,548,569,573,518,526,520,520,530,533,520,511,540,524,519,530,514,529,519,528,523,532,515,525,526,515,495,489,497,494,491,501,498,501,490,585,584,585,575,588,582,582,528,535,527,529,542,528,533,527,528,535,526,534,536,524,590,588,546,561,548,553,555,568,550,553,545,557,557,550,551,515,520,516,514,506,499,512,523,504,521,509,527,515,498,462,469,468,464,452,465,461,461,459,464,459,463,442,452,455,452,445,454,453,444,449,467,454,456,457,464,455,461,450,448,457,453,455,473,584,593,571,562,568,578,570,578,583,563,542,526,532,539,546,542,572,574,566,562,544,555,565,558,508,502,496,511,485,514,474,476,473,470,472,470,468,465,472,472,568,545,550,564,559,491,491,493,484,484,491,484,493,482,492,487,489,488,489,487,481,486,487,493,482,487,484,484,533,534,537,532,531,531,542,527,525,536,545,534,526,529,535,561,501,517,509,511,515,508,514,510,509,520,505,510,515,503,495,511,512,512,498,508,506,508,506,506,547,540,530,547,540,534,532,536,545,497,513,514,509,509,515,507,570,559,557,575,533,512,508,511,501,501,508,494,499,512,504,501,483,478,492,481,486,482,479,479,488,478,472,484,483,474,492,486,460,462,467,455,471,461,465,472,457,463,503,490,494,492,505,497,502,500,497,499,489,497,494,491,509,517,509,507,504,515,503,508,505,511,513,512,533,530,530,527,530,531,532,538,532,526,535,538,546,542,536,544,543,545,545,549,544,538,557,541,546,521,519,504,521,516,527,524,522,521,521,529,525,516,517,527,527,516,507,479,482,479,485,477,479,486,487,484,478,476,488,474,477,488,476,463,464,465,463,457,462,464,465,458,461,460,458,575,529,534,545,541,549,552,557,549,544,543,550,493,489,486,485,486,479,493,490,491,491,491,496,477,484,432,442,441,448,438,433,444,442,437,444,439,422,435,443,440,435,435,433,436,529,535,547,547,544,531,544,549,563,558,561,573,553,563,567,570,504,508,505,504,497,501,496,519,527,535,537,530,533,530,531,526,532,532,525,529,532,533,530,538,542,526,527,534,531,529,531,535,537,543,533,540,539,544,538,540,547,532,544,536,539,542,531,545,540,538,534,535,538,540,553,551,555,492,487,491,485,492,495,484,489,489,491,479,557,567,563,555,550,560,559,562,562,557,553,562,543,546,548,547,545,548,553,553,552,551,545,551,491,496,511,513,496,507,505,508,516,503,498,506,492,596,612,600,606,596,611,606,603,586,584,601,605,593,592,603,558,561,522,519,527,521,514,528,536,510,532,522,532,523,527,525,523,532,497,499,501,504,502,503,509,503,496,500,504,497,482,485,489,477,483,476,479,488,481,519,511,525,515,509,507,507,516,507,515,509,513,512,513,572,562,571,565,561,503,495,481,477,490,488,489,485,559,561,584,592,589,591,566,583,566,487,480,479,481,467,472,469,489,478,470,526,532,523,518,517,516,516,525,517,516,524,518,516,526,521,529,524,527,515,516,524,525,520,522,543,533,531,531,543,545,535,543,536,540,544,541,553,545,544,539,554,540,552,555,547,537,530,549,539,495,498,512,504,509,500,510,496,508,506,506,508,566,564,577,574,566,567,550,557,489,492,512,506,496,481,493,493,504,492,507,493,492,582,577,579,592,576,592,576,572,582,520,537,556,562,558,560,517,528,515,516,497,508,478,507,498,520,508,504,518,509,513,505,473,478,482,477,482,486,489,484,487,478,501,508,510,507,516,514,510,512,511,507,508,508,514,511,511,513,558,562,561,557,559,561,564,570,557,557,577,565,564,562,525,502,504,502,506,514,482,481,481,488,480,475,482,471,478,485,473,477,474,479,478,478,481,482,484,484,491,486,578,576,570,586,580,563,554,589,569,570,574,584,483,488,488,477,485,478,479,469,497,541,552,544,536,553,544,538,536,547,551,542,545,545,551,554,550,503,510,503,492,496,493,487,493,500,495,502,492,439,428,443,443,433,439,439,437,479,483,485,497,473,488,546,543,534,534,540,544,534,550,534,557,556,565,551,560,553,553,554,499,508,510,520,517,505,503,498,528,504,506,503,475,450,442,459,451,446,460,450,449,487,490,502,483,489,480,482,494,499,540,538,543,546,532,536,541,528,541,545,543,557,528,554,546,545,550,538,560,547,541,550,551,532,540,535,551,547,479,488,485,485,468,469,473,469,486,467,480,477,490,494,500,492,492,497,496,501,499,492,555,537,551,545,548,553,542,558,542,548,547,542,545,547,510,503,519,507,512,512,515,499,550,548,549,554,551,551,551,548,550,539,552,551,551,547,549,548,521,519,513,515,517,514,528,523,514,520,515,514,523,513,524,515,523,512,521,515,544,543,548,558,543,544,544,572,568,574,566,563,568,565,561,569,562,527,531,534,516,522,535,498,504,508,503,500,505,499,509,498,499,496,500,511,504,501,503,501,508,506,467,471,477,467,475,480,484,474,470,470,466,467,427,431,423,444,443,444,442,443,434,430,441,436,447,434,434,474,477,479,469,481,483,486,478,485,497,505,546,540,539,548,552,550,542,544,555,543,540,522,523,516,518,521,519,515,525,528,514,591,592,573,588,585,589,600,605,579,539,534,532,541,531,534,511,534,523,528,527,539,532,541,497,495,513,502,562,555,567,564,547,568,550,565,564,542,512,452,465,453,455,450,457,455,441,458,458,463,449,447,455,449,455,535,538,538,537,540,537,540,540,545,539,534,522,516,527,519,519,528,521,523,526,521,527,525,522,535,524,533,529,542,547,538,536,540,548,544,545,547,538,550,538,544,547,544,543,505,510,508,501,509,513,507,494,515,520,520,521,519,514,510,520,512,521,518,518,517,514,581,566,594,565,580,533,539,529,530,525,524,529,585,601,588,593,545,554,545,553,543,547,554,547,558,492,496,511,492,497,494,497,505,490,521,513,512,521,504,511,548,537,551,510,543,534,532,538,531,533,527,531,526,533,563,558,574,547,545,503,490,493,494,490,493,485,489,488,483,494,481,481,480,485,478,481,490,484,483,483,485,481,492,488,488,583,573,564,559,562,569,570,567,572,547,510,513,504,511,508,518,517,510,536,538,539,540,535,538,533,558,567,557,555,561,558,560,553,499,503,496,496,491,505,504,490,507,497,451,446,453,447,547,571,551,558,553,555,552,566,552,548,556,570,564,552,570,563,552,564,555,567,556,509,509,525,507,528,518,518,517,525,519,518,524,524,521,531,516,530,473,486,491,482,518,506,512,505,501,513,516,554,546,554,551,556,560,512,518,515,509,509,508,508,505,485,482,490,479,486,476,479,479,482,461,458,467,456,454,456,470,460,463,467,463,556,535,550,552,556,543,477,469,475,467,459,468,488,471,468,461,478,466,471,469,471,476,474,489,475,474,474,551,543,563,544,560,565,546,491,487,477,460,468,478,478,484,478,495,481,454,452,446,444,452,451,452,452,459,450,544,549,565,559,569,559,550,556,549,557,555,554,550,555,563,561,549,547,546,542,530,548,552,507,494,501,499,497,496,516,506,513,516,510,502,502,508,502,493,503,503,503,561,552,558,557,558,570,553,487,493,501,504,516,500,506,486,485,496,553,554,482,504,497,491,496,499,503,489,503,495,498,491,546,551,539,535,539,542,538,554,548,557,546,532,543,538,511,522,518,557,541,543,543,542,538,542,544,542,558,506,499,508,507,494,503,503,494,533,540,538,548,543,550,545,575,573,561,567,574,577,558,558,558,564,572,561,575,531,533,534,535,535,548,533,539,547,541,539,532,537,533,504,506,507,504,505,503,557,554,552,554,557,552,545,552,559,551,550,548,536,533,543,538,538,518,517,519,524,512,517,517,519,513,546,544,545,547,551,554,552,559,548,553,552,554,549,551,549,549,549,553,552,545,552,553,549,542,549,553,554,555,552,551,552,554,554,551,551,546,496,506,501,502,493,498,506,502,454,449,445,452,453,459,455,442,460,472,466,474,482,455,470,572,602,549,555,554,551,553,556,546,548,535,522,524,524,529,523,535,523,494,495,486,501,493,504,503,506,497,591,609,590,599,607,562,556,559,564,556,554,550,553,561,549,559,530,530,524,523,512,526,502,508,509,508,504,510,504,507,505,507,503,507,487,483,489,489,475,460,465,456,456,457,462,464,463,461,450,455,468,457,474,469,467,476,474,483,476,468,589,547,543,538,543,551,539,542,541,541,550,553,539,541,535,537,531,549,536,532,542,529,533,537,575,568,572,577,570,570,506,514,521,517,477,484,491,484,489,485,491,491,466,475,473,473,472,441,453,459,446,457,459,454,476,482,481,482,491,489,486,488,490,544,556,541,546,551,553,547,549,540,550,546,542,556,545,550,541,550,553,549,539,548,545,523,531,537,523,533,529,529,473,497,496,500,484,495,498,496,495,487,487,480,485,491,492,488,492,525,522,521,519,524,521,525,566,567,566,548,563,562,550,551,555,553,548,558,552,555,569,475,471,489,482,476,480,486,526,517,522,520,527,526,522,526,522,519,522,528,522,523,521,527,543,524,533,537,530,534,537,532,535,537,533,538,542,544,540,540,544,517,507,503,492,503,511,504,482,562,558,563,576,561,536,551,563,549,565,546,508,516,505,504,501,506,508,454,456,483,477,484,479,484,559,563,561,563,550,546,564,562,471,474,476,476,482,488,475,478,477,475,490,477,471,481,481,481,472,470,481,480,469,491,487,484,489,479,554,569,574,575,566,557,505,502,508,504,505,499,502,506,500,513,507,579,600,507,525,523,531,512,521,548,556,516,539,509,510,542,524,493,492,567,571,558,568,561,573,556,561,556,557,527,516,523,518,519,520,528,525,525,531,518,525,527,513,512,529,517,508,520,507,511,515,513,516,517,514,513,524,508,519,501,499,508,499,502,506,506,503,496,501,478,477,467,486,479,480,478,477,483,476,482,490,484,478,485,490,485,514,524,505,512,520,505,508,561,565,559,568,564,561,499,500,512,499,510,507,504,499,489,509,510,456,467,462,460,449,476,477,472,481,474,482,484,482,481,472,562,568,568,558,571,491,492,495,496,508,498,506,492,495,518,498,501,498,518,465,469,478,473,479,467,466,471,538,538,540,527,539,537,545,537,537,549,523,519,515,533,538,517,519,515,515,519,516,525,515,514,513,506,503,515,510,513,507,511,515,547,545,547,552,554,548,547,539,547,540,538,551,533,546,546,536,542,545,539,531,557,528,514,499,506,514,514,509,508,517,556,568,481,480,474,477,476,484,458,465,448,451,448,460,455,451,458,433,566,552,558,564,557,551,563,557,546,546,561,555,560,540,500,483,491,481,491,497,476,495,496,495,495,502,500,513,498,499,489,461,461,462,461,452,455,459,463,453,505,513,502,505,509,514,505,502,512,503,512,554,539,554,545,547,553,555,538,544,545,492,484,484,444,428,530,520,530,523,530,526,537,526,533,529,556,549,566,570,565,575,570,570,515,541,530,481,481,481,475,484,482,474,473,488,484,483,484,479,474,473,471,480,480,472,545,553,543,556,497,479,502,491,496,489,486,490,579,584,503,504,530,532,530,525,535,534,532,540,534,535,555,544,545,543,552,550,552,538,553,548,510,511,510,500,515,508,495,514,503,516,497,510,491,489,502,499,494,495,498,492,539,544,540,533,541,534,542,530,540,540,539,535,575,552,553,554,563,550,562,549,556,563,550,554,569,544,554,556,556,515,521,523,524,512,513,514,511,521,518,522,573,576,564,567,562,567,564,557,572,574,568,560,560,558,585,574,507,461,462,458,472,460,454,453,451,469,459,467,478,472,477,480,473,473,469,475,478,471,475,472,478,470,567,518,513,510,508,508,511,509,512,503,514,507,496,504,546,545,546,545,548,541,546,544,544,533,539,543,552,545,535,552,541,539,542,543,546,541,550,547,538,541,544,555,554,552,540,526,517,524,519,524,516,520,548,549,562,551,552,555,547,553,553,556,545,550,543,546,556,545,543,553,538,557,556,543,512,520,520,522,517,519,520,514,524,517,513,516,512,507,512,510,511,512,507,509,511,515,546,552,543,545,546,548,548,551,545,543,514,525,519,514,512,520,520,541,545,543,551,541,548,541,550,541,547,555,547,569,559,582,571,575,573,573,570,576,575,568,510,518,530,528,523,514,497,510,511,509,507,515,512,504,506,514,542,532,538,547,547,551,531,523,536,545,496,497,501,487,493,496,491,494,481,492,499,487,487,491,608,588,580,591,600,596,596,594,574,596,582,587,577,550,536,542,550,537,536,539,551,546,543,536,547,532,539,536,537,578,576,561,575,583,494,511,497,498,495,490,477,477,487,484,601,603,589,590,590,596,604,608,593,587,591,590,594,594,550,554,554,550,551,549,549,559,549,562,547,542,552,558,547,509,500,518,519,514,523,509,514,510,507,483,488,485,478,480,475,482,479,484,479,477,462,454,460,458,464,466,469,465,463,455,463,464,461,459,466,472,466,467,468,465,467,464,459,459,460,457,482,459,462,472,469,552,551,504,493,499,501,506,492,505,511,500,501,496,499,575,565,566,564,561,569,557,568,571,548,568,561,554,559,556,586,548,511,506,508,509,509,519,518,522,513,534,556,545,548,557,549,552,552,540,476,482,480,482,484,466,480,463,571,558,561,575,583,564,548,567,558,575,574,562,569,569,563,583,560,562,561,564,574,487,496,502,476,496,494,488,504,499,512,482,494,495,493,492,574,581,585,502,502,509,500,510,501,527,536,515,533,525,517,522,521,529,529,527,537,536,529,528,537,528,525,529,526,532,531,523,522,538,533,535,570,575,548,564,565,569,574,567,576,524,525,532,513,528,531,507,529,531,477,473,466,524,531,529,539,535,533,531,531,544,537,542,541,545,534,535,537,537,544,549,536,542,554,539,505,490,501,493,484,545,558,544,544,542,549,510,512,519,508,506,514,513,504,516,513,514,510,507,518,508,508,513,514,514,514,505,507,515,505,510,513,513,542,544,550,546,548,548,545,542,544,539,544,546,546,540,538,551,545,541,543,533,531,530,533,527,530,526,529,535,535,533,528,530,530,529,529,528,528,527,527,551,558,562,561,562,499,493,558,570,550,570,559,556,550,527,524,533,530,529,527,528,531,531,530,535,545,542,549,536,530,546,541,537,532,545,532,549,536,534,531,538,516,519,519,516,519,506,504,567,560,552,553,567,566,560,578,565,518,537,526,519,532,525,517,512,528,509,510,513,500,503,486,489,489,488,495,489,488,490,490,492,487,494,489,488,488,493,481,479,484,485,484,490,487,491,482,490,481,480,501,501,497,484,487,498,488,491,480,480,483,485,491,487,482,503,495,495,495,494,500,498,488,488,500,500,489,492,498,543,542,532,537,534,561,555,566,553,553,553,527,534,529,535,537,533,541,530,536,527,518,536,535,514,504,514,508,506,512,507,544,557,569,558,555,548,552,474,475,478,467,477,473,484,481,482,475,485,469,478,469,472,564,555,565,563,580,561,569,567,554,577,552,561,493,508,487,495,503,518,492,513,503,503,502,488,500,473,468,463,465,466,465,464,462,462,467,460,467,473,444,458,444,450,439,450,440,443,442,443,447,433,564,560,560,558,567,546,550,566,560,568,564,565,554,548,552,560,556,555,553,502,510,520,522,514,524,515,513,513,520,517,554,555,553,546,559,561,557,557,543,559,552,508,529,519,517,504,522,519,513,513,507,478,470,471,460,473,471,466,462,490,461,433,438,441,466,484,503,498,490,496,488,494,481,496,493,501,492,491,487,492,538,546,539,538,543,533,535,544,541,538,523,525,524,531,522,528,529,530,531,529,530,522,530,530,532,533,547,544,544,544,537,540,543,541,536,531,523,540,534,532,538,499,500,504,508,503,573,576,559,574,565,568,566,584,560,573,553,559,576,575,499,499,482,477,488,468,481,484,491,473,494,548,549,547,551,547,538,547,538,549,550,557,536,555,545,549,548,544,565,545,500,503,506,514,509,511,466,465,475,460,454,466,466,472,466,454,459,508,502,504,489,494,513,501,500,503,494,503,499,536,538,535,536,526,532,551,533,504,575,555,570,556,573,557,508,498,515,510,503,501,502,502,506,503,502,568,550,552,555,543,541,552,526,544,561,473,482,471,469,482,465,484,490,544,555,548,544,552,540,556,557,554,566,575,571,572,583,568,559,547,574,565,582,583,519,521,526,530,522,521,532,526,515,529,531,528,525,557,574,572,559,565,566,572,569,555,561,553,566,495,478,554,541,539,545,547,540,537,538,536,554,542,539,539,539,542,536,540,534,541,502,502,500,499,509,500,500,503,502,495,576,569,564,561,567,551,569,565,559,569,572,569,549,515,506,508,509,505,499,503,512,510,511,537,544,546,547,544,544,541,547,547,544,536,555,549,550,559,521,520,519,523,519,528,519,517,517,514,520,517,515,513,517,513,520,520,524,515,524,537,541,543,549,544,541,549,552,539,550,542,543,541,574,564,558,575,575,566,570,576,580,570,566,567,563,575,579,571,570,569,492,500,496,506,493,499,501,494,487,504,497,493,508,504,487,497,495,495,495,492,498,501,501,499,499,559,568,556,560,554,553,542,566,587,559,566,566,568,477,476,477,493,477,474,494,494,498,491,481,476,485,484,475,473,491,565,565,571,569,558,559,561,569,567,567,562,565,514,504,505,504,505,494,511,506,494,513,497,506,505,511,511,495,493,524,522,519,517,517,521,506,545,543,553,518,515,511,516,520,512,517,507,498,504,503,506,509,497,503,503,534,534,544,539,543,539,575,577,571,574,570,566,572,574,552,547,552,544,549,549,513,512,535,519,522,518,523,514,516,509,515,507,494,494,494,499,501,497,495,497,495,492,499,495,466,472,470,465,470,469,470,470,472,473,473,541,550,543,554,552,545,556,485,482,479,483,483,476,481,469,485,549,553,549,546,552,552,558,559,565,551,558,554,550,553,508,518,507,516,505,511,506,523,506,517,513,511,479,467,448,449,450,448,457,428,449,455,444,505,502,499,499,508,500,507,502,508,499,504,553,547,555,546,564,546,554,557,552,555,555,547,554,553,550,559,552,529,529,555,557,571,556,560,557,559,563,562,577,561,571,491,507,505,506,498,507,496,499,495,495,471,466,464,469,474,465,435,438,444,429,427,440,523,522,520,524,524,528,540,534,533,544,533,546,531,543,543,543,550,540,530,542,540,536,539,539,546,550,514,517,512,508,508,510,503,502,495,502,504,521,505,510,516,508,562,567,560,547,567,562,559,559,558,559,568,576,540,496,499,504,495,516,511,515,510,481,484,485,481,480,481,478,476,486,479,481,484,481,459,468,461,483,485,482,486,488,483,488,485,483,498,485,491,490,536,530,552,558,555,541,545,558,544,553,554,560,549,556,543,550,556,540,545,551,562,555,515,510,517,507,509,522,562,546,563,572,561,498,508,506,509,498,493,506,502,512,497,505,498,500,500,505,497,539,545,538,548,547,522,522,524,520,524,541,538,538,542,544,544,542,542,548,525,526,528,537,542,538,545,533,532,534,529,532,526,538,535,525,533,540,541,533,535,526,518,519,524,514,523,524,522,528,521,537,556,558,552,553,546,548,558,535,534,538,528,528,531,534,532,523,530,516,511,517,540,538,536,539,538,528,530,506,544,552,564,559,550,558,536,554,532,534,523,534,527,529,527,525,525,532,530,527,536,538,535,551,545,546,558,544,540,556,547,547,553,548,554,546,488,453,466,478,475,456,463,461,459,455,470,464,474,463,462,461,452,577,583,580,576,590,596,588,586,576,578,590,586,578,503,520,510,523,517,513,511,511,505,507,511,496,513,520,515,516,503,523,547,549,545,544,550,541,540,548,550,546,543,540,547,555,549,547,542,554,531,527,528,531,526,522,533,526,523,532,535,529,531,526,526,527,524,523,526,524,555,551,548,552,552,549,553,507,512,510,490,499,499,510,499,498,505,497,506,461,470,474,465,466,471,464,466,460,489,483,478,487,481,492,481,491,485,480,485,496,482,490,490,477,485,521,536,559,565,561,551,564,551,570,565,554,553,573,546,479,470,467,473,477,486,498,482,488,486,486,484,481,536,537,543,544,541,554,555,553,552,554,556,491,504,508,514,515,498,494,501,509,512,503,519,506,479,477,489,472,481,479,463,459,453,463,462,465,455,459,459,479,502,498,509,543,540,551,540,544,533,545,543,546,561,539,540,540,539,543,546,547,561,545,549,493,494,495,505,496,486,489,506,491,490,493,492,497,478,496,482,506,482,553,571,560,569,550,554,549,565,556,468,479,537,527,538,535,530,561,551,565,572,568,555,564,504,518,502,497,506,499,508,496,498,525,530,532,537,534,528,521,530,524,528,527,532,528,524,519,526,530,521,533,529,525,530,542,538,543,527,547,540,536,553,548,547,534,541,555,532,542,528,517,521,522,518,526,526,525,524,520,517,542,555,551,546,559,564,551,554,547,556,561,550,546,556,551,554,490,493,486,494,482,479,492,486,483,486,486,492,489,486,464,451,459,466,464,452,462,548,545,554,550,552,550,578,560,587,569,564,567,577,567,564,573,574,556,578,536,528,536,536,534,533,534,531,530,532,539,537,522,525,531,531,525,525,525,524,525,526,529,557,553,569,563,556,562,553,567,555,556,542,559,563,557,561,549,511,509,485,504,491,497,505,491,502,448,456,455,488,487,492,489,496,489,484,488,505,512,502,509,512,501,547,545,543,543,541,539,543,538,543,546,536,543,562,566,563,555,568,582,561,575,557,560,560,566,568,564,568,563,566,559,578,563,530,529,527,525,529,532,534,521,545,522,528,531,492,484,474,460,558,556,555,561,558,548,565,568,549,566,567,565,555,558,566,560,573,523,517,520,518,517,531,523,522,532,519,522,530,497,498,502,489,497,508,501,504,497,458,461,465,466,463,458,456,453,451,456,466,477,476,478,482,563,568,582,552,557,569,551,560,571,555,568,574,569,562,574,565,565,569,575,553,510,495,493,485,488,491,495,508,501,503,521,506,506,504,513,492,564,555,488,489,486,482,481,490,487,482,487,484,493,484,453,466,456,463,465,467,455,552,535,544,555,551,530,537,544,533,558,553,504,500,505,504,512,503,504,504,500,508,498,502,504,499,502,533,533,532,544,546,539,543,546,546,541,549,539,541,540,541,542,547,520,512,518,517,516,523,511,514,526,515,516,519,529,505,500,502,504,501,571,569,555,553,557,553,550,558,548,553,561,564,549,552,547,559,555,520,526,519,526,527,526,524,526,522,524,532,531,526,537,539,522,528,537,540,539,539,529,529,535,533,535,527,523,531,527,526,538,488,496,502,535,553,553,560,555,560,568,561,554,558,570,506,504,497,500,498,505,498,503,495,503,510,503,510,501,507,510,454,452,472,455,456,492,487,486,488,488,493,484,492,502,558,559,558,553,563,558,548,566,562,563,562,562,558,527,529,532,536,524,531,538,540,531,534,531,537,527,526,483,477,469,468,492,472,466,477,463,471,472,477,485,460,471,470,487,475,546,544,537,537,567,574,562,569,571,575,565,566,559,511,499,499,502,504,521,508,509,504,504,551,550,545,554,556,552,549,546,546,545,554,549,554,544,530,554,540,555,532,536,546,555,542,510,506,504,506,505,504,497,504,502,500,504,516,497,511,510,567,568,571,578,561,567,569,485,498,485,475,482,475,460,479,487,489,464,544,512,537,535,539,538,530,538,536,542,549,527,533,543,536,531,538,543,531,540,543,553,542,541,527,497,501,506,508,491,507,510,503,506,568,554,568,556,548,562,561,557,553,564,524,508,511,513,509,517,519,478,479,476,484,483,481,493,487,490,479,487,481,478,483,495,477,478,481,485,482,575,564,569,564,562,576,510,513,507,512,519,514,505,506,515,512,518,510,516,536,525,531,526,521,526,547,537,554,538,561,559,563,563,558,561,481,472,478,481,474,481,477,482,488,481,492,491,485,474,479,475,475,489,498,487,473,533,537,541,541,537,548,548,542,538,540,546,548,541,531,523,524,529,531,523,527,520,533,525,523,531,543,538,540,536,529,541,542,469,478,472,475,473,470,462,472,479,480,477,478,457,502,502,502,506,494,495,498,496,498,498,562,561,562,573,561,554,550,561,561,563,564,557,561,563,553,560,566,525,534,536,530,498,498,501,504,505,502,496,500,498,506,563,563,561,573,567,561,566,582,561,568,565,501,510,499,502,497,495,570,578,574,567,577,579,580,581,575,576,577,581,582,575,582,580,538,504,510,508,505,503,507,511,507,509,556,498,499,498,496,496,514,520,514,503,605,586,603,592,552,545,545,556,563,569,558,497,495,489,496,497,496,486,498,495,509,493,500,496,490,509,496,520,520,517,505,504,517,509,520,507,514,518,511,512,521,517,514,528,508,538,533,542,534,529,537,532,541,527,535,496,504,499,492,500,499,483,576,600,581,586,572,571,572,590,589,596,537,536,542,544,540,550,540,523,530,525,526,535,541,533,531,533,524,513,512,515,512,562,564,577,562,569,561,564,571,569,578,528,487,486,480,483,483,492,476,462,470,457,469,484,470,464,573,566,555,571,564,561,557,569,569,572,561,573,567,567,572,552,486,493,509,492,485,486,494,480,483,475,495,458,466,458,473,466,465,466,462,466,458,457,465,465,454,464,467,593,578,577,582,500,516,511,501,506,510,508,495,509,515,512,510,507,521,517,540,538,538,552,548,537,537,542,538,552,538,558,550,546,534,540,552,554,535,542,540,543,547,543,541,545,539,530,490,477,495,492,486,480,495,494,481,475,494,491,577,574,584,575,588,584,574,588,580,522,519,526,523,522,531,529,524,520,521,527,527,552,559,582,554,567,560,553,563,559,546,565,561,556,569,489,492,493,484,499,482,474,495,499,496,481,485,483,499,471,553,560,558,547,544,554,544,550,560,552,542,554,556,560,560,554,566,558,494,494,492,490,497,475,482,470,475,467,484,476,590,588,604,613,616,591,589,603,589,589,593,604,595,591,596,601,560,546,545,535,510,511,522,518,524,529,518,518,522,508,484,490,495,489,490,481,482,492,488,489,545,523,543,549,564,542,548,547,494,506,504,515,505,498,573,578,582,598,577,563,488,474,476,480,488,529,528,522,527,517,531,511,532,514,516,521,521,517,522,525,516,533,525,516,524,521,527,531,528,532,536,528,527,531,529,526,529,539,533,547,545,534,527,517,557,554,556,551,554,552,566,549,548,546,494,489,495,489,478,488,475,491,481,481,574,551,571,575,559,568,561,564,564,558,540,557,499,505,515,508,508,506,519,514,516,522,515,508,506,508,506,572,584,581,583,581,571,569,587,589,574,572,595,588,575,551,552,560,543,550,559,549,550,550,554,534,545,555,548,544,533,541,542,544,540,547,542,547,543,514,504,506,524,485,498,501,495,459,459,467,464,469,457,467,459,462,471,464,458,471,462,431,442,430,442,454,431,448,437,439,443,439,435,451,533,531,532,528,529,534,547,534,545,488,502,492,494,485,499,487,486,485,486,485,486,555,550,562,549,542,539,542,531,545,547,484,473,482,472,486,467,490,473,476,459,471,464,473,477,471,481,476,466,556,562,567,571,580,509,506,502,492,494,496,495,498,494,505,511,506,583,574,580,576,575,574,569,580,563,572,562,580,589,528,535,533,536,538,534,533,521,531,522,527,534,529,525,521,526,528,556,559,565,559,554,553,558,552,552,501,501,501,507,506,497,487,454,455,446,450,454,458,446,449,450,460,465,470,472,472,487,479,483,476,470,483,475,476,472,568,562,565,558,561,547,573,571,540,557,562,551,567,574,570,502,506,498,501,497,495,499,498,495,508,494,513,560,536,545,480,475,492,474,481,479,476,481,475,463,468,485,476,481,475,483,484,490,483,526,518,522,526,516,525,589,584,584,588,603,575,584,585,593,594,588,576,578,593,583,587,573,577,544,557,549,549,549,555,550,551,550,562,535,558,547,555,493,494,491,497,493,500,501,493,488,492,496,499,503,503,496,503,496,500,503,503,505,500,504,493,507,512,504,508,532,523,535,535,533,530,529,533,530,523,532,526,525,530,532,522,528,530,538,544,543,536,534,553,554,545,547,550,511,512,519,514,510,514,512,518,512,516,512,515,505,513,505,512,545,543,553,554,550,555,548,502,526,520,516,510,524,478,489,489,494,489,482,482,481,489,494,490,495,490,485,474,485,489,483,498,457,470,466,462,472,475,475,483,477,472,467,481,473,473,468,474,470,480,478,474,467,462,466,473,466,464,463,471,470,469,546,533,558,540,552,552,551,550,530,506,513,505,496,559,562,550,556,539,558,562,578,510,509,499,508,506,511,522,504,465,475,472,472,469,473,466,471,460,494,486,491,485,526,544,532,538,543,544,547,538,540,541,533,530,559,570,561,555,578,554,577,552,582,498,494,497,500,497,488,497,498,497,502,490,498,498,493,564,554,566,556,566,557,545,555,547,541,551,573,563,559,555,486,483,480,553,550,559,542,540,552,543,552,505,511,507,500,508,507,556,571,569,539,561,563,562,544,557,550,513,515,530,509,504,518,523,517,490,480,478,487,483,480,481,480,485,479,474,480,482,588,587,592,607,609,600,595,589,590,594,592,594,584,549,542,539,539,545,542,537,537,545,526,525,524,524,533,525,542,541,537,540,539,536,534,514,519,532,567,571,571,572,579,552,558,532,517,531,521,533,484,479,484,478,486,486,481,488,486,485,481,497,505,561,566,556,561,561,553,556,557,565,553,525,533,520,531,520,522,517,524,523,521,558,549,553,548,552,546,560,556,545,552,529,521,530,523,531,534,485,483,488,492,484,484,483,472,482,480,476,557,560,552,558,558,555,560,545,562,562,569,561,555,555,560,557,557,553,562,562,484,502,494,504,470,487,489,482,498,497,492,460,442,436,445,446,456,441,441,446,447,447,518,524,528,534,525,535,533,531,512,519,515,513,519,512,514,522,520,514,515,517,528,526,525,523,520,529,527,526,531,529,529,523,531,528,559,572,568,567,564,562,569,573,567,560,577,566,556,561,548,550,546,549,544,521,527,523,534,533,525,524,525,531,485,488,471,482,473,470,471,477,470,466,484,483,486,552,540,537,542,538,548,542,543,542,552,492,501,552,486,477,492,486,486,485,497,479,558,541,555,555,550,558,546,555,544,561,556,557,559,507,513,509,509,514,514,506,506,512,506,514,515,501,504,539,573,574,567,578,567,567,557,501,512,502,500,498,499,504,499,503,510,492,497,491,491,489,494,491,498,494,492,496,495,571,584,558,561,568,572,575,565,575,578,564,500,500,503,493,499,431,432,445,449,443,435,456,501,489,490,501,491,492,488,500,502,496,490,568,564,569,551,524,512,507,529,510,507,496,522,472,476,481,474,480,482,481,444,444,435,442,439,451,442,446,454,442,437,522,523,537,528,530,533,527,525,522,525,524,519,520,514,518,514,516,520,519,521,532,519,508,523,521,515,522,543,530,531,535,533,543,541,536,532,530,532,534,561,544,550,552,541,549,543,549,550,546,550,550,544,547,484,496,492,500,428,442,438,438,444,442,516,550,539,538,547,540,537,536,550,538,549,548,544,532,543,539,548,547,538,544,541,515,517,516,506,510,548,564,565,567,562,573,565,518,521,563,571,583,560,561,582,571,570,566,572,522,531,515,534,506,506,512,515,514,511,514,511,518,517,517,514,520,504,498,499,496,491,506,505,502,506,501,488,505,502,509,500,502,481,476,480,492,497,490,486,491,583,580,566,560,574,556,564,529,526,531,526,529,535,533,540,529,531,523,525,541,541,543,535,498,498,500,504,503,506,503,493,504,503,505,497,507,501,494,534,568,573,542,558,559,561,560,557,570,571,545,555,555,551,569,554,570,559,540,573,575,495,492,512,498,497,493,553,574,564,561,465,482,481,476,471,476,473,485,484,491,478,500,480,477,470,467,541,546,543,538,539,543,548,546,535,541,538,541,546,548,546,553,541,548,548,556,550,503,497,479,511,475,472,486,474,474,472,472,467,531,542,547,556,549,544,540,544,540,507,506,503,492,502,506,500,505,547,530,548,548,553,536,538,552,537,536,545,533,543,545,539,468,470,490,498,493,477,492,481,493,484,492,494,573,577,561,575,577,557,564,570,580,490,496,488,505,512,493,505,506,496,493,486,485,490,493,486,498,484,486,493,490,490,494,494,488,492,490,490,575,571,559,587,573,569,492,492,486,478,477,475,543,554,538,527,564,539,530,546,530,548,550,543,522,517,516,525,526,516,513,520,515,513,540,542,533,532,537,540,537,541,549,477,473,479,486,473,485,487,490,491,491,492,490,498,484,489,488,491,500,504,506,509,529,537,524,537,521,531,526,531,527,533,530,533,530,535,536,557,556,554,551,574,552,552,487,487,493,491,494,495,484,504,487,492,486,482,496,494,484,488,487,496,486,570,559,535,524,526,530,552,557,556,551,547,549,547,551,560,552,482,487,493,509,458,463,460,454,469,455,539,541,551,541,548,545,537,555,558,546,556,549,545,553,547,539,550,543,550,551,543,540,545,558,520,519,521,522,528,518,521,526,531,514,519,520,520,543,541,548,546,493,494,499,496,495,501,505,501,515,504,514,509,509,511,506,515,505,512,515,512,544,533,540,547,536,538,541,539,536,501,507,508,497,504,502,516,503,499,505,507,499,505,555,562,536,556,557,489,496,493,516,494,500,501,500,517,498,499,499,507,524,501,538,540,533,551,533,543,554,524,554,541,552,482,477,473,493,493,494,487,489,500,481,484,485,503,494,489,491,490,491,533,540,542,539,547,533,533,534,538,526,538,538,557,559,563,563,555,566,492,492,484,507,502,511,503,508,493,501,494,505,523,495,495,500,487,514,498,445,443,435,436,438,443,445,444,438,439,450,448,495,488,492,558,569,552,573,562,565,566,561,564,559,549,568,562,518,522,524,519,480,477,484,477,470,477,479,484,478,479,485,474,480,485,483,484,578,575,574,564,582,573,568,586,510,513,524,518,517,506,513,513,503,510,509,515,507,529,525,531,532,530,520,526,557,568,549,550,553,568,550,559,552,560,550,498,490,508,504,483,492,486,491,488,461,458,471,465,477,479,460,471,544,546,556,546,546,559,538,547,542,549,542,479,478,462,484,483,492,482,472,478,467,467,474,465,464,454,436,455,459,450,544,547,548,544,554,545,543,547,542,555,550,553,549,550,557,557,540,533,531,530,530,524,523,529,529,523,529,528,525,526,532,537,536,541,542,480,466,479,468,482,536,527,530,535,528,530,526,524,522,533,534,533,534,530,528,518,532,529,522,531,515,527,545,531,537,545,538,540,548,551,542,546,540,538,542,554,551,548,552,549,550,549,545,538,549,542,497,503,502,508,509,510,517,501,496,499,492,497,496,499,495,489,544,547,540,539,549,542,539,547,543,553,549,545,560,569,558,569,506,498,510,512,513,507,508,500,507,503,516,515,509,511,512,517,530,538,547,541,544,543,541,541,534,545,542,522,522,526,523,519,527,545,542,545,545,540,551,556,552,554,550,542,520,526,529,532,526,528,526,518,535,534,527,520,531,524,524,518,527,525,525,523,533,536,563,569,567,570,567,552,544,553,554,567,551,556,502,508,497,492,504,493,500,496,502,498,502,503,550,542,546,542,550,536,541,551,553,544,547,540,551,516,515,514,512,505,541,536,535,536,544,535,544,540,566,553,550,554,547,556,560,549,556,565,549,555,504,512,495,510,510,504,514,498,506,495,510,492,485,485,484,495,501,500,503,490,501,496,490,493,496,496,489,493,498,491,494,498,496,484,460,459,465,452,450,453,461,457,461,467,446,454,451,459,459,448,494,494,487,489,491,498,486,486,480,480,485,494,491,488,523,529,526,525,521,521,529,584,588,577,589,603,583,583,591,587,591,586,555,556,556,550,560,555,555,557,547,548,554,506,512,514,499,513,500,503,525,501,509,523,520,510,519,487,488,486,485,489,486,487,481,489,485,484,488,488,485,493,494,489,489,496,489,496,496,492,487,508,510,509,533,530,524,520,526,521,536,524,534,527,526,535,530,531,524,520,516,525,522,522,534,524,521,522,523,526,522,526,514,528,531,536,524,533,534,530,533,544,541,531,546,518,518,514,521,519,520,513,527,519,539,527,534,536,546,549,522,539,537,541,539,546,511,495,487,498,503,502,499,506,504,510,512,511,560,547,561,554,551,507,488,480,489,494,499,481,490,485,484,486,477,487,479,491,486,487,487,487,475,483,477,487,474,480,479,484,477,494,479,483,472,473,479,480,477,468,481,474,480,475,503,501,504,507,512,501,505,511,503,504,533,540,543,540,543,544,536,547,543,544,535,543,548,548,550,541,550,484,500,495,503,505,501,493,508,533,528,525,526,587,592,587,575,592,577,580,579,595,579,561,552,527,514,517,527,528,524,509,510,531,526,514,515,500,498,499,500,495,498,504,494,506,506,488,490,499,498,497,495,499,495,497,493,494,497,493,497,495,498,495,502,534,540,537,539,525,535,534,533,541,535,540,533,537,547,550,564,561,558,550,521,528,519,518,521,525,528,514,517,526,519,525,514,518,543,540,534,555,560,561,553,551,566,552,559,563,512,504,514,512,497,500,501,517,505,500,508,497,496,495,502,480,491,480,488,475,486,479,483,466,463,467,467,470,469,462,463,464,476,477,472,474,473,461,475,471,466,468,468,470,469,448,458,453,463,453,457,449,447,459,512,497,500,499,544,534,537,550,533,545,541,536,532,541,538,527,474,473,468,475,462,469,472,489,486,484,484,532,525,530,521,530,525,526,542,559,552,548,548,553,551,548,564,545,542,547,547,543,556,567,563,553,548,560,564,551,559,551,523,483,491,482,487,486,484,489,482,486,477,481,498,498,497,497,496,535,534,534,539,528,536,536,537,528,543,536,550,497,494,496,485,501,502,490,489,490,492,513,492,499,500,490,493,491,493,482,507,486,489,576,514,507,512,515,514,509,522,515,511,547,546,556,554,548,557,550,548,552,556,554,548,556,547,538,505,504,507,511,512,501,495,509,567,573,562,564,565,548,575,579,576,578,568,599,566,554,563,573,560,567,570,488,492,509,515,526,501,505,509,516,503,503,518,488,486,483,523,506,472,472,471,475,484,465,464,474,484,473,469,470,463,466,551,540,554,557,548,528,569,548,561,547,561,562,551,477,555,550,556,547,547,545,551,547,557,552,551,552,547,550,545,513,512,532,533,525,536,532,528,534,527,560,564,553,545,555,559,562,556,520,530,525,529,535,530,529,527,525,531,539,552,555,562,554,557,551,547,556,561,560,554,563,503,509,500,500,503,501,509,501,498,496,491,492,499,506,495,501,504,503,498,549,534,555,541,543,553,546,556,562,537,541,543,525,536,544,524,515,519,522,519,524,514,520,523,528,533,526,534,541,526,543,531,531,524,535,522,521,521,535,508,486,485,484,489,499,487,482,486,474,560,560,545,571,575,549,555,553,569,569,544,556,562,559,503,498,507,510,510,496,505,503,521,500,496,497,518,507,495,503,499,475,474,474,490,479,473,476,481,480,472,481,478,479,477,475,480,476,485,479,471,479,484,478,465,483,461,458,454,557,556,554,557,564,556,559,558,552,558,560,511,505,507,507,503,510,516,504,511,505,505,523,528,537,546,562,545,551,555,546,563,546,562,551,549,551,543,559,486,502,486,503,510,495,491,496,593,584,532,527,526,523,532,555,547,532,547,537,550,540,545,549,478,489,486,473,479,503,496,499,514,507,511,548,554,548,546,555,557,561,556,546,559,557,514,517,511,517,507,506,511,504,510,509,515,482,479,494,490,490,492,490,498,489,485,491,476,469,456,458,456,465,463,466,456,464,466,460,459,457,466,461,463,459,468,460,465,454,462,467,560,551,554,555,566,548,548,559,559,558,551,548,556,553,545,547,555,552,548,552,547,538,560,554,554,545,554,549,550,550,547,548,527,530,521,531,535,528,527,523,526,523,543,536,528,538,534,528,529,537,534,542,536,537,531,543,499,503,491,493,586,596,596,581,588,590,586,510,505,505,512,501,515,510,509,519,509,525,522,517,518,516,520,528,532,529,523,534,537,532,519,523,530,533,531,534,531,529,525,539,533,537,526,526,527,572,513,521,530,539,528,529,498,507,500,506,506,509,512,495,499,500,505,503,509,494,500,500,496,546,554,552,560,562,543,567,557,561,553,549,547,556,559,544,522,514,512,510,520,509,504,520,518,516,524,519,515,482,483,477,486,476,476,479,478,465,465,466,464,464,474,462,462,467,469,465,477,462,469,468,463,472,476,484,476,476,477,478,474,481,478,479,475,449,435,441,445,446,442,444,447,444,446,556,559,557,556,559,547,542,537,542,551,472,490,495,494,492,495,509,506,491,513,489,472,513,489,508,486,477,475,478,479,478,470,468,486,478,479,490,488,474,565,566,557,552,572,549,560,549,548,557,559,560,518,512,514,519,519,516,523,517,504,519,506,512,503,481,492,485,479,490,481,484,487,486,484,477,484,500,500,502,500,511,496,505,496,550,550,551,553,550,561,557,555,560,548,559,559,549,546,539,543,530,584,563,561,558,578,571,583,573,578,575,571,517,498,503,514,510,501,501,490,506,509,458,465,460,456,455,460,468,456,455,463,453,503,567,558,559,557,560,551,557,549,539,529,533,529,530,524,534,527,533,525,537,530,528,526,531,528,533,529,533,526,517,518,522,524,524,520,554,555,553,561,553,551,555,553,557,557,534,528,527,529,538,528,529,535,535,535,535,537,535,535,533,538,516,514,516,519,519,516,515,510,513,514,510,514,518,513,513,514,509,509,511,510,510,507,565,548,557,552,553,551,559,561,554,563,546,545,546,546,555,554,557,551,558,550,550,500,505,496,521,505,509,515,515,509,513,505,514,513,501,509,512,514,558,567,557,555,566,540,550,543,545,550,505,499,494,518,510,504,499,508,509,499,508,494,488,493,484,488,486,482,481,481,486,496,483,486,473,479,473,474,470,475,471,482,478,477,476,476,466,466,458,469,468,459,456,468,469,469,454,464,473,551,562,553,562,556,548,570,564,538,550,543,547,549,547,549,546,538,557,549,499,499,503,503,495,500,508,507,510,501,506,516,500,500,517,510,503,510,573,554,563,574,572,578,567,573,501,486,504,486,512,492,498,498,501,485,495,501,495,578,581,574,578,587,562,499,501,504,511,541,530,532,530,529,526,539,532,528,540,540,530,529,542,539,535,534,524,530,535,539,536,533,537,532,554,553,548,544,540,550,551,520,524,517,515,516,520,521,516,521,521,517,513,515,514,517,518,512,517,532,536,530,533,534,540,535,532,526,528,556,556,557,560,537,550,570,573,551,558,542,560,555,570,563,551,558,548,562,540,560,557,486,511,498,500,516,510,498,463,485,445,448,440,449,533,546,546,542,542,540,551,541,545,546,542,551,542,553,546,548,553,492,488,509,507,499,505,590,581,594,593,582,591,589,600,598,601,581,607,529,526,515,553,469,477,475,481,481,484,479,470,492,479,476,482,563,558,553,550,552,560,541,562,559,567,580,566,512,507,506,498,559,551,555,557,549,553,550,549,559,569,485,505,491,502,488,484,506,500,506,514,516,552,547,547,549,545,554,549,548,549,565,534,520,537,526,521,529,534,532,524,526,538,528,528,524,524,522,528,514,513,516,522,517,511,512,513,517,516,512,516,499,496,506,499,505,501,502,502,498,501,483,491,499,481,487,478,488,486,478,485,493,489,483,518,508,514,505,513,520,516,513,511,510,510,511,513,553,551,556,557,554,555,561,555,507,495,488,501,499,495,486,481,484,488,489,481,487,488,567,565,573,581,566,566,556,561,570,560,556,573,548,521,514,520,517,528,526,510,526,524,521,531,525,518,501,505,502,501,507,488,487,481,491,486,484,476,475,476,481,474,472,473,464,477,473,479,474,468,487,551,545,539,520,528,523,530,526,526,527,528,531,523,557,577,569,565,562,565,570,566,521,483,479,486,485,483,480,475,479,479,480,477,481,481,483,482,479,487,484,477,481,478,480,490,496,488,492,500,493,494,503,496,488,507,488,560,578,553,572,568,564,576,564,556,564,530,521,515,513,514,525,517,524,515,526,521,527,507,514,519,523,528,523,526,482,486,491,483,485,478,493,481,487,484,489,484,469,461,462,456,467,459,469,463,468,466,462,464,480,475,475,471,474,474,480,469,476,468,479,472,476,472,465,469,472,472,474,470,471,470,473,467,470,474,479,462,472,473,467,458,478,460,460,531,543,540,544,543,546,540,544,552,545,552,545,536,543,546,538,516,520,519,519,520,523,518,522,536,537,534,536,538,537,528,536,544,530,533,540,543,517,531,520,522,526,524,519,540,542,551,553,548,546,547,545,541,545,502,500,535,532,523,543,534,536,543,531,537,537,540,542,537,541,538,543,537,537,548,533,539,557,553,541,547,546,550,546,547,554,505,499,493,500,502,494,508,511,509,506,510,494,507,500,506,512,493,498,512,492,484,492,484,484,488,485,493,483,490,490,501,501,509,513,500,504,497,498,512,503,502,499,507,505,504,503,499,496,495,498,502,499,493,496,499,490,501,494,500,473,456,468,457,470,478,468,471,463,470,463,459,469,464,458,471,463,467,459,459,473,471,461,472,459,467,532,545,542,542,531,541,543,544,532,543,539,473,472,471,471,488,463,474,483,481,479,491,491,494,487,490,493,483,544,538,545,550,571,559,554,568,548,560,513,516,506,506,517,503,515,509,509,510,508,565,562,539,567,568,570,555,568,564,555,548,559,565,579,571,491,492,489,493,509,502,499,463,468,467,473,474,467,479,549,551,547,540,547,556,538,469,476,486,479,462,459,469,479,483,474,490,470,474,468,465,464,467,465,473,469,468,474,476,572,565,567,565,559,515,501,517,518,507,507,511,506,515,521,518,530,527,521,523,531,528,526,526,564,551,553,552,565,559,557,559,558,551,556,480,475,455,478,498,489,545,538,532,546,544,555,546,539,543,546,547,458,467,464,467,472,480,471,483,463,490,477,458,473,522,530,530,531,524,521,526,530,526,527,531,533,524,524,524,525,525,515,535,532,538,537,536,534,535,547,542,555,544,548,546,542,549,519,527,518,519,521,526,524,520,517,523,522,513,525,521,526,522,519,558,557,564,555,563,561,560,554,559,534,543,538,544,543,486,503,497,496,496,509,510,495,506,506,489,496,496,504,508,493,491,485,488,481,488,485,485,490,488,461,461,471,467,460,470,464,467,464,465,463,473,462,460,470,476,527,542,527,531,548,534,525,521,530,522,525,524,522,528,523,523,524,525,525,525,551,550,553,554,547,493,493,485,502,494,494,496,508,487,490,495,519,518,514,519,515,512,517,515,515,520,516,514,520,519,559,559,558,557,559,563,569,555,556,554,569,557,564,557,558,497,497,504,493,495,488,488,498,501,496,502,501,503,503,507,498,499,502,498,501,497,515,518,516,517,517,547,547,548,537,540,538,545,544,543,537,547,542,530,526,575,572,552,575,556,553,557,561,564,532,518,528,509,508,519,516,512,533,514,479,481,483,479,477,475,476,474,478,483,483,478,467,464,463,566,566,577,565,577,552,563,566,564,567,574,509,520,520,519,524,521,521,525,524,530,479,480,482,484,482,485,490,479,484,490,480,485,475,486,486,490,491,483,485,491,487,491,489,484,489,490,482,565,580,584,593,584,570,579,576,579,594,573,591,579,575,570,477,481,471,471,494,491,497,493,486,541,535,540,558,551,536,546,535,540,554,544,545,529,541,549,554,555,547,552,557,549,498,476,495,491,496,490,485,500,468,459,466,460,464,473,471,463,536,534,554,542,543,555,554,555,542,546,542,540,482,476,473,481,454,453,445,461,445,449,447,457,452,443,443,447,440,458,560,548,556,551,561,559,556,557,550,564,562,550,561,555,478,471,483,533,539,542,539,542,531,526,527,530,525,525,520,528,531,532,532,538,531,538,528,536,561,541,550,551,481,493,557,556,554,544,535,553,562,554,544,556,542,507,514,505,502,507,507,511,506,512,502,503,501,504,506,510,499,512,510,505,505,507,504,537,532,532,530,532,525,527,521,531,529,536,544,542,558,556,554,539,547,539,538,478,480,488,471,479,480,487,478,491,475,481,481,479,477,477,502,510,511,501,507,522,537,536,531,528,490,501,490,495,499,498,496,493,500,505,497,492,498,505,498,500,586,576,583,599,581,588,582,583,586,586,535,539,544,554,537,535,534,527,528,528,528,528,532,527,525,526,519,525,519,525,526,526,521,545,533,542,530,544,542,542,529,546,499,487,498,507,506,502,501,508,543,552,560,548,547,547,538,554,555,552,550,557,550,567,551,565,526,553,492,494,481,486,473,476,477,484,488,487,472,488,550,574,567,560,570,553,485,500,484,486,498,486,484,493,489,481,496,490,485,485,493,487,483,492,491,483,493,491,569,559,521,521,520,517,519,517,519,522,558,559,543,551,560,557,553,526,531,531,524,526,530,530,528,521,532,475,494,474,490,470,473,476,469,476,483,478,558,566,573,566,558,572,561,524,512,525,530,515,520,502,525,486,484,478,488,489,483,484,487,488,483,492,485,495,495,488,456,465,461,471,553,547,559,517,518,516,516,518,535,530,532,524,521,522,530,525,526,524,512,524,520,518,521,519,532,545,533,529,536,568,561,570,530,532,533,529,527,531,529,535,537,534,543,538,537,534,536,537,546,536,517,519,511,524,519,525,520,541,536,542,539,550,537,547,551,547,544,545,551,546,570,570,563,556,555,559,576,584,500,503,500,504,504,485,501,466,465,459,474,463,560,559,538,559,531,565,554,561,551,548,510,508,510,519,516,551,552,555,548,546,547,549,552,547,558,554,525,530,537,534,529,534,532,525,534,534,532,529,535,527,526,532,536,551,553,563,562,563,565,561,549,552,558,567,567,553,564,557,567,559,529,524,512,509,514,511,528,504,510,499,510,498,501,505,502,497,489,485,477,482,491,487,489,483,478,478,490,483,471,475,474,472,474,486,493,497,504,494,504,493,503,503,497,494,503,503,504,501,502,540,535,535,536,534,539,548,531,535,541,541,534,537,525,517,516,539,538,539,540,550,533,547,532,540,545,539,542,533,549,554,553,557,572,561,561,569,571,561,551,571,558,557,561,553,559,552,511,509,517,517,501,513,507,583,582,575,579,581,573,567,595,573,579,487,497,481,491,481,486,488,474,488,493,485,545,538,547,551,556,548,566,542,556,558,553,513,488,484,483,492,486,483,489,486,485,489,474,474,461,463,456,457,459,461,468,453,456,464,455,460,456,457,465,469,459,559,559,554,546,549,554,545,557,545,520,522,515,533,538,540,536,533,535,519,534,538,535,552,545,558,555,538,549,536,552,555,552,499,500,507,508,510,493,487,491,484,490,488,482,482,487,488,501,505,501,549,553,542,541,545,548,546,545,552,549,553,542,549,547,553,538,548,554,543,560,550,538,549,547,539,543,512,514,564,569,554,558,577,563,561,555,555,568,568,568,559,564,545,525,526,516,520,519,520,523,522,551,552,548,543,556,551,555,551,554,541,552,541,540,557,553,559,544,552,550,558,551,556,556,561,550,562,554,566,547,551,553,558,558,548,554,549,563,500,490,493,497,495,510,547,547,547,543,550,545,538,514,522,511,516,514,522,519,528,512,520,523,595,577,585,584,594,584,581,577,578,588,587,578,551,551,544,545,549,550,550,553,563,555,491,489,498,498,495,496,495,494,504,490,488,502,487,488,499,493,489,489,568,565,574,581,568,558,565,565,573,500,489,495,507,522,501,509,507,506,519,514,498,588,577,580,597,588,594,597,591,596,594,583,596,592,600,536,529,525,529,523,582,577,588,587,586,573,579,589,584,587,594,551,556,558,500,507,490,506,445,465,459,477,485,475,481,483,487,481,491,487,479,465,483,473,478,567,565,559,566,564,564,566,565,564,553,565,577,573,550,568,564,565,563,565,560,514,497,498,495,501,495,464,467,471,467,468,464,464,464,445,442,436,439,445,446,441,435,431,437,447,529,529,524,528,535,526,507,515,510,512,517,509,514,515,511,532,525,527,528,532,529,531,526,531,527,532,528,565,564,562,562,561,563,574,567,553,572,568,570,564,574,569,558,576,564,568,582,571,555,564,565,543,530,532,540,541,542,536,538,529,533,541,527,541,549,526,550,550,554,567,552,545,558,555,565,552,554,550,514,516,510,509,510,496,510,516,507,511,503,507,513,507,511,511,517,512,508,508,510,511,518,509,520,552,553,555,552,557,546,554,555,559,563,567,558,562,489,500,496,484,500,487,485,495,497,475,484,489,482,484,484,488,484,479,493,482,493,492,572,589,588,577,577,604,579,573,564,584,576,562,575,489,487,483,485,496,479,493,487,474,469,482,497,533,541,538,543,530,532,545,535,528,519,536,545,544,527,525,527,558,549,559,512,523,519,516,477,484,481,465,455,462,457,468,470,479,474,468,462,568,551,553,545,552,558,562,550,545,547,546,554,556,543,545,541,547,513,508,498,504,494,590,591,598,604,605,606,584,609,553,555,557,559,561,557,567,565,516,534,521,526,522,511,508,504,505,508,509,516,509,499,508,503,505,496,493,492,494,494,491,492,495,498,505,506,488,505,459,474,467,446,438,452,442,543,539,532,527,544,532,530,538,533,534,538,531,533,551,542,540,548,549,542,544,548,545,549,546,553,548,553,547,490,494,484,494,503,486,491,504,482,504,473,479,467,463,472,475,544,531,551,547,543,551,543,534,525,501,514,495,501,506,576,566,548,542,553,558,565,561,575,555,554,573,551,582,573,558,554,533,533,520,536,526,535,535,522,532,526,532,554,558,552,550,560,561,558,519,525,525,536,519,514,518,533,526,528,508,498,520,513,498,511,502,509,507,507,510,500,496,505,491,502,501,489,494,504,492,496,491,501,484,485,491,478,490,479,479,491,486,482,483,483,479,481,489,489,479,479,488,472,477,558,555,557,553,561,555,552,568,566,564,564,475,469,472,543,551,555,543,552,553,546,554,545,547,540,543,570,574,571,560,559,567,576,573,529,532,525,530,529,528,531,523,524,521,530,571,559,563,553,523,529,530,535,532,532,532,529,540,521,511,508,510,520,512,514,515,521,518,519,580,584,582,589,593,582,591,590,590,596,576,575,574,550,550,548,552,557,546,544,533,546,546,543,540,539,537,540,500,520,514,513,504,501,487,485,484,480,481,491,489,482,490,485,464,459,464,467,466,467,465,465,465,422,428,441,437,449,429,437,478,474,481,492,478,484,486,481,485,553,551,550,551,564,561,554,552,558,531,525,541,530,533,529,526,530,532,536,532,529,538,516,528,524,522,514,516,520,521,525,525,529,551,542,540,535,553,548,533,536,531,533,530,532,529,527,537,526,522,532,533,576,559,574,551,564,564,560,559,553,571,561,556,561,554,502,506,511,489,489,521,509,499,488,505,511,502,502,465,468,463,480,472,471,469,466,468,472,468,465,531,534,538,544,545,542,546,513,512,511,532,537,534,542,529,535,534,532,532,557,559,558,569,557,561,554,558,552,559,550,558,553,568,563,552,542,507,499,502,480,510,491,491,473,469,488,474,472,478,467,476,478,479,478,481,476,557,518,497,512,513,503,517,524,524,514,509,515,525,519,525,517,525,523,516,518,513,515,523,509,510,504,508,513,498,508,512,507,509,484,477,488,480,482,487,481,480,473,487,481,467,481,469,480,470,470,468,463,475,463,463,467,463,469,468,443,456,467,469,463,453,469,447,461,457,600,570,596,592,585,590,578,583,545,470,472,471,476,480,530,528,528,528,531,531,536,523,518,519,529,523,524,525,534,524,524,535,525,529,533,527,529,524,545,539,540,551,546,553,539,541,549,550,544,544,539,558,543,512,507,507,508,506,509,509,510,513,511,506,505,505,531,530,529,538,573,573,570,575,568,560,563,561,573,494,495,487,489,508,488,493,506,561,557,551,546,547,543,498,498,477,499,495,494,501,492,495,492,507,494,484,490,489,493,486,484,495,494,487,487,493,543,540,539,531,532,534,535,584,565,558,570,567,567,514,509,511,510,501,493,488,490,490,498,488,485,525,526,528,525,528,521,523,519,521,525,577,574,585,579,577,572,577,584,569,582,519,520,522,525,522,572,573,589,590,583,530,529,540,533,540,539,533,541,537,534,533,535,528,527,558,550,563,571,545,563,559,554,571,522,525,525,528,517,527,527,521,523,524,537,531,543,532,543,540,533,541,531,536,534,537,549,561,563,556,555,561,546,562,551,553,561,567,566,572,548,555,567,525,524,528,520,531,518,527,523,519,522,525,526,522,549,546,553,546,548,549,553,543,548,554,544,542,549,532,537,538,537,533,543,533,533,536,541,540,501,497,499,495,505,507,512,497,501,495,511,543,542,551,543,554,542,565,557,560,571,569,563,569,562,563,571,517,525,521,526,514,529,519,524,520,527,515,524,554,549,543,556,552,560,558,519,517,516,503,508,512,512,511,507,504,502,514,513,513,521,520,524,518,575,574,568,562,578,580,586,576,572,534,542,533,522,539,534,526,541,543,539,534,523,536,539,536,512,514,507,508,530,509,508,509,510,505,516,559,566,556,558,558,562,569,558,504,464,472,471,469,465,471,471,477,554,570,580,498,496,492,489,493,497,502,507,494,507,483,495,542,539,551,558,551,550,536,550,534,562,531,505,503,496,509,504,505,508,509,502,498,492,511,573,544,530,533,536,528,529,527,527,538,542,545,557,554,545,544,549,555,557,553,554,498,499,499,497,500,497,491,505,489,488,493,503,487,490,518,508,502,509,503,507,513,508,502,510,539,536,555,547,536,553,544,545,541,543,537,508,504,509,505,500,505,505,503,505,498,511,506,501,500,510,504,500,504,503,511,498,523,511,525,513,522,514,511,507,594,585,571,577,534,535,532,530,526,526,521,580,580,584,527,519,536,545,534,537,543,536,540,541,537,530,552,539,520,483,497,500,477,494,499,543,562,553,559,554,542,557,539,566,538,564,561,518,520,521,512,520,524,545,556,539,548,550,546,548,552,546,542,547,544,550,544,530,524,524,520,527,523,522,527,529,534,508,505,503,501,498,503,508,506,500,506,510,504,530,527,536,532,533,533,549,566,558,566,551,555,564,544,561,499,470,465,504,466,465,470,483,480,478,479,470,540,542,551,553,541,540,552,544,547,542,540,552,539,550,471,466,481,458,485,465,478,486,465,487,478,471,467,475,468,458,470,464,468,465,463,464,465,454,460,478,465,460,472,461,468,466,564,569,562,558,556,517,527,522,514,510,522,528,519,521,519,521,524,535,528,530,542,536,528,537,530,521,517,512,513,514,510,515,519,513,520,515,512,507,536,540,544,542,547,543,552,542,545,546,541,540,540,536,555,554,555,554,498,494,515,512,513,510,506,505,510,510,540,562,581,555,592,507,505,513,520,507,518,506,496,511,513,494,511,510,507,499,502,504,547,559,542,560,556,544,553,550,549,551,547,559,495,505,515,502,496,508,493,489,501,488,491,489,481,488,496,492,477,482,474,484,488,485,491,492,496,487,474,467,465,477,485,472,466,469,474,475,468,472,468,471,497,493,485,526,529,516,516,533,525,485,480,481,461,478,471,472,562,555,570,567,578,560,571,558,564,564,572,563,558,559,569,560,568,530,513,521,520,538,524,521,529,519,508,508,502,510,502,509,512,508,512,509,504,507,507,511,512,511,514,506,480,475,489,482,479,474,473,482,487,485,476,482,493,485,481,494,495,495,494,499,499,494,497,503,497,495,485,502,491,488,505,570,580,575,577,480,468,480,502,470,496,476,494,478,496,483,496,480,533,537,533,531,535,550,535,533,541,540,525,529,524,532,538,535,538,539,535,538,538,543,533,541,538,531,531,539,529,537,533,542,538,532,535,538,544,537,540,536,542,539,541,546,540,533,513,512,512,515,518,506,511,511,513,542,539,545,546,551,544,533,546,526,534,529,523,520,537,531,535,525,565,563,560,576,559,565,565,567,563,556,558,568,564,579,563,511,522,524,512,523,513,520,522,555,570,500,519,515,507,517,512,511,513,514,515,509,522,454,460,463,456,454,467,461,464,457,464,480,474,489,497,481,486,493,505,567,570,570,564,573,577,580,571,528,527,527,519,539,522,527,525,517,517,511,530,527,534,526,483,488,483,482,485,494,489,490,483,486,486,487,478,485,488,486,493,493,486,487,491,495,483,478,553,504,513,498,510,510,511,522,512,556,543,566,557,553,555,560,507,486,498,486,495,499,496,485,498,497,489,506,506,492,499,481,487,479,486,484,485,480,560,553,549,528,525,507,513,513,515,502,512,513,522,508,487,487,491,483,480,482,481,488,461,460,463,447,455,462,465,460,471,445,455,461,462,467,463,471,473,470,470,456,465,463,471,456,461,475,464,466,469,467,459,559,569,572,556,558,557,565,565,558,563,547,557,566,550,556,557,563,538,571,563,535,534,541,543,548,537,510,506,500,504,513,508,512,512,506,509,502,522,513,562,560,547,568,550,555,555,558,559,556,561,570,517,525,519,521,515,527,526,550,553,538,545,531,532,527,539,570,558,559,544,562,561,557,556,565,559,565,562,560,522,532,530,534,539,534,535,523,528,527,527,531,523,527,527,533,521,520,521,529,527,518,522,523,526,525,548,518,531,531,529,539,526,538,539,533,538,540,532,476,471,476,465,484,485,488,464,479,477,475,472,471,549,554,551,563,574,548,576,545,548,500,526,512,507,520,512,522,518,515,522,525,512,512,522,523,526,516,522,510,518,518,514,528,565,580,581,582,576,581,586,534,532,523,475,475,474,476,559,560,555,572,508,509,502,509,505,498,497,503,509,482,507,508,496,503,506,496,494,501,549,546,557,563,539,554,542,550,506,513,517,514,512,515,523,513,511,516,507,504,481,485,483,479,480,486,488,473,466,468,473,462,467,469,464,467,475,464,471,458,462,458,458,467,459,467,450,464,469,465,572,569,572,561,564,572,580,464,465,463,467,484,468,485,478,483,466,479,464,457,476,528,526,519,517,521,513,514,522,522,523,514,517,527,527,520,526,523,527,548,541,539,535,537,546,540,538,543,554,535,546,548,540,540,546,555,534,548,479,475,474,474,478,476,474,476,478,490,494,486,483,492,481,483,578,584,587,582,579,575,575,567,578,571,566,569,526,524,526,487,449,461,460,454,553,556,554,551,555,547,568,553,553,541,545,552,550,545,555,557,555,548,568,560,534,511,522,514,530,519,501,497,495,504,497,501,497,500,505,500,491,485,485,481,479,483,475,481,482,470,473,475,489,475,469,479,468,475,468,477,562,545,551,481,504,502,483,496,489,494,506,487,488,509,503,507,500,460,453,464,458,463,459,452,452,455,551,546,548,545,552,554,536,550,549,552,551,551,538,561,549,574,571,580,573,583,581,575,574,567,562,567,554,552,545,554,490,502,489,498,499,501,511,513,509,511,541,545,552,551,555,539,552,542,545,541,549,534,544,546,550,543,546,537,474,486,475,475,471,474,479,480,490,481,484,477,486,485,494,478,479,551,559,548,556,563,559,548,554,554,564,554,564,566,553,562,553,561,553,568,557,559,549,517,522,526,524,523,515,519,533,522,522,486,488,487,494,484,483,487,477,467,462,459,453,464,468,464,462,472,459,511,512,505,513,511,501,517,499,497,565,549,552,552,550,554,560,560,478,506,491,486,491,484,494,481,476,477,480,473,477,478,560,543,500,512,512,505,492,506,501,497,506,573,559,500,506,490,494,504,506,493,494,497,486,498,504,488,500,485,501,578,589,502,512,509,492,520,502,501,506,501,496,498,526,524,522,528,521,521,524,528,533,531,540,533,547,537,544,544,501,489,491,499,506,494,553,541,546,536,550,573,553,551,553,555,547,561,542,541,554,558,541,511,509,511,510,506,522,514,509,519,526,524,528,525,532,532,522,527,535,532,529,555,542,555,565,553,556,549,550,553,557,542,542,565,543,544,544,551,548,501,510,504,506,505,503,504,507,511,514,508,558,561,569,550,570,559,561,553,572,575,566,555,513,522,518,502,523,519,513,513,515,513,503,520,514,483,479,475,477,483,485,481,479,488,486,479,485,486,481,483,489,480,571,552,562,560,569,517,527,519,525,527,525,519,517,518,522,533,525,523,520,526,527,532,467,484,476,470,486,483,477,478,480,465,482,477,472,480,480,477,546,545,550,542,555,551,538,549,538,548,552,516,505,511,511,511,511,510,512,515,508,508,553,545,542,543,532,532,531,526,530,536,527,528,533,525,528,531,531,528,528,535,565,561,559,566,560,562,502,506,502,493,499,502,509,506,477,471,446,449,447,458,461,489,500,491,535,538,545,539,475,478,467,466,475,479,483,481,489,477,481,496,495,501,506,499,542,551,546,545,552,539,552,544,547,492,495,497,499,496,506,495,498,505,499,505,510,509,508,508,496,499,503,519,500,501,500,515,553,549,556,558,554,559,539,552,555,552,541,546,551,545,559,543,557,550,560,542,564,499,496,506,496,503,502,500,491,515,505,495,500,502,510,490,508,459,458,452,449,460,489,493,495,487,474,498,490,482,486,472,496,477,491,477,478,562,569,559,516,517,516,525,503,510,517,518,519,519,507,568,561,565,583,567,566,560,570,576,581,571,569,568,515,494,504,491,506,497,501,505,492,492,496,502,505,446,455,440,443,450,451,443,451,536,545,543,537,545,540,542,554,534,548,535,529,547,543,487,576,596,585,588,563,577,595,579,585,580,576,510,514,499,496,495,507,499,505,534,519,538,543,529,533,548,544,538,535,539,545,542,541,540,545,543,538,550,544,538,545,543,537,527,546,539,546,473,483,474,474,485,474,467,469,460,474,475,466,469,470,477,553,562,557,567,570,571,515,514,505,510,500,511,528,518,502,492,506,508,504,516,512,519,516,486,484,473,472,467,472,473,475,468,474,472,456,463,469,460,457,464,460,457,458,458,464,461,537,536,532,533,531,541,531,526,541,532,530,534,531,526,534,536,542,534,538,533,541,538,534,536,533,547,540,531,542,545,532,530,573,570,567,571,567,567,571,570,565,570,570,549,559,531,548,557,546,555,551,482,493,492,490,485,486,492,478,488,484,485,487,560,562,561,550,569,557,575,564,548,562,504,494,509,505,497,511,505,510,505,492,490,489,493,496,490,486,542,549,541,549,552,542,556,545,554,554,545,556,542,559,559,558,552,535,530,525,538,530,531,534,538,520,531,539,530,539,534,539,532,532,535,535,532,533,536,529,532,536,536,535,568,573,563,564,565,568,530,478,481,481,472,476,478,481,482,484,478,474,465,455,461,468,458,467,467,473,464,460,479,459,459,460,555,563,566,571,560,573,554,569,563,563,547,544,505,511,506,506,572,564,575,580,492,475,474,470,486,484,471,469,486,487,442,531,542,535,528,534,542,542,544,546,540,551,549,547,552,548,543,553,554,541,544,543,538,548,544,551,547,545,554,542,552,554,552,504,487,489,494,505,514,491,509,493,508,509,507,503,464,474,468,471,477,469,467,460,462,467,564,585,560,563,558,577,551,580,566,560,577,555,549,487,483,476,485,482,475,469,483,478,470,482,536,551,542,537,540,540,537,548,546,543,544,536,546,543,541,542,548,544,538,542,540,538,539,539,533,496,484,492,490,486,598,578,586,577,581,579,584,584,577,597,586,584,570,576,584,595,572,543,550,549,540,481,496,503,496,488,498,488,492,492,484,480,483,485,480,477,569,575,565,561,562,566,571,589,561,566,566,542,563,566,579,570,562,569,564,512,519,517,526,522,544,557,556,553,558,555,563,554,566,562,549,546,548,545,552,557,546,553,541,548,540,545,500,501,514,503,504,511,515,498,500,504,455,458,465,464,456,459,453,461,453,452,461,442,455,455,460,450,467,456,462,466,459,553,558,549,547,541,550,552,556,544,546,552,554,551,558,557,541,553,541,545,550,548,540,524,520,527,522,525,525,515,521,530,523,532,533,532,534,533,538,528,526,524,530,519,530,543,526,510,476,473,550,558,542,555,555,554,549,554,574,560,555,504,510,529,542,536,531,544,547,541,543,540,539,536,538,547,539,544,565,567,567,568,564,565,562,565,565,510,514,515,516,513,510,517,511,538,498,489,492,488,492,497,492,509,512,507,506,495,504,511,502,538,536,532,534,528,543,541,533,535,537,536,538,538,516,515,519,512,509,517,513,516,526,518,537,544,540,547,548,541,538,550,527,546,556,551,555,561,546,505,499,507,507,506,513,511,513,510,506,509,500,512,562,567,546,555,582,555,562,538,551,567,561,547,558,568,569,555,511,550,560,549,552,569,554,547,557,559,492,500,497,485,503,484,488,501,499,504,492,501,494,498,491,548,543,532,550,561,537,549,563,528,541,545,547,536,529,519,526,523,529,514,523,518,519,528,522,524,516,526,524,518,534,534,536,549,529,538,544,545,533,533,478,478,467,475,476,481,551,549,557,551,543,542,544,551,540,549,543,543,542,545,554,553,553,553,546,546,550,548,515,499,493,499,499,498,489,511,503,496,495,496,495,536,519,536,531,535,533,523,524,540,526,527,532,467,476,474,477,510,484,503,489,493,494,497,492,499,499,501,489,502,497,482,484,555,553,545,546,553,556,553,554,553,536,540,535,527,527,533,521,525,527,525,528,520,529,531,523,530,527,521,523,517,530,562,561,553,556,563,565,568,549,566,567,566,551,573,552,509,508,501,506,507,508,506,513,510,523,519,515,527,522,507,521,518,519,518,519,516,518,532,516,521,585,590,589,585,586,591,557,556,546,550,542,551,556,550,557,544,540,555,558,550,553,557,562,557,555,558,555,492,483,490,489,497,492,497,491,488,480,482,501,471,455,468,471,476,567,564,552,551,550,556,554,554,561,553,561,555,549,554,556,563,546,549,548,551,552,544,544,553,561,555,518,520,524,521,522,518,522,549,549,553,539,543,545,542,543,552,519,525,517,521,533,521,526,527,523,564,563,547,558,554,519,516,518,512,519,518,515,520,521,513,519,533,525,531,526,531,525,525,524,526,520,518,522,516,524,515,521,553,554,555,554,548,529,540,530,538,534,536,530,538,522,527,541,544,539,539,533,531,530,543,510,514,512,509,512,504,507,509,512,517,507,510,513,521,532,533,531,540,539,543,533,542,538,534,527,525,520,523,526,534,533,544,531,537,481,479,473,478,484,472,472,486,480,475,482,470,474,545,544,535,535,550,540,545,532,543,540,535,549,545,540,539,556,550,552,538,562,550,548,549,554,514,514,512,507,500,515,506,519,539,540,542,537,540,552,562,511,510,504,505,498,504,494,508,512,507,501,510,548,553,582,585,575,511,522,519,528,526,522,522,511,526,503,502,503,505,504,506,502,499,512,506,502,500,478,475,483,482,480,477,477,479,481,481,484,460,458,463,462,458,456,457,466,461,460,465,458,462,467,461,463,454,457,459,497,496,488,492,495,489,488,484,525,539,531,533,535,533,517,528,528,528,523,529,524,520,519,520,519,523,523,523,525,522,520,519,520,523,521,541,536,534,540,538,547,540,542,544,546,543,546,545,541,547,534,540,542,518,512,524,519,520,528,514,529,514,520,524,544,550,548,542,538,538,547,545,551,552,543,545,541,540,548,544,534,544,549,540,544,563,513,519,519,526,481,484,488,483,491,480,475,472,452,457,454,460,464,465,455,464,454,458,471,467,458,460,508,506,503,503,506,510,498,501,499,509,499,502,494,565,566,564,562,569,567,563,565,555,558,547,545,558,546,550,547,561,558,508,517,505,510,513,521,500,501,523,514,512,479,461,461,461,457,465,467,465,465,473,492,488,488,495,494,487,500,490,489,497,489,494,488,497,482,566,568,571,575,573,580,577,491,471,496,524,533,532,524,523,534,537,536,528,533,537,541,544,535,539,527,533,530,534,532,528,540,533,564,577,575,575,559,543,544,545,555,553,550,553,545,557,490,487,493,482,492,493,479,490,491,493,479,487,481,464,466,458,459,456,455,459,460,442,454,458,460,542,550,547,552,549,569,544,539,546,537,548,539,531,544,545,534,551,495,483,491,474,489,480,484,486,498,495,485,494,490,489,488,492,484,473,457,473,468,473,465,471,462,471,458,570,563,569,554,575,488,486,495,498,495,489,494,497,488,493,502,555,545,547,569,547,544,541,548,572,563,563,553,566,502,506,513,498,501,496,495,504,511,502,501,497,506,500,546,546,556,564,556,544,568,542,569,554,552,548,565,556,493,509,507,505,511,514,502,509,499,500,515,503,508,503,504,504,496,506,503,459,448,451,455,464,454,456,457,468,458,461,486,489,493,486,487,489,496,491,486,482,488,491,514,510,511,555,552,552,547,548,555,552,548,551,554,549,560,539,553,552,546,541,543,548,514,509,514,506,508,511,511,514,512,507,504,548,569,566,571,565,570,561,564,558,563,582,577,577,555,546,554,502,508,512,516,506,513,508,521,502,504,500,509,514,490,492,489,487,490,488,494,493,499,495,503,488,493,494,503,492,499,479,486,471,479,481,505,499,505,507,504,507,506,501,501,535,554,549,548,541,532,546,554,557,576,542,556,560,572,567,559,520,518,516,508,530,511,571,573,570,562,571,568,517,521,523,517,515,516,506,526,478,466,465,462,466,468,467,461,460,458,448,455,440,457,451,453,440,583,583,565,566,569,586,580,565,553,545,545,549,545,553,549,552,554,547,549,554,550,550,552,553,549,552,546,541,543,547,545,544,555,538,548,540,501,501,492,496,496,498,494,485,496,495,508,510,505,505,461,459,460,460,445,456,456,457,461,460,451,505,498,500,507,527,543,539,539,536,533,542,537,500,482,498,504,512,490,505,500,510,502,572,586,567,547,562,562,579,570,569,564,566,561,576,477,477,474,483,466,484,486,481,492,461,525,529,527,536,530,520,525,534,547,527,532,515,516,518,535,539,553,564,553,568,564,563,533,525,535,528,526,523,531,531,531,532,530,531,543,529,534,526,525,539,505,525,519,530,524,517,523,526,512,514,514,521,600,584,592,585,599,588,593,604,574,592,586,590,597,591,526,555,542,550,551,518,503,506,489,512,503,494,507,506,503,506,457,470,467,473,469,466,459,470,467,471,472,472,466,459,449,448,449,449,496,501,496,495,500,490,497,498,492,501,499,497,499,498,498,501,504,489,505,493,511,513,516,513,511,513,515,514,512,509,543,548,544,550,543,536,538,546,540,555,543,551,535,538,542,552,488,480,488,475,481,573,581,568,583,584,578,577,579,569,595,569,592,581,579,572,598,582,585,582,581,581,538,536,530,539,532,531,540,536,540,534,485,491,487,483,488,483,492,487,492,477,486,493,482,481,487,484,501,491,493,490,497,496,496,500,499,502,495,493,492,519,532,532,534,534,466,453,455,460,462,462,458,451,543,535,549,531,543,544,541,544,549,552,530,542,543,555,544,547,540,548,546,547,546,539,537,539,530,544,538,552,540,553,541,538,482,477,476,483,506,488,576,568,572,584,571,568,569,573,563,576,575,577,578,587,542,544,536,542,533,527,539,531,544,533,537,537,546,533,541,534,540,525,520,512,527,519,531,521,516,516,519,517,522,527,554,557,574,557,509,508,512,530,532,532,529,525,533,535,529,529,537,530,538,528,533,554,506,521,514,500,520,519,502,479,490,485,480,487,486,478,479,475,462,475,459,469,466,473,466,460,467,467,461,472,547,544,557,562,554,556,553,539,559,551,553,557,551,547,490,475,472,535,539,544,553,560,551,544,548,533,484,478,477,479,477,503,506,502,491,541,538,540,534,520,518,516,521,518,519,508,516,513,514,518,512,528,533,529,529,527,527,552,545,552,552,572,544,507,505,492,486,507,500,501,494,501,496,492,504,499,498,505,513,499,557,561,553,551,563,564,552,551,485,511,500,504,515,500,494,498,481,506,486,513,501,465,470,468,470,457,465,468,464,472,460,466,457,461,458,460,465,453,446,466,458,464,463,456,455,458,562,538,558,561,567,559,564,556,550,571,554,562,545,513,513,506,510,503,515,505,508,505,501,500,498,498,501,496,514,503,502,505,500,499,496,500,506,520,529,526,519,530,530,535,535,536,531,535,539,533,539,544,538,541,541,548,550,549,535,550,541,549,555,541,546,557,545,549,553,490,483,493,483,490,502,489,501,496,503,432,434,448,439,447,437,435,429,434,519,520,528,521,523,512,535,531,536,536,537,540,538,549,546,546,514,518,513,502,506,510,511,513,514,508,513,515,497,552,562,553,477,486,492,492,476,487,480,482,485,493,474,489,474,486,491,477,476,570,579,567,570,575,584,579,583,565,587,572,571,563,574,509,508,504,504,492,518,498,503,503,501,512,500,502,503,502,502,505,576,562,573,574,564,572,571,582,586,583,583,528,529,519,513,531,530,515,507,521,508,492,491,487,486,484,493,488,498,490,494,491,486,508,517,548,560,563,549,556,557,551,547,553,559,547,559,554,551,561,564,553,553,552,567,509,521,523,512,513,502,517,519,514,510,500,502,506,489,486,491,488,487,487,489,491,505,544,537,533,536,542,537,530,542,527,522,525,525,520,523,527,524,543,545,544,550,542,540,543,542,545,517,511,518,519,516,516,569,574,553,576,566,566,561,559,563,564,541,524,533,530,525,524,535,526,526,534,512,506,501,512,513,507,487,488,488,490,490,489,499,491,495,493,469,451,455,465,457,467,463,511,510,500,509,501,505,512,503,490,499,562,565,567,568,562,567,567,565,558,555,567,557,567,568,574,567,562,520,519,516,528,517,525,510,531,529,522,514,537,518,521,513,474,471,476,475,478,483,468,472,484,477,477,477,484,485,487,478,595,591,589,609,599,603,619,594,602,546,554,542,552,546,545,501,489,494,498,491,491,489,482,496,488,492,521,569,585,580,584,590,559,548,549,555,486,493,494,490,493,495,491,493,505,490,492,477,480,482,480,486,479,481,485,479,494,480,486,578,576,567,571,581,560,570,570,558,575,577,543,544,510,515,511,511,517,506,517,514,513,524,512,503,506,500,497,500,504,505,523,530,523,529,533,547,543,546,550,538,535,542,550,540,529,538,546,544,558,555,557,558,565,554,568,560,561,529,509,509,506,509,514,509,513,501,479,469,478,482,498,486,496,480,491,486,480,492,579,574,467,469,482,481,495,489,476,520,518,519,521,521,517,521,517,526,522,514,521,521,523,527,528,522,524,528,520,519,519,520,518,524,526,523,522,538,536,541,533,539,546,535,547,538,550,543,536,543,543,547,535,552,547,535,514,513,564,577,583,574,574,584,566,578,576,571,571,588,569,580,559,517,525,526,533,523,508,516,523,521,530,518,521,505,507,505,504,509,508,503,506,505,494,477,468,485,486,484,485,483,477,484,484,479,487,479,458,450,454,449,462,575,572,557,578,551,555,560,566,562,571,552,562,474,480,545,548,548,552,551,545,534,550,544,554,535,541,540,534,548,542,540,545,543,542,548,535,554,542,549,546,537,500,496,511,501,598,591,574,596,594,535,544,535,537,532,533,547,545,539,542,545,515,520,521,518,531,535,542,530,528,532,532,533,534,529,526,536,521,517,512,516,518,532,528,533,521,539,542,526,531,543,540,528,540,539,531,544,532,508,509,507,556,546,546,558,564,552,550,558,553,547,562,573,475,484,464,481,477,492,469,482,473,474,485,480,472,464,478,477,469,465,586,577,581,563,566,580,572,488,464,475,484,480,490,471,499,471,473,471,515,519,512,518,524,521,516,515,523,509,518,508,526,515,519,518,522,513,519,509,513,527,528,528,535,533,532,534,530,528,534,534,528,529,527,576,568,566,563,565,564,573,562,561,531,529,536,524,537,530,527,535,490,483,490,594,520,530,538,541,532,538,523,547,564,564,550,561,558,552,553,544,547,552,558,554,527,528,519,529,532,527,522,523,558,546,554,553,550,557,548,547,548,551,555,483,494,492,494,473,496,495,495,492,482,506,486,482,493,487,485,490,485,489,462,465,460,571,558,573,572,558,558,567,569,570,565,553,563,562,556,563,554,564,561,563,565,552,556,495,498,498,497,497,514,490,491,508,503,506,506,515,532,522,518,511,520,518,528,522,559,557,558,545,549,503,500,508,512,502,504,488,506,499,510,491,507,491,513,496,502,508,498,451,467,465,466,464,470,467,503,492,488,487,495,486,493,493,546,548,550,543,553,542,549,550,550,531,526,531,534,537,534,527,535,530,538,528,533,533,525,531,537,537,531,528,537,532,531,535,534,565,558,567,558,560,566,567,570,557,554,563,564,562,565,563,566,559,565,560,558,568,513,534,517,522,534,520,532,512,521,527,507,480,474,482,481,479,481,478,489,488,481,497,503,495,563,575,574,568,563,568,560,561,558,577,494,497,509,524,522,513,528,523,514,518,511,505,517,465,486,492,486,499,494,490,497,516,537,536,526,517,519,521,528,488,483,557,560,544,547,574,552,547,501,503,496,491,498,503,493,492,486,496,514,506,496,470,486,485,485,478,481,476,470,485,482,481,480,468,471,485,479,480,566,564,566,568,513,515,524,524,516,517,506,516,513,520,512,524,506,508,503,499,499,509,515,505,504,487,485,487,490,481,480,488,484,478,475,486,486,486,488,485,492,489,491,485,490,487,486,493,490,484,491,492,485,489,490,489,475,471,474,471,467,472,486,471,482,474,469,476,472,475,470,458,458,462,470,455,455,458,466,458,456,463,470,454,458,463,459,449,461,457,452,537,540,554,567,574,564,562,559,570,563,561,575,562,574,532,527,536,532,536,533,542,524,535,506,515,501,512,507,512,512,544,554,556,550,549,552,553,554,549,554,561,552,546,535,538,546,545,556,549,523,527,530,525,526,529,527,543,538,543,532,541,536,534,539,543,542,536,534,533,529,524,529,523,528,522,531,527,524,522,523,525,531,530,521,528,526,524,537,537,531,531,549,537,538,503,509,498,536,544,560,548,573,550,561,551,551,550,568,556,555,555,565,555,494,493,493,504,488,500,502,511,512,523,549,557,554,560,555,551,534,531,542,539,543,546,535,523,526,520,529,524,526,529,529,528,528,527,528,555,564,564,559,564,565,509,512,508,520,513,510,513,511,516,512,514,509,514,520,510,512,507,545,534,546,553,554,549,547,541,539,547,543,555,550,541,546,510,507,504,523,511,500,515,510,514,515,515,463,459,481,483,481,478,485,486,485,486,488,489,485,485,491,483,491,483,492,492,483,493,489,497,502,500,501,506,505,501,499,504,505,507,505,500,494,493,497,498,504,497,489,488,493,484,484,479,483,497,488,496,489,489,490,494,483,486,481,484,490,496,492,499,497,500,493,487,491,500,499,493,532,534,533,528,527,528,559,546,545,555,558,557,557,551,540,558,546,565,557,543,562,553,545,568,491,498,492,491,503,503,584,591,576,573,585,509,502,509,499,497,511,512,534,538,541,515,533,527,534,538,541,541,538,538,536,538,542,557,555,485,481,491,486,481,486,474,471,489,492,477,537,536,543,534,536,533,536,539,566,571,574,565,535,538,520,515,517,520,516,512,515,510,514,523,514,544,554,549,537,549,543,548,554,553,540,542,539,542,548,561,543,551,510,505,512,505,506,509,506,506,496,557,564,556,561,558,559,556,552,547,553,545,547,538,543,510,511,519,514,512,511,508,513,524,571,594,570,494,503,492,487,499,504,496,488,502,454,467,469,468,453,476,464,468,458,474,454,463,549,547,557,556,545,549,562,568,568,570,572,563,567,567,559,572,568,579,560,571,570,537,542,536,540,536,542,543,530,527,558,550,550,561,563,560,511,508,512,510,505,518,483,480,485,478,487,488,479,487,485,479,467,470,464,469,460,464,465,458,448,476,482,576,572,563,579,555,560,555,568,560,564,580,572,517,526,523,542,547,550,535,550,550,544,540,557,508,498,503,535,539,550,548,549,550,563,546,536,555,548,551,549,549,494,498,505,499,504,495,498,496,501,492,498,494,495,505,499,495,500,502,496,492,492,495,485,497,544,549,550,541,536,544,545,520,532,522,521,515,518,530,519,512,592,593,599,597,593,595,589,599,587,584,595,563,549,555,556,563,556,563,565,558,548,562,563,559,553,558,556,544,529,516,506,514,518,514,512,505,507,497,499,498,503,496,495,509,463,450,444,460,462,463,462,461,459,453,455,454,458,458,458,451,527,544,534,539,539,530,531,532,532,534,531,531,538,533,540,535,534,530,536,530,532,527,535,537,533,533,523,523,524,540,541,538,561,559,546,544,555,544,555,544,546,542,540,535,505,519,514,515,510,515,508,505,495,508,525,520,512,506,504,469,474,470,477,467,438,430,444,443,443,435,440,454,446,443,482,486,486,482,485,475,492,487,483,492,541,538,537,547,540,527,532,532,542,536,540,541,530,545,535,539,536,536,538,536,544,553,569,555,557,554,556,551,559,530,527,521,528,530,522,520,528,528,525,536,527,524,525,554,567,562,570,562,566,569,553,566,568,560,554,545,554,548,548,541,547,546,553,547,544,547,547,506,500,497,495,502,505,493,496,498,516,495,497,497,499,500,499,525,523,529,532,528,529,520,526,531,594,583,556,555,516,503,519,506,526,487,476,484,481,479,481,473,496,500,496,537,532,534,535,538,538,530,538,525,530,536,537,541,568,564,553,558,566,561,550,556,555,552,563,569,564,552,570,465,478,490,460,462,487,498,492,532,544,537,562,542,550,555,554,541,484,476,473,475,487,471,489,479,460,465,442,441,448,443,446,444,445,444,450,442,458,548,544,541,545,553,533,545,540,543,540,539,561,567,571,582,582,532,530,527,506,531,527,533,522,525,519,525,502,490,492,497,504,578,582,588,575,584,587,577,580,578,597,596,591,538,551,537,544,539,528,542,540,545,536,543,541,544,545,530,531,527,529,529,525,529,527,530,524,526,541,546,559,551,558,557,551,542,564,549,553,546,501,515,513,511,502,512,513,501,502,513,518,512,509,515,518,480,479,476,479,473,482,471,478,463,462,459,456,461,466,468,485,475,477,481,479,478,480,475,511,522,510,516,506,505,520,513,589,593,581,579,580,576,582,548,534,557,557,562,554,549,553,544,547,550,551,549,541,508,515,505,515,510,474,478,483,486,490,457,466,474,464,470,458,464,461,465,490,491,561,518,511,510,509,501,516,505,518,523,518,526,520,512,508,515,514,515,562,482,488,472,475,483,482,477,494,483,476,476,484,489,477,484,476,478,478,478,501,483,492,494,491,493,485,490,492,479,490,482,486,545,535,540,539,532,545,538,541,542,553,566,556,555,569,508,511,499,572,581,567,563,574,579,550,582,565,569,490,500,494,501,499,503,518,497,506,494,584,587,579,586,577,587,581,585,579,528,528,526,526,525,538,534,510,514,505,507,502,506,505,507,561,562,573,591,551,559,481,482,491,485,466,483,481,480,486,471,548,552,539,553,539,564,570,573,563,560,571,568,577,534,533,505,512,509,508,505,511,529,532,533,520,523,589,587,584,589,583,591,590,576,589,586,590,590,592,587,554,554,565,559,556,552,548,549,506,515,516,508,476,478,482,484,477,480,504,498,509,496,506,504,495,563,557,556,563,547,535,528,536,533,532,531,519,525,519,511,513,516,519,518,517,511,538,539,563,562,572,555,552,562,568,561,562,567,516,497,501,494,517,496,507,506,502,512,500,513,518,485,480,489,474,475,479,477,476,468,476,471,482,476,478,487,477,482,471,523,506,511,515,515,515,507,516,514,514,518,549,548,549,532,542,551,543,534,551,540,538,547,500,506,504,504,501,489,498,490,498,486,485,494,494,489,492,491,514,521,528,531,521,523,525,529,533,528,523,514,522,528,580,570,581,574,588,578,581,575,580,571,569,588,547,531,537,530,545,529,533,529,534,538,541,529,534,539,547,516,511,507,511,513,517,507,511,514,514,509,504,511,509,512,509,508,516,506,509,512,506,527,526,518,520,523,518,522,531,577,591,580,584,568,582,586,567,583,587,580,588,577,520,519,549,543,544,549,542,549,552,541,537,543,545,540,499,504,508,501,512,513,507,559,562,556,565,563,541,493,488,497,477,497,505,493,484,493,491,494,492,494,490,493,560,579,582,554,565,510,522,564,568,565,569,505,525,522,511,510,518,517,503,499,517,506,514,515,517,507,520,506,514,517,484,493,485,488,498,482,484,483,490,508,509,507,509,517,510,508,510,504,512,523,507,504,513,501,512,549,554,560,547,557,566,561,559,501,505,510,453,453,450,452,456,457,457,454,447,455,456,454,449,451,452,451,451,445,451,452,464,456,536,538,533,530,533,539,530,539,547,558,552,553,556,545,561,569,555,556,564,559,557,553,552,563,566,558,551,557,499,495,497,503,502,502,494,500,498,488,488,493,487,495,491,490,492,490,485,490,490,491,489,491,496,492,490,588,570,568,581,576,582,575,584,568,479,472,483,487,486,481,528,540,533,524,522,544,542,545,535,542,515,506,508,515,514,533,543,540,536,530,527,536,538,528,557,564,559,574,562,556,561,485,486,499,494,550,556,557,556,561,561,550,522,519,515,518,520,522,519,520,523,518,522,517,560,559,558,567,560,556,562,558,555,566,553,546,556,550,551,545,502,509,521,516,505,510,516,476,483,469,474,474,477,475,479,479,476,483,474,464,473,467,525,513,508,497,510,505,508,504,508,503,512,512,510,555,562,561,565,561,560,554,565,554,550,562,561,564,512,516,512,523,513,528,526,512,508,516,515,533,499,510,512,508,510,507,512,510,507,512,507,506,507,515,515,506,497,499,494,479,479,490,484,488,482,483,485,477,487,479,479,481,470,482,483,475,482,479,486,475,480,482,480,475,482,561,566,520,512,511,511,517,511,510,504,499,512,514,513,519,515,474,475,472,466,477,475,473,483,478,472,477,472,473,471,476,498,493,499,498,492,497,500,500,496,496,500,502,502,508,515,523,522,535,524,522,533,533,530,501,497,504,503,501,496,558,540,546,555,555,543,551,517,520,514,516,517,520,517,517,514,522,524,522,516,525,520,522,512,506,512,509,501,503,506,505,505,511,508,501,513,524,517,537,526,537,524,533,535,535,532,534,528,523,527,529,539,528,536,524,533,540,519,518,522,508,520,520,518,517,522,517,517,519,510,521,534,527,528,524,532,534,530,525,510,520,511,520,511,522,509,515,512,510,571,580,562,568,573,555,558,565,580,575,495,488,490,505,515,509,503,494,492,491,496,500,511,502,516,503,512,484,483,486,492,493,581,577,572,576,573,564,572,567,501,497,497,491,498,507,490,481,501,498,498,497,576,580,586,574,571,574,576,581,582,568,576,540,525,542,530,538,532,540,533,527,527,533,535,535,536,566,556,557,560,550,471,473,485,468,476,480,476,482,482,479,486,486,482,484,477,482,484,483,482,491,480,572,567,570,570,564,567,563,554,564,554,563,566,566,574,518,519,510,516,524,480,495,493,487,481,495,479,487,480,489,478,487,484,482,484,478,480,479,474,479,479,485,466,450,450,448,496,503,495,503,496,489,560,546,545,549,546,541,548,548,491,506,496,508,498,504,505,501,502,496,506,504,510,509,543,535,537,531,534,547,526,529,535,537,537,532,540,534,535,537,539,541,542,536,535,541,539,534,541,540,532,540,542,537,543,530,546,529,542,539,532,544,549,545,550,539,542,512,511,515,503,509,514,510,509,506,507,507,512,551,557,553,557,539,553,554,553,549,556,560,556,484,486,505,505,504,501,510,508,508,497,562,567,556,505,510,510,513,516,511,504,510,526,518,506,509,531,516,519,516,513,469,476,477,484,473,480,483,478,483,474,479,481,445,444,441,433,456,442,443,540,539,541,530,539,552,547,548,537,527,526,527,519,524,524,523,521,525,523,521,520,518,559,559,565,557,553,555,556,541,553,548,556,562,491,488,489,499,485,485,486,480,504,492,493,489,489,492,451,461,467,448,463,460,455,459,465,458,459,461,469,472,471,468,458,455,458,545,531,541,544,540,543,542,551,548,538,545,542,537,542,543,550,538,552,541,529,528,527,531,530,534,531,535,526,534,534,529,527,536,530,534,561,564,560,573,564,560,569,565,565,512,502,510,505,518,521,474,472,478,477,484,478,477,470,478,470,478,474,475,460,459,464,458,581,596,589,581,594,572,593,595,582,577,498,557,564,556,551,556,552,538,545,550,555,541,545,549,551,553,548,510,510,494,498,507,516,512,500,492,481,488,479,474,471,473,477,467,462,536,549,546,568,565,565,561,567,576,576,567,582,567,575,566,565,578,535,552,543,533,531,534,528,527,529,536,535,527,531,541,530,532,531,528,532,538,533,531,529,532,526,523,531,530,522,533,529,528,530,516,527,530,528,542,522,491,503,498,488,502,497,504,482,492,498,486,490,556,557,558,552,546,557,571,558,545,557,514,522,515,517,511,510,509,520,517,506,512,513,520,508,498,513,516,513,507,490,492,496,492,497,490,492,488,493,495,489,498,487,496,493,495,485,492,483,473,467,464,467,464,471,463,470,452,455,470,463,453,452,462,454,454,457,452,454,458,452,481,566,560,574,570,568,568,558,560,579,581,548,563,573,581,502,503,516,503,506,501,505,500,490,522,503,548,539,545,546,549,542,543,551,554,542,543,546,504,502,498,483,491,515,496,494,491,491,502,506,508,509,501,494,506,506,497,506,498,499,512,499,512,492,496,508,503,538,538,547,541,540,547,543,547,546,557,541,552,545,545,551,549,546,485,499,495,496,497,494,496,494,487,502,492,496,495,498,501,500,508,502,498,510,511,508,509,512,510,505,510,514,523,531,528,527,530,532,534,530,532,530,539,529,537,540,540,532,530,524,541,533,537,533,541,533,546,547,540,536,552,540,542,546,544,553,546,548,540,543,541,542,547,527,528,532,530,563,553,565,566,558,559,566,559,575,552,562,572,564,514,527,516,512,513,514,531,484,492,487,487,483,477,482,488,481,489,485,480,488,478,484,491,494,497,494,503,497,506,532,536,538,531,544,536,526,528,540,549,547,546,562,559,563,555,557,550,546,561,562,559,566,560,557,505,512,515,483,507,503,498,488,483,488,490,481,482,486,486,494,490,484,497,498,501,508,499,494,498,497,500,495,497,494,499,499,499,484,481,478,481,480,491,483,488,495,478,490,478,489,485,496,488,485,484,478,487,488,574,587,577,571,570,567,575,555,514,513,512,504,514,509,514,507,503,513,548,557,507,489,493,493,506,500,487,501,492,500,498,500,496,489,501,498,501,503,510,525,517,519,529,523,519,533,517,518,516,524,518,511,560,548,556,516,507,460,475,470,466,477,468,459,469,473,475,457,462,470,444,430,438,434,441,439,438,440,438,434,443,448,436,440,434,474,492,482,479,484,478,470,485,487,489,479,483,479,524,519,521,525,587,595,592,583,584,571,583,581,591,560,510,506,501,528,532,535,533,528,531,545,544,541,541,547,537,544,544,551,549,542,546,559,552,553,563,553,555,568,557,557,562,563,569,560,512,524,512,501,507,506,512,517,507,511,496,492,491,497,495,495,493,493,490,498,493,458,458,447,458,447,454,458,446,456,461,461,461,461,457,458,453,453,453,458,457,469,457,455,451,458,452,458,453,457,549,543,551,541,549,541,541,550,546,547,552,550,549,538,556,553,552,535,556,548,540,550,552,561,546,542,552,501,502,508,496,510,504,502,549,567,563,541,565,494,492,493,493,510,489,500,487,485,484,486,495,486,480,480,488,473,485,589,561,565,575,569,565,554,557,554,562,548,567,514,513,514,516,517,509,500,499,494,501,503,497,500,504,502,500,503,504,502,500,466,469,468,469,469,473,544,557,553,540,489,489,495,503,494,492,488,478,495,500,502,478,479,488,485,483,486,480,591,592,540,550,536,535,539,546,544,536,536,542,534,534,538,541,534,546,517,514,524,513,511,513,515,504,513,509,513,536,530,536,540,536,531,533,526,569,555,558,556,562,552,552,548,561,556,547,513,508,524,459,463,459,458,463,459,457,467,457,457,464,453,462,461,463,441,425,436,433,438,431,436,429,435,454,447,447,449,437,436,438,438,434,430,442,532,535,527,529,533,540,535,544,540,534,538,533,539,527,541,542,546,544,538,535,544,544,543,547,549,540,543,532,527,526,531,520,529,523,527,524,519,524,526,526,529,522,526,532,530,539,535,536,491,490,491,493,480,492,487,476,491,492,491,497,493,602,583,592,595,594,598,554,541,543,544,543,525,527,539,522,527,534,537,520,527,526,533,523,530,566,555,579,568,529,529,530,530,530,533,527,527,532,538,531,531,531,528,529,526,560,554,544,546,556,552,554,551,553,481,493,499,498,506,500,504,503,501,505,509,496,489,493,494,488,506,467,480,472,468,503,498,496,494,494,492,494,495,502,493,486,489,493,497,498,498,491,537,525,530,521,513,527,513,518,518,517,519,518,515,514,519,520,519,514,553,550,543,543,555,553,548,551,546,545,551,550,551,525,524,530,532,529,530,531,534,531,559,561,573,568,560,567,569,569,555,553,531,531,526,530,527,522,531,530,523,527,531,534,530,528,533,527,533,542,539,546,537,538,546,543,541,543,553,541,540,536,542,530,537,539,539,536,534,532,521,522,516,520,524,521,516,530,521,528,543,551,541,543,539,540,541,510,523,517,529,578,588,581,585,601,586,587,587,599,591,589,547,550,545,549,544,535,474,472,473,470,471,467,468,456,562,578,586,470,476,473,465,483,468,456,477,469,466,554,550,543,546,539,545,545,539,533,544,548,548,542,542,548,540,544,548,545,489,486,468,481,486,480,471,478,485,479,471,495,501,507,503,495,491,481,498,510,542,536,536,542,541,538,527,551,536,536,537,536,510,519,522,514,517,522,515,540,547,574,566,567,583,561,575,578,562,583,569,531,520,527,527,536,519,521,530,525,528,520,520,517,479,485,454,455,459,463,459,454,451,453,555,553,551,554,554,542,550,550,549,558,547,540,556,550,554,547,560,557,543,579,574,578,572,560,581,549,546,549,547,551,547,552,554,554,550,527,528,514,526,525,508,522,517,509,498,504,495,497,497,502,497,497,503,500,499,500,482,493,497,506,503,504,501,497,500,502,499,499,547,562,562,561,561,566,555,509,503,497,504,504,506,490,499,508,502,502,478,476,475,483,474,478,475,489,478,479,488,479,480,491,487,495,493,469,465,472,476,457,468,469,468,463,468,462,459,467,463,439,436,445,433,434,443,425,433,430,451,438,449,450,427,439,444,448,427,423,444,525,528,526,524,522,519,517,516,522,513,519,542,541,539,537,541,532,544,546,541,530,532,544,534,550,539,545,540,544,540,503,505,505,500,508,494,503,507,509,500,567,497,499,496,486,493,497,503,512,494,496,562,556,582,576,577,543,562,552,556,475,481,480,486,479,479,472,478,480,474,482,474,491,465,478,545,550,544,541,556,549,532,552,543,543,539,542,539,545,543,535,532,545,549,539,548,549,537,468,463,477,477,472,478,485,485,472,474,474,462,485,474,509,488,500,501,512,509,541,530,533,530,544,539,536,543,541,536,541,510,496,506,510,544,560,561,543,533,551,538,560,556,549,555,561,530,562,573,543,526,517,519,517,527,525,520,521,521,523,550,538,547,551,542,547,543,553,551,542,549,533,526,541,520,540,529,534,518,521,537,520,565,553,550,561,551,561,561,556,560,510,496,488,493,493,499,494,490,498,498,543,535,529,526,523,526,525,528,519,506,509,495,507,501,503,497,507,508,511,496,500,511,506,498,493,503,510,499,555,548,563,564,549,549,541,554,556,556,550,553,519,526,525,524,522,525,529,557,544,536,547,546,542,547,542,549,543,544,541,541,541,535,537,536,591,524,521,513,521,527,525,525,521,519,523,512,502,508,507,497,510,506,482,470,476,440,449,455,441,443,431,446,433,439,443,441,449,436,436,433,432,433,451,441,439,443,439,494,497,489,494,496,485,486,491,493,483,534,514,499,513,512,555,555,544,556,538,560,562,545,545,551,535,542,550,484,490,487,472,471,476,486,490,485,494,490,488,494,493,492,484,492,540,554,552,547,554,561,537,533,530,533,532,566,568,578,570,553,566,521,520,513,524,516,516,523,556,585,567,579,568,574,568,569,562,575,588,574,574,564,579,579,578,582,517,533,517,524,531,526,523,510,517,521,527,522,519,530,517,536,521,525,530,489,484,484,482,488,485,480,491,492,487,489,477,480,486,485,481,482,484,484,483,484,483,482,484,493,482,488,488,491,489,487,487,490,491,490,489,493,461,460,464,458,464,459,455,484,490,481,491,525,530,521,520,528,523,526,591,579,591,576,590,586,583,578,534,514,536,530,533,540,521,533,525,537,528,528,531,526,524,498,483,500,489,491,483,492,494,492,484,495,503,602,603,573,588,586,582,581,573,587,586,573,579,572,582,577,528,527,536,514,518,522,584,580,569,586,586,590,576,582,585,574,581,575,590,572,590,582,584,573,539,537,535,537,540,537,527,530,540,540,541,533,533,548,558,564,564,543,546,564,524,516,518,510,514,510,521,507,516,524,512,571,568,562,560,553,556,568,559,561,554,484,465,457,475,464,474,469,473,470,475,475,473,466,471,473,473,555,513,523,508,510,512,520,524,464,466,464,456,459,460,458,430,443,434,437,438,435,441,440,513,520,518,517,514,526,525,521,522,514,521,524,546,543,538,544,551,541,550,559,557,551,554,554,553,564,557,563,561,519,532,520,522,528,518,534,519,513,522,528,527,517,525,525,519,525,537,523,518,501,508,507,507,504,507,512,501,513,511,506,506,479,487,481,477,479,474,490,488,489,494,488,494,486,488,492,495,498,488,572,558,580,569,572,567,577,484,503,512,507,493,508,518,490,506,523,515,492,512,456,459,460,449,456,466,456,459,462,476,460,466,461,464,452,465,555,559,560,568,561,563,546,549,543,556,548,551,548,549,509,502,502,513,505,499,513,507,486,491,501,497,598,602,603,591,594,604,603,605,600,601,590,612,594,550,557,544,557,553,560,546,547,550,555,512,505,510,493,515,509,475,481,474,482,483,481,479,479,447,462,447,448,453,439,554,559,554,554,562,550,554,557,569,566,569,565,555,560,564,559,564,553,559,561,566,553,570,562,558,496,487,496,486,497,489,559,569,572,563,557,563,557,566,581,562,490,486,504,504,490,500,498,449,435,451,461,439,449,441,438,438,453,441,451,453,542,534,537,529,536,536,537,533,543,557,541,545,544,538,534,547,539,542,550,538,545,535,535,540,519,517,522,516,523,518,511,518,524,521,517,513,553,553,547,551,556,547,540,549,553,551,540,547,548,538,540,541,545,540,545,544,537,536,543,548,545,546,544,547,538,554,550,539,558,566,575,571,579,566,508,501,519,502,503,514,545,535,541,545,535,544,537,538,543,544,543,540,541,495,494,501,494,502,504,496,513,499,591,581,560,565,566,570,555,564,492,479,468,466,475,520,533,518,526,525,522,521,524,521,521,544,533,539,544,545,533,537,561,539,544,555,543,543,553,552,503,493,502,492,510,504,494,498,502,497,490,502,601,600,593,593,599,532,536,537,540,545,541,511,511,514,518,517,520,562,547,552,554,549,563,545,546,548,553,556,551,530,542,544,548,535,543,548,543,540,546,540,546,542,525,532,538,529,527,534,530,526,524,533,532,531,526,515,514,521,520,518,521,511,521,520,520,518,526,515,544,552,548,559,549,557,545,546,546,556,559,546,543,567,552,543,493,496,509,499,492,499,500,497,502,498,497,507,482,477,489,490,484,487,485,492,485,485,488,482,482,489,488,505,502,503,503,499,497,493,504,501,499,495,498,500,503,497,500,502,490,488,497,487,487,492,486,486,486,477,502,493,491,487,486,479,482,478,490,484,480,487,486,485,488,485,481,480,483,479,477,484,480,479,481,486,485,481,490,495,492,499,490,490,496,494,497,493,497,494,499,494,491,492,492,494,542,544,536,569,558,519,522,519,509,570,575,562,559,521,520,515,527,524,520,519,521,533,521,520,523,517,487,499,500,499,504,510,500,501,496,499,500,502,496,493,494,468,456,462,504,501,497,497,495,518,505,511,515,492,502,496,502,506,537,535,543,538,530,531,545,537,508,505,506,497,503,500,506,505,507,558,573,559,534,558,564,563,562,575,564,558,572,576,555,507,508,541,548,542,535,540,539,548,537,535,551,543,547,542,539,548,538,544,516,513,519,523,521,518,541,519,534,481,482,475,564,545,541,559,552,553,560,562,545,559,555,554,562,558,542,520,526,521,517,531,521,530,531,526,523,533,532,518,514,570,558,561,554,550,556,557,554,562,566,561,572,568,556,567,553,561,564,568,552,557,554,512,514,505,507,523,515,496,497,505,504,438,431,440,448,445,453,449,441,449,453,451,447,449,448,443,447,548,551,551,561,565,544,550,549,552,545,553,548,545,550,498,495,486,489,502,499,488,491,490,484,487,497,495,498,498,494,497,499,493,498,528,553,533,540,541,538,533,543,559,565,567,568,566,567,566,567,561,564,567,568,576,531,528,542,528,533,540,539,540,526,536,529,527,534,530,458,475,479,466,469,479,479,466,490,477,467,463,477,488,479,468,473,474,482,560,573,561,575,562,546,497,499,494,572,581,593,579,577,591,575,585,595,576,579,523,548,539,552,531,543,543,544,532,544,542,541,548,548,547,543,530,543,554,513,500,483,489,486,492,490,489,480,483,489,482,481,487,476,478,477,479,479,479,472,474,471,472,470,469,472,476,475,472,473,481,470,475,478,456,453,452,452,452,464,463,557,548,553,561,536,555,559,554,548,539,551,553,561,563,555,520,550,553,560,497,500,489,488,497,503,565,575,589,575,572,594,582,586,577,569,589,576,520,533,539,536,529,522,522,528,546,527,502,511,501,485,504,509,488,571,558,556,548,566,557,557,565,578,553,570,560,559,554,530,520,512,515,511,507,515,522,519,516,524,530,553,551,556,552,554,520,525,518,517,522,546,540,538,545,541,543,546,543,534,541,538,544,529,539,546,541,563,570,569,567,570,517,508,526,528,521,525,514,495,486,481,487,482,490,490,493,480,481,490,483,479,491,483,489,487,489,489,475,483,481,477,485,477,471,488,481,485,484,480,478,480,473,481,486,478,477,479,479,483,491,478,478,479,476,485,486,474,494,490,493,498,490,498,494,491,492,492,496,496,537,532,534,527,553,564,559,559,557,482,473,475,474,482,479,473,481,483,499,467,470,496,488,539,540,541,549,540,546,542,542,547,553,552,549,553,498,509,498,499,503,500,501,478,469,463,467,459,467,463,457,463,468,459,470,466,536,530,545,541,540,535,539,527,544,537,533,554,526,536,525,525,522,522,522,520,519,512,562,564,562,560,558,554,555,552,557,552,556,552,555,481,484,485,501,500,494,499,496,489,492,491,503,495,460,460,467,450,458,536,540,541,545,543,545,541,554,542,538,544,538,547,541,538,539,541,542,544,534,545,544,554,544,541,536,538,549,548,545,554,545,523,524,528,518,518,525,526,522,522,526,552,547,544,541,546,542,555,544,552,536,554,544,548,537,504,501,505,503,498,507,504,505,508,499,499,503,499,498,505,538,546,536,534,540,528,547,539,539,530,541,542,529,544,533,539,539,527,533,540,539,536,536,548,551,553,552,543,548,529,526,530,526,525,525,533,529,527,539,550,495,499,500,492,489,494,495,500,495,485,490,488,496,497,491,493,494,492,493,502,492,537,546,554,561,565,561,567,551,566,559,556,561,567,564,556,564,528,519,530,525,521,499,507,512,519,524,513,524,509,507,461,469,465,469,476,463,472,460,470,470,467,469,468,462,471,470,468,460,468,471,462,432,520,511,508,514,515,512,524,505,527,517,514,517,509,520,519,515,521,527,517,520,510,511,513,517,516,524,529,526,568,566,553,577,565,556,568,557,559,565,566,562,576,565,567,568,567,574,535,534,528,526,526,534,529,526,527,531,533,534,542,528,563,552,556,552,558,558,565,527,530,530,533,530,531,527,531,534,557,564,551,557,558,559,548,541,558,553,554,559,549,511,503,502,507,516,508,499,461,464,467,472,468,471,471,459,462,465,460,463,475,455,466,461,453,464,464,451,451,447,452,457,450,454,469,561,554,575,558,561,570,560,538,554,559,570,485,489,462,479,480,496,487,461,487,474,469,488,476,466,470,475,475,490,475,471,546,558,555,555,559,539,556,550,551,501,518,493,495,495,492,502,489,509,503,509,507,511,506,507,511,519,517,552,559,549,559,545,562,540,534,537,536,535,534,576,566,583,575,565,579,569,570,573,572,575,562,560,572,562,578,565,573,501,495,496,505,494,496,486,510,511,497,458,447,450,451,530,543,545,543,541,543,539,548,547,538,544,553,538,551,549,566,547,541,515,504,512,503,530,522,520,529,519,521,522,556,542,555,556,535,548,536,548,542,549,505,496,492,490,498,505,505,490,498,499,502,497,498,493,499,503,503,506,542,563,549,550,536,544,547,516,523,518,514,514,510,522,514,514,519,519,518,514,514,512,512,553,537,547,545,532,536,529,531,538,525,534,533,538,556,571,548,570,559,570,555,555,570,564,566,554,563,564,536,529,536,538,532,536,531,535,532,529,535,537,531,561,556,558,551,555,502,497,493,491,510,458,462,461,471,467,466,455,460,468,470,463,435,440,441,436,439,442,431,433,447,446,450,430,439,541,552,547,529,548,547,542,538,532,536,541,540,542,556,543,547,535,547,538,548,554,511,501,497,507,507,498,504,499,511,496,494,500,517,497,588,554,581,584,569,587,570,581,573,575,588,572,556,573,587,476,475,481,484,480,477,491,486,498,482,490,485,502,497,475,482,547,545,541,536,544,540,542,541,556,552,544,552,483,472,469,486,487,469,481,481,471,470,482,471,478,464,475,550,566,549,552,552,554,562,556,552,562,565,551,545,556,547,527,526,524,528,530,526,531,524,524,523,536,535,541,537,536,540,530,544,537,541,534,518,524,530,520,522,526,526,551,554,544,558,550,552,551,557,549,536,541,539,538,581,573,573,567,574,584,567,564,574,574,501,516,505,496,505,507,506,500,510,507,498,503,499,507,506,500,502,504,510,495,502,506,585,580,579,588,562,591,562,501,504,497,508,498,495,501,509,503,511,500,503,493,496,500,492,492,496,502,489,494,500,572,564,530,528,529,528,531,526,530,533,533,526,553,563,559,550,556,562,549,554,555,551,541,553,562,561,552,508,509,507,507,503,453,450,464,455,452,453,462,457,449,446,454,453,445,461,463,460,456,436,457,457,449,530,534,527,535,524,526,532,534,531,541,528,522,524,533,527,529,521,523,523,517,525,528,515,523,526,522,526,527,520,521,528,529,529,526,514,514,512,514,526,527,524,527,535,528,529,528,525,525,527,515,520,573,568,565,552,565,562,569,564,563,563,559,570,572,566,546,561,577,559,546,558,549,548,543,551,555,514,515,508,513,522,471,473,470,475,457,478,490,479,482,476,478,475,477,462,470,466,465,439,443,442,449,444,444,448,454,437,440,450,443,548,549,555,546,558,549,552,549,552,548,557,498,495,502,509,499,511,499,464,465,452,458,465,466,471,465,457,548,547,559,567,552,557,565,554,559,512,512,498,508,514,518,514,508,513,513,508,510,512,506,504,544,533,540,541,540,542,545,566,575,564,566,555,566,561,565,514,514,524,512,485,487,506,502,502,501,500,505,501,501,505,499,495,502,563,565,567,563,559,552,538,530,533,531,532,538,529,532,531,539,538,536,515,521,522,519,530,525,526,525,528,527,524,521,520,548,542,563,542,558,546,557,562,558,552,550,568,544,539,528,524,529,520,533,523,502,512,508,514,507,512,508,505,519,508,507,506,552,539,546,548,554,547,549,545,558,550,553,547,535,525,530,529,524,526,527,531,534,525,562,577,572,567,500,522,519,505,517,517,516,503,462,470,463,472,459,466,463,467,470,469,471,474,476,480,468,476,473,477,471,442,456,446,449,447,443,447,448,455,446,448,446,447,446,444,451,450,452,446,475,466,463,470,464,457,465,473,470,469,464,468,473,600,581,595,577,607,605,589,582,598,582,594,600,601,561,542,550,548,543,545,559,550,558,484,486,499,488,502,502,481,496,500,491,493,467,471,460,466,457,452,456,469,456,464,537,534,537,536,549,534,538,542,545,536,536,545,545,553,547,549,556,542,563,552,557,558,551,556,567,553,561,563,566,554,569,558,512,514,516,519,516,513,509,515,532,493,488,488,480,486,489,486,485,486,487,496,482,489,496,486,491,483,503,514,500,510,514,510,507,514,497,510,508,507,509,509,511,543,543,540,530,544,537,545,539,539,544,547,549,542,522,517,518,518,524,520,529,521,524,522,520,523,527,542,545,559,551,548,543,547,555,538,541,548,546,546,535,528,522,533,518,518,520,510,523,518,605,600,582,598,589,597,603,529,542,497,500,500,504,511,507,509,546,559,552,553,556,549,539,555,555,548,546,564,544,526,523,529,531,521,522,522,521,529,552,556,551,549,551,565,557,551,556,549,530,538,533,515,515,516,511,513,523,513,512,511,509,513,513,522,519,509,513,513,511,514,508,511,511,503,552,549,548,536,546,546,553,549,552,549,546,554,549,548,547,556,542,539,545,556,540,547,546,556,543,506,503,515,508,502,490,572,562,564,581,552,563,578,575,492,494,505,501,506,495,496,503,498,499,501,498,501,505,501,504,498,497,547,559,539,540,547,545,545,530,521,525,530,529,528,524,528,528,524,530,523,526,532,556,566,559,569,567,554,562,564,561,551,560,523,530,521,548,513,521,503,503,499,504,500,500,500,503,472,471,476,470,478,474,475,473,478,474,469,468,448,442,435,439,449,438,446,441,442,446,443,449,480,475,479,487,486,481,489,479,484,488,473,477,489,482,503,513,506,540,533,535,539,536,538,537,535,568,572,561,556,575,569,547,539,534,538,529,534,541,525,536,539,534,536,532,537,534,504,499,504,498,497,508,514,502,553,541,558,549,564,554,547,547,542,549,535,543,542,541,553,555,500,521,513,535,514,516,496,484,464,466,461,458,467,459,476,479,471,469,469,468,467,463,469,477,467,461,465,463,470,448,461,456,445,457,447,457,488,482,484,481,483,477,485,480,479,487,493,479,483,480,563,576,577,567,558,570,587,564,565,572,578,571,511,502,511,497,500,508,525,513,570,557,568,559,550,562,552,552,548,554,493,504,499,482,501,478,495,495,485,483,494,494,490,466,467,460,463,465,458,457,464,467,460,461,460,549,551,556,573,542,562,507,519,513,526,509,529,527,530,518,518,491,498,489,483,492,482,495,491,494,491,498,492,482,549,558,553,552,556,534,564,563,546,552,548,552,516,511,506,513,506,520,506,507,506,586,585,574,576,588,576,571,572,582,567,575,586,567,525,522,530,529,517,535,535,520,527,529,519,527,526,526,527,525,542,529,526,496,507,512,506,510,512,512,514,505,512,496,496,494,495,497,494,493,486,503,503,500,458,458,457,452,456,463,543,551,553,552,557,540,558,554,560,542,550,545,558,551,550,546,551,495,509,500,541,544,525,521,527,525,532,528,525,526,523,530,524,558,557,523,476,476,483,480,481,470,485,477,486,487,489,498,483,495,487,489,486,490,487,488,485,492,568,587,587,586,568,592,483,477,491,485,486,485,488,486,493,470,489,553,551,556,554,549,562,560,549,551,543,557,545,558,557,550,543,557,543,548,544,560,559,551,561,548,558,549,514,508,504,515,521,518,520,519,516,503,489,481,487,485,487,485,477,480,480,481,488,481,489,471,470,476,471,467,476,471,467,474,465,469,475,466,483,473,555,545,524,544,555,550,549,541,557,473,485,479,468,479,499,507,500,501,499,498,500,491,493,490,502,508,483,507,498,537,528,526,528,521,538,540,542,516,507,517,520,511,511,512,509,512,511,513,510,511,519,559,560,559,552,554,555,557,558,555,550,548,563,555,549,565,547,558,558,561,557,527,526,525,525,530,518,508,506,515,522,514,512,516,515,513,511,508,521,521,518,515,504,503,506,510,500,496,506,506,506,504,507,503,505,502,501,498,496,506,483,482,480,479,481,471,472,480,467,471,476,480,471,479,476,477,479,471,471,480,473,474,479,478,593,598,581,600,608,599,599,588,523,524,518,535,527,530,580,579,583,589,586,580,562,574,589,579,575,529,578,577,577,585,580,574,588,572,589,587,543,526,547,538,545,528,540,533,538,544,535,561,558,565,549,547,549,561,466,478,485,474,485,470,476,477,485,480,483,473,477,494,507,494,514,498,499,496,491,504,498,505,515,494,555,550,553,554,551,553,565,566,550,518,513,516,513,523,501,516,502,514,512,478,477,473,483,478,473,476,475,466,468,467,465,467,468,473,464,461,463,460,580,584,586,595,590,587,581,585,523,527,538,515,535,562,508,519,491,501,481,495,491,491,484,479,480,484,550,556,550,567,545,567,486,489,483,482,472,476,478,538,531,534,529,538,532,523,540,540,537,536,539,541,537,545,541,535,537,549,546,490,484,494,497,502,496,482,574,578,570,587,503,506,508,510,504,510,497,512,510,547,556,562,546,545,562,536,548,535,547,536,543,538,546,559,544,508,560,575,511,506,518,524,508,514,509,519,499,460,464,464,469,459,469,466,466,455,470,483,493,493,489,493,487,486,501,493,491,497,483,498,498,535,529,531,528,530,528,528,525,530,527,527,525,527,526,526,527,523,524,522,521,519,526,532,543,543,546,542,532,510,498,505,509,500,506,511,548,563,561,549,554,549,548,559,550,546,561,572,566,493,505,508,496,501,504,503,511,516,507,508,508,512,499,513,494,517,500,503,504,484,487,484,490,484,488,493,490,490,488,482,485,507,533,523,520,532,523,529,536,536,540,541,542,534,541,544,544,552,546,535,498,494,498,501,490,516,502,508,497,471,471,465,462,461,467,465,467,465,460,468,471,466,445,442,540,546,553,564,547,550,553,555,535,533,543,480,488,473,483,486,505,498,503,500,492,500,508,506,509,511,506,495,498,496,499,511,514,504,506,538,527,534,527,534,536,537,535,532,536,526,528,533,532,532,504,498,500,507,497,492,496,491,498,492,592,588,587,582,595,587,588,583,589,583,533,531,534,546,538,538,539,535,548,538,529,538,539,535,546,558,554,543,550,547,564,549,564,569,567,513,518,564,561,563,559,563,568,582,575,510,480,475,476,473,483,469,478,477,479,474,481,481,475,485,474,478,479,485,475,485,484,483,477,479,475,554,552,562,565,561,552,559,571,569,474,469,477,482,472,489,475,488,479,536,526,537,533,543,541,524,530,524,527,525,526,522,518,520,535,535,530,537,533,535,536,528,526,534,545,535,542,548,502,498,492,498,557,540,569,554,551,552,551,546,566,537,567,554,503,528,502,516,487,490,489,491,482,487,486,499,486,489,485,495,501,504,504,501,501,493,502,503,496,496,495,504,491,497,492,507,502,496,485,478,488,480,480,477,470,478,485,477,472,484,475,495,499,553,575,569,557,559,577,573,570,570,566,562,569,566,549,580,576,555,567,513,513,519,523,519,521,511,533,516,525,518,525,525,472,477,472,470,476,461,474,469,490,441,436,435,431,442,441,432,433,428,436,434,438,434,431,447,483,476,489,478,479,492,480,482,491,487,490,477,542,545,546,547,543,552,552,543,544,550,553,534,532,528,538,540,537,528,570,569,568,572,547,561,570,560,562,566,574,557,562,519,460,469,469,465,463,474,470,473,474,475,486,495,498,496,494,493,523,540,535,536,541,525,537,510,509,506,513,518,508,511,512,515,512,510,534,533,527,532,531,531,538,532,514,518,520,521,513,525,519,545,553,544,552,555,554,522,527,531,530,528,528,525,518,520,523,532,563,553,549,571,487,481,492,485,476,545,539,532,547,536,534,542,534,537,535,534,531,535,531,540,545,539,540,542,536,543,538,496,500,490,497,496,582,575,571,576,583,582,579,580,580,534,532,529,520,532,554,567,561,555,550,554,563,556,552,550,553,552,558,550,508,507,507,506,509,509,500,513,505,507,511,505,520,512,505,512,508,501,556,582,576,574,562,572,561,566,545,555,566,566,579,580,564,573,567,585,569,567,578,573,497,500,495,514,497,506,501,510,508,516,492,540,559,540,559,563,558,556,550,549,558,540,556,483,471,482,477,474,479,476,495,473,487,473,480,476,568,563,550,569,575,573,499,504,519,514,510,517,515,517,506,512,508,453,465,456,493,500,491,514,497,498,492,527,527,537,535,529,522,540,539,469,483,476,547,559,540,539,567,557,560,539,555,548,558,555,549,556,509,541,549,546,553,561,542,556,543,546,546,553,529,531,529,537,539,533,534,536,534,538,531,541,544,543,540,528,547,495,497,498,508,498,497,490,508,493,496,494,490,499,497,490,560,561,568,554,552,558,565,578,559,567,556,568,574,524,510,511,503,523,495,498,502,504,504,509,507,506,526,530,533,522,535,516,519,515,513,516,510,510,519,522,522,525,524,524,531,525,524,530,526,561,561,562,561,558,568,570,556,533,539,539,533,545,533,524,527,533,536,533,526,535,533,531,537,527,531,515,514,519,525,516,513,524,523,523,520,518,516,533,527,530,523,558,564,554,557,560,510,506,506,510,507,510,512,508,505,508,506,513,515,514,509,511,490,498,489,500,504,503,494,501,497,496,501,495,505,497,501,497,506,529,531,540,538,568,571,570,570,560,570,569,562,578,567,577,533,561,535,543,531,550,535,547,543,542,555,550,545,546,533,545,541,501,500,497,492,502,495,493,498,506,488,486,485,461,449,466,446,444,454,461,453,456,464,507,494,490,498,513,498,487,494,504,496,489,494,498,501,531,543,537,537,546,545,531,548,543,531,544,535,535,540,540,518,516,518,509,521,513,504,507,511,512,508,513,553,549,551,552,554,543,548,554,549,546,538,544,548,540,539,551,542,541,540,504,503,509,507,498,504,510,502,506,501,501,500,499,506,554,549,547,556,547,546,561,569,557,559,550,573,533,569,555,522,516,521,521,522,522,519,527,512,521,516,523,542,548,546,547,551,541,523,525,521,535,521,524,514,520,552,555,558,570,574,492,488,476,486,483,474,490,482,473,488,528,544,546,535,539,538,544,554,549,542,491,500,490,495,497,500,503,496,501,497,502,495,498,497,495,494,494,495,521,519,533,529,493,487,502,498,493,482,492,488,488,496,480,578,594,577,583,581,592,596,592,580,596,539,540,529,534,536,541,474,477,474,470,464,547,541,577,570,554,573,569,570,576,536,531,537,527,527,559,560,568,574,555,558,561,559,571,572,561,561,571,564,578,562,555,487,479,497,500,493,491,485,488,503,492,552,556,551,556,548,556,558,562,553,538,547,561,515,509,492,490,508,440,438,454,452,448,452,456,446,455,443,443,440,446,447,528,529,546,535,538,526,531,531,540,551,550,545,545,535,545,548,543,545,544,549,539,541,544,544,539,546,541,546,547,558,548,482,472,477,473,474,443,465,455,453,460,464,450,535,549,550,557,552,544,548,566,549,549,548,552,551,549,557,548,552,551,549,551,524,521,526,526,518,518,526,527,519,529,528,530,525,513,521,521,525,519,525,529,530,525,542,516,481,477,475,475,483,477,478,480,563,594,599,582,570,590,596,585,596,529,538,531,546,566,549,560,569,557,571,567,553,565,567,556,560,552,571,558,565,568,560,519,518,523,580,564,577,584,571,571,578,495,507,491,497,497,502,488,492,487,508,501,482,480,486,480,476,486,471,481,474,477,484,486,492,599,584,580,578,596,608,583,597,551,553,548,548,548,542,545,540,504,521,521,519,518,523,526,521,455,452,448,462,458,464,461,446,458,454,461,474,456,450,459,525,526,526,531,526,526,522,529,529,532,523,520,526,524,521,531,526,540,541,538,537,543,533,539,548,537,554,549,543,547,539,558,543,537,534,549,550,550,541,542,537,543,543,537,512,511,512,573,550,552,552,557,554,567,552,471,478,469,477,472,472,484,472,486,482,480,478,495,438,455,461,449,454,461,443,445,453,442,463,462,444,559,560,545,559,563,554,563,558,549,553,545,546,562,562,557,551,546,547,555,483,478,482,478,492,478,470,475,460,562,592,569,587,564,564,578,564,571,574,572,480,487,475,465,473,537,528,537,539,538,533,538,532,571,572,567,556,542,540,547,555,547,536,551,546,551,551,543,553,550,542,552,490,500,496,496,497,506,497,515,506,513,524,516,516,508,510,520,515,512,551,565,564,571,565,568,561,559,568,563,568,565,567,541,494,500,490,498,489,493,488,484,489,500,496,490,490,490,490,490,490,568,572,560,568,518,512,523,513,508,515,514,519,509,523,479,476,483,483,475,480,465,460,459,453,453,461,447,438,435,433,451,426,432,455,435,513,517,511,517,515,521,526,521,519,527,511,536,542,531,534,533,534,543,527,537,549,534,535,545,544,555,544,545,546,542,544,551,541,551,532,531,538,526,530,525,525,521,524,527,545,553,546,551,496,499,507,499,507,512,498,505,469,470,462,459,459,468,479,462,462,465,469,468,475,485,469,552,554,544,552,552,554,551,546,541,558,496,488,493,495,499,491,505,511,500,520,557,557,562,557,553,550,554,562,532,529,536,537,560,555,572,559,558,577,577,554,562,576,574,534,542,536,527,536,533,531,558,560,560,559,568,564,551,571,570,574,513,525,522,522,527,516,532,527,507,492,501,501,493,499,493,500,495,495,490,490,481,486,484,486,492,489,487,489,488,493,488,488,516,512,509,504,514,514,516,514,514,516,512,554,540,564,550,541,547,551,554,554,556,547,559,544,499,485,491,493,492,504,512,511,505,510,508,565,564,564,568,565,562,567,532,536,529,530,533,523,526,527,533,534,534,532,530,529,542,532,525,523,529,520,510,508,506,504,504,512,510,506,504,510,515,550,562,556,471,473,478,479,466,478,465,485,484,470,465,462,468,465,482,464,458,458,466,466,462,469,597,590,593,586,585,592,580,594,601,578,577,588,522,524,540,541,527,528,521,526,537,532,528,541,526,550,561,493,493,501,499,500,509,505,499,507,501,504,511,507,506,554,562,559,530,543,549,557,541,553,549,551,559,537,480,486,487,476,550,560,552,554,553,548,549,551,563,543,547,558,537,490,483,482,585,578,579,578,584,593,594,579,584,596,569,550,541,544,553,546,549,548,546,556,542,535,554,549,544,554,555,514,515,519,509,501,467,477,477,475,481,473,482,478,475,479,448,460,459,452,477,463,454,457,455,458,451,449,459,590,579,583,573,591,578,591,574,585,580,534,553,558,545,545,543,546,528,534,524,520,525,526,526,536,543,534,531,527,528,518,518,508,509,506,500,558,546,568,563,556,514,480,479,474,487,477,480,553,555,564,507,497,485,489,497,492,484,493,481,488,490,496,576,567,577,558,571,560,564,573,562,569,568,569,548,520,518,522,523,521,515,535,518,522,523,523,529,535,524,537,528,544,532,530,536,543,533,538,517,530,527,530,520,525,528,525,522,522,529,521,520,528,535,538,529,540,528,532,525,541,500,513,503,509,495,506,499,511,502,552,559,551,557,585,571,553,563,553,576,552,580,550,555,546,566,563,519,501,512,516,511,517,497,511,509,504,507,520,505,498,504,499,545,555,545,550,541,538,545,548,550,544,536,555,529,539,495,494,496,491,486,495,486,496,494,497,496,490,491,495,497,539,544,542,543,541,547,543,535,536,538,541,536,534,535,547,552,564,554,561,559,568,564,558,564,510,491,492,500,493,502,501,497,518,491,512,514,497,443,452,543,548,541,541,537,552,552,546,550,537,552,546,549,546,540,557,534,544,536,528,552,548,547,531,536,502,507,494,505,560,553,547,547,548,473,462,465,463,478,479,468,471,460,470,461,467,473,573,562,558,560,559,565,560,549,567,564,544,554,554,526,527,524,536,520,527,515,522,550,556,547,541,541,491,498,495,485,496,484,487,479,489,480,492,479,487,489,483,483,478,468,484,488,476,589,530,532,537,532,536,542,519,537,542,532,525,511,499,503,515,514,514,504,506,510,503,497,503,511,510,550,546,534,537,548,546,543,559,549,486,478,475,479,485,479,486,481,483,475,481,486,489,496,483,489,485,531,550,539,541,543,538,545,544,541,574,561,551,513,520,465,472,472,469,470,470,467,463,469,465,464,473,479,468,471,468,469,454,448,458,456,463,452,463,449,532,533,490,482,489,484,490,514,589,577,579,586,572,589,585,581,581,558,574,574,568,575,577,542,544,537,543,545,541,542,560,557,561,567,562,558,557,555,567,511,503,519,498,513,506,504,515,509,497,488,499,494,500,493,487,492,498,498,499,525,529,535,529,529,546,564,544,539,546,559,497,488,490,500,498,502,492,488,513,570,582,570,594,592,575,572,582,588,584,548,546,543,540,544,543,547,545,544,542,544,542,552,549,548,549,540,537,534,532,535,526,540,535,536,534,531,536,529,530,523,521,530,534,531,532,534,530,532,531,530,531,541,538,545,539,552,541,536,554,500,513,496,492,472,478,466,467,466,471,470,467,456,448,456,458,460,437,452,466,452,465,465,454,454,461,545,558,538,560,561,558,541,551,557,568,558,514,514,509,503,506,507,506,510,505,510,515,510,509,506,507,498,501,502,498,498,497,503,499,506,508,529,526,534,520,533,529,537,538,526,531,533,529,527,528,532,534,533,529,535,530,533,532,531,532,527,533,537,531,535,544,551,533,550,544,545,556,551,478,483,479,548,553,548,547,546,551,554,557,558,557,560,514,507,513,518,515,539,510,514,506,516,530,517,517,485,497,494,495,490,487,491,482,496,503,503,498,500,494,536,535,475,482,468,474,472,475,487,485,473,472,565,560,561,574,569,559,570,557,562,569,462,469,476,473,486,476,469,463,468,491,474,482,545,543,549,556,535,535,550,553,528,525,535,539,488,473,479,479,479,490,467,473,484,478,485,494,489,487,490,494,486,482,485,540,533,537,533,546,562,558,563,561,568,563,557,515,505,493,500,498,507,496,497,512,503,491,513,447,442,444,430,436,436,434,453,447,448,443,432,438,489,484,486,488,489,494,487,476,489,477,479,489,475,473,485,536,550,543,544,547,535,543,541,543,577,557,561,568,569,562,585,564,569,556,564,568,569,559,571,559,565,551,491,499,493,479,487,476,492,493,478,479,559,565,559,560,553,563,549,551,558,553,557,548,548,552,565,508,499,517,478,492,493,496,496,497,462,465,470,461,459,447,458,452,455,458,462,452,460,499,483,494,490,499,484,495,488,486,481,488,480,494,483,486,575,565,559,572,588,566,566,564,556,560,566,568,573,559,571,550,559,569,579,560,562,489,501,500,515,491,509,508,597,599,595,597,579,585,599,599,601,599,541,536,544,553,543,534,526,528,527,529,553,546,576,548,543,572,580,510,516,527,521,513,532,515,515,521,517,529,579,582,570,580,574,500,507,504,507,494,508,495,498,494,500,506,491,469,468,464,465,467,470,468,469,464,459,553,553,556,557,553,546,489,504,474,495,502,486,485,493,487,502,463,462,462,467,469,467,468,464,466,471,480,552,543,542,486,466,485,491,491,474,479,479,481,559,577,551,556,568,562,549,562,566,576,562,564,562,572,557,564,578,576,550,498,508,502,499,492,462,445,453,459,449,457,461,456,459,455,463,443,458,471,455,461,461,494,496,499,490,495,500,504,496,498,499,504,491,494,507,498,538,543,550,546,537,537,545,544,545,546,541,547,544,540,549,546,539,567,557,559,564,558,557,548,558,555,558,552,569,558,556,559,558,500,503,505,502,502,486,493,482,502,499,490,512,505,495,505,474,487,485,486,494,488,495,486,498,461,454,459,443,461,449,458,453,440,462,456,450,452,455,568,568,564,564,566,573,560,560,561,562,577,563,561,561,563,561,498,506,477,489,492,489,486,487,492,494,557,582,562,577,582,576,572,573,562,561,583,567,508,517,523,515,520,520,521,526,525,520,526,522,540,540,526,525,526,528,531,536,496,488,485,493,479,503,477,478,500,488,483,489,483,479,483,497,490,484,485,488,492,483,485,493,483,488,502,501,503,499,505,505,541,542,544,540,545,546,541,544,537,537,534,552,548,541,550,539,533,550,549,499,506,505,506,504,489,501,503,514,511,506,519,502,490,501,492,499,501,518,507,562,548,556,566,548,553,555,552,554,547,559,548,552,568,514,519,527,523,509,504,518,526,528,518,497,532,508,528,519,506,485,489,490,488,485,484,495,494,488,486,485,481,493,490,488,474,489,495,498,496,490,494,499,496,499,491,496,499,469,470,462,476,469,466,478,468,431,438,431,424,438,441,449,431,527,548,532,520,531,537,538,529,520,525,527,534,569,574,565,575,561,573,570,568,563,559,576,563,566,551,541,549,544,551,543,499,480,491,492,487,512,507,503,509,516,509,541,549,553,534,527,527,527,531,525,531,525,533,528,530,529,522,524,542,545,549,538,542,531,533,531,534,541,538,540,544,533,535,512,571,570,554,567,565,556,558,562,552,549,543,502,507,495,506,495,494,440,533,529,529,527,536,531,543,532,539,539,550,557,539,548,552,542,548,546,474,467,473,551,546,556,551,551,554,565,560,556,563,566,561,572,565,547,531,523,528,521,518,525,521,517,523,505,502,501,508,502,496,485,481,488,488,487,480,483,475,487,500,520,525,556,553,547,558,543,520,523,518,515,521,519,522,519,519,523,525,518,527,525,522,523,525,524,523,521,518,540,519,527,527,528,520,531,534,528,466,483,475,470,477,474,481,541,548,558,565,553,556,550,548,558,547,558,549,546,551,561,556,499,485,477,485,491,493,491,484,493,486,485,489,495,491,483,479,487,474,496,493,564,558,559,560,554,570,563,553,563,571,562,554,556,556,501,501,496,503,506,506,509,515,508,507,502,514,499,508,501,512,517,511,515,516,513,508,510,558,558,552,541,552,551,546,496,501,480,491,499,493,490,451,464,447,508,510,511,563,564,563,565,576,563,560,565,566,572,560,568,570,563,558,564,573,525,518,524,522,515,534,483,473,471,483,451,454,456,458,464,454,462,461,464,454,456,458,536,548,536,542,541,544,549,547,543,566,569,567,562,567,561,569,572,561,561,562,540,539,547,534,541,548,543,542,540,539,537,537,531,545,551,552,537,552,553,544,538,541,550,546,537,546,546,545,488,489,494,491,490,487,486,426,440,431,439,443,444,446,439,447,440,435,429,438,438,447,433,437,535,536,540,535,535,535,541,541,547,552,570,562,562,560,567,559,564,559,557,571,568,570,499,491,500,505,545,538,537,537,544,549,542,534,528,554,538,551,543,544,543,536,545,549,532,549,548,569,563,562,561,566,566,560,530,534,526,536,528,537,540,537,528,532,542,528,537,529,529,527,530,525,533,519,532,533,534,534,537,538,535,525,546,528,539,479,483,484,479,481,474,478,496,502,505,501,505,507,506,508,516,512,500,506,511,491,515,535,533,544,540,532,542,539,538,470,480,492,478,494,468,480,549,541,547,558,545,557,538,545,540,551,548,562,556,557,556,547,560,556,546,561,546,490,481,504,512,473,476,491,485,479,482,532,550,557,542,552,485,498,494,502,498,488,512,509,510,510,508,502,508,496,507,515,501,504,502,557,547,540,541,544,544,542,535,542,541,546,543,545,538,546,538,546,535,570,571,576,569,570,585,571,574,572,579,514,525,522,528,519,517,525,519,521,498,511,515,502,484,480,484,491,491,489,479,483,480,495,489,485,486,487,492,484,495,495,492,496,502,492,487,492,498,541,536,539,540,533,542,541,553,560,555,560,573,548,560,565,549,566,558,502,488,505,485,496,505,501,504,490,483,490,571,561,579,559,567,566,557,568,566,570,572,560,562,569,559,504,510,519,518,484,483,474,484,487,491,489,486,489,487,461,472,470,465,472,463,468,467,564,566,552,568,552,566,568,566,551,538,478,489,491,488,483,493,491,542,553,561,549,552,540,558,556,556,561,571,543,554,560,494,495,508,502,493,486,491,483,550,545,545,534,538,558,516,514,518,517,522,516,525,521,542,538,547,546,542,538,545,548,534,534,541,545,515,522,530,520,529,508,513,521,517,521,525,508,503,519,530,519,520,525,519,586,595,595,598,579,601,597,600,590,589,581,594,590,598,590,547,556,552,544,554,511,518,506,512,512,509,511,478,485,486,480,486,485,491,493,497,495,491,493,492,494,490,490,490,532,542,533,541,544,528,541,549,558,551,475,487,480,487,480,484,469,471,468,471,470,471,467,461,478,466,476,472,469,572,505,520,507,511,512,506,557,550,558,549,557,547,556,555,552,525,517,521,521,518,522,488,487,488,484,488,488,487,481,489,483,483,489,462,459,467,469,464,461,461,460,458,460,464,451,462,452,477,481,493,484,485,485,482,483,481,476,479,563,571,575,566,577,561,577,571,517,510,518,526,522,515,474,470,470,471,465,469,469,469,467,468,469,474,469,466,474,475,484,476,476,475,475,480,476,466,446,441,456,443,527,536,531,528,534,540,544,560,574,569,542,540,530,535,535,537,524,538,534,532,535,534,555,565,552,555,571,554,558,561,556,556,510,514,507,510,513,527,521,573,550,570,555,560,553,560,555,480,482,479,480,484,483,477,479,481,477,485,477,475,476,480,496,490,482,465,462,481,467,561,518,519,515,513,514,522,520,528,516,521,521,521,526,538,528,530,523,531,530,537,529,532,536,533,528,537,530,539,526,525,522,530,530,530,543,546,543,547,542,556,544,545,547,555,544,535,549,496,500,507,498,494,496,496,490,492,504,491,493,491,492,497,559,549,556,544,538,555,541,542,538,559,546,545,543,548,542,535,543,506,496,495,509,505,502,511,500,508,506,500,547,559,555,552,548,549,542,548,540,544,497,503,493,558,545,552,548,572,562,543,556,553,554,554,545,554,548,499,488,482,490,498,485,484,495,500,499,491,471,474,475,475,464,474,467,473,560,546,562,560,542,556,560,530,548,545,480,476,473,475,480,505,514,499,579,557,563,575,559,568,529,521,523,505,528,541,523,522,531,519,530,526,532,524,524,534,525,504,502,497,501,501,499,483,486,496,488,486,493,495,490,496,490,489,491,496,491,512,512,516,513,510,503,514,514,517,504,509,506,506,514,513,544,538,543,554,545,542,548,542,545,551,545,524,507,512,572,586,566,569,577,531,519,514,528,523,536,521,526,526,529,520,512,507,509,514,504,508,503,502,480,484,478,478,487,481,481,488,485,485,492,497,491,487,490,495,496,489,499,503,573,532,517,519,514,511,515,521,514,494,484,485,492,493,492,488,495,499,485,498,488,494,495,486,485,490,489,479,489,483,482,482,481,478,479,479,487,489,483,486,501,500,505,506,496,503,499,500,484,486,489,480,487,471,487,473,485,490,487,478,483,464,449,463,453,472,468,459,461,452,567,566,563,548,560,560,565,563,551,555,545,547,552,551,546,557,552,551,546,556,549,550,550,559,552,486,477,489,483,486,478,479,475,550,569,572,578,573,563,538,531,537,527,574,584,574,575,565,556,550,571,578,567,582,576,570,551,489,487,497,484,485,488,495,538,545,539,543,547,548,557,546,571,571,574,560,562,574,558,565,513,523,507,515,502,501,549,548,550,542,542,555,554,505,503,503,501,516,500,503,505,555,550,574,565,552,565,565,520,519,523,513,547,551,557,549,555,550,545,553,542,551,542,532,530,530,525,532,530,542,530,529,535,536,529,528,525,525,528,528,530,525,525,523,526,523,522,524,526,543,533,541,543,542,541,544,534,541,547,533,542,546,549,545,532,527,529,527,523,527,536,538,535,541,528,530,540,550,540,542,471,476,463,469,464,476,539,539,539,544,548,547,532,544,547,559,575,572,529,538,551,542,506,480,482,484,484,500,505,505,500,492,490,502,523,508,562,558,565,563,571,568,558,562,574,556,564,563,562,570,522,512,512,514,517,528,510,526,509,523,525,524,519,521,506,510,518,476,478,472,478,456,460,458,456,462,454,456,462,460,455,457,453,463,457,549,556,549,545,553,547,557,552,552,544,549,557,554,560,550,570,571,579,568,574,561,567,526,540,537,535,535,538,531,533,528,525,525,526,530,528,527,532,528,556,545,551,557,552,553,553,547,553,547,507,503,482,507,505,506,511,514,503,494,512,499,498,446,459,475,472,471,480,486,475,572,570,576,558,579,566,508,467,462,467,467,468,453,464,467,469,459,458,550,555,561,548,567,551,548,569,527,557,562,564,551,555,542,554,542,538,548,540,497,486,510,543,529,556,534,550,493,495,565,562,547,550,558,555,563,562,560,546,563,563,559,569,562,516,519,525,521,516,541,541,546,540,535,538,551,541,548,534,538,547,533,537,531,554,569,574,587,562,571,559,561,570,550,583,498,489,485,491,491,542,537,530,534,533,529,538,537,538,544,525,540,536,532,530,536,531,534,543,539,526,525,514,515,529,523,528,522,525,527,537,534,532,535,535,531,535,541,539,535,535,534,531,539,534,555,551,555,555,545,541,566,552,549,549,543,558,538,551,543,552,521,518,505,515,521,509,509,519,491,511,495,517,505,506,513,468,467,467,463,468,467,473,467,447,456,457,453,474,466,465,458,462,458,545,547,545,545,557,542,554,546,556,551,546,553,556,558,558,555,556,545,545,549,553,520,528,520,513,528,525,524,516,519,520,524,522,513,521,524,529,511,527,523,526,547,552,541,554,553,541,554,548,556,551,550,557,551,553,540,536,548,550,555,553,482,495,497,496,499,499,493,491,488,498,493,488,484,482,480,483,493,488,566,570,505,491,506,495,495,484,500,494,495,507,507,495,588,581,582,578,581,583,585,589,588,590,535,544,539,541,538,525,550,529,530,531,527,537,470,470,479,472,473,472,480,483,485,474,472,468,478,484,477,472,470,492,481,486,486,488,480,482,497,485,487,584,574,556,558,570,573,563,571,561,562,514,508,512,508,461,463,468,461,465,463,459,475,488,484,477,483,483,489,492,560,568,569,569,559,567,561,561,559,549,571,570,559,558,565,496,501,492,508,509,505,501,494,502,503,504,501,498,511,510,584,579,604,578,597,591,588,594,583,598,546,545,536,542,547,549,536,541,539,528,527,517,521,517,518,512,523,528,521,522,519,524,515,516,555,562,561,568,574,565,562,568,558,551,565,567,501,515,508,515,511,516,516,518,508,507,504,515,501,507,515,517,550,546,541,539,543,537,536,562,567,566,566,570,577,566,573,577,567,561,572,500,492,499,501,500,493,506,497,489,502,505,500,516,510,465,452,459,460,469,459,470,458,542,551,539,536,538,539,552,546,548,549,526,556,582,565,565,562,566,565,561,553,544,545,546,546,547,534,544,543,540,548,543,544,544,525,534,532,520,530,523,517,527,521,530,527,531,525,530,526,478,479,479,475,476,471,542,544,536,543,544,548,547,544,547,551,547,546,549,556,563,551,559,549,547,476,456,489,486,456,479,466,483,461,459,471,477,464,465,458,462,485,471,524,531,522,525,520,526,517,523,517,540,533,540,533,541,544,545,536,545,548,538,547,534,564,545,508,503,502,499,491,500,501,502,499,503,505,498,495,557,540,566,557,558,545,568,566,547,555,558,503,505,516,510,516,505,464,456,458,457,462,450,447,448,456,532,527,535,536,529,523,522,527,534,532,551,551,542,549,540,540,539,542,549,541,545,540,480,480,480,473,479,477,515,505,503,495,491,501,506,492,498,502,497,504,496,509,541,537,543,521,528,518,514,526,523,525,515,539,542,552,540,552,547,547,544,544,540,537,565,564,565,582,565,503,511,520,519,517,535,525,522,517,520,519,484,490,481,495,475,486,477,484,476,475,480,489,486,489,483,470,471,473,467,463,469,468,457,452,463,463,463,454,454,464,461,456,454,459,459,457,554,550,567,558,558,560,567,507,503,527,537,539,529,533,535,539,532,554,505,506,501,501,508,509,502,501,513,504,585,540,547,552,548,541,538,544,537,552,550,568,572,576,562,502,498,500,506,509,515,551,544,546,548,552,554,563,543,543,545,553,551,554,509,509,516,511,506,514,510,504,514,565,563,550,555,559,567,561,568,573,565,561,563,555,571,566,561,560,561,553,544,561,551,554,493,488,502,504,504,504,504,507,499,504,502,499,497,501,504,502,507,502,503,507,502,511,503,501,501,512,506,510,512,517,512,506,511,512,516,511,508,532,543,505,543,542,542,531,539,524,526,527,529,522,530,520,531,519,529,531,531,528,524,526,553,563,495,502,492,504,491,497,504,498,493,484,487,498,496,495,489,489,488,433,450,528,536,537,532,548,533,533,543,538,533,542,527,541,543,543,528,497,484,491,496,499,497,492,511,497,539,540,539,542,554,540,537,554,546,471,476,474,464,491,470,466,473,556,566,552,573,578,566,567,562,569,576,564,515,504,490,493,502,503,474,454,461,462,460,461,476,477,551,551,542,550,507,508,487,496,501,485,508,495,511,495,494,502,500,500,485,500,513,499,498,505,500,496,503,501,493,499,538,543,537,536,549,540,538,545,544,543,476,481,474,483,481,476,480,477,487,482,471,442,437,461,448,443,443,447,444,536,525,525,523,528,519,527,536,521,529,530,527,536,536,533,535,533,539,537,541,543,550,555,539,537,543,542,543,537,557,539,547,502,499,511,506,496,501,497,505,498,499,495,539,544,539,540,529,555,506,500,495,492,509,501,500,493,506,572,568,563,572,577,575,581,562,571,579,573,570,507,510,513,512,509,514,511,509,570,563,566,561,566,563,565,560,516,527,513,516,518,516,519,516,491,486,488,489,489,487,488,484,482,478,487,484,488,497,505,504,497,499,492,505,497,573,567,579,586,572,581,568,560,583,573,576,576,581,577,573,577,582,573,577,529,531,528,517,514,517,524,491,487,492,478,493,482,485,483,481,485,489,494,483,489,485,489,515,516,501,511,503,507,515,515,514,510,509,505,508,508,541,540,543,540,554,529,552,494,504,495,503,500,496,502,548,562,551,562,557,557,554,553,531,561,521,521,519,529,534,524,529,524,524,515,530,520,530,527,468,462,475,476,477,461,469,534,538,525,542,538,530,531,533,527,547,539,572,559,559,582,573,570,559,578,579,575,545,548,548,539,540,543,538,542,542,547,550,545,535,545,541,536,534,528,534,531,526,527,523,524,530,529,529,524,546,532,539,536,532,544,543,543,542,532,532,527,526,525,537,531,534,535,537,537,537,537,530,521,561,563,565,570,581,557,570,563,554,552,567,565,560,566,554,563,558,538,550,542,551,551,546,538,538,542,543,542,533,545,540,563,551,545,543,543,549,507,509,509,503,506,499,490,500,499,507,508,493,494,498,489,489,491,498,496,497,497,491,498,488,516,511,508,528,538,532,527,533,529,527,525,520,518,523,518,527,516,519,534,541,528,545,537,547,545,539,535,543,537,542,542,546,536,473,484,486,478,472,472,477,485,477,474,480,485,475,482,488,468,482,480,489,491,484,483,492,484,477,493,486,563,568,573,561,574,564,532,517,534,515,535,532,519,519,511,510,506,516,516,512,510,515,515,505,516,494,499,497,499,502,504,504,496,496,503,496,482,487,485,472,485,480,485,481,480,470,462,466,460,460,460,469,466,468,451,449,470,466,568,552,555,559,546,502,503,504,502,501,503,512,507,504,504,505,504,501,501,500,493,501,508,505,503,501,518,530,525,529,523,534,530,524,527,528,523,522,522,522,530,521,519,525,513,522,523,525,526,534,536,529,535,538,525,541,533,542,547,544,552,546,547,556,546,552,560,559,545,553,553,543,542,552,546,546,559,477,470,504,478,472,464,479,478,488,485,478,483,473,479,548,560,548,548,547,549,548,546,541,550,574,552,561,557,562,504,485,499,498,489,502,502,489,490,495,501,515,484,504,495,498,465,464,466,456,465,471,458,461,464,468,546,538,535,537,538,543,540,536,533,548,528,538,533,557,550,548,550,559,552,550,547,551,549,552,554,560,559,562,559,553,553,554,554,556,561,556,553,526,535,522,519,526,526,518,529,520,529,531,506,504,507,513,511,503,508,501,516,503,506,509,513,505,511,511,506,482,478,485,475,484,484,489,487,494,485,482,505,513,509,530,506,519,508,515,524,509,513,568,552,572,574,559,565,559,556,562,561,568,560,563,499,495,496,513,483,465,469,467,470,461,464,469,458,469,456,471,546,558,559,548,553,540,553,554,554,549,549,542,517,525,520,524,533,521,523,518,516,521,529,526,523,545,550,555,551,530,527,536,528,530,530,525,531,488,470,478,474,476,480,477,490,482,480,476,481,527,537,523,523,526,532,523,530,526,527,527,519,524,523,515,516,518,516,516,512,518,526,529,530,527,526,530,525,527,538,558,564,557,566,563,564,567,563,567,577,570,563,563,545,524,536,533,529,530,525,528,528,532,562,557,559,557,547,551,570,563,565,492,482,499,502,492,487,498,505,504,558,562,558,563,547,551,548,552,551,556,562,547,552,562,548,549,553,552,517,517,528,522,523,529,533,530,528,583,589,589,580,582,600,590,576,586,534,537,548,541,533,539,530,538,540,524,538,530,530,538,539,541,526,533,545,557,549,547,545,560,546,533,550,545,555,564,546,552,546,548,544,556,460,473,490,475,477,480,487,495,494,502,501,500,507,502,498,500,493,495,499,498,499,499,542,482,444,465,464,456,458,582,579,580,580,582,586,554,543,526,527,533,533,518,534,521,522,524,528,528,530,528,498,558,562,554,561,553,568,554,554,510,499,543,571,555,541,499,506,479,498,500,507,494,477,501,470,461,464,466,470,455,462,456,452,455,454,461,467,465,583,591,576,567,585,593,585,587,586,529,525,525,524,515,519,514,520,517,530,521,531,519,528,512,522,524,523,591,579,583,590,587,585,579,580,577,591,579,536,535,542,539,536,533,527,518,519,529,505,514,505,507,505,508,497,499,511,512,493,503,514,506,512,498,565,571,575,565,542,560,565,565,571,547,552,527,539,519,525,521,531,507,503,512,517,519,525,530,500,463,474,473,468,479,471,473,466,478,477,482,473,479,478,486,483,475,503,494,502,495,501,494,492,498,503,495,503,497,501,474,487,488,483,486,490,475,478,481,486,478,484,510,508,521,509,515,568,564,554,558,569,559,566,569,554,562,513,521,518,517,500,529,521,522,512,488,492,475,483,478,484,486,487,487,479,487,486,559,561,558,560,563,559,562,579,558,552,555,551,501,490,500,493,490,510,484,485,458,464,481,462,459,465,469,467,463,477,473,467,458,461,474,464,468,467,551,566,559,571,578,553,561,576,548,486,490,488,489,499,501,494,490,483,515,504,483,485,490,495,581,547,534,542,543,558,496,497,496,504,510,509,503,507,500,501,504,502,500,503,511,501,457,456,467,453,456,456,453,458,487,484,482,490,477,483,499,483,479,479,489,488,480,492,565,562,577,548,567,567,558,555,562,563,563,519,516,520,512,511,511,517,520,512,520,514,581,565,572,565,562,560,559,569,570,570,585,567,573,519,505,521,514,512,509,502,461,452,460,465,461,448,462,449,446,464,447,448,444,461,458,452,463,456,445,562,553,553,569,545,557,550,549,553,552,559,546,540,534,560,544,508,506,507,502,505,493,503,572,578,562,550,568,566,566,500,503,496,511,496,545,541,509,513,520,520,519,521,523,524,521,513,522,554,555,552,557,554,561,555,535,535,529,532,531,533,534,533,534,533,532,524,536,537,529,533,532,529,532,536,528,513,518,516,520,516,523,521,549,547,542,550,545,548,552,551,547,550,542,546,549,546,542,546,569,560,582,583,579,570,568,567,573,555,571,569,561,531,529,528,530,523,516,530,527,536,505,503,505,505,508,500,501,493,496,502,502,499,504,478,479,476,477,481,474,472,481,474,475,468,479,476,457,453,465,468,466,462,467,461,453,456,462,454,588,585,587,583,578,580,588,587,584,585,573,588,581,525,531,520,511,520,521,520,523,517,513,557,561,566,552,550,570,566,551,504,521,515,508,510,514,521,538,529,532,530,522,530,526,529,515,556,566,563,557,544,558,552,525,525,525,530,528,532,527,529,527,517,526,539,539,542,537,544,541,475,480,469,484,477,487,486,488,480,471,556,560,560,551,560,550,541,556,496,502,506,508,497,506,509,504,500,495,504,495,502,503,555,543,529,554,554,562,535,547,534,542,531,544,552,554,548,563,526,509,516,520,513,525,510,511,514,507,511,571,573,576,503,495,500,504,508,516,517,517,518,511,516,520,513,517,504,519,519,513,544,544,547,535,539,545,548,541,542,524,518,520,526,533,523,531,525,524,535,529,527,522,531,531,531,538,537,548,521,537,524,541,544,541,530,536,534,532,518,539,460,439,467,467,469,449,455,458,459,536,537,545,537,534,532,537,546,546,536,536,538,538,540,536,543,531,540,549,537,548,530,541,547,521,518,522,523,518,519,567,544,550,550,551,563,545,556,547,490,478,470,459,471,463,470,473,467,466,534,535,540,539,542,546,536,541,539,537,540,550,547,543,546,540,542,554,543,543,547,548,559,545,542,544,546,546,549,543,553,551,552,552,556,551,559,553,558,519,519,505,513,513,465,469,468,467,467,472,471,469,471,474,465,450,463,454,465,464,465,451,447,456,455,463,458,446,453,459,460,454,464,453,565,542,562,547,557,490,492,501,459,458,456,457,463,460,462,453,471,455,538,543,545,547,549,541,546,557,545,550,547,545,533,541,511,517,511,508,509,524,529,529,521,516,527,529,523,525,525,520,561,553,559,554,544,533,538,572,547,568,568,561,490,487,491,491,498,508,480,504,515,492,596,574,575,584,572,573,586,585,574,578,532,526,524,524,525,531,517,530,527,515,521,517,524,529,565,541,549,566,549,560,531,511,509,506,508,504,497,499,497,500,498,512,508,511,549,557,561,553,555,547,555,545,560,556,542,555,540,505,513,502,515,502,454,472,469,451,464,461,462,468,455,501,501,500,505,532,536,537,535,536,530,547,494,500,498,494,502,607,604,605,598,602,589,588,580,587,585,600,587,581,590,590,594,536,546,530,533,533,526,539,544,528,529,528,536,529,539,529,503,496,500,495,493,496,505,497,500,499,509,505,492,500,500,567,539,541,551,562,569,557,507,521,517,515,515,516,508,524,515,512,519,513,544,542,538,533,540,566,557,570,563,573,573,562,556,577,564,565,550,577,561,576,563,507,499,488,506,488,501,495,508,503,495,505,506,482,493,490,494,501,556,573,554,576,502,499,506,497,494,504,506,508,511,468,476,471,463,471,472,466,470,473,456,465,469,471,467,462,467,473,466,466,468,466,468,471,468,465,469,471,471,473,474,552,543,549,548,544,538,553,522,521,521,518,518,522,523,526,520,524,526,525,524,523,566,559,552,561,553,561,559,549,553,554,550,501,503,503,495,511,500,501,496,506,495,501,501,457,451,463,462,452,456,445,460,458,456,454,462,465,461,459,463,456,451,455,456,456,441,451,548,546,546,554,541,552,547,557,554,551,552,546,542,505,497,506,506,501,557,551,543,553,552,554,554,519,555,533,547,554,510,490,508,495,500,508,509,511,498,601,596,593,585,574,605,608,525,523,534,529,535,531,530,580,591,587,581,571,582,581,587,583,597,585,583,554,541,540,522,529,540,529,545,536,531,538,470,474,473,463,483,471,472,467,471,470,468,473,465,477,467,472,462,471,475,476,566,556,569,576,554,562,569,571,562,514,516,507,505,514,514,514,512,515,516,510,499,505,548,542,548,553,541,548,550,550,555,536,544,549,542,557,535,517,509,511,508,513,520,516,519,508,511,579,572,573,570,577,558,567,574,567,574,571,583,582,510,498,503,509,500,512,498,487,516,527,523,514,522,521,516,541,550,522,534,511,513,561,551,546,560,557,489,475,488,478,476,470,484,479,568,561,564,555,480,482,478,457,484,485,470,480,477,475,474,451,466,457,457,458,482,460,469,461,456,462,462,473,464,460,463,585,594,597,583,584,535,534,543,585,590,585,594,572,582,591,584,586,582,578,597,587,545,529,497,487,491,494,495,491,494,492,487,494,490,532,532,538,532,536,533,538,546,544,546,541,536,561,550,551,549,564,542,538,501,493,485,507,493,499,491,503,494,505,505,500,501,493,531,544,542,550,540,545,536,542,537,534,549,550,540,541,542,554,548,543,495,504,511,504,496,517,490,488,489,494,496,488,495,487,487,509,506,500,507,511,513,514,513,507,522,510,513,504,512,514,510,511,512,508,504,545,547,538,531,547,533,543,537,540,535,548,546,545,538,549,491,495,484,497,495,554,554,553,548,550,557,499,498,510,515,491,507,526,519,506,515,505,508,459,453,435,435,440,446,430,422,438,439,429,431,429,439,447,435,448,519,522,523,516,521,508,537,538,536,527,533,537,547,529,550,546,542,550,542,547,549,555,533,530,527,531,535,529,533,534,525,531,531,541,531,535,532,532,561,568,543,559,561,560,562,574,559,566,563,512,501,484,485,483,481,481,483,509,516,516,511,523,514,523,508,511,513,570,561,573,566,564,558,559,571,561,552,574,559,573,512,494,501,495,491,491,486,493,500,498,495,509,492,456,462,465,464,459,454,462,452,457,529,544,547,530,544,538,527,541,545,538,533,540,533,543,531,540,531,529,548,545,546,548,553,541,549,550,540,540,554,543,546,539,551,551,553,546,539,547,545,543,462,478,484,485,483,474,463,478,465,486,482,481,565,546,574,556,567,558,579,575,568,562,560,566,551,561,561,553,563,554,565,562,565,553,567,574,556,516,514,517,523,523,520,524,520,514,525,513,511,509,516,513,551,546,556,554,551,545,552,549,562,556,558,550,549,559,558,545,557,543,545,540,547,554,521,517,526,513,559,565,552,571,565,509,508,500,517,509,513,516,508,513,507,517,511,506,508,509,510,553,553,546,546,550,562,547,550,555,547,539,515,527,520,535,526,522,523,594,582,576,589,575,592,594,597,576,583,582,542,536,533,539,532,556,575,563,557,568,549,573,518,510,465,468,467,465,471,468,464,451,444,448,447,444,450,437,453,451,464,453,512,507,501,508,504,541,540,548,546,536,544,552,519,519,506,516,514,514,522,516,511,515,507,507,508,512,509,507,512,509,526,530,528,535,537,536,517,523,523,521,533,520,517,521,518,525,540,538,529,530,540,538,538,543,541,539,535,540,539,549,555,543,542,545,543,546,554,548,548,547,544,540,542,541,552,537,540,531,533,525,528,534,533,526,531,531,532,527,536,566,528,517,516,519,520,515,514,522,529,488,496,494,490,455,454,455,462,457,456,459,461,463,468,463,456,464,451,491,490,489,484,484,499,495,494,485,485,490,489,480,507,504,507,504,504,506,533,540,530,526,576,568,561,545,540,547,540,541,544,540,516,515,516,510,504,516,513,506,516,510,477,479,470,465,469,469,467,471,471,475,463,440,455,442,449,434,436,437,426,431,433,448,513,533,536,527,524,534,539,543,535,547,536,540,536,541,546,552,535,557,559,547,546,555,560,560,525,522,511,531,526,523,518,514,509,519,529,486,492,490,490,499,485,492,486,496,493,495,492,486,498,500,496,506,499,504,493,482,479,480,493,483,479,481,471,476,480,475,482,483,490,491,491,492,485,492,488,493,478,483,480,563,507,501,496,499,544,556,562,499,489,499,516,506,505,495,496,500,494,498,501,499,491,492,480,488,478,483,491,486,488,489,487,492,502,494,503,492,496,499,496,497,498,523,526,523,529,531,527,534,531,534,526,521,521,528,523,524,525,521,520,523,523,513,525,519,522,524,518,543,553,540,550,546,540,543,542,552,551,542,549,561,559,562,559,561,556,556,484,489,494,486,494,502,489,494,488,501,492,491,484,486,497,487,580,595,585,587,575,589,579,573,561,576,486,491,484,479,489,484,550,529,538,535,537,536,546,547,544,548,542,545,536,539,540,543,538,553,537,550,546,550,544,553,550,508,508,507,513,502,502,497,489,499,502,512,508,496,576,551,569,568,562,561,565,566,553,561,562,548,568,567,560,514,513,506,507,506,513,518,513,511,519,514,514,516,523,524,510,511,485,486,482,492,481,490,504,492,489,573,577,571,563,577,584,567,574,556,561,566,575,514,522,516,528,530,529,528,520,521,526,526,502,503,497,504,502,507,508,488,488,480,491,486,489,488,495,485,488,480,492,486,483,476,490,489,474,463,466,469,463,466,466,466,468,465,465,468,464,469,431,429,437,444,440,437,445,438,435,434,435,423,431,429,426,441,494,483,499,547,532,540,546,538,536,538,538,537,534,539,538,542,512,515,510,506,502,505,506,511,508,504,499,510,506,510,530,521,532,526,529,531,524,524,548,548,531,533,546,542,533,553,546,545,538,547,535,549,532,474,479,478,463,489,481,473,470,475,464,487,492,481,472,484,480,473,465,478,475,467,473,482,483,566,561,557,545,567,566,550,565,571,579,573,580,557,572,556,562,497,507,498,504,492,499,508,514,502,434,440,443,446,448,440,434,437,439,443,436,445,490,494,502,505,494,499,556,554,554,558,550,554,549,557,543,561,550,558,547,550,495,501,497,498,491,508,515,522,513,518,524,515,516,513,513,508,517,515,512,511,564,547,548,559,507,501,512,509,520,507,504,506,480,478,484,477,479,479,476,484,485,477,486,470,483,478,475,489,451,448,449,459,463,447,447,449,468,461,466,468,467,462,472,461,459,453,545,497,493,493,496,507,505,502,497,509,506,501,513,510,467,478,486,476,478,476,471,476,472,482,478,474,477,475,476,479,475,480,477,480,474,475,465,477,479,467,477,479,479,551,548,549,541,554,549,538,545,544,544,546,548,547,531,526,516,519,517,523,557,571,563,561,556,559,556,553,544,539,547,551,552,488,490,486,480,484,485,493,479,482,503,481,479,495,493,479,490,472,475,451,455,440,449,446,435,448,436,439,523,516,531,528,526,521,530,506,529,521,525,524,528,528,530,528,525,519,539,525,527,525,534,529,525,531,525,527,528,525,530,565,568,570,566,576,573,563,563,553,565,551,558,543,528,524,526,532,534,528,563,554,563,542,567,558,569,565,555,565,561,561,554,511,508,517,503,501,494,514,508,520,516,497,580,589,571,590,603,532,537,534,537,541,540,527,534,534,525,527,534,484,487,490,479,478,491,485,477,562,556,558,563,561,545,551,559,550,564,569,553,559,569,551,564,563,564,572,566,568,565,558,576,554,556,560,567,568,495,491,494,504,502,495,501,513,500,569,545,568,571,563,571,551,559,577,562,564,573,564,572,573,511,489,510,509,504,518,507,514,512,517,513,516,520,522,511,512,504,519,508,546,543,536,555,545,513,519,518,521,513,513,522,511,516,535,536,530,534,535,560,568,579,565,553,558,561,563,557,553,544,486,486,488,475,472,473,479,481,478,491,520,536,542,540,534,532,534,539,541,531,531,528,531,528,530,533,544,543,548,546,543,540,540,540,543,547,550,547,547,527,526,526,525,525,526,525,525,524,530,530,536,541,535,540,536,541,538,539,532,546,536,536,533,532,526,535,532,532,534,531,532,525,538,533,527,532,531,534,568,565,558,562,559,569,555,574,562,554,578,570,519,528,531,530,521,538,520,522,500,504,504,507,507,502,506,509,514,506,509,500,498,497,493,499,495,512,498,478,477,486,476,484,484,474,449,442,461,448,457,432,462,436,445,445,545,548,554,554,558,555,543,547,545,552,546,545,537,549,541,548,470,480,469,483,474,482,474,473,471,469,475,471,472,459,476,485,460,469,469,472,470,472,468,477,472,564,551,561,563,584,567,501,503,489,494,500,503,497,510,508,494,504,452,465,453,467,561,570,558,558,554,558,557,556,552,562,569,563,467,464,479,471,484,472,542,529,552,544,550,554,544,544,536,546,538,535,545,541,547,544,544,541,532,542,548,557,537,542,549,545,546,544,542,540,536,497,479,474,479,477,471,468,474,472,477,472,469,471,474,466,472,577,574,572,507,509,512,506,509,549,554,559,544,559,513,513,517,504,511,510,517,524,513,511,514,523,488,491,485,479,482,487,494,485,488,488,490,469,461,458,457,464,458,462,464,465,462,456,459,461,463,453,460,466,457,458,553,547,559,557,548,551,542,554,565,551,541,547,538,556,537,546,543,454,468,472,460,465,458,463,517,543,518,523,536,523,519,517,536,544,535,530,534,540,553,546,551,550,552,546,548,551,549,545,547,544,555,556,546,544,547,556,551,507,496,495,516,495,506,512,509,504,511,505,496,492,482,486,489,493,479,488,477,502,502,483,482,484,474,479,484,482,481,482,479,482,481,477,477,496,492,498,495,486,492,495,500,498,495,505,492,501,580,576,579,568,568,562,565,570,571,583,577,576,578,582,573,586,569,529,527,534,522,515,527,532,526,535,532,513,524,526,502,508,509,502,506,510,514,507,507,500,506,505,501,481,485,479,480,488,486,487,483,489,514,510,514,514,514,511,516,515,520,518,513,507,510,509,522,563,554,560,559,557,561,555,555,561,559,561,560,562,549,546,557,505,489,492,500,498,502,518,522,515,517,506,518,516,520,514,543,537,544,540,554,537,529,549,533,554,548,494,483,471,486,487,478,474,490,475,478,486,542,553,556,553,547,556,549,543,521,521,522,521,518,526,521,520,527,524,523,558,529,523,524,519,526,530,525,529,535,524,529,523,534,525,525,526,576,556,566,574,573,566,561,552,492,492,479,495,488,549,548,552,546,549,544,548,542,557,560,565,561,557,559,556,556,491,489,495,496,508,507,501,503,511,511,488,485,503,494,495,490,490,499,489,485,489,483,500,491,492,491,488,572,582,550,585,577,571,551,509,507,517,518,505,513,513,516,508,503,511,555,555,544,548,541,547,546,543,493,495,495,498,502,507,507,500,510,505,504,505,506,521,518,521,541,541,531,532,540,538,473,491,473,465,456,534,532,534,536,521,534,526,513,533,546,549,538,552,540,538,548,542,551,548,550,549,544,549,553,540,546,548,549,540,536,545,539,557,546,556,539,544,544,542,510,504,497,513,496,495,512,506,494,506,492,492,502,502,492,503,470,464,475,486,490,490,487,508,510,501,506,507,519,537,520,522,519,522,529,516,523,539,534,519,529,528,523,524,523,540,537,538,534,543,528,538,541,527,535,536,531,535,537,526,535,545,545,548,546,541,553,542,541,534,547,551,550,548,483,505,515,504,506,507,494,514,513,514,521,510,468,467,463,468,468,463,465,463,468,465,458,458,463,468,466,468,461,459,482,490,491,479,537,536,541,536,541,540,545,532,544,572,557,563,556,572,558,570,578,569,565,556,518,508,488,486,496,490,493,495,492,533,533,547,536,526,539,539,542,536,536,526,551,554,555,545,546,561,546,549,548,495,503,499,492,497,499,504,505,515,511,526,521,510,510,511,511,510,511,541,550,543,549,551,534,542,528,534,545,545,552,535,541,545,547,479,479,479,469,470,565,558,551,556,557,555,561,566,554,561,566,566,557,558,554,568,565,556,504,517,508,517,514,520,526,508,511,472,488,481,478,480,486,490,487,484,499,517,500,503,490,512,499,499,506,500,506,504,559,565,570,539,544,549,547,549,549,551,548,539,552,544,542,502,502,495,477,464,471,470,467,550,552,550,555,552,552,522,523,522,516,520,511,517,517,514,562,559,556,556,560,560,560,561,556,559,560,557,555,550,553,557,554,547,555,542,552,499,513,517,499,507,511,507,504,508,497,505,521,505,509,474,476,486,486,479,488,490,484,486,483,479,482,482,483,480,456,458,457,461,463,461,546,542,558,564,537,498,509,500,515,506,505,505,500,503,486,495,488,488,487,488,488,492,493,486,492,492,484,492,482,490,494,498,490,502,496,500,499,491,505,494,502,497,499,496,504,499,478,479,483,481,483,488,477,484,485,475,485,483,489,493,473,493,485,503,492,491,487,498,571,577,574,550,556,519,513,514,515,503,519,512,520,512,518,514,518,528,515,516,524,522,526,530,525,538,519,513,522,522,523,580,579,586,598,581,590,577,592,588,580,583,557,546,536,552,551,550,562,546,480,500,499,501,508,491,487,489,494,493,497,491,494,498,497,580,577,581,570,576,580,569,571,587,499,492,499,493,505,459,465,465,469,544,538,533,547,526,540,548,544,548,540,539,537,548,541,548,547,530,553,552,553,550,553,547,537,542,521,521,514,506,503,512,515,457,463,461,456,456,461,461,454,463,458,462,460,460,464,459,461,460,459,465,456,449,460,456,451,455,452,450,455,548,549,552,564,546,550,528,557,552,533,560,543,486,483,499,502,490,500,493,507,506,490,491,508,498,558,550,554,558,549,541,495,490,501,500,493,478,507,513,501,491,517,489,505,444,441,441,453,434,441,437,443,442,434,452,450,439,441,451,443,441,449,440,435,437,445,431,435,504,492,495,511,498,491,496,535,549,546,534,545,539,547,539,541,532,548,537,526,532,530,476,475,477,479,484,471,476,478,484,469,478,541,542,546,549,546,556,509,507,507,508,510,511,508,500,501,522,553,547,557,565,520,508,517,500,512,515,517,514,513,526,519,510,511,510,547,543,547,539,535,537,536,534,572,570,563,570,560,564,563,567,571,575,569,512,488,495,506,504,506,507,522,498,499,500,496,496,500,496,499,502,498,563,550,563,574,586,556,566,577,562,526,524,515,520,513,517,524,517,540,534,529,532,530,531,531,529,534,554,551,562,559,547,548,573,563,506,511,496,507,501,486,502,495,499,503,513,498,546,541,551,542,557,541,535,551,468,476,463,478,468,462,454,459,461,458,470,591,590,598,590,568,588,588,596,585,580,592,546,521,534,542,541,533,533,535,562,554,536,509,510,514,530,496,517,514,528,469,466,469,474,464,468,463,472,465,466,473,472,463,467,464,465,479,468,477,471,463,471,438,426,444,446,441,493,478,487,486,483,482,475,472,481,534,536,543,534,536,539,539,535,543,545,535,535,530,536,527,537,549,536,543,555,552,568,562,554,546,561,559,567,567,546,559,570,562,558,551,558,542,571,551,533,563,560,558,574,556,559,569,552,568,563,560,572,556,572,555,520,521,520,527,524,507,505,506,512,515,503,506,503,512,505,502,505,503,501,503,496,506,508,502,503,493,484,486,485,480,484,482,450,444,448,447,447,442,472,468,470,464,476,472,471,467,576,570,561,571,563,571,547,581,557,567,577,566,565,511,514,504,511,514,505,509,508,511,508,506,504,509,505,511,516,518,504,512,514,515,510,508,521,515,516,577,574,588,588,589,588,576,548,558,555,551,559,549,550,546,554,556,552,559,553,550,554,551,536,545,539,541,538,540,540,532,545,550,537,536,535,537,546,544,542,502,505,507,501,497,500,499,502,509,496,500,499,492,500,500,498,504,493,514,498,495,533,542,534,541,539,532,537,528,528,527,522,524,531,542,536,516,516,508,509,508,510,505,513,515,506,513,507,514,498,507,510,509,510,510,508,512,518,508,547,554,551,562,516,515,509,512,508,500,527,518,514,527,513,509,539,553,571,559,557,568,561,565,577,563,577,574,569,559,552,572,569,503,512,500,506,508,514,596,594,585,604,590,595,585,596,598,586,602,602,536,540,532,539,540,532,532,536,534,533,534,539,570,552,560,560,570,548,561,566,568,572,566,556,556,561,565,528,528,524,520,528,525,522,525,541,542,547,550,571,551,575,558,568,576,565,576,574,556,562,565,486,492,496,497,487,483,568,547,549,550,564,556,556,553,566,558,555,549,548,553,490,482,495,489,503,503,495,497,501,458,466,552,537,546,550,558,558,552,562,580,570,554,559,554,477,470,480,478,485,466,472,463,474,464,484,476,476,518,515,522,524,518,518,524,519,530,510,522,524,519,530,538,528,532,529,537,530,533,539,542,549,542,557,539,542,553,481,469,455,452,474,465,521,532,542,532,530,531,533,535,535,527,534,525,538,533,545,534,523,534,564,570,556,567,574,558,567,573,565,565,566,555,573,540,527,540,534,533,531,535,535,532,550,542,550,556,561,559,571,561,550,559,514,513,516,517,506,516,564,548,551,552,553,568,546,558,546,476,488,476,474,480,485,480,483,482,468,476,484,467,486,485,485,503,494,493,493,494,485,542,542,539,529,538,535,543,538,531,537,538,536,537,547,548,547,562,554,543,555,544,542,549,491,498,511,502,496,490,497,507,488,510,502,509,500,509,496,504,503,538,540,534,531,542,532,535,541,547,537,534,546,547,510,510,511,509,521,520,512,520,516,511,513,557,554,561,553,548,550,555,500,518,511,503,505,496,504,501,518,508,495,518,506,510,497,496,507,503,498,495,498,499,563,569,553,556,562,561,562,561,565,567,557,555,559,570,560,557,562,556,547,541,545,554,544,535,523,513,522,521,539,528,500,509,487,492,495,490,483,490,482,481,495,489,494,501,489,488,477,487,470,469,476,467,470,475,466,472,469,475,474,468,497,504,502,501,506,502,509,503,501,505,502,506,505,510,501,500,570,567,549,542,547,543,545,549,557,553,550,548,544,543,546,555,548,548,551,552,549,553,499,503,493,497,504,506,485,502,491,494,500,502,496,488,502,495,492,500,494,502,505,498,507,501,501,497,503,506,506,543,542,532,539,544,557,570,557,565,556,559,556,566,560,558,508,513,496,507,506,514,518,503,511,504,515,514,512,476,477,480,483,478,483,481,476,483,478,477,479,475,470,472,467,477,479,505,513,512,512,513,512,503,515,513,513,513,518,511,511,503,507,507,512,508,510,551,550,547,550,540,461,465,464,470,476,474,477,479,479,473,473,476,474,470,467,481,438,448,454,460,443,459,457,457,448,446,443,451,451,449,528,536,529,531,521,538,546,557,550,531,547,530,551,545,542,544,542,491,491,480,487,485,492,483,495,490,481,489,486,486,479,469,563,544,556,546,548,542,545,550,541,550,544,538,550,548,542,516,513,518,521,513,518,523,516,517,529,526,527,525,530,534,520,530,516,530,527,528,517,519,517,519,518,517,522,522,557,556,550,552,553,538,535,533,525,526,534,537,510,512,509,515,520,516,508,516,516,523,524,528,522,524,524,526,523,522,528,523,521,536,589,584,584,532,546,533,537,514,513,513,511,519,515,535,530,560,547,543,576,552,560,495,505,492,583,572,578,576,577,586,578,579,569,584,575,579,584,575,592,573,586,585,568,585,572,572,506,513,503,509,505,493,511,502,500,513,536,527,535,527,527,530,531,534,536,524,526,527,520,532,517,526,516,527,521,531,525,519,517,521,524,517,520,546,548,541,543,546,547,544,474,487,452,471,471,489,478,477,470,474,483,477,483,479,480,566,498,510,513,506,508,523,485,502,508,508,470,481,562,548,548,552,561,558,549,538,552,555,555,511,512,511,512,516,481,492,467,479,481,477,489,477,489,476,481,473,483,471,468,472,476,469,473,459,465,472,451,442,447,436,447,442,437,440,442,547,543,553,558,539,546,551,558,546,555,556,536,534,549,537,550,543,558,539,540,480,484,467,480,471,480,482,474,486,482,467,477,479,480,465,464,469,470,578,568,592,562,563,568,566,568,492,488,495,499,519,497,502,483,459,460,442,451,453,444,581,583,567,576,580,572,588,579,542,538,551,554,542,518,514,514,511,519,503,521,516,509,523,518,513,512,503,488,476,481,477,484,470,480,477,482,482,482,482,477,572,563,565,492,500,500,517,516,493,500,493,502,511,491,507,508,505,506,496,492,501,506,506,493,505,463,458,453,463,451,455,448,468,459,459,465,491,489,493,494,509,509,510,502,505,515,510,509,514,549,552,548,537,540,549,557,546,550,558,552,547,549,544,545,554,544,538,550,541,558,549,558,555,546,546,547,550,557,483,497,488,483,539,533,531,540,531,541,533,535,550,547,548,555,555,546,554,541,554,540,542,521,522,518,524,523,522,524,521,523,527,524,528,529,490,494,496,486,479,490,493,491,494,485,489,487,483,487,486,489,485,492,478,481,481,489,484,483,487,474,471,478,474,487,476,469,474,482,485,562,567,562,538,563,556,553,560,558,558,575,576,560,574,558,558,575,572,555,581,561,515,519,525,518,519,520,515,514,524,514,508,518,555,545,547,549,546,546,551,538,546,542,549,539,541,541,555,541,539,546,547,546,544,541,543,542,545,549,550,545,541,542,543,547,545,548,547,536,522,533,538,535,525,522,537,527,487,497,507,502,499,498,494,497,497,493,490,490,497,497,489,488,556,567,554,564,493,497,496,487,487,490,488,493,481,490,489,493,491,492,500,496,493,581,586,574,567,586,573,564,579,566,562,569,566,572,503,485,496,498,506,486,462,457,468,458,452,467,452,454,471,463,462,461,459,557,464,472,464,462,466,476,482,481,457,486,540,531,521,531,545,544,532,528,528,524,532,536,566,561,559,558,558,567,556,573,560,564,520,512,513,522,507,521,505,519,514,509,506,515,508,514,553,551,551,543,550,551,552,551,556,546,554,555,557,536,550,491,492,499,501,557,561,548,552,553,548,553,554,561,546,554,541,556,552,552,554,557,564,525,525,530,529,524,557,558,552,547,555,562,554,548,564,545,543,554,561,512,507,520,515,529,505,498,511,518,494,490,487,479,489,479,483,482,477,479,481,482,478,479,482,477,485,484,488,496,492,492,493,490,499,483,468,468,475,463,466,472,463,461,459,471,476,468,550,541,557,539,560,560,549,558,548,559,512,493,500,488,487,496,483,489,485,500,494,472,571,581,576,549,559,475,480,467,467,483,473,475,476,546,549,557,550,544,560,545,551,564,560,555,562,549,557,543,566,561,560,549,566,557,552,562,567,526,531,502,503,502,507,505,508,508,512,508,489,489,494,491,499,495,500,491,488,492,491,495,498,483,466,466,474,465,470,461,463,466,467,462,459,444,453,521,515,519,520,517,537,534,556,548,552,547,548,538,537,528,531,525,556,563,567,569,555,569,554,554,559,551,542,557,564,562,492,500,506,486,504,499,496,502,499,509,513,506,496,511,511,494,575,567,565,557,565,558,563,563,556,562,570,562,559,560,560,572,537,519,527,534,523,526,515,528,533,533,529,519,525,527,518,536,524,521,494,497,497,499,502,496,495,496,495,500,498,496,495,505,512,579,582,583,584,597,573,602,596,596,606,587,595,566,578,594,532,537,531,524,532,538,555,555,546,556,569,502,502,499,510,516,509,502,518,499,505,501,509,513,502,551,556,561,545,544,544,551,559,549,550,550,553,545,562,548,503,519,498,507,507,512,513,503,509,520,470,470,464,466,461,461,472,467,467,458,463,467,464,462,468,466,452,456,452,443,454,447,586,564,566,574,575,572,583,532,529,543,538,538,541,548,544,550,548,548,552,550,550,557,552,552,549,563,558,557,564,562,552,557,558,561,518,520,516,490,487,478,477,479,476,480,484,480,481,479,482,473,522,512,511,509,504,511,510,506,510,558,557,562,572,560,566,557,562,555,559,570,562,569,566,570,561,564,575,575,553,546,509,520,512,515,506,514,522,519,516,527,493,483,487,489,486,500,488,495,496,497,500,495,498,493,497,537,545,540,543,542,542,545,544,541,547,531,540,568,556,567,555,500,499,493,501,483,512,497,508,496,495,494,487,465,467,459,469,476,468,456,464,458,469,460,456,455,461,459,599,569,581,584,587,579,596,593,576,593,578,582,590,588,583,597,588,506,505,517,504,499,548,568,552,549,551,561,555,563,555,562,567,560,560,556,552,495,500,490,492,495,496,500,487,487,499,498,492,499,487,498,491,498,494,495,491,503,496,489,490,493,496,489,491,571,557,573,565,564,562,575,562,507,503,514,501,499,516,512,456,472,460,459,467,461,455,464,466,468,458,460,454,457,468,459,457,578,588,586,576,591,578,582,575,534,533,536,534,537,536,536,523,527,521,530,524,525,529,529,526,522,525,523,525,524,530,528,528,537,531,539,530,541,539,537,536,480,491,480,483,470,480,481,478,477,490,470,479,474,565,563,556,553,552,562,562,571,565,573,555,564,561,566,563,496,493,507,496,466,466,460,460,472,472,469,462,471,471,477,472,464,460,466,472,472,468,477,548,553,554,558,560,561,561,563,564,553,553,550,559,557,546,555,563,557,564,550,557,561,556,549,551,557,558,552,512,509,494,492,498,515,511,511,466,469,475,472,467,463,473,463,481,481,485,480,481,486,480,478,487,486,479,478,491,483,484,482,472,476,472,484,484,475,480,478,477,477,482,483,481,481,476,478,484,488,477,482,472,485,479,482,490,487,476,476,471,478,471,478,484,476,479,483,477,476,476,485,479,479,477,509,497,503,488,501,496,499,508,501,499,494,496,494,538,562,555,562,547,554,510,522,520,529,514,519,513,533,501,497,501,496,495,495,505,506,502,501,490,491,499,497,508,502,496,498,494,579,559,577,580,561,559,524,514,510,511,501,505,504,504,496,504,501,503,497,506,501,500,497,502,498,478,482,478,480,482,481,509,551,545,547,541,548,546,545,548,524,525,525,529,529,526,564,553,544,553,556,547,552,555,563,552,556,548,537,491,488,473,475,486,472,483,480,489,478,433,446,442,447,440,442,438,437,438,449,449,446,431,439,449,434,446,449,442,436,541,545,545,545,530,550,536,543,544,539,551,543,528,536,579,563,564,560,565,568,578,573,547,541,545,553,553,563,540,487,493,490,493,501,499,488,463,456,458,464,559,552,546,566,545,559,558,552,556,493,482,490,503,494,481,493,564,554,556,547,547,560,558,556,551,546,542,550,545,539,547,554,561,562,548,536,545,507,515,523,522,525,512,522,510,524,515,579,573,567,573,571,569,565,576,521,524,517,536,520,535,511,535,522,512,514,509,516,506,510,504,509,491,486,500,483,494,495,492,495,502,489,487,485,491,480,493,483,491,487,482,483,489,487,490,485,494,495,495,493,490,492,497,496,495,494,497,490,490,480,480,478,480,481,480,481,454,457,441,437,555,554,539,549,546,551,548,543,546,540,546,541,541,540,543,468,473,470,464,474,475,468,480,482,478,475,469,473,566,581,569,574,566,495,490,496,485,509,500,503,457,460,461,457,456,458,465,469,459,457,472,464,456,464,457,455,463,458,472,453,466,553,562,460,475,460,467,539,536,537,536,541,544,537,535,526,548,529,542,544,543,558,536,550,552,533,549,544,555,539,555,551,539,541,542,542,491,498,493,480,478,480,583,581,580,573,554,549,552,548,552,546,552,552,552,544,546,542,545,549,553,552,546,546,551,539,552,545,548,545,549,543,546,550,499,507,499,509,499,492,502,503,501,504,514,523,499,508,514,514,508,556,564,558,567,560,561,561,558,551,564,557,562,569,559,555,494,498,493,501,484,496,500,499,490,463,474,454,459,465,462,468,471,467,465,466,557,550,546,552,558,552,557,544,543,553,541,551,553,555,554,527,519,521,528,525,521,517,515,516,515,526,545,551,547,544,543,545,549,554,547,547,552,535,536,526,551,557,562,574,571,562,580,565,570,554,570,565,568,560,496,491,512,491,501,515,508,502,518,505,520,496,510,499,508,517,496,478,480,476,479,481,481,478,478,492,482,489,481,487,481,480,478,466,479,471,500,498,490,487,493,497,490,498,503,516,537,544,548,538,538,542,538,542,539,547,545,543,551,543,546,545,539,554,551,548,553,541,549,514,516,523,521,523,519,521,512,522,507,506,511,509,504,500,510,503,508,500,507,506,533,525,529,527,518,537,541,537,535,538,539,542,537,545,546,540,540,544,555,553,541,544,520,510,516,511,501,509,512,515,512,512,518,529,529,528,530,527,529,525,533,529,524,528,586,572,585,588,583,579,599,583,577,579,582,585,592,578,582,578,576,593,585,590,552,558,559,507,509,511,479,466,473,475,473,472,469,473,464,472,472,477,468,477,478,475,468,468,478,477,471,479,569,548,516,507,511,509,522,521,526,495,488,490,488,483,492,493,477,483,485,491,485,487,479,475,479,471,477,476,477,471,484,473,473,479,470,469,461,458,460,457,456,469,469,459,535,544,543,540,538,539,531,546,542,546,543,546,536,541,537,542,546,539,539,548,559,543,538,544,553,551,541,552,547,544,543,543,537,525,530,542,565,525,520,504,521,524,527,532,526,526,516,513,521,506,504,482,491,486,484,480,480,478,479,483,463,465,468,470,451,458,457,460,447,459,457,452,454,465,531,537,539,543,544,536,539,535,540,532,531,555,554,548,549,556,549,548,553,545,560,557,554,555,539,548,559,554,544,550,559,559,567,565,564,557,557,554,564,514,480,485,479,485,483,498,486,509,501,504,504,501,505,507,551,559,554,561,558,558,559,555,556,553,554,548,553,555,552,551,559,557,554,554,550,552,546,556,544,545,548,554,554,552,550,547,549,557,552,546,551,546,517,510,504,513,502,522,477,484,458,464,461,467,451,476,459,459,460,456,459,464,455,447,456,462,454,463,456,460,458,453,455,453,458,461,456,459,575,598,584,557,556,549,546,516,530,514,504,517,519,531,525,525,516,516,476,480,475,476,477,481,486,483,472,472,476,477,475,477,474,486,480,486,490,490,485,491,496,492,550,559,578,552,569,578,568,563,564,564,570,581,576,560,510,524,527,506,521,510,532,524,518,514,497,470,479,471,474,491,479,472,480,475,476,474,475,481,472,476,485,471,471,482,476,469,480,473,471,473,475,480,479,474,479,471,461,471,454,472,466,463,470,466,472,469,462,469,467,460,558,559,563,550,553,548,567,553,554,565,552,560,557,559,559,544,539,550,556,550,544,557,546,546,558,546,547,554,484,472,465,470,477,464,474,466,471,476,475,478,485,462,469,492,454,453,443,462,443,445,438,443,450,437,449,451,528,536,531,530,527,517,526,528,533,524,528,524,530,543,530,529,544,531,533,538,537,529,536,532,537,537,535,537,533,557,564,575,570,563,572,569,573,566,574,560,572,572,565,570,513,509,509,508,503,506,510,512,509,500,509,499,555,551,560,569,553,559,553,557,552,550,548,557,516,519,523,524,517,524,511,523,516,517,517,523,516,516,529,531,521,516,482,484,491,480,489,487,490,464,463,459,466,458,453,469,455,457,456,453,462,464,473,453,459,459,553,563,565,564,567,559,563,559,546,558,552,559,547,512,511,504,512,496,497,511,506,493,502,500,507,504,501,499,493,503,503,496,496,488,497,492,496,502,500,496,535,540,542,545,551,543,540,531,539,528,538,535,541,544,538,548,548,558,544,544,558,558,552,550,557,520,508,509,511,562,575,569,551,560,561,557,554,571,573,527,514,511,512,511,493,499,511,511,508,491,514,513,488,494,517,430,444,431,441,434,442,444,434,443,442,437,436,439,447,436,470,474,470,461,470,475,462,466,479,469,464,479,467,459,462,475,559,574,561,557,563,575,568,491,522,507,515,510,458,449,458,447,448,463,459,454,449,452,449,458,459,452,458,546,549,555,556,569,572,593,568,577,557,578,570,562,566,571,539,528,524,533,519,522,529,549,536,535,528,526,532,466,479,471,471,470,475,472,476,482,485,552,559,552,557,560,560,551,560,555,551,551,555,559,557,553,551,547,568,494,455,465,470,464,452,460,470,446,457,508,508,508,507,505,505,501,501,504,505,513,545,550,557,535,548,555,544,553,541,546,486,485,482,476,489,507,478,489,494,482,488,477,485,485,493,489,485,486,485,464,473,479,478,475,560,539,556,550,555,545,551,549,536,544,535,534,539,509,511,526,509,517,576,570,559,581,571,578,579,564,576,527,529,526,516,524,521,526,527,520,516,525,523,530,491,483,489,478,481,490,472,457,469,461,479,465,469,462,461,468,552,571,562,562,572,565,566,566,568,567,567,525,516,531,523,502,523,526,526,519,519,517,513,514,484,482,483,487,484,499,492,479,482,485,482,480,479,483,474,479,479,480,482,476,491,483,488,489,497,495,489,492,491,491,489,494,490,475,466,472,492,491,484,484,488,482,480,496,481,485,486,486,493,526,534,533,527,524,537,529,532,535,524,569,558,563,502,507,496,506,514,504,503,510,560,563,559,555,568,545,545,568,524,513,546,547,535,545,526,542,544,540,505,501,507,497,496,506,500,493,492,492,501,555,544,543,544,545,549,546,549,546,564,570,566,568,568,566,563,561,565,555,542,551,494,492,497,498,489,506,494,493,493,499,504,492,484,489,496,493,464,465,461,448,459,467,502,544,542,533,552,541,552,553,534,541,539,556,525,542,509,512,509,521,509,518,519,516,546,563,505,501,508,514,502,593,604,588,598,584,590,597,599,590,589,583,561,527,519,543,561,455,461,455,459,464,465,456,452,444,459,449,459,452,461,455,528,529,520,532,535,538,542,544,538,544,540,547,535,532,536,544,543,543,549,537,541,556,539,542,548,504,497,507,511,498,506,506,503,515,554,559,569,564,562,571,553,566,572,560,575,574,573,562,520,524,507,513,521,518,504,506,513,468,471,470,465,462,469,464,464,467,459,468,467,474,471,475,476,470,471,472,472,472,473,475,460,458,446,451,458,457,444,442,437,454,446,453,450,463,452,448,444,449,445,444,459,541,531,541,536,527,532,519,522,528,522,526,537,521,525,525,526,522,529,547,540,546,542,538,556,557,560,553,553,563,549,549,555,552,498,498,489,506,495,490,474,466,574,592,579,585,584,577,586,528,529,529,527,524,532,536,512,516,512,507,553,569,571,554,576,569,569,569,556,565,547,568,558,570,490,492,493,493,510,502,506,495,502,510,498,475,454,478,464,470,468,475,455,460,464,463,461,465,462,580,582,585,592,588,592,548,554,545,552,543,542,544,491,486,482,492,486,492,484,485,483,497,450,450,444,449,446,444,453,459,453,437,446,446,445,552,554,554,572,558,558,553,552,572,547,555,551,553,546,562,553,553,553,559,549,560,504,514,506,499,510,508,507,508,516,508,497,510,509,511,504,517,521,514,510,476,458,471,478,477,460,460,467,470,466,456,461,462,465,464,474,461,454,463,454,465,457,453,541,565,558,544,533,565,547,541,558,543,560,546,548,559,549,557,556,476,473,489,491,498,486,498,481,494,487,493,502,495,481,493,495,445,433,441,427,440,435,445,449,425,433,447,527,522,516,520,523,523,519,521,520,527,513,542,552,552,540,553,539,551,526,525,525,525,523,530,529,523,520,519,532,522,529,526,532,526,538,533,535,546,543,493,498,494,490,489,494,490,579,603,587,591,584,589,580,592,591,595,597,538,542,536,540,558,560,557,562,543,557,567,567,552,563,557,558,556,563,557,577,559,554,552,523,521,516,517,521,515,520,535,538,537,541,542,533,558,552,563,551,557,555,555,551,556,550,562,559,554,476,479,480,480,480,473,480,478,479,473,454,455,447,447,453,446,553,559,552,556,554,548,557,553,497,503,487,512,513,527,495,506,499,492,498,446,435,447,484,477,479,480,486,487,485,480,488,480,482,490,489,486,492,538,573,566,565,554,552,556,549,564,557,547,566,563,560,554,556,560,575,562,559,565,563,566,515,508,512,491,492,492,552,541,545,536,544,541,541,536,539,542,556,570,576,566,560,570,562,566,574,572,571,576,570,526,516,519,520,516,519,525,525,528,531,515,521,522,483,495,488,481,497,489,483,490,487,483,484,493,495,485,489,490,509,502,512,508,505,510,502,501,499,506,503,506,532,538,535,540,538,540,545,537,540,544,545,462,467,456,455,446,456,451,461,449,459,528,523,528,518,519,523,525,526,520,523,519,520,517,523,517,523,520,528,524,525,521,550,543,544,547,565,559,511,499,510,531,511,524,526,505,508,508,505,505,508,499,511,507,516,487,484,481,483,487,466,469,467,465,470,462,475,466,471,471,469,459,470,436,447,443,440,454,460,451,444,451,451,449,463,444,473,469,476,464,466,477,473,476,476,472,469,476,486,602,577,592,594,603,525,535,538,530,535,532,530,524,512,515,515,539,550,548,547,547,544,550,549,543,547,542,553,557,556,543,547,553,549,555,545,553,549,505,497,504,514,500,507,500,507,512,498,500,499,529,533,536,525,540,540,534,528,525,519,521,515,521,526,523,516,524,520,518,521,521,517,527,522,524,518,523,519,544,537,540,534,541,544,533,543,533,556,549,545,554,551,538,553,556,536,537,556,500,494,506,485,497,493,496,505,501,505,496,508,504,494,496,494,511,499,516,451,449,453,458,454,457,451,460,463,462,452,453,455,461,460,453,465,472,473,466,468,462,473,460,465,462,457,463,451,464,454,464,466,466,464,471,459,464,570,560,561,553,560,552,511,527,524,519,525,523,518,521,513,526,526,516,512,518,490,482,497,496,495,487,490,479,490,485,493,488,487,477,485,494,495,490,500,486,486,497,487,490,482,494,453,455,459,457,459,454,454,457,464,451,463,455,453,451,450,454,439,449,463,447,455,450,457,440,451,455,534,530,541,535,542,540,541,527,523,525,534,524,519,542,545,545,543,547,532,536,556,550,547,554,538,563,544,544,552,476,488,479,478,476,482,481,483,489,546,538,539,533,549,538,549,567,563,562,558,561,565,562,563,565,562,539,539,542,541,540,533,539,540,540,534,540,533,533,529,544,550,558,559,557,551,571,564,563,512,555,569,575,569,560,585,571,570,578,562,570,565,571,561,570,570,503,485,513,499,519,510,502,498,502,505,438,450,447,439,441,438,428,459,436,450,445,439,452,446,485,495,557,484,492,501,488,484,487,486,484,493,497,495,490,493,480,505,475,472,476,465,470,550,544,536,547,550,547,554,550,555,567,540,542,552,520,520,525,524,521,519,551,553,481,478,484,477,494,490,478,491,476,488,475,487,488,478,487,444,447,454,449,447,446,455,454,438,560,563,563,556,560,546,572,557,556,570,564,549,551,565,560,554,561,525,519,527,536,535,528,518,524,528,515,523,511,513,507,508,511,505,502,500,499,498,506,504,486,494,508,503,508,507,502,500,509,500,501,501,499,505,548,548,546,533,541,548,542,548,576,574,568,558,570,561,568,565,574,557,565,484,484,483,491,524,533,538,527,528,527,525,536,527,536,539,536,544,535,541,529,538,535,539,526,534,536,563,569,573,571,558,535,532,513,501,509,510,521,515,502,506,507,510,522,516,571,555,578,568,556,548,562,554,558,579,565,513,500,504,503,512,505,497,499,530,506,508,514,523,513,523,518,525,531,511,525,526,518,554,546,556,567,554,500,509,519,515,457,459,466,460,455,462,450,463,451,474,462,466,469,464,469,474,486,472,464,470,476,471,465,475,462,477,473,474,466,569,569,571,565,554,565,523,511,519,513,517,528,529,525,527,528,530,527,537,523,523,528,526,519,519,512,522,525,514,519,521,518,523,515,560,564,574,559,553,555,563,555,562,573,570,514,521,517,513,521,510,528,515,480,484,481,473,487,487,484,476,512,510,563,565,552,562,545,546,561,559,559,558,558,554,567,558,521,515,505,495,494,504,506,500,493,502,467,470,468,461,463,459,455,467,466,436,442,427,436,443,440,436,440,442,430,432,434,425,449,429,433,526,535,530,525,521,541,531,523,534,529,536,531,561,562,574,576,565,548,530,512,523,522,519,519,483,496,579,591,543,542,552,551,543,542,549,543,536,543,557,557,569,567,572,571,561,572,577,559,572,579,575,564,579,563,564,544,560,555,524,516,516,526,527,517,485,481,489,484,489,488,485,480,466,469,461,460,460,462,468,460,467,457,462,577,555,556,553,550,555,564,565,473,493,491,498,469,489,487,498,563,549,551,539,549,539,549,553,550,549,552,492,491,490,495,493,497,497,494,509,481,492,497,482,486,482,493,483,482,482,480,475,491,559,544,566,562,563,542,558,564,550,541,552,563,555,482,559,557,566,575,544,560,562,566,556,565,564,565,559,455,468,451,535,535,532,535,523,572,571,566,557,549,556,576,567,572,568,558,561,561,560,561,527,519,515,526,519,529,530,514,521,529,526,529,562,558,554,492,484,496,479,477,485,488,472,491,491,482,477,482,467,481,479,479,549,544,552,540,539,546,550,545,566,540,546,492,548,553,554,558,551,552,555,561,561,564,564,546,553,537,534,538,554,538,549,539,557,549,547,551,545,542,541,488,480,478,478,477,472,464,473,481,472,473,474,466,474,451,545,531,535,540,530,540,534,534,546,544,541,544,545,544,549,544,543,545,544,547,558,559,543,548,548,550,480,489,495,497,485,489,477,492,477,492,494,480,555,566,567,548,555,555,549,556,552,562,550,552,551,518,510,519,524,520,515,518,510,513,519,517,511,515,519,522,514,513,512,501,509,505,505,504,509,510,509,506,514,557,550,551,550,549,558,548,547,544,545,550,541,542,554,545,540,543,554,549,471,472,474,490,475,466,486,474,475,480,480,478,486,462,474,478,478,475,485,476,468,470,559,560,553,546,575,560,556,554,478,481,478,482,447,447,434,451,446,447,440,441,453,440,446,444,454,527,534,541,521,520,524,522,525,520,527,521,524,519,524,526,533,534,540,530,526,536,546,544,535,546,551,543,530,537,534,542,539,559,549,540,537,547,471,462,472,492,482,481,467,472,464,473,481,471,542,538,536,541,544,536,556,544,541,546,545,545,551,542,537,559,541,558,553,547,549,553,551,551,552,549,548,546,555,545,507,510,508,512,506,519,495,502,504,499,510,518,478,471,482,475,475,480,471,473,484,472,475,478,479,473,477,499,495,499,498,508,497,505,502,501,501,506,494,492,510,501,591,561,573,567,568,585,570,557,577,577,584,580,575,576,564,486,504,498,490,495,487,504,510,486,493,501,496,513,501,508,506,504,494,488,508,501,579,571,582,525,529,522,532,528,534,534,536,530,514,515,535,538,536,527,518,523,513,507,508,511,503,511,511,506,499,510,514,507,514,505,510,477,478,478,476,474,479,467,471,475,472,483,479,480,472,608,595,606,587,602,601,586,584,586,584,550,547,547,554,545,555,543,549,552,545,547,552,556,548,546,554,527,534,487,493,492,496,496,498,494,499,497,497,493,452,455,463,461,461,460,472,460,457,455,458,452,443,452,462,445,462,445,456,535,537,542,537,538,532,542,528,535,537,534,532,547,546,548,546,541,545,543,541,539,545,546,543,549,548,537,542,506,508,504,499,505,502,503,504,590,597,589,590,598,593,597,598,594,596,588,604,601,601,581,592,595,528,531,532,538,522,550,549,561,556,567,560,566,574,568,562,554,579,559,566,552,536,561,513,502,515,499,514,502,497,522,509,535,556,559,554,549,561,545,567,549,561,544,488,494,488,485,495,498,492,490,485,507,450,464,450,520,523,521,517,522,530,530,534,526,531,527,526,528,533,562,564,558,528,530,539,534,532,532,530,573,569,565,570,569,559,570,554,565,564,566,573,565,555,510,525,513,522,520,519,526,518,516,511,519,504,508,496,502,509,503,498,502,460,464,457,461,476,458,469,435,447,442,451,430,437,442,440,444,434,442,434,446,535,529,524,534,538,542,527,535,531,533,532,533,540,495,487,478,484,482,479,484,485,478,490,490,483,472,488,577,587,551,550,562,552,555,553,548,551,564,512,495,499,505,497,503,483,484,480,484,486,487,487,483,478,474,490,483,479,483,489,482,478,473,469,474,474,469,479,474,469,472,468,472,464,476,472,471,528,534,559,540,540,541,549,558,548,546,554,470,480,469,478,460,483,474,474,465,483,459,473,474,471,486,479,481,492,541,537,539,539,544,544,541,541,538,546,555,566,575,566,561,554,570,557,573,569,556,543,565,573,556,568,570,484,555,562,555,548,541,548,541,542,547,544,543,543,547,549,546,541,546,477,485,476,490,478,482,474,478,480,489,475,485,476,481,487,491,489,486,492,494,492,548,544,542,540,547,539,547,538,538,540,542,544,544,564,568,556,563,557,515,515,514,513,508,513,560,559,556,541,544,531,530,531,533,531,528,532,537,533,533,529,531,531,523,552,555,546,555,556,564,563,555,562,552,556,520,522,518,505,510,495,483,476,495,490,485,485,484,486,492,491,494,487,487,488,468,487,489,484,481,484,480,477,493,478,488,481,476,477,480,483,485,467,469,481,475,476,478,472,462,465,476,454,458,518,544,534,531,538,524,535,534,530,541,539,533,540,534,536,541,539,533,543,536,540,534,532,537,541,561,566,556,559,564,569,566,560,575,566,570,570,572,570,529,476,476,478,462,477,475,466,466,485,486,476,468,472,479,525,533,545,552,543,544,547,545,545,544,542,548,545,542,548,506,499,500,506,503,500,497,508,500,494,511,559,560,564,573,575,514,506,510,519,511,503,503,501,527,528,522,528,526,528,525,530,527,527,526,540,539,539,538,528,531,539,543,545,537,536,547,552,551,552,546,553,544,539,541,550,552,548,541,551,486,486,492,482,457,461,454,470,546,558,547,545,506,509,496,506,506,516,499,503,493,504,518,510,511,500,508,507,506,496,510,506,573,565,573,556,563,561,556,569,510,520,521,508,529,517,519,517,511,505,506,507,508,515,502,506,509,515,512,491,499,490,497,498,490,495,497,507,497,500,492,500,498,453,454,448,454,457,467,454,455,453,459,464,458,452,460,452,459,455,478,486,490,472,486,477,481,473,557,556,576,573,489,508,508,488,511,502,494,498,489,500,486,491,482,499,500,483,497,500,489,485,500,561,553,551,549,557,555,559,557,554,553,558,560,523,529,524,525,528,525,532,524,501,490,493,489,494,504,509,498,508,503,565,579,564,560,546,557,561,563,566,564,571,573,564,558,503,511,506,499,506,501,518,514,511,508,504,515,508,509,515,509,555,551,543,548,551,562,507,513,515,486,497,493,495,494,490,489,501,497,493,485,481,485,489,490,489,481,478,477,522,509,507,508,513,506,552,538,547,545,534,551,542,539,555,543,536,537,483,466,476,475,481,461,465,476,470,473,481,475,479,536,539,537,534,528,523,540,517,535,534,527,530,533,522,521,519,526,532,525,527,532,525,523,528,524,530,539,541,541,539,534,540,537,529,541,532,549,555,532,555,544,541,547,518,523,519,520,523,519,526,517,519,518,545,553,555,550,546,549,544,554,550,557,554,550,552,558,552,560,550,554,561,553,557,562,557,557,565,575,553,535,519,524,521,526,525,509,500,509,496,493,503,510,472,484,475,484,485,478,480,480,474,477,481,466,464,470,468,464,557,548,553,552,559,560,559,556,552,560,551,550,558,547,557,541,557,552,544,525,552,560,563,566,485,483,500,499,485,494,467,467,483,467,475,481,472,475,486,477,473,470,466,594,594,594,589,605,535,540,542,541,540,536,536,547,549,569,559,564,551,557,569,549,569,511,489,456,470,596,584,582,591,608,590,584,589,601,594,585,594,611,544,543,546,559,547,543,545,552,561,546,550,517,507,506,531,507,514,516,506,509,512,492,480,487,479,479,489,493,499,495,503,499,502,504,496,527,531,532,533,531,529,470,483,468,482,479,478,493,477,478,544,550,555,546,551,550,551,560,550,548,562,564,562,557,556,544,486,501,510,503,506,501,502,498,509,501,502,504,498,507,511,546,545,543,545,543,537,528,541,546,549,553,554,540,490,489,491,495,495,482,502,500,501,509,516,580,561,566,562,564,561,564,562,557,563,560,558,539,531,532,529,537,531,535,538,540,512,496,497,498,496,506,479,488,498,498,505,500,457,460,456,462,450,465,453,464,453,460,461,576,570,540,566,564,550,547,465,478,469,475,467,466,537,540,542,542,518,538,544,527,534,539,523,538,533,541,539,537,548,547,557,516,515,506,516,511,507,510,500,513,526,532,531,534,538,533,542,534,537,531,531,540,533,535,539,558,561,561,557,557,557,557,547,555,559,543,559,556,553,539,532,510,515,508,515,497,511,511,548,559,564,566,556,572,564,546,548,554,565,557,542,546,559,515,514,521,511,526,541,537,551,546,542,543,548,553,540,541,548,545,549,542,549,537,532,536,531,535,549,542,531,531,576,582,588,574,570,514,493,482,499,501,505,500,486,486,498,500,503,501,490,479,605,585,584,609,602,609,607,591,593,513,513,517,503,527,527,525,531,538,538,524,528,532,526,526,530,527,530,529,532,531,537,531,533,534,529,529,539,546,531,527,538,547,540,531,530,524,531,564,564,518,517,521,523,535,522,537,526,522,510,508,507,501,503,494,509,512,509,503,503,500,511,481,482,479,480,480,481,480,479,490,473,476,481,475,473,484,478,469,482,482,487,484,480,485,489,484,487,482,478,490,494,478,485,569,561,556,575,567,566,526,533,523,531,525,528,532,525,525,531,528,527,559,553,558,559,548,568,550,539,559,551,561,559,557,523,527,521,523,519,510,515,505,500,499,514,503,502,496,501,501,506,501,506,514,507,504,498,500,500,500,504,512,504,502,504,501,505,481,483,468,460,458,459,457,453,461,468,460,477,483,576,568,571,560,577,552,518,515,513,546,532,545,537,538,553,536,530,532,565,557,556,568,554,562,560,566,567,569,558,566,508,496,496,495,489,493,501,494,500,495,547,556,556,550,566,569,569,568,561,559,556,563,562,566,563,564,566,566,518,515,513,525,510,499,483,488,496,493,494,496,484,497,492,488,488,497,495,489,485,495,490,487,494,490,492,485,482,490,490,491,493,492,499,497,502,504,497,502,499,501,508,501,502,486,492,484,472,491,480,488,485,480,491,481,479,478,479,484,482,472,460,457,462,460,457,469,566,565,558,553,562,558,555,568,554,571,555,493,497,485,499,497,497,534,550,556,534,545,533,551,558,547,547,475,484,467,496,492,486,498,499,497,541,547,545,543,551,546,506,496,499,501,501,505,497,546,548,547,542,542,539,544,573,562,567,566,578,568,582,556,591,567,574,568,570,544,560,556,531,525,527,514,540,508,518,524,535,520,507,496,508,490,504,508,505,495,506,499,505,483,483,472,467,461,564,562,550,550,562,554,534,506,514,507,519,509,567,579,568,564,584,554,561,557,557,509,500,465,478,470,462,469,470,476,466,465,467,466,558,537,552,547,474,476,466,496,491,473,478,483,482,576,576,577,591,498,499,511,502,506,500,501,507,495,507,497,503,462,463,463,458,455,471,459,470,466,453,561,552,548,538,565,556,559,538,522,525,514,526,521,523,520,521,523,517,554,549,540,551,551,495,511,498,495,515,518,515,509,512,514,514,517,515,525,516,514,516,510,516,549,541,536,534,553,548,480,487,484,488,488,469,484,483,487,555,556,545,546,542,552,548,552,553,538,555,544,549,549,538,551,544,545,554,540,558,519,528,526,524,517,525,516,518,521,517,546,546,552,553,545,552,549,549,538,546,554,549,545,555,552,548,538,528,536,546,543,541,584,580,568,574,577,587,575,583,581,570,580,581,572,566,582,581,522,527,526,524,525,520,532,533,516,528,528,531,529,525,514,533,534,531,529,518,512,510,510,502,505,505,503,510,505,502,503,496,492,492,496,488,491,492,494,475,470,468,477,470,470,466,471,467,472,497,492,501,499,497,494,489,491,493,494,502,495,503,536,528,528,535,502,515,511,520,508,527,511,516,517,516,564,563,563,568,593,559,572,561,560,549,567,501,500,495,513,507,504,489,504,497,497,489,492,495,496,498,490,554,571,563,560,557,560,554,563,578,578,548,581,561,556,476,472,467,474,469,472,478,476,480,480,470,477,482,471,472,555,569,560,578,560,556,576,579,508,493,504,522,506,513,517,503,493,457,452,457,457,462,459,469,460,455,464,455,455,445,463,456,452,446,477,490,479,486,483,478,481,481,477,479,481,479,488,572,572,573,592,575,572,567,567,577,501,482,497,513,499,484,489,482,573,583,564,587,575,580,585,563,564,578,531,523,535,533,533,526,540,530,546,542,520,522,517,520,519,522,524,518,516,514,514,514,512,522,517,516,559,565,568,568,569,565,569,560,567,559,562,548,568,558,576,531,521,524,519,506,501,500,500,502,509,499,507,500,511,509,504,499,507,510,482,478,492,502,495,501,493,556,559,583,559,570,572,551,552,559,515,511,511,505,510,513,569,566,561,566,560,551,558,555,580,552,571,583,514,521,514,515,520,520,508,509,533,519,525,522,523,519,530,520,525,516,527,522,581,595,590,593,598,593,587,579,585,592,588,581,584,589,578,587,582,592,551,554,549,549,544,546,548,556,554,557,512,504,501,501,488,483,502,497,494,492,494,495,495,493,496,490,502,504,501,483,502,502,503,496,499,498,506,503,506,503,501,504,503,507,512,526,538,531,546,555,558,556,499,492,491,490,498,478,567,547,552,560,496,481,474,484,487,491,496,489,486,587,589,599,591,592,583,583,585,587,544,544,556,549,552,550,546,542,541,545,544,548,493,501,504,484,490,492,492,493,494,499,494,498,578,567,592,583,565,570,563,572,588,572,577,585,561,491,482,487,485,491,481,489,529,535,538,531,536,538,536,529,535,547,549,553,546,545,552,548,547,555,556,555,564,557,548,566,565,555,562,558,552,564,571,555,570,525,517,523,528,511,509,527,516,493,490,490,487,494,481,487,489,486,492,510,511,501,506,543,539,545,533,548,543,552,547,545,521,527,524,531,528,528,530,524,524,536,535,544,544,540,545,540,533,543,539,530,528,479,485,479,483,482,482,476,486,481,480,477,486,562,553,547,556,554,565,554,559,562,554,552,565,501,501,496,497,496,508,513,498,515,518,520,513,517,515,511,519,509,523,517,546,532,541,539,539,548,478,474,471,471,477,485,484,469,480,484,473,498,484,565,551,558,555,556,566,555,550,554,559,555,563,561,555,554,549,560,555,500,497,499,511,497,506,510,515,503,507,504,523,494,497,495,491,493,495,521,526,541,528,528,525,532,532,526,531,537,563,495,504,496,503,499,496,487,489,495,494,548,532,540,540,545,535,535,550,534,531,553,548,542,511,512,515,512,514,519,520,514,517,513,517,511,511,515,519,518,556,552,558,549,554,542,548,545,546,545,551,548,549,553,549,553,548,553,552,552,546,540,539,545,532,543,541,542,538,540,548,545,574,554,566,567,555,514,527,522,529,512,515,515,517,518,521,521,518,523,520,516,524,516,526,527,560,496,503,499,502,504,499,495,504,499,494,501,503,499,502,507,573,583,562,534,533,517,514,519,512,510,520,509,519,515,509,508,519,509,510,505,562,562,570,574,557,567,560,578,566,567,571,508,498,483,489,493,482,489,487,486,488,490,481,484,489,488,483,479,466,479,478,475,466,471,468,466,476,471,476,471,462,476,468,467,474,474,472,466,463,443,444,452,437,440,436,447,435,445,436,443,431,438,438,548,542,551,545,556,557,549,536,546,540,539,552,540,546,542,558,549,552,535,534,516,504,504,503,510,505,511,509,509,502,506,509,509,548,550,528,528,529,526,531,528,534,534,525,537,533,534,546,535,553,540,548,536,540,477,474,524,531,530,534,522,529,533,536,540,538,534,532,536,528,536,540,526,534,526,540,529,552,544,551,550,548,551,543,498,495,487,494,501,489,504,477,493,496,494,481,505,484,494,492,478,456,454,468,454,459,538,545,501,492,511,505,506,529,534,530,520,520,516,535,534,527,526,534,532,526,557,566,559,549,567,553,498,493,496,494,502,474,505,508,497,441,442,433,439,436,448,432,442,442,439,530,529,529,532,537,554,565,564,563,554,565,538,533,528,523,528,530,539,529,541,532,525,530,530,527,534,537,556,553,559,555,547,559,560,562,480,482,482,494,495,474,488,491,485,471,486,499,494,478,482,490,571,577,562,528,522,530,535,529,532,534,533,517,530,523,528,540,523,534,533,529,508,512,500,508,498,502,501,494,499,506,483,481,478,488,485,489,484,488,485,485,468,460,460,452,468,463,462,468,459,468,458,467,458,460,460,458,459,470,463,463,464,458,467,444,444,450,431,441,454,544,534,547,546,537,546,526,547,540,541,535,559,538,545,547,552,521,512,511,513,518,517,512,515,511,514,513,519,519,513,516,511,515,534,525,534,526,528,525,527,525,515,524,512,521,525,518,524,522,523,521,524,520,517,520,516,520,518,563,564,559,554,566,556,558,532,553,542,551,550,540,555,552,541,537,550,501,473,471,468,466,459,463,461,461,474,462,468,472,477,465,462,472,469,473,468,469,461,474,463,459,468,539,537,544,538,531,535,545,529,531,543,532,548,525,524,525,523,527,526,515,526,523,522,532,522,523,523,525,543,549,538,553,537,551,551,539,552,540,549,540,555,496,493,485,490,492,492,486,491,497,493,529,528,530,539,533,532,531,553,569,559,555,558,544,480,480,465,484,483,484,473,474,519,514,519,533,523,528,514,521,517,521,516,522,517,527,527,533,542,544,543,538,539,548,552,550,543,544,547,541,554,556,544,559,551,559,549,561,559,564,556,554,552,560,564,554,521,531,518,524,527,523,519,513,515,525,519,509,519,519,522,534,501,524,523,521,532,538,515,497,492,494,496,500,503,492,498,497,497,499,458,464,460,466,453,452,458,459,460,451,500,507,500,503,501,492,513,497,496,504,558,501,494,479,481,490,475,468,472,557,546,554,560,561,543,553,574,549,558,564,560,553,574,547,504,489,496,503,451,452,441,443,448,446,440,440,432,458,442,426,446,441,454,442,436,529,534,524,525,524,526,541,535,541,538,542,534,544,540,533,541,541,535,537,538,549,505,510,515,508,513,509,504,503,502,512,517,515,509,554,544,545,540,545,539,549,539,540,546,539,551,545,540,552,549,532,531,543,559,565,571,558,528,528,527,531,530,530,532,523,531,525,555,560,551,551,540,548,496,502,500,498,490,506,503,488,507,513,502,497,465,464,462,463,459,458,469,460,461,462,459,464,451,453,460,467,461,456,454,458,464,463,469,458,540,541,533,544,552,534,546,549,542,533,530,517,515,513,519,521,519,526,539,534,530,534,506,501,502,503,506,497,503,501,505,533,520,531,531,532,527,524,547,547,500,502,509,509,506,517,514,519,507,510,509,494,504,502,510,507,496,506,502,499,505,502,533,527,540,541,542,531,539,552,542,540,537,544,540,542,548,539,544,546,550,542,536,542,543,547,539,547,549,538,548,541,537,481,483,487,488,596,584,580,576,572,588,579,593,570,534,520,522,542,545,536,534,540,543,534,464,468,474,468,471,469,468,464,463,456,456,457,455,445,453,449,441,447,451,437,456,461,451,547,543,548,551,543,543,555,554,552,540,551,549,556,536,571,576,574,582,566,571,583,579,572,579,565,575,546,543,547,546,540,538,545,533,542,541,550,541,515,489,493,507,501,511,503,500,509,493,499,508,464,456,441,449,445,455,457,452,468,479,460,464,487,471,472,466,588,600,609,582,582,578,586,579,585,589,604,588,596,579,512,529,527,522,522,529,524,516,514,520,526,519,520,518,509,506,511,513,515,523,554,563,553,554,565,557,548,549,558,564,562,555,565,550,559,568,563,557,560,556,563,564,501,486,503,487,490,504,513,493,497,498,501,493,504,499,503,495,499,498,492,500,493,552,571,547,564,551,540,556,556,549,558,546,554,489,499,468,482,484,474,486,487,492,486,482,483,487,481,491,504,506,506,510,516,509,510,511,535,527,527,530,534,538,527,536,540,534,531,533,530,532,539,485,485,477,491,495,502,587,580,577,576,575,569,566,580,578,591,575,520,515,515,529,529,514,526,520,528,519,587,587,532,541,545,523,533,531,533,538,528,557,545,548,565,541,554,542,557,548,556,560,564,560,552,490,484,483,485,478,473,482,474,470,495,467,466,461,470,466,464,468,471,474,464,464,560,550,554,562,563,569,552,567,526,531,523,517,519,552,549,548,550,545,547,513,511,497,498,497,494,508,498,491,503,503,498,482,504,454,453,451,450,442,449,452,458,450,454,458,455,453,459,460,446,448,446,457,441,447,439,540,543,538,542,542,549,550,544,540,559,551,548,546,584,580,580,574,573,576,582,571,575,569,549,541,551,502,495,496,498,487,499,497,499,500,497,490,500,496,493,497,499,499,510,529,532,526,533,531,526,538,529,528,527,532,519,528,531,530,519,538,543,548,542,543,532,546,537,538,534,537,557,548,550,545,535,557,541,545,549,544,546,548,540,547,543,544,554,546,546,485,485,490,470,473,477,481,459,489,474,477,457,488,473,477,477,463,482,458,455,454,458,465,457,454,441,447,452,455,445,458,444,460,552,555,555,554,555,548,565,553,562,554,558,558,549,567,552,550,553,556,559,544,561,484,483,495,481,494,504,489,496,501,459,466,470,470,466,465,477,464,470,475,464,470,465,470,462,468,467,467,537,547,547,543,551,543,543,541,546,538,556,551,483,482,481,474,463,470,488,460,455,447,450,444,458,444,553,542,549,554,551,546,553,541,550,553,549,550,548,550,546,558,548,550,546,553,542,546,553,483,487,475,491,503,479,494,497,483,495,492,561,534,539,549,565,554,539,553,544,541,543,537,523,518,532,525,526,518,525,537,559,545,549,530,537,551,551,543,552,559,547,531,545,541,555,497,493,500,491,491,499,491,491,485,490,499,487,497,501,499,505,504,502,504,496,506,507,503,534,540,532,539,534,533,529,531,523,535,527,532,536,539,552,553,561,551,568,553,565,547,553,563,551,558,555,558,567,568,561,501,521,495,497,506,497,503,505,491,541,548,520,528,526,525,530,502,505,505,507,510,510,500,504,516,500,507,502,504,505,560,536,562,550,543,568,559,551,547,544,556,549,526,522,527,538,545,548,542,541,497,494,509,496,495,501,501,501,496,482,495,501,506,510,492,492,543,537,548,552,545,553,550,561,565,556,580,568,561,586,571,572,573,508,508,498,503,490,500,505,502,505,504,495,509,497,487,512,507,491,501,494,499,504,502,498,504,507,502,495,493,505,495,499,502,507,500,515,583,564,521,511,520,528,528,515,517,526,529,516,481,487,488,484,477,494,489,491,567,557,579,512,519,515,513,531,526,523,527,509,514,526,470,470,468,475,471,475,480,474,470,476,473,478,471,427,440,434,439,423,429,434,476,463,462,474,470,463,455,458,464,473,448,465,452,455,455,587,588,584,604,578,529,530,530,528,529,527,523,536,526,531,522,580,587,596,588,531,544,544,529,533,477,482,479,481,481,484,477,481,481,495,489,479,480,559,551,559,549,556,556,548,549,540,558,554,556,566,547,564,547,481,502,485,489,476,488,488,490,489,491,489,557,548,564,557,561,555,562,560,561,564,557,559,567,557,565,494,501,490,487,506,510,502,503,501,495,486,509,501,501,504,489,497,506,504,495,481,484,479,559,551,560,542,553,556,553,558,550,466,478,476,473,474,477,487,476,481,480,482,477,490,480,478,491,478,471,476,548,566,577,576,513,501,509,509,505,506,504,503,508,495,498,510,513,512,503,579,562,507,495,541,543,528,543,542,537,529,519,524,524,532,540,529,528,531,534,533,539,528,549,535,534,542,533,539,478,466,474,467,487,479,468,478,476,468,483,477,474,476,496,491,488,499,495,493,494,484,496,490,491,489,493,549,550,546,554,548,549,556,543,550,547,556,558,550,551,548,547,548,544,538,541,543,545,544,541,540,541,539,541,540,548,540,542,546,550,541,542,540,551,545,565,569,578,567,576,580,577,576,572,579,582,577,575,574,515,525,526,528,509,525,529,524,496,504,493,494,495,499,495,496,500,499,456,465,453,450,461,461,458,457,452,461,456,466,457,491,498,485,492,498,485,492,493,495,539,546,540,543,547,551,549,548,553,543,572,565,533,531,529,527,533,523,540,524,531,514,514,516,512,512,516,517,503,509,503,503,481,480,484,482,478,472,485,475,479,490,481,477,478,479,483,497,494,485,488,495,491,490,487,483,485,488,485,572,586,574,550,556,577,575,580,563,572,573,575,581,496,476,502,492,490,502,486,481,475,495,487,469,481,551,538,540,541,542,543,543,541,538,537,541,540,546,539,551,549,545,548,534,554,540,542,528,545,552,544,541,531,533,522,528,525,526,532,566,567,558,562,553,566,569,565,566,571,522,520,526,541,534,529,519,529,509,509,508,512,507,509,503,500,517,502,502,499,497,512,506,504,504,499,501,509,503,503,510,503,498,509,498,497,503,501,494,501,490,486,488,490,495,491,484,490,496,502,492,500,490,498,493,497,501,494,497,496,492,483,481,486,483,481,481,482,482,489,480,485,484,486,484,486,488,497,493,493,491,486,493,562,566,549,546,546,555,557,485,480,473,480,485,480,481,480,485,484,475,475,477,484,471,482,484,484,489,476,479,487,492,488,483,489,487,489,477,485,519,524,521,528,529,526,523,518,530,529,579,580,595,591,588,590,574,590,588,578,588,578,543,532,555,536,538,540,545,547,534,541,546,549,540,567,569,577,563,567,577,565,561,578,569,576,560,530,533,516,524,505,506,512,510,505,506,505,519,505,507,510,511,499,504,500,502,496,505,498,502,500,506,504,496,498,502,480,479,487,481,477,489,481,484,491,485,483,484,484,484,485,489,483,486,482,474,478,476,482,473,458,453,461,465,428,428,444,433,446,448,431,418,419,429,519,515,516,511,511,511,513,521,523,520,518,521,520,519,513,509,519,520,514,518,520,519,520,508,507,521,521,522,515,524,523,516,515,516,521,533,538,529,534,530,539,528,535,530,530,560,571,570,562,563,563,554,563,573,557,543,526,519,509,513,511,514,514,514,511,518,506,511,515,511,514,511,514,521,509,518,509,544,540,546,538,548,547,548,537,541,542,539,544,546,534,548,547,548,549,550,546,541,528,522,528,525,526,529,526,526,533,538,537,529,540,540,537,532,536,530,476,470,478,473,478,482,468,472,474,477,479,482,480,473,465,470,471,521,531,522,531,529,519,533,541,537,529,533,537,527,535,542,536,536,535,535,545,537,543,540,484,494,489,495,484,495,483,504,498,486,492,494,496,556,556,552,546,555,557,563,554,546,551,552,552,537,560,547,556,555,504,500,500,517,519,503,464,466,464,455,452,460,470,465,469,460,437,435,430,430,435,423,430,423,436,421,518,521,514,517,512,512,517,510,522,515,519,524,527,529,525,521,515,544,548,543,534,544,529,542,545,533,537,539,546,546,557,542,527,543,547,544,544,546,547,547,546,506,503,506,519,504,507,553,551,562,564,548,552,546,549,574,536,533,532,536,529,553,553,545,554,550,542,560,499,499,492,506,502,493,501,498,510,507,514,520,516,507,512,510,519,513,510,572,569,566,565,558,566,574,563,567,573,566,569,524,522,529,519,523,510,534,521,532,509,508,506,510,498,499,504,502,497,491,500,496,499,497,493,504,494,502,487,484,484,477,489,484,482,487,483,488,496,540,544,544,549,546,561,552,559,561,556,545,559,549,553,564,556,513,508,521,504,508,505,512,521,512,502,509,506,516,490,483,487,491,500,491,484,487,481,485,487,492,490,490,488,516,524,516,592,584,565,575,586,576,572,568,571,575,518,511,506,510,506,523,530,512,506,510,512,526,510,510,512,508,551,553,551,544,545,552,550,546,544,545,561,554,551,534,500,497,496,495,506,501,468,470,456,454,464,473,466,464,465,456,467,461,473,473,468,472,485,470,477,476,475,475,482,478,476,473,478,456,463,461,459,461,457,459,463,435,435,436,419,435,433,420,534,522,526,530,521,532,526,528,525,517,526,525,527,565,549,559,554,558,570,567,568,563,566,545,531,544,541,542,541,548,543,542,544,530,499,493,483,477,488,472,480,476,487,477,489,480,487,563,538,545,554,547,547,549,500,499,495,504,491,503,490,496,481,492,486,492,489,539,532,538,540,535,533,539,538,544,536,526,544,547,551,558,560,557,550,525,520,578,590,573,573,574,572,569,572,563,557,567,577,575,587,587,513,524,528,513,520,532,525,521,525,529,539,538,511,512,512,507,512,514,501,493,495,497,501,492,496,496,500,495,494,493,495,493,456,457,460,460,480,488,488,480,497,501,476,500,482,472,483,486,564,574,568,562,567,554,492,515,499,498,497,504,501,492,500,510,515,498,502,498,495,511,509,500,513,522,523,516,511,519,522,527,518,512,517,518,511,516,525,521,554,548,566,560,561,552,565,556,560,556,507,504,508,503,521,521,518,524,523,484,483,476,479,485,472,485,474,480,481,489,476,487,478,481,467,458,458,457,458,476,462,465,464,455,465,460,509,521,506,509,503,510,508,537,536,544,550,535,528,481,477,479,471,462,486,473,543,537,535,537,536,581,569,579,573,567,576,567,576,574,570,517,496,505,492,505,512,499,508,505,512,507,505,548,548,548,539,545,541,547,536,546,553,546,548,548,551,507,510,458,474,476,468,478,471,461,474,456,458,463,466,452,454,452,456,455,457,453,451,443,483,479,486,560,571,564,560,551,583,584,561,580,571,573,572,582,574,511,510,505,532,532,534,526,541,535,533,524,537,531,526,528,535,533,536,523,537,540,537,533,544,565,548,552,551,558,550,546,570,481,479,455,460,448,469,462,459,466,475,465,471,468,462,592,594,593,592,604,594,601,588,596,594,596,509,521,513,517,510,509,503,507,507,542,531,532,535,533,539,533,535,526,537,541,542,541,537,542,542,534,543,538,545,544,541,545,549,547,550,555,551,547,549,543,555,509,518,517,513,510,573,584,561,564,586,557,567,563,528,516,516,506,514,520,511,513,526,515,521,516,505,512,524,526,495,492,496,485,491,483,488,498,489,487,490,487,484,493,488,488,489,518,530,522,523,525,530,527,522,514,517,590,575,582,586,579,576,583,588,584,580,580,582,577,572,581,584,532,548,533,532,541,525,531,535,541,533,537,532,527,533,530,528,541,546,498,493,501,504,558,557,553,564,579,522,519,518,524,525,530,534,533,519,523,525,515,511,522,525,517,469,465,471,430,440,432,432,427,426,445,435,446,437,427,488,490,490,493,495,494,489,492,488,492,497,496,541,543,534,546,542,520,522,511,508,511,511,522,502,508,504,507,541,540,539,545,539,541,549,546,566,556,561,557,561,567,561,567,561,566,561,522,539,530,527,524,521,539,533,513,512,507,511,516,516,506,509,511,505,508,514,513,513,519,509,504,509,513,537,530,540,534,528,526,538,536,531,551,542,533,508,496,500,501,503,505,503,496,503,510,500,500,505,508,565,555,563,556,561,499,498,488,514,494,492,492,494,504,471,470,469,476,470,476,470,460,461,470,558,561,554,557,556,507,496,491,501,500,497,505,500,486,492,515,521,425,442,433,434,431,441,444,490,478,501,495,494,489,495,491,503,480,490,546,491,491,494,492,500,490,503,494,495,496,491,498,503,494,495,498,491,505,489,493,498,500,495,537,553,548,551,553,544,553,540,537,543,558,552,545,502,505,498,506,505,495,501,501,503,506,508,510,527,533,529,534,534,532,534,538,530,532,524,526,535,533,528,532,532,529,533,535,543,543,533,527,542,542,553,540,548,550,550,553,554,482,469,485,478,469,476,470,462,478,488,471,492,467,546,536,545,529,532,544,530,547,527,556,557,559,521,521,517,518,511,521,524,513,522,521,525,522,517,521,514,543,549,545,549,550,541,541,550,543,543,544,550,540,545,541,547,575,574,566,579,580,573,517,508,489,501,500,500,509,506,496,488,498,488,485,487,485,497,497,496,483,488,498,572,569,566,577,578,563,562,571,569,578,560,560,572,570,574,572,513,514,501,520,504,504,494,501,508,518,516,496,510,542,555,549,559,548,551,560,549,546,497,497,497,500,490,490,510,502,489,455,458,455,452,456,472,479,478,566,561,564,551,560,562,524,521,527,514,519,512,522,519,531,521,522,521,520,469,470,479,474,479,462,469,470,478,592,597,579,595,573,594,581,580,535,529,521,523,528,520,524,537,514,513,489,492,487,500,496,502,495,501,500,500,490,491,485,486,500,496,495,498,492,596,594,600,591,600,593,583,596,583,577,521,522,541,523,525,530,531,538,532,527,537,496,489,490,483,490,482,498,592,581,599,590,605,585,581,581,534,536,529,542,535,532,526,535,543,543,530,559,562,569,557,560,499,496,503,503,498,494,507,497,496,503,524,502,511,502,467,486,476,472,468,479,474,484,472,478,475,482,489,484,489,483,483,483,481,479,481,484,482,504,503,508,508,505,503,506,532,535,535,544,547,547,535,527,533,530,471,468,474,481,468,471,486,477,527,542,532,532,527,533,526,529,519,530,527,525,530,519,524,516,528,525,524,531,522,529,519,518,518,527,526,525,513,520,513,522,526,520,524,516,521,554,544,555,564,552,549,547,566,557,559,478,497,485,501,495,502,485,468,457,477,473,470,463,471,559,557,555,559,552,555,566,560,548,556,547,549,556,564,556,563,548,560,557,549,505,497,502,495,496,504,440,442,443,438,439,436,438,441,441,434,438,430,468,465,469,461,572,569,551,568,555,583,567,558,573,581,586,562,523,508,516,506,515,502,511,518,507,509,573,564,566,567,560,581,561,566,561,551,558,553,571,558,558,562,560,567,562,563,566,568,556,496,490,489,472,488,494,473,498,491,504,490,489,492,486,472,465,470,475,471,456,468,477,468,467,475,464,470,558,550,549,553,557,566,565,567,576,565,543,553,557,549,550,550,509,505,498,591,597,588,596,600,598,590,586,594,519,500,513,512,516,504,523,516,516,514,501,556,549,542,548,545,532,544,548,534,542,537,552,536,540,486,501,504,503,490,488,490,508,496,491,500,502,498,495,494,506,517,500,502,503,498,490,514,500,555,542,555,547,564,549,552,558,552,552,507,483,473,477,470,476,481,473,480,476,481,487,484,474,502,500,502,498,494,507,505,505,501,505,508,500,510,553,552,560,567,562,531,535,534,539,532,535,532,533,534,526,534,531,536,533,533,524,527,522,529,527,527,531,523,521,526,520,528,527,524,525,525,536,540,536,548,530,528,541,544,531,529,519,506,513,511,514,513,516,542,551,549,549,545,553,558,554,555,554,557,563,544,553,545,548,549,537,551,490,503,494,499,491,494,491,485,492,488,492,492,497,491,500,498,496,485,466,461,473,467,468,463,458,453,467,457,509,513,506,515,511,511,515,503,513,509,511,507,519,510,553,567,565,558,567,562,576,570,571,566,562,521,500,510,523,480,478,483,483,476,476,482,471,477,481,492,481,486,502,496,494,497,503,510,498,501,500,498,495,488,498,488,559,571,574,514,504,515,522,454,450,455,461,462,478,483,481,480,560,563,579,563,566,562,573,566,559,572,496,509,496,499,511,501,477,481,499,500,484,490,513,502,505,493,444,439,449,446,453,445,460,446,435,442,446,449,454,452,546,539,541,536,539,547,540,551,548,548,547,554,535,545,547,539,507,503,498,508,506,582,509,507,497,492,496,491,497,500,590,573,588,576,596,590,573,578,578,575,593,576,537,526,525,527,535,515,536,524,532,516,527,527,516,526,532,502,493,494,489,488,500,486,498,499,554,564,552,557,565,565,552,515,523,521,527,519,517,520,524,523,525,522,525,523,526,528,529,499,497,494,495,495,500,490,493,494,495,502,494,489,497,555,557,549,541,554,548,529,536,523,522,555,550,575,559,554,554,557,557,549,551,551,554,550,554,556,518,529,506,504,520,515,473,475,479,488,483,473,477,484,475,486,462,468,464,459,472,463,458,462,468,471,468,555,551,564,563,562,549,552,552,551,549,553,567,547,548,553,552,546,549,529,527,530,525,526,528,528,525,532,529,521,525,542,531,530,539,533,534,529,528,539,541,536,527,511,508,522,519,509,569,559,558,481,492,479,483,482,486,483,487,491,486,492,490,480,486,501,506,491,537,536,531,539,542,527,543,540,536,534,539,532,542,519,518,518,525,523,539,547,538,536,544,532,535,539,535,539,538,530,536,541,538,533,544,539,553,550,545,556,548,546,550,500,508,513,483,499,499,520,510,501,517,497,460,471,471,463,471,466,467,465,471,467,462,478,475,479,476,475,482,480,483,476,483,483,480,479,486,459,458,460,459,473,465,472,464,459,456,470,465,459,462,460,456,448,457,459,459,493,491,482,497,491,492,481,489,492,488,483,568,552,542,566,549,534,530,534,532,530,533,569,561,561,557,550,576,565,567,553,573,563,572,559,526,526,520,525,524,473,475,476,476,470,475,474,477,471,474,470,478,472,471,483,478,469,473,482,479,478,480,480,478,597,596,584,590,611,596,553,557,553,562,560,555,554,560,554,551,547,564,552,557,558,556,554,554,545,538,542,496,496,454,457,466,449,457,458,459,457,460,465,458,457,544,558,554,550,550,551,542,545,548,564,557,545,548,544,555,546,554,550,552,554,550,539,550,579,580,567,574,577,537,549,536,534,477,482,494,490,480,486,492,497,480,473,489,491,489,441,439,450,440,454,441,443,442,445,441,447,441,448,446,529,549,541,534,540,529,540,549,541,550,535,550,555,539,540,550,536,544,487,482,489,502,492,479,483,484,483,465,478,574,588,589,568,584,587,583,588,580,575,591,591,578,578,576,505,492,494,498,545,537,526,535,533,532,533,542,531,541,577,562,573,554,561,561,571,559,561,559,569,560,542,537,537,535,540,536,528,530,530,534,538,538,531,534,543,533,530,578,571,474,481,488,486,489,481,476,493,475,494,493,494,551,544,557,551,551,543,556,549,549,548,565,581,571,563,576,578,559,565,582,572,566,563,574,562,513,507,500,506,507,501,500,498,501,493,533,544,534,541,547,541,541,541,537,542,531,538,535,543,535,540,542,543,555,548,534,553,564,553,547,549,561,548,553,559,494,487,486,493,485,473,490,481,486,481,474,485,488,485,540,540,538,536,530,548,552,544,546,552,546,548,543,543,531,538,542,544,538,534,536,474,482,470,490,489,474,495,499,504,504,492,506,497,504,547,522,538,543,529,531,542,547,501,511,512,505,513,506,509,502,503,512,509,563,561,559,574,559,550,547,552,554,561,565,497,509,484,499,501,507,510,500,499,514,501,502,512,465,476,465,467,471,465,464,472,469,469,474,465,485,477,481,480,475,484,482,484,558,576,572,560,565,522,521,509,517,502,508,515,514,517,511,521,482,488,483,482,485,484,482,478,484,485,486,487,488,455,459,464,473,470,455,529,538,535,538,527,526,536,526,529,533,566,566,565,556,569,561,554,557,566,561,566,557,557,563,526,533,533,536,534,534,539,541,542,543,535,543,536,552,543,538,542,542,539,535,543,536,544,545,539,499,503,516,517,516,511,511,514,512,516,519,562,563,564,569,565,565,567,559,556,562,564,562,568,553,559,560,562,563,558,570,560,558,565,561,570,511,521,516,523,533,520,526,531,518,516,514,508,523,524,521,524,522,484,484,489,482,484,478,482,482,490,483,481,478,489,485,487,481,483,487,474,468,460,471,463,466,467,464,462,465,457,468,460,465,458,574,567,567,577,560,567,560,557,571,572,559,565,563,508,520,506,513,510,523,508,498,468,478,476,495,489,487,494,477,477,473,477,476,476,484,468,474,479,472,474,456,458,460,461,461,456,459,456,461,455,452,454,469,542,542,548,540,537,512,512,515,514,516,504,515,511,513,510,513,513,504,512,516,523,540,529,532,520,535,528,516,551,510,519,524,505,515,513,525,526,554,563,542,544,562,566,557,555,566,550,555,550,554,580,472,490,489,477,477,484,489,470,480,493,500,487,548,548,544,547,552,539,537,547,537,544,543,556,546,541,532,539,537,543,540,542,543,536,534,549,546,545,534,515,500,507,570,572,564,555,563,566,577,573,550,567,563,509,515,569,577,567,577,583,575,589,515,507,498,521,496,511,498,508,507,530,537,529,534,538,546,551,549,545,542,574,557,561,572,562,560,560,562,551,562,556,546,559,530,532,534,538,524,531,523,523,518,529,530,520,515,511,512,516,509,508,521,520,508,503,509,501,498,503,502,505,500,499,499,496,504,501,506,505,498,498,497,504,504,503,504,497,489,487,495,481,491,487,489,490,485,486,486,490,480,479,480,477,483,485,489,478,485,479,481,479,478,482,477,469,482,490,488,491,495,490,494,458,464,459,463,463,465,469,459,466,461,464,466,457,452,446,453,458,581,575,570,560,549,552,552,545,553,554,553,555,553,556,556,553,561,561,521,521,511,520,516,524,507,528,515,522,503,476,477,469,479,470,467,482,471,484,475,477,471,476,474,488,473,480,478,465,472,477,481,607,605,598,594,613,591,606,605,600,599,593,607,601,594,552,501,486,487,491,501,487,504,493,494,499,484,488,493,569,554,571,571,553,555,568,556,549,573,573,561,557,558,562,563,570,565,488,483,484,489,475,482,470,489,471,477,483,468,481,478,478,477,480,476,477,484,474,474,491,564,559,578,519,508,509,517,516,510,505,510,517,509,510,508,558,553,569,555,551,569,558,563,548,474,496,491,498,482,474,495,475,448,452,452,447,443,450,444,461,437,446,451,452,452,531,533,536,536,537,528,530,526,521,518,533,527,525,524,528,518,525,523,519,528,527,521,524,523,534,546,535,545,544,529,535,547,537,549,549,543,536,547,544,549,541,546,541,552,538,546,547,497,500,515,508,589,582,602,585,589,575,603,604,601,593,596,585,596,530,530,532,526,531,533,533,535,525,532,533,512,524,590,573,591,579,590,581,578,508,510,508,502,506,509,510,508,541,542,538,538,539,537,534,537,563,568,558,552,567,555,560,552,567,560,570,568,566,560,566,567,553,503,513,505,549,550,550,559,543,565,556,557,551,558,542,562,548,553,564,556,492,507,493,497,477,568,569,564,527,526,524,519,521,524,518,526,523,515,506,507,500,512,496,500,493,489,499,469,467,466,468,470,469,466,472,466,463,474,477,461,466,468,469,473,469,463,485,462,473,458,470,472,470,477,560,499,499,500,500,508,504,505,468,468,472,465,456,448,460,454,457,462,466,469,458,456,463,461,463,458,480,494,490,509,510,514,509,502,508,553,554,546,556,550,557,539,555,545,552,553,553,552,551,539,544,545,541,554,550,515,515,520,512,526,518,510,567,563,576,575,570,577,583,571,587,586,572,585,490,502,497,501,488,469,469,476,471,473,466,477,562,563,562,562,562,558,563,565,558,558,565,569,562,556,569,517,508,519,516,522,527,519,518,512,522,518,519,486,488,480,493,493,493,495,485,488,482,497,484,484,496,490,485,497,494,488,493,493,490,499,494,490,488,498,492,491,498,481,481,497,483,481,480,491,484,480,487,484,482,491,480,485,483,481,484,522,517,516,513,512,510,517,521,513,518,507,507,552,563,559,553,561,555,566,551,552,565,500,498,504,505,496,499,503,505,500,506,498,497,507,519,521,518,509,508,513,507,514,513,514,509,522,561,559,559,562,562,506,509,501,517,501,503,505,508,511,482,478,471,469,464,475,475,480,479,477,476,470,472,467,469,468,470,474,471,467,470,474,471,467,467,435,444,454,443,441,449,446,434,433,445,553,551,546,559,533,546,543,549,551,545,542,556,559,545,545,548,553,549,553,550,552,552,552,543,558,556,468,462,485,491,473,481,469,469,495,466,542,550,555,553,550,546,542,546,541,552,556,492,487,470,489,475,472,470,528,531,526,532,531,529,528,537,562,579,562,569,568,563,563,563,560,559,533,547,542,531,536,534,537,534,535,537,532,539,566,567,565,568,561,568,565,562,559,573,567,564,553,558,508,512,507,495,503,507,479,572,540,557,467,471,478,483,470,471,466,466,468,479,477,479,567,463,478,501,475,484,467,472,448,485,469,472,483,482,490,479,482,543,533,532,536,535,540,545,537,535,538,530,566,578,573,562,562,564,571,567,564,562,556,569,569,507,549,547,550,548,546,540,547,553,551,550,541,532,538,543,549,543,551,545,551,552,538,564,537,558,544,552,562,547,544,556,554,564,551,544,464,475,471,482,470,476,468,462,467,475,473,482,460,545,554,551,551,550,559,551,557,552,555,552,553,572,554,561,549,555,554,555,552,551,544,494,495,507,502,511,498,500,499,510,506,495,502,507,516,508,497,517,530,523,524,525,526,521,517,515,521,520,514,512,517,524,518,528,520,570,555,554,563,547,546,565,556,562,557,556,561,553,565,559,557,498,498,509,491,494,498,501,498,499,498,491,506,504,508,510,497,502,503,505,507,508,509,500,503,499,507,508,508,497,503,498,548,550,544,551,548,553,547,552,551,558,546,555,553,551,545,545,568,559,574,571,576,567,573,574,579,571,562,561,507,512,531,512,518,518,518,522,525,509,523,522,534,532,495,486,493,492,488,489,492,483,486,512,507,511,505,510,510,513,512,510,514,511,509,558,553,546,550,546,479,494,490,511,497,507,502,492,490,493,499,492,492,458,461,456,449,458,464,468,458,512,517,517,519,517,509,513,507,503,504,515,510,514,512,518,512,511,514,520,563,568,561,567,568,563,563,565,566,555,554,497,498,497,500,494,499,494,487,498,479,485,485,488,483,486,574,582,599,601,581,585,581,572,567,557,583,570,581,578,474,485,489,493,491,480,480,467,487,467,476,523,520,522,518,524,525,524,521,523,520,534,535,530,530,544,527,530,554,554,542,554,543,537,486,465,477,475,481,473,475,459,520,531,519,518,520,518,512,516,516,519,518,523,519,508,511,526,511,514,514,518,512,507,522,535,520,531,531,531,527,533,518,524,533,526,524,559,564,572,554,570,573,574,578,565,566,568,515,514,507,501,509,506,504,514,519,506,506,540,551,539,542,550,542,560,541,544,551,544,549,546,534,543,547,550,540,550,546,550,544,540,543,537,553,560,552,539,551,480,481,480,467,465,468,473,458,524,512,521,519,527,521,551,553,554,542,543,547,551,554,555,546,553,552,484,486,483,474,478,483,476,489,482,487,472,483,506,549,551,540,552,557,553,553,551,553,537,551,548,543,541,545,552,545,542,542,550,549,545,543,520,512,512,511,540,542,563,547,552,547,553,550,541,538,533,529,527,526,529,525,516,520,523,521,524,516,524,542,539,544,546,541,540,538,553,560,567,579,556,567,575,572,565,572,566,561,488,475,458,464,460,461,457,474,468,467,466,464,477,456,453,455,592,573,576,574,577,583,583,594,570,571,582,568,572,586,515,524,526,518,528,524,520,517,524,512,514,525,573,585,580,584,575,593,579,576,537,532,542,531,537,536,568,561,565,559,560,566,562,557,576,561,552,561,564,498,504,500,492,506,506,489,493,494,456,473,463,461,470,470,600,584,581,594,592,537,530,536,543,547,539,549,539,550,543,483,477,487,489,498,491,485,487,483,484,484,484,478,474,457,468,473,468,469,463,466,471,461,468,470,467,468,474,453,550,547,559,563,562,563,556,548,550,577,565,541,563,566,570,552,568,500,490,490,491,484,484,501,496,564,480,472,476,465,480,475,470,467,567,562,560,553,547,552,547,545,552,549,553,543,562,561,531,565,555,560,561,559,558,563,555,555,561,561,484,500,497,492,495,500,489,498,483,479,483,484,472,488,480,478,480,489,488,573,582,595,594,601,585,599,621,596,603,604,591,603,600,589,518,516,506,509,523,518,506,544,541,546,545,549,545,545,532,527,536,526,530,528,556,554,563,548,558,569,498,490,497,501,499,497,508,510,562,559,570,569,566,569,562,560,564,545,560,555,553,546,554,550,548,545,553,545,546,508,526,509,507,482,476,478,480,482,484,486,480,466,460,467,469,454,477,459,461,462,466,463,494,493,491,490,502,492,497,493,493,500,493,498,523,532,593,579,584,592,592,589,593,594,587,588,556,553,550,551,557,548,543,550,548,544,484,490,495,489,488,479,495,486,490,494,496,492,498,495,460,462,467,458,464,469,471,472,482,456,460,552,559,543,552,549,564,556,556,555,553,558,551,558,555,551,551,549,560,547,542,542,550,526,522,522,526,513,517,514,523,518,512,517,519,546,555,552,544,550,549,542,547,546,554,553,543,545,544,537,535,543,543,537,545,542,541,541,537,542,537,540,539,538,556,542,543,543,542,542,545,540,538,549,541,545,538,544,543,537,539,521,535,528,525,519,530,527,523,533,530,521,526,531,531,528,515,526,534,531,557,557,563,554,574,552,565,562,523,522,519,519,519,522,521,521,529,527,531,518,534,534,537,535,526,540,523,521,524,528,531,540,517,514,509,507,498,506,495,502,505,504,555,529,551,558,530,529,528,523,527,525,530,525,523,528,535,540,535,543,539,533,512,524,521,524,522,514,513,515,509,515,540,548,544,542,547,551,546,569,569,576,564,560,571,565,564,574,495,496,458,462,468,450,470,462,462,452,456,453,467,462,458,456,550,551,551,550,553,547,549,547,569,571,559,576,568,558,567,565,566,556,565,561,568,569,569,568,560,508,504,505,514,528,517,521,523,520,519,525,513,529,524,520,528,532,542,519,529,569,552,557,573,563,555,559,561,567,565,569,566,571,573,562,566,542,535,539,537,525,525,523,532,543,528,536,540,533,535,543,537,518,532,541,535,539,547,541,544,533,535,548,541,542,538,535,540,522,523,522,519,529,528,520,525,527,523,521,528,527,525,521,521,512,527,485,487,482,479,486,485,480,486,548,565,568,562,556,554,547,567,494,499,487,517,489,497,491,493,500,485,460,471,472,449,459,461,464,553,553,558,567,563,557,562,542,474,465,478,467,462,458,474,464,467,473,455,478,486,477,453,455,523,527,526,523,523,516,518,522,521,520,525,524,532,538,535,539,533,530,543,544,536,533,543,534,539,546,533,549,545,555,546,560,546,557,545,550,487,489,491,497,486,479,496,488,483,552,552,551,562,550,560,552,552,549,554,544,549,544,549,542,546,555,517,510,519,517,519,520,517,517,517,519,547,560,552,552,555,553,553,547,558,549,556,551,542,542,541,534,541,534,532,537,538,545,557,563,556,543,551,558,557,552,545,542,547,555,545,481,480,465,483,487,515,508,521,522,498,499,501,491,506,507,568,567,568,567,566,559,561,565,569,566,567,515,534,538,532,545,520,522,518,511,527,524,519,501,496,511,496,493,502,500,502,497,503,494,506,479,479,483,477,481,480,481,478,479,481,482,474,484,440,457,448,447,445,429,442,440,434,439,439,432,446,429,530,528,521,526,526,514,520,534,521,523,525,530,522,523,520,521,518,508,521,520,518,530,533,525,532,571,547,538,542,552,554,548,552,508,501,509,512,516,506,504,502,460,456,459,454,445,446,455,445,448,455,445,448,454,451,449,463,476,462,458,465,478,472,455,470,466,477,466,468,575,585,588,575,526,533,538,541,537,538,541,529,534,534,541,543,540,513,520,513,521,530,515,506,586,589,587,585,600,585,590,592,589,594,586,594,561,549,553,544,555,547,535,548,538,554,541,542,547,551,553,550,487,481,479,481,482,488,480,489,489,481,486,488,451,433,446,447,444,437,442,436,441,527,522,535,520,524,527,530,531,522,508,516,522,515,515,522,525,524,514,525,518,534,537,542,535,531,542,539,530,538,541,556,546,536,541,547,529,522,523,532,522,522,528,529,530,529,534,534,528,534,531,542,540,544,532,536,542,536,476,475,482,475,473,468,470,478,470,471,473,475,465,541,537,530,543,544,542,539,529,550,532,534,539,539,577,573,586,567,551,543,540,547,550,557,535,548,545,550,545,505,495,494,498,501,491,503,503,504,499,488,499,499,496,497,500,528,530,527,530,533,532,525,527,531,523,588,584,599,593,589,582,582,589,580,542,556,544,538,558,548,544,546,553,557,554,551,539,546,541,549,561,551,532,491,511,505,509,508,513,468,469,466,476,470,471,465,475,468,480,467,434,445,440,446,445,452,440,425,432,444,434,442,442,426,478,485,482,478,478,486,482,480,474,473,479,486,481,489,476,482,484,480,474,508,512,510,510,511,510,506,516,507,518,510,513,518,517,548,546,545,542,535,546,541,548,555,543,548,483,469,479,530,534,541,532,526,531,526,535,525,524,572,557,554,553,569,564,559,518,508,499,504,519,513,515,544,544,552,543,545,541,549,541,541,538,532,545,551,548,550,550,548,542,544,547,546,548,523,521,521,522,512,516,515,518,520,521,519,550,535,548,539,539,504,509,507,493,504,508,503,507,509,504,503,495,522,530,526,523,531,524,532,532,533,540,535,532,532,573,564,575,575,580,571,500,501,515,502,509,497,499,511,497,529,530,529,528,529,531,529,533,529,520,534,519,520,522,528,524,533,525,524,527,523,523,524,571,570,555,558,558,563,560,573,566,557,576,575,564,562,553,558,557,568,566,563,558,547,546,553,554,553,553,552,545,549,554,547,492,488,495,499,499,497,491,499,482,506,483,484,492,500,492,492,496,492,490,484,486,492,492,494,487,477,484,483,489,489,502,486,487,579,571,594,492,490,474,490,491,498,489,494,477,494,483,492,494,485,484,470,550,541,543,548,520,525,522,518,515,525,512,518,511,523,513,515,508,512,504,519,515,513,544,540,538,545,561,553,551,545,546,535,551,545,548,545,550,549,544,545,558,490,485,499,493,495,504,488,443,442,446,447,450,444,432,423,439,440,452,433,452,438,430,436,438,515,521,521,516,525,527,562,564,570,561,559,573,566,561,570,563,557,566,562,546,554,550,541,551,543,551,544,548,545,538,545,540,542,549,530,523,525,526,527,514,495,498,504,496,487,506,509,498,500,506,500,500,490,502,575,555,547,558,507,520,515,521,519,506,527,541,531,529,542,531,532,532,527,531,528,537,534,536,531,553,548,554,552,544,569,548,538,557,518,521,504,516,510,522,522,507,512,508,504,560,566,543,550,569,551,570,569,531,525,535,524,531,527,526,528,534,536,542,536,528,533,529,540,523,499,505,493,500,564,544,570,582,565,565,507,501,499,500,503,487,571,583,585,570,568,567,581,576,585,509,524,524,522,512,529,526,519,524,517,600,584,581,586,596,584,578,566,591,574,581,575,533,525,537,527,526,530,522,531,534,562,551,555,568,551,570,553,563,558,567,518,515,513,510,508,520,506,520,509,510,504,516,472,479,468,450,432,436,436,429,427,431,439,428,444,432,435,434,441,430,438,428,478,490,485,477,475,473,483,483,489,478,485,564,560,568,566,563,561,567,568,575,566,562,567,568,573,562,565,559,551,552,541,553,559,544,560,548,553,551,497,490,492,499,506,503,494,501,490,489,488,485,481,487,575,564,570,571,588,561,581,571,580,570,573,570,568,553,565,571,588,499,515,511,507,480,495,496,485,481,498,501,491,490,496,503,474,458,463,474,473,472,442,460,462,466,471,476,459,539,544,535,535,558,549,510,515,517,521,518,516,511,512,518,518,528,517,513,515,521,516,513,511,545,546,547,551,547,538,542,535,548,546,549,546,546,545,546,548,544,550,540,537,537,549,562,569,572,570,586,569,569,571,566,561,563,559,530,526,521,516,523,513,518,512,536,509,502,506,515,509,509,509,504,508,504,510,505,503,499,481,475,491,483,487,484,476,480,477,486,480,486,469,461,466,467,459,459,460,460,464,464,460,459,467,460,465,460,439,432,424,433,428,427,440,433,516,528,507,517,518,508,524,511,521,543,532,536,533,542,540,542,541,542,541,545,554,551,542,542,551,475,483,468,476,466,471,481,487,484,478,478,474,467,483,474,475,476,487,485,487,477,476,474,481,565,578,569,582,556,542,571,554,571,575,574,548,567,568,569,590,489,502,502,508,500,506,499,505,495,502,489,508,500,501,503,514,509,510,505,507,512,503,510,502,550,560,551,560,548,558,548,539,540,534,536,543,537,542,535,541,537,543,535,527,528,533,531,529,529,532,530,526,534,544,568,555,552,565,571,560,562,550,533,560,546,496,499,487,500,477,490,482,511,488,488,504,488,569,572,571,575,582,577,579,575,587,579,577,539,544,542,532,538,538,529,523,531,523,530,530,524,532,528,529,541,535,537,531,531,534,548,561,557,580,566,560,564,562,559,557,548,573,571,568,565,558,562,568,558,561,555,552,519,528,525,533,524,528,524,529,552,560,568,560,564,555,556,551,552,535,477,523,527,550,544,552,547,546,544,557,549,554,549,543,541,551,561,563,566,554,556,550,553,554,490,502,500,493,499,495,494,496,493,487,499,495,490,493,492,497,500,569,557,568,569,564,567,562,571,557,549,561,557,580,560,564,479,489,468,482,478,479,495,476,477,478,480,481,476,470,561,566,564,567,565,575,568,503,502,510,496,500,517,490,500,497,489,507,494,485,508,462,451,451,453,454,451,460,455,472,560,543,554,549,559,554,546,560,554,544,535,562,551,559,475,462,465,482,468,477,475,484,471,480,454,473,483,485,522,536,535,539,537,537,539,537,549,542,540,556,555,545,551,543,538,501,476,464,535,533,537,532,537,519,523,521,523,535,530,536,533,529,526,527,522,522,531,532,528,536,527,538,546,545,543,546,542,538,542,543,537,546,506,504,505,505,516,511,513,499,501,505,504,507,495,502,505,500,499,492,492,502,492,494,488,499,493,531,528,536,527,541,548,538,526,558,555,569,570,552,543,536,532,544,538,546,543,538,546,545,547,542,545,547,544,544,543,538,539,530,537,523,527,535,532,534,531,523,537,536,534,512,524,521,525,518,524,539,538,538,538,541,536,534,531,534,537,537,530,534,543,541,545,540,563,551,540,547,565,561,566,564,558,549,509,503,518,505,519,477,492,483,492,494,490,499,494,485,497,489,481,484,491,483,483,479,481,478,483,476,480,488,483,481,485,485,483,479,478,481,475,482,477,481,468,467,476,465,459,471,460,464,454,459,460,455,582,586,585,570,595,591,575,538,556,541,533,535,534,543,547,558,495,508,492,502,506,504,509,512,494,509,510,493,514,512,503,491,513,525,519,537,544,535,544,545,538,531,534,548,542,535,535,538,542,545,539,537,545,514,506,522,522,520,517,516,574,574,557,564,566,564,577,511,492,500,504,508,501,505,497,497,512,508,495,502,501,503,493,497,497,499,500,499,500,506,501,497,505,506,493,503,507,513,560,573,585,574,581,561,574,580,525,525,540,533,545,527,532,511,519,529,506,508,506,512,509,508,503,507,506,508,512,504,479,481,487,487,486,475,488,486,478,481,479,490,478,483,487,477,478,488,481,487,484,482,480,470,462,465,474,467,465,468,474,461,468,486,491,474,485,478,484,492,487,489,489,485,496,490,526,520,519,520,534,521,516,527,522,527,531,523,517,518,529,531,524,552,550,546,559,567,565,554,554,556,501,502,509,494,511,510,440,439,433,431,443,438,439,448,435,442,445,442,449,440,431,447,455,451,440,453,448,455,447,536,530,523,524,525,526,521,524,528,523,518,516,516,519,516,520,522,523,526,521,533,536,537,531,540,540,534,543,534,535,551,543,559,550,552,552,547,497,470,499,506,513,488,474,488,490,504,488,487,496,485,497,507,489,491,473,459,469,470,468,473,461,467,471,471,474,533,555,524,528,536,510,513,520,513,519,515,513,517,509,520,519,519,513,537,538,543,530,530,542,534,539,541,570,559,570,555,561,573,562,555,550,558,522,527,522,531,520,519,522,509,523,536,531,531,534,533,525,528,525,549,531,540,536,532,540,551,541,541,544,557,553,554,564,550,554,552,552,547,560,558,515,511,521,462,450,455,456,454,453,457,462,465,453,459,444,558,536,541,547,547,556,538,575,562,560,580,577,570,573,573,538,550,547,549,535,539,547,546,505,496,492,501,495,503,487,493,489,492,481,490,450,461,458,452,454,459,448,456,460,459,473,444,491,496,496,478,493,487,485,494,496,488,490,494,487,494,556,548,553,553,561,547,552,553,558,557,559,555,555,559,548,553,558,553,553,548,553,558,548,548,547,556,553,558,553,554,552,555,547,547,554,541,546,552,541,546,556,546,545,547,545,541,544,548,489,489,493,481,484,481,481,487,478,481,483,495,451,453,461,455,451,457,465,449,455,454,458,458,554,588,543,537,536,538,529,535,530,538,534,540,538,529,535,538,531,535,539,535,548,531,528,534,535,537,526,534,564,573,549,571,573,567,572,567,569,577,564,576,578,559,576,560,569,579,571,575,515,515,526,518,517,516,526,518,518,524,523,524,522,523,526,521,523,514,510,511,512,505,507,507,515,511,513,514,550,545,557,551,548,551,553,561,559,555,567,547,554,559,550,556,549,551,567,548,531,487,480,477,485,486,479,472,486,495,481,480,547,550,554,546,545,563,548,552,558,559,542,547,551,556,554,550,538,546,556,548,549,556,567,561,475,479,463,467,484,545,545,551,548,546,563,547,545,558,553,557,549,551,558,552,562,555,559,509,503,493,498,494,505,497,505,494,498,508,492,503,505,505,497,503,509,502,567,568,568,569,566,578,575,560,522,497,502,508,497,492,503,495,515,507,503,509,500,514,509,514,546,540,555,544,535,538,546,536,540,498,535,536,539,538,529,541,544,528,532,551,549,557,559,558,565,568,549,553,554,565,546,543,558,555,560,516,521,517,527,527,523,527,519,520,525,520,518,526,518,560,553,581,577,574,569,572,566,568,569,567,572,561,561,497,505,504,486,507,492,517,496,505,491,491,492,488,490,491,493,488,491,479,492,586,579,577,578,571,582,596,588,578,568,584,565,591,484,485,536,543,534,548,544,546,548,546,542,532,536,550,552,550,546,467,479,475,478,483,469,475,474,479,556,545,538,545,546,561,545,549,548,542,558,543,554,548,546,553,553,477,494,498,482,485,491,476,487,488,480,483,484,497,494,576,569,566,559,558,565,577,576,556,580,564,564,569,576,561,568,568,558,562,575,566,564,552,564,576,563,520,498,504,502,495,506,509,508,508,506,510,496,508,506,503,476,479,476,478,480,471,484,477,482,474,480,475,459,464,455,465,463,466,467,460,460,475,463,467,580,583,585,592,590,570,586,571,586,574,537,522,523,530,526,533,526,534,545,549,555,543,504,496,495,498,512,500,547,558,553,557,541,545,570,546,559,555,551,561,552,551,557,558,499,497,485,496,485,499,509,498,465,449,458,457,460,444,459,455,456,452,454,459,531,535,528,529,536,529,528,529,531,531,527,520,528,523,529,537,534,541,527,528,547,536,538,534,534,560,581,564,578,568,563,580,565,564,564,563,574,575,550,549,546,549,548,544,547,556,544,541,555,556,545,551,557,541,493,475,486,490,489,492,491,495,488,497,459,463,465,466,462,462,457,461,464,532,533,539,534,535,537,526,524,521,531,527,525,527,524,527,528,525,531,525,530,532,533,530,569,545,558,547,547,545,541,548,544,533,534,551,502,516,507,510,508,502,523,510,509,503,490,512,566,571,576,559,547,571,562,560,567,562,571,565,485,500,484,491,496,500,497,497,488,492,496,498,492,499,492,493,496,498,496,502,560,557,551,566,569,566,553,567,554,482,472,481,483,488,478,469,455,456,450,458,453,470,477,599,602,589,577,547,546,538,551,555,554,532,527,527,475,481,470,475,479,484,477,474,479,485,481,528,532,516,528,525,531,521,520,519,524,522,521,520,528,514,518,525,513,516,518,519,521,523,526,529,535,540,536,537,543,542,531,551,544,553,507,515,515,498,505,495,501,497,519,457,455,450,454,450,444,453,455,456,553,550,566,552,548,553,547,554,565,558,468,481,519,530,522,520,532,517,524,540,542,545,538,535,535,536,544,543,547,554,552,547,495,483,471,490,493,484,489,491,491,488,478,558,555,553,553,569,550,549,550,544,556,552,553,549,549,549,546,540,538,552,538,540,541,557,545,528,525,524,517,519,521,528,526,521,560,559,553,557,560,564,535,534,538,536,541,533,531,531,537,534,531,530,529,561,550,578,565,567,550,560,560,562,531,526,520,524,515,525,526,525,518,524,534,514,517,506,512,503,507,485,478,480,483,491,508,513,511,518,501,514,515,515,515,509,511,510,519,558,555,558,555,560,565,559,554,562,552,555,549,562,561,497,495,511,503,501,521,523,513,507,519,516,507,521,514,512,509,515,513,514,510,506,516,520,569,571,564,558,573,568,520,523,520,510,528,531,513,503,505,508,510,509,504,506,504,503,507,491,494,498,495,499,493,493,491,503,501,499,499,504,500,478,486,485,480,486,439,445,445,452,443,455,448,451,452,449,453,438,442,451,445,445,433,433,446,552,553,548,534,562,554,542,550,548,548,545,552,555,497,505,512,443,439,439,441,437,432,438,445,443,441,436,470,472,469,477,460,462,457,465,457,473,575,577,566,560,569,572,553,563,498,527,520,507,529,507,516,523,511,459,464,473,470,470,470,470,471,474,477,470,471,467,471,469,475,477,475,469,476,494,489,492,473,485,477,481,479,480,486,482,485,468,473,470,471,463,469,474,481,562,545,571,553,557,566,558,552,506,492,489,484,498,495,479,513,505,498,467,467,471,470,467,465,463,464,469,467,470,467,467,435,432,434,528,543,534,549,536,533,532,539,540,529,544,541,534,541,567,564,568,569,571,572,560,557,563,583,560,570,565,568,564,561,513,510,509,516,508,509,497,504,501,516,482,474,472,471,489,486,482,475,473,468,468,468,473,477,468,448,442,437,524,530,532,522,527,539,541,539,544,549,544,547,541,552,551,552,551,548,553,479,484,484,484,477,482,490,483,480,472,486,485,464,549,579,569,575,553,569,566,575,567,564,567,578,570,574,533,535,538,544,541,538,542,538,537,540,563,556,561,550,557,564,556,563,575,560,556,564,570,510,510,509,493,505,514,496,499,504,496,491,459,466,465,466,459,453,468,466,461,459,473,471,456,459,553,571,547,553,562,553,553,563,506,518,521,515,521,538,541,548,499,468,451,453,460,468,461,465,463,464,469,468,456,457,492,496,501,482,495,486,495,495,496,583,577,572,574,602,580,573,574,573,579,570,571,570,568,581,573,579,485,500,498,512,469,464,469,461,466,467,464,462,470,471,459,467,468,470,564,551,551,560,542,547,540,551,551,543,550,556,548,551,554,550,546,554,553,548,548,513,513,513,516,519,516,515,523,518,517,517,523,529,530,526,529,533,520,535,531,526,513,513,507,520,511,505,514,508,516,513,517,508,505,508,508,504,507,515,510,499,506,524,528,529,532,535,525,535,533,532,527,525,526,520,525,519,522,522,540,539,538,533,540,541,552,554,549,558,555,540,555,552,542,547,494,510,448,462,449,445,489,492,493,483,500,486,493,493,489,493,493,494,488,485,493,550,574,565,552,554,576,576,586,515,507,504,512,514,512,515,510,515,513,505,498,507,504,510,576,562,568,554,564,484,501,493,497,498,488,485,504,489,488,489,503,495,495,498,511,497,492,493,501,500,593,579,582,574,579,579,599,578,573,573,518,511,513,518,527,520,527,525,522,513,519,523,504,512,536,527,523,568,585,585,573,573,569,570,521,526,524,527,530,531,528,529,535,536,523,541,528,519,526,531,587,598,562,592,583,585,585,582,573,590,586,577,594,574,552,546,547,536,546,541,493,496,502,500,496,491,482,494,503,499,489,497,486,498,495,482,493,492,491,499,488,493,497,498,495,498,490,538,549,545,551,547,546,551,545,551,505,490,493,501,508,504,512,498,505,498,508,530,532,542,532,532,534,536,529,530,533,540,536,513,513,522,520,511,514,511,510,520,528,535,526,567,571,554,570,566,565,559,569,564,563,566,573,570,559,570,569,565,575,559,504,503,515,510,524,509,503,497,507,552,543,548,505,507,506,505,511,506,512,510,503,504,521,513,507,505,563,585,571,567,575,575,576,553,515,498,500,501,499,506,489,498,507,510,501,499,436,443,442,443,432,435,441,440,429,442,441,432,442,499,479,476,487,484,488,472,479,487,490,476,485,478,485,485,493,484,542,546,544,550,542,544,502,511,505,511,499,497,511,508,502,512,514,500,506,558,554,551,559,551,552,569,554,561,559,545,542,549,545,549,539,546,561,532,548,553,558,554,540,561,509,486,492,498,508,499,504,510,509,507,511,507,504,497,507,484,490,483,476,481,482,473,496,493,494,497,504,499,497,500,495,499,499,488,499,472,466,471,472,466,466,463,468,475,474,474,478,479,485,480,478,489,492,499,496,498,481,482,484,484,476,480,489,516,506,502,503,514,511,509,515,508,516,506,512,499,566,559,563,565,559,564,543,551,561,554,553,555,560,565,557,561,514,499,511,514,507,510,511,513,508,506,509,505,483,481,482,482,479,476,477,478,483,489,477,462,455,462,462,458,465,470,460,462,461,458,457,467,464,455,471,467,464,473,473,479,469,457,543,549,557,542,563,562,566,551,551,548,482,493,503,496,482,485,488,489,495,489,485,470,464,465,459,470,464,465,461,476,462,464,528,530,533,525,536,538,535,528,533,539,537,539,569,564,563,577,554,548,527,525,525,520,521,521,505,509,503,506,503,498,517,510,500,502,501,502,500,493,504,497,472,477,476,474,475,476,480,482,475,482,490,465,483,486,482,484,612,600,584,591,588,596,596,606,517,522,505,519,522,533,516,509,513,506,517,516,557,560,557,560,552,558,556,559,542,557,546,561,553,551,516,532,516,487,490,489,493,489,490,500,492,479,489,478,480,473,479,478,481,481,483,480,478,477,461,457,466,468,472,463,458,467,463,448,453,443,466,453,451,457,452,459,453,459,449,452,455,446,454,460,470,459,462,446,453,454,460,534,533,541,534,539,542,546,542,544,537,534,542,538,536,544,536,545,535,548,536,505,492,497,494,487,486,491,501,558,570,570,571,561,563,574,561,568,553,473,468,481,468,477,476,481,451,469,470,474,467,530,523,522,520,518,541,544,550,552,541,540,542,547,542,560,551,556,559,555,552,555,549,551,555,550,564,571,550,563,564,559,511,528,510,525,529,525,525,529,524,525,522,502,502,517,506,505,514,516,475,474,493,490,475,481,478,488,487,490,468,460,471,464,472,457,464,474,461,490,490,496,489,486,484,563,583,556,584,559,589,583,573,569,565,560,495,493,496,485,491,492,491,489,492,488,493,560,566,554,565,570,551,564,554,551,543,538,557,554,550,548,554,555,556,556,542,554,542,489,479,470,478,467,462,474,475,471,471,486,472,482,472,476,478,563,582,565,565,567,570,567,571,566,578,555,562,567,567,576,555,570,572,505,497,487,506,506,508,503,492,481,488,475,495,501,449,447,444,450,439,440,440,445,455,446,448,444,538,543,531,545,540,541,532,530,535,546,538,533,547,543,537,544,548,547,556,538,559,535,545,540,539,540,555,486,482,485,478,474,500,492,479,475,544,546,530,539,537,535,530,543,538,545,537,540,542,538,539,524,518,525,522,521,519,519,551,548,557,548,560,559,565,556,559,564,555,566,550,554,555,552,555,570,533,525,524,520,525,528,519,520,516,525,525,521,530,525,526,532,542,523,531,512,510,499,505,507,511,513,510,480,472,481,495,495,490,486,506,491,494,499,496,496,487,500,488,491,499,562,555,576,564,560,566,563,580,561,575,565,563,566,566,564,512,513,522,519,511,513,502,518,517,554,489,488,489,483,484,487,487,483,486,547,546,586,570,566,574,574,560,566,563,534,548,542,531,531,573,569,563,566,565,567,569,577,566,509,537,520,512,528,513,528,515,526,527,494,497,490,493,491,490,492,494,492,504,504,504,509,497,501,504,511,510,497,502,538,534,538,534,535,532,535,526,519,522,519,518,520,518,519,523,523,522,522,525,526,515,540,537,548,544,534,532,541,544,540,537,533,516,525,527,521,516,519,521,522,525,514,519,520,527,526,529,529,524,501,513,505,516,503,513,517,510,510,508,510,504,516,510,511,549,552,550,554,547,554,549,559,543,555,551,548,546,551,551,525,527,535,530,531,539,536,533,541,534,544,531,557,578,571,575,488,493,492,511,486,493,482,507,496,566,567,559,553,565,575,570,572,564,565,565,552,567,571,562,566,491,500,500,488,496,501,462,468,462,471,462,460,465,476,473,536,535,541,526,541,541,537,545,539,530,545,544,546,552,551,547,555,542,540,550,548,548,559,552,555,562,502,498,496,493,481,505,495,497,489,499,488,496,495,502,480,496,481,506,504,454,562,563,561,571,548,557,535,557,560,557,553,565,548,553,576,555,521,515,518,517,520,508,519,518,536,532,526,537,523,522,527,483,485,489,492,498,484,483,483,489,490,497,486,553,540,555,559,556,544,563,550,563,553,540,556,559,479,473,478,472,476,454,466,463,473,457,464,596,586,585,579,582,505,519,541,519,527,526,517,521,527,579,573,568,568,580,572,576,583,569,579,589,585,574,573,571,579,580,576,579,539,542,540,542,544,542,550,545,539,541,544,544,540,541,543,548,538,535,532,541,521,515,532,532,529,530,527,523,520,520,529,533,585,587,590,583,553,555,530,544,504,503,512,497,511,502,509,493,480,453,458,458,454,455,456,453,452,426,444,423,434,437,434,422,433,438,441,438,434,512,519,515,514,507,512,521,522,511,524,515,528,519,509,517,521,511,512,517,508,518,514,518,516,514,516,516,517,513,521,520,516,507,517,519,528,534,530,535,534,527,524,528,531,534,534,524,526,534,529,566,571,566,551,537,545,536,532,491,493,492,481,483,492,479,483,488,489,483,488,488,486,479,485,500,502,497,503,512,503,506,501,497,497,501,506,503,498,497,502,500,499,495,534,530,524,531,523,530,536,535,542,546,540,542,544,534,539,544,544,555,522,522,526,526,522,509,508,482,475,486,492,492,488,474,486,480,461,457,468,461,459,460,459,454,457,468,444,449,459,476,458,501,498,504,509,508,501,500,502,498,513,500,497,562,564,565,561,554,566,566,562,534,534,525,514,528,531,526,534,530,535,517,522,529,463,480,473,469,475,481,484,483,473,474,478,550,550,545,557,551,556,553,552,555,551,547,554,549,557,554,540,491,489,498,483,486,509,501,485,479,482,498,492,499,488,491,476,479,480,469,478,483,477,545,545,542,569,546,546,541,554,552,556,553,544,549,558,550,545,556,557,513,505,501,511,516,513,454,455,463,452,461,459,450,459,453,452,468,540,531,548,528,528,531,519,535,537,530,527,536,535,533,529,535,535,530,541,534,526,536,537,539,532,537,532,536,531,536,536,536,527,535,536,538,545,542,550,509,519,504,511,513,519,505,510,508,557,567,566,562,557,545,550,558,490,489,503,504,501,495,492,489,494,489,494,493,490,495,491,491,501,496,507,496,499,498,495,497,490,495,490,501,495,487,580,564,549,569,573,568,566,574,573,569,572,522,514,526,504,511,518,514,520,516,533,514,511,524,519,518,475,473,478,468,470,473,477,470,471,475,467,478,475,479,471,456,566,558,536,553,529,536,550,485,481,484,485,488,488,491,476,577,575,563,567,567,573,572,558,558,558,551,569,562,564,562,555,560,562,551,549,561,550,494,506,505,503,484,503,504,495,510,526,508,515,519,513,514,518,530,536,540,546,541,539,537,542,498,497,497,498,498,488,498,507,494,492,500,496,585,592,592,581,584,579,594,592,548,547,541,543,540,538,533,513,512,516,519,505,511,516,551,545,539,544,544,545,550,533,549,547,548,543,568,566,555,561,574,570,565,566,549,551,559,528,509,528,510,506,527,513,519,516,530,521,535,523,522,467,466,459,471,443,433,455,437,438,433,425,433,448,504,512,526,508,513,528,526,528,534,530,576,575,564,548,559,538,556,549,559,553,551,551,554,553,556,560,551,544,557,520,516,516,509,472,478,487,473,487,473,492,500,495,495,500,500,496,501,495,494,492,495,498,489,509,511,513,504,515,513,530,521,542,534,522,530,531,531,526,539,537,539,530,525,532,533,532,539,525,536,538,534,535,535,527,531,540,514,519,518,519,516,513,521,519,513,520,516,510,511,505,503,505,533,546,537,541,539,541,554,540,551,544,533,509,509,513,509,517,505,505,506,505,503,509,506,500,512,499,499,503,528,537,535,530,534,534,534,535,534,534,536,533,534,535,528,541,540,542,549,547,544,550,550,548,539,538,540,526,525,527,533,540,529,542,542,536,539,531,540,542,548,538,533,534,509,516,512,517,521,516,516,509,515,519,522,556,553,567,550,555,562,553,553,557,563,525,527,515,527,520,520,522,507,527,519,521,518,517,516,521,525,488,490,488,489,489,487,486,481,481,469,484,473,477,479,486,465,467,482,479,472,467,452,436,455,436,458,448,452,557,550,552,551,559,545,552,542,560,548,554,558,551,557,557,537,536,487,474,481,491,475,542,542,532,534,532,528,526,534,540,540,541,542,547,547,535,542,546,543,541,538,536,543,544,541,548,542,545,483,476,468,475,479,480,491,476,490,493,488,484,482,490,492,480,488,513,524,522,600,574,576,570,584,591,576,592,578,579,590,581,578,575,590,581,578,589,587,576,544,537,544,538,528,523,527,521,521,525,532,518,523,530,531,564,571,569,563,556,495,505,494,490,502,499,496,471,470,466,463,460,459,467,471,468,460,468,468,470,466,547,557,538,541,550,552,554,552,546,533,556,542,561,547,480,461,481,478,486,479,471,473,470,448,439,448,546,545,551,556,544,546,554,552,536,541,550,549,537,573,505,501,506,511,497,503,501,488,489,527,542,535,549,543,553,532,538,537,571,565,565,559,564,568,571,567,549,558,560,567,560,567,557,501,537,540,543,543,545,533,576,572,566,564,566,563,561,535,544,544,540,535,537,545,548,538,497,509,508,495,509,504,503,504,502,512,502,499,495,468,474,457,429,438,436,438,441,433,445,430,433,434,434,448,420,451,445,442,543,531,540,542,547,547,538,540,534,531,538,542,540,537,543,553,552,554,559,549,544,545,546,547,558,545,488,496,502,490,504,510,497,525,491,487,494,491,503,496,479,489,495,503,482,445,446,440,432,452,441,450,454,447,491,489,483,494,493,507,497,482,492,482,497,504,486,554,548,558,542,548,542,553,499,487,498,502,491,501,497,489,489,490,497,487,488,490,496,490,491,499,495,495,536,532,530,537,527,529,533,530,552,562,549,558,550,563,556,557,571,546,551,561,564,557,556,555,489,490,507,496,494,508,476,452,463,458,457,455,554,557,548,505,507,508,518,519,517,515,520,518,524,526,528,547,551,556,561,558,546,555,550,548,560,549,547,548,551,554,555,543,542,544,566,548,545,531,525,523,527,515,525,536,506,490,500,499,494,500,493,496,484,493,486,488,495,498,497,490,512,511,514,513,510,509,510,505,547,542,555,547,546,554,552,547,546,543,545,552,547,562,554,551,552,549,542,552,556,489,499,486,491,479,490,561,558,564,557,556,558,546,551,547,551,562,538,548,554,547,549,547,552,550,501,500,508,497,509,495,507,504,501,508,522,505,503,565,552,546,564,567,568,571,561,558,575,549,555,587,554,561,493,499,494,499,497,496,504,510,487,500,501,553,551,555,567,551,544,552,550,553,564,548,550,539,561,519,507,505,512,496,510,515,516,518,509,505,465,463,459,459,459,469,468,468,451,450,433,438,448,445,440,437,437,541,541,538,557,551,541,536,547,532,536,545,537,548,546,545,560,500,503,493,497,494,500,512,506,499,507,494,498,583,598,503,541,546,538,567,579,570,571,570,553,548,545,530,546,541,537,553,548,531,505,487,491,503,498,491,505,499,492,493,491,505,508,511,510,500,506,505,555,549,549,555,551,552,554,557,564,547,544,554,555,559,556,541,536,529,538,528,536,528,544,561,563,576,558,576,568,517,524,525,522,518,524,520,524,522,479,475,479,477,473,483,481,473,433,437,448,450,442,437,444,426,440,437,487,487,479,485,471,482,480,483,488,478,483,485,478,484,511,511,507,508,504,507,508,508,512,524,536,532,524,538,523,524,532,526,530,538,530,540,527,528,512,514,516,520,525,527,528,537,528,530,533,527,537,524,564,564,554,563,571,570,568,569,575,533,527,541,533,537,527,535,569,568,556,575,569,564,558,486,491,497,481,502,507,493,504,481,500,504,560,568,567,565,557,573,555,564,578,569,555,567,569,572,571,572,566,571,572,565,556,571,552,570,562,568,529,505,507,508,512,503,511,502,508,506,507,500,500,510,510,516,482,489,494,471,474,482,484,482,492,500,506,493,485,483,496,495,497,493,486,503,501,498,492,547,551,574,581,559,568,566,568,559,557,547,558,563,561,573,552,515,510,519,518,525,525,519,516,518,525,522,518,516,584,571,565,570,570,554,491,489,495,504,501,493,495,485,496,493,562,517,513,504,506,496,508,508,508,508,505,489,491,488,487,488,500,494,489,484,491,482,497,497,495,502,505,497,499,481,474,480,479,478,483,476,475,476,479,478,477,478,491,485,487,564,563,566,581,576,558,571,565,570,503,519,470,461,467,462,466,474,465,466,459,468,478,463,463,451,450,451,438,499,499,565,557,551,560,562,558,563,570,562,566,556,541,535,529,528,536,538,531,526,532,533,532,535,523,489,485,465,551,564,549,546,541,547,553,539,549,546,559,555,556,551,550,552,554,557,526,529,530,528,529,529,527,528,523,525,528,532,526,534,528,529,532,532,557,559,551,562,555,552,551,551,557,559,563,567,549,554,557,510,496,491,503,457,457,463,457,455,454,457,444,454,454,451,454,456,454,457,464,472,476,474,481,462,555,565,575,561,560,566,564,565,563,577,558,506,504,513,513,520,517,516,517,506,514,521,525,532,529,523,524,528,528,518,539,502,554,548,569,546,559,553,558,559,550,511,506,504,501,498,516,497,492,503,507,511,502,456,473,459,457,461,462,462,464,457,462,460,450,463,446,452,459,491,491,490,495,488,492,492,491,492,496,493,494,494,529,533,538,533,542,534,529,533,533,533,543,529,553,556,566,547,570,547,550,543,502,494,493,501,490,503,492,485,477,489,488,491,491,482,507,497,494,491,502,499,494,549,557,512,512,514,505,519,517,529,523,519,531,533,533,534,529,524,528,536,525,520,511,508,516,514,511,513,516,507,512,509,512,507,510,508,512,509,506,501,506,554,553,562,554,549,564,550,541,537,542,545,492,480,480,471,485,473,496,504,495,490,490,494,498,480,547,544,557,537,534,537,529,531,537,532,530,517,522,523,525,517,529,530,527,526,522,525,521,565,587,594,581,594,596,599,576,569,582,568,578,582,591,523,539,519,523,540,518,528,530,528,582,579,576,591,583,577,519,587,592,597,592,592,601,590,591,590,582,594,593,576,587,587,563,551,550,551,551,545,548,543,509,513,504,492,480,484,487,490,480,487,490,493,486,481,481,479,476,480,479,479,481,485,474,478,475,481,472,470,477,484,514,513,511,510,522,514,512,513,514,514,517,552,565,569,572,571,573,568,577,551,572,562,564,569,570,573,559,569,522,532,538,525,497,491,501,507,492,503,502,512,480,479,482,485,485,480,481,472,459,468,473,469,464,474,558,546,554,551,553,556,556,558,565,549,543,569,562,505,493,493,486,503,499,500,486,481,489,544,549,547,539,540,540,551,548,547,541,537,539,550,539,522,516,522,519,520,516,527,521,519,508,521,539,527,534,543,534,524,533,536,540,535,542,522,534,516,529,535,462,457,463,460,463,460,549,549,551,554,549,547,549,551,554,541,556,552,551,552,509,504,496,492,514,506,515,499,526,486,491,472,470,470,470,473,466,473,470,472,474,474,493,489,471,472,489,478,487,479,473,476,586,590,596,604,600,592,587,592,598,578,599,540,534,533,538,547,539,541,546,539,540,536,536,499,498,503,495,501,493,504,497,544,539,548,541,545,545,539,548,553,556,546,554,549,545,550,544,542,540,546,569,564,558,561,567,569,566,573,568,567,565,569,572,567,563,528,537,535,540,536,518,516,518,508,511,514,513,520,532,527,535,527,531,527,539,558,550,559,556,573,552,568,545,552,566,551,557,505,499,503,509,506,508,509,503,506,505,505,501,514,507,510,575,555,562,562,555,563,551,560,523,522,509,515,512,511,514,501,493,494,495,488,483,489,489,492,487,488,495,492,494,494,496,493,485,500,489,493,497,495,490,491,494,494,491,488,488,490,489,487,496,488,491,487,500,501,500,500,503,501,508,500,504,502,501,502,507,498,496,501,504,505,493,495,498,495,499,501,489,486,486,475,495,491,484,478,488,491,494,491,490,490,484,464,453,467,471,459,458,466,465,464,474,472,459,464,451,452,457,452,452,456,473,466,475,473,476,481,475,474,477,616,600,592,588,596,527,535,543,534,534,540,532,545,561,509,505,512,505,501,595,608,603,606,593,598,606,587,612,596,617,607,592,552,570,564,564,560,560,567,570,553,566,562,514,510,513,520,503,514,532,514,508,518,509,487,481,478,484,488,473,485,480,493,484,486,475,484,476,484,480,474,489,471,505,498,498,499,510,507,503,505,499,508,504,505,508,508,507,504,536,544,535,540,545,534,545,539,541,532,534,570,566,562,566,582,576,568,570,534,529,530,535,540,543,540,536,542,537,544,538,570,570,572,557,565,554,556,559,575,557,564,554,563,572,511,507,501,496,506,506,504,489,501,507,506,503,503,507,499,511,502,501,509,507,497,502,504,512,504,497,504,508,508,507,505,504,511,495,511,531,532,531,526,534,529,536,527,534,536,532,535,542,535,537,537,526,528,537,533,539,536,529,534,535,545,540,537,538,538,542,535,531,533,539,543,543,561,555,550,561,564,554,559,560,524,515,504,501,524,504,510,480,483,476,477,483,483,468,465,468,468,460,469,463,470,458,471,468,464,467,466,454,456,471,452,459,455,454,450,597,585,581,592,585,568,561,580,581,579,570,556,550,556,552,546,544,549,548,550,546,540,545,555,550,545,552,492,498,498,500,494,514,500,509,511,509,566,564,560,571,571,574,568,556,563,566,564,567,567,549,495,485,518,503,522,561,555,562,550,569,550,554,562,564,566,528,519,512,504,530,510,513,518,507,518,518,520,509,510,500,506,524,509,516,519,479,472,480,481,473,478,493,461,463,460,455,453,462,462,457,449,461,453,454,462,469,472,464,475,466,471,473,472,469,481,480,458,480,467,478,475,465,477,593,606,585,603,613,610,598,590,590,599,611,598,533,537,535,544,544,534,549,525,538,540,577,566,554,578,569,571,551,559,489,497,501,502,495,484,505,498,491,489,545,551,545,547,556,540,552,553,549,550,554,547,555,568,552,559,551,468,485,468,489,475,468,472,492,472,466,546,557,546,545,550,549,545,550,556,558,559,546,557,554,553,557,553,549,544,558,517,510,505,511,504,501,510,513,511,519,514,510,516,515,512,509,517,512,504,506,455,449,453,447,450,446,462,449,454,464,464,446,450,451,457,528,524,524,535,532,529,527,526,532,530,533,528,534,566,562,575,563,572,537,534,536,533,533,534,539,536,543,535,536,533,542,537,542,529,544,539,551,537,535,540,532,539,537,579,590,504,493,506,506,500,497,491,498,508,503,498,503,493,497,509,500,501,494,577,572,485,487,485,501,501,500,482,494,492,488,524,486,499,486,560,543,558,554,556,539,546,558,544,546,555,548,549,549,541,546,550,545,522,527,528,522,531,525,563,559,567,577,572,560,567,561,505,523,509,519,515,485,479,482,479,474,489,482,476,477,496,510,497,493,498,498,494,489,501,499,494,495,514,509,509,509,551,550,543,545,543,542,554,538,544,547,536,548,536,540,546,527,533,538,543,544,537,547,547,544,539,528,554,548,532,540,479,491,493,475,495,476,502,486,488,477,494,497,498,489,482,545,549,542,542,538,539,540,538,552,543,556,549,552,517,509,512,507,510,504,511,502,504,505,510,504,541,552,546,545,546,544,535,532,532,536,531,533,530,540,532,534,536,539,539,536,511,507,503,511,513,506,547,535,527,541,537,531,533,539,536,536,531,532,531,522,519,512,517,524,522,516,520,517,513,521,524,515,516,519,529,539,530,533,542,542,532,542,529,541,535,536,539,532,542,550,555,550,546,541,545,554,548,541,552,552,483,498,487,481,495,501,509,493,505,472,460,468,468,469,464,467,470,471,472,469,475,470,553,551,547,563,511,477,480,475,479,484,486,479,471,474,472,474,479,479,477,471,478,481,475,472,485,436,447,452,447,437,448,449,443,444,455,524,526,532,520,527,529,533,522,533,520,522,514,529,522,518,523,520,544,550,540,541,546,541,546,553,551,554,556,550,552,546,551,547,548,566,554,497,499,495,501,509,517,517,516,516,514,507,508,507,513,511,519,540,533,537,533,549,533,544,539,542,543,548,537,535,530,537,539,504,506,505,499,502,507,512,513,509,511,507,515,513,507,514,510,556,547,561,545,557,559,558,561,562,528,531,531,527,533,534,533,528,529,524,527,531,522,523,529,521,527,562,554,553,551,542,554,510,501,516,512,501,503,507,504,456,449,455,450,457,459,464,450,452,446,458,533,532,532,532,539,539,534,528,528,535,529,539,538,537,537,533,541,537,542,542,541,542,538,556,551,519,517,518,535,518,515,477,500,490,490,496,497,585,596,594,599,604,583,572,536,531,530,534,530,544,527,544,528,529,528,542,558,559,545,565,549,558,586,562,572,559,570,495,486,465,483,483,474,478,471,518,532,518,525,515,512,536,522,536,543,546,533,537,534,548,535,540,535,545,538,535,544,542,540,533,546,538,540,541,552,551,501,501,496,495,502,502,518,498,503,509,562,555,565,564,552,567,574,557,571,561,570,569,568,543,557,571,554,560,548,494,498,510,507,514,509,510,511,517,510,511,505,499,513,502,504,513,500,506,495,502,504,542,552,539,535,545,545,540,550,539,546,547,553,550,554,556,559,542,525,514,513,503,513,509,507,517,509,501,506,505,505,515,493,509,467,467,470,463,460,475,470,467,463,460,468,466,452,448,440,450,446,441,453,457,449,444,458,447,456,451,460,447,456,511,513,511,493,523,518,513,509,558,556,557,548,556,559,553,558,549,558,516,524,502,512,521,512,520,523,514,495,478,477,481,484,478,489,474,471,464,464,474,494,490,501,500,496,495,497,491,495,500,499,495,499,497,507,489,491,502,492,493,496,494,483,483,495,488,486,484,491,486,487,490,487,492,493,491,494,481,487,488,488,489,474,485,480,488,483,471,478,479,478,471,486,456,455,463,475,480,473,476,591,610,590,598,594,612,583,597,601,604,549,557,545,548,550,543,544,549,553,551,502,488,490,495,498,514,502,519,509,552,563,558,552,558,559,550,546,543,549,549,560,557,542,487,500,496,504,491,503,496,511,502,509,506,511,502,505,500,500,513,497,501,536,539,531,538,537,532,540,529,543,532,547,534,533,539,533,539,527,537,556,554,563,531,549,547,558,491,500,491,478,488,479,554,561,552,555,559,544,469,533,546,531,545,542,534,537,533,537,532,553,545,510,505,507,498,509,507,501,503,510,497,504,504,513,498,529,536,525,535,538,529,535,533,527,537,525,527,536,532,537,525,530,528,555,555,551,542,557,562,561,557,470,472,479,475,484,482,484,487,476,482,479,469,478,487,476,482,481,461,443,459,449,454,464,463,454,444,449,446,446,449,455,557,562,563,551,553,562,551,559,552,566,544,550,562,566,555,541,551,475,480,485,485,548,537,545,547,543,530,548,536,537,541,549,570,522,523,526,521,521,534,520,533,522,511,533,526,530,533,530,533,551,498,495,499,576,573,593,574,578,572,530,533,530,537,537,538,529,528,538,535,536,534,539,533,534,532,536,531,537,530,533,521,560,565,553,551,559,564,556,497,527,509,532,517,522,519,520,521,522,519,520,512,515,515,515,515,523,522,512,569,556,513,521,528,516,519,518,521,512,522,510,527,527,517,520,578,559,578,578,576,574,570,498,494,504,505,505,497,484,503,510,505,495,500,469,455,470,461,461,466,456,472,539,541,551,533,547,544,541,563,571,569,564,570,568,572,567,565,568,575,568,573,571,569,569,568,565,552,534,536,542,537,537,543,530,526,523,523,527,516,527,527,532,527,528,526,519,531,524,529,534,526,517,514,512,522,513,515,512,511,519,514,516,518,516,520,515,520,517,519,526,531,529,530,525,530,534,539,523,534,528,502,488,486,499,502,500,494,494,496,495,582,602,536,535,535,543,482,480,468,464,474,475,475,477,477,472,468,477,475,481,486,523,529,526,522,536,532,543,526,528,530,529,527,513,515,516,523,525,516,512,527,512,531,523,528,530,527,522,515,518,525,532,529,528,525,525,569,566,569,573,565,570,567,564,565,558,573,558,572,571,561,568,566,563,562,548,537,530,530,535,539,537,530,530,519,521,514,509,513,523,515,523,514,512,525,517,501,514,509,506,502,511,512,530,527,533,541,541,527,527,532,535,527,536,526,527,538,522,515,519,527,549,546,545,546,544,549,545,545,537,536,540,551,558,558,544,512,512,527,517,522,509,522,507,510,518,522,517,520,511,487,488,484,488,483,490,490,468,470,471,460,454,563,566,544,552,559,552,572,563,556,559,487,475,467,484,481,469,475,459,456,492,479,475,471,475,464,544,559,550,547,552,549,534,528,534,546,537,536,557,545,541,547,536,541,515,499,506,509,506,570,569,557,560,572,572,575,575,504,526,518,517,522,508,512,520,520,503,509,512,527,458,460,465,464,456,457,465,466,462,469,468,472,460,462,471,470,459,461,461,460,462,464,461,463,464,459,468,461,459,576,560,563,561,561,563,565,563,494,479,488,491,480,488,486,479,577,580,594,580,582,574,564,588,580,565,583,567,535,518,508,590,578,595,557,535,542,540,548,545,546,519,531,528,533,519,520,537,535,522,573,549,556,567,566,569,561,526,550,539,551,543,545,548,541,543,545,544,561,563,559,581,569,564,587,563,564,585,567,576,569,586,535,522,525,529,519,521,528,519,523,521,523,516,517,480,481,486,485,494,481,484,484,483,464,459,470,462,471,470,468,563,560,566,568,565,578,562,555,561,565,566,553,564,573,559,569,562,574,562,560,561,570,561,518,517,517,524,525,509,523,520,521,516,523,521,512,519,514,488,490,487,481,483,482,477,485,487,484,483,478,485,481,487,487,487,494,495,569,558,565,484,476,482,486,488,477,474,466,486,472,466,468,468,480,488,469,451,467,464,464,469,457,475,460,482,473,464,573,594,591,582,593,580,591,584,589,599,591,588,586,598,573,539,526,528,513,525,529,525,541,540,522,523,531,522,520,531,597,584,591,579,581,585,573,584,584,592,585,536,533,533,528,528,528,552,552,553,560,562,558,555,501,516,511,515,510,516,514,509,512,517,494,507,499,489,499,494,504,502,507,497,498,523,529,527,523,532,530,523,532,537,536,536,540,534,542,531,526,532,535,532,539,542,539,550,545,543,545,539,565,544,547,547,556,549,550,557,544,534,550,544,541,513,515,517,519,515,516,516,551,545,553,538,543,552,547,550,543,546,540,542,550,545,542,552,543,549,575,580,563,567,571,556,569,578,502,496,496,500,500,494,505,505,512,499,500,499,490,488,498,486,486,489,488,493,488,502,567,577,570,577,582,564,562,572,517,495,490,496,489,499,500,509,502,506,491,503,476,498,574,573,584,588,588,576,597,576,590,572,582,576,581,592,584,527,529,537,539,530,528,546,532,525,536,534,557,536,570,551,559,548,553,549,501,502,517,513,506,510,503,513,513,518,568,555,558,572,522,521,521,526,517,531,523,524,531,542,545,549,540,546,562,548,548,550,530,546,544,547,541,496,511,504,498,500,502,488,498,453,452,447,455,457,451,451,449,460,443,449,444,444,444,452,553,549,541,547,550,549,542,549,542,550,549,547,544,551,545,552,546,544,544,542,552,574,524,526,538,528,545,528,533,533,523,528,518,528,517,528,533,483,477,478,479,475,531,529,525,530,529,527,529,531,526,516,525,527,537,537,545,548,549,505,489,493,500,509,497,494,568,558,560,546,550,549,558,552,573,562,552,541,579,498,501,496,487,498,501,480,485,498,468,462,460,467,559,568,576,563,563,562,560,559,558,566,557,557,564,561,559,569,559,561,558,563,555,554,522,511,504,511,514,514,480,481,484,485,486,483,487,485,483,487,486,479,484,486,479,475,492,487,488,480,486,489,454,459,462,473,458,472,459,467,465,475,467,454,465,458,458,452,464,460,464,451,463,540,536,558,536,541,549,549,550,546,549,551,470,474,478,474,464,480,484,471,463,477,478,477,452,473,479,476,470,475,484,470,467,480,478,475,573,562,564,571,564,579,562,556,491,502,497,509,515,507,506,512,510,522,478,483,471,480,467,473,471,473,475,468,482,466,464,457,457,469,456,464,441,466,453,581,582,569,582,572,575,587,582,592,589,589,580,593,551,548,552,548,550,544,553,541,545,554,500,493,482,511,503,499,501,496,499,492,502,492,488,456,456,455,456,461,461,452,453,451,456,460,449,455,463,501,496,523,504,497,502,514,504,512,494,505,508,521,497,490,506,517,560,570,558,557,552,568,561,570,553,558,570,572,514,525,509,527,530,510,532,514,513,529,518,512,514,521,521,520,473,481,471,473,471,474,483,481,489,477,473,468,484,482,478,474,481,484,578,598,589,605,593,592,576,584,586,583,586,597,598,572,542,554,545,544,540,541,484,502,493,495,489,494,492,489,497,503,514,523,519,523,524,573,581,571,590,574,582,546,554,542,534,540,543,554,548,543,549,544,552,544,512,508,508,501,512,503,509,502,505,524,506,506,479,479,476,471,483,457,457,464,453,464,457,451,463,506,505,498,501,500,492,502,493,497,491,495,505,501,497,503,499,496,494,503,555,548,554,551,553,555,547,545,545,554,550,552,554,550,549,548,554,553,511,515,519,509,506,521,501,528,534,515,514,515,504,497,517,484,479,483,482,475,480,471,485,485,473,486,477,482,481,506,505,502,493,498,499,499,501,503,495,543,534,538,539,540,545,538,533,540,536,557,558,560,572,553,563,553,554,571,515,523,516,525,511,510,525,513,515,515,514,506,521,516,517,480,471,473,474,478,470,470,482,477,475,476,473,472,478,477,478,481,474,480,468,487,471,484,475,496,497,497,499,501,500,502,503,494,495,500,500,500,497,502,498,498,495,496,493,497,488,503,499,486,488,497,501,497,495,499,458,464,449,455,463,447,453,455,458,452,456,461,455,459,463,438,535,547,550,550,543,544,543,556,544,546,537,547,543,553,542,560,546,547,549,550,555,506,494,502,517,499,503,507,503,504,505,507,508,508,512,507,520,537,527,531,528,530,537,533,540,540,530,530,527,531,531,545,560,549,555,548,555,550,548,548,555,549,566,539,548,554,556,553,481,488,479,477,487,484,457,458,461,448,550,550,548,563,556,548,556,555,546,549,546,559,558,539,542,512,517,508,518,513,517,579,596,568,581,572,579,570,568,589,580,575,494,495,494,494,485,505,498,497,511,501,505,496,511,505,469,464,469,477,469,556,566,554,563,552,570,570,563,562,557,554,556,552,562,558,565,550,555,551,553,552,554,537,548,520,515,509,514,520,512,523,514,512,588,574,580,565,525,521,520,520,508,511,523,518,520,518,515,484,478,482,481,485,480,482,476,470,466,474,470,452,468,564,555,550,554,550,549,550,557,553,556,556,547,542,547,554,545,523,522,524,521,525,517,516,524,528,530,523,514,521,558,562,560,562,565,553,561,560,546,549,551,555,548,554,500,506,520,497,507,505,506,514,508,512,517,493,495,512,506,496,492,452,453,453,459,444,448,451,442,455,450,449,457,468,450,476,480,480,480,484,488,476,483,563,573,571,565,564,562,552,571,556,569,569,565,571,546,485,481,467,482,480,477,485,472,491,486,474,478,445,449,457,450,463,527,538,534,532,529,531,535,535,525,530,535,539,542,535,528,541,536,530,533,526,524,527,526,526,524,523,530,526,520,537,537,535,536,534,539,535,536,538,541,530,535,536,536,524,551,547,537,545,548,543,549,546,548,550,550,538,537,546,544,544,547,545,530,524,530,525,526,531,524,521,529,527,528,547,543,548,550,547,551,551,544,543,563,552,554,497,505,484,499,495,500,515,497,510,501,498,504,491,509,507,494,503,470,469,463,467,472,472,471,470,467,464,482,479,495,482,483,483,486,487,483,480,480,517,518,518,527,523,518,543,553,546,552,545,558,551,518,515,514,513,518,521,530,518,529,521,533,510,531,452,456,463,475,466,456,457,459,462,457,466,547,537,549,537,544,554,559,545,551,552,542,548,541,541,540,543,554,540,538,547,535,528,520,511,524,519,510,516,517,512,528,513,528,520,518,512,561,565,551,560,574,561,558,571,554,500,516,516,497,502,512,490,483,495,493,487,508,514,515,544,538,549,551,556,538,546,553,547,544,547,557,547,556,548,548,538,546,549,548,506,526,494,501,506,502,474,479,466,467,463,461,461,474,460,461,463,467,453,448,459,447,450,450,449,449,455,456,450,450,451,445,450,457,448,460,464,449,446,453,453,458,546,568,567,556,575,581,563,559,566,536,533,543,545,526,543,530,533,537,545,534,539,531,532,533,560,564,552,554,556,509,500,512,508,505,506,503,504,503,503,522,522,519,564,560,486,486,484,492,497,494,490,479,490,495,503,493,490,496,493,494,498,477,472,481,481,476,480,605,608,595,582,609,600,609,588,509,502,520,511,516,506,513,552,555,546,553,562,557,545,553,555,540,538,547,543,547,552,556,559,477,482,468,464,481,478,482,437,434,453,447,442,539,552,548,552,537,538,550,543,573,570,565,561,540,572,570,574,559,565,567,564,562,567,513,529,520,530,530,537,519,519,520,522,529,519,518,517,517,522,499,495,503,498,500,503,462,470,469,461,466,467,462,474,467,466,456,471,455,463,461,464,473,465,443,425,431,445,441,444,447,446,446,434,446,442,436,440,542,540,550,537,534,553,540,555,549,551,542,550,549,548,551,546,547,542,503,492,498,476,490,492,485,495,509,487,492,488,491,464,461,482,463,470,467,468,460,464,473,472,468,553,527,553,550,558,557,544,541,550,542,549,544,543,561,559,497,488,478,502,499,511,503,497,501,478,478,478,544,555,553,558,560,554,562,544,546,541,565,489,493,489,482,484,490,497,499,493,482,488,469,469,472,457,462,477,464,469,470,463,462,473,470,475,464,468,470,555,562,569,556,570,563,554,550,555,549,560,570,564,558,554,547,543,556,553,547,549,525,514,520,557,567,579,573,563,577,579,576,573,591,574,575,585,587,501,493,493,500,489,505,502,500,492,513,499,503,503,500,494,464,470,473,466,466,462,475,477,464,470,468,474,463,552,560,563,570,563,557,550,559,564,549,559,550,537,527,517,512,513,522,523,540,552,557,549,545,557,552,549,547,551,547,549,537,556,551,548,540,556,539,545,548,525,528,529,532,518,531,535,571,556,561,578,568,554,563,555,568,502,495,511,507,504,506,504,497,492,499,503,506,508,502,548,549,556,546,542,539,548,540,543,504,512,505,510,511,569,572,571,568,563,563,579,562,579,582,572,573,521,518,515,521,511,525,511,513,515,464,456,459,450,459,460,464,453,462,459,456,470,455,457,458,455,447,547,540,547,546,556,554,554,542,556,549,544,556,554,549,543,477,467,481,477,477,470,473,472,472,471,455,474,523,523,523,529,520,523,542,547,538,554,542,536,535,539,549,541,541,548,536,539,538,542,551,543,554,519,519,522,504,512,523,520,520,515,500,487,485,498,490,495,479,491,467,462,471,467,475,463,470,474,471,467,473,480,470,470,467,468,478,475,469,469,473,478,473,468,477,471,475,475,478,469,476,469,457,463,460,466,452,473,458,461,463,447,464,461,462,590,590,596,565,590,562,592,571,582,569,588,578,573,582,580,580,585,594,593,572,588,581,539,532,548,537,533,541,530,543,538,537,575,579,498,502,486,501,481,489,480,490,491,481,484,588,598,597,543,530,545,534,520,526,519,538,590,578,582,585,575,581,591,604,589,583,585,568,555,558,557,562,557,559,545,562,521,512,523,525,520,478,474,481,481,481,475,481,484,480,479,501,512,507,506,494,502,501,508,500,496,505,502,510,503,503,506,507,499,505,506,494,508,498,550,552,551,507,507,505,509,505,500,507,501,505,508,502,507,502,507,525,535,529,535,531,530,534,534,536,533,538,541,538,534,538,525,524,519,520,521,525,521,523,520,516,518,523,518,529,520,519,520,539,548,536,533,534,540,540,543,538,546,542,546,556,551,545,542,554,554,494,504,515,494,523,520,477,486,482,488,489,489,490,487,486,486,482,484,486,486,485,481,482,475,474,486,475,477,479,470,475,487,486,484,487,488,478,483,488,483,479,466,479,480,476,467,482,482,478,477,483,477,479,488,482,482,485,478,486,485,465,466,499,470,491,567,578,571,571,580,562,590,560,554,573,560,557,577,573,491,475,482,487,486,481,488,485,496,485,491,527,530,537,538,531,533,531,529,530,535,527,574,574,581,576,573,560,532,553,550,542,547,545,544,542,547,488,497,497,493,498,488,493,485,499,497,502,502,505,500,503,499,508,498,506,500,505,499,504,503,494,500,499,552,554,556,574,570,558,565,565,546,510,509,504,511,515,508,507,506,488,510,507,478,478,485,485,482,483,486,474,489,477,480,473,480,488,480,471,490,479,484,494,486,481,482,615,584,592,588,601,604,597,534,542,535,560,508,514,515,512,499,506,505,511,506,517,503,503,591,594,595,597,593,595,583,588,589,594,586,587,600,545,553,551,550,545,551,545,558,552,550,557,544,559,549,545,557,557,553,555,496,508,504,500,501,502,503,463,467,458,465,466,467,468,455,472,490,490,489,485,487,492,480,487,491,486,474,479,482,490,485,479,489,551,545,544,550,547,550,542,547,541,539,548,543,534,543,530,529,492,473,484,487,492,489,486,487,486,491,487,477,483,490,458,471,469,474,475,476,471,549,536,545,490,498,486,504,498,502,499,498,515,515,505,498,502,518,502,500,500,509,498,501,492,540,541,535,535,534,538,545,529,522,517,527,521,525,519,522,521,526,520,524,518,529,537,545,538,533,529,525,525,523,550,550,546,544,555,512,503,500,508,520,506,502,502,511,510,498,515,501,496,548,541,554,555,563,556,541,555,546,547,531,541,549,538,543,545,541,551,548,546,546,538,539,554,544,498,511,503,499,501,500,497,509,569,555,559,555,563,493,490,483,506,484,479,489,493,504,483,486,488,490,491,499,498,494,486,489,486,488,484,486,494,496,495,494,492,485,491,492,496,495,490,491,500,562,579,570,570,555,571,586,572,573,569,568,558,569,560,572,576,549,586,553,492,510,481,498,511,485,502,494,501,502,457,460,464,457,461,460,473,456,463,469,464,450,463,454,558,551,554,570,562,553,473,473,482,469,480,473,474,479,464,478,548,547,549,547,543,533,543,552,560,541,549,555,557,552,542,547,547,543,544,547,500,505,470,491,512,501,501,502,504,500,490,480,481,469,480,479,475,479,474,481,483,482,481,485,492,493,487,494,497,491,488,492,493,495,496,470,456,466,460,468,468,459,469,464,461,462,466,474,470,463,440,447,434,431,440,420,443,519,522,514,512,523,523,518,524,515,517,528,519,517,522,518,521,525,525,547,549,548,536,544,546,541,560,555,551,539,561,561,549,565,558,556,494,501,486,501,499,488,508,482,490,501,512,495,498,490,491,492,500,463,463,471,475,468,465,461,479,453,478,466,462,461,456,460,553,544,564,561,493,491,486,489,468,467,484,476,483,485,466,470,532,534,553,542,541,545,542,540,545,557,548,539,548,542,522,515,520,512,510,517,519,507,508,512,510,502,510,506,506,505,506,508,508,504,508,525,518,523,520,518,518,531,522,528,519,532,527,530,524,529,521,526,534,520,523,521,524,528,557,571,561,559,577,561,542,538,538,542,540,531,538,537,539,534,549,534,531,530,532,505,504,539,536,533,529,532,529,539,539,536,545,551,555,533,525,524,533,559,565,561,492,482,498,498,489,491,490,497,483,502,490,495,497,470,483,481,475,480,489,474,479,483,477,470,483,478,480,473,487,476,486,478,480,475,484,599,591,598,592,598,596,595,580,593,591,597,587,596,543,535,542,550,540,545,534,541,546,543,521,533,539,552,537,532,502,506,510,506,507,506,513,511,513,500,501,512,506,506,516,497,508,510,506,512,509,505,508,553,531,545,524,563,554,562,546,570,558,537,562,552,563,518,507,508,522,520,519,506,521,568,559,559,496,501,493,499,498,506,496,501,491,488,492,504,496,500,429,439,437,438,431,448,437,448,443,437,454,457,447,514,520,513,498,514,509,518,515,512,515,512,505,529,529,516,520,531,531,561,571,555,575,568,555,552,548,535,550,544,552,544,555,545,485,487,497,510,510,500,498,507,504,515,513,499,503,508,511,544,556,552,552,549,553,554,555,551,544,550,549,546,546,551,542,540,540,543,538,535,536,536,540,527,523,517,536,549,545,550,549,582,568,566,491,509,496,497,510,504,496,500,500,493,489,486,490,495,491,502,495,568,558,503,490,478,496,513,491,497,502,490,457,464,457,464,467,461,459,456,462,461,463,470,463,453,464,457,451,562,560,560,565,558,558,548,570,558,561,472,469,471,482,490,473,477,466,464,472,472,476,489,475,552,537,542,540,536,541,558,555,557,549,551,544,553,555,554,499,484,492,494,488,500,493,440,440,444,449,452,445,441,430,443,443,445,447,446,440,540,530,535,541,545,536,536,545,544,523,528,533,544,532,546,533,526,521,517,522,525,517,518,517,514,522,519,522,568,564,572,561,561,562,556,556,569,544,551,548,555,543,547,549,553,548,547,491,491,499,493,498,503,506,497,499,496,492,499,493,505,494,503,511,509,504,512,502,509,508,509,557,557,560,566,564,562,565,564,561,565,563,558,562,538,531,537,531,525,538,517,529,498,509,504,499,505,515,505,513,516,508,517,503,560,547,557,541,561,558,554,565,552,546,556,554,561,554,553,549,545,563,541,545,552,533,534,532,531,525,534,536,528,527,530,524,530,530,528,524,535,532,529,553,561,546,565,556,545,557,541,548,551,547,560,564,508,507,507,506,517,506,505,480,470,484,476,489,477,479,483,474,469,480,466,478,483,479,474,469,474,472,470,462,466,470,467,469,469,473,467,474,468,467,568,547,547,564,566,562,557,559,560,489,496,490,495,500,493,482,482,553,555,567,562,568,556,548,563,547,560,492,508,505,492,503,491,501,488,496,499,481,472,466,478,471,471,482,473,478,556,541,548,565,538,552,548,552,512,506,512,516,512,516,505,511,509,504,505,506,505,504,506,511,517,519,524,524,524,524,519,518,530,527,526,530,527,527,511,530,531,525,524,527,521,567,566,565,564,567,570,551,566,571,507,519,494,495,517,509,510,513,514,515,531,523,525,527,528,518,523,519,523,516,516,522,515,524,530,522,523,519,528,542,532,541,536,539,525,541,542,545,555,540,556,494,506,499,498,501,499,500,502,507,496,511,490,489,497,495,455,465,458,459,454,497,502,497,485,490,494,498,495,499,503,498,500,504,508,502,503,503,508,506,510,499,512,511,536,530,535,538,533,537,537,541,534,536,542,536,538,543,538,538,542,545,561,561,561,568,579,567,568,571,571,562,561,571,530,525,531,522,524,532,526,528,530,556,564,559,570,558,530,535,532,530,533,531,528,531,533,535,533,526,528,536,551,533,540,532,541,534,535,529,550,536,507,552,561,548,534,519,528,521,528,523,530,528,523,528,520,533,521,519,525,522,510,521,526,514,511,515,563,561,564,558,576,556,566,556,561,564,566,565,556,569,572,555,563,565,545,557,539,543,549,547,542,545,538,544,539,548,538,547,492,492,506,505,516,509,517,493,503,555,557,545,562,555,551,548,556,551,558,543,557,546,569,549,501,491,494,478,502,502,498,495,499,501,505,500,507,506,499,500,500,490,501,544,564,551,562,572,575,544,555,551,556,554,554,558,549,565,557,484,489,488,482,472,476,514,519,532,527,523,524,521,519,523,514,525,523,535,534,539,531,537,539,534,536,534,527,526,527,530,546,546,547,544,542,538,553,554,550,547,552,535,541,554,550,537,491,537,563,480,511,494,490,490,481,491,494,493,488,498,439,431,448,439,454,431,436,438,430,438,443,433,447,431,449,490,484,481,481,470,486,486,488,490,561,556,543,542,537,539,543,582,573,577,572,581,587,586,575,576,585,587,580,519,536,527,532,518,512,514,512,516,514,514,507,518,517,516,513,506,509,502,506,503,508,508,510,512,502,508,501,499,496,493,504,490,500,500,494,476,481,476,482,477,479,480,472,485,475,469,467,462,463,467,463,591,585,579,570,591,589,600,580,582,577,581,533,528,529,530,528,531,531,518,527,534,529,527,527,532,528,520,523,521,562,559,557,562,567,563,559,574,565,523,524,519,518,518,524,519,525,519,522,525,527,529,528,525,527,548,545,554,549,552,545,545,577,563,579,556,564,566,566,573,574,580,513,505,481,460,461,463,472,466,474,530,525,545,532,540,540,550,539,538,536,546,542,539,554,548,542,541,547,551,548,479,496,480,474,452,442,435,446,436,446,459,447,445,452,457,442,442,450,435,453,541,545,548,560,525,522,526,522,530,533,521,535,522,519,507,515,513,498,504,502,500,503,477,471,486,481,485,478,477,477,512,521,515,515,508,563,578,570,568,563,576,577,533,519,520,531,517,500,514,514,522,513,481,476,475,474,472,480,479,484,493,484,577,581,577,564,554,577,503,504,497,495,492,493,499,499,508,493,509,489,497,545,548,544,561,562,546,565,562,562,574,558,543,555,548,577,561,494,483,492,499,502,494,492,485,496,584,581,594,580,591,579,579,586,593,597,543,543,489,501,497,492,493,493,490,466,474,463,467,470,470,462,463,463,465,463,460,461,460,469,525,528,535,532,534,534,526,536,535,533,542,538,535,534,536,536,530,542,530,532,536,537,532,539,542,569,567,578,582,563,571,573,545,542,542,552,546,538,546,550,557,555,542,493,502,496,498,500,502,505,510,498,497,511,493,501,494,499,509,505,507,509,510,498,541,545,541,549,531,535,537,536,537,566,575,553,546,548,553,544,552,555,548,550,545,547,481,495,494,497,493,479,492,497,489,498,491,485,485,485,487,494,491,578,563,572,567,575,573,510,491,505,498,503,489,503,450,436,433,435,440,436,426,442,437,440,446,439,448,526,522,517,524,525,521,530,518,534,547,549,550,552,543,546,555,540,542,544,548,549,557,550,562,566,553,556,559,557,558,559,566,556,568,515,491,512,500,498,514,503,508,514,513,528,522,521,521,520,519,513,526,517,526,519,513,512,560,566,561,559,558,553,565,550,554,500,502,494,502,501,490,503,497,498,502,464,473,468,469,463,469,466,470,476,467,462,463,500,488,489,500,503,499,532,529,518,522,530,527,528,532,524,534,527,523,525,523,530,524,526,525,529,524,525,529,529,529,558,552,550,556,551,559,548,555,548,552,549,558,550,556,549,505,498,500,500,510,507,491,513,515,510,498,504,515,502,502,460,454,461,465,470,465,463,475,463,476,470,459,473,471,480,460,466,471,465,449,452,570,548,552,562,470,473,459,463,463,473,526,539,534,537,531,576,566,561,561,553,566,576,545,566,570,557,558,501,513,495,505,517,494,508,503,510,519,505,518,513,513,503,506,543,547,540,541,551,545,549,558,540,543,541,548,538,539,541,553,547,547,553,544,550,553,544,558,517,520,516,518,543,535,542,539,535,540,539,540,538,533,551,557,556,558,569,555,564,558,573,550,565,512,490,505,498,485,495,501,504,506,510,494,501,510,501,494,491,497,482,456,454,466,462,470,467,458,462,460,465,464,445,440,450,451,451,451,459,461,589,584,598,570,585,591,587,580,577,579,586,588,567,534,534,532,541,544,538,545,533,539,545,537,534,563,563,565,549,571,564,560,567,572,574,571,557,549,505,501,491,516,501,508,511,493,521,514,558,556,574,554,569,569,578,565,571,534,531,539,537,529,527,530,519,510,507,505,505,506,509,506,511,498,519,506,504,502,512,504,504,504,501,500,505,495,502,497,502,482,473,492,480,486,487,478,478,485,487,447,447,449,435,451,450,437,435,439,448,453,526,519,522,518,520,529,529,530,524,526,527,527,537,534,527,540,527,566,564,564,562,521,523,521,521,540,554,552,553,570,541,564,550,519,515,514,516,518,514,514,516,512,516,522,512,513,516,508,538,542,536,540,532,537,544,539,544,551,537,506,501,502,514,496,509,513,493,499,497,522,531,528,520,537,533,533,529,530,533,531,528,533,525,533,520,529,536,533,523,571,557,573,573,559,555,552,550,553,551,542,552,551,543,550,547,548,548,551,545,499,505,493,491,491,507,503,501,492,523,520,513,512,519,518,512,515,512,519,506,516,514,560,553,564,565,573,561,562,552,558,566,562,554,567,572,555,570,571,561,498,469,464,456,470,455,473,464,460,454,454,542,544,538,530,536,545,537,540,533,536,537,537,539,543,541,537,543,536,540,545,544,542,538,546,544,548,548,536,534,503,510,499,501,494,507,485,500,504,488,492,494,501,497,496,490,493,502,496,499,509,534,553,540,524,535,537,539,544,550,535,510,503,508,504,521,480,482,485,477,484,483,483,488,477,489,478,483,482,482,488,472,482,475,474,478,477,479,482,478,480,481,479,480,482,479,447,456,445,455,501,543,536,548,537,542,487,478,528,544,549,536,541,544,538,546,557,558,542,550,506,503,516,506,507,507,507,507,508,499,505,506,502,504,509,513,535,527,524,535,536,522,530,545,549,547,541,552,546,536,542,549,565,556,544,541,482,480,493,474,479,469,476,476,486,488,496,499,497,490,505,502,502,495,506,534,545,539,542,547,536,538,546,540,547,531,534,537,545,545,536,514,519,517,513,525,523,531,538,544,536,543,530,539,540,536,537,535,545,566,556,564,550,552,566,560,557,546,553,557,530,525,519,523,522,540,536,542,539,540,536,538,543,537,531,539,541,551,540,552,564,538,546,550,564,554,558,561,546,564,480,482,483,476,468,469,465,473,468,476,472,465,465,472,559,557,565,553,559,562,571,559,562,566,551,568,559,569,567,576,516,505,512,520,516,511,516,513,498,513,512,531,520,528,528,525,528,528,524,528,525,522,519,547,547,549,538,547,551,502,490,490,495,496,590,569,573,547,534,552,537,540,541,543,543,540,542,514,522,518,521,522,520,523,515,523,519,524,519,527,475,482,483,484,478,486,555,547,563,557,545,559,552,552,546,562,470,477,473,464,477,471,465,473,472,481,462,460,458,447,454,470,472,594,589,583,594,592,590,543,548,544,549,543,549,549,552,533,531,535,530,538,531,527,532,524,525,533,534,530,526,529,541,558,561,507,500,459,454,442,454,459,508,498,500,503,496,507,493,503,506,507,540,542,541,521,509,511,507,510,548,551,557,557,552,547,558,544,536,552,546,546,548,548,495,514,500,504,507,505,497,506,498,509,498,501,503,507,508,510,489,521,484,487,484,478,483,478,483,481,474,481,479,458,444,454,453,450,451,453,438,445,439,445,445,442,451,448,439,445,444,451,546,541,545,542,545,547,540,536,537,548,548,546,573,570,577,558,569,587,571,572,574,563,572,578,565,566,570,575,575,505,502,513,561,552,557,548,553,561,550,546,542,549,551,543,471,476,486,488,477,479,478,481,478,489,486,492,506,500,502,496,492,510,507,499,494,533,532,538,536,535,538,535,537,536,538,542,480,490,479,490,481,481,482,494,474,470,460,500,483,473,480,471,547,551,553,540,560,544,537,559,538,556,551,551,557,545,549,540,548,547,542,564,556,548,561,556,547,550,550,552,550,544,554,542,552,548,527,526,523,531,525,529,522,527,528,527,528,523,533,542,526,532,542,534,534,523,521,526,523,520,531,524,517,522,524,522,552,552,554,551,556,564,529,533,525,532,541,507,511,498,563,480,479,472,472,468,472,484,473,481,454,477,485,529,529,520,527,534,535,575,571,554,561,573,560,498,500,496,505,506,515,529,532,534,534,539,524,525,538,535,534,527,535,520,519,523,524,538,536,538,533,536,541,550,552,556,544,552,555,542,547,554,550,552,547,549,553,552,555,549,496,513,482,488,478,492,483,494,466,468,474,453,465,464,461,466,465,460,474,472,465,475,549,565,540,548,554,555,544,494,488,483,480,465,462,461,464,464,457,462,459,469,457,551,548,550,565,492,510,497,485,487,495,492,498,494,494,482,575,572,587,564,549,553,535,536,539,543,559,545,492,489,480,487,481,480,462,464,470,469,468,464,463,561,571,565,565,561,568,562,571,562,576,567,562,561,573,566,474,472,491,544,542,542,543,546,539,542,534,555,534,538,541,550,550,545,528,517,517,509,514,514,517,505,519,511,552,564,556,586,580,577,569,574,558,562,552,562,564,582,585,504,518,518,516,511,518,504,511,518,518,519,515,514,515,549,539,542,541,534,538,550,540,544,546,539,538,539,542,539,543,547,538,521,517,517,526,522,523,519,520,521,564,562,554,549,557,552,559,548,552,550,544,550,547,545,550,555,548,550,542,515,518,509,501,482,490,487,487,483,481,485,448,453,451,467,473,454,450,446,443,443,455,454,448,509,518,515,516,518,507,519,510,515,512,509,566,564,560,562,526,535,514,519,479,476,471,482,483,485,485,485,482,481,477,479,479,482,479,483,492,483,501,567,580,568,565,556,563,563,562,523,515,517,513,519,517,519,518,523,507,508,499,504,499,504,501,499,511,504,499,541,566,581,559,569,570,528,537,534,548,542,541,540,532,557,558,569,504,494,493,499,500,497,514,500,501,507,506,506,495,502,507,490,498,513,509,505,507,495,506,514,506,499,510,513,568,569,550,560,572,558,561,575,549,550,544,545,551,553,548,558,545,549,545,551,550,546,546,549,543,547,541,501,511,509,513,496,514,511,506,459,464,468,462,454,465,463,470,465,463,462,471,452,463,463,471,450,442,441,434,442,433,437,530,533,526,526,517,535,518,531,526,525,537,543,543,539,505,515,508,505,501,507,512,496,501,499,506,507,494,496,524,525,525,527,524,547,561,581,563,559,552,564,565,543,480,480,467,481,473,473,463,468,464,475,535,536,539,524,529,543,527,538,571,566,560,566,568,564,561,559,569,577,580,564,572,510,516,501,498,492,503,509,530,530,529,529,531,541,528,530,529,532,538,536,542,540,533,533,534,548,551,548,540,543,549,546,543,547,502,504,509,498,505,498,501,515,498,589,599,589,584,592,596,601,602,591,602,586,592,611,588,557,554,548,559,546,551,547,552,548,549,548,558,508,503,523,518,500,516,511,516,469,473,481,471,482,475,481,465,482,474,470,470,477,474,485,438,433,439,441,435,446,445,436,444,444,436,440,446,440,461,466,466,469,461,472,469,470,570,576,569,561,590,579,582,581,571,573,578,590,560,572,600,578,474,488,461,498,481,480,481,486,485,486,569,538,542,550,546,543,557,541,552,559,557,554,559,560,545,547,549,551,555,558,548,499,486,494,508,510,499,501,494,510,494,499,483,504,507,511,508,507,523,526,526,531,532,525,537,529,533,534,563,555,540,522,522,517,525,519,522,520,520,518,518,515,521,520,522,516,520,528,522,523,534,539,539,526,535,531,534,528,527,523,528,526,524,531,530,526,527,525,522,528,529,526,527,528,526,526,530,528,539,559,561,562,556,550,544,560,552,547,555,553,527,498,509,520,510,518,513,503,522,511,503,510,516,514,481,483,484,476,486,477,487,485,485,478,479,484,477,483,478,480,487,479,481,482,483,475,476,477,478,476,475,470,477,479,468,470,473,477,469,474,464,459,460,452,465,468,455,453,466,461,460,585,589,567,588,590,575,568,568,539,539,538,546,530,532,537,530,535,535,538,530,538,535,537,538,524,531,522,526,525,529,542,532,526,524,537,568,571,562,566,557,564,570,561,564,576,560,560,566,564,566,570,489,487,483,466,497,489,469,476,535,541,541,534,535,535,546,547,542,542,554,552,546,544,540,542,502,508,510,504,512,513,502,510,503,515,507,504,535,531,538,536,536,526,537,528,522,539,537,532,530,531,540,536,523,539,528,530,576,562,562,564,556,550,492,551,547,553,556,542,549,544,543,549,542,553,547,544,575,571,567,565,578,582,575,578,535,523,522,521,540,537,522,529,523,521,524,530,524,538,526,530,496,501,488,491,495,492,564,543,561,563,549,530,528,529,524,552,543,546,543,496,498,503,502,505,498,483,508,503,502,500,509,489,455,460,459,458,458,448,452,453,450,445,472,478,590,590,594,598,599,598,582,545,556,551,554,547,552,551,553,543,551,556,508,492,494,494,501,494,490,496,504,495,502,497,500,507,508,505,508,495,498,503,504,513,518,513,515,507,518,512,512,513,513,542,541,552,555,542,544,539,542,542,547,545,552,540,546,540,553,549,508,507,516,511,516,512,510,510,514,509,510,518,525,521,521,530,526,527,519,522,517,520,581,568,578,569,586,576,581,575,539,526,537,526,532,522,531,537,518,525,538,527,525,528,524,542,532,534,532,530,520,569,565,579,573,560,568,578,562,565,556,560,569,585,567,569,564,524,520,518,522,511,549,553,548,545,550,545,550,549,549,544,554,547,531,541,543,538,551,549,546,539,549,543,495,504,492,497,494,493,488,492,494,495,494,487,520,511,516,530,513,521,535,530,529,522,522,532,476,482,472,472,465,484,487,486,562,573,581,580,567,553,577,566,575,572,580,566,561,582,480,479,465,479,478,480,473,467,471,465,474,471,518,526,532,525,530,521,532,525,524,522,539,556,472,475,489,481,469,488,495,485,482,483,483,476,476,484,475,541,539,554,547,543,542,544,552,543,578,572,571,560,577,568,570,570,528,518,532,533,537,529,522,528,528,564,562,566,563,555,564,553,548,543,552,556,525,538,531,536,538,551,555,556,550,497,503,504,504,500,498,504,505,508,504,476,461,463,443,433,433,433,424,439,431,427,431,435,435,442,434,427,445,447,437,438,528,536,530,528,560,563,560,568,568,563,570,567,537,536,530,535,536,534,536,544,543,541,538,544,539,568,567,564,565,576,564,555,577,572,573,565,582,573,574,572,555,567,560,494,490,497,495,519,497,499,515,513,504,496,494,496,488,498,488,570,570,573,571,583,495,484,485,476,483,479,524,528,518,515,524,514,523,522,520,519,526,519,523,517,518,517,519,517,514,520,512,511,514,518,517,534,525,529,531,535,529,531,532,526,529,569,565,570,557,553,557,548,552,555,548,565,515,511,483,476,482,484,488,487,482,481,481,487,484,479,470,491,512,511,507,544,528,526,526,522,526,530,519,524,533,541,521,532,526,530,533,535,537,530,526,530,483,475,480,480,471,477,476,475,551,555,545,560,559,559,548,552,548,523,519,516,522,512,520,519,522,513,524,517,547,543,558,541,543,540,549,552,541,547,551,544,541,490,495,501,500,503,496,507,520,491,488,467,471,465,467,467,486,478,494,483,477,483,488,528,524,517,520,547,549,561,545,548,556,550,553,574,480,485,477,480,468,489,480,476,476,480,477,479,524,523,521,522,522,521,518,522,523,528,532,521,521,543,549,543,555,540,552,567,546,554,548,563,493,500,505,491,507,501,500,504,490,498,505,493,496,494,491,506,506,491,508,495,509,513,502,498,493,565,588,573,583,568,572,571,572,573,509,494,489,489,479,493,484,498,492,480,476,473,476,473,466,470,472,473,464,461,473,469,473,464,474,475,470,456,454,457,449,458,458,455,455,445,453,453,455,460,455,446,474,476,486,477,479,480,479,481,479,477,478,491,478,482,482,479,483,480,530,518,528,532,535,525,529,535,539,559,548,554,560,557,562,561,561,560,559,555,541,553,546,561,552,494,502,495,475,453,462,456,456,510,503,505,509,505,513,504,508,511,510,510,515,514,540,543,539,547,541,536,549,539,548,536,542,537,548,534,535,514,506,504,504,501,504,494,503,551,562,547,568,508,502,498,495,584,594,595,574,596,582,585,576,589,601,571,597,575,584,544,550,555,541,550,489,512,512,496,499,500,498,496,515,508,514,515,515,503,524,514,521,519,510,509,515,555,554,555,550,554,565,562,560,560,561,500,496,496,496,484,493,508,494,499,504,499,503,504,500,496,496,497,500,502,501,534,536,521,531,525,531,529,518,522,524,590,590,576,586,583,592,578,579,577,583,587,582,574,586,585,526,540,540,537,528,527,534,520,510,512,504,509,517,506,521,549,555,563,572,551,544,563,541,541,559,569,560,510,507,506,516,528,504,518,514,515,516,509,512,515,513,516,515,555,557,560,556,502,503,495,513,489,498,507,491,503,511,492,497,505,500,468,472,457,463,462,460,466,461,466,472,465,470,466,461,462,463,453,471,462,461,460,461,463,457,467,447,463,469,554,561,558,568,571,552,538,563,554,565,544,563,558,555,572,552,542,497,504,498,485,482,487,506,498,508,510,498,492,501,498,489,488,543,547,538,562,547,534,485,470,476,474,496,498,499,506,502,499,503,541,545,543,537,528,511,511,507,501,510,508,498,498,502,508,518,500,546,562,567,544,538,552,549,561,573,554,547,556,518,522,522,518,522,519,549,548,552,557,554,532,529,539,536,529,530,537,474,474,495,479,487,478,481,481,465,476,551,553,551,540,553,557,541,543,545,556,543,559,550,556,492,489,488,487,498,496,504,500,495,515,489,484,485,469,463,451,457,448,451,568,543,551,541,537,549,539,541,543,541,528,517,515,522,519,524,516,541,506,513,492,501,503,501,499,497,492,499,511,504,519,459,463,464,467,474,463,464,461,464,465,467,467,464,461,471,466,462,477,473,475,466,467,471,470,471,464,472,487,469,470,453,469,473,476,476,537,538,543,552,549,545,550,505,503,506,502,514,507,502,501,507,514,513,508,510,499,506,511,556,508,503,506,501,499,538,566,562,558,524,521,520,512,517,517,514,537,531,524,523,527,522,522,532,531,525,507,499,507,505,504,502,501,552,545,539,546,547,536,546,537,542,536,550,548,558,542,543,543,568,562,557,556,556,568,555,571,494,500,489,505,507,493,495,504,510,499,454,454,447,445,454,449,445,447,445,457,441,454,558,561,555,554,539,536,554,543,551,540,544,543,542,549,543,534,542,541,546,504,514,506,496,499,499,503,494,502,492,598,594,598,609,543,565,552,544,548,541,552,550,551,561,555,474,499,498,495,488,493,488,481,495,496,455,451,457,460,464,455,464,459,455,488,492,493,490,486,487,521,518,529,523,523,513,516,586,572,586,585,581,589,586,576,577,585,583,573,589,596,592,546,555,546,548,546,553,543,551,551,555,497,497,487,495,495,453,463,454,465,493,490,491,502,491,493,487,488,484,550,550,551,550,547,566,575,566,569,573,576,573,575,574,568,570,569,569,503,495,505,495,481,501,504,504,469,463,466,473,466,464,473,463,466,468,454,460,466,450,468,454,468,544,544,555,551,544,567,569,564,567,572,556,569,567,514,528,511,519,518,511,509,511,517,511,506,517,514,520,586,573,586,551,550,541,535,543,532,540,541,534,548,538,539,538,536,532,517,538,597,583,596,600,597,543,543,536,550,554,536,537,541,543,545,540,536,492,495,490,481,491,495,492,501,493,487,487,493,493,487,496,498,503,495,496,491,545,540,541,531,541,537,541,537,537,538,533,534,480,493,492,487,490,501,492,486,462,466,454,462,467,455,464,464,466,459,465,461,460,460,461,492,488,491,483,488,528,526,525,514,530,520,518,518,527,530,519,525,516,522,521,526,523,534,533,537,536,533,527,524,528,531,531,523,522,544,522,531,495,494,506,504,491,490,493,557,554,545,557,492,489,502,485,486,500,504,496,497,499,498,486,509,499,500,490,488,494,500,465,463,551,550,567,550,555,555,551,555,550,556,566,550,556,559,546,557,559,570,506,504,501,498,500,545,541,550,546,548,547,536,521,496,508,492,492,506,509,499,503,504,493,500,494,502,499,502,489,498,537,536,539,559,504,497,494,506,486,492,503,491,488,465,467,470,467,477,461,459,470,483,453,466,458,472,465,453,592,590,596,581,585,582,608,593,550,551,552,555,543,564,549,494,482,483,476,482,474,485,468,479,487,487,482,471,477,480,475,481,480,599,598,588,593,584,587,598,584,596,598,600,589,598,612,582,586,611,560,553,554,562,552,558,553,548,553,521,518,531,514,522,522,527,523,528,515,524,518,520,491,502,494,594,591,531,522,528,537,527,522,542,531,538,525,533,546,536,537,538,536,538,530,531,490,468,478,480,473,479,476,470,481,475,483,474,475,484,470,481,472,541,536,540,529,548,539,547,540,542,541,540,531,551,546,560,559,546,558,543,555,553,546,540,551,511,507,513,501,509,517,514,507,514,535,543,537,537,539,548,548,542,546,540,543,546,538,533,546,540,546,547,543,548,551,543,534,530,527,524,525,536,525,527,526,529,569,568,529,520,532,527,526,525,534,531,529,530,525,529,527,538,526,544,540,533,537,538,543,533,540,518,515,524,517,519,517,519,517,520,523,515,523,518,544,537,547,539,543,534,543,547,545,539,542,563,552,570,504,501,519,501,508,520,510,556,570,558,574,565,570,557,543,577,589,566,569,560,502,499,493,493,479,497,575,584,583,573,582,582,588,566,567,589,574,582,574,581,573,537,532,537,542,535,528,517,510,514,517,510,520,516,512,504,513,519,507,518,519,516,517,521,517,508,507,506,504,517,511,507,541,552,561,554,551,555,553,545,553,543,545,558,514,500,490,501,511,494,504,473,502,479,501,507,488,504,490,488,460,549,558,545,542,556,539,537,540,539,540,547,541,555,519,520,509,543,545,549,554,550,515,497,519,500,504,515,511,506,522,504,506,512,509,509,482,482,492,485,490,482,478,481,492,495,488,495,494,486,487,500,488,493,498,490,503,484,483,480,479,476,480,476,486,459,462,456,461,541,537,538,559,547,547,541,555,553,551,547,547,544,548,570,587,563,568,568,583,564,575,570,571,537,538,526,474,483,492,487,485,484,484,475,484,486,487,456,432,437,441,442,440,439,447,446,449,450,446,440,446,451,443,440,437,445,442,443,446,445,454,463,534,547,535,547,549,536,530,528,541,544,537,539,548,541,543,507,504,501,502,514,499,510,505,503,504,507,504,545,544,538,548,549,512,508,523,520,523,520,520,514,525,520,517,527,529,522,527,583,590,583,594,577,586,573,584,536,548,578,582,551,577,501,497,513,502,496,502,505,488,500,503,507,501,496,499,501,499,500,564,568,583,569,574,580,573,505,500,509,507,492,507,507,503,497,500,501,502,506,504,496,506,521,526,525,528,529,536,522,526,529,520,534,577,579,597,586,592,588,581,577,589,587,611,537,543,542,540,539,531,561,576,569,490,487,486,485,502,488,481,494,504,474,550,541,548,553,543,551,552,538,537,549,551,545,540,547,546,544,549,541,514,510,514,517,516,509,512,511,511,555,555,550,546,551,562,550,551,552,521,524,527,531,530,524,535,534,500,502,551,550,535,561,544,548,571,533,573,570,555,548,554,548,525,525,518,523,522,519,521,517,523,525,516,557,554,550,541,543,556,564,552,548,551,551,544,548,551,552,550,551,539,538,552,546,543,541,544,549,551,546,552,550,549,533,541,531,540,540,544,544,541,547,538,533,539,531,537,539,529,537,524,539,536,536,565,563,570,561,564,565,524,478,480,469,479,482,468,468,540,533,540,538,536,527,537,520,525,527,528,523,526,531,529,541,538,542,551,542,555,548,546,548,546,543,543,526,522,523,518,526,520,535,541,545,533,543,539,540,566,490,500,497,484,495,495,501,496,574,558,559,554,557,559,563,554,555,561,552,556,563,551,562,560,565,558,570,491,508,493,496,486,500,487,503,505,498,460,466,465,472,461,460,467,478,466,457,471,457,472,483,466,457,473,470,464,467,460,460,560,570,568,563,562,567,578,561,578,565,500,487,485,469,480,488,476,535,539,535,541,542,547,543,546,554,535,551,547,541,542,547,543,545,516,516,519,517,515,521,521,528,522,526,528,560,553,551,553,562,567,549,548,561,555,556,557,541,541,536,533,537,538,528,536,534,536,526,530,529,526,531,535,528,532,530,531,527,526,528,529,533,533,535,532,528,535,525,534,530,548,552,547,564,547,551,549,555,555,564,560,558,545,554,560,521,517,514,523,527,516,489,481,486,481,492,481,483,489,483,492,485,479,482,490,483,473,480,480,467,471,459,461,461,553,555,552,547,541,575,572,559,564,561,561,571,569,532,535,520,529,531,565,557,565,561,549,558,555,529,526,532,526,555,560,543,542,478,492,488,484,487,482,495,483,462,458,464,469,467,463,448,461,468,465,470,467,468,468,461,565,553,556,572,576,558,550,572,486,487,491,490,490,487,489,505,498,498,497,482,589,584,577,583,602,590,542,535,531,537,538,540,562,571,547,564,556,556,546,556,513,517,510,513,512,510,526,520,516,505,548,549,556,557,565,551,560,547,539,576,551,478,485,489,475,481,468,484,468,491,490,483,484,501,500,477,503,488,491,488,493,488,565,570,563,562,559,564,568,565,569,557,559,565,551,563,552,551,548,555,563,552,519,519,524,506,513,507,522,490,496,490,496,495,497,497,491,490,496,491,493,493,488,491,489,498,500,499,458,465,458,464,471,461,454,503,506,500,499,508,510,495,539,537,538,532,534,499,500,511,485,511,499,504,496,501,494,506,498,504,504,497,596,588,597,596,546,555,563,542,545,544,547,549,556,555,548,490,491,478,487,496,493,488,492,488,477,485,476,478,479,468,481,482,476,477,487,473,563,553,545,544,546,568,554,508,512,524,504,505,499,509,507,517,510,463,460,455,548,555,550,549,550,553,548,550,540,550,497,542,548,543,544,540,529,531,525,525,523,527,557,569,561,558,569,549,561,556,565,559,484,483,490,498,495,502,482,491,482,493,484,481,487,489,478,482,492,483,484,485,581,550,556,571,563,582,578,497,499,503,538,560,539,545,527,523,522,524,515,521,519,526,537,531,529,544,536,543,526,527,548,530,471,468,461,473,471,485,474,480,473,462,482,474,465,482,520,531,532,528,530,528,530,536,527,533,536,521,533,527,537,542,537,539,550,506,495,494,495,497,486,494,479,484,498,489,490,495,486,491,501,489,497,499,504,490,504,492,497,552,545,544,572,550,557,555,560,486,488,473,485,480,476,452,467,486,469,460,545,544,555,551,543,550,535,543,534,536,545,540,554,537,490,445,444,453,451,453,437,452,452,454,550,547,558,543,539,537,550,572,563,560,568,577,578,572,571,579,572,569,568,573,538,552,539,543,540,543,546,548,553,544,506,498,499,499,497,493,498,507,498,509,540,538,544,545,542,543,544,546,548,547,540,547,534,545,569,551,561,569,555,560,555,493,461,452,456,456,467,488,482,485,485,483,477,475,476,471,485,478,484,479,485,474,482,557,568,575,551,557,568,576,564,578,580,519,523,524,524,526,528,524,527,521,521,522,538,530,536,534,540,537,536,532,541,500,504,507,507,490,495,498,493,505,511,510,564,561,553,548,549,562,552,563,546,486,491,494,490,484,488,485,505,488,492,484,491,488,499,481,470,470,466,481,487,479,484,479,477,481,484,485,478,489,593,599,596,608,592,592,597,515,515,509,511,512,536,531,531,538,529,533,533,523,526,524,519,519,516,516,513,515,519,521,525,514,521,522,532,529,531,549,545,536,547,529,548,555,546,553,552,466,494,458,475,476,474,475,463,464,476,466,472,474,466,469,530,529,535,543,535,536,536,540,543,526,538,531,540,540,545,540,541,529,521,545,547,486,485,497,487,485,500,493,494,492,487,498,484,505,549,561,569,564,551,572,559,550,582,506,506,511,502,503,520,509,522,509,521,544,569,553,554,560,565,559,564,564,564,571,578,548,499,504,497,515,502,493,506,513,507,511,502,511,493,494,504,495,496,501,501,496,502,498,506,504,546,550,553,542,534,542,539,539,539,556,543,538,478,482,482,487,469,495,484,478,487,488,476,485,484,485,492,479,477,439,443,442,449,434,444,442,449,448,444,437,448,435,522,526,517,519,530,529,531,520,534,528,524,523,523,530,522,516,518,510,522,523,510,518,523,517,520,523,515,524,526,519,517,517,534,536,528,535,538,535,533,527,545,528,536,536,534,533,528,533,536,532,531,530,544,547,533,544,554,553,538,547,544,500,503,499,486,487,487,489,485,495,538,551,538,536,549,536,558,558,546,548,545,534,524,516,532,524,524,529,523,526,516,518,526,518,540,530,544,537,541,543,540,530,536,531,527,531,539,537,533,527,558,563,564,566,563,565,550,562,563,552,565,547,482,498,504,470,465,468,452,469,580,575,563,587,571,565,578,567,568,566,560,512,523,529,523,513,524,507,517,480,482,483,481,470,485,477,477,481,482,476,476,479,499,508,513,507,501,514,501,499,500,499,558,564,562,551,556,562,518,513,517,521,529,518,530,525,469,474,480,471,472,481,483,474,466,469,465,478,477,562,549,552,544,565,501,509,501,508,500,500,504,504,508,497,499,502,507,498,528,530,517,529,524,527,522,532,529,526,551,544,538,545,542,538,535,540,539,547,550,546,546,545,537,551,547,508,511,510,501,500,488,505,503,490,490,501,501,491,502,498,498,516,508,505,542,537,543,539,540,540,540,546,529,533,538,544,546,542,537,538,539,554,557,565,559,561,554,560,517,512,505,512,511,513,504,516,507,513,520,512,463,461,476,471,467,477,452,454,455,457,448,461,448,457,456,452,447,452,457,456,458,487,494,491,496,493,500,488,495,499,486,578,560,558,578,570,506,509,514,501,503,502,505,505,498,503,506,506,492,488,488,494,490,491,497,498,494,491,493,492,535,530,519,527,535,530,533,525,532,565,556,569,568,563,549,560,554,489,472,486,483,482,479,474,487,550,527,538,543,543,544,541,551,560,541,559,551,545,540,559,546,550,552,500,495,482,470,455,463,464,451,469,452,462,451,470,508,522,516,517,510,511,518,514,517,517,564,563,570,574,561,563,568,526,519,512,522,521,518,518,515,518,511,526,515,530,530,514,485,488,497,495,497,495,498,493,494,487,457,461,463,465,460,455,460,466,462,463,461,450,518,503,504,494,504,503,504,511,560,577,561,566,563,562,565,556,565,567,567,562,566,531,521,512,511,504,511,507,511,514,513,512,516,515,506,505,504,500,499,501,502,517,497,504,498,499,499,505,483,486,487,479,490,487,487,481,502,507,508,500,503,500,510,505,499,542,536,541,541,543,539,549,537,539,537,542,537,541,545,519,519,519,559,552,547,549,557,559,557,556,549,548,557,545,561,551,555,561,557,547,556,557,550,513,526,514,519,518,507,509,495,482,492,483,488,485,490,493,496,490,483,483,482,486,482,470,484,476,481,480,477,470,443,437,438,448,443,435,445,440,524,528,524,528,520,507,521,526,529,529,532,527,531,534,531,527,530,523,536,546,540,539,542,542,533,535,540,542,545,542,541,540,525,512,516,510,516,512,518,520,512,520,518,504,515,518,513,532,533,521,535,528,528,532,534,536,532,551,570,552,559,552,556,550,562,570,554,516,510,519,512,480,479,479,472,477,477,473,473,479,484,479,477,479,474,478,467,459,450,461,466,584,598,604,602,586,574,581,573,591,593,579,584,589,595,553,562,548,560,558,558,546,564,559,557,556,541,517,518,517,516,508,479,491,482,515,515,509,514,523,507,510,510,518,518,515,512,518,515,561,576,567,570,571,574,570,567,564,523,513,514,509,519,512,527,508,521,480,479,476,480,475,477,473,480,456,463,458,548,533,539,537,534,534,534,545,544,533,538,537,547,538,545,533,546,540,549,553,541,545,546,542,552,545,541,545,531,532,538,560,552,551,540,547,550,547,526,530,528,527,533,527,565,562,562,561,556,529,519,518,529,521,523,518,517,522,528,539,533,525,495,506,499,482,480,476,485,486,516,513,501,504,513,514,510,512,503,503,514,508,507,501,537,540,540,542,539,539,527,524,516,524,522,530,520,524,518,560,553,555,556,555,558,526,531,531,534,530,529,535,529,530,531,536,535,524,518,521,521,525,525,523,527,522,530,533,525,527,524,563,559,565,564,549,561,570,560,563,558,563,562,564,564,564,564,568,568,547,551,556,563,554,547,557,557,560,553,557,550,544,552,499,485,499,497,475,473,473,472,453,456,467,470,452,570,565,566,574,561,566,566,565,561,565,562,568,563,567,574,569,566,570,560,549,564,576,550,528,519,520,519,531,531,521,514,508,514,507,504,513,510,501,502,493,498,499,464,456,460,464,467,457,458,454,455,455,460,462,460,445,465,443,461,450,466,455,448,460,539,537,537,533,531,537,541,536,533,529,531,530,522,523,526,530,529,523,522,534,536,539,532,537,540,539,545,546,554,546,551,549,542,543,478,517,492,498,504,499,491,463,464,467,467,548,557,545,563,544,559,562,553,542,569,563,558,547,504,498,496,496,496,490,498,492,486,493,499,450,428,439,433,445,519,512,521,522,519,522,518,515,518,516,516,515,513,516,510,517,511,515,521,526,522,529,524,521,518,524,525,522,521,519,519,521,512,539,545,553,561,556,549,560,550,552,559,550,558,557,547,556,500,493,490,484,492,467,466,470,470,462,540,526,527,536,540,540,521,510,530,524,514,515,510,513,516,517,516,521,527,533,523,529,522,527,536,528,530,532,534,525,532,526,535,528,531,531,530,536,569,568,563,565,571,540,527,527,537,536,535,537,523,527,531,529,519,526,526,524,535,531,526,564,556,557,562,560,565,552,519,518,518,512,532,524,527,523,527,519,520,514,517,514,481,482,480,483,474,476,490,480,484,490,504,495,488,495,498,581,581,572,581,577,575,587,599,575,578,584,570,560,484,550,552,561,556,547,554,549,558,555,558,560,552,550,545,563,546,559,555,527,521,517,517,528,517,522,524,514,518,557,564,552,562,554,570,560,553,557,548,505,510,506,503,510,502,510,514,510,455,457,449,469,465,476,462,459,465,474,464,447,453,457,461,465,456,580,588,585,585,552,554,550,554,550,542,550,550,552,519,530,528,519,521,530,523,523,530,533,526,500,505,487,495,497,496,495,496,495,496,499,502,597,586,576,593,597,605,599,601,563,567,533,561,553,558,556,565,513,526,525,521,520,528,511,516,518,523,525,507,519,526,503,507,505,498,507,496,501,513,509,480,480,483,481,479,478,486,474,479,476,477,479,483,501,510,509,497,494,509,576,565,571,572,565,562,566,571,565,578,579,571,569,573,567,572,564,555,556,562,512,518,514,521,513,513,506,506,514,514,479,486,492,510,519,505,511,510,505,502,505,505,509,515,513,557,554,561,554,563,561,564,571,561,552,519,519,516,518,527,530,503,523,505,502,516,517,523,507,524,506,498,499,501,498,504,497,501,507,505,502,503,508,505,503,477,485,479,493,478,484,476,478,479,484,483,463,465,458,464,456,464,457,469,445,450,463,457,458,578,582,582,581,583,569,519,527,523,537,531,523,533,530,526,516,467,488,513,528,531,538,547,555,540,549,535,544,548,549,541,550,552,542,556,549,552,558,547,551,564,559,564,494,483,474,486,484,483,495,565,566,549,555,549,549,551,552,559,565,561,558,557,555,558,560,554,562,553,546,548,555,563,562,559,562,508,504,521,511,494,490,502,483,473,479,483,478,480,484,477,488,478,481,484,478,479,475,480,482,484,498,484,494,489,489,490,490,499,501,492,447,452,454,463,466,470,475,476,493,469,473,472,476,467,585,577,583,590,578,586,578,612,532,542,535,537,532,534,535,540,576,556,552,560,522,525,519,520,522,508,502,512,508,510,508,503,508,511,513,515,523,537,532,541,532,533,524,529,530,523,516,517,513,516,516,517,520,513,520,516,531,528,526,530,530,529,535,528,531,526,529,571,567,565,583,569,560,572,567,566,584,565,569,573,550,546,544,549,541,546,540,541,542,541,542,527,544,501,501,487,493,515,560,562,562,576,525,506,494,492,496,499,498,501,506,502,501,495,503,499,500,484,490,496,496,508,475,486,479,479,485,484,485,479,482,476,487,461,466,455,475,461,476,472,480,478,486,463,476,544,542,549,564,554,542,473,476,468,477,469,473,468,480,468,489,499,500,502,494,500,499,503,503,510,503,490,539,538,539,539,541,539,543,540,542,517,515,515,515,519,521,512,524,511,520,514,518,520,518,513,514,508,509,506,506,502,514,504,503,550,542,543,541,541,540,538,541,536,551,544,543,541,544,542,551,545,539,549,544,549,520,516,553,547,557,553,554,510,499,495,509,508,494,498,458,448,454,455,459,450,464,454,482,475,476,473,477,567,562,559,559,513,507,511,514,516,511,517,510,519,527,532,523,530,527,539,540,548,546,550,493,510,509,496,497,508,503,483,490,499,500,496,500,497,490,495,492,497,532,543,536,535,545,538,546,540,546,541,536,562,563,572,570,577,577,569,564,517,521,526,508,517,526,512,519,521,533,533,523,519,529,494,493,489,489,496,496,491,586,574,549,551,570,566,552,515,504,508,514,518,512,517,513,497,506,516,526,518,513,513,485,478,484,479,477,481,487,485,513,509,515,513,523,512,511,512,561,562,562,564,570,559,562,567,490,485,498,498,494,495,495,498,503,491,498,494,500,503,484,498,496,500,493,500,488,486,495,491,502,497,487,492,496,495,553,542,557,577,563,552,571,558,568,565,562,564,558,566,562,556,549,577,515,518,513,514,497,507,519,560,570,559,559,557,559,576,577,568,562,567,562,575,494,506,505,487,504,494,472,474,466,467,466,466,463,468,464,471,468,550,545,530,561,540,547,536,548,555,547,541,475,467,475,467,466,463,478,465,458,438,441,450,438,445,455,549,546,556,552,549,549,544,541,552,549,543,550,550,543,549,549,553,549,554,555,542,539,552,514,507,508,517,509,509,510,511,510,551,541,539,540,544,533,542,540,534,537,539,506,502,502,502,509,504,506,566,553,554,542,548,552,551,547,544,484,490,493,483,464,469,475,474,470,465,458,470,465,473,473,456,475,465,471,546,544,536,545,545,543,471,471,472,471,470,475,480,464,458,484,473,478,486,480,554,572,576,563,579,489,497,483,498,501,491,492,481,489,500,501,484,486,498,550,552,540,550,542,535,556,551,542,548,549,549,547,550,540,546,543,557,545,509,501,505,506,510,497,508,522,518,523,522,518,517,521,527,530,530,525,518,517,528,550,557,559,559,550,553,543,555,539,552,550,510,512,509,519,525,517,513,507,512,510,505,520,505,518,515,510,525,514,513,513,512,501,513,519,535,527,532,530,528,538,534,567,556,563,567,565,554,561,563,572,526,512,515,519,519,515,527,484,490,490,492,488,475,483,474,478,481,487,481,476,478,480,483,481,483,481,476,439,447,439,451,452,453,448,452,450,452,454,456,493,496,484,491,498,494,548,546,541,538,544,543,546,547,535,529,592,588,586,590,592,591,590,586,590,594,596,598,585,589,581,598,539,538,541,532,524,531,529,521,526,535,533,541,545,468,470,477,472,470,473,468,460,475,475,479,472,470,475,528,523,525,520,525,525,528,523,534,535,534,538,534,543,542,541,542,541,549,530,539,538,534,534,542,541,543,543,542,537,535,542,542,536,541,548,540,545,557,544,544,552,543,482,469,485,487,488,478,489,477,501,490,491,485,495,490,533,557,560,534,542,561,538,550,549,560,543,513,514,509,508,515,517,514,511,517,516,515,518,518,538,529,529,533,529,530,528,533,530,560,561,565,569,523,530,525,535,527,526,534,523,520,514,511,512,513,501,502,500,509,497,497,499,496,502,502,490,484,481,482,477,483,482,482,479,483,480,442,449,441,526,528,528,525,542,538,543,542,538,549,544,547,552,543,557,552,556,553,569,551,548,492,502,497,514,498,490,509,517,521,517,513,510,515,517,516,507,511,518,513,517,516,509,507,518,566,535,546,545,562,550,537,548,549,549,547,483,478,490,491,480,491,481,487,491,480,488,486,483,493,481,495,507,495,488,499,494,529,540,526,540,530,534,544,539,533,517,515,505,508,504,505,513,501,519,554,558,553,552,552,556,555,557,544,552,554,548,553,552,554,543,553,549,552,551,546,550,551,552,551,548,542,516,516,519,519,522,513,525,512,518,514,512,532,523,530,534,539,536,533,529,526,532,528,525,535,538,529,537,560,558,571,562,574,562,557,547,559,564,550,563,567,555,559,494,472,483,480,470,473,464,476,480,476,471,457,474,525,524,531,523,520,530,516,517,518,522,520,525,530,529,531,531,528,534,537,540,536,536,544,532,537,549,548,542,532,504,519,510,520,515,503,507,519,548,527,523,534,532,525,527,522,526,530,529,529,525,526,527,528,535,532,526,529,530,531,529,527,522,525,522,517,518,523,524,522,526,525,525,526,529,516,520,523,522,523,555,543,546,540,542,554,542,545,551,552,542,539,545,512,537,529,539,526,534,530,539,536,539,523,541,522,529,538,541,549,544,547,540,512,519,508,523,511,527,517,511,516,512,523,523,515,517,518,511,511,581,577,578,581,579,581,567,534,528,535,534,539,530,533,540,526,535,549,548,527,535,540,526,520,529,525,523,559,560,555,502,509,504,508,516,499,496,504,513,513,511,508,502,497,502,451,451,450,449,450,457,452,460,455,454,459,457,449,456,459,461,449,453,456,479,481,473,474,481,488,480,567,556,579,560,562,561,579,561,511,528,503,511,514,513,511,482,478,477,483,485,477,479,472,492,485,497,497,492,496,484,487,497,480,485,560,556,560,561,565,567,479,473,487,474,485,479,473,490,482,457,455,440,451,447,453,445,445,455,451,455,451,539,543,545,550,543,552,547,549,544,545,553,564,552,556,554,545,552,550,544,556,547,548,546,539,540,507,501,508,494,500,497,505,503,521,513,523,517,524,526,518,513,522,586,582,586,576,579,585,589,577,577,593,583,585,592,588,597,580,579,590,556,557,556,552,548,499,498,496,500,491,492,499,504,496,488,488,497,498,548,575,571,560,565,555,568,528,526,530,529,527,528,550,546,542,539,539,536,538,537,536,547,518,517,511,513,514,508,515,510,518,516,502,503,505,503,502,505,509,501,506,539,536,550,538,541,534,539,541,544,537,538,540,534,569,562,564,570,563,570,562,562,569,516,521,521,526,515,516,521,525,526,552,544,551,550,542,569,548,550,559,554,565,552,550,557,544,521,519,520,517,520,522,521,513,522,527,522,532,534,531,536,536,530,532,528,529,523,532,530,525,533,504,520,519,515,513,523,530,538,524,529,525,531,532,576,568,573,547,569,563,568,548,501,492,472,479,485,482,497,494,480,472,480,539,549,550,557,556,552,536,553,553,555,553,547,547,549,547,545,556,550,507,506,502,502,505,508,513,503,511,503,488,505,493,529,550,542,548,540,538,539,492,496,507,504,498,505,492,490,503,489,494,499,458,464,462,458,458,464,449,462,466,466,459,463,470,463,471,459,465,469,461,455,460,473,457,549,534,535,533,546,534,536,536,524,530,527,525,519,526,520,527,529,531,529,552,560,546,567,561,565,557,565,550,561,552,566,562,558,555,562,556,488,483,493,490,495,493,497,493,499,502,490,483,482,478,473,485,481,487,484,488,486,484,475,591,596,571,585,604,579,584,592,590,582,596,588,589,591,594,583,590,593,592,581,605,601,539,512,514,519,510,516,513,518,510,518,518,523,516,518,511,503,500,502,501,502,505,504,537,542,544,535,537,529,573,567,564,565,571,574,559,530,522,525,517,529,512,515,531,536,534,533,556,568,556,568,563,554,569,572,562,555,564,502,490,475,494,490,501,492,492,511,484,497,509,508,505,446,441,541,537,537,537,546,543,547,546,552,557,552,502,509,497,509,503,487,439,436,458,448,448,432,441,453,434,437,439,490,484,492,498,484,483,492,490,486,478,483,475,485,476,475,547,549,544,547,551,549,544,544,548,539,542,539,554,543,544,503,503,505,504,506,506,509,496,504,511,504,503,531,530,527,537,544,532,529,545,531,532,531,539,539,539,534,540,542,534,528,527,542,536,535,534,535,545,539,545,545,561,546,547,558,545,551,551,561,546,549,555,561,504,497,490,497,483,486,474,454,547,549,545,539,542,537,556,528,553,531,540,510,521,524,524,521,519,524,515,516,516,517,521,520,520,527,522,523,521,517,523,564,550,549,546,553,537,545,543,545,545,546,546,549,557,542,506,500,499,465,457,464,465,462,466,474,462,468,467,459,458,459,454,452,448,438,456,455,449,454,548,549,548,557,544,535,543,538,536,536,539,540,544,509,508,514,502,513,523,518,517,515,519,525,517,522,519,514,524,519,527,521,548,553,559,549,556,555,550,546,560,522,516,525,522,528,528,524,529,531,518,531,525,531,523,520,526,527,524,523,533,526,485,469,473,471,489,479,482,477,475,478,486,481,480,550,553,544,542,550,547,554,546,551,551,546,542,530,529,532,532,530,528,530,532,526,530,560,564,557,563,509,520,522,510,527,521,515,515,515,534,524,525,533,512,478,483,478,476,483,479,479,482,475,493,475,479,489,478,478,486,490,491,504,488,484,491,494,505,488,493,503,554,558,556,564,551,553,539,554,561,553,559,565,556,520,528,526,527,522,524,523,522,521,523,558,550,566,561,558,560,532,531,537,529,535,529,535,520,529,530,520,540,536,533,529,476,487,526,533,529,524,529,523,529,516,526,539,546,542,535,531,532,536,536,533,543,554,533,541,541,536,544,539,550,553,547,543,548,544,507,507,511,510,507,503,496,509,510,503,510,539,538,532,534,534,532,533,533,533,538,532,534,530,536,531,531,531,556,544,565,555,553,532,548,549,545,555,568,506,508,502,509,498,504,511,503,513,493,566,564,587,536,563,574,551,524,522,523,529,534,540,532,528,558,557,543,550,531,513,512,515,507,517,516,503,478,486,502,485,483,490,483,568,572,568,558,488,503,498,503,515,503,502,492,488,482,506,506,501,503,506,497,504,503,502,501,498,499,504,505,503,547,557,547,554,534,550,548,544,556,539,544,551,542,530,545,509,519,520,523,518,568,529,521,513,527,526,510,522,523,517,525,509,509,520,520,466,469,470,475,474,472,471,474,433,431,448,451,444,441,431,446,443,444,442,424,430,438,434,436,520,513,518,532,527,518,522,522,524,523,547,541,548,543,544,555,552,549,542,541,564,514,502,491,502,503,503,502,500,502,507,490,501,499,483,490,493,487,502,484,510,492,496,489,498,497,491,491,496,489,490,490,492,495,482,501,495,495,571,576,572,563,491,491,500,504,510,495,467,480,467,472,473,472,543,554,556,559,564,541,574,565,488,489,478,486,489,486,482,484,493,551,563,558,558,550,561,563,550,553,557,563,555,562,563,552,552,552,554,559,554,512,491,520,502,505,492,506,499,509,521,503,517,498,464,464,463,461,469,456,460,459,463,463,467,453,468,469,462,464,460,464,465,464,462,450,459,444,437,448,436,444,441,450,438,543,555,551,539,539,548,555,547,550,547,541,541,547,538,541,541,518,520,525,519,526,522,524,536,540,538,540,535,545,547,540,532,537,540,535,522,527,528,532,532,531,530,536,536,532,534,531,522,526,526,531,550,557,559,561,558,553,551,562,552,558,557,549,520,526,515,508,518,522,519,508,506,519,514,518,509,520,519,511,496,519,531,512,481,482,486,484,481,484,460,458,470,453,456,456,469,457,461,479,483,480,481,482,483,490,568,581,588,474,471,478,485,470,466,475,480,483,482,468,466,494,465,531,542,537,529,535,528,531,539,566,563,565,568,558,565,561,564,525,521,526,529,576,573,583,588,576,583,587,588,574,590,596,573,587,532,539,532,546,539,547,545,567,556,556,546,548,560,554,565,559,561,512,513,551,564,573,564,556,568,515,503,504,524,493,520,508,495,514,512,501,506,505,515,494,483,484,497,485,461,479,455,458,468,462,495,508,499,503,510,494,506,493,505,510,502,494,499,502,570,565,562,567,569,579,565,573,571,564,564,566,560,560,557,555,557,553,533,523,532,530,514,512,508,503,504,505,514,504,504,503,505,511,509,509,516,511,515,509,504,507,505,509,505,506,506,503,499,501,499,504,502,501,504,506,499,497,474,477,478,478,473,485,482,482,475,479,480,483,466,463,469,472,457,470,551,561,563,558,561,554,560,558,547,544,550,544,551,545,547,562,551,554,541,552,476,485,469,469,474,481,474,475,486,466,474,479,465,469,461,456,447,461,449,439,444,451,452,435,455,553,552,541,549,549,548,539,553,547,535,545,539,549,548,543,547,554,513,518,507,509,556,566,561,559,553,558,555,561,555,551,545,555,561,550,563,545,565,552,563,559,561,550,545,549,544,544,485,500,490,494,508,496,499,484,492,491,498,487,495,486,494,485,493,508,499,567,565,569,574,567,564,562,549,545,495,494,494,498,494,496,497,486,500,488,504,494,483,487,449,461,469,478,463,472,464,464,465,541,535,545,541,534,540,545,538,540,536,530,533,554,550,548,554,554,553,553,548,546,561,554,552,573,549,555,499,501,495,484,496,499,497,501,498,500,500,505,500,497,499,494,490,504,500,501,499,580,584,581,565,579,582,573,558,583,561,563,571,572,509,503,494,501,494,511,501,490,459,470,465,463,473,468,454,474,466,461,467,464,468,469,460,471,551,559,552,568,564,552,574,564,561,561,561,553,556,541,511,505,506,510,521,508,512,510,539,519,529,528,545,536,530,539,534,529,541,559,555,559,487,492,485,500,496,491,488,543,549,554,547,553,493,493,506,504,491,489,494,493,502,493,489,496,510,510,510,548,568,556,565,560,551,563,551,561,510,519,528,509,532,532,523,517,511,533,516,516,529,503,498,511,497,506,499,495,500,483,480,488,483,477,479,485,492,475,476,481,474,479,478,461,457,461,465,458,470,458,454,456,449,448,453,460,463,551,554,544,552,550,553,544,539,552,545,551,542,573,582,574,575,577,566,578,572,585,575,558,554,547,543,549,537,544,552,554,551,542,551,546,547,545,546,543,557,553,543,543,550,519,525,530,519,524,530,520,514,518,529,525,512,514,494,492,486,487,494,492,489,492,501,490,454,466,453,455,459,454,474,498,484,493,491,489,494,485,495,491,481,494,523,518,522,522,516,520,517,517,528,522,525,526,525,521,531,519,578,570,571,583,573,578,581,585,577,582,537,534,532,537,530,542,537,543,537,541,527,533,540,517,507,512,513,508,513,511,512,513,522,518,513,516,508,510,510,507,509,507,505,509,505,504,507,509,509,502,506,505,531,521,528,518,523,523,528,525,529,534,525,528,528,532,529,538,570,568,489,501,508,506,489,501,512,491,506,502,505,500,501,494,506,520,495,507,511,507,505,509,516,525,523,536,539,539,540,525,538,525,565,566,567,559,564,561,562,564,553,532,550,544,541,540,544,528,536,530,534,525,533,531,529,531,532,531,532,535,529,531,551,553,556,539,542,485,494,504,499,506,496,497,501,494,497,514,509,513,517,524,508,543,549,550,557,560,561,554,569,509,499,517,511,497,516,529,518,519,485,490,474,479,475,478,473,461,462,463,461,459,456,468,461,558,555,564,551,550,560,560,517,520,515,512,510,510,515,525,523,528,537,528,527,527,530,520,521,528,530,531,515,520,509,512,510,506,519,510,545,541,545,551,548,548,541,552,543,551,543,543,548,542,550,550,540,504,508,511,506,518,509,510,471,478,484,473,486,487,483,485,483,496,491,492,495,491,479,477,480,479,480,492,481,485,478,487,481,481,482,494,505,500,503,493,489,498,497,494,503,498,503,508,502,508,509,508,507,509,506,506,502,502,505,508,504,511,508,542,545,538,537,541,547,535,539,542,542,553,541,535,550,541,567,563,574,567,571,573,572,568,565,550,528,517,523,516,513,521,506,513,538,517,531,512,513,507,526,524,524,494,500,489,499,496,493,500,499,493,504,495,498,493,500,501,497,500,492,497,496,490,490,456,455,447,453,461,459,473,468,474,477,483,466,474,474,480,468,553,571,567,554,570,571,569,491,499,510,496,494,547,565,553,543,552,490,484,495,496,486,485,479,494,451,452,464,463,462,457,459,455,582,549,551,551,552,543,534,555,540,554,548,503,493,488,487,494,497,493,497,496,510,512,508,505,508,504,498,508,574,564,562,570,563,564,565,571,572,564,569,565,568,561,561,553,558,557,550,553,561,519,517,534,513,525,524,510,506,510,505,501,501,505,503,508,505,509,499,504,502,501,484,481,475,481,483,480,487,480,480,481,487,478,489,477,488,488,574,569,548,554,556,566,572,575,557,566,520,521,514,525,522,524,525,530,529,527,558,557,564,558,574,551,566,551,550,566,562,560,560,569,511,520,516,525,523,514,521,514,515,523,505,508,532,508,511,481,491,480,487,483,494,486,486,489,497,491,505,500,507,505,513,507,504,508,503,507,501,503,503,507,508,506,509,509,519,533,533,528,524,519,529,521,525,525,538,532,523,546,548,546,541,559,537,541,546,547,542,565,566,557,567,556,554,518,515,533,507,518,483,488,493,494,484,495,486,486,497,486,479,490,493,484,510,504,511,511,550,545,537,548,545,551,550,542,547,544,543,548,542,555,542,525,520,519,514,524,521,539,543,526,529,529,534,527,498,502,504,497,503,505,498,496,503,502,510,510,510,517,537,543,540,540,541,544,549,532,539,546,547,550,565,547,553,541,481,548,550,556,566,550,559,554,558,558,558,557,566,550,559,565,563,563,556,564,559,559,514,513,505,526,525,511,479,484,483,491,494,495,485,481,513,525,508,510,515,502,509,520,513,523,513,507,511,562,565,558,561,556,499,506,495,495,496,494,501,500,492,493,501,503,508,500,504,499,495,500,499,516,521,515,514,515,553,546,561,550,555,547,560,550,553,554,558,554,553,557,553,556,555,551,555,551,510,500,502,503,498,504,506,508,500,502,496,494,495,498,498,513,507,510,501,496,493,489,489,491,487,484,500,494,483,491,483,498,488,485,492,485,510,524,529,519,518,520,524,519,512,522,523,586,578,590,576,580,582,582,582,574,574,583,575,566,552,556,556,550,544,551,553,558,548,549,544,547,548,543,551,489,498,493,498,495,480,494,494,494,485,500,498,488,492,455,469,463,459,464,468,465,467,528,546,533,533,543,532,538,527,544,535,531,522,524,526,528,518,528,529,521,530,524,525,519,518,543,539,537,531,538,540,533,534,543,549,549,551,547,547,546,480,487,493,492,502,500,489,453,449,457,545,543,553,543,538,520,519,517,518,518,524,523,520,520,524,521,524,523,527,527,554,560,537,558,557,490,490,477,466,460,474,458,455,471,463,468,459,465,469,461,457,472,459,456,530,531,531,544,534,531,543,536,537,579,583,572,568,569,570,572,572,579,578,575,564,553,560,539,550,541,540,536,545,541,560,550,555,552,512,512,512,514,520,516,507,502,506,505,517,504,508,497,529,512,524,512,506,502,515,511,483,480,480,480,484,477,483,480,489,480,484,483,484,462,468,467,466,458,583,590,471,473,467,512,525,526,515,535,511,519,522,521,518,528,514,523,523,520,525,516,547,544,542,538,553,565,565,560,563,558,561,552,562,560,562,553,561,558,564,561,557,552,557,554,565,550,515,514,518,523,513,510,527,521,517,526,523,489,488,485,486,492,486,484,478,490,490,491,486,491,496,489,495,491,499,490,492,498,492,575,560,569,568,574,572,559,567,565,543,569,555,483,488,483,474,477,470,485,474,467,475,484,485,491,475,570,563,579,565,576,559,565,591,575,567,505,505,502,503,521,499,491,504,596,582,595,582,585,595,540,549,537,534,538,547,544,546,544,539,539,540,538,548,534,535,514,504,502,501,501,509,511,501,510,501,501,499,529,531,538,533,525,529,537,532,532,524,533,529,533,533,533,530,522,528,527,529,527,531,547,569,569,575,552,574,573,563,564,559,566,569,553,561,563,564,567,572,567,533,529,534,533,527,531,520,525,521,525,518,520,528,530,529,519,516,530,521,530,484,476,493,467,494,468,469,490,459,487,480,573,600,578,577,581,591,597,582,575,595,573,584,584,602,584,516,548,558,555,546,548,553,543,550,541,470,481,476,481,488,474,471,492,510,498,506,515,504,503,496,504,496,513,505,519,503,501,512,567,556,569,563,564,562,559,564,567,561,575,559,516,525,515,526,523,514,500,503,504,502,492,496,488,486,478,484,441,440,453,553,555,544,560,550,548,552,553,555,553,538,536,552,552,548,547,549,542,549,549,503,501,483,504,512,491,501,507,492,489,496,502,485,487,479,476,484,483,490,478,484,478,483,458,479,483,487,480,489,486,528,554,558,563,567,560,554,558,554,561,554,562,542,554,566,495,505,505,498,497,509,503,489,479,477,479,469,478,472,476,477,477,477,485,479,478,466,478,473,470,477,481,468,481,477,474,471,478,476,479,479,481,474,459,545,567,555,570,552,558,551,560,544,524,528,520,527,521,527,518,523,527,555,561,561,559,549,545,557,557,521,524,516,485,478,477,474,456,466,563,554,554,552,556,540,540,551,549,549,550,556,556,549,554,548,545,537,483,467,480,488,469,473,484,482,480,476,486,468,480,466,478,466,491,483,485,486,475,475,490,482,585,561,575,568,583,523,521,510,516,520,518,514,515,526,520,518,520,466,458,468,476,467,469,476,468,472,468,476,470,463,470,479,446,442,451,453,526,545,544,537,533,548,524,548,546,538,547,545,552,538,549,549,535,547,544,475,476,467,470,458,477,611,577,587,598,583,589,599,594,540,532,537,544,539,537,524,529,528,527,525,555,567,559,550,559,557,553,554,562,552,488,500,495,495,485,487,500,462,471,468,471,468,476,468,491,498,495,485,502,497,499,506,505,502,489,503,498,502,507,497,497,548,550,534,545,541,554,548,542,552,547,550,542,554,551,504,477,504,499,495,487,456,445,453,457,459,456,469,450,458,459,456,461,492,497,488,486,485,473,477,500,498,486,496,498,499,504,502,506,503,540,538,538,547,541,544,537,540,541,546,570,573,572,572,562,580,564,582,577,569,569,570,562,550,554,559,548,549,556,546,516,521,515,517,529,513,527,529,525,512,527,521,522,517,526,523,503,505,491,502,491,499,508,495,493,498,499,499,499,495,500,498,484,478,485,482,486,481,478,479,480,485,482,482,484,480,440,439,447,441,444,454,453,451,442,451,532,526,532,532,522,525,525,521,530,537,530,530,536,532,532,529,527,527,549,548,535,538,541,545,508,513,520,519,523,556,549,545,495,495,501,499,502,497,487,487,452,463,454,449,454,451,448,442,448,496,511,499,501,503,504,506,492,501,542,528,541,545,535,527,535,543,537,537,533,532,543,542,539,524,518,505,508,516,511,507,507,516,510,515,507,515,574,565,545,566,501,516,508,513,561,558,505,517,520,500,493,514,497,502,515,510,505,509,507,488,500,500,512,509,516,535,554,550,538,549,544,563,469,469,460,469,470,487,490,486,533,527,522,516,582,592,586,550,552,545,548,555,545,546,544,554,560,562,545,565,498,509,501,496,498,491,485,497,504,503,502,487,498,517,510,517,520,509,519,514,513,511,516,514,522,509,565,545,560,569,560,563,559,555,492,494,486,495,509,497,493,470,471,467,469,466,563,576,571,566,577,563,570,565,573,580,558,558,575,570,573,568,568,574,566,565,552,564,491,495,503,488,500,495,504,506,472,466,459,474,467,477,469,464,570,558,550,517,501,513,509,517,529,525,523,517,516,524,504,501,519,520,510,481,479,486,487,475,474,473,478,477,480,488,476,481,481,488,478,486,463,471,466,470,469,474,479,491,487,489,488,492,488,485,493,525,537,522,531,530,524,527,533,533,524,531,545,541,518,529,525,520,549,535,558,552,553,546,560,545,555,534,543,549,550,550,555,504,493,526,517,517,524,511,508,506,511,500,519,496,512,504,510,522,495,485,491,487,484,494,489,477,486,486,476,489,478,488,489,493,483,479,473,471,471,470,475,473,471,469,472,474,479,487,474,476,493,472,593,589,596,597,598,610,598,602,599,591,582,584,609,555,555,551,561,558,562,548,561,547,560,497,507,508,496,510,516,510,515,506,521,505,495,506,516,500,491,507,513,482,470,478,474,479,478,476,475,477,476,471,478,467,483,466,478,471,480,472,480,477,486,475,476,472,484,485,484,489,496,496,502,502,499,499,509,506,497,500,502,502,531,530,533,538,537,561,565,555,552,563,575,564,567,574,558,518,524,553,545,553,559,556,556,553,558,559,562,554,560,558,541,574,524,511,510,514,512,507,514,519,517,518,512,510,528,511,513,505,518,517,515,511,540,539,542,531,536,540,545,538,539,539,573,574,559,555,565,573,560,557,569,565,503,501,503,501,500,493,500,479,484,479,480,477,485,479,485,585,608,592,604,584,595,596,593,513,514,515,510,512,538,533,547,545,541,545,549,543,547,545,550,552,555,555,512,506,508,500,503,500,524,521,525,518,520,518,528,522,524,522,511,524,526,523,525,528,549,556,511,519,515,513,512,507,513,517,505,516,520,517,511,511,531,533,524,534,534,526,531,532,541,529,533,532,529,521,537,531,526,531,554,557,564,565,562,562,556,519,518,528,526,524,521,524,526,547,547,548,545,545,541,557,579,573,568,573,564,569,580,577,578,566,522,524,528,521,535,511,510,507,511,507,510,507,514,513,509,477,478,482,473,476,472,485,492,488,488,486,485,576,570,581,557,569,501,500,496,494,508,498,497,515,505,503,589,591,573,602,585,583,578,583,584,584,549,561,549,555,549,544,518,506,515,483,481,485,485,479,486,470,478,482,483,485,480,469,466,459,473,457,466,460,461,472,462,460,549,572,567,541,562,555,498,484,491,486,485,500,501,484,490,493,493,547,567,546,546,540,494,496,491,548,554,560,551,555,535,514,507,519,518,517,511,514,518,507,508,507,511,508,507,513,507,505,506,542,550,549,547,548,548,549,552,552,554,545,556,551,538,548,540,544,553,546,552,557,495,491,515,499,503,502,501,484,500,490,502,499,501,452,440,442,444,445,443,445,448,430,434,431,444,495,498,503,496,503,491,501,487,494,489,488,494,553,561,567,554,560,551,557,558,557,562,572,549,496,500,489,491,490,498,501,488,491,489,493,488,488,479,485,472,472,474,485,470,481,481,588,596,593,600,608,610,597,600,603,580,596,614,620,611,554,521,519,530,510,520,533,522,517,512,529,519,512,512,509,516,507,520,508,506,516,502,497,506,498,497,499,499,502,511,503,503,499,492,503,504,504,493,497,473,473,473,468,448,437,436,441,456,443,453,454,450,452,444,425,439,435,422,444,437,450,558,551,547,546,544,544,554,554,544,551,542,551,543,558,551,564,559,544,552,542,553,477,472,475,477,475,472,467,479,473,481,466,473,448,450,448,441,446,438,447,449,443,529,525,539,530,537,536,529,531,520,528,530,523,527,523,522,527,527,518,516,527,523,521,522,513,518,523,517,517,522,517,523,520,522,516,520,527,514,531,534,534,531,528,534,550,551,536,500,507,500,478,491,492,486,504,501,487,496,496,491,496,559,553,533,563,551,558,560,549,559,542,555,566,541,557,515,507,515,505,511,513,475,465,474,473,475,481,476,473,470,478,473,481,473,477,494,490,505,504,497,496,500,500,496,490,496,473,471,477,475,491,479,460,458,462,459,483,488,489,493,485,485,481,478,487,477,484,484,488,493,523,529,528,534,535,531,528,542,533,537,533,536,566,562,560,545,548,549,559,562,562,568,498,505,504,504,506,503,503,502,512,516,517,597,605,602,595,590,608,592,585,598,605,528,536,532,519,536,529,542,520,527,544,528,531,524,526,540,520,526,521,497,493,493,486,498,489,494,504,597,595,589,584,605,600,591,586,573,586,524,517,514,530,510,517,516,511,529,505,524,507,510,519,518,504,525,548,549,537,536,550,549,539,540,543,540,559,545,546,553,513,510,504,500,506,509,508,500,506,502,508,545,560,578,573,547,570,569,560,561,476,480,503,497,500,497,489,585,576,570,574,592,573,575,577,566,582,570,573,564,577,565,580,577,561,574,540,542,528,541,539,531,538,492,508,497,509,506,499,497,504,538,548,543,535,545,542,542,531,533,544,570,556,553,568,560,541,530,546,540,536,539,546,550,544,539,539,536,529,533,526,533,531,535,532,534,527,521,522,523,532,522,526,521,522,522,589,586,593,601,601,605,592,588,601,578,591,590,595,593,593,594,557,548,549,549,544,552,561,552,482,477,484,477,486,474,487,479,487,486,482,460,461,459,452,468,454,465,472,467,462,578,581,584,582,593,589,592,581,587,590,575,580,579,591,580,584,584,583,593,581,599,578,593,589,588,546,542,541,545,510,502,506,495,504,501,504,540,530,529,538,533,530,534,527,513,523,524,519,512,547,537,547,555,543,535,552,540,548,550,549,548,534,546,553,549,544,537,548,541,547,542,520,513,521,515,527,519,517,518,528,529,521,523,520,525,519,585,581,582,588,595,603,599,590,596,580,583,594,534,540,533,531,526,529,550,527,542,545,532,533,537,535,542,543,536,528,501,507,508,505,496,500,502,504,500,499,506,511,500,498,516,510,502,500,560,552,566,557,569,501,505,499,504,500,494,469,501,466,463,453,459,464,449,459,457,470,464,551,545,531,559,553,540,543,561,542,537,545,547,532,500,500,504,500,498,493,498,511,506,508,495,563,570,567,553,556,557,554,559,559,548,561,557,562,550,561,559,491,493,479,500,484,506,498,492,489,499,474,478,492,483,487,465,467,460,469,462,461,571,611,596,595,582,597,573,589,583,587,495,505,499,534,535,544,565,571,570,569,562,520,506,514,506,507,502,502,543,544,541,537,541,546,541,540,545,543,549,544,535,540,544,543,542,546,553,540,537,542,536,546,541,550,518,514,512,518,515,527,525,525,531,528,528,536,531,531,519,515,525,530,536,497,498,508,492,510,503,497,501,499,579,560,558,576,495,497,495,508,507,507,535,553,541,535,543,544,544,557,533,543,541,547,535,488,476,477,476,466,482,472,492,493,491,492,506,517,515,517,520,510,513,510,513,548,545,555,545,553,541,548,543,545,544,546,542,504,514,503,507,496,509,502,509,507,497,507,554,555,492,503,493,496,505,501,504,497,492,491,584,570,581,581,569,576,575,575,587,575,533,541,545,546,533,532,538,543,530,539,540,536,537,533,533,539,542,540,525,529,537,531,528,525,528,528,526,525,529,519,520,525,530,529,531,522,559,547,559,553,546,556,566,557,556,574,515,519,532,528,524,530,531,527,528,533,528,527,526,530,529,557,561,566,554,549,559,551,554,520,520,521,531,517,522,506,506,502,504,510,507,507,503,506,503,505,507,506,505,485,488,489,493,487,489,495,496,484,492,479,489,491,497,487,494,490,490,506,503,502,501,502,500,501,500,501,505,494,499,503,497,499,499,501,497,501,507,504,500,500,510,509,503,503,503,497,497,500,504,480,474,482,480,470,483,481,480,485,481,465,465,463,500,496,493,491,491,494,489,499,495,489,500,505,508,509,513,499,503,509,505,503,503,508,509,504,517,505,540,547,533,542,544,537,539,531,539,562,570,564,557,559,562,560,567,527,531,525,542,537,532,526,524,528,524,534,531,532,527,531,526,557,557,555,554,557,551,549,555,552,550,560,557,497,502,495,501,502,499,497,502,498,494,504,504,498,501,503,499,499,498,498,500,509,502,501,503,500,501,497,502,532,534,533,538,529,532,528,532,557,563,557,555,506,510,509,509,506,506,520,496,508,508,511,513,522,514,513,521,511,559,582,579,577,544,541,543,541,538,534,544,543,539,539,546,526,524,512,568,555,555,562,520,520,522,516,558,554,553,546,552,554,551,518,524,528,468,475,469,487,471,482,475,482,475,487,483,490,470,479,468,475,526,532,528,528,527,530,533,527,531,533,535,531,535,536,533,540,549,555,528,550,542,543,548,545,546,487,496,482,500,495,484,487,480,498,496,490,490,498,586,587,595,587,576,575,588,578,576,595,531,536,542,524,523,528,521,527,527,525,533,527,515,521,531,511,509,508,499,505,506,512,549,566,560,550,544,542,543,550,558,557,473,477,464,478,486,481,478,473,480,484,473,463,485,463,476,472,472,464,484,578,566,574,572,563,564,557,528,505,505,518,529,504,480,471,463,471,464,475,463,480,480,469,475,471,471,456,472,468,480,482,485,494,491,482,478,499,502,500,494,492,505,505,501,505,504,502,505,492,501,496,485,490,489,486,486,493,493,510,496,508,503,504,507,502,538,539,532,519,523,521,522,522,517,521,522,523,524,518,523,536,544,544,512,522,507,513,510,508,507,514,502,505,508,521,520,534,526,520,527,525,519,529,531,533,524,521,514,519,526,522,571,572,567,531,532,533,542,530,521,584,588,596,522,477,558,548,541,563,565,559,573,551,558,560,563,547,558,556,556,548,561,551,510,494,507,508,493,488,499,506,504,492,497,486,497,483,510,482,480,483,482,483,484,476,480,475,472,481,474,489,475,480,477,474,478,480,480,491,491,497,495,496,498,493,495,489,498,487,494,475,463,462,458,467,469,468,468,459,472,462,462,472,472,461,468,465,461,477,463,451,454,452,466,460,456,453,459,456,455,460,456,453,461,457,459,547,558,549,556,566,550,534,546,544,558,556,554,553,503,483,498,496,494,489,490,480,493,484,489,493,490,487,490,494,588,581,504,511,509,493,507,501,507,536,530,524,535,536,531,534,530,533,531,539,534,534,530,541,544,546,548,550,545,545,557,552,551,543,544,465,471,472,471,462,457,486,465,523,517,528,509,518,520,528,526,525,539,524,529,530,531,527,541,526,530,527,537,535,527,533,529,562,564,575,570,564,564,567,552,521,511,516,523,503,508,505,505,526,480,500,492,487,493,483,491,491,495,485,491,496,554,548,560,559,569,545,554,552,568,562,568,561,562,556,570,503,498,508,511,511,514,504,493,498,493,500,501,500,496,497,497,490,500,500,523,528,527,522,525,530,530,530,526,535,524,530,529,524,529,524,524,518,525,529,522,518,518,517,527,525,520,520,520,524,525,544,538,524,520,513,527,530,534,536,548,539,540,543,542,540,541,515,518,535,532,532,528,532,540,535,533,530,536,541,560,557,494,498,495,501,512,492,492,494,506,497,434,441,435,447,430,439,449,454,440,446,428,447,443,446,444,520,509,517,515,517,517,521,519,519,519,528,537,539,537,541,535,540,530,531,544,536,548,542,550,545,546,550,554,544,546,542,501,504,495,542,546,557,549,564,565,555,548,555,493,502,497,495,492,504,511,509,509,506,514,510,516,517,507,514,506,512,546,542,553,547,545,542,534,547,544,545,544,532,530,530,538,532,532,531,542,524,534,530,532,539,527,526,532,537,534,541,573,568,570,568,546,565,546,561,555,565,566,562,550,562,559,563,562,558,558,565,566,560,519,528,527,520,523,517,523,501,500,509,504,505,500,507,487,492,485,491,484,487,467,473,468,466,470,449,459,473,466,463,468,456,462,457,455,461,455,457,457,455,447,448,445,457,463,456,461,457,457,448,466,458,463,449,469,463,458,535,538,532,536,542,541,537,531,525,524,526,517,523,523,522,524,532,521,521,526,525,521,513,521,516,524,518,517,522,527,522,525,523,522,524,521,519,539,538,536,535,532,552,529,552,540,554,546,530,544,520,511,513,507,516,508,506,517,514,496,502,517,516,509,511,577,558,560,555,555,556,575,569,554,553,564,571,573,573,571,554,574,547,503,498,487,511,512,515,500,493,507,506,504,455,465,455,451,464,452,456,454,446,455,453,448,452,507,503,504,504,507,506,498,497,510,509,498,504,502,499,501,555,563,570,551,555,563,558,562,555,565,533,531,529,534,531,564,562,519,509,517,471,478,475,473,479,483,475,479,472,476,489,481,474,483,485,474,481,477,477,475,479,478,480,592,590,600,596,605,604,609,604,600,596,545,534,542,531,530,533,547,547,526,522,529,542,545,522,538,528,485,481,471,466,471,487,472,490,485,480,480,474,478,489,473,485,477,476,488,492,562,543,551,540,544,537,547,565,546,540,553,549,540,535,536,545,551,537,548,556,561,550,554,548,553,527,518,523,520,523,522,521,520,523,519,522,521,514,517,524,522,526,521,518,523,536,543,565,568,555,569,550,561,564,559,563,555,546,568,560,532,535,535,535,530,566,562,551,552,554,564,559,545,555,556,501,486,501,503,508,504,505,502,513,503,501,497,485,454,447,460,460,462,459,460,455,455,451,462,455,456,444,450,510,495,495,502,493,556,547,551,548,553,550,543,555,565,512,506,498,509,509,503,514,510,512,511,513,504,538,549,539,552,542,550,539,551,532,524,526,533,529,526,531,528,527,530,531,531,527,522,547,541,534,530,541,530,534,543,552,542,531,484,476,475,480,482,483,479,479,472,481,484,485,527,532,527,527,524,535,517,522,520,539,536,542,540,545,528,540,537,538,535,548,538,553,562,551,534,546,545,556,483,493,491,491,486,496,496,486,488,487,482,485,488,551,546,570,566,552,568,556,558,561,557,566,567,550,541,485,500,484,490,494,478,487,575,587,572,580,582,573,578,560,574,578,528,526,555,503,487,507,500,472,487,483,477,481,482,467,465,468,472,481,480,484,466,484,475,478,479,485,468,479,550,550,562,549,552,554,543,556,549,544,546,542,556,538,487,512,500,501,538,531,529,539,537,533,537,533,533,525,535,534,537,537,535,549,544,549,576,552,552,563,564,548,573,559,545,564,558,499,503,504,505,496,498,503,557,547,547,535,535,545,484,467,481,480,476,465,475,476,469,474,467,457,475,578,580,558,594,568,582,571,591,565,580,579,584,585,548,477,481,534,546,538,531,545,532,536,546,541,551,539,544,518,512,498,497,558,553,568,569,559,503,492,492,505,496,495,489,512,491,504,502,500,500,500,573,551,568,575,577,565,562,555,565,565,579,560,523,521,512,523,524,516,520,512,520,520,519,517,488,492,493,494,482,494,487,481,494,488,487,499,492,465,467,459,468,459,465,461,468,467,468,451,457,451,456,448,464,455,461,455,460,463,459,466,462,453,461,461,458,458,458,448,467,459,454,454,457,565,546,549,559,566,570,549,547,559,552,554,561,543,545,552,485,583,564,594,543,501,498,489,502,492,499,506,492,492,493,499,502,502,502,511,522,510,518,516,512,515,513,515,514,519,527,502,513,566,550,548,554,566,556,566,565,558,562,560,566,494,503,497,497,497,500,507,506,515,518,516,511,512,509,515,513,508,548,534,536,541,540,544,545,541,531,524,530,531,531,554,543,558,483,485,482,475,482,486,479,484,485,456,441,449,439,442,427,436,446,444,433,439,446,447,443,435,444,445,446,446,441,430,535,533,519,522,531,532,521,530,530,526,536,538,528,525,532,539,540,544,540,539,529,532,536,525,536,533,539,540,540,546,538,543,540,534,555,535,544,556,544,548,555,541,509,514,519,503,525,504,518,514,511,510,562,568,571,549,574,571,559,490,480,472,479,487,480,479,495,479,477,480,490,471,488,461,453,441,454,464,471,468,456,460,471,597,577,595,577,575,570,613,601,579,580,601,587,598,547,539,536,543,544,537,541,537,541,543,555,538,543,547,504,500,496,503,502,505,498,507,501,537,527,540,529,529,524,545,526,529,525,527,525,535,532,532,534,547,538,541,551,544,534,534,541,529,542,551,543,522,523,518,524,517,523,523,519,524,519,525,519,517,533,524,549,552,539,555,546,551,545,543,550,548,480,489,487,490,483,499,480,493,490,495,488,495,495,512,507,502,545,561,546,540,559,550,557,549,555,548,559,536,526,529,531,536,536,536,528,534,535,535,559,568,573,565,561,578,571,563,577,519,490,499,507,491,484,510,512,509,490,495,514,504,494,503,499,448,454,447,455,455,456,461,468,449,564,573,566,560,566,559,561,565,557,561,564,564,555,569,559,554,550,564,564,563,516,503,499,510,511,501,518,499,503,500,509,511,506,513,510,509,513,508,506,508,509,462,458,462,457,454,470,465,453,465,455,463,489,481,485,492,490,490,485,489,485,486,485,492,483,527,531,520,528,523,519,524,530,525,520,520,584,592,594,577,592,574,594,594,584,541,531,528,534,537,531,535,524,545,533,527,473,474,471,471,472,465,483,483,474,546,540,535,541,542,531,547,536,538,547,543,552,538,546,541,542,578,569,577,578,577,550,546,545,552,552,553,555,550,555,542,550,522,515,513,516,516,515,514,501,511,498,503,509,496,487,481,490,484,493,481,485,490,480,493,465,460,459,460,460,458,455,469,462,463,477,478,479,482,485,482,483,485,483,462,469,463,463,456,463,466,463,463,463,460,465,466,459,464,458,463,456,470,448,445,449,443,444,566,554,558,553,542,555,552,554,560,553,536,553,559,551,556,551,550,501,513,511,519,511,509,508,512,512,498,506,512,507,519,510,512,515,515,510,463,456,465,452,463,462,463,451,460,462,463,469,458,482,480,482,487,503,563,577,565,575,577,584,579,577,598,579,557,582,569,581,513,530,521,525,519,521,516,523,522,515,526,520,506,514,521,522,524,484,488,488,484,478,488,488,484,481,480,481,491,476,485,487,498,495,501,492,486,588,558,584,581,582,572,576,578,481,482,485,479,480,491,487,500,488,488,480,490,488,501,489,483,477,490,525,546,540,539,532,543,535,542,541,536,534,529,541,531,522,524,533,530,519,521,531,526,529,520,530,524,522,552,540,544,548,538,543,563,561,555,561,559,560,551,563,563,510,526,528,534,532,523,518,541,521,518,519,513,514,513,504,507,510,512,502,503,512,511,515,511,510,479,491,483,478,491,494,489,489,474,479,485,485,486,481,487,451,461,468,464,449,460,456,466,484,475,485,474,474,475,466,466,469,589,578,591,575,609,587,585,589,574,596,590,610,533,535,539,536,539,542,537,534,534,544,534,522,509,500,563,539,549,566,556,549,549,557,547,532,526,528,524,539,536,497,504,511,494,500,504,503,497,495,492,493,496,575,593,575,537,537,540,534,540,552,513,518,524,529,519,520,514,520,563,561,558,560,565,554,548,555,551,554,554,557,556,556,559,550,550,516,501,503,499,508,519,502,515,513,501,455,457,455,451,455,452,457,452,452,449,449,471,471,474,475,475,474,463,475,480,586,575,564,569,586,584,573,581,574,587,576,566,564,481,490,491,481,493,485,538,553,548,534,536,535,551,550,548,536,551,551,546,545,530,547,544,540,473,463,482,477,466,471,469,468,478,465,482,471,475,473,492,477,484,466,443,538,537,537,529,546,534,537,541,535,534,527,550,539,532,535,539,552,551,552,549,547,553,549,543,554,549,539,552,553,541,551,554,547,547,556,550,553,548,553,561,553,501,511,519,513,514,513,500,505,516,505,521,517,467,470,469,461,466,457,554,543,557,532,535,544,544,523,538,538,547,532,483,477,480,466,492,498,490,499,496,504,498,491,489,498,511,500,490,486,500,499,502,489,535,543,530,538,532,533,535,536,545,536,539,533,529,531,530,502,495,492,507,497,574,574,595,589,515,533,524,522,523,531,533,515,526,570,582,595,585,572,589,572,575,576,588,587,570,576,584,575,588,578,584,576,534,531,534,525,533,537,543,536,537,540,567,552,550,559,556,554,548,495,497,500,493,505,509,493,498,496,526,536,527,529,518,525,522,477,473,474,481,469,469,483,478,468,558,555,556,551,563,565,549,573,566,501,483,491,483,491,490,490,491,488,484,476,492,494,489,489,571,572,566,553,572,569,566,556,515,516,514,518,512,495,501,493,503,492,493,503,499,503,538,535,530,541,540,551,536,540,545,567,567,568,553,549,574,573,560,563,556,565,570,571,558,570,544,543,546,540,541,548,535,541,554,539,530,480,488,490,485,490,484,484,486,485,480,491,484,468,478,438,435,434,454,447,453,450,537,542,533,544,546,540,542,554,536,545,536,542,553,544,539,542,505,499,507,494,501,505,508,509,502,514,498,507,512,500,499,500,570,558,567,555,548,513,503,516,484,480,484,486,496,490,499,488,511,514,512,515,518,509,513,516,512,512,509,527,505,507,507,510,502,546,543,538,543,539,546,531,541,470,476,477,472,469,481,543,539,539,530,538,544,536,554,571,580,581,573,582,574,577,564,543,550,548,544,562,552,553,547,550,549,552,546,526,517,528,518,507,514,504,504,511,502,502,511,509,511,503,509,507,508,511,502,510,503,510,505,504,502,506,500,508,497,502,502,512,499,504,510,504,507,509,507,498,503,497,505,488,480,484,490,493,488,468,483,477,475,468,474,481,472,473,461,468,453,459,474,472,455,467,466,467,463,459,453,458,547,556,554,555,561,570,559,564,557,550,540,549,555,545,546,463,474,486,480,479,492,480,478,479,475,506,502,483,481,488,489,495,554,547,561,548,547,550,557,544,550,556,550,551,542,557,557,520,526,533,530,528,525,528,528,528,528,521,528,527,526,525,533,507,507,513,506,512,533,541,551,541,537,539,542,537,544,547,540,535,552,547,556,543,543,548,554,538,541,547,522,519,532,526,600,603,602,555,566,554,553,537,551,550,497,515,496,492,506,489,491,490,487,500,495,492,493,494,488,486,485,496,493,486,496,489,566,555,568,566,575,570,559,570,567,559,572,493,499,505,506,482,482,481,483,481,464,459,459,446,462,448,460,468,455,465,458,466,454,461,462,450,459,459,468,439,432,444,443,439,430,431,438,446,433,433,441,445,446,533,531,529,533,535,529,529,528,523,534,539,538,531,546,544,548,536,535,533,548,531,544,511,551,568,556,564,553,557,551,556,557,552,551,552,549,553,550,549,551,526,530,531,512,518,512,524,514,522,531,533,525,528,521,501,501,500,502,507,505,508,507,508,507,506,505,477,476,478,483,478,485,486,455,461,460,459,463,467,468,473,468,466,462,463,455,459,455,458,450,459,465,465,461,543,542,537,556,532,536,541,536,546,532,550,542,554,546,553,553,549,553,550,548,545,549,563,566,553,564,566,559,554,555,560,548,557,562,515,538,529,484,479,479,480,481,481,486,478,490,485,486,487,476,488,477,481,477,490,485,485,498,502,498,485,486,489,489,493,482,492,490,497,496,490,494,557,565,568,565,574,569,560,503,510,504,510,499,505,502,507,485,517,490,505,516,487,461,452,454,453,437,444,447,457,464,451,448,457,447,449,451,460,463,477,472,467,471,474,470,468,476,480,484,466,475,468,481,581,605,585,590,600,600,596,540,516,530,521,524,521,529,532,525,517,584,574,576,579,524,523,524,586,589,578,578,585,591,577,594,568,577,590,530,529,540,526,538,525,528,528,514,526,484,507,497,505,497,501,503,489,490,594,594,590,581,617,589,603,533,536,538,471,463,467,478,469,474,469,464,473,472,479,457,462,472,475,461,467,478,479,474,462,582,591,577,595,598,584,582,581,569,591,592,580,525,521,522,528,519,524,522,531,529,528,519,521,514,586,589,579,587,583,583,575,578,582,580,589,579,589,576,558,555,553,548,551,547,551,516,510,521,523,528,525,514,525,529,505,505,502,508,505,500,504,485,478,497,483,485,482,480,453,464,464,456,463,498,507,514,508,516,511,511,520,508,517,510,514,553,558,547,550,546,542,550,546,551,547,547,555,557,551,555,552,515,504,485,515,510,520,500,523,522,506,498,520,509,504,511,501,520,499,484,483,466,482,461,470,484,480,473,476,486,478,476,475,481,483,491,488,493,485,482,477,489,477,478,467,474,474,539,550,514,499,509,517,515,521,507,510,513,500,515,568,566,584,571,571,569,574,567,565,568,543,568,552,570,565,561,561,564,549,564,496,504,477,502,497,507,513,489,527,494,492,485,508,489,472,473,473,462,470,474,469,507,505,501,512,503,497,503,498,502,512,514,509,500,502,511,501,498,553,556,552,548,550,548,551,481,504,494,476,475,481,486,484,470,481,478,482,472,481,560,541,542,555,516,506,522,500,503,576,553,551,550,558,558,522,520,576,567,574,579,572,570,575,587,573,570,530,533,541,522,520,523,535,533,525,517,516,506,507,518,504,502,512,511,510,508,517,509,510,513,478,483,471,477,481,480,480,473,501,489,489,487,486,495,484,477,483,488,561,546,569,562,568,562,570,554,551,549,565,505,500,506,517,502,499,511,489,492,495,555,554,551,545,552,553,539,555,555,554,524,532,532,533,528,531,534,534,528,529,532,499,504,505,504,497,491,509,490,496,518,503,553,568,501,499,458,468,478,470,474,478,463,468,479,477,472,549,545,544,536,534,537,541,534,545,540,538,534,521,526,515,524,531,533,536,537,476,475,481,474,481,475,471,479,480,485,530,530,529,534,533,531,519,535,533,536,527,532,536,538,545,543,542,547,539,542,541,541,554,549,538,536,544,545,539,550,538,543,548,555,541,553,542,535,542,543,495,505,496,484,500,498,504,496,502,488,488,485,487,492,483,488,487,485,488,479,488,496,489,493,486,486,534,529,527,527,545,532,554,554,503,523,532,508,522,520,470,468,476,467,470,469,471,465,463,464,470,474,447,429,449,439,431,445,443,513,526,528,508,525,517,515,514,524,512,526,516,518,520,523,520,539,541,543,543,541,533,540,540,537,543,541,539,543,542,540,532,534,550,535,531,540,551,515,508,510,512,521,569,554,550,566,568,574,569,571,549,562,504,509,514,499,506,501,509,503,518,519,516,505,508,505,504,500,497,493,492,496,490,534,530,527,521,534,537,535,529,533,534,535,534,548,490,484,489,500,492,481,482,486,489,505,498,508,498,495,506,505,502,554,544,555,545,550,554,544,556,541,552,540,544,542,551,480,479,472,474,480,476,484,460,453,448,545,542,544,550,540,547,555,554,553,546,542,549,546,548,517,514,515,516,508,508,512,513,505,512,516,516,509,518,512,513,543,548,554,540,549,562,552,553,556,557,561,526,524,531,534,530,536,517,531,537,530,528,525,533,529,516,516,512,514,513,513,509,514,519,519,506,514,505,502,507,504,569,553,571,575,573,575,503,506,492,492,492,506,505,508,500,492,505,483,473,478,486,488,488,551,555,557,544,578,572,564,556,549,559,561,559,495,486,496,495,493,496,493,486,493,491,487,493,497,486,499,489,568,582,560,573,559,578,570,564,565,570,563,504,500,468,478,473,462,471,471,471,470,548,541,540,526,545,538,531,550,543,537,539,540,531,541,474,478,502,493,565,554,571,563,565,566,566,569,565,546,572,491,495,493,508,505,488,491,503,494,495,490,455,462,464,459,465,452,472,557,565,553,555,560,553,572,564,554,560,557,556,555,557,554,551,544,547,552,538,556,544,540,543,497,514,516,501,502,507,507,496,499,504,501,502,502,510,511,539,552,561,576,566,555,550,570,567,571,545,549,566,504,511,516,510,512,512,507,513,499,499,499,505,509,497,505,499,501,508,495,496,530,521,520,521,527,537,518,533,527,531,531,527,538,534,529,524,532,534,537,531,530,532,532,528,532,539,532,529,527,544,542,545,551,538,541,556,540,547,551,545,500,508,508,514,502,516,515,507,515,526,532,529,526,510,567,553,545,547,538,562,557,545,541,561,497,510,502,499,499,507,505,502,497,492,489,505,495,558,549,548,532,553,513,504,511,499,514,557,558,570,541,576,551,534,570,554,472,491,475,472,477,479,478,468,488,473,476,484,477,481,490,493,498,497,495,498,481,500,487,494,495,505,489,495,501,491,490,569,561,563,562,567,557,570,560,565,561,568,556,572,543,544,545,542,543,479,485,491,493,488,489,484,489,484,489,448,440,449,441,443,449,445,442,439,446,450,451,439,436,447,552,533,534,539,524,541,547,549,547,543,544,534,544,553,545,539,540,495,507,505,503,507,517,508,509,503,507,504,498,507,505,524,523,528,530,523,523,525,524,527,521,522,526,517,529,523,530,527,517,548,543,553,547,545,557,547,543,520,501,496,502,498,503,501,498,503,512,549,547,562,541,490,495,496,503,454,442,450,460,452,443,444,441,455,444,447,453,442,455,448,449,539,546,545,530,556,541,551,540,555,546,540,549,539,534,544,533,548,546,542,533,535,492,493,492,498,475,500,495,496,576,581,572,553,576,576,581,578,583,575,516,518,526,518,524,527,527,528,521,520,524,520,581,590,598,569,589,581,585,590,590,583,585,595,588,590,555,551,552,548,550,568,554,550,535,548,515,532,523,528,518,524,514,516,528,502,490,516,506,507,513,502,502,500,496,496,501,486,479,484,485,476,482,484,480,483,491,478,474,479,484,453,462,461,458,458,460,464,457,485,481,481,477,480,485,514,526,531,522,559,552,560,566,561,549,561,554,566,564,577,566,556,482,478,470,482,484,486,486,544,541,541,525,535,531,543,551,550,553,555,561,544,491,458,474,464,475,470,463,453,477,484,466,484,466,539,532,526,534,534,527,576,570,562,551,568,564,567,507,511,509,507,522,519,507,519,513,508,546,542,549,545,545,544,546,549,537,546,541,540,554,542,534,544,543,537,552,545,556,536,542,548,534,545,550,543,553,538,547,499,485,505,494,492,546,540,560,556,551,541,561,558,553,558,550,503,493,495,499,485,509,514,499,519,512,494,490,495,492,504,433,428,441,440,443,467,469,452,455,455,457,446,591,589,586,582,596,587,599,578,581,589,597,588,588,587,589,587,597,586,591,550,541,538,553,543,548,541,542,540,551,545,541,517,521,529,518,520,568,554,565,569,556,559,562,518,511,524,518,528,519,521,516,562,556,549,553,552,557,554,550,550,544,555,531,550,549,546,566,551,547,543,532,550,558,546,556,557,557,517,514,514,522,529,482,477,478,474,479,481,479,479,477,463,463,463,458,464,534,547,539,539,539,528,530,524,535,535,550,550,539,555,542,549,552,540,535,547,546,547,552,553,530,547,554,480,493,471,467,469,474,487,483,483,472,473,478,477,473,459,473,480,472,464,470,477,467,474,486,463,470,471,470,561,562,585,562,564,571,559,562,556,580,556,495,500,503,511,505,506,499,502,511,479,477,490,498,485,490,492,478,487,482,489,462,453,456,465,458,454,458,460,451,463,493,504,503,492,541,538,542,538,529,534,539,538,539,535,538,460,480,479,483,470,471,473,506,491,497,495,490,486,496,487,505,488,487,498,523,530,526,526,520,526,576,535,534,549,531,527,532,544,537,540,534,563,549,555,554,568,561,553,542,562,510,499,504,493,492,501,506,498,507,498,480,499,513,497,493,499,505,500,500,490,464,466,464,465,463,465,473,464,461,493,560,567,557,559,560,560,557,556,560,554,564,565,561,563,542,549,549,548,545,544,539,542,546,474,478,487,495,480,491,481,486,489,508,479,487,491,476,493,490,479,479,496,464,473,465,552,565,560,555,556,548,562,549,570,499,510,502,505,501,503,503,499,515,581,590,577,583,590,587,580,574,579,578,588,567,547,557,548,552,562,566,516,511,514,528,516,507,518,520,520,507,530,502,507,499,499,506,499,499,499,510,501,505,500,482,487,474,482,485,479,485,485,497,479,489,457,451,459,455,458,459,449,454,450,462,463,449,459,467,457,451,456,462,456,451,458,578,600,596,585,591,602,598,594,588,575,580,583,594,589,588,557,551,547,546,555,540,556,552,551,540,516,514,506,514,515,529,522,476,477,472,475,477,483,477,481,481,479,484,478,464,468,459,469,459,479,546,556,560,558,557,548,545,548,556,539,552,548,553,542,539,549,526,530,528,525,530,540,527,533,533,540,538,549,529,537,536,531,533,540,488,475,475,478,477,491,475,470,475,479,483,484,486,478,553,542,540,548,550,547,546,549,546,558,556,547,545,558,546,557,549,558,549,547,556,546,558,550,549,525,522,527,524,527,519,523,526,530,521,537,537,541,540,534,533,542,539,547,537,546,532,542,545,544,546,545,532,545,537,527,530,529,533,529,527,529,540,538,535,539,523,525,515,518,515,513,518,520,522,523,512,521,577,572,516,520,516,528,539,522,519,525,506,519,519,489,483,479,481,484,486,512,512,517,508,509,503,510,515,504,510,510,514,510,510,515,554,543,549,508,504,496,497,504,492,486,494,500,496,492,495,496,463,473,468,457,451,467,473,500,501,497,502,487,493,496,515,512,515,513,522,518,512,516,518,539,561,558,557,561,556,543,549,556,552,554,554,553,547,547,555,551,539,544,536,545,548,553,534,545,513,513,500,514,505,493,510,516,563,580,570,557,507,527,503,502,522,507,520,520,427,431,442,449,441,437,437,437,445,444,441,437,443,451,452,530,535,536,538,547,540,540,541,539,537,539,545,540,528,543,545,544,536,559,549,557,544,554,471,487,519,529,523,522,521,528,528,524,541,542,542,536,549,540,534,533,538,535,541,535,536,542,543,536,542,560,542,534,504,504,513,515,509,503,507,507,512,566,553,568,560,572,553,561,577,573,572,566,566,506,498,522,514,511,511,518,500,514,496,515,498,513,490,484,487,489,492,487,483,489,483,483,487,474,479,458,451,463,467,461,463,446,465,460,453,477,472,478,467,479,480,601,599,598,596,588,588,594,596,594,588,592,504,503,502,515,498,504,521,505,508,508,537,537,542,545,549,540,570,561,561,571,565,556,565,571,527,540,533,536,534,532,532,536,541,534,531,521,527,570,553,560,560,561,555,562,559,564,559,494,499,510,485,495,472,465,458,464,461,557,561,562,560,559,555,555,562,556,563,561,565,560,558,562,565,551,549,557,554,547,550,526,502,518,469,446,457,455,456,449,456,456,450,459,451,462,451,449,458,456,457,458,446,442,448,502,498,531,528,540,543,527,537,534,528,536,535,539,548,568,544,545,552,556,548,559,542,557,555,536,563,556,538,562,503,506,514,507,509,500,512,505,500,551,553,561,554,565,558,495,493,497,509,500,504,506,505,507,503,509,501,503,507,515,507,501,512,517,511,537,527,531,534,537,531,547,548,550,557,542,549,546,544,504,486,486,507,492,506,517,475,475,477,472,478,486,481,475,477,472,481,479,483,486,476,486,478,483,486,505,518,510,504,500,512,504,510,508,558,552,557,556,565,560,505,519,525,518,517,516,514,510,521,493,501,496,496,497,473,466,466,470,470,466,478,457,465,462,467,473,459,475,461,470,460,455,549,548,566,551,544,553,542,553,556,539,549,540,506,485,483,487,484,471,473,471,472,467,473,469,475,469,475,474,471,472,474,466,477,474,482,481,476,495,479,482,490,478,486,599,606,598,600,596,599,587,596,587,592,602,564,559,557,554,563,555,563,557,549,518,505,508,503,501,502,502,503,477,478,487,477,476,481,481,445,437,442,435,436,426,441,431,431,436,465,454,467,564,573,568,562,567,572,568,565,521,523,515,522,507,533,533,550,553,561,559,555,575,546,564,563,563,549,573,562,551,549,573,520,522,503,520,513,522,518,521,528,523,522,578,569,581,576,584,584,531,544,537,490,500,492,501,495,506,500,492,498,502,493,500,547,542,551,547,543,548,541,547,546,571,572,568,565,573,580,573,573,558,560,565,562,568,547,543,562,549,551,553,543,495,501,499,502,498,495,506,516,504,498,507,500,497,491,516,499,505,452,452,459,460,455,460,441,456,457,452,452,461,459,448,443,465,458,455,459,448,445,443,448,449,535,533,531,528,525,523,524,526,527,528,525,519,521,526,524,534,542,530,538,538,537,528,536,538,527,539,538,537,533,539,535,551,549,563,549,544,554,466,451,464,482,469,536,530,539,540,533,533,538,537,536,541,537,564,569,555,569,569,548,562,561,569,560,560,562,550,556,568,564,564,526,530,521,542,526,526,523,525,542,527,526,514,515,494,503,497,498,498,495,503,502,500,503,503,510,498,506,502,512,504,505,503,505,506,532,538,538,529,544,535,533,533,531,532,504,504,505,502,505,505,509,508,503,533,540,540,539,544,552,538,538,537,552,561,551,561,558,571,557,564,570,562,527,518,519,525,524,528,524,519,534,535,519,557,553,560,562,552,551,526,523,525,525,532,522,523,520,524,532,547,560,557,549,540,553,541,548,539,499,499,490,503,501,500,483,499,497,496,498,488,512,507,522,518,511,515,513,518,507,511,534,547,542,545,535,541,548,542,545,481,466,473,473,476,470,468,469,480,472,472,466,473,481,479,473,485,483,485,484,497,484,475,477,485,486,576,558,565,562,567,536,554,545,561,564,556,556,543,560,559,542,534,539,533,535,539,533,523,534,536,530,535,527,536,475,466,479,473,473,475,479,478,472,473,477,478,480,473,470,467,475,484,479,473,477,477,562,563,564,535,530,537,526,536,528,533,533,533,536,531,567,563,562,551,557,517,520,524,516,520,519,529,506,481,484,480,479,499,495,496,499,495,491,542,543,553,547,545,554,538,539,540,542,547,546,522,519,515,517,524,521,522,530,507,589,596,575,583,596,575,581,589,588,592,587,598,579,590,581,531,532,534,543,539,536,533,534,545,541,538,548,541,546,530,548,536,544,513,514,515,517,514,504,507,511,511,515,515,520,522,520,515,578,574,577,568,576,582,583,584,579,587,567,579,577,582,568,586,583,580,543,545,548,547,536,537,525,528,536,528,525,529,534,529,537,525,539,534,533,534,506,510,507,508,509,528,534,526,527,522,536,531,524,535,534,534,529,532,530,527,524,542,528,529,527,531,525,527,529,536,532,530,561,565,566,571,569,573,573,570,565,534,491,491,497,489,493,497,438,439,446,442,475,466,462,471,471,461,473,468,551,546,559,575,554,557,505,483,498,498,507,507,499,512,494,510,500,501,508,482,486,484,489,481,487,483,481,486,488,484,486,512,500,499,511,499,507,505,501,499,493,508,548,549,535,550,548,554,551,552,548,548,544,551,545,543,550,548,537,564,556,543,560,546,561,551,550,550,545,538,551,553,546,550,485,484,492,494,481,475,489,487,497,474,480,478,498,482,473,551,547,549,550,554,545,551,554,558,557,543,558,552,553,467,469,464,476,482,552,548,553,538,554,542,537,541,544,540,534,551,542,535,542,551,545,542,540,539,547,547,534,546,545,541,546,494,490,483,503,502,500,495,490,496,495,501,499,497,494,492,492,490,490,488,492,503,489,493,517,529,528,532,532,512,518,529,526,532,537,520,461,460,452,451,454,450,456,454,455,523,537,543,533,538,539,542,541,538,546,536,546,540,540,543,542,543,547,539,545,538,541,542,551,545,540,542,548,536,522,516,536,528,527,529,526,535,531,537,532,528,528,536,524,507,513,513,509,516,512,499,503,507,508,510,501,506,501,498,502,500,506,497,535,539,539,533,536,546,565,561,561,507,521,530,553,542,548,539,548,543,538,550,545,531,540,536,540,545,553,515,529,522,521,522,525,518,521,522,517,549,568,561,567,562,564,549,556,547,550,571,477,495,467,468,485,479,471,468,488,521,517,517,520,530,521,532,519,526,523,513,523,519,519,512,520,525,518,519,519,512,512,524,520,519,516,518,521,526,522,529,527,533,533,558,569,573,544,542,544,544,548,548,551,548,511,506,513,511,503,509,504,508,499,510,517,510,469,473,457,470,468,473,495,490,495,496,492,494,534,509,502,496,499,502,500,508,502,503,532,536,529,538,537,534,541,525,538,528,562,567,567,568,565,565,568,554,557,546,551,547,542,562,559,540,551,550,546,560,550,548,556,543,549,559,550,546,520,518,521,529,525,515,522,524,523,518,504,506,500,495,499,508,506,480,475,475,482,485,475,481,480,471,472,480,471,475,476,472,481,479,485,469,488,472,489,478,601,604,609,589,530,516,511,520,516,511,513,510,509,508,508,511,559,564,582,570,562,558,560,562,553,569,544,566,567,555,554,501,503,511,502,504,489,506,497,500,506,497,498,483,501,499,507,513,504,506,510,498,502,557,552,557,557,549,549,556,555,538,534,527,540,536,535,534,531,538,546,531,542,524,528,592,587,600,574,591,587,594,562,557,551,543,564,550,555,552,561,556,554,527,512,524,524,520,507,504,508,504,517,510,510,498,495,504,507,499,502,512,503,507,504,503,503,503,503,497,497,495,506,499,500,492,499,501,505,483,481,484,499,482,482,484,480,452,451,440,440,476,464,467,472,470,467,481,476,477,479,555,568,564,570,555,544,552,547,556,557,486,503,506,499,503,514,504,499,500,498,538,548,536,550,550,545,543,548,549,553,550,553,546,543,542,547,548,552,501,502,491,505,494,505,509,502,503,503,503,509,505,504,496,504,508,541,551,547,551,559,544,549,542,546,549,549,545,564,561,564,560,570,567,561,558,564,571,558,560,563,561,509,510,499,502,513,515,505,506,506,497,508,513,496,496,503,502,497,515,503,504,509,499,496,505,511,500,544,530,535,502,512,511,516,507,512,515,516,507,503,517,507,515,513,516,517,512,515,526,530,517,520,526,527,521,526,583,569,577,570,581,591,582,591,583,525,535,525,521,523,530,597,591,592,581,571,577,584,581,569,583,554,552,552,559,558,564,551,555,559,555,551,553,560,542,554,545,549,556,548,549,547,548,555,553,554,520,520,532,499,497,497,509,497,503,493,496,495,503,500,507,482,481,484,486,482,479,484,487,486,481,476,480,483,481,481,489,489,493,484,455,454,447,454,450,454,464,453,455,456,449,451,447,445,560,558,550,553,561,562,560,550,570,555,582,564,571,469,468,475,463,449,474,476,478,480,467,461,465,531,528,543,537,546,527,545,522,570,559,562,560,556,564,555,564,553,565,548,556,558,562,562,572,566,567,532,531,530,534,533,522,526,536,527,527,538,512,511,506,508,507,513,511,511,515,518,516,506,512,512,505,512,508,508,510,512,506,503,503,530,533,523,535,535,531,536,544,530,541,540,535,524,539,539,549,551,549,548,554,555,547,555,548,541,554,550,547,544,470,463,473,470,476,461,480,457,469,481,476,521,532,533,531,527,524,530,532,531,534,534,529,551,541,544,540,536,540,554,538,534,545,546,545,543,539,534,553,542,543,521,521,518,525,546,546,552,548,547,552,551,550,543,546,502,498,493,498,496,504,513,504,523,518,508,512,515,514,509,515,509,517,513,507,539,549,539,545,552,536,543,536,538,543,541,544,539,544,539,537,544,547,538,535,544,513,506,508,504,512,499,507,496,518,525,523,520,527,522,530,533,528,528,532,553,565,561,552,547,558,550,552,562,555,479,467,492,471,538,540,534,539,550,542,553,536,542,539,526,534,547,545,471,480,489,482,471,475,529,531,552,534,537,541,523,544,538,544,543,549,549,544,555,548,532,537,538,548,562,471,480,517,530,527,516,528,527,517,519,519,526,532,527,529,530,538,536,530,542,536,542,545,544,546,550,550,551,546,542,511,507,507,515,518,508,508,505,504,504,502,506,555,556,555,550,558,551,546,549,535,556,558,538,545,544,551,498,499,491,493,491,493,495,490,498,489,502,480,521,530,523,518,508,552,563,562,564,557,545,570,557,488,479,484,481,484,496,503,492,484,445,434,438,443,437,432,443,444,450,445,441,455,445,442,522,531,531,524,531,528,527,521,527,534,532,526,544,538,533,535,537,534,539,534,536,556,538,537,546,549,553,553,552,546,544,517,517,513,520,519,520,518,511,510,514,509,522,525,521,523,526,530,523,516,526,524,576,535,545,534,541,538,532,542,545,533,526,519,530,537,537,541,532,535,541,539,538,533,522,522,524,518,522,519,526,514,523,525,525,521,522,523,520,516,519,517,527,524,520,537,535,545,538,542,551,553,548,543,545,542,544,552,543,547,553,551,542,547,539,510,499,496,507,510,500,499,502,501,506,496,533,542,540,546,538,527,522,531,536,523,532,530,532,529,534,539,535,537,543,537,539,549,508,506,495,512,516,508,504,500,502,525,513,514,512,524,513,534,587,579,571,591,569,581,588,579,579,582,542,518,524,524,462,455,462,465,468,462,452,450,524,531,524,544,529,533,535,547,551,549,510,509,505,502,533,520,525,524,527,518,515,520,529,555,511,504,512,506,506,515,521,506,513,508,527,526,525,531,538,535,524,529,547,546,548,554,554,548,489,501,511,501,494,500,496,484,505,487,492,488,489,494,496,489,492,487,482,485,493,531,541,539,532,541,537,536,549,505,505,507,496,496,504,503,508,511,498,522,558,550,554,554,563,552,534,558,542,506,495,519,509,501,494,515,496,513,506,495,481,478,478,475,478,473,479,484,477,475,478,483,476,477,475,500,499,488,496,497,497,492,499,495,492,496,486,501,497,540,559,548,546,549,546,545,544,543,544,533,545,540,543,541,535,539,542,536,546,541,539,532,541,546,541,543,541,537,539,542,539,542,514,512,505,535,539,533,548,523,524,526,532,527,554,554,564,556,564,558,560,561,567,554,564,521,576,585,593,581,582,576,577,538,541,531,534,536,539,538,529,541,539,564,564,552,565,507,503,494,511,510,512,511,512,513,512,495,502,507,500,512,592,602,592,606,595,587,594,603,611,596,585,607,587,598,593,608,508,503,504,508,515,518,516,514,514,511,531,522,529,533,539,535,537,547,541,546,537,532,545,539,541,536,549,543,535,544,493,495,511,577,569,562,549,577,575,575,556,562,514,504,511,516,497,503,496,504,512,500,501,499,504,501,502,502,499,509,531,524,527,530,537,533,531,545,543,551,551,552,556,548,555,547,545,495,497,485,477,476,502,495,493,509,483,480,497,499,481,501,462,455,470,457,469,463,573,583,580,579,584,595,534,529,525,538,537,524,536,559,566,561,563,550,573,570,513,529,524,523,522,516,527,517,496,505,503,511,500,507,504,499,503,498,505,507,535,542,537,537,547,542,543,545,545,566,574,504,501,519,508,508,539,531,536,546,532,541,539,533,540,535,539,537,530,548,547,547,536,533,541,542,538,527,547,543,544,535,534,542,539,519,519,526,513,525,519,513,523,520,516,519,516,519,519,517,525,514,520,512,522,511,514,539,548,547,550,549,557,549,555,497,506,504,508,509,503,509,503,493,494,499,509,477,475,481,470,478,480,475,470,484,480,475,471,484,475,474,472,481,470,465,474,471,470,467,473,474,468,472,473,480,471,470,475,468,483,475,467,474,478,470,468,559,538,560,545,543,563,534,553,564,546,535,550,513,512,525,509,504,509,510,514,513,514,505,584,561,584,570,579,567,521,528,526,518,511,521,523,532,485,485,485,494,487,490,495,485,498,493,491,504,497,500,500,498,501,499,493,500,493,503,501,505,505,506,509,512,506,505,508,508,512,512,508,513,538,521,524,518,529,527,521,530,527,533,535,533,530,533,532,545,542,542,533,550,543,540,513,499,503,504,509,559,564,565,549,556,553,553,522,521,521,513,516,519,514,510,514,513,502,508,511,507,516,511,515,469,479,486,489,480,483,485,481,478,489,484,476,479,475,485,482,469,470,455,464,461,468,463,462,468,489,498,487,499,507,499,494,493,490,493,492,496,568,568,580,572,566,575,569,515,501,499,501,498,495,502,501,497,503,497,502,508,516,506,500,509,567,577,584,571,581,509,504,498,501,504,508,499,500,496,492,488,501,492,496,504,496,507,497,572,560,564,576,570,565,579,559,560,558,556,495,505,494,511,510,502,527,504,509,501,481,481,478,479,480,479,490,464,478,465,473,483,483,485,482,497,501,509,526,524,535,530,527,531,527,534,530,537,531,532,535,536,536,539,540,536,539,538,545,549,537,546,546,538,535,549,553,548,553,552,540,493,500,499,492,480,487,481,482,484,489,482,484,484,502,498,497,503,527,524,522,523,531,527,526,536,521,519,536,523,527,526,533,532,533,515,534,533,539,546,544,548,540,510,510,497,511,517,509,502,536,530,526,532,533,533,529,532,526,524,522,531,527,579,564,556,556,555,549,559,564,546,549,551,498,495,507,508,498,500,489,512,512,517,511,473,476,477,478,477,481,481,481,474,480,477,477,471,478,469,473,473,473,483,477,475,486,483,485,484,495,485,485,480,482,493,484,557,554,552,541,557,559,564,557,571,560,518,523,512,513,543,545,549,550,541,550,553,551,546,559,529,514,516,523,522,510,506,440,454,462,465,460,448,456,449,450,452,448,453,450,452,517,529,535,532,527,556,569,561,557,574,565,561,565,559,569,544,547,551,555,543,559,550,547,558,553,521,534,519,518,532,525,524,523,521,526,508,507,505,501,515,510,502,507,510,509,505,509,501,497,503,503,499,496,497,483,476,486,491,471,474,483,483,476,509,500,500,499,488,489,502,499,507,494,500,504,486,493,496,498,503,518,509,496,499,559,554,563,544,555,557,560,547,559,552,549,554,547,561,544,553,550,550,552,549,551,547,546,547,544,551,543,546,527,493,480,484,474,479,490,489,489,541,550,545,546,556,542,543,536,544,547,550,549,552,556,566,561,554,543,551,552,563,551,554,515,508,523,519,517,518,514,524,520,509,512,517,497,509,509,510,510,515,507,509,506,510,513,506,509,509,504,509,513,513,514,532,529,522,528,541,527,527,537,534,532,536,534,524,534,548,536,555,544,544,550,540,551,543,540,543,549,507,510,510,513,513,502,511,515,506,510,509,509,514,515,514,563,565,584,480,483,484,487,489,480,482,481,480,481,482,486,481,481,477,464,470,473,465,469,560,569,545,557,569,557,560,556,568,520,521,522,529,558,558,573,555,570,553,566,559,555,546,553,559,555,546,547,545,548,506,490,498,502,492,500,494,488,517,508,498,502,504,507,503,503,543,542,543,550,545,545,541,542,542,546,548,551,539,546,545,543,575,592,569,552,574,554,543,568,565,568,567,557,575,507,494,491,498,485,494,481,501,491,497,482,494,487,484,489,538,521,519,520,521,512,519,518,529,522,533,528,531,532,528,528,529,536,561,562,576,564,556,566,570,563,500,515,505,508,513,496,512,508,512,503,502,498,510,500,529,533,536,537,522,530,534,539,531,533,531,524,522,534,533,528,539,544,506,504,513,505,506,508,509,495,510,505,509,506,487,500,511,500,505,509,511,516,534,523,527,531,531,528,531,525,531,528,550,559,551,562,546,551,556,552,546,548,559,550,549,544,496,489,493,514,496,502,489,497,495,505,516,506,498,498,504,539,526,525,533,534,531,528,523,530,533,520,530,498,515,504,500,551,571,547,567,557,547,568,549,556,555,552,541,567,567,556,526,520,528,518,522,529,524,538,550,549,541,547,552,544,544,546,536,549,533,552,543,566,508,499,504,496,501,495,496,505,491,489,498,498,487,512,474,469,457,465,469,462,469,554,567,552,543,549,556,552,558,562,550,553,561,551,545,561,546,547,553,569,548,479,467,482,542,538,533,533,543,550,535,549,532,537,545,543,543,547,541,539,528,547,540,558,558,545,547,543,548,548,552,526,534,536,540,476,489,498,498,490,494,486,545,547,543,543,540,541,539,571,481,493,507,487,497,555,543,559,562,562,552,548,494,499,507,508,549,552,546,540,562,537,550,538,555,558,531,545,561,545,508,505,506,509,503,557,564,567,579,557,546,556,542,567,559,563,520,529,527,521,529,522,510,520,529,518,524,526,515,546,545,540,555,547,544,512,507,506,515,501,503,511,508,502,509,511,512,513,507,549,562,548,540,555,548,557,547,538,559,547,542,549,543,541,543,535,548,547,540,545,540,551,555,549,543,543,540,531,535,529,533,524,534,554,564,549,559,547,558,507,500,493,490,500,482,486,498,580,568,558,556,586,571,563,569,502,507,501,510,512,498,496,486,502,498,491,471,462,468,463,468,462,472,469,462,462,460,467,566,573,565,567,551,497,517,498,501,553,556,547,571,484,501,500,491,494,503,493,489,495,493,501,502,489,505,503,491,493,494,495,510,507,510,510,506,499,509,504,497,513,503,502,507,510,507,506,512,504,551,538,540,543,567,559,569,562,561,559,562,572,571,568,572,563,575,555,562,566,506,510,504,494,546,544,534,544,532,538,544,542,538,535,534,538,563,569,577,577,574,572,574,572,557,550,551,549,548,557,545,548,551,549,551,490,487,463,464,461,459,455,465,466,466,458,456,457,469,457,562,565,556,545,559,553,549,557,546,565,554,551,553,556,556,550,546,542,551,552,560,552,555,545,542,554,559,550,549,550,540,494,491,483,505,487,491,494,478,486,584,581,590,577,588,589,585,584,580,531,539,518,528,523,511,520,541,471,491,466,486,489,489,547,545,557,550,553,549,542,552,552,552,554,547,555,511,517,516,521,523,516,502,503,537,546,546,544,544,547,540,538,542,536,536,563,568,542,542,548,557,547,547,547,548,511,504,506,502,495,505,509,502,512,452,470,463,457,471,457,457,478,467,460,477,538,541,550,546,532,552,556,548,550,559,545,551,542,479,473,475,471,461,552,559,554,556,564,547,556,505,497,508,498,505,497,516,507,504,499,496,508,501,499,495,488,503,492,493,497,519,528,534,533,528,526,526,520,526,522,518,533,532,526,527,528,522,531,531,529,529,528,555,558,555,555,554,555,554,550,550,562,558,558,556,571,561,551,560,558,555,553,556,567,495,501,496,480,494,495,501,505,508,509,509,498,503,509,499,513,517,512,521,516,513,515,512,516,510,524,514,514,510,554,564,563,557,552,561,562,570,501,529,516,510,497,513,478,476,468,477,477,477,478,478,475,469,475,479,464,450,451,470,455,449,466,461,460,457,442,459,457,458,455,582,588,562,580,530,536,539,535,540,548,532,530,532,542,538,558,565,566,566,578,560,565,579,558,588,567,568,556,479,493,493,489,499,485,522,539,525,524,530,537,544,521,534,532,539,522,533,537,539,521,534,536,528,529,533,526,541,537,531,528,534,534,540,533,558,561,568,571,570,570,569,573,554,563,569,525,527,532,534,534,533,566,557,551,564,556,557,567,573,557,563,503,504,480,509,494,491,497,505,489,492,499,494,452,459,455,453,452,459,461,454,471,458,458,453,466,455,456,460,508,501,508,548,547,541,521,544,541,503,506,497,501,501,508,504,500,545,556,543,544,481,481,492,490,494,488,492,496,496,500,490,541,535,535,537,535,542,543,541,529,539,537,540,534,531,552,566,557,561,565,563,552,571,561,563,524,526,531,527,528,532,524,520,523,523,527,529,559,570,557,563,548,555,545,548,554,549,544,554,546,551,545,553,494,504,505,514,518,505,499,455,449,453,450,462,457,455,451,459,457,450,455,554,557,560,561,551,551,556,544,556,563,548,553,554,555,548,561,558,554,549,552,555,558,556,565,550,548,553,552,555,555,552,551,491,490,488,492,493,492,486,490,513,493,506,487,485,484,473,470,477,461,466,468,459,472,466,466,560,552,553,547,549,547,566,557,546,553,552,507,472,490,489,509,491,441,446,454,440,449,449,443,444,462,439,460,549,536,548,545,549,529,541,539,537,543,535,553,535,560,542,541,550,549,553,528,546,544,503,517,510,507,518,504,505,502,497,512,512,514,557,561,569,570,561,555,569,568,564,557,558,522,524,522,517,525,523,518,519,523,513,523,536,542,539,538,543,534,540,538,544,538,530,543,542,535,542,539,531,536,556,555,560,563,564,552,563,553,566,562,567,510,515,506,490,494,508,503,502,498,503,500,511,498,505,500,501,504,503,506,499,501,492,504,477,487,480,488,477,477,483,487,482,482,481,486,477,474,483,478,472,476,481,492,492,487,497,479,575,558,568,572,572,561,570,575,565,556,562,571,559,560,568,575,572,562,566,560,569,583,567,510,528,522,517,502,520,509,533,505,523,524,528,482,480,483,483,483,484,475,482,481,481,480,473,481,465,463,465,462,448,451,456,463,449,448,448,438,446,442,456,446,450,444,437,452,472,480,475,473,468,467,478,478,473,461,475,472,474,479,469,592,587,607,600,589,589,606,608,596,584,591,596,580,542,529,534,533,525,539,534,533,538,532,535,537,536,538,562,565,569,552,557,553,567,568,564,559,577,564,567,557,558,556,512,511,512,513,516,506,517,521,506,498,473,470,462,461,467,452,462,459,458,459,460,466,460,466,463,458,463,462,464,477,477,577,563,560,557,567,559,573,570,552,580,532,525,534,515,514,512,530,517,530,511,511,508,512,508,504,497,509,505,500,509,504,503,504,508,502,507,501,505,500,507,508,500,502,491,486,493,496,488,464,462,462,467,462,455,463,486,488,489,490,494,482,494,491,485,495,486,489,530,530,524,535,530,535,530,541,549,560,555,556,536,547,557,540,568,562,494,500,491,483,499,496,495,498,498,486,495,500,482,559,561,560,552,562,555,561,552,556,555,573,546,563,568,568,567,578,474,478,464,482,466,473,522,530,535,549,535,538,529,546,544,536,537,539,539,542,546,548,543,541,527,539,539,541,546,547,545,541,545,539,556,546,542,497,498,498,491,498,491,501,499,503,489,496,487,506,494,502,558,544,564,545,548,545,563,563,558,533,544,505,484,479,482,477,553,558,554,559,546,550,545,521,538,549,535,541,543,533,550,532,538,551,542,537,529,540,492,488,477,449,539,546,538,554,552,548,547,542,548,542,542,543,550,555,518,511,516,519,502,495,502,503,508,504,497,497,501,507,508,508,502,503,507,500,550,537,543,536,547,540,541,544,541,539,569,564,567,567,575,531,535,526,531,542,531,530,531,531,531,532,534,541,530,536,525,530,541,511,511,513,511,520,518,511,509,509,504,503,503,499,540,546,540,547,543,546,542,534,551,564,554,561,564,568,564,556,568,567,563,540,543,539,545,498,497,507,453,456,456,451,447,461,451,458,462,453,447,491,490,491,490,492,540,536,549,541,544,551,545,535,544,537,547,545,543,544,539,544,571,558,560,493,481,496,478,506,476,510,499,545,542,556,554,558,559,554,551,551,546,552,542,541,551,550,548,545,523,522,521,561,566,560,555,544,543,545,546,542,550,544,547,538,546,542,547,511,495,506,496,490,495,499,489,521,527,525,535,538,520,531,533,534,521,524,545,544,544,555,540,549,558,563,556,501,495,501,494,501,497,501,510,496,500,499,545,542,545,548,552,544,542,553,509,516,511,509,515,518,512,527,529,521,531,520,529,529,529,526,528,586,600,583,571,585,593,591,591,591,589,589,601,579,578,591,583,554,551,546,555,556,555,546,548,546,546,502,500,498,498,483,489,495,489,496,498,504,495,488,498,528,526,528,524,522,530,531,528,533,527,595,589,586,589,585,583,592,590,589,592,586,583,592,591,554,554,556,554,551,549,555,549,549,559,541,496,487,484,486,483,500,493,470,462,474,477,462,464,479,564,558,549,556,552,549,552,550,554,546,548,540,550,541,549,498,506,509,467,468,474,467,469,466,474,477,465,473,463,468,473,464,470,470,470,473,465,461,468,467,470,465,467,543,555,540,565,542,541,543,553,524,519,524,524,527,524,553,563,570,548,555,563,552,557,551,558,494,497,511,510,495,503,495,500,501,500,499,450,448,452,461,455,445,457,493,498,496,548,536,543,547,549,517,517,518,511,520,517,515,519,510,518,523,519,518,512,516,531,540,536,536,536,535,566,551,552,556,561,560,565,556,566,502,509,494,503,504,451,455,454,458,466,465,461,462,460,455,464,457,566,555,569,563,566,562,566,463,453,467,476,461,473,480,474,463,477,466,482,475,479,485,472,542,537,543,551,545,548,547,553,550,496,500,515,485,482,486,502,493,464,449,461,457,453,455,461,463,467,462,456,460,454,469,455,503,510,512,504,510,511,505,516,506,513,542,539,532,518,505,505,501,511,502,507,508,510,557,569,564,571,554,561,587,496,473,490,491,483,483,475,533,544,525,527,520,522,526,518,550,538,539,546,548,497,500,500,496,509,490,496,533,550,536,563,578,567,567,579,568,565,552,563,557,569,555,492,491,500,505,502,497,502,513,513,538,542,540,538,544,533,540,544,538,539,548,538,571,569,564,568,563,570,563,526,521,529,534,534,531,526,521,515,520,532,521,535,530,529,532,533,516,521,526,495,495,482,487,491,499,493,479,495,493,492,491,500,594,582,596,596,595,604,602,606,603,576,534,545,531,533,536,536,533,539,538,528,566,559,562,557,565,548,563,529,542,533,541,531,537,532,534,541,556,554,559,557,559,548,554,566,558,569,561,554,556,559,563,504,480,494,496,501,507,498,503,492,496,497,502,508,499,491,496,500,494,489,496,491,496,568,570,567,580,577,564,578,582,579,589,578,574,565,579,577,579,526,525,526,535,535,520,504,514,508,486,474,480,483,477,470,474,461,467,458,463,473,559,545,560,551,559,553,570,562,547,558,547,563,563,550,555,488,467,473,481,480,468,482,480,481,474,532,548,531,543,538,553,551,545,540,535,546,551,542,550,552,550,541,550,535,545,474,468,469,467,479,477,489,472,480,473,482,476,478,477,465,475,481,556,569,559,557,553,569,550,558,555,565,515,505,492,512,514,517,503,508,505,499,513,499,501,504,498,501,500,504,496,464,454,468,466,469,464,469,467,460,463,472,462,467,463,457,495,501,496,491,497,494,501,495,494,557,544,554,531,528,538,527,535,563,558,575,570,560,577,556,574,564,568,499,491,502,499,508,513,498,514,477,479,485,485,484,477,476,479,489,480,484,483,496,504,492,505,498,505,497,504,484,480,485,474,480,484,464,457,454,468,456,476,464,465,465,465,505,517,508,516,511,515,514,505,502,513,511,516,505,512,502,507,537,527,542,550,551,549,541,535,506,502,506,506,508,505,506,504,494,500,564,565,558,557,570,548,551,569,563,554,571,555,555,563,559,553,503,512,499,501,501,587,573,574,578,579,584,553,546,551,549,560,559,552,556,551,552,547,559,554,562,551,545,549,557,552,554,547,511,530,516,519,470,481,468,481,474,472,476,479,479,472,485,476,470,455,467,459,466,456,455,456,454,457,463,459,541,552,557,552,547,547,574,530,527,529,526,521,516,516,523,526,538,541,540,541,540,542,541,527,545,531,531,531,530,529,534,537,533,528,531,560,560,564,549,551,560,557,559,572,562,561,564,560,556,567,490,492,497,482,501,492,495,493,499,489,485,483,482,483,483,479,474,487,465,475,477,478,471,471,604,595,601,607,592,599,600,608,596,601,594,601,618,595,593,595,557,541,530,542,527,544,461,474,476,478,480,475,475,469,470,488,513,502,507,505,506,505,507,518,548,549,485,489,472,482,487,491,482,479,476,481,485,478,496,434,436,425,438,533,532,527,522,530,519,569,552,566,558,567,570,570,561,523,532,518,522,517,510,529,494,500,499,487,489,501,496,491,488,503,488,615,588,586,600,597,575,595,586,581,598,566,562,555,555,555,553,549,553,546,544,555,551,527,538,538,533,543,541,537,533,528,531,507,505,504,497,501,491,511,492,506,489,448,460,465,463,457,459,467,463,465,468,467,454,469,473,466,459,460,466,462,464,462,461,442,446,445,463,433,439,453,448,447,428,438,434,545,548,552,542,543,538,549,540,552,562,548,538,550,544,534,537,530,477,480,484,470,469,475,476,480,476,477,551,539,561,547,557,553,539,556,542,558,548,548,553,557,560,556,555,558,560,562,560,565,549,555,562,555,497,503,497,476,477,479,471,477,470,478,479,477,488,588,586,605,589,564,550,552,547,551,555,544,537,540,540,539,531,534,500,492,503,499,494,487,492,492,498,491,479,486,491,485,489,481,493,485,483,485,491,569,552,575,571,494,501,494,485,495,488,492,495,493,496,496,492,489,493,566,573,554,563,549,572,581,589,514,523,522,514,516,513,507,518,507,506,523,512,526,508,527,514,452,467,464,460,468,467,471,472,467,458,465,467,472,464,468,473,470,469,464,461,448,442,435,441,446,444,449,448,447,497,501,503,501,490,500,507,493,493,501,496,568,569,568,562,565,566,568,572,560,558,551,544,562,555,556,552,481,499,495,496,495,501,503,491,480,460,465,467,461,464,450,460,470,466,473,468,535,540,536,537,535,544,535,532,543,544,541,541,544,551,549,557,541,531,553,547,545,544,550,545,535,544,549,510,508,506,506,502,507,500,508,515,511,516,508,509,511,575,569,563,566,548,570,566,560,559,549,559,568,574,553,555,561,574,551,551,571,477,466,488,483,476,484,462,472,483,468,490,470,477,477,485,479,480,471,477,568,566,568,557,558,570,565,582,576,565,555,575,568,558,490,498,500,505,520,512,512,506,445,453,454,448,458,462,489,565,565,566,562,574,571,566,570,514,526,524,528,534,532,530,528,529,527,532,525,524,489,487,478,472,469,482,480,472,481,472,478,470,470,508,509,500,508,497,501,504,497,508,508,535,545,534,538,543,527,537,550,461,474,471,471,472,479,475,493,504,499,504,516,489,505,532,528,539,548,538,528,550,536,537,546,535,538,533,544,537,529,545,545,480,498,494,495,498,495,493,497,495,490,499,492,547,542,538,534,540,545,531,540,537,535,543,539,539,527,531,540,540,539,529,567,563,556,548,566,567,552,525,523,523,519,524,543,540,549,511,505,512,510,514,499,497,500,489,501,498,494,493,498,487,494,493,494,498,533,458,482,476,466,469,473,486,486,480,470,481,476,476,474,478,556,556,538,545,543,514,504,518,523,511,512,516,510,510,544,540,538,540,534,547,538,540,542,540,545,541,501,516,537,529,542,533,537,527,537,532,529,539,525,534,540,538,542,537,533,530,526,537,532,530,534,528,526,529,533,530,542,548,554,547,548,548,532,548,533,544,541,539,542,515,492,496,492,502,500,511,509,500,547,567,562,552,558,562,554,565,526,512,518,514,505,521,515,506,519,516,501,509,506,489,498,493,497,492,491,497,493,491,489,493,488,492,492,517,506,498,498,513,504,505,513,544,532,533,528,525,526,528,530,525,529,530,526,561,555,561,572,575,558,559,560,564,560,557,560,559,515,525,510,507,519,507,522,514,484,476,484,479,484,486,483,483,485,484,494,492,494,487,493,498,488,488,498,536,542,540,539,541,539,530,535,543,551,563,553,547,548,562,563,548,554,558,559,544,543,547,550,540,549,553,480,483,472,476,467,466,481,480,566,555,555,556,572,561,551,557,570,564,554,517,513,498,503,513,504,507,502,507,501,500,499,469,466,465,464,472,470,462,472,474,471,467,470,471,466,463,475,473,465,465,478,475,541,544,541,562,546,546,530,540,525,518,525,517,528,527,521,521,522,519,525,546,545,552,553,503,495,502,493,495,496,495,491,496,491,459,467,453,460,465,468,472,466,464,461,499,494,499,495,489,498,491,500,496,494,494,500,502,489,503,522,518,516,521,512,512,516,514,514,509,505,513,557,553,548,547,555,552,561,554,556,545,555,548,557,556,555,551,553,544,547,548,535,541,548,548,533,553,548,540,508,504,513,513,512,508,507,509,514,507,512,497,568,560,565,559,553,558,505,514,499,517,504,505,504,510,508,498,551,547,540,533,543,555,546,542,544,541,550,541,559,542,555,550,544,544,551,549,537,543,513,517,510,511,513,501,519,512,507,507,519,530,535,590,580,590,583,572,595,585,582,581,591,590,577,583,542,530,530,470,457,460,472,473,544,549,545,536,540,543,542,541,538,543,531,538,583,515,528,538,522,521,453,467,448,458,455,454,459,461,516,523,514,526,521,521,514,527,516,530,528,540,533,534,530,525,529,527,533,535,575,573,572,563,570,567,572,570,564,540,540,546,550,541,544,546,541,545,544,541,543,539,539,522,549,501,492,498,493,497,497,505,510,471,471,474,469,464,466,468,466,458,474,476,471,482,469,478,477,502,500,500,500,500,501,494,503,492,492,494,497,487,482,492,491,490,488,477,485,488,451,445,455,454,446,451,453,451,452,445,460,448,460,450,510,491,501,506,508,505,503,494,497,511,495,494,498,503,504,545,548,553,551,554,550,547,552,543,558,548,551,541,540,530,503,510,502,503,500,508,500,510,525,524,462,470,465,470,461,468,470,462,465,468,459,467,461,468,474,473,468,460,467,473,454,458,455,457,453,467,455,465,543,547,543,518,528,530,545,527,522,512,516,514,526,540,524,529,535,528,532,465,452,468,560,557,568,553,562,553,570,550,560,548,555,569,568,556,544,551,558,563,552,511,504,501,504,492,511,496,482,496,497,498,499,497,501,495,490,503,504,503,508,513,500,505,564,562,571,563,565,563,571,563,502,516,507,494,493,502,501,483,512,501,497,497,485,506,503,503,496,509,514,503,446,442,454,457,455,461,457,449,464,544,562,552,555,559,553,556,565,562,552,550,560,558,543,496,506,503,494,508,509,505,493,493,493,498,498,483,503,497,502,508,558,560,577,563,573,578,574,520,511,508,509,505,512,490,497,496,502,493,493,493,495,490,499,494,525,529,533,541,533,540,469,480,477,489,500,486,488,538,551,553,507,510,507,517,518,519,501,499,498,505,498,498,502,506,501,539,527,538,548,533,546,535,539,542,536,544,544,569,494,510,509,504,500,506,496,512,512,497,504,504,501,509,511,501,492,506,497,496,536,536,534,524,530,521,535,534,542,543,529,529,529,533,523,516,521,524,520,518,523,528,523,509,517,511,515,524,521,537,513,526,536,531,531,528,557,572,567,566,570,578,578,574,563,565,499,506,513,539,547,544,539,537,548,535,542,543,551,535,539,538,542,541,534,532,537,542,511,498,516,506,509,504,505,514,504,506,503,500,504,494,511,502,497,510,502,496,503,496,502,510,500,501,499,515,520,515,520,528,510,520,526,527,525,519,526,524,522,523,525,512,526,519,525,517,519,518,529,533,527,534,532,532,536,532,556,562,573,566,563,564,560,572,564,566,550,574,572,571,564,529,471,482,478,484,477,481,478,483,494,486,489,471,487,471,567,550,553,579,558,554,561,556,556,559,499,484,491,501,494,501,502,504,493,482,476,464,464,469,471,543,562,554,536,542,566,549,542,546,483,465,478,480,484,542,567,577,568,574,574,570,569,573,517,512,507,506,491,500,506,507,507,509,510,495,504,506,513,530,529,541,538,545,532,536,549,543,539,540,539,538,535,525,548,549,532,543,540,537,547,544,541,541,548,543,544,543,545,552,548,549,536,549,504,515,498,502,515,506,509,512,506,508,506,505,540,536,541,540,546,561,557,566,562,564,557,501,510,503,511,508,449,545,545,551,549,559,553,544,561,544,540,549,537,551,547,543,547,541,542,551,540,543,542,537,549,535,548,538,545,523,531,524,522,523,526,523,530,534,516,519,522,524,517,525,514,514,520,542,544,545,542,543,541,546,550,540,553,542,542,548,557,558,562,566,560,565,556,556,561,556,558,503,504,506,501,494,503,506,504,516,504,507,505,505,502,511,508,513,499,507,494,502,494,495,498,496,494,492,558,555,563,560,561,560,554,521,525,523,526,530,524,528,517,525,518,533,529,497,489,501,497,498,486,491,592,580,597,591,602,597,580,592,578,599,597,583,538,532,541,536,539,539,547,533,540,536,532,536,538,538,507,506,500,512,507,550,556,550,552,555,558,547,556,559,544,548,550,542,554,541,539,557,511,519,516,516,514,518,532,575,552,547,551,555,558,557,571,553,548,543,556,542,519,522,531,530,530,521,522,526,519,530,501,501,503,498,500,503,494,502,505,509,501,502,504,504,499,503,509,537,536,561,577,558,567,575,567,571,577,562,566,576,570,568,559,569,562,573,533,537,541,534,519,534,536,467,472,468,466,477,466,470,446,447,549,554,554,536,559,549,548,554,546,543,542,543,547,544,543,558,557,541,550,494,494,496,497,485,496,490,488,483,565,560,567,552,539,558,573,557,551,552,564,549,559,487,494,482,477,472,490,482,491,496,487,480,548,559,551,545,548,538,550,545,551,557,533,549,549,517,515,514,522,509,516,519,513,515,525,530,544,520,540,484,488,490,476,483,491,495,481,486,488,544,542,549,558,546,540,557,510,511,507,516,516,529,534,534,526,521,540,530,529,520,523,529,526,564,561,555,553,579,512,508,511,510,509,520,521,517,516,514,531,517,545,554,555,518,521,521,531,529,521,544,555,488,498,495,495,501,492,489,497,498,494,496,496,488,501,497,584,590,579,560,569,577,567,487,496,500,494,486,492,497,488,500,501,549,551,553,546,556,550,553,556,555,555,553,545,546,547,553,553,560,460,553,548,554,551,546,559,548,547,554,554,552,558,558,562,562,507,491,494,514,521,512,505,519,512,514,516,511,519,506,516,508,512,505,517,522,542,545,543,533,533,533,529,530,541,533,545,532,536,541,540,544,533,540,496,485,479,482,488,493,492,487,565,558,555,552,502,496,492,518,510,516,508,490,497,495,464,467,464,467,464,464,453,468,466,466,463,466,458,461,474,459,451,458,465,456,455,451,458,457,464,448,472,470,457,454,460,460,581,578,582,596,570,578,578,581,594,569,590,510,514,509,493,508,512,510,498,501,544,541,534,544,538,545,542,552,545,537,546,546,545,547,535,551,548,540,538,543,545,540,552,546,541,545,537,534,546,545,537,547,551,535,508,510,517,510,503,511,506,510,499,506,506,509,512,499,503,570,566,565,554,559,561,557,515,526,517,507,507,501,509,499,481,474,481,478,479,478,511,504,504,506,506,509,551,558,550,555,547,509,501,512,500,501,503,498,497,496,498,503,536,547,541,548,540,541,553,548,543,540,547,565,554,563,567,553,572,569,563,566,504,499,503,505,509,504,504,507,507,507,499,511,508,493,524,523,531,538,525,537,521,525,524,519,520,522,518,512,519,521,515,527,525,522,527,520,515,514,515,521,540,535,539,539,535,524,535,541,535,533,533,540,532,537,526,539,532,535,538,545,537,551,543,555,537,525,522,527,525,523,517,534,522,520,521,526,535,535,538,532,535,529,471,468,463,453,456,462,463,456,459,452,454,456,444,466,461,455,458,464,467,466,526,522,526,527,518,536,526,520,517,528,533,529,520,526,541,536,544,543,543,550,551,553,554,541,545,545,555,541,538,512,527,510,521,510,515,505,514,510,511,510,519,520,527,519,517,510,520,584,596,577,577,569,575,515,577,582,590,580,579,587,577,578,578,588,577,585,571,536,536,539,513,514,532,548,540,518,513,502,542,548,483,472,462,474,473,478,475,484,478,484,479,480,567,565,550,565,577,578,558,568,565,567,574,471,475,475,476,472,489,460,483,496,483,466,481,481,467,461,486,487,481,482,557,560,554,554,551,552,547,563,551,549,557,562,555,560,551,565,561,553,559,569,553,572,523,533,525,527,536,523,523,535,507,519,514,507,510,511,520,512,518,509,512,518,508,510,518,516,501,500,508,502,511,503,503,506,497,468,478,474,478,477,478,486,491,481,482,475,471,484,598,595,603,586,589,597,598,584,582,592,593,582,592,533,530,537,560,561,554,555,554,563,554,568,561,561,569,566,500,497,490,496,507,505,501,509,506,498,514,498,506,515,496,519,495,507,500,457,451,458,454,454,451,455,456,458,445,453,465,459,454,459,454,455,460,551,547,546,549,554,564,539,561,550,545,546,554,568,569,563,565,508,511,534,539,536,542,531,545,543,538,578,572,576,572,560,553,575,559,535,528,545,538,538,544,526,536,537,535,532,573,556,564,555,578,566,566,561,547,560,572,562,561,558,561,574,528,517,525,518,523,518,504,523,508,483,491,486,478,492,478,487,481,476,481,484,488,482,492,476,488,479,483,485,474,469,467,472,470,470,470,466,469,466,467,477,439,437,428,536,529,534,548,525,535,529,542,528,537,530,573,555,557,561,561,562,563,557,565,531,537,537,536,536,531,529,533,524,537,532,524,530,526,530,536,527,524,529,536,562,549,564,556,571,546,565,552,556,556,581,551,483,476,485,468,471,476,486,475,463,475,466,466,451,468,448,453,596,614,603,592,505,497,503,491,499,510,508,513,540,546,544,529,532,538,537,539,573,569,567,557,568,571,565,551,558,558,563,557,551,559,562,550,585,566,574,573,575,563,564,529,529,534,528,525,569,557,564,562,491,485,497,491,489,497,495,488,510,492,480,483,495,502,500,496,496,480,506,455,458,456,450,468,458,451,447,457,462,464,454,593,550,580,577,568,568,567,560,590,554,565,578,542,534,570,561,575,571,568,565,566,566,575,566,562,572,522,516,487,504,510,516,515,508,513,509,508,513,513,510,511,554,565,552,563,563,548,558,496,509,508,501,498,502,485,503,495,490,498,491,497,488,464,452,470,469,467,473,477,461,464,460,460,457,459,457,465,456,504,550,555,545,547,549,550,544,552,548,563,574,570,573,578,559,562,572,586,533,521,518,527,519,533,528,526,521,534,520,522,517,521,484,481,481,475,488,486,485,491,491,492,496,489,499,496,497,503,496,497,499,509,499,494,490,491,589,593,576,574,582,559,577,577,580,580,582,572,584,571,582,565,482,499,493,482,496,489,489,498,506,500,502,553,562,553,541,553,548,558,559,544,549,534,555,547,543,546,520,510,515,509,516,510,511,514,507,508,571,557,574,577,557,573,593,590,567,573,563,552,490,514,493,485,489,507,493,502,487,561,567,568,566,566,567,554,558,572,561,557,563,558,570,556,563,556,565,557,562,566,508,498,496,492,490,496,495,490,498,504,493,446,443,454,440,448,525,527,530,531,528,525,522,521,530,525,535,530,521,514,516,520,519,525,511,518,517,516,520,520,516,514,515,523,516,524,515,531,533,519,527,536,569,565,567,555,569,570,552,572,562,576,567,561,517,518,530,527,517,558,562,554,563,554,559,569,549,560,561,575,562,477,470,479,485,476,475,471,481,474,471,469,484,470,475,471,474,517,531,544,531,531,538,542,536,549,496,505,525,516,504,505,517,466,463,465,465,471,469,470,468,469,471,469,459,464,447,460,455,456,459,458,446,448,447,450,458,449,444,441,449,446,501,500,498,493,497,496,501,514,509,510,513,509,513,517,510,508,514,516,513,502,508,507,511,528,537,525,527,532,545,534,534,535,530,527,528,521,537,531,548,540,549,558,554,564,553,565,488,483,492,484,494,488,488,483,496,496,497,489,464,463,540,536,542,534,539,531,542,539,540,529,540,532,546,534,531,546,538,526,525,526,523,523,517,537,516,522,537,544,551,544,504,495,507,504,506,506,508,497,505,494,495,507,502,500,497,499,498,495,497,493,505,497,499,500,556,549,556,563,561,569,567,562,554,563,568,556,552,554,530,524,516,532,531,526,527,498,500,512,506,503,505,502,502,498,502,561,551,553,555,546,548,540,556,555,553,546,552,559,554,550,499,494,495,501,495,493,498,495,506,499,549,548,541,533,541,553,542,539,545,541,549,550,545,541,503,499,509,491,456,454,466,448,451,460,434,446,453,442,448,447,454,440,456,452,454,447,444,459,542,532,532,551,547,543,547,545,542,540,539,570,568,581,562,567,565,561,562,563,563,565,568,552,546,549,548,551,546,543,545,550,545,542,551,544,556,545,545,554,559,549,552,547,552,551,549,550,495,497,501,497,508,493,491,498,510,518,511,505,509,519,507,553,545,551,559,546,546,554,558,533,490,506,474,491,502,473,465,465,478,472,472,533,548,536,537,535,548,536,551,535,525,545,538,545,547,544,532,514,515,518,516,507,516,516,521,513,512,509,510,537,567,561,562,564,568,569,554,571,565,555,569,573,571,502,507,505,498,505,503,501,492,496,495,499,508,555,556,559,560,552,551,562,557,547,552,553,556,535,549,561,554,552,552,553,548,545,556,551,539,546,546,528,525,517,522,514,527,547,546,564,550,523,520,518,520,523,522,516,516,527,461,456,464,469,458,465,467,551,546,551,545,542,549,564,546,547,552,555,557,495,506,495,489,488,477,474,477,480,486,480,473,485,481,480,483,483,492,501,500,495,496,496,493,484,479,471,467,458,475,469,467,487,490,487,484,494,490,489,491,488,489,491,482,489,488,507,508,513,509,510,518,513,514,504,518,513,507,551,561,552,553,554,556,551,548,548,559,550,554,557,560,573,534,531,526,534,521,538,534,521,507,508,515,517,516,512,517,517,515,514,503,508,503,498,505,504,494,500,496,500,500,498,496,483,498,488,486,488,480,490,487,489,483,496,511,519,516,521,520,519,524,511,520,519,526,519,520,506,525,516,514,514,518,524,574,586,590,581,569,566,570,574,584,538,537,532,539,541,529,540,533,539,542,505,503,507,505,501,508,497,507,503,503,505,509,505,552,563,552,566,557,558,549,547,553,552,549,541,546,552,549,566,508,485,482,497,493,497,464,459,463,464,461,459,456,452,457,468,462,519,508,516,567,555,562,570,561,566,572,555,563,564,570,560,489,495,489,494,511,492,484,489,482,494,487,487,483,495,491,498,491,488,487,560,569,565,569,568,574,508,502,512,511,521,513,475,461,460,462,468,472,458,462,470,466,463,449,449,442,440,444,444,446,439,454,457,453,449,445,460,446,448,453,449,501,507,542,559,555,560,553,554,552,564,553,557,552,557,556,551,536,534,530,542,538,539,532,575,578,572,578,566,508,511,499,507,503,488,509,505,509,503,505,513,495,487,486,489,489,488,476,556,552,543,570,549,560,571,551,562,559,568,571,558,556,492,491,496,493,486,495,503,494,494,502,493,574,572,517,513,515,516,517,524,520,510,514,519,518,506,516,481,476,471,469,466,469,465,467,465,458,472,464,474,442,433,423,451,446,429,442,437,450,447,441,434,435,434,440,512,508,523,511,508,519,516,513,517,510,515,513,511,508,524,524,528,529,523,528,531,523,561,565,568,569,558,558,537,538,539,533,536,533,541,531,536,543,537,532,535,533,533,536,527,534,535,585,579,559,573,562,574,581,489,543,545,546,539,544,538,545,549,543,562,570,567,560,570,547,565,565,562,570,571,571,570,569,572,543,516,529,543,536,528,534,537,526,535,534,535,538,538,506,505,507,510,510,507,508,506,502,504,505,545,555,553,550,546,529,550,531,533,520,527,527,528,529,521,521,525,528,525,528,532,544,517,533,505,510,507,507,510,518,511,508,505,506,515,519,555,556,550,550,555,570,566,560,560,492,508,508,514,499,528,435,431,443,435,442,443,446,433,454,449,448,452,445,452,443,455,440,440,457,444,442,429,446,453,542,536,535,528,534,538,526,542,545,537,547,540,533,530,539,533,540,547,539,542,534,540,538,538,550,538,542,495,478,489,498,479,489,487,497,480,485,479,497,592,561,574,587,575,567,577,577,579,491,504,506,511,484,503,544,546,545,541,538,553,560,559,565,557,573,561,567,530,530,536,527,522,559,566,553,546,567,550,552,565,557,556,562,552,530,535,534,539,538,534,535,541,531,535,532,552,574,554,570,498,485,500,466,462,459,466,450,447,464,465,465,456,471,465,463,468,453,464,543,534,531,540,534,533,531,545,541,542,537,546,542,538,529,534,545,548,531,533,550,543,549,510,509,517,503,512,509,511,505,499,517,515,500,518,549,537,551,539,538,544,542,535,542,537,535,533,536,538,527,537,540,538,530,536,574,563,568,550,572,506,512,502,508,505,515,506,520,518,515,503,557,556,550,550,556,555,563,549,519,524,519,515,516,514,525,519,520,529,526,516,520,522,521,508,524,561,556,563,560,557,546,559,542,543,537,544,545,551,546,550,549,544,547,547,509,502,503,493,509,506,499,495,493,500,505,524,508,523,510,516,517,514,515,508,511,511,516,516,548,558,554,543,556,548,561,517,486,486,485,493,482,491,483,484,493,480,490,461,461,465,461,458,464,466,466,463,466,462,462,459,450,454,447,453,467,460,453,452,451,453,445,452,462,487,494,498,489,491,577,566,576,581,560,568,571,584,566,567,575,573,565,570,575,574,522,518,513,520,515,524,513,514,513,465,461,459,476,459,469,457,464,472,457,451,440,432,446,426,447,443,435,430,432,517,513,509,512,511,511,516,517,521,521,518,518,519,519,517,516,517,518,514,520,518,518,515,517,518,521,525,521,517,523,520,517,520,524,517,520,524,522,534,534,526,533,529,529,524,526,537,535,541,528,531,534,538,539,529,536,546,533,526,555,562,552,502,499,502,514,498,494,489,495,492,512,522,541,556,561,567,536,536,556,544,499,503,503,505,513,507,506,505,510,505,506,511,507,510,505,520,513,512,507,564,553,560,566,562,565,570,575,566,563,580,522,525,522,520,531,515,526,521,511,512,507,517,523,514,521,524,583,568,574,574,567,510,514,491,507,507,490,504,497,501,489,475,470,477,470,474,462,466,468,478,461,462,478,467,471,472,479,479,458,459,570,563,563,562,570,569,565,568,565,560,574,566,560,563,568,569,564,566,567,552,557,568,562,561,566,507,521,516,512,520,516,523,526,519,525,527,517,510,515,516,518,510,503,506,484,480,487,483,485,481,448,445,457,558,560,547,568,548,558,499,480,490,494,495,505,498,490,518,495,492,506,497,504,499,491,500,480,493,493,490,495,499,460,464,465,465,468,467,457,460,461,464,464,463,539,542,539,534,536,540,533,536,535,536,518,518,523,533,526,527,533,528,523,527,528,533,537,526,528,529,526,525,559,562,568,561,567,562,568,569,570,563,559,570,566,566,568,547,536,533,545,542,535,536,534,527,529,533,518,591,533,533,530,538,527,533,540,540,526,528,534,531,545,554,539,557,551,543,548,553,557,551,552,560,538,497,524,493,492,507,490,484,483,485,485,486,483,489,486,487,493,521,523,528,516,523,533,526,551,571,553,552,566,573,566,552,554,571,476,502,490,487,496,492,477,479,541,553,531,552,543,542,537,543,554,543,547,543,539,539,545,542,549,536,542,542,527,546,544,537,537,549,506,556,557,554,569,558,560,549,559,494,508,503,502,492,494,504,494,500,496,495,492,499,499,498,498,492,485,497,495,486,487,490,488,494,486,495,486,496,556,550,549,553,552,549,547,549,537,537,552,543,541,542,545,545,543,539,550,539,490,500,496,489,489,471,494,476,483,480,487,490,482,476,480,480,479,483,479,478,476,483,556,564,542,560,566,567,542,560,547,561,550,477,501,498,502,498,501,493,504,499,502,509,505,510,508,507,507,517,508,513,516,515,509,514,514,512,510,521,529,540,527,527,519,526,531,521,534,534,543,537,537,542,533,540,540,545,546,541,542,544,551,544,546,551,545,550,507,507,502,506,507,519,501,509,499,512,515,491,489,493,492,509,504,512,512,507,506,509,509,513,508,511,510,542,531,542,543,546,543,545,536,542,540,553,545,551,557,553,542,553,473,479,454,465,515,505,528,509,513,523,515,518,525,513,523,516,528,526,520,522,518,521,521,518,535,542,541,532,531,538,537,528,532,535,541,539,534,523,545,544,535,554,531,555,549,539,531,541,534,537,552,542,548,494,477,503,567,552,557,549,560,553,547,558,552,563,549,562,575,550,558,563,553,552,554,555,539,507,507,504,501,513,511,511,507,507,506,504,507,503,508,507,500,537,534,540,541,538,545,538,536,548,543,536,544,539,544,517,506,512,500,504,516,523,526,525,553,558,552,518,511,511,516,518,524,522,523,531,522,550,564,563,541,552,558,557,555,560,547,545,544,483,474,476,484,482,468,487,474,476,495,478,526,527,538,518,536,544,536,536,537,532,535,531,539,536,544,548,541,546,550,531,527,526,529,531,520,531,526,524,531,531,523,539,530,541,540,570,562,564,569,561,556,543,515,508,504,475,486,484,476,482,485,481,457,468,464,465,456,467,459,448,503,496,495,491,496,495,492,484,488,500,487,497,495,502,494,492,581,575,570,569,560,562,565,570,574,524,527,532,527,508,524,522,526,529,523,537,527,517,522,524,479,484,478,486,489,482,483,483,491,486,484,480,484,471,472,458,565,558,562,560,555,559,551,558,561,569,554,543,549,563,553,549,562,557,555,557,552,556,556,555,552,547,560,554,551,555,554,550,552,560,548,547,502,506,490,431,438,445,443,441,433,448,440,438,434,436,436,441,437,430,443,457,448,460,467,457,460,466,449,463,455,445,467,465,453,463,449,464,452,463,454,580,593,587,591,590,540,542,539,537,543,527,541,545,531,538,532,522,529,519,522,523,513,522,527,523,522,520,523,551,561,558,567,549,548,536,545,538,541,532,539,539,534,538,534,466,477,471,481,466,455,576,548,541,568,559,550,554,508,511,519,522,457,469,466,468,462,466,459,472,460,470,469,466,454,450,451,455,445,458,460,454,457,454,459,467,464,461,464,453,461,465,547,556,548,551,550,551,553,538,544,545,554,526,507,517,508,517,510,510,513,503,504,517,507,512,536,540,540,543,534,534,530,530,536,533,574,552,557,564,555,513,504,508,501,514,514,590,591,585,583,591,593,588,588,580,597,579,593,585,530,531,537,541,538,530,513,515,517,525,513,521,519,517,514,519,527,519,507,525,512,516,525,564,568,549,545,569,566,556,566,567,562,563,557,556,555,489,488,494,486,490,507,494,481,484,488,490,479,481,487,496,478,486,486,574,555,553,553,552,558,512,499,511,497,501,488,482,489,483,492,483,482,486,506,499,506,506,506,507,505,502,504,513,507,494,497,496,549,544,546,544,527,552,547,537,539,537,542,546,541,536,533,546,537,540,537,543,542,538,535,543,542,544,542,539,532,534,545,543,486,500,486,487,480,485,583,585,565,583,591,585,575,587,595,577,575,583,577,581,576,583,501,509,514,505,500,513,509,502,519,499,493,540,554,546,546,546,546,550,538,549,542,541,545,542,543,550,543,544,539,544,546,533,505,495,500,498,506,507,512,553,553,560,569,564,555,568,506,496,507,504,505,511,500,514,514,471,477,480,494,485,481,486,489,484,480,480,483,481,488,502,499,497,505,505,501,497,504,508,543,546,548,543,545,544,539,552,548,550,554,548,538,539,547,460,461,472,480,450,471,467,494,476,469,470,480,468,474,470,479,475,559,549,582,564,577,566,554,564,588,561,559,565,568,503,508,509,504,492,504,495,506,495,489,560,539,550,541,546,549,557,558,538,556,493,494,489,485,485,520,512,520,532,513,514,575,585,578,574,580,586,572,580,593,539,538,544,545,547,491,506,485,499,506,491,497,497,491,496,494,490,492,496,493,496,496,532,538,538,533,534,536,536,532,536,542,551,558,554,560,558,547,541,554,561,556,568,561,513,521,523,520,525,524,523,514,519,528,520,517,512,525,519,508,510,500,507,502,536,541,566,568,572,533,528,529,542,537,530,552,521,523,533,531,477,469,479,467,468,475,477,484,478,485,483,477,472,550,552,542,550,540,550,543,541,544,546,545,548,543,541,549,549,533,506,503,507,501,498,497,498,498,494,498,499,501,490,494,503,498,502,501,505,493,496,501,502,493,495,501,501,542,534,540,540,530,533,540,536,529,565,565,569,565,571,567,565,562,565,570,563,572,569,565,516,500,523,507,503,499,515,527,524,531,518,518,530,525,526,529,527,538,533,529,533,530,536,531,529,522,536,531,530,574,550,571,571,573,577,567,564,566,573,568,574,577,552,541,540,545,554,492,510,496,484,501,466,451,456,456,457,449,462,453,461,460,485,492,487,496,496,495,486,533,532,527,531,531,533,531,529,530,539,543,531,529,552,541,552,557,559,536,555,561,490,465,480,491,473,489,500,474,479,459,493,484,486,463,457,484,480,523,533,522,523,530,525,530,531,531,531,533,531,527,532,537,543,546,558,542,545,530,533,540,546,548,539,550,541,549,503,512,509,509,516,507,513,507,511,517,517,514,507,511,506,540,528,508,515,512,518,500,495,509,507,502,513,513,530,524,537,538,537,532,544,531,533,529,524,539,536,484,476,486,481,488,474,488,487,484,480,485,492,483,486,489,488,550,544,550,552,552,541,559,536,545,549,539,541,538,540,531,518,518,517,511,520,515,514,516,517,517,520,520,550,542,536,535,545,533,544,532,542,510,506,510,523,509,509,511,507,522,506,512,507,513,519,500,509,506,502,510,536,540,548,470,457,456,525,529,541,532,540,533,538,535,531,523,533,527,536,540,548,541,567,561,568,559,562,567,563,575,544,547,545,542,526,528,529,532,519,513,497,511,502,493,500,504,509,512,492,496,508,498,495,504,492,494,574,560,577,547,564,566,556,574,504,494,504,505,504,482,511,500,512,554,543,560,555,552,483,478,488,498,484,493,500,498,499,486,496,512,488,484,473,456,449,463,567,543,518,537,528,476,459,468,469,460,468,472,469,480,464,475,472,469,544,543,538,547,542,533,530,574,572,581,568,580,583,546,540,558,546,551,547,555,544,494,488,471,476,475,486,602,594,591,629,595,606,590,595,615,596,554,562,552,554,552,544,552,558,554,552,549,555,544,515,510,522,517,509,522,516,505,506,530,513,493,497,496,487,486,491,483,477,486,487,485,485,484,481,487,476,470,487,482,482,478,483,480,468,501,500,499,506,502,499,504,502,495,497,503,506,504,551,556,548,545,559,552,553,558,541,544,560,565,565,576,561,564,569,576,565,562,563,555,551,515,498,511,501,496,506,516,502,512,515,525,517,513,519,558,551,543,549,544,529,540,541,545,535,539,542,464,482,473,464,477,468,545,547,539,542,544,543,540,535,552,544,550,542,530,530,539,574,572,567,578,577,567,579,567,571,584,569,580,573,571,575,577,498,488,507,509,509,530,537,533,537,537,538,537,538,564,528,510,523,531,508,523,526,534,586,545,553,549,547,554,544,550,538,541,552,544,550,488,499,486,495,491,492,499,499,494,495,509,484,502,492,510,508,508,509,503,508,508,500,544,539,521,530,532,554,543,528,533,472,473,474,483,480,475,485,488,480,470,483,470,548,547,547,560,549,522,508,518,508,516,498,512,512,512,508,514,559,549,549,547,538,541,553,542,542,550,550,544,555,527,514,519,511,518,517,516,519,508,522,519,517,516,521,522,522,520,529,516,533,516,515,513,525,524,581,579,576,544,552,555,550,552,544,512,520,525,524,533,527,523,534,512,519,513,512,497,509,494,555,566,539,559,546,550,553,545,548,551,508,495,504,491,496,504,501,516,497,536,531,529,522,528,529,533,525,512,509,508,535,548,543,537,543,540,545,542,570,559,588,562,560,570,573,570,555,573,558,568,486,495,489,494,479,485,479,480,499,486,485,495,484,486,485,494,485,537,555,540,548,547,548,544,541,552,562,566,571,570,573,571,526,530,526,532,533,527,536,543,532,525,529,540,550,543,544,542,540,548,544,552,534,556,544,546,542,546,540,538,561,492,463,473,479,484,480,466,495,474,492,492,496,491,493,495,489,483,495,492,499,569,564,564,565,567,564,568,559,556,550,552,549,564,550,552,551,558,546,549,555,544,483,497,489,498,500,502,487,493,504,452,439,455,479,486,503,497,500,501,486,488,545,542,553,554,555,549,546,551,546,564,549,532,523,536,531,534,535,534,531,491,493,500,499,510,509,503,502,507,502,510,507,503,499,497,506,539,536,547,559,563,573,564,568,562,563,557,564,530,541,535,534,539,539,534,532,540,563,552,550,565,562,523,528,524,514,524,525,517,519,519,528,522,520,515,520,525,495,485,496,488,500,493,490,486,483,485,487,491,486,484,488,489,493,486,494,488,490,499,492,493,488,492,488,483,478,487,483,482,480,483,476,487,480,487,484,473,470,469,475,475,472,464,473,561,563,570,552,561,558,557,560,560,560,558,554,563,558,497,496,490,495,488,507,496,480,507,493,499,493,499,456,455,457,453,466,460,459,463,459,449,456,502,501,496,496,503,487,501,498,494,497,504,498,494,491,524,526,534,533,584,593,588,585,594,584,576,574,580,576,580,587,516,531,524,538,539,546,530,554,543,525,537,537,538,535,514,546,490,496,486,498,492,493,504,497,483,569,566,493,487,509,501,481,491,484,492,489,480,497,486,492,482,493,478,479,493,488,477,485,483,488,486,486,490,476,489,486,477,607,560,544,558,540,568,545,553,544,504,501,496,508,507,497,497,467,463,460,459,458,461,472,461,467,459,462,491,490,490,493,491,524,533,537,532,529,527,532,532,526,533,535,527,534,531,532,534,529,531,550,568,560,550,560,550,535,508,515,497,502,501,506,509,503,506,505,559,551,534,543,561,552,559,547,546,542,465,478,474,469,470,447,453,461,457,449,463,460,461,456,461,584,583,589,593,594,589,592,584,536,537,534,540,548,552,541,545,535,539,509,497,507,502,497,497,506,505,503,551,544,547,577,565,565,569,570,569,572,569,568,571,575,569,574,558,533,532,501,541,515,533,509,548,477,484,562,561,560,499,511,478,494,504,506,497,489,504,502,504,494,497,500,501,508,505,487,484,506,446,442,444,436,447,438,450,443,449,431,441,452,455,444,440,490,497,479,503,491,489,497,531,536,543,541,541,520,533,533,536,527,531,536,504,507,492,501,482,482,506,504,585,591,590,579,587,587,591,599,588,570,597,586,592,575,505,545,537,535,542,542,533,540,563,572,559,562,566,559,518,515,519,510,537,532,510,528,516,505,523,547,491,491,496,485,494,492,481,496,494,483,557,560,551,565,567,553,568,560,568,567,562,486,491,486,489,483,478,485,470,480,484,489,483,554,545,555,543,547,539,549,556,542,550,546,555,539,550,560,551,553,502,503,500,512,509,502,514,507,504,513,507,512,512,509,506,498,512,512,504,506,504,498,528,520,536,526,529,533,532,554,571,554,560,562,564,547,556,557,497,498,499,442,437,444,441,449,447,450,440,436,435,442,440,448,442,442,501,488,484,498,484,485,537,535,539,550,534,537,542,537,541,532,525,518,528,522,520,521,520,524,566,567,558,557,560,567,556,564,563,524,532,528,525,529,520,528,494,498,500,592,596,597,567,591,590,590,590,545,533,542,540,545,537,541,537,537,539,565,567,577,559,559,569,566,559,517,527,523,523,513,519,525,476,473,472,464,473,474,485,486,478,467,469,451,435,437,449,439,431,493,492,494,498,482,492,488,500,488,491,505,552,550,539,546,534,539,530,549,530,544,544,535,539,538,507,508,502,506,510,500,507,498,526,522,541,527,529,528,560,555,565,548,544,556,550,553,548,545,575,551,543,554,511,514,515,494,501,503,505,490,504,507,532,546,543,542,558,549,546,479,466,472,477,477,476,473,492,498,507,497,511,490,510,500,500,509,502,507,502,503,509,501,538,543,539,530,536,535,531,534,535,523,534,528,532,536,497,502,496,489,510,497,484,511,506,587,592,594,585,592,552,567,552,554,551,564,553,552,554,562,505,518,505,520,522,513,516,517,505,510,510,523,498,478,465,475,470,475,477,471,472,477,427,427,442,426,436,433,435,428,439,439,436,444,426,435,480,549,550,552,550,546,550,550,546,543,542,560,527,523,517,524,522,529,526,521,517,527,564,553,552,563,553,512,508,513,518,514,516,516,512,510,511,551,539,539,575,587,579,578,584,581,589,583,576,583,529,514,503,505,506,510,512,506,505,500,505,507,504,488,495,495,494,490,486,486,484,489,494,484,485,463,474,472,475,475,473,462,470,470,488,477,478,474,473,476,482,482,473,586,597,602,599,588,579,538,536,531,535,545,539,535,539,537,534,534,542,537,534,523,512,509,513,514,527,536,530,530,528,531,529,563,547,567,559,566,559,573,555,555,560,556,479,481,477,472,486,484,525,532,531,536,543,537,539,532,553,540,543,527,521,530,534,547,553,552,536,509,510,508,506,514,513,513,502,509,509,511,508,531,530,525,541,536,533,530,526,529,545,553,560,561,536,530,544,534,525,540,533,531,500,500,497,500,500,495,501,495,509,494,497,487,488,500,597,579,577,569,597,581,591,594,584,593,604,572,589,594,587,600,598,595,581,589,535,537,546,541,534,534,536,546,547,536,537,536,546,532,529,530,527,527,529,522,529,523,534,519,527,528,521,553,550,548,549,549,542,552,564,559,546,561,557,499,503,508,501,495,510,507,506,483,493,480,462,471,457,464,458,457,459,467,509,505,505,509,502,503,502,502,505,499,503,503,505,505,538,538,538,540,530,499,512,505,507,497,504,500,493,497,507,500,497,501,516,509,504,502,504,504,503,506,508,509,508,507,511,532,532,522,519,527,521,515,527,516,524,534,512,520,528,524,530,525,532,526,524,535,532,534,533,531,532,563,574,570,562,569,508,517,507,508,500,511,504,507,520,512,542,544,549,542,557,557,559,553,547,556,555,557,551,555,544,547,545,552,560,548,557,550,548,532,558,562,548,533,556,552,556,562,541,498,497,486,487,551,563,554,559,554,547,549,545,553,553,553,548,542,543,546,544,546,532,530,536,531,530,525,534,535,529,532,527,561,572,518,523,516,515,521,530,527,523,527,526,525,514,510,513,516,518,525,516,479,474,481,480,473,476,481,481,462,462,459,455,461,463,457,455,458,564,556,553,567,564,562,562,567,559,563,551,551,547,554,553,558,551,561,546,552,528,523,509,519,521,513,529,508,518,525,513,487,471,472,477,477,479,474,480,480,474,468,453,458,456,459,454,457,463,458,454,464,453,457,456,460,447,468,456,458,456,459,464,466,465,462,458,461,455,456,458,468,455,457,467,461,462,460,488,488,497,487,488,487,488,491,488,487,489,488,506,500,504,501,497,509,497,548,530,541,527,544,537,536,537,539,548,559,556,535,535,533,535,534,538,514,539,538,531,511,513,518,549,540,542,551,550,546,544,501,490,505,487,501,500,495,501,501,492,490,494,497,505,499,505,496,492,532,528,540,531,530,522,536,537,537,535,533,538,482,477,484,483,486,479,552,565,563,560,565,564,496,502,507,499,500,498,513,506,500,502,555,550,557,532,555,539,546,563,550,549,536,545,556,502,500,508,500,508,507,510,506,496,499,513,513,497,511,518,509,559,543,558,545,550,552,546,548,556,547,499,502,492,510,500,504,493,512,507,506,508,509,498,499,495,486,499,492,506,469,472,472,470,458,467,465,465,472,470,454,466,466,471,470,458,542,553,541,543,541,545,546,551,536,487,480,478,469,471,485,476,465,467,465,481,473,492,484,480,484,493,493,492,486,484,486,484,492,483,481,522,529,517,523,521,519,524,527,537,523,525,522,518,593,588,587,594,589,588,587,584,595,593,548,504,496,496,500,505,500,496,498,512,504,465,461,456,443,438,440,442,445,445,444,518,525,510,515,523,520,515,514,520,516,513,521,532,531,529,533,531,534,527,536,535,529,525,538,521,527,528,523,534,514,541,550,540,548,546,543,550,548,549,532,505,509,515,502,513,512,508,504,521,524,527,521,525,524,518,520,529,527,521,533,550,555,546,542,556,560,550,548,544,550,543,547,553,555,535,542,555,524,519,523,515,532,533,522,521,525,527,528,534,517,529,528,544,524,540,506,502,505,493,501,505,505,571,555,554,549,568,557,539,544,563,556,552,549,548,558,565,532,527,534,534,533,530,536,527,530,553,555,554,542,556,548,552,541,555,548,491,481,498,486,490,491,480,473,503,463,445,458,458,463,464,606,528,531,540,534,531,525,526,543,529,535,534,532,500,497,500,505,499,500,497,506,504,502,501,496,499,503,505,507,531,537,540,545,533,535,539,535,536,542,540,532,534,540,558,555,560,554,561,560,558,556,554,559,557,551,552,550,557,556,533,531,531,528,528,535,535,537,533,557,548,548,561,553,557,550,552,549,518,473,482,481,478,474,473,468,476,473,435,445,441,444,441,438,444,448,456,448,441,443,449,438,447,445,449,444,448,463,548,553,549,558,550,554,553,554,552,552,551,563,561,543,551,544,547,554,545,556,562,503,495,489,489,503,507,548,555,542,546,551,537,543,550,553,535,538,552,549,498,499,504,494,507,499,503,498,501,501,506,500,550,548,545,553,547,547,535,539,578,551,563,564,563,555,565,555,560,569,567,556,554,521,528,514,527,522,521,510,513,584,566,575,581,580,572,576,577,574,593,569,518,514,532,514,522,527,526,532,518,526,529,521,527,528,526,531,480,486,489,479,483,478,478,479,485,481,487,482,491,484,465,472,467,462,461,462,470,467,466,464,468,464,468,463,464,461,467,473,567,574,563,567,569,568,565,562,573,571,570,564,560,563,571,568,565,577,567,567,560,557,561,517,503,519,512,516,518,520,516,531,524,521,525,514,491,484,487,489,509,506,546,543,544,532,533,531,533,530,533,525,523,556,558,541,560,549,556,554,551,550,559,502,493,483,508,483,454,458,445,456,460,459,459,457,492,491,489,493,559,562,561,565,559,524,530,537,529,530,526,534,535,528,533,533,533,527,486,474,475,470,470,472,473,471,532,534,522,536,532,546,550,540,532,537,531,537,553,569,566,575,575,570,574,575,545,545,543,542,534,543,537,548,536,543,551,497,497,495,485,492,504,502,512,488,494,490,486,495,479,488,471,477,477,479,486,473,479,480,479,482,469,484,489,483,476,475,552,549,543,553,559,535,543,550,560,546,551,546,571,560,507,513,495,508,510,496,495,504,508,504,502,507,498,504,506,500,522,511,505,503,505,515,510,505,503,514,504,509,547,550,541,553,546,557,555,544,547,543,536,544,542,496,482,491,491,483,476,470,473,471,474,465,472,465,564,543,545,547,556,537,556,550,540,535,552,548,539,548,469,481,474,503,502,506,561,563,559,563,558,565,557,561,566,556,551,507,498,499,500,489,500,499,500,494,497,491,583,578,563,577,595,596,576,584,571,564,569,511,492,548,544,548,546,555,537,547,549,549,542,547,540,549,550,547,554,506,509,505,511,503,500,511,500,495,499,504,497,500,495,508,505,501,498,500,502,498,520,522,523,526,529,515,517,522,528,524,529,534,537,536,527,530,530,522,530,529,531,533,540,549,546,548,546,541,546,542,550,553,506,513,512,508,507,503,505,505,509,502,512,504,497,499,494,503,505,505,499,502,513,502,546,550,546,543,544,547,546,547,552,543,551,541,545,540,533,531,551,495,493,492,539,541,545,527,537,540,529,526,524,522,525,525,548,556,557,544,549,559,551,544,556,553,562,548,544,551,547,547,544,551,490,486,497,486,492,480,485,494,501,486,497,499,485,495,486,476,472,486,475,488,479,549,553,562,568,554,573,565,561,559,560,556,554,557,563,552,557,561,565,518,511,506,507,488,491,484,483,495,485,486,487,498,492,484,493,487,482,490,482,481,489,485,469,490,465,478,468,466,476,464,475,480,470,551,563,543,550,550,553,552,560,556,543,545,554,531,546,528,542,542,546,546,472,481,471,465,489,472,486,471,475,482,475,471,494,510,506,505,501,516,505,499,514,518,505,507,551,559,551,554,561,558,547,559,555,548,555,492,499,493,496,507,498,497,518,509,512,515,504,509,551,571,556,563,554,514,505,504,497,507,501,510,504,501,496,495,504,507,459,456,451,452,446,452,457,457,457,459,457,457,452,454,474,473,474,479,478,478,464,470,470,468,484,473,468,479,472,474,575,575,578,575,579,571,580,572,562,576,496,473,486,482,481,473,472,477,469,520,519,510,521,524,522,509,513,529,525,522,533,529,524,532,533,528,572,568,573,569,562,565,521,525,529,533,516,487,500,484,495,488,493,495,491,584,576,580,578,584,590,589,582,595,539,543,591,583,582,572,577,582,585,590,583,588,599,577,523,508,524,559,562,532,519,546,533,524,532,524,514,474,459,544,553,550,557,549,557,563,551,551,542,534,536,545,485,472,483,477,475,473,480,490,480,476,469,484,512,509,511,506,514,511,502,503,515,529,524,514,516,526,534,530,534,530,533,533,523,535,528,541,530,570,563,541,543,539,535,539,541,538,488,503,499,511,507,517,497,510,503,503,501,502,489,457,467,462,426,447,441,448,452,445,444,543,529,541,540,548,534,538,542,537,544,533,529,552,548,541,542,546,544,554,552,535,532,516,519,513,523,520,521,524,548,542,542,538,535,547,533,538,558,518,518,523,522,514,520,518,521,519,521,518,526,524,510,521,518,522,518,576,569,579,570,552,567,569,567,562,566,545,565,567,518,519,500,504,522,504,523,491,504,511,507,508,510,508,508,513,509,506,501,507,505,548,553,494,509,503,503,506,484,483,475,483,477,485,480,474,472,485,478,477,479,482,482,485,484,487,484,478,479,479,481,486,486,449,453,453,458,452,439,458,449,451,451,444,445,456,481,477,483,500,485,483,481,485,495,558,572,570,566,566,556,484,563,554,558,555,553,557,562,551,549,555,558,557,554,546,552,548,546,556,557,551,553,549,556,557,547,548,547,553,546,520,519,518,522,514,524,519,518,522,517,522,539,554,539,545,543,543,548,552,541,546,542,542,557,549,552,544,578,556,558,571,565,575,570,574,578,501,498,500,498,501,499,505,467,476,474,469,473,474,472,463,568,554,560,556,564,559,490,485,497,479,485,492,494,500,495,485,466,492,486,505,492,472,486,488,486,479,482,482,489,496,554,558,566,563,549,554,563,556,560,557,553,561,571,546,572,546,504,509,512,506,508,523,511,508,511,505,514,512,512,560,561,515,506,488,485,471,474,474,478,485,467,461,475,475,463,466,468,471,475,447,434,440,434,430,439,436,446,446,448,447,442,431,440,482,480,506,511,508,502,506,498,512,512,509,501,504,510,508,507,516,511,521,524,536,533,526,527,516,524,518,522,522,519,521,525,516,520,524,521,515,525,526,546,543,536,552,548,547,545,545,546,544,542,540,545,546,557,568,559,565,557,527,531,523,524,520,520,524,524,524,538,522,531,518,505,500,505,507,503,500,502,483,478,490,473,472,477,480,483,484,478,488,482,482,478,437,446,434,447,433,439,435,450,439,446,435,436,453,523,518,521,522,523,520,521,525,531,513,527,528,519,534,521,526,524,535,523,531,559,568,564,561,569,556,566,543,545,538,548,551,538,543,551,540,546,546,526,530,527,531,528,532,532,526,522,483,476,465,535,533,529,530,532,544,543,535,545,550,547,550,549,550,556,548,551,557,515,500,512,523,508,520,509,514,508,524,517,506,467,468,467,477,470,460,467,455,463,450,476,591,598,594,595,599,594,608,595,586,594,593,592,610,602,610,588,514,510,516,523,524,515,524,509,522,511,514,518,514,515,548,552,543,546,553,556,550,556,547,559,553,543,546,540,538,538,550,546,566,538,472,472,480,467,483,478,487,475,472,453,452,456,457,453,476,456,441,456,454,445,553,549,555,551,545,548,557,554,550,557,556,542,565,544,552,547,540,542,546,551,560,522,527,529,523,524,535,531,524,528,532,523,527,523,528,526,538,535,540,535,525,538,539,539,541,539,532,534,550,534,529,532,528,530,532,528,485,491,497,502,485,495,492,586,594,599,599,591,523,533,537,533,533,540,546,511,502,508,523,512,521,554,563,571,564,563,579,557,572,555,560,566,582,519,533,522,524,523,536,525,531,528,517,522,523,511,492,487,501,508,506,497,504,557,546,557,540,549,539,550,555,542,554,551,545,522,532,527,527,516,533,525,531,516,525,525,520,513,577,581,594,600,593,598,599,531,535,540,532,542,539,528,532,541,539,538,534,539,540,535,514,509,515,506,509,520,512,512,512,508,505,512,516,575,549,565,564,558,566,567,569,575,565,482,496,495,497,500,499,472,465,452,471,462,475,564,565,562,559,571,568,517,537,515,529,526,521,522,518,520,519,519,515,517,511,512,513,517,516,510,510,522,499,513,515,515,519,516,499,502,500,509,509,495,499,510,502,504,509,505,503,509,503,476,483,478,481,474,481,472,481,477,482,477,460,459,459,469,464,460,458,471,466,537,540,537,538,535,532,536,538,532,537,540,545,544,532,549,540,539,543,539,538,554,544,554,553,539,544,548,539,542,530,548,545,552,538,549,556,548,544,559,548,492,501,494,501,615,600,588,610,602,600,582,573,607,586,597,537,544,539,543,544,543,546,540,543,551,547,573,565,571,564,581,570,576,512,539,516,531,526,528,518,528,517,488,478,476,481,480,485,485,482,482,484,462,452,470,467,457,467,452,463,451,588,574,584,574,591,584,582,582,590,586,582,590,597,574,593,582,530,536,530,530,530,539,534,524,527,544,519,513,515,518,516,524,522,509,517,508,522,517,512,520,545,539,555,544,544,544,544,546,582,572,552,560,558,562,552,572,559,573,566,569,560,504,505,510,495,503,509,499,502,500,503,503,507,512,507,511,545,538,537,548,541,537,546,563,556,556,551,539,551,555,562,511,519,507,500,502,499,523,485,486,487,488,487,475,479,473,475,479,478,455,472,461,492,571,569,564,531,526,487,476,488,482,498,495,495,504,497,494,566,579,581,488,483,478,464,482,499,472,537,545,542,547,549,548,542,548,542,551,555,547,559,544,548,547,549,544,567,558,578,566,554,569,575,562,559,572,575,568,566,560,519,517,520,515,534,588,586,584,583,584,593,588,600,551,536,556,552,561,548,546,547,542,551,495,498,495,500,494,486,491,502,494,477,492,494,492,487,495,459,462,475,460,468,460,471,467,455,458,464,470,472,466,460,566,568,558,566,569,561,559,561,554,560,564,559,561,567,525,509,517,520,508,504,508,512,507,506,464,465,462,461,452,456,462,455,464,461,481,480,494,476,473,477,470,487,476,479,482,471,475,479,474,479,481,480,476,493,471,565,573,550,568,566,579,508,508,503,497,498,496,481,479,488,476,486,486,484,484,474,479,488,482,482,474,474,473,483,479,499,487,496,494,500,506,501,498,500,504,496,493,504,500,500,479,474,467,476,473,474,468,471,500,502,513,518,500,500,500,514,510,502,555,554,541,556,549,561,542,551,548,490,493,501,487,496,492,505,494,493,498,486,495,510,506,512,504,506,503,501,572,564,565,572,568,572,566,570,575,562,563,567,559,554,544,552,552,548,555,554,490,493,490,501,485,512,497,498,492,503,494,494,492,485,484,486,484,483,486,491,488,484,494,553,568,504,506,519,513,530,505,515,502,520,504,534,516,519,457,465,465,466,473,466,470,466,470,471,468,468,467,465,465,468,475,471,474,474,475,474,476,470,443,445,449,447,454,443,456,447,450,450,448,451,455,447,456,456,458,461,456,444,448,458,454,557,551,549,542,547,563,547,552,561,550,550,552,541,463,478,487,460,465,478,480,449,452,440,458,453,447,452,454,448,451,454,449,452,551,562,569,552,556,566,572,556,562,568,562,569,528,518,515,515,512,520,527,512,512,519,516,483,489,488,487,486,487,491,483,485,492,488,498,486,489,480,496,489,487,514,512,515,519,510,509,515,517,513,507,507,548,543,553,493,514,495,499,492,498,499,468,463,460,469,468,465,469,464,467,512,510,543,541,536,537,504,511,506,513,557,559,555,551,548,551,555,557,564,566,552,550,552,530,509,518,501,485,481,493,484,485,489,492,489,497,493,497,493,502,499,500,497,499,505,501,498,501,487,482,478,483,485,473,473,465,470,470,553,565,559,556,565,564,565,553,541,497,495,478,488,497,482,552,544,545,549,547,556,553,549,568,537,547,545,545,564,587,560,506,495,511,501,503,507,525,537,529,525,524,532,532,533,525,535,529,539,527,529,539,518,511,521,519,516,528,530,529,521,530,524,533,534,523,529,533,525,568,567,568,567,572,559,554,573,514,504,520,499,506,517,510,517,498,508,504,514,501,518,515,508,505,559,547,548,547,549,540,545,499,482,507,492,488,491,490,499,505,490,503,500,500,497,502,503,497,497,495,495,494,535,532,529,530,531,535,509,509,520,516,510,510,514,515,515,513,515,520,541,535,540,540,535,531,536,533,556,568,546,534,556,551,470,481,467,473,474,486,484,488,480,479,488,473,461,476,473,480,569,558,564,567,569,572,569,581,559,571,565,559,554,579,554,562,501,503,502,506,500,503,509,504,507,503,504,507,517,509,524,519,513,519,520,523,516,526,515,536,545,542,541,543,545,536,551,542,542,559,542,549,543,539,541,511,501,510,516,507,514,509,513,517,513,513,512,505,519,508,510,515,520,526,517,518,521,522,522,531,520,528,524,520,522,533,575,574,590,579,584,569,576,568,575,527,533,539,538,543,538,528,505,499,498,505,501,504,495,502,502,501,498,539,546,537,541,544,534,545,542,536,532,542,551,554,555,560,558,570,559,556,570,555,542,556,557,551,567,511,521,520,530,525,523,508,508,510,508,514,510,512,510,512,508,517,510,502,508,546,542,550,553,550,544,544,543,546,545,542,547,547,539,541,533,531,549,548,547,538,547,537,540,535,551,493,496,499,487,491,493,495,485,487,559,542,545,538,568,553,552,557,536,555,555,566,496,496,489,495,492,488,493,495,478,465,477,474,477,477,474,466,459,469,469,465,470,492,487,489,481,486,486,491,494,510,513,513,507,502,507,506,508,505,500,503,506,531,530,518,536,536,546,536,537,548,551,544,546,547,498,500,502,498,504,591,598,588,582,596,587,573,595,528,538,527,536,537,540,529,546,529,542,537,536,515,512,517,541,539,536,534,543,543,542,542,534,543,532,544,558,557,549,548,559,554,553,556,554,547,555,557,555,551,555,564,555,565,525,529,524,528,559,562,563,561,569,564,550,562,557,550,553,558,557,557,563,555,554,548,548,551,524,521,531,512,528,510,528,528,526,521,527,531,508,499,500,501,493,502,498,507,499,475,479,474,472,489,487,472,467,468,470,474,470,472,464,451,453,457,465,465,459,465,460,459,465,461,458,457,557,566,556,559,559,551,564,566,494,481,481,497,493,494,557,575,564,568,545,564,481,497,488,489,553,541,553,560,541,559,558,547,555,549,552,549,558,541,556,555,550,547,547,563,559,549,544,560,561,563,518,513,523,523,504,513,510,514,511,516,527,523,521,505,523,517,520,477,489,491,486,483,487,487,486,487,479,487,481,483,478,468,472,465,463,465,470,463,472,465,459,462,469,477,533,545,533,539,541,530,536,532,537,537,535,541,538,534,522,524,526,526,526,530,524,527,532,526,533,525,527,521,537,523,552,552,556,563,553,553,560,558,552,565,551,500,505,498,494,513,511,511,507,510,514,513,505,512,516,501,559,548,557,499,491,496,497,483,493,481,471,475,480,478,475,544,541,548,560,545,543,546,557,549,516,511,505,512,510,516,511,515,516,510,513,518,515,511,517,520,511,511,509,509,506,511,511,504,498,506,511,508,533,532,530,530,539,535,528,531,535,534,534,524,524,521,517,525,520,521,527,547,544,542,553,539,543,544,550,542,545,548,539,542,543,545,552,558,522,519,513,516,514,515,517,515,519,506,510,501,500,505,512,502,500,498,505,506,508,505,499,505,481,486,481,483,481,483,477,474,482,488,483,481,459,467,454,452,466,466,462,451,462,459,458,457,461,461,465,497,507,512,498,496,541,554,550,543,547,549,549,556,548,553,558,505,513,505,501,508,509,512,515,507,540,541,556,548,548,551,553,546,548,537,544,537,555,539,554,552,532,546,550,528,501,504,503,520,495,502,507,502,501,504,499,509,507,513,515,515,523,521,524,530,506,520,582,516,503,510,507,503,522,549,544,535,541,538,540,531,548,563,560,572,561,559,570,561,566,561,578,562,536,529,526,524,543,526,540,553,561,562,564,563,560,558,506,521,499,509,514,514,508,522,461,464,459,467,458,467,454,449,443,461,450,447,454,447,449,454,449,447,451,505,514,506,514,510,510,505,508,510,503,502,505,509,503,505,543,540,500,504,507,504,506,511,507,499,509,500,504,493,540,559,561,544,550,557,563,552,552,525,528,526,526,530,535,528,560,535,544,542,560,559,546,544,538,551,547,542,556,542,535,521,503,491,503,502,503,493,501,513,492,499,495,481,488,476,474,475,479,481,472,480,481,476,459,456,454,469,454,463,462,459,502,497,491,496,505,552,555,555,554,560,551,553,540,489,486,475,490,491,483,496,492,499,491,480,452,460,460,458,470,462,454,551,543,549,553,547,559,548,554,569,567,574,560,539,535,524,532,540,527,527,516,523,516,519,518,524,521,524,522,522,556,565,555,531,519,520,523,527,534,490,483,472,478,473,475,528,519,531,529,534,518,540,529,536,536,567,564,562,560,569,582,570,526,521,507,536,531,498,482,494,477,490,484,494,496,576,577,565,574,586,594,591,592,601,535,533,543,546,544,546,546,540,537,535,534,543,540,519,526,594,588,590,586,592,586,582,586,598,593,606,592,585,600,598,532,533,542,539,561,537,560,564,546,509,504,507,489,510,515,508,504,508,516,513,515,500,497,491,487,496,495,493,492,493,492,542,560,541,550,564,561,558,561,542,484,481,488,491,483,484,476,471,492,488,485,487,487,485,489,477,476,492,479,483,496,477,474,578,577,568,574,570,566,569,572,561,586,561,565,568,562,571,561,482,505,492,513,500,501,509,517,518,569,569,569,557,558,570,575,572,570,529,511,502,521,522,525,512,524,522,479,475,484,482,473,460,454,462,533,544,539,535,542,538,534,543,533,530,536,532,538,542,532,529,533,531,542,539,549,551,522,514,517,508,513,518,515,513,515,519,513,517,534,523,530,532,537,528,525,530,539,531,515,511,516,504,511,514,508,505,524,534,534,534,537,533,533,538,545,537,535,536,536,543,538,529,536,557,552,558,550,541,557,487,482,482,473,477,477,486,487,492,494,513,504,509,508,511,509,509,505,500,507,514,514,512,547,535,547,543,542,542,539,544,535,536,550,543,537,544,545,557,549,554,545,536,556,549,552,545,550,506,515,495,507,504,515,507,506,507,497,503,499,505,497,498,496,502,502,516,523,531,529,538,529,530,536,532,528,546,543,551,550,550,534,552,545,540,542,545,547,548,546,544,536,560,508,505,514,510,512,506,512,501,512,502,496,503,501,505,505,513,509,500,500,502,540,543,536,544,532,530,536,539,538,535,544,538,506,512,506,517,511,510,512,504,507,516,507,508,502,515,525,509,520,519,517,519,524,529,529,522,521,520,519,527,532,528,588,579,584,585,585,594,580,578,557,551,499,498,484,487,475,497,500,487,490,497,493,487,505,489,482,493,466,464,462,453,454,463,543,540,545,536,538,534,544,540,535,533,539,535,531,540,529,539,534,531,542,553,550,546,543,538,538,545,536,511,506,499,514,504,518,497,510,500,492,506,498,523,528,533,526,530,534,527,520,523,526,524,517,523,524,519,522,522,535,531,527,536,528,532,534,549,504,499,502,509,506,500,507,498,506,507,498,509,538,543,545,532,533,536,543,538,528,535,548,544,546,540,546,535,549,541,545,546,529,540,540,534,483,479,485,482,500,498,491,478,481,481,485,571,572,570,541,532,533,534,533,537,536,544,535,533,536,547,540,536,526,524,570,556,559,558,558,547,558,552,564,539,558,491,483,481,476,472,469,486,469,511,499,495,495,498,494,500,540,536,548,495,490,489,484,480,492,488,489,479,504,495,496,481,485,494,492,492,492,499,498,495,495,502,543,530,525,532,521,523,526,527,516,491,491,494,497,491,507,494,495,560,569,576,558,523,518,536,515,519,521,519,529,512,518,504,508,503,510,511,506,510,505,475,483,484,482,488,510,510,513,508,505,507,513,510,506,504,515,505,513,512,509,512,545,543,547,549,527,524,524,525,528,523,524,533,521,516,518,531,525,528,528,525,530,524,523,526,536,526,526,531,532,519,529,468,495,489,483,478,495,478,482,478,482,479,476,478,484,468,471,461,581,587,588,581,596,529,539,530,535,543,541,529,533,531,540,535,526,533,529,537,533,537,557,564,564,553,568,506,514,517,596,591,601,558,561,549,546,495,481,473,479,481,493,493,486,482,483,485,489,468,487,505,446,444,446,428,446,541,548,536,550,545,542,534,552,550,544,550,539,541,557,533,536,538,548,544,544,543,538,539,551,550,533,528,523,525,522,515,523,526,524,528,528,526,525,534,527,543,542,538,535,538,529,540,539,531,527,527,540,542,541,512,526,477,474,475,474,468,475,476,482,478,487,476,470,470,471,471,473,465,557,508,513,515,511,555,552,558,555,544,547,548,549,549,551,544,539,547,549,554,543,497,501,502,505,510,510,501,496,457,465,453,449,449,452,445,454,468,463,462,462,467,471,462,466,468,466,467,470,465,596,592,596,597,603,599,594,600,588,549,481,485,472,485,483,496,475,486,482,442,445,444,523,524,515,525,524,516,516,534,526,536,561,529,530,536,533,527,536,528,529,538,531,535,534,532,523,534,537,516,522,521,522,519,513,522,519,518,519,514,524,522,522,523,514,553,546,544,552,547,548,547,550,546,547,539,544,540,541,533,537,540,572,586,578,572,578,586,589,572,586,591,575,579,526,527,514,522,525,533,523,518,499,519,521,524,525,519,528,475,489,480,483,484,486,491,489,505,494,500,503,512,499,502,507,505,499,498,496,497,535,563,558,568,554,558,551,557,545,563,570,476,477,485,472,474,479,541,533,539,550,528,532,537,536,536,571,563,561,563,566,574,565,566,526,521,524,520,519,528,528,528,514,525,523,521,532,531,534,521,528,529,528,529,528,531,495,509,494,499,489,488,495,498,492,491,597,582,587,609,589,599,589,555,567,553,563,561,563,557,544,550,554,563,563,552,555,556,552,551,497,496,492,502,500,489,506,483,499,501,499,501,502,496,497,502,498,448,462,458,458,454,459,456,511,505,506,493,501,515,501,494,567,556,561,562,565,551,558,563,560,562,569,561,561,563,568,530,524,524,524,526,513,512,527,519,506,528,506,523,518,502,505,497,501,505,502,483,482,487,488,486,496,487,474,479,489,479,482,485,486,484,476,482,485,481,463,468,470,461,465,460,466,470,466,470,463,472,465,464,473,475,469,468,469,469,469,474,474,465,477,469,471,478,440,441,433,432,435,442,429,444,535,542,542,538,523,546,545,567,563,574,560,568,562,570,571,567,559,557,573,578,567,575,579,573,550,561,549,555,545,552,512,515,524,503,513,538,520,528,499,499,508,506,499,501,506,484,476,478,489,489,462,472,488,498,497,501,509,504,513,504,513,514,508,510,517,533,537,524,529,539,535,536,537,521,529,530,530,525,532,541,544,559,542,515,511,512,517,513,511,517,516,511,525,519,522,572,578,572,575,578,577,580,536,522,523,519,523,580,559,560,551,553,560,556,548,556,550,559,553,554,554,550,547,549,547,548,541,551,537,557,539,501,493,487,491,493,486,485,490,502,499,482,492,472,463,461,455,464,461,460,460,532,533,536,537,532,530,531,522,528,521,527,523,523,528,517,522,504,517,511,513,509,525,517,525,521,509,507,515,511,529,523,532,531,524,530,531,528,532,529,531,536,566,564,558,563,566,499,510,512,498,554,554,552,549,549,557,545,548,552,557,552,547,546,549,549,544,556,544,498,488,484,470,501,485,486,477,471,502,546,554,555,548,557,543,559,544,552,545,486,478,473,477,488,485,477,483,461,488,535,532,529,537,534,534,540,537,539,531,536,530,533,533,536,539,539,513,509,509,506,515,517,518,530,528,542,522,521,538,502,494,486,489,499,476,489,511,506,509,508,503,514,546,538,555,553,555,545,550,541,550,545,537,496,496,500,491,507,497,479,494,495,505,493,499,503,486,495,498,497,490,498,503,492,502,569,567,573,564,567,580,563,575,583,572,574,579,497,498,497,513,498,506,502,499,490,484,501,464,468,475,468,465,465,456,458,463,472,458,481,465,473,551,578,543,580,568,566,552,573,564,576,569,465,463,467,472,519,527,524,529,533,523,521,518,518,525,521,542,543,530,542,541,540,546,540,543,534,541,542,536,519,505,504,561,567,569,561,568,568,580,569,566,572,560,584,570,562,493,491,505,511,513,518,540,542,548,548,546,548,540,512,513,512,510,519,516,522,519,516,512,507,505,506,514,508,504,500,505,514,535,526,531,521,532,528,530,531,516,532,525,521,522,526,536,531,533,525,525,532,531,533,529,538,531,538,522,533,535,535,529,536,526,532,537,530,534,534,545,544,545,541,541,540,538,548,537,538,549,541,508,514,502,508,503,508,510,509,500,504,505,513,513,503,493,512,504,495,499,498,499,495,499,500,490,536,536,534,533,540,540,544,541,570,567,563,550,565,568,559,571,560,520,533,530,537,534,534,543,528,540,538,531,524,539,544,525,528,519,522,522,528,521,519,523,521,527,523,536,538,538,541,538,546,547,538,543,547,541,530,534,519,512,511,512,517,519,512,512,521,521,531,526,528,529,519,533,531,526,518,527,540,519,530,524,523,530,518,580,576,586,570,559,562,561,568,516,506,512,523,527,529,525,507,512,511,514,510,509,510,516,516,504,506,504,509,502,507,510,507,503,499,501,502,499,496,499,505,512,501,504,507,509,504,501,500,503,502,492,488,483,496,491,492,493,483,500,484,497,491,484,480,481,492,482,487,489,495,493,485,496,493,492,457,462,468,472,459,499,493,502,504,483,492,499,495,487,500,496,510,505,557,540,558,554,562,555,565,555,553,555,553,535,561,550,565,558,498,506,524,504,471,483,485,479,488,482,483,489,489,483,482,456,460,471,452,459,458,490,482,490,479,491,492,487,495,485,567,573,570,574,553,550,576,564,570,562,559,566,479,477,472,477,489,484,480,484,453,441,458,449,459,446,452,455,558,564,562,563,551,564,554,560,552,566,557,562,559,560,553,567,567,562,560,559,561,556,552,553,548,567,554,547,566,558,498,494,458,446,455,454,461,466,461,455,456,458,461,453,457,458,459,463,499,498,495,500,492,497,501,499,508,516,509,506,507,509,514,527,532,520,523,524,524,522,527,520,528,531,520,529,534,537,528,531,531,524,530,531,573,563,568,572,569,564,569,564,524,533,526,526,530,524,537,532,527,525,486,487,486,478,482,552,553,557,557,557,549,552,559,555,556,559,554,558,560,557,557,568,566,563,567,569,566,559,577,573,500,495,495,494,489,505,497,467,463,468,466,556,563,560,560,574,558,549,535,547,538,558,541,541,552,546,541,536,543,548,545,488,479,484,488,479,476,475,484,482,472,477,490,479,482,485,483,491,500,507,509,501,508,499,510,498,510,502,511,507,499,537,542,545,540,539,538,541,539,542,541,546,531,539,571,563,567,524,543,527,530,539,576,570,559,573,558,564,562,568,562,562,569,549,492,484,484,484,493,475,500,489,502,486,490,537,540,534,541,529,532,528,534,539,532,551,536,546,545,540,555,545,540,558,537,546,497,492,489,557,551,552,504,503,509,499,515,503,499,502,498,508,508,507,512,507,502,507,503,500,505,499,527,527,525,526,525,530,531,532,529,530,528,518,527,529,521,523,518,522,527,519,525,527,520,524,518,521,519,520,517,527,547,542,544,545,544,548,546,547,537,536,542,550,546,545,545,551,556,557,544,547,551,554,546,508,497,498,514,500,506,504,492,505,495,511,489,501,495,493,503,498,489,492,496,497,494,498,544,546,548,544,546,546,544,551,544,543,552,548,546,539,535,506,499,499,496,492,499,507,504,499,503,533,522,529,536,524,527,528,523,528,537,534,535,532,531,524,525,533,531,524,520,532,561,560,576,560,564,565,566,569,526,522,513,524,518,529,517,525,512,522,526,520,524,565,554,575,547,552,571,543,555,559,571,560,556,555,557,551,558,546,510,515,505,516,524,516,519,516,518,511,515,512,534,536,536,533,529,534,543,538,539,532,539,533,534,552,569,551,558,554,565,560,564,568,559,490,485,485,486,500,487,485,474,489,468,528,534,546,547,529,547,554,563,566,552,571,570,530,530,520,533,538,542,535,538,526,533,534,543,526,529,539,504,499,507,505,546,546,566,552,544,544,549,563,562,549,548,555,546,547,545,547,551,542,550,556,548,551,541,543,554,543,541,555,538,548,551,467,462,474,461,484,474,467,462,464,466,527,518,519,518,520,519,521,519,516,531,518,520,548,544,543,553,546,543,555,561,547,489,500,499,493,484,502,480,497,500,488,491,507,495,460,463,475,474,468,561,548,558,563,564,567,563,550,554,547,547,493,498,513,504,498,505,499,563,545,561,569,564,561,560,555,506,505,506,513,512,506,511,512,514,506,515,514,516,503,507,508,513,508,501,504,498,502,503,511,507,500,503,544,559,552,542,552,544,547,561,549,550,557,543,545,558,560,548,557,560,535,558,558,485,553,567,562,553,561,561,555,555,570,555,551,499,500,492,504,514,504,603,600,592,604,590,602,586,590,599,517,516,506,516,511,518,515,508,499,519,518,520,532,528,523,535,530,530,529,527,524,518,520,524,520,524,521,528,515,529,516,537,531,535,533,532,536,532,539,538,538,542,540,536,537,530,549,541,564,549,549,485,486,466,494,495,501,484,484,499,506,495,504,498,506,429,433,429,533,531,533,536,526,534,524,516,536,557,565,566,575,573,561,562,559,557,526,531,530,526,525,518,572,585,583,579,571,581,577,586,577,584,570,578,576,588,584,583,542,539,541,540,546,536,536,517,511,517,516,508,514,508,507,509,553,551,553,546,554,547,551,553,544,553,551,550,512,505,515,488,495,492,502,500,514,485,461,454,458,452,466,506,502,496,493,501,495,499,504,527,535,538,534,559,554,551,567,530,522,557,547,558,556,513,526,520,517,507,519,518,495,500,500,491,493,493,498,496,497,459,451,446,457,464,460,449,458,457,450,462,457,445,458,457,450,473,473,480,464,456,455,470,468,460,467,579,589,594,592,587,593,585,603,594,596,593,578,538,535,530,527,528,536,537,545,534,533,539,532,538,535,511,516,507,517,519,512,517,564,545,574,500,493,502,501,496,495,497,501,505,488,499,499,498,496,495,500,496,497,493,565,560,567,564,553,567,549,559,563,562,578,584,586,553,489,504,515,507,521,503,485,468,481,479,477,485,478,488,473,476,503,498,499,502,496,491,496,500,495,507,520,510,516,511,518,509,503,520,510,538,537,542,542,543,544,554,542,548,544,551,531,544,544,548,552,552,546,559,546,488,498,499,505,485,486,494,477,487,496,482,483,496,590,574,575,569,586,574,574,580,569,567,542,535,537,541,534,530,519,519,524,519,519,523,523,523,521,518,533,525,528,529,529,514,502,514,502,514,511,507,507,512,515,511,515,549,548,547,553,555,545,553,545,552,558,552,554,551,550,545,554,537,533,539,545,543,541,537,536,542,536,534,532,574,577,582,576,568,572,566,587,572,568,525,508,514,520,508,527,516,530,511,485,483,489,510,515,517,512,506,507,509,508,566,565,558,550,549,547,556,564,498,501,488,510,501,505,494,460,471,465,461,464,475,463,465,465,469,466,470,458,460,469,508,509,514,506,510,508,547,551,529,535,514,510,509,502,519,502,504,505,522,512,520,505,495,556,554,564,558,556,566,551,514,504,484,483,490,487,480,485,484,482,477,483,483,491,470,476,475,466,478,476,476,483,471,480,454,475,455,461,457,451,469,463,461,459,531,535,532,536,522,534,532,542,537,522,520,533,543,533,534,531,536,535,537,568,565,560,560,507,514,506,515,499,503,505,513,510,516,517,509,508,510,502,516,517,499,508,501,536,546,539,527,563,542,551,540,539,543,547,538,541,541,548,537,563,558,558,537,552,557,552,553,537,556,561,547,556,476,472,459,449,460,485,469,467,468,476,470,461,469,526,530,509,519,519,515,513,522,518,518,518,518,516,514,511,515,528,562,558,572,563,563,569,564,568,575,565,564,564,564,565,562,562,570,507,519,510,508,501,499,496,505,503,512,515,494,511,514,512,553,561,560,558,558,561,554,555,553,551,559,560,550,556,549,549,551,520,520,522,512,527,518,520,525,510,517,523,522,521,523,488,492,486,490,491,490,488,502,484,456,468,460,464,461,467,466,454,443,459,438,448,452,446,452,451,440,452,443,478,477,472,469,472,479,474,477,470,476,471,473,480,464,477,480,591,599,597,603,593,593,597,609,595,602,589,589,541,533,528,530,527,533,533,529,498,499,499,489,496,493,493,493,497,570,594,579,601,592,577,609,595,595,578,584,580,605,591,537,540,535,537,541,538,532,522,524,526,528,524,532,528,524,532,529,530,532,526,523,554,555,540,541,560,561,556,554,556,554,554,567,556,557,559,506,497,496,498,499,495,496,497,503,498,502,496,503,498,498,495,496,505,498,504,500,541,525,541,536,539,538,542,553,550,569,540,554,561,512,545,545,540,498,508,490,512,496,502,499,504,498,502,501,492,491,496,490,490,526,539,531,526,541,547,556,551,547,552,551,551,555,521,526,520,521,529,517,523,524,523,523,522,514,519,521,537,528,528,527,525,524,530,530,524,524,525,526,533,530,540,465,480,481,474,475,476,478,466,524,537,523,522,528,532,521,532,521,529,520,528,521,525,512,532,538,538,527,536,533,543,531,542,535,536,540,558,562,565,567,563,562,575,571,563,571,566,528,534,521,541,523,520,534,537,531,531,526,530,521,525,521,518,519,519,525,525,524,512,522,518,512,559,558,568,563,555,555,565,565,562,569,560,553,557,560,555,554,557,554,557,551,526,528,529,529,530,527,520,521,515,510,503,472,476,482,483,473,488,455,460,454,462,462,465,468,485,481,487,486,479,569,584,548,508,509,524,516,560,552,556,562,496,488,457,442,439,436,442,447,440,445,529,528,533,525,532,533,535,521,528,535,534,528,537,530,526,537,536,530,525,541,532,539,531,525,531,526,522,526,527,525,524,528,522,530,555,553,553,545,552,552,554,474,487,473,478,485,477,492,473,490,451,457,455,460,456,467,465,577,587,592,582,586,573,583,529,532,524,525,532,537,525,529,533,524,533,527,535,532,500,496,488,499,498,497,502,486,502,487,495,497,558,554,563,562,558,545,560,554,509,505,508,503,504,502,540,547,556,553,534,551,555,544,547,532,542,505,516,513,512,508,515,513,509,506,516,515,507,511,518,506,508,515,511,524,523,521,526,530,528,518,524,524,524,586,572,585,597,580,576,553,548,546,550,548,550,553,550,557,543,553,542,548,560,503,498,490,500,509,507,521,506,509,511,516,512,509,500,507,512,516,523,531,542,552,543,549,535,541,539,534,543,493,498,508,498,506,492,495,495,583,604,605,596,604,597,597,598,592,556,551,543,554,555,545,495,496,497,490,510,503,499,491,492,497,501,495,495,492,511,514,508,507,502,502,506,510,510,504,574,558,556,568,561,564,560,566,563,561,565,530,521,505,511,503,516,508,515,513,546,566,542,548,550,550,568,544,535,560,547,498,506,502,498,508,506,505,505,513,515,578,575,569,563,510,520,509,510,518,513,506,517,551,560,551,545,553,566,559,498,485,499,491,485,499,508,487,483,495,503,453,443,444,461,447,445,442,460,454,449,537,558,544,547,549,554,546,549,557,539,549,544,551,550,557,541,543,534,545,551,550,558,543,546,553,549,545,539,545,557,473,481,482,471,474,478,482,473,464,484,563,537,545,541,550,543,560,556,539,546,559,538,563,475,478,476,473,485,482,478,487,486,496,488,560,554,547,548,546,556,548,547,546,544,556,541,521,533,515,521,522,522,525,527,527,531,528,518,521,531,528,524,519,480,474,477,482,481,484,469,499,477,573,547,551,558,555,545,556,489,494,468,489,496,476,489,485,492,480,488,473,488,492,474,564,570,581,586,566,560,581,567,588,547,525,532,534,550,527,527,543,545,535,539,534,536,572,563,563,573,562,574,577,565,564,575,485,501,549,548,536,551,545,556,553,551,574,574,570,559,579,572,564,534,527,540,530,533,539,532,533,536,533,517,512,506,501,512,503,507,501,506,501,503,505,495,532,539,538,545,545,541,539,542,546,541,545,542,546,539,544,542,542,534,539,554,569,567,567,582,569,553,567,542,531,534,537,537,539,526,527,531,533,532,530,528,534,562,557,544,561,489,493,493,488,498,537,554,547,541,547,541,546,544,547,550,553,544,561,579,580,573,571,574,581,564,574,542,541,539,544,541,540,541,537,538,542,568,572,565,561,569,568,564,537,520,531,491,477,484,477,487,481,485,471,482,481,479,485,487,491,495,489,487,483,483,579,565,570,575,562,565,501,500,522,478,466,474,466,474,474,473,471,469,472,473,471,476,544,533,544,560,523,534,539,552,552,511,510,511,508,511,517,515,515,581,583,577,564,576,577,585,557,572,580,492,498,494,483,563,571,562,563,555,563,558,556,563,558,565,552,513,520,509,520,509,489,476,481,479,484,483,472,468,469,470,475,473,484,472,464,482,473,476,556,558,552,552,561,564,553,563,559,515,521,522,508,521,522,509,505,509,520,511,518,517,516,522,507,517,507,516,494,484,490,485,486,475,493,486,497,485,487,486,495,487,481,456,457,466,464,464,458,469,460,468,460,453,459,461,463,457,460,463,491,487,488,493,492,493,490,496,494,495,493,491,496,490,539,545,535,540,531,548,537,555,562,559,522,530,528,512,499,491,490,487,485,487,499,488,496,490,488,497,492,491,491,490,498,485,491,485,491,490,497,499,493,495,495,497,501,499,502,475,478,484,482,475,473,480,480,493,482,486,484,479,474,476,467,480,491,483,484,597,545,552,552,551,549,537,544,499,500,490,493,504,508,508,496,494,499,494,504,490,501,504,499,504,507,505,495,502,502,496,500,498,506,504,498,529,536,536,542,539,541,524,532,519,521,526,517,519,546,549,550,553,550,541,547,501,501,507,503,499,508,507,507,501,495,502,507,509,507,539,538,525,536,536,539,538,543,542,541,542,539,542,545,550,544,536,555,556,545,559,557,556,561,557,546,558,494,502,491,498,496,500,492,492,497,487,464,468,464,464,556,547,559,550,562,566,561,549,562,553,547,562,557,560,559,564,561,555,502,491,502,476,494,502,460,451,455,460,456,456,457,456,459,463,459,550,565,559,566,547,549,552,550,551,545,556,554,568,541,500,491,480,479,497,530,555,548,553,527,555,508,517,510,516,521,507,532,528,521,519,517,529,519,482,477,482,487,473,472,484,484,489,490,484,482,556,553,571,549,572,555,575,555,551,569,569,506,508,491,498,500,518,489,504,502,506,510,502,442,449,439,440,446,468,477,467,460,466,558,584,568,560,560,510,499,525,496,518,504,511,514,491,480,483,476,478,482,478,477,483,484,479,478,482,481,465,467,458,475,459,467,466,462,464,487,485,481,487,490,486,484,484,487,478,486,488,484,489,531,528,528,526,526,521,521,521,555,566,550,558,552,554,485,500,480,507,502,499,500,498,487,445,421,445,445,441,425,427,441,442,440,434,448,534,526,529,527,528,529,537,528,529,531,532,522,516,566,557,561,570,564,560,562,540,571,581,565,568,576,535,530,536,522,510,526,527,488,478,484,488,489,478,485,488,478,481,483,474,471,476,479,474,479,477,487,480,476,478,470,482,474,483,472,490,484,467,583,600,599,591,534,545,544,518,509,518,521,515,525,518,511,520,514,523,555,557,546,555,560,546,558,548,556,564,548,545,554,552,556,544,534,528,536,539,533,531,531,531,533,528,535,473,481,479,453,462,474,479,469,466,464,487,469,478,470,483,476,465,542,547,540,543,535,534,555,539,571,579,571,580,580,582,567,583,568,563,574,535,544,545,542,535,542,533,543,544,489,490,488,483,512,493,487,484,481,494,467,470,474,477,477,553,543,547,554,555,565,554,545,522,522,517,530,525,527,522,517,523,526,525,524,519,529,538,529,534,535,522,529,534,534,532,493,499,494,489,505,584,588,597,588,590,607,575,598,532,530,543,544,529,551,474,482,486,489,489,483,482,480,502,502,478,554,580,571,564,555,554,577,551,553,506,508,499,502,499,511,511,508,510,507,506,511,507,511,612,589,585,598,603,581,596,595,592,600,596,547,545,546,540,548,478,488,476,476,489,481,497,478,491,474,481,489,485,482,470,478,472,477,472,469,468,488,476,478,480,474,558,545,546,558,557,559,551,489,503,480,494,498,498,472,472,469,472,474,472,474,463,475,475,472,472,472,458,479,472,476,471,559,561,547,562,552,567,556,560,553,565,556,554,549,552,558,543,545,543,546,552,551,550,551,551,512,503,513,504,510,508,507,509,513,506,560,548,547,559,557,568,564,566,574,559,550,531,527,532,527,527,529,528,531,532,528,540,552,554,546,557,552,551,549,555,540,550,551,547,555,545,562,552,503,487,445,441,439,446,444,442,445,446,444,457,444,524,522,519,523,516,523,527,531,523,525,532,527,517,526,530,526,530,561,579,567,562,556,582,575,569,564,560,562,562,561,569,568,573,530,531,540,525,521,534,530,518,562,560,552,574,560,552,573,564,569,572,549,575,559,570,483,481,521,529,521,511,526,518,526,529,529,523,518,524,518,542,536,537,535,529,526,536,534,534,527,528,538,532,542,530,531,542,540,543,545,552,555,547,544,542,553,526,521,518,553,547,543,550,549,548,553,542,531,542,544,558,515,504,493,506,497,501,502,506,511,544,535,530,530,533,541,524,526,520,522,517,519,528,526,527,519,516,519,525,521,523,524,540,529,533,535,535,541,538,525,548,544,537,546,545,550,546,540,564,541,549,546,544,546,531,530,535,525,535,532,557,559,552,564,494,500,502,488,487,497,496,499,461,471,463,467,461,466,475,466,473,463,470,553,574,563,570,567,565,566,567,561,565,562,568,566,569,570,568,560,559,490,487,499,500,492,493,487,500,483,501,499,500,493,496,496,472,473,470,465,466,477,468,465,464,547,546,535,547,551,551,557,558,550,550,551,546,539,548,551,551,540,546,540,554,537,548,551,552,542,553,550,548,550,510,508,511,516,512,512,521,527,511,517,514,515,515,508,508,519,510,505,514,515,520,510,510,557,549,557,557,549,552,566,562,562,550,543,555,549,535,533,543,548,519,521,519,514,528,495,494,503,517,512,504,523,508,491,485,483,484,485,494,488,479,478,476,487,490,482,465,470,465,471,474,458,461,468,469,455,454,439,444,450,447,504,493,507,502,506,491,498,542,556,557,558,562,548,535,537,548,535,571,555,576,576,566,571,570,569,574,574,569,577,566,570,582,573,589,537,516,524,524,527,530,533,510,477,483,485,483,488,481,478,485,483,486,490,466,461,469,462,472,464,453,448,461,465,466,472,465,466,456,465,462,559,567,558,554,554,560,559,562,562,561,546,555,509,506,507,506,505,495,520,508,502,513,515,464,462,469,466,455,472,458,475,470,474,476,466,470,472,470,468,471,463,461,464,563,557,560,553,552,553,547,554,495,485,492,503,499,488,499,493,465,469,458,482,457,474,455,589,576,590,588,580,586,595,590,583,581,576,581,595,589,591,501,512,504,511,511,541,546,549,546,543,546,547,539,541,547,541,546,540,540,548,553,550,556,546,545,550,549,546,544,551,533,495,498,505,506,511,501,502,506,507,497,509,560,563,547,554,560,553,560,550,560,553,547,567,555,563,553,547,554,500,489,490,491,493,494,496,464,467,543,550,540,554,542,521,519,523,516,505,505,513,517,507,512,518,516,513,507,519,512,502,512,507,523,526,511,525,515,532,529,526,531,523,526,466,459,452,449,446,454,457,464,467,467,450,457,465,545,529,540,545,540,548,530,543,547,541,535,540,552,484,470,459,478,476,545,537,535,531,529,531,528,538,532,536,562,579,573,570,566,563,566,571,569,561,506,505,538,529,537,490,519,557,528,451,440,448,452,532,526,531,568,555,525,525,531,521,531,539,568,550,564,554,567,547,567,567,513,512,518,508,524,523,512,506,516,508,514,509,514,518,520,520,518,522,557,562,555,569,494,501,509,478,479,483,483,477,485,485,492,486,488,457,472,455,461,460,455,462,489,489,484,493,491,492,494,484,489,481,487,490,491,494,491,483,484,493,478,488,478,483,485,506,507,508,508,513,506,512,514,511,507,509,512,505,512,526,528,532,537,528,518,527,528,524,527,521,525,523,515,519,524,521,523,521,516,513,524,520,526,527,518,541,536,535,546,538,550,544,548,538,543,541,545,540,548,541,539,552,557,547,513,514,518,475,489,485,487,487,480,491,476,482,485,476,478,475,491,484,489,476,486,480,486,475,468,470,468,471,468,464,471,471,459,475,475,477,471,559,548,527,545,553,565,548,568,549,539,558,501,595,596,600,598,597,591,597,617,524,540,529,516,519,539,540,535,528,528,526,533,496,509,498,502,523,494,511,513,496,504,503,510,509,499,514,515,498,509,512,561,548,554,568,533,537,563,538,535,529,554,559,498,474,482,483,488,465,485,480,482,477,493,508,496,493,503,535,539,529,529,529,532,538,541,540,533,536,547,546,525,541,538,524,463,447,448,449,456,440,452,452,461,461,450,540,529,549,532,539,538,550,536,538,537,524,543,538,533,527,545,539,538,542,561,548,511,513,472,479,470,470,480,473,483,475,476,474,473,487,474,474,482,481,477,478,482,575,578,563,565,562,564,566,579,564,581,579,566,558,573,583,470,470,467,474,480,473,489,464,470,540,550,562,556,549,546,455,474,481,478,477,472,461,474,463,486,460,477,510,532,527,527,539,532,517,531,522,521,523,522,528,523,525,520,525,527,522,522,520,517,526,523,529,536,535,540,541,545,535,537,541,558,553,554,544,560,526,512,503,505,458,456,455,453,455,463,466,454,461,453,455,456,450,462,461,464,446,446,454,447,526,539,544,532,581,571,566,561,568,535,528,523,525,523,485,483,495,495,490,495,493,489,494,483,494,498,495,489,493,496,494,592,572,584,579,585,604,587,591,545,545,542,545,536,544,537,543,543,570,574,571,573,572,584,520,518,516,527,513,532,531,517,522,485,489,496,493,481,485,487,482,479,494,487,487,489,487,493,483,491,491,489,491,505,562,558,567,558,555,499,501,487,498,499,493,500,471,469,457,466,460,460,464,468,456,455,466,461,457,471,456,465,476,467,510,575,574,576,568,570,570,516,478,480,478,480,484,484,486,484,481,503,499,505,505,498,509,510,502,498,505,550,554,556,558,575,570,579,565,573,566,576,578,593,567,515,534,539,529,523,539,522,530,535,534,539,522,526,526,509,510,512,510,504,509,503,510,505,510,509,481,482,481,474,479,477,476,478,481,474,480,487,480,486,483,483,481,481,481,495,578,495,499,502,494,498,495,485,485,499,506,510,581,587,588,567,581,576,567,537,535,538,546,523,531,531,530,525,523,533,530,560,555,544,567,547,558,549,557,559,546,473,481,489,482,478,484,484,478,475,487,472,476,483,475,487,478,475,488,489,477,487,490,487,568,572,583,562,575,505,505,504,505,499,492,497,488,489,498,500,491,494,496,502,498,498,492,492,504,559,574,573,569,573,569,582,564,581,575,556,568,557,568,556,563,508,506,505,501,515,513,525,493,511,490,488,508,506,496,492,490,491,432,423,446,444,441,440,437,437,433,470,482,478,485,480,489,481,475,483,480,481,478,477,545,549,549,547,546,543,550,541,542,544,546,543,542,549,545,548,559,557,551,557,560,556,558,560,558,558,552,559,563,559,522,527,519,539,530,527,527,520,521,525,530,532,527,524,524,522,521,535,506,514,501,502,504,498,502,505,502,476,470,477,468,480,480,476,478,479,475,485,476,488,488,489,481,479,480,486,479,469,598,594,547,543,546,550,543,554,536,549,544,552,553,543,551,550,546,548,540,545,553,538,501,490,498,500,504,500,502,508,505,501,503,509,501,502,501,546,562,543,547,547,503,508,515,510,487,483,478,486,487,494,490,490,488,477,489,480,475,487,476,472,470,473,477,480,481,492,481,475,474,481,480,563,545,555,560,569,573,566,566,575,567,569,566,545,564,571,567,562,522,516,515,520,521,522,517,520,518,518,527,529,529,526,522,527,525,532,524,523,525,528,523,526,518,514,521,524,521,514,521,545,546,550,543,549,552,543,543,543,544,542,541,548,546,531,529,530,529,527,537,529,545,528,524,526,530,528,527,538,517,519,518,513,519,519,511,515,537,531,527,534,541,532,531,483,483,473,487,481,480,472,471,478,551,542,561,549,555,558,558,547,547,547,549,547,556,555,548,550,552,546,555,550,547,544,546,551,552,524,522,523,536,540,451,450,463,465,524,525,524,526,516,520,522,523,526,523,518,544,537,534,532,549,536,538,556,552,553,546,554,539,547,550,543,548,546,548,551,542,495,482,478,499,501,507,490,499,490,507,498,483,506,499,489,464,457,469,461,462,467,476,562,553,562,559,542,562,553,540,542,552,550,496,503,516,506,491,509,507,493,511,503,476,507,499,496,498,498,495,494,511,437,438,431,444,434,436,433,444,475,469,554,545,551,553,545,555,540,537,527,515,526,520,531,521,536,534,525,535,524,589,587,599,584,592,593,585,596,591,582,595,582,601,598,595,589,587,604,592,547,556,540,553,560,549,557,562,565,495,493,502,504,503,507,489,501,501,503,502,499,461,454,454,449,443,454,445,447,533,545,549,547,553,546,549,550,551,545,537,578,582,574,571,581,574,567,582,563,570,574,590,563,547,552,539,538,490,496,497,502,501,492,483,508,498,494,507,511,501,497,501,512,529,539,547,534,538,536,543,544,559,537,561,544,544,556,558,550,538,498,517,503,501,494,494,546,543,544,544,533,538,545,540,549,541,529,542,536,543,540,536,551,490,499,484,488,477,485,472,477,483,483,473,480,574,557,561,567,550,552,546,565,581,550,560,487,501,493,496,494,497,493,492,503,507,504,515,513,497,504,516,511,510,501,567,562,563,559,563,565,569,563,561,565,546,553,543,552,551,541,553,556,552,539,556,526,509,510,509,481,487,477,475,485,461,463,461,460,455,454,463,465,455,469,454,471,459,456,465,454,454,486,489,478,478,476,484,478,588,570,563,527,523,513,510,507,470,466,471,476,479,482,483,485,485,476,491,484,480,487,479,481,470,476,473,456,455,452,454,455,472,504,508,498,504,507,503,506,501,504,514,507,544,543,546,540,551,542,542,540,539,547,542,543,516,516,515,519,513,521,521,518,523,558,548,555,557,544,555,556,540,560,546,548,548,548,490,482,475,496,486,494,484,493,487,489,474,489,479,465,463,466,467,472,467,464,464,477,476,458,466,482,480,555,556,552,558,557,560,559,564,516,502,493,513,519,509,502,503,510,503,504,508,512,508,523,477,473,480,482,480,484,480,479,476,475,479,479,475,470,470,453,499,488,487,484,488,487,491,480,491,524,520,530,518,518,527,518,503,516,517,508,525,515,511,522,508,513,518,549,536,544,542,548,543,536,536,522,537,525,545,551,546,547,467,473,459,479,463,467,478,456,592,584,584,612,577,599,601,594,595,556,565,562,567,549,558,565,561,519,519,524,511,509,501,504,500,510,472,485,482,479,487,482,492,483,477,484,486,475,514,518,511,517,518,512,513,521,505,511,512,519,561,496,497,499,494,510,493,512,507,504,508,509,511,509,508,512,510,509,516,512,534,537,527,532,532,551,548,538,543,535,536,537,543,477,474,480,484,472,487,480,469,473,472,467,471,474,486,600,602,583,579,575,569,581,583,582,585,585,593,530,541,491,493,488,486,487,486,485,480,481,488,491,487,491,495,488,492,487,487,479,534,533,536,541,539,544,538,537,536,538,533,534,537,535,540,531,537,545,543,544,545,530,545,547,544,540,543,540,542,539,540,543,555,562,559,555,554,563,555,555,557,555,561,557,565,553,561,560,562,557,553,557,560,555,560,518,519,513,513,516,516,527,524,499,495,491,502,468,466,466,471,465,466,465,461,463,466,462,424,435,444,443,447,433,428,442,443,441,515,516,509,539,544,538,542,530,538,538,541,550,550,550,552,545,539,544,549,516,519,523,516,526,523,519,511,549,564,550,556,545,547,547,546,560,552,546,549,546,556,550,544,552,555,561,561,553,558,556,556,554,554,556,547,558,548,553,554,542,493,487,494,496,500,503,499,502,498,505,502,494,502,500,496,505,499,495,494,503,502,575,561,585,563,560,584,573,581,583,495,496,502,499,504,505,497,511,499,512,511,514,489,500,506,503,497,499,495,489,498,507,555,575,575,555,579,574,573,562,563,577,566,576,522,525,514,516,516,517,516,517,522,517,536,534,535,525,522,526,533,549,546,557,557,558,543,559,543,555,515,522,523,517,520,510,510,521,522,520,511,531,533,528,517,517,524,517,476,492,460,470,484,491,477,474,473,483,601,593,582,596,512,503,523,551,551,549,556,541,553,546,535,547,545,541,544,546,549,550,543,491,487,484,495,485,489,484,495,476,502,496,487,503,490,435,444,435,441,426,440,435,441,434,433,432,434,434,435,444,528,530,529,519,532,568,569,568,562,565,566,554,569,530,531,534,537,535,520,519,516,523,524,523,520,520,518,517,515,518,518,554,556,548,555,554,553,544,527,531,507,496,506,501,502,505,500,499,508,504,495,501,499,496,529,573,576,569,568,573,582,563,586,578,580,571,573,574,528,537,530,532,537,536,532,530,528,532,515,529,580,572,592,588,579,586,579,578,586,590,536,550,547,542,539,541,537,538,543,541,536,510,513,505,516,513,511,516,504,506,511,529,532,526,531,530,533,512,531,517,521,527,526,585,589,590,581,591,581,584,588,582,579,580,595,589,597,580,586,537,557,549,553,550,551,545,538,552,502,510,515,511,511,517,514,519,522,509,516,540,540,535,541,544,543,542,540,544,543,513,501,501,493,502,509,501,508,500,494,547,560,544,563,550,501,497,502,505,506,505,501,550,551,554,554,549,548,550,553,551,552,558,557,518,516,505,517,509,515,517,512,507,528,513,519,506,504,500,502,487,490,490,493,479,490,490,487,466,471,468,475,474,455,461,467,471,478,472,475,471,470,478,489,491,484,491,487,495,493,490,445,489,472,545,509,511,518,511,521,509,515,512,503,502,506,514,509,508,513,513,557,562,569,554,567,572,568,561,558,561,565,544,559,564,558,575,567,545,518,519,527,522,516,512,524,520,518,526,518,511,510,523,512,525,536,524,507,519,487,483,481,482,488,490,491,486,482,484,485,482,493,484,494,481,483,483,484,483,456,451,450,536,547,542,548,557,565,568,572,561,566,534,538,541,533,537,532,528,527,533,533,534,533,533,530,533,528,530,529,528,539,532,542,517,520,524,519,521,520,528,525,516,528,524,526,527,525,610,581,594,592,593,579,592,610,543,543,553,544,537,547,537,506,486,484,499,497,487,495,496,504,497,500,499,507,482,479,488,487,483,495,491,484,486,492,486,494,458,469,476,470,477,468,465,469,443,438,441,427,437,442,444,435,439,434,432,498,495,512,498,493,494,494,487,497,493,492,491,492,490,560,558,500,510,513,522,511,517,520,494,490,502,488,488,490,496,490,476,478,473,473,471,475,474,474,471,478,473,471,490,491,491,504,485,492,484,493,536,515,536,524,526,535,532,532,530,460,461,444,453,461,453,448,456,449,457,458,528,513,526,531,531,536,530,531,572,563,565,569,567,559,568,548,546,551,547,556,549,544,549,544,544,538,541,546,543,542,544,550,544,542,548,548,552,541,548,550,494,464,469,462,478,475,468,468,464,459,460,472,572,574,564,580,569,570,561,572,566,564,568,571,566,563,577,562,560,548,568,564,571,556,553,563,556,494,488,520,515,518,509,514,508,522,520,514,519,516,503,519,540,545,544,540,545,548,536,543,543,529,539,540,535,541,540,541,539,540,540,521,522,524,563,559,558,568,559,565,567,569,548,555,557,555,560,559,544,559,556,549,504,501,488,499,496,481,487,491,497,488,505,503,496,484,495,504,497,496,486,555,588,545,556,564,565,585,577,578,558,553,561,556,554,513,509,506,521,508,515,508,509,500,512,510,509,503,512,554,547,554,539,552,547,552,552,545,543,558,551,471,472,480,482,490,496,492,466,478,477,482,486,475,461,458,448,460,450,455,462,456,463,596,591,576,589,586,600,591,580,589,591,548,543,546,549,554,548,545,548,542,553,546,541,547,551,545,550,548,492,498,506,507,460,460,456,456,452,456,471,468,476,474,478,479,473,558,543,547,538,556,558,543,551,559,566,549,565,559,551,550,544,469,475,479,473,476,484,484,485,475,465,490,493,493,485,491,483,499,495,493,491,503,501,485,561,572,559,558,567,555,554,560,561,558,559,567,566,555,555,554,553,530,524,512,518,476,476,472,478,470,477,467,480,476,479,478,472,473,469,460,472,466,466,461,463,455,470,460,469,466,454,550,557,561,559,552,556,560,570,551,564,549,546,553,546,548,543,551,548,514,493,487,494,494,513,489,495,500,490,500,483,489,488,495,488,523,531,528,527,536,538,533,534,525,530,529,526,533,536,560,561,554,555,568,545,564,560,523,520,524,522,527,518,519,522,523,526,535,526,522,537,535,546,533,538,538,538,545,541,537,538,543,556,555,554,569,557,553,525,526,518,555,562,561,558,556,563,556,551,558,561,565,568,560,557,546,493,511,505,500,492,496,507,492,496,502,508,507,504,495,491,481,483,490,485,483,482,486,498,498,494,496,498,496,492,499,498,496,498,484,480,482,476,472,468,468,470,470,473,488,488,495,500,492,492,488,494,491,488,488,489,488,489,527,532,534,530,544,548,548,547,530,521,522,528,524,521,525,524,530,556,564,567,561,557,555,551,548,555,554,555,551,554,548,554,501,506,446,467,445,452,451,458,460,497,506,503,504,496,508,505,494,549,553,563,555,556,553,545,546,556,553,550,546,521,511,504,490,495,495,492,494,508,503,498,463,460,463,456,458,449,465,453,456,465,450,451,464,455,550,544,555,552,533,552,558,553,553,548,555,544,574,580,568,569,574,575,566,574,513,521,542,511,511,562,499,539,485,481,482,485,477,493,468,481,566,560,563,562,575,551,552,541,492,486,486,510,491,504,496,496,478,483,473,470,463,475,463,474,466,462,469,466,464,473,474,459,471,456,554,539,556,548,546,555,547,546,553,556,501,503,497,493,503,501,494,494,500,478,496,504,473,465,469,472,472,470,464,480,465,525,547,523,538,536,540,558,534,545,532,486,472,484,474,475,478,489,480,497,539,551,543,545,542,545,556,546,542,543,553,544,541,550,491,496,497,482,487,490,486,480,481,489,484,493,468,468,476,477,472,483,480,567,566,566,554,553,548,575,516,520,522,532,517,525,530,531,527,513,509,511,513,508,504,511,515,504,508,474,480,481,474,499,491,490,505,488,485,491,498,495,494,491,492,562,589,566,574,566,574,567,575,575,582,565,575,560,576,553,567,518,507,531,506,504,523,502,501,506,519,504,504,493,481,490,501,496,497,497,498,496,498,497,495,499,496,494,491,498,492,493,502,504,500,500,492,496,465,449,454,475,469,466,466,480,472,471,468,463,472,473,475,457,591,597,584,589,584,602,530,536,523,524,531,535,521,527,523,598,596,586,553,555,547,552,550,549,557,540,538,549,552,558,548,549,550,495,469,490,471,485,479,478,481,480,480,482,453,461,453,465,438,458,457,456,478,457,585,581,575,590,559,555,553,550,547,543,552,553,555,547,551,547,552,555,554,546,550,549,551,548,554,547,553,562,526,523,528,512,533,532,522,493,494,495,500,494,497,466,467,474,478,470,486,470,482,560,560,552,565,551,565,577,501,504,504,505,501,496,501,508,514,514,499,522,499,480,467,485,471,465,469,474,472,470,475,490,471,466,474,538,540,545,567,556,541,553,566,474,488,485,479,495,480,489,529,532,535,522,548,543,535,555,568,567,567,562,565,566,568,564,570,563,560,564,521,525,531,529,529,537,520,558,565,571,554,555,567,554,561,572,526,524,530,527,521,526,525,528,547,542,535,535,537,545,535,534,524,539,541,537,561,557,561,566,557,550,559,553,552,557,559,533,527,520,528,523,528,513,551,556,548,551,549,551,549,544,551,547,554,546,549,541,549,572,573,560,562,573,572,573,579,572,523,524,512,522,495,493,485,491,497,489,491,491,460,457,462,456,455,445,457,457,455,445,450,445,456,449,450,493,491,493,498,498,501,498,500,541,538,537,535,535,539,538,535,544,557,549,563,558,557,557,555,553,549,552,512,517,514,508,513,516,492,459,466,463,460,466,464,455,457,463,459,492,493,558,546,555,554,554,552,550,551,547,559,550,566,553,555,549,556,547,539,548,547,557,548,543,551,546,547,555,509,516,506,520,518,507,516,517,514,513,473,488,483,486,487,478,480,481,484,483,487,474,482,481,473,484,480,474,492,478,484,481,476,480,490,498,491,488,491,491,534,532,528,528,527,540,533,537,538,534,543,535,531,567,559,569,549,560,554,555,561,561,557,564,564,501,515,494,500,508,438,480,489,474,483,476,471,487,481,483,484,489,484,489,505,502,500,504,506,499,500,503,504,504,504,532,537,538,525,544,538,538,543,530,530,531,535,541,544,554,572,562,554,551,571,566,561,561,538,542,537,538,533,542,539,550,539,534,545,531,558,565,551,567,564,565,557,547,517,516,521,509,517,516,516,516,563,561,571,563,546,558,576,557,575,503,493,498,509,525,506,511,490,501,508,453,460,454,453,465,455,462,548,544,552,537,539,548,542,545,547,555,513,500,507,505,510,507,514,515,508,512,513,500,538,530,543,529,532,538,547,552,566,562,571,558,546,565,505,510,495,498,503,490,510,520,523,516,526,511,515,529,522,516,514,525,522,519,525,569,556,572,560,565,565,559,567,563,559,560,569,512,536,532,535,520,519,531,526,528,520,519,520,530,534,533,530,507,497,490,499,488,497,492,487,493,493,491,452,469,453,462,462,469,464,456,460,461,463,454,458,498,510,498,504,507,506,500,539,495,494,490,496,489,494,498,487,498,501,504,504,501,523,520,525,526,488,484,485,492,501,497,500,500,505,500,494,494,593,593,598,595,592,598,581,599,593,572,575,601,582,587,586,596,539,535,540,546,527,524,541,531,518,584,562,512,512,508,506,508,505,517,514,510,506,524,557,562,574,512,522,519,522,516,516,529,513,527,461,460,462,466,459,454,428,443,431,448,526,536,531,527,534,528,529,538,532,518,547,553,547,554,548,552,529,541,542,542,492,477,506,492,487,491,488,508,490,485,492,492,504,492,501,500,503,506,499,501,498,500,500,502,499,540,546,545,544,546,542,534,562,561,553,568,545,565,561,565,551,557,560,558,553,547,491,498,501,484,513,496,495,510,503,505,513,481,488,482,477,479,485,490,484,489,492,486,487,475,490,487,475,478,480,484,487,479,484,483,473,475,471,478,477,465,468,469,463,454,453,490,494,497,490,495,497,487,496,492,503,497,496,504,496,497,491,497,542,546,540,548,559,547,543,555,545,548,554,540,508,511,496,510,498,508,509,510,502,503,504,500,501,506,504,505,504,547,559,560,549,563,557,563,551,553,552,545,547,565,546,552,549,547,549,551,557,492,483,492,480,502,505,491,495,493,516,501,505,499,509,454,462,459,457,466,465,459,492,495,482,473,484,491,484,484,491,561,554,555,563,542,572,555,565,565,555,561,562,556,559,566,561,565,565,531,527,524,529,523,533,521,540,537,535,537,534,544,538,534,537,540,533,536,542,524,523,522,522,519,528,520,524,528,521,520,525,520,519,525,519,517,520,522,569,568,570,562,559,566,567,563,557,551,554,552,557,554,557,555,560,562,560,535,520,507,528,544,537,525,520,513,524,521,508,502,510,510,514,503,511,510,506,511,508,507,505,503,498,499,507,508,502,495,507,502,496,502,506,509,497,498,492,497,497,492,490,498,494,497,499,457,455,457,456,470,463,475,474,476,481,581,585,597,591,598,530,540,544,545,546,528,522,520,527,528,525,520,523,528,525,527,530,523,530,523,525,534,542,481,472,480,479,464,480,473,467,478,481,478,473,487,479,537,542,550,558,542,561,544,545,549,546,563,545,540,541,560,544,551,554,546,480,486,509,508,490,508,510,492,503,497,509,500,525,529,530,528,525,527,525,539,527,523,514,509,517,512,518,520,520,544,544,562,555,552,551,551,562,548,555,553,556,553,543,544,543,543,531,529,533,530,531,522,525,517,555,555,564,559,563,484,487,492,488,483,488,496,471,467,473,473,599,594,596,591,587,611,591,602,584,583,603,597,531,536,541,542,538,541,541,538,539,540,540,541,531,520,519,523,523,520,523,526,521,513,523,525,517,558,559,560,562,556,570,562,555,560,549,568,518,517,543,535,534,546,533,540,549,534,544,545,537,533,541,534,537,571,568,571,560,562,564,569,556,551,561,549,571,570,570,559,499,505,508,509,504,501,515,515,502,502,517,518,527,514,522,514,513,518,529,515,523,515,522,516,524,516,519,557,556,550,560,554,561,570,559,559,565,495,489,497,500,485,499,492,470,476,482,478,481,488,477,486,490,484,486,480,477,477,572,575,573,573,566,575,582,563,554,550,572,575,535,563,569,517,509,513,513,523,529,525,523,522,522,519,527,514,522,525,517,515,528,521,529,554,552,549,557,554,549,555,558,547,556,533,524,530,533,526,531,525,529,557,554,552,545,544,546,550,541,555,490,500,481,497,484,486,497,488,481,486,489,475,470,481,484,590,595,593,591,594,593,521,479,549,545,507,532,534,481,481,467,469,468,482,478,472,476,468,487,476,468,472,467,478,465,474,481,480,563,552,564,552,539,560,571,562,513,517,515,508,512,506,509,513,515,513,520,507,507,507,497,504,506,517,532,519,537,537,534,525,537,524,531,527,535,528,531,534,527,529,534,529,537,553,545,558,556,549,551,538,538,527,534,532,536,539,537,540,556,559,547,557,551,548,560,559,562,484,498,493,502,498,505,503,503,492,506,496,495,505,497,498,494,495,503,505,500,502,499,494,497,495,492,506,500,532,540,540,535,537,541,531,541,572,566,574,558,571,560,557,552,530,539,532,538,521,535,533,530,535,513,525,524,519,516,532,518,524,520,514,514,522,594,593,595,591,542,556,552,559,550,554,548,555,552,514,524,518,518,524,520,516,499,508,518,513,513,520,501,497,500,499,505,494,499,499,502,502,484,491,496,486,465,462,459,469,468,460,458,454,450,442,448,449,451,448,451,440,448,445,508,509,519,522,504,514,524,564,553,552,554,560,559,558,560,553,559,558,499,509,504,499,498,513,507,512,511,516,507,556,542,540,546,539,537,543,545,549,531,545,536,546,545,481,479,475,483,484,464,477,479,479,484,495,486,468,474,488,475,479,473,484,542,540,548,543,535,543,541,549,545,552,538,543,551,548,540,500,509,512,507,513,518,518,512,560,554,564,560,554,550,554,557,554,550,566,556,526,529,520,533,519,520,517,506,503,507,501,505,504,509,512,509,502,512,506,508,516,504,498,505,503,501,496,490,490,489,487,490,484,497,490,497,486,487,488,496,476,469,462,469,464,475,474,480,486,485,485,476,481,496,537,540,531,542,561,569,573,570,569,570,570,564,568,570,532,526,533,521,536,526,524,550,567,557,552,552,564,548,547,533,527,529,527,525,524,528,532,519,529,540,534,542,534,534,535,536,510,508,514,518,519,517,518,518,521,512,516,543,559,551,553,510,531,511,501,517,513,514,509,516,513,508,484,481,493,484,481,484,486,480,481,485,479,491,472,478,477,481,478,483,476,487,505,495,500,489,486,485,483,489,489,488,470,480,477,470,471,474,475,460,467,454,473,456,458,461,458,462,456,457,459,466,450,463,460,462,459,493,510,509,499,502,499,503,508,500,552,549,503,498,480,469,481,482,481,478,480,458,469,476,463,463,460,462,464,490,500,492,496,490,498,491,487,496,491,487,488,526,533,532,537,493,489,482,488,492,490,498,483,485,480,482,488,501,507,504,500,510,500,516,502,518,498,503,503,511,507,553,543,544,533,554,549,477,475,478,487,472,486,489,462,456,471,460,460,474,462,463,467,459,448,458,460,459,470,460,460,585,590,596,593,556,550,560,563,543,564,561,559,496,491,514,501,499,504,507,513,482,481,485,491,480,487,498,499,500,490,505,493,488,500,500,493,535,538,534,547,547,514,517,528,521,523,516,515,600,577,587,591,576,585,502,513,523,504,505,498,504,509,501,516,538,533,540,541,571,558,570,553,564,522,524,528,514,512,514,524,526,507,590,578,583,592,585,588,587,578,592,579,590,585,587,580,581,587,513,552,511,451,447,444,436,464,454,456,448,541,544,516,531,528,561,569,570,541,560,571,566,559,564,571,565,559,537,538,533,534,523,538,536,532,534,528,534,533,518,521,528,527,518,520,512,525,523,536,515,606,596,582,593,592,590,531,526,531,538,535,541,526,533,536,517,540,534,536,529,525,525,490,499,488,504,502,591,575,587,580,590,591,590,585,593,595,540,542,533,518,525,531,521,516,514,523,514,530,493,484,498,489,485,570,560,566,559,566,561,568,483,495,494,473,494,484,487,482,488,501,501,473,470,460,584,582,570,579,581,581,571,578,581,577,581,577,570,585,526,527,525,519,523,530,537,505,518,509,518,510,514,525,514,515,517,518,517,508,510,518,524,563,555,548,558,496,497,519,512,510,512,514,518,516,515,509,546,556,555,553,555,560,560,564,493,489,480,482,487,484,494,489,493,486,433,440,543,548,529,544,534,561,577,569,567,568,564,547,552,540,548,556,559,504,514,509,512,513,522,523,502,519,520,524,534,528,520,513,519,525,513,500,503,508,500,496,505,495,486,481,491,495,489,479,476,482,486,485,486,483,477,485,475,469,478,481,452,461,452,451,455,459,449,455,471,456,464,463,544,551,549,551,562,580,579,564,581,574,566,544,539,546,554,557,541,538,530,543,558,555,546,547,507,500,506,494,501,491,496,495,492,490,530,524,524,524,522,529,585,581,587,573,585,586,589,583,585,583,578,582,544,552,553,551,547,547,555,556,545,557,552,553,555,541,553,552,556,553,544,543,539,534,550,535,543,541,518,500,492,490,492,501,499,501,507,499,474,468,466,467,494,496,498,494,489,504,506,494,503,521,547,537,540,548,546,542,500,493,492,502,488,497,495,501,493,502,500,491,491,491,500,494,498,500,500,493,510,492,505,506,506,513,542,552,548,550,550,554,545,556,553,549,554,550,491,493,492,489,491,486,488,501,485,487,473,485,467,478,469,469,481,478,482,550,554,562,550,558,541,535,561,559,552,557,569,561,566,556,544,546,562,528,510,524,517,497,479,493,489,481,492,488,494,487,466,476,480,474,474,479,467,480,476,474,464,479,476,480,461,470,464,457,447,450,447,455,455,505,498,499,495,508,512,503,512,509,509,540,544,529,532,542,538,527,542,537,535,567,563,554,567,573,566,561,559,566,520,522,518,524,521,519,579,581,580,584,588,571,577,579,592,583,541,540,532,540,538,531,549,536,544,522,528,520,521,523,528,521,557,551,560,518,521,517,512,511,513,510,510,509,509,510,509,513,507,512,545,532,542,542,544,536,541,531,577,567,559,548,557,557,572,559,562,563,569,530,523,528,524,530,530,512,523,520,490,491,484,485,491,456,471,470,456,468,463,463,459,468,460,463,460,454,460,458,479,478,491,484,492,483,481,481,481,564,569,567,556,561,557,557,572,564,511,508,505,516,507,504,509,508,515,499,494,500,514,507,514,506,505,498,511,496,482,488,497,497,486,485,488,493,486,526,525,524,522,527,528,527,530,524,515,548,499,495,496,493,505,503,495,500,487,500,505,500,501,499,498,509,504,496,497,496,495,506,501,497,538,547,557,477,488,489,500,490,482,486,487,484,487,489,483,493,481,485,492,487,485,497,492,485,482,491,488,562,551,556,553,569,561,559,551,555,561,529,509,502,504,519,500,503,504,507,496,497,495,531,537,540,535,525,551,546,529,534,522,529,538,552,534,474,487,483,492,477,473,482,477,483,480,484,478,486,485,467,467,465,470,468,467,478,462,475,454,475,552,539,534,536,556,551,549,548,533,552,550,564,552,535,556,559,542,544,483,469,465,458,470,460,465,469,475,466,472,467,474,460,467,558,562,568,515,512,505,511,512,508,515,520,506,509,516,519,523,533,527,526,526,525,524,523,523,528,518,523,516,514,524,526,525,555,542,553,565,557,547,543,550,550,508,509,508,512,499,509,499,502,504,508,508,504,506,512,496,500,516,524,518,516,526,504,519,587,585,583,570,587,572,578,575,580,577,589,574,576,554,577,569,561,514,516,545,538,542,538,553,537,550,535,539,551,544,538,543,538,540,554,499,509,517,506,504,498,504,500,495,496,500,495,503,504,506,504,506,502,496,497,488,498,526,520,531,531,528,532,526,523,527,518,526,532,534,534,517,539,536,526,521,523,534,533,534,534,539,555,544,543,508,500,511,509,507,504,511,502,516,504,505,508,508,522,522,521,518,520,519,524,525,523,522,538,540,556,555,555,562,563,551,546,560,551,552,550,549,546,554,514,501,521,520,513,508,508,529,526,519,523,519,510,528,525,517,550,548,537,555,552,554,556,510,518,507,510,509,509,510,512,516,511,511,501,510,504,504,508,506,505,509,499,506,500,508,557,547,551,542,548,547,546,550,547,543,540,547,535,530,544,542,544,543,542,474,497,506,489,493,502,495,494,503,497,504,495,549,557,547,550,556,562,558,558,544,552,518,503,500,446,450,450,456,455,452,455,445,451,444,460,461,457,463,454,457,451,457,455,554,554,552,564,551,558,565,548,558,552,560,554,561,562,554,564,553,555,553,506,498,505,497,514,483,499,494,453,461,462,457,451,444,457,453,446,456,457,462,453,454,460,498,505,508,496,559,557,561,560,560,559,557,559,569,537,495,493,489,493,489,494,491,509,501,513,507,508,506,510,502,504,508,511,509,508,514,549,552,549,543,554,551,547,553,536,545,549,547,551,543,550,544,547,560,547,548,551,540,560,550,540,545,494,505,506,503,502,498,482,485,483,483,489,486,494,491,478,484,493,491,486,486,490,475,472,474,473,473,477,472,466,478,473,472,474,474,506,509,504,516,509,505,505,504,510,511,560,567,564,560,558,566,564,566,532,522,532,544,523,518,493,505,498,498,507,495,495,500,495,512,505,509,477,481,473,474,477,473,483,480,477,479,481,481,483,562,571,574,575,579,569,564,562,570,571,579,562,578,557,569,512,490,509,495,490,487,512,503,488,490,494,581,579,575,574,576,584,569,588,579,531,526,533,524,533,532,527,530,539,530,524,530,524,529,535,568,552,545,567,555,551,565,568,554,555,563,542,489,499,496,498,498,497,492,500,514,498,497,506,498,495,463,476,470,550,545,558,560,556,566,566,552,552,552,563,559,550,544,517,516,519,515,523,510,509,513,508,510,511,501,509,507,515,482,490,486,496,497,491,488,488,491,493,489,494,494,496,492,489,490,470,469,468,470,467,471,475,465,462,461,459,458,471,460,456,465,493,491,490,496,564,546,549,551,553,557,547,552,545,553,563,562,544,545,502,489,498,510,512,513,513,502,522,515,513,520,513,515,518,567,557,552,570,554,556,571,547,555,553,561,562,552,499,493,507,493,506,498,501,505,497,496,501,524,515,509,555,558,558,548,558,566,556,565,561,561,554,569,556,558,571,565,563,558,560,499,506,497,497,505,490,506,510,523,511,529,510,514,519,521,515,509,553,550,573,568,564,561,578,564,572,560,569,517,520,514,512,511,516,517,521,516,520,526,521,512,512,520,528,509,488,488,498,488,497,493,492,497,492,496,486,495,497,490,479,469,476,470,461,465,464,465,471,470,486,489,488,490,485,494,497,478,482,493,493,490,481,490,487,494,486,555,545,558,554,558,542,556,547,563,553,556,511,498,513,504,504,520,507,514,508,531,521,523,516,477,504,496,494,502,497,500,492,498,496,496,496,503,504,504,498,497,497,498,497,508,497,537,535,531,531,531,531,540,529,537,530,535,531,528,537,560,558,552,548,554,493,508,496,491,507,491,477,490,500,495,500,565,589,583,582,573,575,573,584,575,527,535,525,526,536,527,538,536,539,536,517,514,515,514,545,546,543,548,546,555,576,579,523,529,520,510,524,521,525,514,526,534,520,529,517,535,504,494,496,486,492,494,492,495,492,487,481,478,490,482,486,483,489,490,473,470,480,474,483,475,597,582,593,603,529,537,533,538,526,552,552,574,559,553,564,547,567,512,515,511,512,503,511,511,512,514,509,507,505,504,516,518,524,522,523,521,521,525,526,557,558,543,557,563,554,556,556,550,546,557,512,514,512,527,527,533,532,526,531,535,531,531,553,568,562,555,542,549,504,488,504,484,505,498,502,512,496,498,504,504,490,507,494,510,518,494,476,485,480,481,483,483,480,477,467,462,468,467,466,465,460,484,474,490,487,485,491,492,480,484,489,479,475,473,498,505,492,495,498,495,496,496,497,543,534,537,534,536,540,543,533,544,544,539,542,535,539,531,541,541,541,538,537,537,533,537,572,570,564,572,558,566,572,563,562,541,532,532,536,541,535,546,545,571,580,581,574,581,574,527,518,528,523,519,529,522,507,506,509,504,511,506,512,513,516,503,509,509,506,506,501,506,508,502,486,493,485,488,486,482,475,473,479,480,478,489,473,477,476,481,486,475,497,497,499,492,504,495,501,498,500,500,502,543,543,542,542,552,541,545,544,517,519,517,521,520,510,521,514,514,536,526,508,586,596,588,597,592,592,538,540,542,538,544,523,536,532,542,542,546,536,530,487,491,486,489,488,495,479,495,497,484,494,488,486,489,502,502,517,507,548,557,549,552,559,556,525,504,527,501,501,520,509,510,503,499,507,507,498,503,497,500,501,503,478,484,479,481,508,529,536,532,562,533,545,535,550,541,532,489,483,488,484,490,485,480,485,475,478,492,483,551,551,550,552,549,555,545,552,559,512,512,511,512,512,515,512,513,508,505,519,515,528,530,528,529,523,530,561,549,555,550,542,512,519,512,513,516,517,520,520,519,515,516,509,518,526,515,515,523,530,516,512,546,548,554,552,544,544,550,545,553,550,542,545,540,544,534,528,531,514,520,513,518,517,519,515,515,521,520,542,541,543,544,541,549,548,575,574,574,571,584,580,569,569,531,523,534,527,503,511,496,499,502,504,500,493,490,491,491,485,488,491,501,503,509,508,506,512,502,501,505,502,503,507,546,531,526,535,535,520,525,531,538,527,537,534,508,510,559,565,551,558,556,551,551,531,532,557,552,564,554,565,544,553,567,562,549,556,546,563,560,499,501,507,491,502,475,490,490,480,486,486,484,563,563,568,563,585,559,570,503,516,506,513,505,513,503,514,512,525,514,511,510,513,511,548,542,496,491,506,487,500,511,515,509,517,513,514,518,518,510,523,511,512,505,555,545,541,540,543,545,528,536,534,530,531,526,530,536,532,531,536,530,525,533,528,528,539,555,568,561,563,565,560,565,521,517,507,515,523,504,513,518,520,486,484,484,492,488,483,480,496,494,488,492,489,507,506,515,508,507,508,508,509,505,508,508,506,514,515,510,512,519,516,527,525,524,528,529,527,531,566,567,568,570,564,566,526,533,535,527,534,543,519,534,532,540,477,491,492,491,479,492,487,484,487,488,505,499,502,511,498,510,539,553,549,547,542,503,499,503,509,491,492,497,457,446,460,453,452,464,454,497,498,535,531,524,527,544,534,533,536,520,540,536,521,479,481,490,485,482,485,486,484,485,486,479,500,488,564,559,568,567,571,569,562,570,556,553,485,489,490,493,499,478,478,504,496,502,486,478,448,461,451,458,452,455,433,458,568,564,543,549,550,554,549,548,541,542,543,548,548,546,545,511,517,495,507,510,517,517,516,527,507,507,523,510,507,508,504,500,506,511,513,481,484,477,483,478,476,487,480,481,476,472,478,483,473,469,475,479,484,477,492,467,462,455,461,465,474,456,458,470,512,520,512,515,516,512,516,514,503,564,562,565,568,579,567,575,565,565,560,566,518,519,517,512,515,519,519,515,508,514,526,478,480,479,482,477,477,476,476,476,480,479,475,480,482,501,497,508,494,500,499,501,500,505,559,554,558,552,553,563,550,559,559,551,558,559,550,556,568,550,554,560,551,557,553,558,563,555,550,554,556,560,553,552,504,519,520,523,530,520,517,524,518,502,502,499,484,481,485,484,484,494,488,489,467,473,471,472,472,470,469,472,469,469,470,476,483,472,470,475,479,471,476,478,470,481,478,479,482,478,480,474,473,463,473,472,468,478,475,468,479,475,477,476,474,475,473,469,460,462,465,464,475,460,469,456,457,459,475,452,460,540,548,544,536,546,528,528,546,538,521,527,525,524,517,525,527,521,518,517,537,526,531,539,536,537,541,540,534,541,539,529,537,545,536,538,552,542,538,511,500,514,503,498,479,487,476,461,470,459,463,466,459,475,459,458,457,467,467,470,459,461,464,457,465,461,458,460,470,431,436,428,430,432,438,438,430,485,481,564,549,558,562,561,561,569,565,554,563,557,549,551,545,553,547,545,546,521,510,506,510,511,511,516,502,518,508,506,478,482,483,486,487,480,492,492,485,479,487,485,467,461,466,466,466,467,463,460,458,462,468,454,446,444,452,460,496,502,504,499,503,501,505,554,540,556,547,552,549,553,546,556,552,552,554,571,574,571,570,574,568,570,564,570,566,576,573,565,571,581,490,509,484,495,515,504,500,502,501,503,500,502,508,504,482,488,484,482,476,481,483,477,470,479,489,477,491,479,484,602,598,597,586,609,591,591,588,599,593,597,550,562,553,549,558,559,548,554,551,559,552,544,490,495,464,459,459,454,465,459,451,449,456,513,500,523,511,498,509,493,506,499,511,518,506,502,558,571,567,563,511,498,524,523,515,519,509,495,499,501,503,486,477,490,485,489,485,488,487,493,469,461,457,472,466,462,459,461,449,449,448,470,461,457,451,495,506,492,497,501,495,497,497,501,497,504,547,544,545,555,551,551,553,548,551,556,549,537,476,472,480,487,472,467,483,483,473,479,468,494,476,472,483,461,458,453,451,460,440,444,447,454,448,548,558,551,556,548,549,556,546,565,544,546,545,565,556,552,551,553,551,552,547,560,549,545,548,534,531,543,528,527,528,523,530,529,531,525,528,533,556,568,560,561,564,561,561,559,509,520,527,528,507,509,525,516,523,518,507,522,504,512,480,486,484,490,480,476,479,478,481,472,479,509,504,510,540,538,535,538,536,543,539,547,479,478,484,477,484,476,471,550,559,552,553,547,548,548,543,542,542,546,554,543,541,558,545,550,552,543,548,549,544,508,505,500,479,488,497,487,499,491,487,498,497,494,487,491,536,535,543,539,553,521,535,523,524,531,530,531,532,519,528,524,526,527,524,529,519,517,520,525,523,522,565,563,567,564,559,566,554,551,567,562,564,551,561,561,514,522,506,476,480,483,481,483,485,482,470,465,460,462,462,466,453,464,459,466,548,543,546,556,532,557,542,551,550,548,546,552,541,554,547,543,556,518,512,514,511,519,508,520,531,537,530,527,527,525,531,531,522,529,529,530,530,523,522,525,529,532,519,534,526,525,533,528,525,533,523,563,561,563,563,557,565,564,559,563,563,551,570,558,497,491,495,500,494,485,507,454,458,454,465,463,463,464,457,531,538,546,544,523,546,543,546,533,529,531,537,534,536,526,535,533,536,534,542,541,538,537,536,546,534,547,540,537,542,546,536,505,504,507,514,523,513,511,509,508,512,511,540,541,533,536,534,540,544,549,540,530,539,536,535,551,551,542,550,551,549,547,538,547,544,547,546,543,548,543,553,557,549,554,558,559,559,558,556,538,547,511,490,509,539,544,537,527,536,542,531,535,537,539,540,534,543,536,493,499,499,498,510,503,500,500,500,503,499,506,508,512,504,501,539,541,540,535,547,539,546,539,538,547,529,529,539,533,542,554,567,572,572,565,570,562,563,572,536,530,543,540,536,525,540,548,549,547,538,531,503,499,496,487,496,498,488,492,492,493,486,504,500,499,504,503,493,502,503,504,501,495,501,496,494,503,491,554,537,529,527,535,543,453,460,446,448,447,455,538,540,547,532,535,530,535,526,539,535,562,561,560,563,570,558,560,564,568,561,566,570,564,572,496,504,513,495,491,512,508,498,510,506,505,497,500,501,494,505,546,545,541,548,562,562,567,558,555,552,566,560,552,571,541,499,504,493,491,502,497,505,506,454,474,467,463,477,463,460,457,470,461,448,456,454,455,459,444,460,444,452,456,478,481,571,579,583,581,555,509,491,506,500,496,504,503,502,505,499,518,504,499,497,582,590,571,583,584,579,568,575,565,570,576,568,583,578,580,575,579,578,587,579,549,533,539,522,528,534,537,536,516,540,528,497,499,501,503,503,496,504,502,505,508,506,505,498,505,528,534,532,532,533,534,503,512,519,509,517,510,515,518,517,521,518,507,517,510,510,521,529,490,479,473,491,466,476,485,467,481,492,467,470,548,548,558,553,554,560,551,549,554,545,558,551,553,558,543,543,544,550,543,552,548,550,566,557,492,496,497,505,493,508,489,500,501,487,495,491,503,493,500,499,499,522,518,512,524,522,518,525,527,504,502,501,500,501,501,500,498,557,566,558,558,558,545,573,565,527,518,525,523,522,522,511,465,470,473,477,464,471,467,466,477,469,476,479,471,472,475,484,475,475,471,474,471,463,448,458,473,466,464,468,459,593,572,585,582,585,590,590,534,532,523,531,519,529,528,533,520,520,525,519,523,524,524,522,517,523,525,522,518,534,533,539,542,542,530,531,548,535,540,533,516,515,516,522,525,517,521,520,522,519,519,521,522,520,516,537,545,546,549,546,546,546,500,490,490,492,503,505,501,491,502,498,494,501,501,488,505,504,502,513,494,496,504,503,502,498,497,495,538,540,544,554,542,546,558,551,541,572,562,568,571,567,547,536,539,533,540,543,535,536,525,543,537,533,540,520,510,499,510,483,477,472,483,482,478,476,484,461,468,463,458,463,449,465,452,467,464,459,460,472,460,451,452,455,461,445,459,450,448,448,443,451,449,459,460,456,510,511,505,513,527,522,548,538,527,538,531,533,542,476,481,481,478,484,485,493,480,494,484,479,486,473,563,555,571,576,497,489,498,492,492,501,490,441,441,447,432,445,442,434,458,448,442,454,438,545,534,542,544,532,544,540,541,541,536,539,542,538,534,540,539,534,546,537,547,477,491,481,479,465,473,477,474,480,476,478,476,474,472,479,475,490,488,497,490,502,488,490,507,494,498,491,494,549,552,548,551,553,553,535,543,532,536,528,529,535,530,543,536,537,529,564,559,555,555,528,531,524,527,531,527,532,525,529,536,536,543,543,544,534,546,546,540,538,527,532,533,525,532,528,529,527,533,523,526,531,530,545,549,551,542,545,550,504,517,505,501,505,498,498,509,511,506,471,464,466,469,465,467,462,465,466,468,472,467,459,451,456,452,448,459,459,456,458,449,451,442,441,453,455,456,453,449,451,537,515,510,506,513,516,522,517,511,519,511,514,511,515,511,550,547,551,550,562,555,549,551,525,525,519,518,526,521,520,528,528,522,525,524,525,528,520,526,522,529,489,489,490,494,495,500,506,496,498,500,494,499,497,501,490,499,491,488,500,512,591,584,564,558,556,562,551,567,563,555,558,511,518,510,520,526,531,502,514,521,524,484,480,480,474,477,475,480,481,485,478,480,482,475,476,475,481,470,479,473,471,462,470,469,461,462,453,550,570,562,551,549,557,550,547,549,549,556,561,553,555,546,554,552,559,552,553,493,478,494,504,499,498,508,511,483,506,517,447,442,441,440,444,434,444,440,447,465,464,470,472,471,473,459,468,479,467,465,468,562,552,560,534,546,563,540,555,556,570,558,548,559,479,482,477,499,506,500,513,503,500,505,574,559,567,561,557,559,558,560,558,563,565,562,519,513,523,521,533,536,503,500,506,503,508,502,501,501,505,500,510,500,504,511,499,494,495,497,493,495,497,499,502,500,497,494,501,496,491,491,497,452,452,457,450,458,459,457,465,460,455,456,459,466,468,461,484,587,600,592,598,583,590,581,584,590,604,555,554,553,563,557,553,556,560,555,556,553,562,549,553,554,518,521,523,511,518,523,514,522,520,527,518,522,479,481,475,452,466,464,458,460,456,458,460,457,473,532,531,522,534,538,528,538,532,532,535,536,539,531,532,537,525,532,535,533,543,534,537,532,571,566,572,567,572,558,561,557,559,546,557,556,554,555,552,565,548,546,555,545,553,544,551,545,543,521,528,519,508,526,531,522,523,508,515,519,526,516,536,518,514,503,498,504,503,496,499,501,507,502,500,516,494,493,500,492,457,462,454,457,461,458,476,457,573,591,594,613,587,603,609,552,553,561,564,514,510,501,519,507,520,514,515,515,517,510,474,469,456,468,458,463,449,469,461,458,465,452,472,465,472,585,585,588,587,594,588,587,586,592,578,592,576,586,533,532,525,536,521,489,484,481,487,474,460,477,468,497,471,535,528,519,517,530,540,526,524,521,519,520,519,529,523,537,523,523,528,534,528,534,530,530,531,530,540,532,544,537,549,554,540,546,541,543,547,547,544,541,552,510,501,504,513,500,504,506,509,500,495,508,504,506,500,533,529,527,537,528,535,528,534,526,530,526,528,533,526,555,547,553,543,494,522,494,514,515,508,507,505,524,498,461,446,457,497,495,494,503,490,495,495,486,497,500,484,496,566,581,571,577,572,564,581,569,580,560,512,534,521,502,512,521,516,516,487,484,493,494,492,487,493,491,492,493,493,486,503,510,498,511,498,507,507,500,513,500,505,504,506,502,512,503,531,528,533,533,532,532,529,545,533,529,532,535,532,549,530,535,534,503,503,510,509,508,512,556,542,553,565,560,548,557,564,564,591,545,553,572,570,476,488,487,496,492,496,488,487,483,488,501,493,483,482,498,568,560,559,548,540,543,540,542,545,542,544,540,541,537,491,484,476,455,469,504,495,530,535,535,546,536,517,518,513,518,520,511,512,511,518,514,511,509,512,519,524,514,513,509,517,518,511,539,533,538,532,537,530,540,532,538,539,536,531,538,530,529,541,534,545,544,529,532,543,496,504,511,504,500,505,506,501,502,495,552,532,537,533,539,534,535,533,530,538,535,533,536,526,558,569,550,563,561,555,568,565,557,568,578,531,501,505,502,511,508,502,499,496,501,505,500,497,502,509,507,498,506,504,486,483,485,483,477,484,490,483,489,487,486,484,480,483,512,524,508,510,508,507,512,509,546,537,539,539,538,541,542,540,478,467,472,476,481,471,472,477,458,483,464,488,473,491,470,471,472,533,535,538,525,532,556,574,571,563,567,571,567,564,559,565,570,565,562,571,559,576,531,546,555,539,542,548,539,541,536,531,535,539,536,539,534,528,527,525,523,528,524,530,519,525,518,527,520,525,527,524,526,519,523,527,523,525,523,568,566,559,566,561,569,565,553,572,556,573,562,562,562,561,565,565,567,563,562,554,562,551,556,558,546,549,554,547,483,501,487,494,501,498,498,505,497,509,516,509,511,513,513,514,507,515,515,510,511,503,508,514,565,561,567,575,558,556,566,568,558,559,563,564,559,553,505,511,515,470,478,482,482,474,476,479,481,477,477,480,476,480,477,468,467,467,470,465,466,468,472,465,484,555,544,551,559,550,550,554,537,534,533,540,542,536,538,530,537,532,545,534,541,545,573,584,590,584,568,581,589,580,570,580,580,578,569,535,527,531,529,533,533,515,519,515,514,516,510,517,519,514,515,514,515,514,513,520,501,506,506,498,494,505,507,506,503,500,499,498,508,498,502,500,505,505,500,496,501,494,498,499,490,498,499,498,495,502,477,471,434,444,447,444,440,443,440,437,450,498,498,496,500,496,500,497,498,493,501,560,564,565,558,556,555,570,562,564,557,570,560,561,543,526,528,528,524,531,515,510,513,514,505,509,507,513,510,505,508,512,512,501,505,509,499,505,516,508,509,500,500,506,506,500,501,503,507,510,509,503,497,497,506,501,503,503,507,506,498,504,507,492,486,486,482,491,479,479,484,484,477,494,483,477,479,501,507,497,501,498,496,502,502,501,502,488,487,474,481,489,492,480,480,477,479,483,477,481,486,493,485,481,479,480,490,491,488,490,474,467,484,483,489,484,495,489,476,480,486,531,529,541,561,549,478,474,471,476,484,478,480,485,477,465,478,478,473,487,477,476,482,470,555,564,557,564,583,565,580,581,560,523,515,514,513,511,503,481,502,479,480,479,483,476,481,466,488,469,475,475,480,475,476,497,496,496,492,494,528,532,529,518,525,528,530,531,538,533,533,583,590,582,593,578,590,576,587,590,579,585,584,595,580,584,598,558,566,551,554,556,556,551,513,504,513,499,506,480,480,482,481,481,481,483,488,478,488,484,481,480,498,498,497,491,548,541,546,540,512,503,515,516,501,511,505,510,505,508,552,548,554,555,552,553,550,552,550,550,534,543,543,543,547,541,546,546,551,560,543,543,549,543,528,527,525,510,547,541,559,555,550,555,558,554,556,552,553,533,528,531,516,513,513,519,555,553,542,550,552,552,559,559,558,555,556,550,547,560,557,489,507,506,505,502,469,481,491,487,481,477,479,481,487,480,478,477,478,476,482,480,475,479,480,482,474,473,443,445,447,456,448,448,451,457,441,452,451,450,506,501,505,509,511,487,550,554,552,550,559,544,556,554,545,563,559,504,505,507,512,516,518,509,511,516,479,490,483,482,482,489,487,491,483,488,481,493,492,483,491,475,508,500,508,504,482,492,484,495,499,490,486,483,485,481,488,487,487,482,482,483,477,481,479,482,485,473,478,475,480,484,480,478,472,476,472,476,479,485,473,475,472,480,485,477,472,472,480,481,483,511,508,510,513,512,510,527,513,522,512,513,511,507,544,550,561,550,563,543,549,552,547,553,548,551,502,498,518,502,490,506,520,505,556,560,570,563,513,506,515,515,511,514,514,514,507,516,519,516,528,516,507,480,483,498,501,502,505,494,499,500,494,533,538,530,534,542,537,529,534,533,544,531,541,540,537,529,555,555,553,538,560,552,571,546,553,546,565,511,496,501,511,509,509,512,491,509,510,501,543,543,536,549,557,545,541,552,547,543,548,480,461,479,470,479,470,480,487,491,496,489,485,486,481,477,473,492,488,485,485,489,520,536,519,526,526,526,529,513,524,525,578,588,593,577,571,580,499,515,503,509,505,513,511,507,503,536,545,540,563,578,563,568,559,562,561,571,573,565,509,501,499,494,500,535,534,532,536,541,562,560,569,557,563,571,561,563,563,566,561,567,567,533,534,543,536,537,535,534,535,521,528,525,529,524,520,519,553,570,565,565,559,514,513,508,508,500,509,515,515,512,515,515,505,515,518,526,514,522,513,528,525,518,558,553,558,539,546,518,523,529,522,517,518,515,521,522,513,524,551,505,503,497,454,456,454,461,457,451,456,453,459,455,452,457,446,449,444,463,527,525,530,535,529,533,543,540,533,541,545,544,547,543,557,547,542,549,545,549,549,552,548,551,549,509,513,479,512,493,510,504,500,508,488,519,439,477,463,471,466,460,471,463,474,477,461,476,468,473,473,467,567,555,565,557,561,559,569,562,471,472,483,480,489,473,488,469,470,473,475,444,441,444,441,447,456,441,432,446,454,454,445,452,449,449,450,546,525,531,530,532,525,531,538,538,529,529,536,541,544,530,541,540,562,560,559,571,563,564,558,566,515,508,514,520,529,519,575,581,572,579,575,573,579,545,556,560,549,555,553,556,547,548,550,550,543,512,521,505,520,507,528,512,530,515,518,499,517,520,523,520,487,479,478,475,483,485,482,482,471,486,486,478,482,516,522,509,512,510,519,521,568,572,562,564,554,560,556,554,567,557,493,487,495,499,513,499,499,494,497,477,467,468,469,473,466,460,466,550,547,551,542,550,546,546,548,557,548,556,546,554,555,540,546,540,550,555,549,550,541,545,545,560,541,556,522,516,522,525,550,555,554,551,540,539,548,540,531,502,511,524,515,523,510,508,507,515,509,513,560,559,560,567,561,558,565,562,491,489,489,491,493,491,495,485,491,498,489,485,492,498,484,482,470,477,471,480,480,470,485,476,481,591,594,588,602,596,601,590,583,599,590,587,597,554,547,549,558,556,555,548,552,561,556,550,525,532,499,508,497,520,505,515,507,492,503,509,514,512,502,507,505,536,574,557,570,553,564,552,563,556,504,472,467,468,473,471,469,467,473,480,476,471,466,475,503,503,509,510,509,509,501,510,499,510,506,506,501,501,502,500,544,541,545,545,555,483,502,488,486,476,496,460,463,455,462,457,465,462,472,464,456,470,454,463,555,568,552,557,558,569,547,551,564,560,545,512,514,514,505,515,513,510,508,507,514,505,505,509,507,504,536,535,539,535,530,523,550,549,545,544,551,547,532,542,553,555,476,485,486,483,486,493,485,491,485,485,479,479,492,497,532,523,519,527,529,517,521,512,527,527,581,582,582,591,579,594,588,579,571,589,582,584,549,543,550,508,497,495,497,495,496,495,495,487,494,501,500,491,503,526,538,530,517,524,542,595,580,588,594,579,579,576,584,575,595,581,587,540,550,546,553,542,557,557,553,544,543,544,547,554,550,545,554,553,548,560,541,538,506,493,495,514,490,503,505,514,500,502,499,500,458,464,467,465,465,480,485,485,489,481,492,491,487,491,485,541,538,541,540,549,537,547,548,539,534,536,536,535,533,538,538,540,542,547,536,543,540,567,523,483,490,486,491,491,482,481,497,490,482,487,490,484,486,490,496,487,505,494,499,506,507,492,496,496,494,501,497,488,495,499,522,533,523,528,528,535,526,534,533,527,526,526,533,534,576,583,584,539,522,538,532,491,500,505,500,498,501,491,492,486,563,557,546,544,556,550,546,550,551,565,560,551,552,524,522,526,524,520,522,524,530,526,552,551,538,546,552,549,555,539,548,548,541,551,546,561,554,554,503,500,474,483,495,495,451,457,446,451,497,484,490,490,497,500,489,556,559,557,547,546,538,540,542,538,535,537,535,535,541,540,540,536,538,527,534,529,525,520,526,525,522,527,522,538,533,533,534,534,533,533,534,529,533,531,529,526,536,535,531,552,566,565,565,565,553,551,553,560,573,561,547,557,521,525,522,492,488,490,496,495,486,495,490,494,496,492,494,489,466,473,500,497,493,506,488,498,489,500,493,499,499,508,509,495,552,550,557,545,552,553,547,545,548,541,547,543,556,547,541,557,557,491,505,507,499,502,502,509,505,496,488,499,497,490,488,507,511,502,466,450,449,483,558,573,572,565,568,503,512,501,504,502,509,499,502,507,506,467,460,464,477,486,478,484,485,486,476,477,535,537,532,525,535,529,534,541,531,535,539,553,556,573,548,554,568,554,521,562,552,512,513,510,523,523,517,519,519,518,514,567,573,570,579,512,516,510,525,516,528,520,587,575,573,577,573,579,590,527,523,519,523,523,489,482,482,488,478,487,483,490,485,503,506,506,503,504,516,518,514,512,508,510,512,503,535,541,532,531,540,528,539,535,542,538,446,466,450,469,459,444,458,461,461,458,521,523,526,532,518,527,528,533,521,507,535,533,532,527,526,527,524,562,554,551,576,533,541,519,522,517,504,499,497,492,493,498,501,490,493,515,508,506,510,521,525,533,519,531,531,522,524,523,514,508,511,521,518,518,516,518,515,513,518,516,523,526,525,521,527,526,527,553,566,571,566,568,566,567,538,539,549,543,545,548,541,536,543,538,516,522,509,516,518,512,532,527,520,445,460,449,462,453,456,463,452,443,440,459,530,528,535,535,536,537,528,539,532,531,538,535,534,528,534,541,554,549,543,547,541,539,523,526,524,527,524,544,540,546,539,536,537,541,538,536,553,546,535,557,539,481,479,479,479,488,489,483,481,492,560,556,570,544,550,555,566,566,553,571,540,570,553,577,561,540,569,549,557,569,571,512,520,517,519,517,511,511,511,509,511,558,518,574,564,574,543,581,567,552,570,556,578,569,573,578,501,502,495,465,461,457,461,466,459,472,457,467,480,466,465,456,588,590,584,590,590,588,593,582,569,585,585,584,595,590,581,537,528,520,531,531,523,536,524,532,530,563,562,555,552,570,564,580,520,509,519,520,517,524,530,528,514,577,513,528,511,506,505,538,540,553,549,543,549,541,534,542,538,549,542,544,539,498,474,507,538,547,545,541,548,539,522,521,521,510,519,523,541,545,546,548,540,544,515,512,507,515,511,519,514,511,510,515,503,518,514,498,525,511,482,472,486,470,470,490,492,485,480,482,484,479,478,484,494,484,487,494,487,566,562,557,560,573,578,552,553,561,564,572,551,498,508,507,505,503,502,489,518,508,511,504,502,506,514,488,490,505,501,499,512,500,515,503,457,449,449,446,447,455,463,455,455,456,458,451,449,465,453,455,460,450,455,459,452,454,456,454,455,456,554,553,548,549,559,555,553,550,543,554,549,558,555,563,568,572,574,574,564,564,567,563,559,567,520,525,517,522,531,576,577,584,574,587,590,525,522,544,540,511,545,524,534,529,536,562,532,538,483,488,500,484,488,482,489,503,496,485,496,574,564,550,568,563,553,558,552,564,538,548,567,565,559,567,572,490,503,495,502,505,504,510,537,536,550,542,543,540,544,547,544,538,540,564,568,568,565,571,562,555,563,553,561,550,531,530,537,529,531,523,540,538,536,542,544,542,525,519,513,512,522,525,514,515,509,527,517,515,517,524,555,566,561,551,547,553,555,560,551,506,511,508,507,500,501,502,511,504,507,514,504,508,502,503,496,507,511,506,506,511,503,502,536,543,540,533,532,529,537,536,523,522,539,531,532,531,527,534,537,525,529,565,555,559,554,558,566,565,564,569,562,560,558,568,562,519,509,522,522,520,513,518,516,516,484,490,472,487,476,480,481,478,484,484,475,488,481,487,488,477,474,481,487,477,485,481,496,472,480,485,479,485,559,567,560,548,571,565,558,568,564,510,508,512,508,520,513,499,507,516,502,465,457,456,460,461,452,479,472,471,469,563,578,516,516,508,514,516,510,509,514,515,499,508,505,512,507,545,550,557,554,562,553,547,558,568,542,555,551,562,554,553,553,484,497,497,455,443,452,561,557,552,570,553,557,567,547,562,560,549,559,545,563,515,512,506,498,493,501,491,504,497,502,497,498,500,501,502,512,501,509,506,492,493,511,508,499,506,511,504,501,504,512,509,513,504,509,510,516,509,517,506,505,510,513,515,517,507,508,514,514,509,519,530,531,529,532,534,551,543,547,540,541,542,540,540,545,544,554,544,551,500,491,495,492,491,490,499,503,486,482,481,487,613,596,598,593,603,534,542,526,534,533,523,528,527,542,527,527,586,588,582,584,591,576,580,578,575,581,581,583,588,542,531,535,544,538,536,544,538,529,521,531,526,532,523,525,532,527,545,532,539,539,525,513,517,517,522,523,526,513,507,514,514,513,523,516,554,553,545,562,550,566,545,560,546,558,568,551,563,557,559,554,547,550,498,518,517,510,511,510,516,517,510,550,557,558,561,549,560,555,553,552,560,555,552,551,486,483,489,494,494,487,487,488,483,501,498,474,471,491,478,476,477,475,474,472,481,475,485,474,593,596,593,509,506,538,527,530,537,528,528,549,540,559,546,539,543,542,537,555,547,550,547,555,558,558,558,557,503,494,475,506,502,504,490,500,494,483,480,482,484,480,488,590,587,590,604,552,549,545,544,551,556,539,546,486,482,491,488,493,458,467,469,466,475,459,477,465,463,457,468,464,457,461,559,569,549,571,563,560,569,555,541,573,546,559,561,495,482,479,503,495,496,499,508,495,571,550,538,548,551,560,565,554,555,558,548,560,505,500,500,508,494,499,490,504,509,502,512,499,508,548,563,566,558,540,543,559,562,491,495,494,500,506,492,488,497,504,500,523,519,525,516,523,523,513,514,520,530,526,518,517,526,516,515,519,538,534,541,544,542,531,542,543,541,547,537,545,542,545,483,494,479,484,486,465,483,477,480,486,484,488,555,560,554,560,550,545,546,554,563,561,563,553,553,555,557,553,565,563,556,555,567,559,560,521,511,525,515,518,527,511,514,516,520,522,500,489,497,489,493,485,484,490,494,493,485,475,474,480,470,478,484,472,473,485,474,460,459,482,480,481,478,478,485,476,473,479,480,479,479,479,475,473,434,439,452,436,438,436,437,448,440,454,443,438,438,486,495,475,481,476,487,477,482,508,506,510,511,508,510,507,514,509,507,509,512,507,515,512,508,506,501,553,544,557,535,553,547,551,549,547,559,551,558,553,550,542,558,498,518,513,503,505,512,494,524,517,498,512,516,514,481,504,499,496,503,504,506,501,504,508,499,497,510,499,501,498,500,492,512,477,487,477,481,480,485,483,473,485,485,484,484,486,481,487,484,472,469,477,465,464,474,462,468,467,468,463,466,464,463,466,493,494,500,496,490,493,497,492,493,497,494,501,555,558,557,558,555,547,528,528,530,533,525,526,523,529,528,524,521,523,560,552,560,563,549,558,558,558,554,563,534,537,528,533,536,531,538,536,536,539,537,532,539,541,530,532,537,533,544,538,539,541,527,538,536,536,533,534,546,526,536,473,478,476,475,467,537,529,527,520,530,519,535,542,515,513,518,519,511,515,521,525,531,530,558,561,566,522,525,523,547,559,559,553,555,562,557,554,559,557,556,554,556,563,545,555,565,556,532,539,541,539,538,543,536,546,542,543,492,498,494,488,498,506,474,484,481,484,486,480,479,488,489,475,484,485,478,462,461,468,489,488,494,480,491,489,490,498,498,489,494,494,548,537,543,544,555,552,547,528,531,530,534,529,536,529,529,535,526,522,530,531,527,516,520,527,527,520,526,519,522,522,521,521,522,526,522,541,532,538,540,535,537,531,540,534,535,531,542,543,525,507,513,518,516,508,513,511,559,547,545,559,551,543,548,549,543,480,484,503,500,502,487,499,499,504,501,499,482,506,462,465,459,464,461,460,463,456,461,458,458,465,463,455,480,470,470,461,476,474,474,547,555,544,555,548,534,543,564,543,548,532,540,523,527,526,523,548,547,546,551,532,540,544,545,465,477,473,477,475,468,478,466,470,469,472,474,476,466,471,465,465,464,472,473,457,486,469,615,600,600,588,601,586,588,596,569,538,549,543,546,543,556,547,546,556,545,502,487,491,490,490,494,498,503,472,471,472,475,474,473,475,461,474,475,460,462,468,458,453,454,462,458,552,561,551,565,561,551,552,556,492,494,497,490,548,550,549,552,549,540,559,516,517,526,522,527,528,524,524,525,549,562,551,562,557,541,552,546,551,546,551,541,485,499,483,489,483,481,485,485,488,483,494,489,488,497,489,476,485,483,483,479,486,467,474,469,559,560,569,568,563,495,495,511,495,497,496,492,486,500,493,486,486,500,467,455,459,442,459,462,461,465,462,457,449,462,460,467,507,513,512,515,517,518,519,508,524,505,509,508,508,565,564,566,562,567,556,564,556,486,491,497,496,493,503,493,491,496,498,493,499,488,487,554,566,570,578,559,565,570,565,584,582,573,575,573,571,572,555,574,557,523,512,525,523,511,508,516,523,518,526,518,535,542,537,535,537,545,539,535,538,538,564,523,523,515,533,524,493,488,485,487,487,489,488,496,488,491,491,492,499,495,475,475,473,491,483,472,477,473,477,463,456,465,484,480,477,477,480,478,478,476,479,470,471,473,471,478,478,474,474,471,470,475,469,470,475,470,472,466,472,471,475,497,487,491,489,480,484,492,492,493,490,493,522,534,529,525,534,526,532,531,529,544,537,556,556,546,546,536,547,551,544,549,543,516,511,517,510,514,513,513,516,517,546,544,541,534,547,549,545,551,546,549,551,544,542,554,533,522,535,540,539,531,531,535,530,532,529,532,527,535,535,530,561,571,554,559,559,567,563,553,581,568,518,517,513,514,521,522,551,555,541,554,566,572,564,548,562,553,562,564,552,552,510,513,504,514,507,516,509,510,519,510,508,508,572,568,520,516,531,534,476,473,465,460,480,477,472,468,462,472,473,469,474,483,471,472,476,475,480,476,472,479,461,470,495,498,480,476,484,477,477,486,478,472,466,472,461,466,501,493,489,495,481,490,497,490,498,494,547,547,552,544,550,555,547,560,556,550,553,545,549,547,537,539,540,532,538,543,541,532,546,544,542,549,549,534,545,554,541,541,548,535,546,544,540,573,587,580,576,572,508,493,501,500,498,517,499,508,502,488,499,494,492,498,494,494,492,578,555,562,563,577,580,577,569,566,560,560,582,577,571,511,496,480,508,495,500,546,550,547,552,499,509,500,504,511,508,505,502,500,499,505,504,566,564,582,561,557,571,558,564,566,556,547,572,549,568,570,567,557,527,529,519,512,527,518,519,514,529,501,505,477,479,474,480,490,482,472,478,484,487,483,466,467,467,475,468,475,475,567,564,572,556,569,577,569,568,570,563,563,566,561,573,564,564,565,565,555,569,570,574,567,564,568,497,500,503,500,506,503,497,497,497,506,494,484,500,491,493,504,503,490,455,465,453,462,467,460,466,464,534,534,527,533,539,536,529,539,537,537,527,529,526,527,532,534,542,550,538,541,536,550,541,544,543,540,541,544,542,534,547,535,548,551,558,539,551,544,557,549,549,556,550,544,557,559,495,499,502,494,495,507,498,501,519,500,506,513,486,487,486,488,492,483,485,485,491,488,487,474,486,569,559,547,561,492,492,493,502,499,497,494,496,497,473,473,550,547,554,560,556,568,556,559,560,553,547,542,571,507,503,535,530,529,536,539,539,527,539,530,533,538,532,559,558,552,557,555,559,554,561,564,557,553,565,548,550,561,555,549,505,501,506,495,591,591,581,589,537,541,544,544,545,539,539,541,536,548,539,543,548,539,546,549,535,550,539,539,545,543,551,552,561,536,522,539,529,526,534,532,539,537,528,539,536,500,503,505,503,499,554,544,559,568,571,557,563,551,565,500,502,517,514,507,495,511,504,490,500,507,510,550,568,561,551,561,550,546,551,554,536,535,490,470,477,474,477,468,480,472,488,474,489,449,457,444,452,444,438,446,431,451,532,522,544,552,539,534,544,544,549,542,545,537,549,544,541,546,569,564,561,551,561,566,559,548,551,548,556,562,503,498,486,497,491,496,495,499,503,502,505,499,490,503,501,495,511,486,505,498,494,493,515,488,509,570,561,557,563,565,567,579,575,557,570,563,505,518,501,512,507,502,509,496,511,495,494,496,494,498,492,493,491,487,506,505,506,534,542,539,533,530,542,538,544,541,536,535,536,538,541,544,531,541,536,543,531,538,539,545,533,570,570,556,574,567,562,560,571,552,570,554,569,561,546,562,566,564,569,567,564,570,568,557,551,519,506,512,501,519,501,510,555,553,556,548,557,551,557,552,555,555,553,554,547,566,547,555,542,552,559,555,524,520,521,527,521,521,525,510,517,491,484,486,481,486,485,486,483,484,493,487,485,487,471,467,467,460,465,467,466,466,463,485,485,478,478,480,484,477,469,469,458,455,466,462,486,480,481,483,486,490,488,488,490,484,487,562,560,559,546,545,557,558,565,554,490,479,475,487,495,474,480,486,484,485,498,485,468,501,514,506,510,515,492,513,496,505,508,510,514,485,566,562,562,555,558,563,566,560,571,561,565,560,561,577,569,569,570,561,563,539,520,529,524,527,525,530,518,522,529,518,521,510,513,506,513,505,507,506,510,506,515,501,509,513,515,507,509,508,515,509,512,511,502,505,507,511,512,510,507,506,508,514,510,505,514,504,510,509,510,504,507,508,509,506,502,511,511,503,504,511,501,511,504,508,512,511,510,511,507,496,506,509,505,507,505,504,511,511,513,511,508,501,502,513,511,504,504,510,502,510,518,512,507,515,513,502,513,506,503,511,509,512,513,503,510,505,508,511,507,509,508,504,501,512,508,508,508,512,506,513,505,507,515,510,511,514,502,502,507,510,510,509,506,524,508,503,507,512,510,516,506,510,501,510,508,508,509,507,516,516,511,502,510,510,508,514,504,509,509,506,500,505,511,505,505,507,513,512,506,507,500,503,504,504,503,505,514,508,507,508,512,513,502,506,504,509,506,504,511,504,512,515,512,505,511,506,505,509,508,509,516,513,515,508,514,504,499,510,504,508,508,507,507,519,509,515,514,508,498,503,512,512,505,507,518,513,511,503,508,505,516,509,504,511,513,512,508,502,511,509,505,505,511,500,514,505,505,511,517,518,509,508,509,508,507,511,510,506,506,509,510,510,503,517,505,510,508,513,503,511,514,506,508,512,514,508,515,511,512,507,506,505,509,508,514,506,504,509,500,507,510,506 0 233.909891 0 0 0 diff --git a/test/dna_ideal_amp_slow5.exp b/test/dna_ideal_amp_slow5.exp index c9abd49..7e8ffb5 100755 --- a/test/dna_ideal_amp_slow5.exp +++ b/test/dna_ideal_amp_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN106 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!7468!- 0 2048 -272.365141 748.5801 4000 67943 555,555,555,555,555,555,555,555,555,555,499,499,499,513,513,513,513,513,513,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,498,498,498,498,498,498,498,498,498,498,498,498,498,554,520,520,520,520,520,520,520,520,520,520,520,520,520,520,531,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,539,539,539,539,539,539,539,539,539,539,539,539,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,560,560,560,560,560,560,560,560,560,560,502,502,502,502,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,530,530,530,530,530,530,530,530,517,517,517,517,517,517,517,517,517,517,517,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,566,566,566,566,566,566,566,566,566,545,545,545,545,545,545,545,545,545,545,529,529,529,529,529,529,529,529,529,529,529,529,529,506,506,506,506,506,506,506,506,552,552,552,552,552,552,552,552,552,529,529,529,529,529,529,529,529,537,537,537,537,537,537,537,537,516,516,566,566,566,566,566,566,566,566,566,566,566,502,502,502,502,502,502,502,502,502,502,575,575,575,575,575,575,575,575,575,575,575,528,528,528,528,528,508,508,508,508,508,508,508,508,508,508,508,508,508,508,480,480,480,480,480,480,480,480,491,491,491,491,491,491,491,491,491,563,563,563,563,563,563,563,563,563,563,480,480,480,480,480,480,480,480,480,480,480,480,468,468,468,468,468,468,468,468,468,561,561,561,561,561,527,527,527,527,527,527,527,527,527,527,527,556,556,556,556,556,556,520,520,520,520,520,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,503,503,503,503,503,503,503,503,503,503,503,503,503,488,488,488,488,488,488,488,488,488,488,488,488,488,484,484,484,484,484,484,484,484,484,492,492,492,492,492,492,492,492,492,492,492,492,492,458,458,458,458,475,475,475,475,475,475,566,502,502,502,502,502,502,502,502,502,543,543,543,543,543,523,523,523,523,523,523,537,537,537,537,537,537,537,537,473,473,473,473,473,473,473,473,473,473,473,473,473,473,541,541,541,541,570,570,570,570,570,570,570,570,570,538,538,538,538,538,538,538,564,564,564,564,564,564,502,502,502,502,502,510,563,563,563,563,563,563,563,563,563,563,563,563,563,532,532,532,532,532,532,532,532,532,532,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,556,556,556,556,556,556,556,556,507,507,507,507,507,507,507,507,507,507,507,507,507,507,493,493,493,493,493,493,493,493,493,493,493,493,493,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,556,556,556,556,556,556,556,556,556,556,556,556,556,556,508,508,508,484,484,484,484,484,472,472,472,472,472,472,472,472,472,472,472,480,480,480,480,480,597,597,597,597,597,597,597,597,597,547,547,547,547,547,547,547,500,500,500,500,500,476,476,476,476,476,476,476,476,476,476,476,476,476,476,453,453,453,486,486,486,486,486,486,486,486,486,486,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,528,528,528,528,528,528,528,477,477,477,477,477,477,529,529,539,539,539,539,539,539,544,544,495,495,495,495,495,495,495,495,495,543,543,543,543,543,526,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,521,521,521,521,521,521,495,495,495,495,458,456,456,456,456,456,456,456,456,456,456,456,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,496,496,496,496,496,496,469,469,560,560,560,560,560,560,554,554,554,489,489,489,489,489,489,489,489,489,489,489,564,564,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,498,498,498,498,498,498,498,498,498,498,510,510,510,510,510,510,510,510,510,510,510,510,510,559,559,559,559,535,535,535,535,535,535,535,535,535,530,530,530,530,530,530,539,539,539,539,539,539,539,539,539,539,539,539,516,516,516,516,516,516,516,516,516,516,516,516,565,565,565,565,565,565,565,565,565,565,565,565,565,565,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,488,488,488,488,488,497,497,497,497,497,497,497,497,497,497,497,563,563,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,521,521,521,521,521,521,521,521,521,505,505,505,505,505,505,505,483,483,483,483,483,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,462,462,462,462,462,462,462,556,556,556,556,556,556,556,552,552,552,552,552,552,552,519,519,519,546,546,569,569,569,569,569,569,569,569,569,503,503,503,503,503,503,503,503,503,503,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,575,575,575,575,575,575,575,575,575,575,575,575,528,528,528,528,528,528,528,528,528,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,480,480,480,480,486,486,570,570,570,570,570,570,570,570,570,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,546,546,546,546,546,546,513,513,513,513,513,513,513,513,513,513,513,513,513,528,528,528,528,528,528,528,528,528,528,528,554,554,554,554,554,554,554,554,554,554,554,554,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,556,556,556,556,556,522,522,522,522,522,522,522,522,522,522,522,522,522,522,503,503,503,503,503,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,481,481,481,481,481,496,496,496,496,496,564,564,564,564,564,564,564,564,564,564,564,507,507,507,507,507,507,493,493,493,537,537,537,537,537,537,537,537,537,556,556,556,556,556,556,556,556,508,508,508,508,508,508,508,508,508,508,508,508,508,488,504,504,504,504,504,504,504,504,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,483,483,483,483,483,483,483,483,483,483,483,483,513,513,513,513,513,513,513,513,513,513,513,513,513,562,562,562,494,494,464,464,464,464,464,464,464,464,464,549,549,549,549,549,549,549,549,549,549,548,548,548,517,517,517,517,527,527,527,527,527,527,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,554,554,554,480,480,480,480,480,480,480,480,480,450,450,450,450,450,450,450,450,545,545,545,545,545,545,545,545,545,545,545,545,548,548,548,548,519,519,519,519,519,519,519,519,519,519,519,519,539,539,539,539,539,539,539,539,539,492,492,492,492,492,492,492,492,492,492,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,563,563,563,563,563,563,563,563,563,563,563,549,549,549,549,549,549,549,549,549,549,549,549,549,549,492,492,492,492,492,492,492,492,492,492,492,492,476,476,476,476,476,476,476,476,596,596,596,596,596,596,596,596,596,596,596,596,596,596,556,556,556,556,556,556,556,556,556,556,556,556,556,550,550,550,550,550,550,550,550,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,483,483,483,483,483,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,547,547,547,547,547,547,547,547,547,547,547,547,523,523,523,523,523,523,523,523,523,537,537,537,537,537,537,537,537,537,537,537,537,514,514,514,514,514,560,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,492,492,492,492,492,492,492,492,492,492,492,492,492,490,490,490,490,490,504,504,504,504,504,504,504,504,504,502,502,502,502,502,502,502,502,502,502,479,479,479,479,479,479,479,479,479,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,554,554,554,554,554,554,554,554,554,538,538,538,538,538,538,538,538,570,570,570,570,570,570,570,570,570,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,475,475,475,475,475,558,558,558,505,505,505,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,501,501,501,501,501,501,501,501,501,501,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,463,463,463,463,491,491,491,491,491,491,564,564,564,564,564,564,564,564,564,564,564,515,561,561,561,561,561,561,561,561,561,561,561,561,561,561,561,561,505,559,559,518,518,557,557,557,557,557,557,554,554,554,554,554,554,554,554,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,502,502,502,502,502,502,502,502,502,502,502,502,502,502,479,479,479,479,479,479,479,479,479,479,479,479,479,479,503,503,559,559,559,559,559,559,559,559,559,559,534,534,513,513,524,524,524,524,524,524,524,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,528,528,528,528,528,528,528,554,554,554,554,554,554,554,554,554,554,554,554,525,525,525,547,547,547,547,547,547,547,547,547,495,495,495,495,495,495,495,495,503,503,503,503,503,503,503,550,550,550,550,550,550,550,550,569,569,520,520,520,520,520,520,520,520,520,520,520,520,488,488,488,488,497,497,497,497,563,563,563,563,563,563,554,554,554,554,554,554,554,554,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,507,507,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,488,488,488,488,488,488,488,488,488,488,507,507,507,507,507,507,507,548,548,548,548,548,548,548,548,548,484,484,484,484,484,447,447,447,447,447,447,447,447,447,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,520,520,520,520,520,520,520,481,481,481,481,481,481,481,481,481,481,481,481,481,477,477,477,477,477,477,477,477,477,477,477,590,590,590,590,590,590,590,590,546,546,546,546,546,546,546,546,547,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,477,477,477,477,477,477,477,477,477,477,477,477,477,530,530,530,530,530,530,530,530,530,530,530,530,530,550,550,550,550,550,550,550,550,550,550,550,550,550,559,559,559,559,559,559,559,559,559,559,559,526,526,526,526,526,526,526,526,526,526,526,526,512,512,503,503,503,503,503,503,503,503,503,503,503,503,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,479,479,479,479,479,479,479,479,479,479,564,564,564,564,510,510,510,510,510,510,510,510,510,510,510,510,510,484,484,484,484,484,484,484,484,484,475,475,475,489,489,489,489,569,569,569,569,569,569,569,502,502,502,502,502,502,502,502,502,502,502,502,502,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,555,555,555,555,555,555,555,555,492,492,492,492,492,492,492,492,465,465,465,465,465,465,465,465,465,465,465,465,465,465,537,537,537,537,537,537,537,537,537,537,537,537,539,539,539,539,539,539,539,539,539,539,539,539,544,544,544,544,544,544,499,499,499,499,499,499,499,546,546,546,546,546,546,546,546,510,510,510,510,510,510,510,510,510,510,510,510,510,510,570,570,570,570,501,501,501,445,445,445,445,445,522,522,522,522,522,522,522,522,522,522,522,522,529,529,529,529,529,529,529,529,529,529,529,565,565,565,538,538,538,538,538,538,571,571,571,571,571,571,571,571,571,571,571,571,571,571,571,526,526,526,526,526,526,526,526,526,526,526,526,509,509,503,503,503,503,503,503,503,488,488,488,488,488,488,488,488,488,488,488,488,488,482,482,482,482,482,482,482,482,482,482,482,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,477,477,477,477,477,477,441,441,441,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,565,565,565,565,565,565,565,565,565,565,565,565,565,565,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,469,469,469,469,469,469,469,457,552,552,552,552,552,552,552,489,489,489,489,489,489,489,489,580,580,580,580,580,580,580,580,580,580,580,580,580,580,580,580,580,538,538,538,538,538,538,538,538,538,538,571,571,571,571,571,571,571,571,571,571,571,571,571,571,571,571,526,526,526,526,526,526,526,509,509,509,503,503,503,503,503,503,503,503,503,503,503,503,503,503,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,458,458,458,458,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,475,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,544,544,544,544,544,544,571,571,571,571,571,571,571,571,571,571,571,522,522,522,522,522,522,522,522,522,522,484,484,484,484,484,503,503,503,503,503,503,503,559,559,559,559,559,559,559,559,559,559,534,534,534,534,534,534,534,534,534,534,534,520,520,520,546,546,546,546,546,546,546,546,569,569,569,569,569,569,569,569,569,569,569,569,524,524,524,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,461,461,461,461,461,461,461,504,504,504,504,504,504,504,504,504,504,504,504,504,504,564,564,564,564,564,516,516,516,516,516,516,516,516,516,516,516,516,516,516,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,509,509,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,519,537,537,537,537,537,537,537,559,559,559,559,559,559,559,559,559,559,534,534,534,534,534,534,534,534,534,534,534,534,534,534,560,560,560,560,560,560,519,519,519,519,519,519,519,519,519,519,496,496,496,496,496,496,496,496,496,496,468,468,468,468,468,468,468,468,470,470,470,542,542,542,542,542,542,542,542,542,542,510,568,568,568,522,522,522,522,522,522,522,522,522,484,484,484,484,484,484,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,502,502,502,502,565,565,565,565,565,565,565,565,565,565,565,565,546,546,546,546,546,546,546,546,491,491,491,491,491,491,491,473,473,473,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,524,551,551,551,551,551,551,551,551,551,551,492,492,492,492,492,492,492,479,479,479,479,557,557,557,557,557,557,557,557,557,557,557,510,510,510,510,510,510,510,510,468,468,468,468,440,440,440,440,440,440,440,440,440,440,530,542,542,542,542,542,542,542,542,542,542,542,542,542,521,521,521,521,521,521,521,521,521,521,521,551,551,551,551,551,551,551,551,551,551,551,493,496,496,496,496,496,496,496,496,571,571,571,571,571,571,571,571,571,571,571,501,501,501,501,501,501,501,501,501,475,475,475,475,549,549,549,549,549,549,549,477,477,477,477,477,477,477,501,501,501,501,501,501,501,501,501,501,501,501,501,538,538,538,538,538,538,538,538,538,538,538,538,538,538,481,481,481,481,481,481,556,556,556,556,556,556,556,556,556,556,556,559,559,559,559,559,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,483,483,483,483,483,483,560,560,560,560,560,560,560,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,483,483,483,483,483,483,483,483,483,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,436,436,436,436,436,436,436,538,538,538,538,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,552,552,552,552,516,480,480,480,496,564,564,564,564,564,564,564,564,564,564,564,564,564,506,506,506,506,506,506,506,506,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,547,547,547,547,547,547,547,547,547,547,499,499,499,499,499,499,499,545,545,545,545,545,545,545,545,563,521,521,521,521,521,521,521,521,521,521,521,521,581,581,581,530,530,530,530,530,530,530,530,530,530,530,530,555,555,555,555,555,555,555,555,555,509,554,554,554,554,554,554,554,554,554,554,554,493,493,493,493,493,493,493,493,510,510,510,510,565,565,565,565,565,546,546,546,546,546,546,546,546,546,546,546,546,546,546,491,491,491,491,491,491,491,491,491,491,473,473,547,547,547,547,547,547,547,547,524,524,524,524,524,524,524,524,524,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,492,492,492,492,492,481,481,481,481,481,481,481,563,563,563,563,563,563,563,563,517,517,517,517,509,509,509,509,509,509,509,509,509,509,509,509,509,509,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,482,482,482,482,482,482,482,482,482,482,490,490,490,472,472,472,472,472,472,472,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,526,526,526,526,526,526,526,526,526,526,526,496,496,496,496,496,496,496,496,496,496,496,496,553,553,553,553,553,517,517,517,517,517,517,517,517,517,517,544,544,544,538,538,577,577,577,577,577,577,577,577,577,577,577,577,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,465,465,465,465,465,465,465,465,465,564,564,564,564,564,564,564,564,564,564,564,564,560,560,560,560,508,508,508,461,461,461,461,461,461,461,503,503,503,503,503,503,503,503,503,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,481,481,481,481,481,481,481,481,481,481,481,481,558,558,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,526,526,526,526,526,526,526,526,526,526,526,526,507,507,507,507,483,483,483,483,483,483,483,483,483,483,483,483,483,483,509,509,509,509,540,540,540,540,540,540,540,540,540,540,540,521,521,521,521,521,521,521,521,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,577,577,526,526,526,526,526,526,526,526,526,526,526,526,503,503,503,503,503,503,503,503,503,503,503,503,503,503,488,488,488,488,488,488,488,488,488,488,488,507,507,507,507,507,507,507,507,507,507,545,496,496,496,496,496,496,496,496,496,496,496,496,500,500,500,500,500,500,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,480,480,443,443,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,547,547,498,498,498,498,498,498,498,498,498,498,498,498,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,475,475,475,475,475,475,475,475,475,475,475,475,560,560,560,560,560,560,560,508,508,508,508,508,508,508,508,508,508,508,508,508,508,459,459,459,459,459,459,459,459,459,459,459,456,456,456,456,456,456,456,563,563,563,563,563,563,563,563,565,565,565,565,565,565,565,565,565,565,565,565,565,523,523,523,523,523,523,523,523,523,523,523,523,523,523,509,509,509,509,509,509,509,509,509,503,482,482,482,482,482,482,482,482,482,482,459,459,459,459,459,459,459,459,459,459,459,459,459,459,501,501,501,501,501,501,501,501,501,501,501,554,554,538,538,538,538,538,538,572,572,572,572,572,572,572,572,572,513,513,513,513,513,513,513,513,513,513,513,513,513,474,474,474,474,474,474,474,474,474,474,474,501,501,501,501,501,501,554,554,554,554,554,554,554,513,513,513,513,513,513,513,513,513,513,513,481,481,481,481,481,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,515,515,511,511,511,511,511,511,511,511,511,511,557,557,557,557,557,557,557,558,558,558,558,558,558,558,558,558,558,558,498,498,498,498,498,498,498,500,571,571,571,571,571,571,571,571,571,571,571,504,504,504,504,504,485,485,485,485,485,485,485,485,485,485,485,565,565,565,565,565,565,565,565,565,522,522,522,522,522,522,522,522,522,522,514,514,514,514,514,514,514,514,514,502,502,502,502,502,479,479,479,503,503,503,503,503,503,503,503,503,503,503,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,556,556,519,519,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,465,465,465,465,465,465,465,560,560,560,560,560,560,560,560,560,560,560,560,550,550,550,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,573,573,573,573,573,573,573,573,573,573,573,502,502,502,502,502,502,502,502,502,502,502,502,502,502,500,500,573,573,573,573,573,573,488,488,488,488,488,488,488,488,488,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,545,545,545,545,545,545,545,546,546,546,546,546,546,546,546,502,596,596,596,596,596,596,596,596,596,596,596,596,550,550,550,550,550,550,550,550,550,485,485,485,485,485,485,485,443,443,443,443,443,443,443,443,443,443,443,443,443,443,528,528,528,528,528,528,542,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,519,519,519,519,519,519,519,519,519,492,492,492,492,490,490,490,504,504,504,504,504,504,504,504,503,503,503,503,503,503,479,479,479,479,479,479,479,479,479,479,479,479,479,465,465,465,465,465,465,465,465,465,465,465,564,558,558,558,558,558,558,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,469,469,469,469,463,463,463,463,541,541,541,541,541,541,541,541,541,541,541,541,541,541,476,476,476,476,476,476,476,476,476,476,476,476,476,488,488,488,488,488,488,488,488,488,503,503,503,503,541,541,541,541,541,541,570,570,570,570,570,570,570,570,570,570,570,570,570,552,552,552,552,516,516,516,516,516,516,516,516,516,516,516,516,516,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,498,498,498,498,498,574,574,574,574,574,574,574,574,574,574,574,574,500,500,500,500,500,500,469,469,469,469,469,469,469,469,469,469,567,567,567,567,567,567,567,567,567,565,565,520,520,520,520,520,520,484,484,484,484,484,484,484,491,491,491,491,491,491,491,491,491,491,491,491,566,566,566,566,566,566,566,566,566,566,566,507,507,507,507,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,497,497,497,497,497,497,497,497,497,497,544,544,544,544,544,544,544,544,544,544,544,544,544,544,520,520,520,520,520,520,520,520,520,520,520,520,520,589,589,589,589,589,589,538,538,538,538,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,509,509,509,509,461,461,461,461,461,461,461,461,461,461,461,461,461,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,564,564,564,564,564,564,564,564,564,564,564,564,564,564,526,526,526,526,526,526,526,526,503,503,503,503,503,503,503,503,503,503,503,503,479,461,461,461,461,461,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,544,544,544,544,544,544,544,522,522,559,559,559,530,530,530,530,530,530,530,530,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,504,504,504,504,504,504,504,504,504,540,540,540,540,540,540,540,540,540,512,512,512,512,512,512,524,524,524,524,524,524,524,524,524,524,524,581,581,581,581,581,581,581,581,581,581,581,581,581,581,516,516,516,516,516,516,516,557,554,554,554,554,554,554,501,501,501,501,501,501,501,501,501,518,518,518,556,556,556,556,556,556,556,556,492,492,492,492,492,492,492,492,492,492,492,492,492,492,476,560,560,560,560,560,477,477,477,477,477,477,477,477,477,477,477,477,546,546,546,546,546,546,546,546,546,546,546,546,546,569,569,569,569,505,505,505,505,505,505,529,529,529,529,529,529,529,529,529,529,529,529,530,530,530,530,530,530,530,530,530,530,544,544,544,544,544,544,544,544,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,555,555,555,555,555,555,555,555,555,555,555,555,555,555,519,519,519,519,519,519,519,519,570,570,570,570,570,570,570,570,570,570,504,504,504,504,504,504,504,483,559,559,559,559,559,559,559,559,559,559,559,559,492,492,492,463,585,585,585,585,585,585,585,585,585,585,585,585,535,535,535,535,535,535,535,535,535,488,488,488,488,488,488,488,488,488,488,502,502,502,502,502,502,502,502,502,502,502,502,528,528,528,528,528,528,528,528,510,510,510,510,510,510,510,510,560,560,514,514,514,459,459,459,459,459,459,472,472,472,472,472,472,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,501,501,501,501,501,501,501,501,501,528,528,528,528,528,528,528,528,528,528,528,528,528,528,544,544,544,544,557,557,557,557,557,557,496,496,496,496,496,496,496,496,496,496,496,461,461,461,461,550,550,550,550,550,550,550,550,550,550,570,570,570,570,570,570,536,564,564,564,564,564,564,564,564,524,524,524,524,524,524,524,524,485,485,485,485,485,485,485,485,485,485,485,485,485,485,485,461,461,461,461,461,461,461,461,461,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,537,537,537,537,537,537,537,539,539,539,539,539,539,539,539,539,539,539,539,544,544,544,544,544,544,544,544,544,544,495,495,495,495,495,495,495,495,495,495,495,495,495,546,546,546,546,546,546,546,546,546,546,546,546,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,503,503,503,503,503,503,503,503,503,503,503,540,540,567,567,567,567,567,567,567,567,567,567,567,567,567,567,536,536,536,536,563,563,563,563,563,563,563,563,563,563,563,563,563,563,504,504,504,504,504,504,504,504,504,504,504,504,485,485,485,485,485,485,485,565,565,565,565,565,565,565,565,565,565,565,522,522,522,522,522,522,522,522,522,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,499,499,499,484,484,484,484,484,484,484,474,474,474,474,474,474,547,547,547,547,547,521,521,521,521,521,521,521,521,521,521,521,521,521,540,540,540,540,540,540,540,540,532,532,532,532,532,559,559,494,494,494,494,494,494,494,494,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,554,548,548,548,548,548,548,548,548,548,548,548,548,548,548,501,501,501,501,501,501,501,501,501,501,549,549,549,549,549,549,549,549,549,501,501,501,501,501,501,501,510,510,510,510,510,510,510,510,510,510,510,510,556,556,556,556,556,556,556,556,556,556,556,493,493,493,493,493,493,493,493,493,493,493,493,498,498,498,498,498,498,498,498,498,498,498,498,575,575,575,526,526,526,526,526,526,526,526,526,504,504,504,504,504,504,504,504,504,504,504,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,483,483,483,483,483,483,483,483,565,565,565,565,565,565,565,565,565,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,509,509,509,509,509,503,503,503,503,503,490,490,490,490,490,490,490,490,490,490,485,485,485,485,485,485,477,477,477,477,477,477,477,477,498,573,573,573,573,573,573,573,573,573,573,573,573,521,521,521,521,521,521,521,521,521,498,498,472,472,472,472,472,472,472,472,472,498,498,528,528,528,528,528,528,528,528,528,528,528,528,528,528,508,508,508,508,508,508,508,508,508,508,555,555,520,520,520,520,520,520,520,520,520,520,520,520,520,573,573,573,573,573,573,573,573,573,573,500,500,500,500,500,500,500,500,500,500,500,469,469,469,469,469,469,469,469,469,469,469,564,564,564,564,564,564,564,564,564,564,564,564,564,559,559,559,559,559,559,559,501,501,501,501,501,475,475,475,475,475,475,475,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,563,563,563,563,563,563,563,516,516,516,516,516,516,516,516,516,516,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,509,509,509,544,544,544,544,544,544,544,544,544,544,544,544,544,544,527,527,527,527,527,543,543,543,543,543,543,543,543,481,481,481,481,481,481,481,481,481,440,440,440,440,440,440,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,545,545,545,545,545,545,545,559,559,559,559,559,559,559,559,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,487,487,487,487,487,487,509,509,509,509,540,540,540,540,540,540,540,540,540,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,555,555,555,555,555,555,555,523,523,523,523,523,523,523,480,480,480,559,559,559,559,559,559,559,559,559,559,559,505,505,505,505,505,505,505,554,554,554,554,554,554,554,554,554,496,496,496,496,496,496,496,496,496,508,508,508,508,508,508,508,508,508,508,508,508,508,545,545,545,545,545,545,545,545,545,545,545,545,545,545,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,509,509,509,509,509,509,574,574,574,574,574,574,574,574,574,486,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,553,501,501,501,501,501,501,501,501,483,483,483,483,559,559,559,559,559,559,559,559,559,559,559,559,495,495,495,495,495,495,495,495,448,448,448,448,448,448,448,448,448,448,448,448,544,544,544,544,544,544,544,544,543,543,543,543,543,495,495,495,495,546,546,546,546,546,546,546,546,546,546,516,516,516,546,546,546,546,546,546,546,546,546,546,546,546,546,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,504,504,504,504,504,504,504,504,504,504,504,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,498,498,498,498,498,498,498,498,498,498,498,499,499,499,499,499,499,499,499,499,499,499,510,510,510,510,529,529,529,529,529,529,529,529,529,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,548,548,548,548,548,548,548,548,548,548,477,477,477,477,477,477,477,477,551,551,551,551,551,551,551,551,551,551,557,557,557,557,521,521,521,521,521,521,521,521,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,493,493,493,493,493,470,470,483,483,483,483,483,483,483,504,504,504,504,504,504,504,504,551,551,551,551,551,551,551,551,551,551,551,551,551,550,550,550,550,550,550,550,550,550,550,550,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,512,512,512,512,512,512,512,566,566,566,566,500,500,500,500,500,500,500,500,500,500,500,469,469,469,469,469,469,469,469,469,469,469,469,564,564,564,564,564,564,564,564,564,564,564,555,555,555,555,505,495,495,495,495,495,495,495,495,539,539,539,539,539,539,539,539,539,539,539,539,539,555,555,555,555,555,555,555,555,555,555,555,555,555,519,519,519,519,519,519,519,570,570,570,570,570,570,570,570,570,570,504,504,504,504,504,504,479,479,479,479,479,554,554,554,554,554,554,554,554,554,554,554,554,554,554,496,496,496,589,589,589,589,589,589,589,589,589,589,589,589,589,589,589,589,589,589,546,546,546,546,546,546,550,550,550,550,550,550,550,550,550,556,556,556,556,556,556,556,556,556,556,556,556,518,518,518,518,518,498,498,498,498,498,498,498,498,498,498,498,498,498,488,488,488,488,488,488,488,488,464,464,464,464,464,464,464,464,464,464,464,464,435,435,435,435,435,435,435,491,491,491,491,491,491,540,540,540,540,540,540,540,540,540,540,540,540,519,519,519,519,519,519,519,541,541,541,541,541,541,541,541,541,541,564,564,564,564,564,564,495,495,495,495,495,495,495,495,495,495,495,495,564,564,564,559,559,501,501,501,501,501,501,501,501,501,518,518,518,518,518,518,518,518,552,552,552,552,552,552,552,552,552,552,499,499,499,499,499,499,499,499,499,499,499,499,506,506,506,506,506,506,506,506,506,506,506,506,506,506,545,545,545,545,545,545,545,545,545,545,545,545,545,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,544,544,544,544,544,544,544,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,522,522,522,522,522,522,522,522,522,522,484,484,484,484,503,503,503,503,503,503,503,503,503,503,503,503,503,563,563,563,563,563,563,563,531,531,531,531,531,531,531,531,531,531,508,508,508,508,508,508,508,508,508,508,508,508,555,555,555,555,555,555,555,555,555,555,555,555,504,504,504,504,504,469,469,469,469,469,469,469,469,469,469,469,469,475,475,475,475,475,475,475,475,475,475,475,475,475,553,553,553,553,553,553,553,553,553,553,553,501,501,501,501,501,501,510,510,510,510,510,510,510,510,510,510,510,558,558,515,515,498,498,498,498,498,498,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,457,457,457,457,457,457,457,457,457,457,435,435,435,435,435,435,435,435,435,435,435,435,435,517,515,515,515,515,515,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,570,570,570,570,570,570,570,570,570,552,552,552,552,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,478,478,478,478,478,478,478,478,478,503,503,503,503,503,554,554,554,540,540,540,540,540,540,540,540,540,576,576,576,576,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,496,496,496,496,496,496,565,565,565,565,565,565,565,565,565,517,517,517,517,517,517,524,524,524,524,524,524,524,524,524,583,583,583,583,583,583,583,538,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,514,514,514,514,514,514,514,514,514,461,461,461,461,461,461,461,461,461,486,486,486,486,486,486,486,486,573,573,573,573,573,573,573,573,573,500,500,500,500,500,500,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,549,549,549,549,549,572,572,572,572,572,572,572,572,572,572,572,572,528,479,479,479,479,479,556,556,556,556,556,556,556,556,556,556,556,558,558,558,558,558,558,558,558,558,558,558,513,513,513,513,513,513,513,513,513,513,513,513,513,468,468,468,468,468,468,468,468,468,438,438,438,438,438,438,438,438,438,438,438,438,438,438,438,513,513,513,513,513,513,529,529,529,529,565,565,565,565,565,565,565,509,509,509,509,557,557,557,557,557,557,557,557,558,558,558,558,558,558,558,558,558,498,500,500,571,571,571,571,571,571,571,571,571,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,485,485,485,485,485,485,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,517,517,517,517,517,517,517,517,517,517,517,517,517,498,498,498,498,498,498,498,498,498,498,498,498,460,460,460,460,460,460,460,460,460,492,492,492,544,544,544,567,567,567,567,567,567,567,567,567,567,567,567,524,524,524,524,524,524,485,485,485,485,485,485,485,485,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,554,554,554,554,554,554,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,580,580,580,580,580,580,580,580,580,580,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,559,559,559,559,559,559,559,559,559,559,559,559,559,531,531,531,531,531,531,531,537,537,537,537,537,537,537,537,537,537,516,516,516,516,516,516,516,516,516,516,565,565,565,565,565,565,565,519,519,519,519,519,519,519,519,519,492,492,492,492,492,492,492,492,492,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,545,545,545,492,492,492,492,497,497,497,497,497,558,558,558,558,558,558,558,558,558,558,558,528,528,528,528,528,481,481,481,481,481,481,481,481,481,481,556,556,556,556,556,556,560,560,560,560,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,457,457,457,457,457,457,457,457,457,470,470,470,470,470,470,470,470,470,470,470,590,590,531,531,531,531,554,554,554,554,554,554,554,554,554,495,553,553,553,553,553,553,553,553,553,553,494,494,494,494,494,494,494,494,494,494,494,494,494,549,549,549,549,549,549,549,549,549,549,549,549,549,549,495,495,495,495,495,491,491,491,491,491,555,555,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,496,496,496,496,505,505,505,505,505,505,505,505,505,548,548,548,548,548,548,548,548,548,522,522,522,522,522,522,522,522,522,522,588,588,588,588,588,588,588,588,588,588,588,588,588,588,588,507,507,507,540,565,565,565,565,565,565,565,565,565,565,565,565,525,525,525,525,525,525,525,525,525,555,555,555,555,555,555,555,555,555,555,555,555,509,509,509,509,509,509,509,509,509,559,559,559,559,559,559,559,559,559,559,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,536,536,536,536,536,536,536,524,524,524,524,524,524,524,524,524,524,524,524,524,521,521,521,521,521,521,521,521,521,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,559,559,559,559,559,559,519,519,519,519,519,519,519,519,519,519,519,519,486,486,486,486,486,486,486,486,486,486,486,502,502,502,502,502,545,545,545,545,545,545,545,545,545,545,564,564,564,564,564,564,564,564,564,564,564,564,564,564,495,495,495,495,495,495,495,495,495,495,495,558,558,558,558,558,558,554,554,554,554,485,485,485,485,485,535,535,535,535,535,535,535,535,535,535,535,535,536,536,536,536,536,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,507,507,507,507,507,507,507,528,528,528,528,528,528,528,528,528,528,528,528,555,555,555,555,555,555,555,555,555,555,495,495,495,495,495,495,495,440,440,440,440,440,440,440,440,520,520,520,520,520,520,520,545,545,545,545,545,545,545,545,545,545,556,556,517,517,517,517,517,517,517,517,517,517,488,488,488,488,488,488,488,488,488,488,488,488,488,488,478,478,478,478,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,513,513,573,573,573,573,573,573,573,573,573,573,573,573,573,501,501,501,501,501,501,501,501,501,501,501,501,501,501,490,490,490,490,490,490,573,497,497,497,497,497,577,577,577,577,577,577,577,577,577,577,577,577,577,577,519,519,519,519,519,519,519,519,581,581,581,581,581,581,581,543,543,529,529,564,564,564,564,564,564,564,564,564,564,564,534,555,555,555,555,555,555,555,555,555,555,555,498,499,499,499,499,499,499,499,499,499,499,499,499,499,507,507,507,507,541,541,541,541,541,541,541,541,565,565,565,565,565,565,565,565,565,565,565,537,537,537,537,537,537,484,484,484,484,484,484,474,474,474,474,474,474,474,474,474,551,551,551,551,551,551,551,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,445,445,445,445,445,445,445,445,445,445,445,445,526,526,526,526,526,526,526,526,526,526,526,526,526,515,515,515,515,515,515,515,515,515,515,515,515,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,525,525,525,525,525,525,525,525,525,525,525,537,537,537,537,481,481,481,481,481,481,481,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,550,550,550,550,525,539,539,539,539,539,539,539,539,539,539,512,512,524,524,524,524,524,524,524,524,587,587,587,587,587,587,587,587,553,553,553,553,553,553,553,553,553,553,519,519,505,505,482,482,482,482,482,482,482,482,482,462,462,462,462,462,462,462,462,462,462,462,462,506,506,506,506,506,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,535,535,535,477,477,477,477,477,477,477,477,585,585,585,585,585,585,585,585,585,585,505,505,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,530,530,530,565,565,565,565,565,565,565,565,565,565,565,525,555,555,555,555,555,555,555,555,555,555,555,555,503,503,503,503,503,503,503,503,544,544,544,544,544,504,504,504,504,504,504,504,504,504,504,504,504,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,502,502,502,502,502,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,548,548,548,548,548,548,548,548,548,548,548,548,548,514,514,514,514,514,481,440,447,447,447,447,447,447,447,447,447,447,447,534,534,534,534,534,534,534,534,519,519,519,519,519,519,519,519,519,519,519,519,519,526,526,526,526,526,526,526,526,526,526,526,526,566,566,566,566,566,566,566,566,566,566,543,543,543,543,543,543,543,543,543,543,543,532,532,532,532,532,532,532,520,520,520,520,520,520,520,520,520,520,520,520,520,520,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,561,561,561,561,521,521,503,503,503,503,503,503,503,540,540,565,565,565,565,565,565,565,565,565,565,565,565,565,565,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,541,541,541,541,541,541,541,541,541,541,567,567,567,547,547,547,547,547,547,547,547,547,547,547,547,547,547,509,509,509,509,481,481,481,481,481,481,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,451,451,451,451,451,451,451,451,451,451,491,491,491,491,491,491,535,535,535,535,535,535,558,558,495,495,495,495,495,495,495,495,495,495,495,495,440,440,440,440,440,440,440,440,440,440,440,440,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,521,521,521,521,521,521,521,521,521,521,521,521,521,542,542,542,542,542,542,542,542,554,554,554,554,554,554,554,554,554,554,554,511,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,470,470,470,591,591,591,591,591,591,591,507,507,507,507,507,507,507,507,507,507,507,507,540,540,540,540,540,540,561,561,561,561,561,561,561,561,561,561,561,561,561,561,561,530,530,530,530,530,530,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,551,551,551,551,551,551,551,551,551,551,551,551,499,499,499,499,499,499,499,499,499,469,469,469,469,469,469,469,469,469,469,469,501,501,501,501,501,501,501,501,501,551,551,518,518,518,518,518,518,518,518,518,518,518,518,495,495,495,495,495,495,495,495,495,495,495,458,458,456,456,456,456,456,456,456,556,556,556,549,549,549,549,549,549,549,549,549,549,499,499,499,499,499,499,499,499,499,499,499,499,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,595,551,551,551,551,551,551,551,551,551,551,551,551,551,527,527,527,527,527,527,527,527,527,527,472,472,472,536,536,536,536,536,536,536,536,536,536,536,536,565,539,539,539,539,539,539,539,539,539,539,536,536,536,536,536,536,536,536,536,536,536,536,536,536,526,526,526,526,526,526,559,559,559,559,559,559,559,559,559,559,559,559,515,515,515,515,515,515,515,529,529,507,507,507,507,528,528,528,528,528,528,528,528,472,472,472,472,584,584,584,584,584,584,533,533,533,533,519,519,519,519,519,519,519,519,587,587,587,587,587,587,587,587,587,587,587,587,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,549,549,549,549,549,549,549,549,549,549,549,549,549,549,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,488,488,488,488,488,488,488,488,503,503,503,503,503,503,503,503,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,567,567,567,567,567,567,567,567,567,567,567,567,543,543,543,543,543,543,543,543,543,543,543,543,543,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,473,473,473,473,473,473,473,473,473,473,473,547,547,547,547,547,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,534,534,534,534,534,534,534,534,534,534,534,534,534,497,497,497,497,497,497,497,497,497,497,497,497,593,593,558,558,514,514,514,514,514,514,514,514,482,482,482,482,482,482,482,482,482,482,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,554,554,554,554,554,554,554,554,554,554,554,554,554,554,499,499,499,499,499,499,499,460,460,460,460,460,460,459,459,459,459,459,459,459,459,459,459,459,537,537,537,537,537,537,537,537,537,537,537,546,546,546,546,546,545,545,475,475,475,475,470,470,470,470,470,470,470,470,470,575,575,575,575,575,575,575,575,575,479,479,479,479,479,479,517,517,517,517,517,517,517,517,517,517,530,530,530,530,530,530,530,530,530,530,570,570,570,546,546,546,546,546,496,496,496,496,496,496,496,496,496,496,496,502,502,502,538,538,538,538,538,538,538,538,538,538,538,558,558,558,495,495,495,495,440,440,440,440,440,440,440,440,440,440,517,517,517,517,517,517,517,517,517,517,520,520,520,520,520,520,520,520,520,520,520,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,544,544,544,544,544,544,544,487,487,487,487,487,487,552,552,552,552,504,504,504,504,504,504,504,504,504,504,504,504,504,504,513,513,513,580,580,580,580,580,580,580,580,554,554,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,522,522,522,522,522,522,522,522,504,504,504,504,504,504,504,504,504,492,492,492,492,492,492,492,492,492,492,492,492,492,461,461,461,461,461,461,461,461,461,461,504,504,504,504,504,504,504,504,504,504,504,555,555,555,555,555,555,555,555,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,509,509,509,509,509,509,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,491,491,491,491,491,491,491,491,491,491,491,491,491,550,550,550,550,550,550,550,550,550,550,550,550,550,550,505,505,505,505,505,505,505,558,527,527,527,527,536,536,536,536,536,536,536,536,523,523,523,523,523,523,523,561,561,561,561,547,547,506,506,506,506,506,506,506,506,506,466,466,466,466,466,466,466,466,466,466,466,470,470,470,470,470,470,470,548,548,481,481,481,481,481,535,535,535,535,535,535,535,535,535,535,542,542,542,542,542,542,542,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,492,440,440,440,440,440,440,440,440,440,440,440,520,520,520,520,520,520,520,520,520,539,539,545,545,545,545,545,545,545,545,545,509,509,509,509,509,509,560,560,560,560,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,531,531,531,531,531,531,531,531,531,531,531,531,484,484,553,553,553,553,553,553,497,497,497,497,497,497,497,497,497,497,497,497,485,485,485,485,485,485,485,485,485,485,500,500,500,500,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,539,539,539,539,539,539,539,539,539,539,539,539,539,550,550,550,550,550,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,562,562,562,562,562,562,559,559,497,497,497,497,497,497,497,497,497,497,497,497,448,448,448,448,448,448,448,448,540,540,540,540,542,542,542,542,542,542,542,517,517,517,517,517,517,517,517,517,517,517,517,517,528,528,528,528,528,528,528,528,477,477,477,477,477,477,477,477,545,545,545,545,545,545,545,545,545,545,545,545,545,553,553,553,553,553,553,553,553,553,477,551,551,551,551,551,551,551,553,553,553,553,501,501,501,501,501,501,501,501,501,501,501,518,518,518,518,541,541,541,541,541,541,541,541,541,498,498,498,498,498,498,553,553,553,553,553,553,553,553,553,553,553,553,553,518,518,518,518,518,518,518,518,557,554,554,554,517,517,517,517,517,517,517,517,517,517,481,481,481,481,481,481,481,481,481,481,481,513,513,513,513,513,513,513,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,497,497,497,497,496,496,496,496,496,496,496,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,517,517,517,517,517,517,517,517,517,517,517,517,517,517,468,468,468,468,468,468,468,468,468,438,438,438,438,438,520,520,520,520,520,520,520,539,539,539,539,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,565,565,565,565,565,565,565,565,565,565,511,511,511,511,511,511,511,511,554,554,554,554,554,554,496,496,496,496,496,496,496,496,496,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,562,562,562,562,562,562,562,562,562,562,562,562,494,461,461,461,461,461,461,461,461,538,538,538,538,538,538,538,538,538,538,538,548,548,548,548,548,548,548,548,549,549,549,549,549,549,549,549,549,505,505,505,505,505,505,505,505,505,505,505,505,489,518,518,518,518,518,518,518,518,518,518,518,518,518,578,578,578,578,578,578,578,578,539,539,539,539,539,539,539,539,539,539,502,502,502,502,502,502,502,502,502,502,502,502,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,509,509,509,509,509,509,509,557,557,557,557,557,557,557,557,557,560,560,560,560,560,526,526,526,512,512,512,512,512,512,503,503,503,503,503,501,483,483,483,483,483,483,483,483,483,483,483,483,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,479,479,479,479,479,479,479,479,479,456,456,456,456,456,456,456,455,455,455,455,455,455,550,550,550,550,550,550,550,550,550,550,550,491,491,491,491,491,491,491,553,553,553,553,553,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,555,555,555,555,555,555,555,555,555,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,467,467,467,467,467,467,568,568,568,568,472,472,472,472,472,472,472,472,472,472,472,472,524,524,524,524,524,524,524,524,524,524,524,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,516,516,516,516,516,516,516,516,516,573,573,573,573,573,573,498,498,498,498,498,498,498,498,498,498,498,498,498,483,599,599,599,599,599,599,599,599,599,599,599,599,599,599,599,554,554,554,554,554,554,554,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,564,564,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,498,498,498,498,555,555,555,555,555,555,555,555,555,555,530,530,530,530,530,530,530,530,530,530,524,524,524,524,524,524,524,524,524,524,556,556,556,556,556,556,556,556,556,556,535,535,535,535,535,535,535,535,535,535,535,530,530,530,530,530,530,530,530,530,530,530,530,534,534,534,534,534,534,534,497,497,497,497,497,497,497,497,497,497,497,587,587,587,587,587,587,587,587,537,521,521,521,521,521,521,521,521,521,521,560,560,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,477,477,477,477,477,477,477,477,477,477,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,556,556,556,556,556,556,556,556,556,556,556,517,517,517,517,517,517,517,517,517,517,517,517,517,482,462,462,462,462,462,462,462,462,587,587,587,587,587,587,587,587,587,587,587,587,545,545,545,545,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,485,485,485,485,485,485,485,485,485,477,477,477,477,477,477,477,477,468,468,481,481,481,481,481,481,481,481,481,481,481,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,503,503,503,503,480,480,480,486,486,486,486,486,486,570,570,570,570,570,570,570,570,570,570,570,570,570,511,511,511,511,511,511,511,511,511,511,511,511,511,511,554,554,554,554,554,554,554,554,554,554,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,504,504,504,504,510,510,531,531,531,531,531,531,531,531,531,531,531,544,544,544,544,544,544,544,544,544,544,544,556,556,556,556,556,556,556,556,556,556,556,556,556,516,516,516,516,516,516,516,516,516,516,516,491,491,491,489,489,489,489,489,489,522,522,522,522,522,522,576,576,576,576,576,576,576,576,576,576,527,527,527,581,581,581,581,581,581,581,581,514,514,514,514,514,514,514,514,514,514,514,551,551,551,551,551,551,551,551,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,502,502,502,502,502,502,502,502,502,502,502,502,502,502,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,482,482,482,482,482,482,482,482,482,507,507,507,507,507,507,507,507,507,507,507,550,550,550,550,550,550,550,503,503,503,503,503,503,503,503,503,464,464,464,464,438,438,438,513,513,513,513,513,513,513,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,565,565,565,565,565,509,509,509,509,509,509,509,509,509,509,509,551,551,546,546,546,546,546,546,546,546,546,546,546,516,516,516,516,516,516,516,568,568,568,568,568,568,568,568,568,568,568,500,500,500,500,500,500,500,500,510,510,565,565,565,565,565,565,565,546,546,546,546,546,546,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,447,447,447,447,447,447,447,557,557,557,557,557,557,557,553,553,553,553,553,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,506,506,538,538,538,538,538,538,538,538,538,538,538,538,538,558,558,558,558,558,558,558,558,558,558,558,495,495,495,495,495,495,495,440,440,440,520,520,520,520,520,545,545,545,545,545,545,559,559,559,559,559,559,559,520,520,520,520,520,481,481,481,481,481,481,481,481,481,481,481,480,480,480,480,480,480,480,480,480,480,480,480,480,480,596,596,596,596,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,494,494,494,494,494,494,494,494,494,591,591,591,591,591,591,591,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,497,497,509,509,509,509,509,509,561,561,561,561,561,561,561,561,561,561,561,561,561,516,516,478,478,478,478,478,478,478,461,461,461,461,461,461,461,461,461,461,537,537,537,537,537,537,537,537,537,546,546,546,546,546,546,546,546,546,546,546,545,545,477,477,477,477,477,477,477,477,477,477,477,479,479,479,479,479,479,479,571,571,571,571,571,571,571,571,571,571,571,571,571,493,493,493,493,493,493,493,493,493,493,493,493,493,493,558,558,558,558,558,558,558,558,558,558,558,558,558,549,549,549,549,502,502,502,502,502,502,502,502,502,502,502,502,591,591,591,591,591,591,591,591,591,591,591,591,540,540,540,540,540,540,540,525,525,525,525,525,525,525,525,525,525,525,525,525,539,539,539,539,539,539,539,506,506,506,506,506,506,506,552,552,552,552,552,552,552,552,552,552,552,532,532,532,532,532,532,563,563,563,563,563,563,563,516,516,516,516,516,516,516,481,481,481,481,481,481,481,481,481,481,481,481,481,481,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,515,515,515,515,515,515,515,515,557,557,560,560,560,560,560,560,560,560,560,560,526,526,526,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,479,479,479,479,465,465,465,465,465,465,465,465,560,560,560,560,560,560,549,549,549,549,549,549,549,549,549,502,502,502,502,502,596,596,596,596,596,596,596,596,596,596,596,596,550,550,550,550,550,550,550,500,500,500,500,500,500,500,500,500,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,491,491,491,491,491,491,491,491,491,491,491,491,491,491,509,509,509,509,509,509,509,509,509,509,537,537,537,537,537,537,537,537,537,537,537,537,541,541,541,541,541,541,541,541,541,541,541,541,541,512,512,512,512,512,512,527,527,527,527,527,527,527,456,456,456,456,456,456,456,456,456,456,456,456,525,525,525,525,525,525,537,537,537,537,537,537,537,537,537,537,537,537,537,549,549,549,549,549,549,502,502,502,502,502,502,502,502,502,502,502,442,442,442,442,475,475,475,475,475,475,475,475,561,561,561,561,561,561,511,511,566,566,566,566,566,566,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,443,443,443,443,443,538,538,538,538,538,538,548,548,548,548,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,492,492,492,492,492,492,440,440,440,440,440,440,440,440,440,440,440,440,518,518,518,518,518,518,518,518,518,518,518,518,518,537,537,537,537,537,537,537,537,537,548,548,548,548,548,548,548,548,548,495,495,495,495,495,495,495,495,468,468,468,468,468,468,468,538,538,538,538,538,526,560,560,560,560,560,560,560,560,560,560,521,521,521,521,521,521,521,521,495,495,495,495,495,495,495,495,456,456,456,456,456,456,456,456,467,467,467,467,467,467,595,595,595,595,595,595,595,595,595,595,595,554,554,554,554,554,554,492,492,492,492,492,492,492,492,464,464,464,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,554,554,554,554,554,554,554,554,554,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,443,443,443,443,443,530,530,530,530,530,530,530,530,544,544,544,544,544,544,504,504,517,517,517,517,517,517,517,517,517,517,578,578,578,578,578,578,578,578,578,530,530,530,530,530,530,530,530,530,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,502,502,502,502,502,502,502,502,502,502,553,553,553,553,553,553,505,505,505,505,505,505,505,484,484,484,484,484,484,477,477,477,477,498,498,498,498,498,498,498,498,498,573,573,573,524,524,524,524,524,524,524,524,524,524,509,483,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,554,554,554,554,554,554,554,554,548,548,548,548,548,489,489,489,489,489,489,489,489,489,489,580,580,580,580,580,580,505,505,505,505,524,530,530,530,530,530,530,530,530,530,530,565,565,565,565,565,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,551,551,551,551,551,551,551,551,551,551,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,516,516,516,516,516,516,516,516,516,516,516,516,516,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,574,500,500,500,500,500,500,500,500,500,500,500,500,468,468,468,468,468,468,468,468,468,468,468,468,468,468,554,554,554,554,554,554,554,554,554,554,554,554,554,548,548,548,548,548,548,548,548,548,548,548,548,548,486,486,486,486,486,580,580,580,580,580,580,580,580,580,580,580,550,550,550,550,550,550,550,550,550,550,550,547,547,547,547,547,547,547,547,498,498,498,498,498,498,498,498,498,499,499,499,499,499,499,499,499,499,499,499,499,499,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,555,555,555,555,555,555,555,555,551,551,551,551,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,486,486,486,486,486,486,486,486,486,486,452,452,452,452,452,452,452,452,452,452,452,452,452,450,450,450,450,450,450,450,450,450,450,450,450,578,578,578,578,578,578,578,578,578,548,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,532,532,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,565,565,565,565,565,565,565,565,565,565,565,565,525,525,525,525,525,525,525,525,525,555,555,555,555,555,555,555,555,555,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,543,543,543,543,543,543,526,526,526,526,526,526,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,516,516,481,481,481,481,481,481,481,481,481,513,513,559,559,559,559,559,559,559,559,559,559,559,559,559,499,499,499,499,499,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,540,540,540,540,523,523,523,523,523,523,523,523,560,560,560,560,560,560,560,560,560,560,560,560,527,527,527,527,527,527,492,492,492,492,492,492,492,492,589,589,589,589,589,589,589,589,556,556,556,556,556,556,556,556,556,548,548,548,548,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,461,461,461,461,461,461,461,461,461,461,538,538,538,538,538,538,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,516,516,516,516,516,572,572,572,572,572,572,572,572,572,572,572,521,521,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,483,483,483,483,483,483,483,483,483,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,496,496,496,496,496,506,506,506,506,506,506,506,538,538,538,538,538,538,538,538,538,538,538,558,558,558,558,558,558,558,558,558,495,495,440,440,440,440,440,440,517,517,517,517,521,521,521,521,539,545,545,545,545,545,507,507,507,507,507,507,507,507,507,507,507,507,566,566,566,566,566,566,566,566,499,499,499,499,499,499,499,499,499,499,499,443,443,443,443,443,443,443,533,548,548,548,548,548,548,548,548,548,474,474,474,474,474,474,474,474,474,474,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,542,490,490,490,490,490,490,490,490,490,490,553,553,553,553,553,553,553,553,553,553,553,553,505,505,505,505,505,505,505,505,505,505,505,505,554,554,554,554,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,535,535,559,559,559,559,559,559,559,559,559,559,559,559,479,479,479,479,479,479,479,479,521,521,521,521,521,521,515,515,515,515,515,515,515,515,515,515,515,515,515,515,530,530,530,530,530,565,565,565,565,565,565,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,529,529,529,529,529,529,529,529,533,533,533,533,533,533,533,544,544,544,544,544,501,501,501,501,501,501,501,501,501,554,554,554,554,554,516,516,516,516,516,516,516,516,516,516,516,492,492,492,492,492,492,490,490,490,490,490,490,490,490,490,490,490,497,497,497,497,497,497,497,497,483,483,483,483,483,483,483,483,483,483,483,483,483,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,493,493,493,493,590,590,590,590,590,590,590,590,590,590,590,590,590,590,549,549,549,522,522,497,497,497,497,497,497,497,497,497,497,497,497,497,497,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,500,500,500,500,500,500,500,500,500,569,569,569,569,569,569,569,569,569,521,521,521,521,521,521,476,436,484,484,484,484,484,484,484,484,484,484,484,484,546,546,546,546,546,546,546,546,546,546,546,546,546,504,504,504,504,504,504,504,534,534,534,534,534,534,534,534,534,534,534,534,534,533,533,533,533,533,533,544,544,544,544,544,544,544,544,544,544,544,499,499,499,499,499,499,499,499,499,499,553,553,553,477,477,477,477,546,546,546,546,546,546,546,546,546,546,569,569,569,569,569,569,569,569,569,569,569,531,531,531,531,531,531,531,531,531,531,531,531,557,557,557,557,557,557,557,557,557,503,503,503,503,503,503,503,487,470,470,470,439,439,439,439,439,439,439,439,439,439,439,439,439,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,507,507,507,507,507,507,507,507,507,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,544,544,544,544,544,544,504,504,504,504,504,504,504,504,559,559,559,559,559,559,559,559,559,559,512,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,483,483,483,483,483,483,483,483,483,483,483,483,565,565,565,565,565,565,565,565,565,565,565,565,565,565,519,519,519,519,519,519,519,519,519,519,519,503,503,503,503,503,503,503,503,488,488,488,488,488,488,488,504,504,504,504,504,504,504,532,532,532,519,519,519,519,519,519,519,555,555,555,555,555,555,555,555,555,519,519,519,519,519,519,519,519,519,519,476,476,476,476,476,476,476,476,476,476,476,476,585,585,585,585,585,585,533,533,533,533,533,533,533,533,533,533,533,533,557,557,557,557,557,557,557,557,557,507,507,507,507,507,507,560,560,560,527,527,551,551,493,493,493,493,491,491,491,491,491,491,491,491,491,491,491,491,491,491,491,491,491,562,562,562,562,562,562,562,562,562,562,562,562,532,532,532,532,532,532,532,532,532,532,532,532,532,563,563,563,563,563,563,563,523,523,523,523,523,523,523,523,498,498,498,498,498,498,498,498,480,480,480,480,480,480,480,480,480,443,443,443,443,443,443,443,522,522,522,522,522,529,529,529,529,529,529,529,565,565,565,565,565,565,505,505,505,505,505,505,505,505,505,505,505,505,505,531,531,531,531,531,531,531,541,541,541,541,541,541,541,554,554,554,554,554,554,554,554,554,554,519,519,519,519,519,519,519,519,519,519,519,489,489,489,489,489,489,489,489,481,481,481,481,481,481,481,481,481,481,481,476,476,476,476,476,476,476,476,476,448,448,448,448,448,448,448,448,551,551,551,551,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,512,512,512,512,512,561,561,561,561,561,561,561,561,561,561,561,561,561,508,508,508,508,508,508,574,574,574,574,574,574,574,574,574,479,479,479,479,479,479,479,479,479,479,524,524,524,524,539,539,539,539,539,539,539,539,539,539,539,545,545,545,545,545,545,545,545,515,515,515,515,515,515,515,515,515,570,570,570,570,570,570,570,570,501,501,501,501,501,501,501,501,501,501,475,475,475,475,475,475,475,475,475,549,549,549,549,549,549,549,549,549,549,549,549,549,474,474,492,492,492,492,492,556,556,556,556,556,556,556,556,556,535,535,535,535,535,535,535,535,535,535,535,535,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,540,540,540,517,517,517,534,534,534,534,558,558,558,558,558,558,558,558,558,558,558,558,497,497,497,497,478,555,555,555,555,555,555,555,492,492,492,492,492,492,492,469,469,469,469,469,469,469,469,469,469,556,556,556,556,556,556,556,556,556,556,556,548,548,548,548,548,522,560,560,560,560,560,560,560,560,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,488,488,488,465,465,465,465,465,465,465,465,560,560,560,560,560,560,495,495,495,495,495,495,546,546,546,546,546,546,546,546,546,546,546,512,512,512,512,512,512,512,512,512,512,512,525,525,525,525,525,525,525,525,525,525,580,580,580,580,580,580,580,580,580,580,580,580,580,580,538,538,538,538,538,538,538,538,538,538,538,538,538,538,516,516,516,516,516,516,544,544,544,544,544,544,544,544,544,544,561,561,561,561,561,561,561,561,561,561,561,509,509,509,509,509,509,509,503,503,503,503,503,503,503,503,503,503,503,503,536,536,536,536,536,536,536,536,536,536,536,536,536,529,529,529,529,529,529,560,560,560,560,515,515,515,515,515,515,483,483,565,565,565,565,565,565,516,516,516,516,516,484,484,484,484,484,484,484,484,484,484,484,484,484,486,486,486,486,486,486,486,486,486,486,486,486,486,570,570,570,570,570,570,570,570,570,570,570,502,502,502,502,542,518,518,518,518,518,518,518,518,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,531,531,531,531,531,531,531,531,531,531,531,531,531,498,498,498,498,498,498,498,558,558,558,558,558,558,558,558,558,558,558,558,558,558,512,512,512,512,512,505,505,505,505,554,554,554,554,554,554,554,554,554,554,554,554,554,557,557,557,557,557,557,557,557,557,517,517,517,517,517,517,485,485,485,485,485,485,485,485,485,485,485,440,440,440,440,440,440,440,538,538,538,538,538,538,566,566,566,566,566,566,566,566,530,530,530,530,530,530,530,530,503,557,557,557,520,520,520,520,520,520,520,538,538,538,538,538,538,538,538,538,538,557,557,557,557,557,501,501,501,501,501,501,501,501,501,501,470,470,470,470,470,470,504,504,504,504,504,504,504,504,504,504,504,504,504,504,550,550,550,550,550,550,550,503,503,503,503,503,503,503,503,464,464,464,464,464,464,460,460,460,460,460,460,551,551,551,551,551,551,492,492,492,492,492,492,492,492,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,547,547,547,547,547,547,547,547,547,507,507,507,507,507,507,507,507,507,532,532,546,546,546,546,546,546,546,546,546,546,481,481,481,481,481,481,481,481,481,481,481,481,501,501,501,501,501,501,501,501,501,501,534,534,534,534,534,534,534,534,534,534,534,534,534,497,497,497,497,497,497,590,590,590,590,590,590,590,590,536,536,536,536,536,536,536,512,512,512,512,560,560,560,560,560,504,504,504,504,504,504,504,504,504,521,521,521,521,567,567,567,567,567,567,567,567,567,567,567,526,526,526,526,526,526,507,507,507,507,507,507,507,507,507,507,507,501,501,501,501,495,495,495,495,495,495,495,495,495,495,495,495,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,463,463,463,463,463,463,541,541,541,541,541,541,541,541,541,541,541,541,541,476,486,486,486,486,486,486,520,520,520,520,520,520,520,581,581,581,581,581,581,581,540,540,540,540,540,540,540,540,524,524,524,524,524,524,524,524,524,524,524,524,566,566,566,566,566,566,566,566,566,566,566,566,481,481,481,481,538,538,538,543,543,543,543,543,495,495,495,495,495,495,495,495,495,495,495,546,546,546,546,546,546,516,516,516,516,516,516,516,543,543,543,543,543,543,543,543,543,543,543,567,567,567,567,567,567,514,514,514,514,461,461,461,461,461,461,461,461,461,461,461,484,484,484,484,484,484,571,488,488,488,488,488,488,488,488,488,488,488,535,535,535,535,535,535,535,535,535,535,535,535,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,533,533,533,533,533,533,533,533,533,533,533,544,544,544,544,544,501,501,501,501,501,501,501,501,501,501,501,501,549,549,549,549,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,491,491,491,491,491,491,491,491,509,509,542,542,542,542,542,549,549,549,549,549,549,549,549,549,472,472,472,472,472,472,472,472,472,472,472,472,524,524,524,524,524,524,524,524,524,524,535,544,544,544,544,544,544,544,544,544,544,544,544,522,522,522,522,522,522,522,522,522,522,522,522,522,522,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,540,540,525,525,525,525,525,525,525,525,525,532,532,532,532,532,487,487,487,487,487,487,487,487,487,487,487,547,526,526,526,526,526,526,526,526,526,526,560,560,560,560,560,560,560,560,560,560,560,560,519,519,519,519,519,519,519,519,519,519,519,519,496,496,496,496,496,496,496,496,496,468,468,468,468,468,468,468,470,470,470,470,470,470,543,543,543,543,543,499,499,499,499,499,499,499,499,594,594,594,594,594,594,594,594,594,594,594,538,559,559,559,559,559,559,559,559,559,559,559,559,500,500,500,500,500,500,458,458,508,508,508,508,508,508,508,508,508,508,508,508,508,540,540,540,540,540,540,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,547,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,530,530,530,530,530,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,509,509,509,509,509,509,509,509,509,557,557,557,560,560,560,560,560,560,560,560,560,560,560,560,520,520,520,520,520,520,520,520,484,484,484,484,484,484,484,484,484,484,464,464,464,464,464,464,554,554,554,554,554,554,553,553,553,553,553,553,553,553,553,553,553,553,468,468,468,468,468,468,468,468,468,468,468,468,468,468,534,534,534,534,534,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,530,530,530,530,530,530,530,512,512,512,512,512,512,512,512,512,512,512,512,565,565,565,565,565,565,565,565,565,565,565,524,524,524,524,524,509,509,509,509,509,509,490,490,490,490,490,490,490,490,490,487,487,487,487,487,487,487,487,487,493,493,493,493,493,493,493,493,493,493,482,482,482,465,465,465,465,465,465,465,465,465,465,465,560,560,560,560,560,560,560,560,560,487,546,546,546,546,546,546,546,546,546,510,510,510,510,510,510,510,510,510,510,545,545,545,545,545,545,545,545,545,545,548,548,548,548,548,548,548,548,548,548,548,533,533,502,502,502,502,502,502,502,502,502,502,502,561,561,561,561,561,561,561,561,561,561,561,502,502,502,502,502,502,502,502,543,543,523,523,523,523,523,523,523,523,523,537,537,537,537,537,537,537,537,537,537,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,560,560,560,560,560,560,560,560,560,560,504,504,504,504,518,518,518,518,518,518,518,552,552,552,552,552,552,552,552,552,552,552,552,552,498,498,498,498,498,498,498,498,498,498,490,490,490,490,490,490,490,490,490,503,503,503,503,503,503,503,537,537,537,537,537,537,537,537,537,537,537,537,567,529,529,559,559,529,529,529,529,529,529,529,529,529,536,536,536,536,536,536,536,536,519,519,519,519,519,519,519,519,519,519,519,551,551,551,551,551,551,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,511,511,511,511,511,511,511,511,511,563,563,563,563,563,563,563,563,557,557,557,557,557,557,557,557,557,557,557,557,557,518,518,518,518,518,518,518,518,518,518,518,518,518,504,504,504,504,504,504,504,504,504,483,483,483,483,483,483,483,483,457,457,457,457,457,457,457,457,457,457,457,437,437,437,437,437,437,437,533,533,533,533,533,533,543,543,543,543,543,543,543,489,489,489,489,489,489,579,579,579,523,523,523,523,523,523,523,523,523,523,523,523,523,556,556,556,556,556,556,556,556,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,525,525,525,525,525,525,525,525,525,525,525,525,525,557,557,557,557,557,557,557,557,481,538,538,538,538,538,538,538,543,543,543,543,543,543,543,543,543,543,543,543,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,580,580,580,580,580,580,580,544,544,544,544,544,544,544,532,532,532,532,532,532,532,532,533,533,533,533,533,533,533,533,533,533,533,560,560,560,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,479,479,479,479,479,479,479,479,479,479,479,479,479,443,443,443,526,526,526,526,526,526,526,526,526,526,526,521,535,535,535,535,535,535,535,545,545,545,545,545,545,545,545,545,545,545,545,545,545,525,525,525,525,525,525,525,525,540,540,540,540,540,540,525,536,536,536,536,536,536,536,536,536,536,536,523,523,523,523,523,523,523,523,523,523,556,556,556,556,556,556,556,556,556,535,535,535,535,535,535,535,527,527,527,527,527,527,527,527,527,527,531,531,531,531,531,531,531,531,531,531,531,453,453,453,453,537,537,537,537,537,537,569,569,569,569,569,549,549,549,549,549,549,549,549,549,549,549,549,519,519,519,519,519,519,519,519,519,492,492,492,492,492,492,492,460,460,460,460,460,460,460,460,460,460,488,488,488,488,488,488,488,488,488,488,488,488,524,524,524,524,524,524,524,524,524,524,524,524,524,581,581,581,581,581,581,581,581,581,581,581,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,530,530,530,530,530,530,530,530,530,530,530,521,521,521,521,521,521,521,521,521,530,530,530,530,530,530,530,530,530,530,530,530,530,530,542,542,542,542,542,542,542,542,542,521,521,521,521,521,521,521,521,521,553,553,553,553,553,553,553,553,553,553,553,553,553,553,518,518,518,518,518,518,505,483,483,483,483,483,483,483,483,483,483,483,483,458,458,458,458,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,475,475,597,597,597,597,597,544,544,544,544,544,544,544,544,544,544,544,544,571,524,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,484,484,464,558,558,549,549,549,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,498,498,498,526,526,526,526,526,526,526,526,526,526,499,499,499,499,499,499,499,499,499,499,499,568,568,568,568,568,568,568,568,568,568,483,483,483,483,483,483,483,545,545,545,545,545,545,545,549,549,549,549,549,549,549,549,549,549,549,549,549,506,482,482,482,482,482,482,482,482,482,482,482,482,482,482,476,476,476,476,476,476,476,476,476,476,476,476,513,513,513,513,513,513,513,513,513,513,513,513,564,564,564,564,564,564,564,564,564,564,564,564,564,515,515,515,515,515,515,515,515,515,515,515,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,558,558,558,558,558,558,558,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,503,503,528,528,528,528,528,528,528,528,528,528,583,583,534,534,534,534,534,534,534,477,477,477,477,477,477,477,477,477,477,477,477,477,545,545,545,545,553,553,553,553,553,472,472,472,472,472,472,472,517,517,517,517,517,517,517,529,529,529,529,529,529,529,529,529,529,529,529,563,563,563,563,563,563,563,563,563,563,563,563,563,563,521,521,581,581,581,581,581,581,542,542,542,542,542,542,542,542,542,564,564,564,564,564,564,564,564,564,564,564,564,564,504,504,504,504,504,504,504,504,504,504,518,518,539,539,539,539,539,539,539,539,497,497,497,497,497,497,497,497,497,497,497,497,587,587,537,537,537,537,537,537,537,537,537,537,519,519,519,519,519,519,519,519,549,540,540,540,540,540,540,540,540,540,540,540,540,571,571,571,571,571,571,571,504,504,504,504,504,504,504,504,504,504,504,503,503,503,503,503,503,503,503,503,528,528,580,580,580,580,580,580,580,580,580,580,580,580,580,536,536,536,519,519,519,519,519,519,519,519,519,519,519,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,532,532,532,532,532,568,568,568,568,568,568,568,568,568,521,521,521,521,521,521,521,521,531,531,531,531,531,531,531,531,531,531,531,531,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,495,495,495,495,495,495,495,495,580,580,580,580,580,580,580,580,510,510,510,510,510,510,510,510,510,510,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,489,489,489,489,489,489,554,554,554,554,554,554,554,554,554,554,550,550,550,550,550,550,528,528,528,528,528,528,528,528,528,528,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,492,492,492,492,492,492,479,479,479,479,479,479,479,479,479,479,479,479,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,507,507,507,507,473,473,473,473,473,473,486,486,486,486,486,486,538,538,538,538,538,538,538,538,538,538,565,565,565,565,524,524,524,524,524,524,524,524,524,524,524,524,524,524,501,501,501,501,501,501,501,501,501,501,501,501,460,460,460,460,460,460,460,460,460,460,486,486,486,486,486,486,486,486,486,486,486,486,486,486,570,570,570,570,570,570,570,570,521,521,521,486,486,486,486,486,462,462,462,462,462,462,462,462,462,462,553,553,553,553,553,553,553,553,553,553,553,553,553,553,515,515,515,515,515,531,531,531,531,529,529,529,529,529,529,529,529,529,563,563,563,563,563,563,563,563,563,563,563,563,563,563,526,526,526,526,526,526,526,526,526,526,507,507,507,507,507,507,507,507,507,507,507,507,499,499,499,499,499,499,499,499,499,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,448,555,555,555,555,555,555,555,555,555,555,555,549,549,549,549,549,549,549,505,505,505,505,505,505,505,505,505,505,507,507,507,507,507,507,507,507,507,507,507,507,507,545,545,545,545,545,545,545,545,545,496,496,496,496,496,496,490,490,490,490,503,503,503,503,503,503,503,503,503,503,503,538,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,531,531,531,531,521,521,521,521,521,521,521,521,521,561,561,544,544,544,544,544,544,544,544,495,495,495,495,495,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,550,550,550,550,550,536,536,536,536,536,536,536,536,536,536,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,547,544,544,544,544,544,544,504,504,504,504,504,504,504,504,504,504,504,504,504,517,578,578,578,578,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,555,555,555,555,555,555,555,555,509,509,509,559,559,559,559,559,559,494,494,494,494,502,502,502,502,502,502,502,502,502,573,573,573,573,573,573,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,492,492,492,492,492,492,492,492,492,492,492,506,506,506,506,506,506,506,506,506,506,506,506,506,531,531,531,531,531,531,531,531,531,531,531,531,531,531,493,493,493,493,493,493,493,493,493,493,493,493,590,590,590,590,590,590,590,513,513,513,513,513,513,513,513,545,545,545,545,545,545,545,545,545,545,545,545,545,544,544,544,544,544,544,544,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,554,554,554,554,554,554,554,554,554,554,513,513,513,513,513,513,513,513,513,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,471,471,471,471,504,504,504,504,504,504,504,550,550,550,550,550,550,550,550,550,550,503,503,503,503,503,503,503,503,503,503,503,503,464,464,464,464,464,464,464,464,464,464,464,464,464,460,460,460,460,460,460,460,460,551,551,551,551,551,551,551,502,502,502,502,440,440,440,440,440,440,449,563,563,563,563,563,563,563,563,563,563,563,563,563,565,565,565,565,565,565,565,565,565,565,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,486,486,486,486,486,486,486,486,486,486,498,507,507,507,507,507,507,507,507,507,507,507,541,541,541,541,541,541,570,546,546,546,546,546,546,546,496,496,496,496,496,496,496,496,496,496,496,496,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,526,526,526,583,583,583,583,583,583,583,583,583,583,583,583,537,537,537,537,537,537,537,537,537,537,537,537,537,564,564,564,564,564,564,564,564,564,564,564,491,491,491,491,491,491,491,491,535,535,535,535,535,535,535,535,539,539,539,539,539,539,539,539,539,539,539,539,548,548,474,474,474,474,474,474,474,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,550,550,550,550,550,550,550,506,506,506,506,506,506,506,506,464,464,464,464,460,460,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,568,568,568,568,477,477,477,477,477,477,477,477,477,477,477,477,477,477,551,551,551,551,551,551,551,551,553,553,553,553,553,553,553,553,501,501,501,501,521,521,521,521,521,521,562,562,562,562,562,562,562,562,495,495,495,495,495,495,495,495,484,484,484,484,484,484,484,484,484,484,484,484,564,564,564,525,525,525,542,542,542,542,542,542,542,542,542,542,542,542,486,486,486,486,486,486,486,486,486,486,486,486,469,469,469,469,469,469,469,469,469,554,554,554,554,554,554,554,554,554,497,497,497,497,497,497,497,497,497,497,502,502,502,502,551,551,551,551,551,518,518,518,518,518,518,518,495,495,495,495,495,495,495,495,495,495,495,495,495,460,460,460,460,460,460,460,460,486,486,486,486,486,486,486,486,486,486,486,486,486,486,567,567,567,504,504,518,518,518,518,518,518,518,518,518,518,556,556,556,556,556,556,556,556,556,556,556,556,556,485,485,485,485,485,446,446,446,446,446,446,446,446,446,446,544,544,544,544,544,544,544,544,544,544,544,548,548,548,548,548,548,548,548,548,548,548,477,477,477,477,477,477,477,477,477,545,545,545,545,545,545,545,545,545,545,544,544,544,544,544,544,544,544,544,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,594,594,594,594,594,594,594,594,594,594,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,552,552,552,552,552,552,552,552,552,552,552,552,513,513,513,513,513,513,513,513,513,513,513,545,545,545,545,545,545,548,548,548,548,548,548,548,548,532,532,532,532,532,532,532,532,477,477,477,477,477,477,477,477,477,477,477,477,530,530,530,530,530,530,530,530,530,530,530,530,550,550,550,550,550,550,550,550,550,550,550,557,557,557,557,557,557,498,498,498,498,498,498,498,498,498,498,500,500,500,500,500,569,569,569,569,569,569,569,569,569,569,569,522,522,522,522,522,489,489,489,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,476,476,476,476,476,476,476,476,476,448,448,448,448,448,448,448,448,448,448,448,448,557,557,557,557,557,559,559,559,559,559,559,559,559,519,519,519,519,519,519,519,484,484,484,484,484,484,484,484,484,484,503,503,503,503,503,503,563,563,563,563,563,563,563,530,530,530,530,530,530,530,530,530,530,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,558,558,558,558,558,558,558,558,558,559,559,559,559,559,559,559,559,559,559,559,500,500,500,500,500,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,513,513,513,513,513,513,513,513,545,545,545,545,545,545,545,545,545,545,545,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,552,552,552,552,552,552,552,552,552,552,552,552,552,552,508,508,508,462,462,462,462,462,462,462,462,467,548,548,548,548,548,548,548,548,548,548,481,481,481,481,481,481,481,481,481,481,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,543,543,532,532,532,532,532,532,532,532,532,532,532,516,516,516,516,516,516,516,516,516,516,516,507,507,507,507,507,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,522,522,522,522,522,522,522,522,522,522,522,522,521,521,521,521,521,521,521,521,521,521,521,521,542,542,542,542,542,542,542,542,542,542,542,552,552,552,552,552,552,498,498,498,498,498,498,467,467,467,467,467,467,467,467,467,467,467,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,498,498,498,498,498,498,498,498,498,498,549,474,474,474,474,474,474,474,474,474,474,474,474,448,448,448,448,448,448,448,448,448,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,557,557,557,557,557,557,497,497,497,497,497,497,497,497,497,497,488,488,568,568,568,512,512,512,512,512,512,512,532,532,532,532,532,532,532,532,532,532,532,532,532,532,546,546,546,546,546,546,546,546,546,481,481,481,481,481,481,481,501,501,501,501,501,501,501,501,501,537,537,537,502,502,502,502,502,502,502,502,502,561,561,561,561,561,561,561,561,502,502,502,502,502,502,502,502,502,542,542,518,518,518,518,518,518,518,518,518,518,518,518,548,548,548,548,548,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,563,563,563,563,563,563,563,563,563,563,524,524,524,551,551,551,551,551,551,552,552,552,552,552,552,552,552,552,552,513,513,513,513,513,513,513,513,513,486,486,486,486,486,486,486,486,490,490,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,482,482,482,482,482,482,482,482,482,502,502,502,502,547,547,547,547,547,547,547,547,547,547,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,520,520,520,520,520,520,520,520,520,481,481,481,481,481,481,437,437,437,437,437,437,437,437,459,459,459,459,459,459,459,593,593,593,593,593,593,593,593,593,593,593,593,593,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,485,485,485,485,485,485,485,485,485,485,485,446,446,446,544,544,544,544,544,544,544,544,544,544,542,542,542,542,542,542,490,490,490,490,490,490,490,553,553,553,553,553,553,494,494,494,494,494,494,494,555,555,555,555,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,475,475,475,475,475,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,498,498,498,498,498,498,498,498,498,498,498,498,498,498,475,475,475,475,475,475,475,475,551,551,551,551,551,551,551,512,512,512,512,512,512,512,512,512,512,512,525,525,525,525,525,525,525,525,525,525,587,587,587,587,587,587,587,587,556,556,556,523,523,523,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,498,498,498,498,498,498,498,498,484,484,484,484,484,484,484,484,484,484,484,497,497,497,497,497,497,497,497,497,497,497,497,497,497,544,544,544,544,544,544,544,544,520,520,520,520,520,520,520,520,520,520,520,520,520,593,593,593,593,550,550,550,550,498,498,498,498,498,498,498,498,498,498,498,498,510,510,510,510,510,510,510,510,510,510,510,510,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,525,532,532,532,532,532,532,532,532,532,532,495,495,495,495,495,495,495,558,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,483,483,483,483,483,483,483,483,483,483,483,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,561,561,561,561,561,561,561,561,561,490,490,490,490,490,490,490,490,490,490,490,581,581,581,581,581,581,525,525,525,525,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,590,590,590,590,590,534,534,534,534,479,479,479,479,479,479,556,556,556,556,556,556,556,556,558,558,558,558,558,558,558,558,558,558,558,513,513,513,471,471,471,471,474,474,474,474,474,474,474,474,557,557,557,557,557,522,522,522,522,522,522,522,522,522,522,522,522,522,522,507,507,507,507,507,483,483,483,483,483,483,483,483,483,483,483,483,483,511,511,511,511,511,511,511,511,543,543,516,516,516,516,516,516,568,568,568,568,568,528,528,528,528,528,528,528,528,528,528,528,528,508,508,508,508,508,508,480,480,480,480,480,486,486,486,486,486,486,486,486,486,486,486,580,580,580,580,580,580,580,580,580,580,580,479,479,479,479,479,479,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,535,535,535,535,535,535,535,544,544,544,544,521,521,521,521,521,521,521,521,521,521,521,521,521,545,545,545,545,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,546,546,546,546,546,546,546,546,546,546,546,546,546,546,567,567,567,567,567,567,567,567,528,528,528,528,499,499,499,499,499,499,499,499,499,560,560,560,560,560,560,560,560,560,560,560,560,504,504,504,504,504,504,504,553,553,553,553,553,553,553,553,553,553,553,553,553,553,499,499,499,499,499,499,499,454,454,454,454,454,454,454,454,454,454,454,454,454,462,462,462,560,560,560,548,548,548,548,548,548,548,548,548,548,510,510,510,510,510,510,510,510,510,510,562,562,562,562,562,562,505,505,505,505,505,505,505,505,505,505,483,483,483,483,483,483,483,483,462,462,462,462,438,438,438,438,438,438,438,438,517,517,517,517,517,517,517,517,521,521,521,521,521,521,521,521,521,539,539,539,539,539,539,539,539,539,539,539,550,550,550,550,550,550,550,485,485,485,485,485,485,485,485,485,485,485,485,485,485,535,535,535,535,535,525,525,525,525,525,525,525,525,525,542,542,542,542,542,542,542,552,552,552,552,552,552,552,552,552,552,501,501,485,485,485,485,485,485,485,485,485,485,485,558,558,558,496,496,496,496,496,496,496,518,518,518,518,518,518,518,518,518,518,518,518,518,539,539,539,497,497,497,497,497,497,497,497,497,497,497,591,591,591,591,591,591,591,591,591,591,591,591,591,549,549,549,497,497,497,497,489,489,489,489,489,489,489,489,489,518,518,518,580,580,580,580,580,580,580,580,580,580,580,580,580,549,549,549,549,549,549,549,549,549,549,524,524,524,492,492,492,492,492,492,492,492,492,492,492,492,492,492,589,589,589,589,589,589,556,556,556,556,556,556,556,556,556,556,553,553,553,553,553,553,553,553,553,553,553,519,519,519,519,519,519,519,519,519,519,519,480,480,480,480,480,480,480,480,480,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,573,573,573,573,573,573,573,573,573,573,573,521,521,521,521,521,485,485,485,485,485,485,485,485,485,485,485,485,446,446,446,446,446,446,446,446,446,446,548,548,548,548,548,548,548,548,548,550,550,550,550,550,550,550,550,550,550,550,550,550,498,498,498,498,498,498,498,439,439,439,439,439,439,439,439,439,439,439,439,439,483,483,483,483,483,483,483,483,483,483,483,483,564,564,564,564,564,564,564,556,556,556,556,556,517,517,517,517,517,517,517,517,481,481,481,481,481,481,481,481,481,481,481,481,481,481,500,500,500,500,500,500,500,500,500,535,535,535,535,535,535,535,535,535,535,559,559,559,559,559,559,559,559,559,559,559,481,481,481,481,481,481,481,481,538,538,538,538,538,538,538,538,538,538,538,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,486,486,580,580,580,580,580,580,580,580,580,580,546,546,546,546,546,546,546,546,546,546,529,529,529,529,529,529,529,529,529,529,511,511,511,511,511,511,511,511,511,511,511,511,511,511,553,553,553,553,553,553,553,553,553,553,553,553,553,508,508,508,508,508,508,508,508,508,508,508,508,508,508,567,567,567,567,567,567,567,567,567,567,567,567,567,567,498,498,498,498,498,498,498,498,498,498,498,498,581,581,581,581,581,581,581,581,581,581,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,477,477,477,477,477,477,477,477,477,477,477,477,477,477,552,552,552,552,552,552,552,552,552,545,545,545,545,545,545,480,480,480,480,480,480,501,501,501,501,537,537,537,537,537,537,537,502,502,502,502,502,502,562,562,562,562,562,562,562,562,562,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,580,580,580,580,580,580,580,544,544,544,544,544,544,544,544,544,532,532,532,532,532,532,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,555,555,555,555,555,498,498,498,498,498,498,498,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,513,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,541,541,541,541,512,512,512,512,512,525,525,525,525,525,525,525,525,525,525,525,525,525,478,478,478,478,478,478,558,558,494,494,494,494,494,494,494,494,494,494,494,555,555,555,555,555,555,555,555,555,555,555,555,555,508,508,508,508,508,508,508,508,508,508,464,464,464,464,464,464,475,475,475,475,475,475,475,475,475,462,462,462,462,462,462,462,462,462,462,462,442,442,442,442,442,442,442,442,442,442,442,442,442,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,557,557,557,557,557,557,557,557,497,497,497,497,497,497,497,490,490,490,490,490,580,580,580,580,580,580,580,580,483,483,483,483,483,483,483,483,483,483,483,483,538,538,538,538,538,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,489,489,489,489,489,489,489,489,489,489,489,489,489,580,580,580,580,580,580,580,580,580,580,580,529,529,529,529,529,529,529,529,529,529,529,529,529,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,521,521,521,521,521,521,521,521,521,521,521,531,531,531,531,531,559,559,559,559,559,559,559,559,559,559,481,481,481,481,481,481,481,481,481,481,538,538,538,543,543,543,543,543,543,543,543,543,543,543,504,504,504,504,504,504,504,561,561,561,561,561,561,561,561,561,561,561,514,514,514,514,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,509,509,509,509,509,509,509,509,509,509,540,521,521,521,521,521,521,521,521,521,521,521,521,547,547,547,547,547,547,547,547,547,547,547,547,547,547,509,509,509,509,509,509,509,509,509,509,509,509,509,563,563,563,563,563,563,558,558,558,558,558,558,558,558,498,498,498,498,498,498,498,498,498,498,498,498,500,500,500,500,571,571,497,497,497,497,497,460,460,460,460,460,582,582,582,582,582,582,582,582,582,582,582,533,519,519,519,519,519,519,519,519,586,586,586,586,586,586,586,586,586,586,586,586,586,538,538,538,538,538,513,513,513,513,513,503,503,503,503,503,503,503,503,503,503,503,503,503,503,540,540,540,540,540,540,540,540,540,540,540,540,540,563,563,563,563,563,563,563,563,521,521,521,521,521,521,521,521,521,521,521,578,578,578,578,578,578,578,578,578,578,578,528,528,587,587,587,587,587,587,587,587,587,587,556,556,556,521,521,521,521,521,521,504,503,503,503,503,503,503,490,490,490,490,490,490,490,490,490,490,487,487,487,497,497,497,497,497,497,497,497,497,503,503,503,503,488,488,488,481,481,477,477,477,477,477,477,477,477,465,465,465,465,465,465,465,465,561,561,561,561,561,561,561,561,561,561,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,580,580,580,580,580,510,510,510,510,510,510,510,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,521,521,521,521,521,521,521,521,521,521,521,521,521,521,501,501,501,501,501,501,501,458,458,458,458,458,454,454,454,454,454,454,454,454,550,550,550,550,550,548,548,548,548,548,548,548,548,548,548,548,548,548,548,490,490,490,490,490,490,490,490,490,490,490,585,585,585,585,585,585,585,553,553,553,553,553,553,553,553,553,521,521,521,521,521,521,521,521,521,521,521,521,501,495,495,495,495,495,467,467,467,467,467,467,467,467,467,467,467,467,467,463,463,463,463,463,463,463,463,463,463,463,463,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,476,476,476,476,476,476,476,476,476,476,476,483,483,483,483,483,483,483,567,567,567,567,567,567,567,567,567,502,502,502,502,502,504,504,504,504,504,504,504,504,504,504,504,504,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,541,541,541,541,541,541,541,541,541,541,565,531,531,531,531,531,531,521,521,521,521,521,521,521,521,521,521,560,560,560,560,560,560,560,560,560,560,560,560,560,527,527,527,527,527,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,540,540,540,540,540,563,563,563,563,563,563,563,563,563,563,563,563,517,469,469,469,460,460,460,460,460,460,460,460,460,460,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,511,511,511,511,511,511,511,511,511,468,468,468,468,468,468,468,468,468,468,452,452,452,452,452,452,452,452,452,452,452,452,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,570,570,570,570,570,570,570,500,500,500,555,555,555,555,555,555,555,555,555,496,496,496,496,475,475,475,475,475,475,475,475,475,475,475,475,548,548,548,548,548,548,548,548,548,548,514,514,514,514,514,514,514,514,514,514,514,481,481,481,481,481,481,481,481,481,481,481,481,481,481,440,440,440,440,440,440,440,440,449,449,449,449,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,519,519,519,519,519,519,519,519,519,519,519,519,519,543,543,543,543,543,543,543,543,543,565,565,565,565,565,565,565,565,501,501,501,501,501,501,501,501,501,501,501,467,467,467,467,467,467,467,467,467,467,560,560,560,560,560,560,560,560,560,560,505,505,505,505,505,505,505,505,505,505,559,559,559,494,494,494,494,494,494,494,494,494,500,500,500,500,500,500,564,564,564,564,564,564,564,564,564,564,564,564,512,512,512,512,512,512,512,512,512,558,558,558,558,558,558,558,558,558,558,527,527,527,527,527,527,539,539,539,539,539,539,539,539,539,515,515,515,515,515,515,515,515,515,515,507,507,507,507,507,507,530,530,530,530,530,530,530,530,530,522,522,522,522,522,539,539,539,539,539,539,539,539,546,546,546,546,546,546,546,546,546,546,502,502,502,502,502,591,591,591,591,591,591,591,591,591,591,591,591,591,591,537,537,537,537,537,537,537,537,537,537,537,537,537,519,519,519,519,545,545,545,545,545,545,545,545,522,522,522,522,522,522,522,522,522,522,522,522,522,585,585,585,585,585,585,585,585,585,585,585,585,585,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,581,581,581,581,581,581,581,581,581,581,581,581,581,581,516,516,516,516,516,516,516,516,516,516,516,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,521,521,521,521,521,521,509,490,490,490,490,490,490,490,490,490,490,490,490,490,485,485,485,485,485,474,474,474,474,474,474,474,474,474,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,550,570,570,570,570,570,570,570,570,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,559,559,559,559,559,559,559,559,559,559,559,559,512,512,512,512,512,512,512,512,512,560,560,560,560,560,560,560,560,560,560,524,524,524,524,524,524,524,548,548,548,548,548,548,538,538,538,538,538,538,538,538,538,538,538,538,570,570,570,570,570,570,499,499,499,499,499,499,499,499,499,499,499,448,544,544,542,542,542,542,542,542,542,542,542,490,490,490,490,490,490,490,490,490,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,502,502,502,502,502,502,502,502,502,554,554,554,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,459,459,459,459,459,459,459,454,454,454,454,454,454,454,454,454,454,454,454,454,550,550,550,550,550,550,550,550,550,550,550,548,548,548,548,548,548,548,548,486,486,486,486,486,486,486,580,580,580,580,580,580,580,580,580,580,580,580,580,549,549,549,549,549,546,546,546,546,546,546,546,546,546,513,513,513,513,513,513,513,513,513,481,481,481,481,463,463,463,463,463,463,463,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,569,569,569,569,569,569,521,521,521,521,521,521,521,521,521,521,521,521,476,476,476,436,436,436,436,436,436,436,436,436,436,436,436,436,436,436,436,436,436,483,483,483,483,564,564,564,564,564,552,552,552,552,552,552,492,492,492,492,492,492,492,492,492,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,597,597,597,597,597,597,597,597,597,597,510,510,510,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,539,539,539,539,539,539,539,539,545,545,545,545,545,545,545,545,545,515,515,515,515,515,566,566,566,566,566,566,566,566,566,566,566,521,521,521,521,521,521,521,521,491,491,491,491,491,491,491,491,463,463,463,463,463,463,463,463,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,502,502,502,502,502,502,502,502,502,565,565,565,565,565,544,544,544,544,544,544,544,544,544,544,544,544,544,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,558,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,480,480,480,480,480,480,480,480,480,480,480,473,473,473,555,555,555,555,555,555,555,555,555,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,481,450,450,450,450,450,450,450,450,450,450,450,450,450,476,476,476,567,567,567,567,567,567,567,567,567,499,499,499,499,499,499,499,499,499,499,499,499,499,499,440,440,440,440,440,440,440,440,440,513,513,513,513,513,513,513,513,530,530,530,530,530,530,530,530,530,530,570,570,570,570,570,570,570,570,570,570,570,570,570,570,548,548,548,548,548,495,495,495,495,495,495,498,498,498,498,498,498,498,498,575,575,575,575,575,575,575,575,575,575,528,528,528,528,528,528,528,528,508,508,508,508,508,508,508,508,508,508,508,480,480,480,480,480,480,480,486,486,486,580,580,580,580,580,580,475,475,475,475,475,475,475,475,475,475,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,564,564,564,564,564,564,564,564,564,564,501,501,541,541,541,541,541,541,541,541,541,541,541,541,541,541,567,567,567,567,567,567,567,567,544,544,544,544,503,503,503,503,503,503,503,503,503,503,503,503,464,464,464,464,464,464,464,464,464,464,464,464,457,457,457,457,457,558,558,558,558,558,558,558,558,558,558,558,558,472,472,472,472,472,472,472,472,472,472,472,472,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,542,542,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,519,519,519,519,519,519,519,519,519,519,519,519,489,489,489,484,484,499,499,499,499,499,499,499,499,499,499,499,488,488,488,488,488,488,484,499,488,488,488,488,488,481,481,481,481,481,481,481,478,478,478,478,478,478,478,478,478,478,483,483,483,483,483,483,483,563,563,563,563,563,517,517,517,517,517,501,501,501,501,501,501,501,501,501,501,501,501,501,501,460,460,460,460,460,460,460,460,486,486,486,486,486,486,486,486,567,567,567,567,500,500,500,500,500,500,500,500,500,500,500,500,510,510,510,510,510,510,510,510,563,563,563,563,563,563,563,563,563,563,563,563,563,563,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,481,481,481,481,553,553,553,553,553,553,550,550,509,509,509,509,509,509,509,509,509,509,509,509,509,560,560,560,560,560,560,560,560,560,560,524,524,524,524,524,524,524,524,524,524,524,524,524,536,502,532,532,532,532,532,532,532,532,532,552,509,509,509,509,509,509,509,509,554,554,554,554,554,554,554,554,554,554,496,496,496,496,496,496,496,496,518,518,518,518,518,518,518,518,518,518,518,518,518,518,518,552,552,552,552,552,552,552,552,552,552,552,552,552,552,499,499,499,499,499,499,499,499,499,499,505,531,531,531,531,531,531,531,531,494,494,494,591,591,591,591,591,591,591,591,591,551,551,551,503,464,464,464,464,464,464,463,463,463,463,463,463,463,550,550,550,550,550,550,550,550,550,550,550,550,502,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,481,481,481,481,481,499,499,499,499,499,499,490,490,490,490,490,490,490,490,490,490,490,490,490,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,476,511,560,560,560,560,560,560,560,560,560,513,513,513,513,513,513,513,513,513,513,513,513,486,486,486,486,486,486,486,486,484,484,484,484,484,484,484,484,484,484,484,476,476,476,476,476,476,476,476,476,476,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,554,554,554,554,554,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,549,549,549,549,549,549,549,549,549,549,549,549,549,501,501,501,501,501,501,501,493,493,493,533,533,533,533,533,533,533,533,533,550,550,550,550,550,550,550,550,550,550,550,500,500,500,500,500,500,500,500,500,500,500,496,496,496,496,496,496,496,496,496,496,496,496,496,528,528,528,528,528,528,528,528,528,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,507,507,507,507,507,507,507,529,529,529,529,529,529,529,529,529,529,529,529,539,539,539,539,539,539,539,539,539,539,539,546,546,546,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,477,477,477,477,477,477,477,477,477,477,477,477,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,448,448,448,448,448,448,448,448,470,470,470,470,470,470,588,588,588,588,588,588,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,583,583,583,583,536,536,536,536,508,508,508,508,508,508,508,508,508,508,508,508,508,508,555,555,555,555,555,555,555,512,512,560,560,560,560,560,560,560,560,524,524,524,524,524,524,524,524,524,524,524,524,524,559,559,559,559,559,559,559,559,559,559,559,559,559,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,494,494,494,473,473,473,473,473,504,504,504,504,504,504,504,504,504,545,545,545,545,545,545,545,496,496,496,496,496,496,496,496,496,496,496,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,503,503,503,503,503,503,503,503,503,503,503,503,503,503,537,537,537,537,537,537,537,537,537,537,537,537,537,537,565,565,565,565,565,565,565,565,565,565,565,501,501,501,501,501,501,501,501,501,501,501,501,501,501,535,535,535,535,535,535,564,564,564,564,564,564,564,564,564,564,549,549,549,549,549,549,549,549,549,549,553,553,553,553,553,553,553,553,553,553,553,553,553,553,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,478,461,461,538,538,538,538,538,538,550,550,550,550,550,550,550,550,550,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,488,488,488,488,488,488,488,488,488,488,488,488,488,497,497,497,497,497,497,497,497,497,497,497,558,558,558,528,528,528,528,528,528,528,528,528,528,528,528,528,528,502,502,502,502,502,502,502,502,502,502,502,560,560,560,560,560,560,560,560,560,560,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,561,561,561,561,561,561,561,561,561,561,561,561,561,561,477,477,477,477,477,477,477,477,477,541,541,541,541,541,541,541,541,541,541,545,545,545,545,545,545,545,545,545,545,545,527,527,527,527,527,527,527,527,527,527,527,527,527,527,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,514,514,514,514,514,556,556,556,556,506,506,506,506,506,506,506,506,506,506,498,498,498,498,498,498,563,563,563,563,563,563,563,563,563,563,551,551,551,551,551,551,551,551,514,514,514,514,514,514,514,514,514,514,514,514,514,514,480,480,480,480,480,480,480,480,480,480,480,480,469,469,469,469,469,469,469,469,469,469,469,469,469,469,554,554,554,497,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,527,527,477,477,477,545,545,545,545,545,545,545,545,545,545,545,545,548,548,548,548,548,548,548,548,548,548,548,548,548,548,504,504,504,504,504,504,504,504,554,554,554,554,554,554,554,554,554,554,554,496,496,496,496,496,496,496,496,496,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,564,521,521,521,521,521,521,521,521,521,521,521,502,502,502,502,502,502,502,502,481,481,481,481,469,469,469,469,469,469,469,469,439,439,439,439,439,439,439,439,439,439,522,522,522,522,522,522,522,522,530,530,568,568,568,568,568,568,528,528,528,528,475,475,475,475,475,475,475,475,475,475,475,530,530,530,530,530,530,530,530,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,554,511,511,511,511,511,511,511,511,511,511,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,467,467,467,592,592,592,592,592,592,592,592,592,592,527,527,527,527,527,527,527,527,527,527,527,527,460,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,517,517,517,517,517,517,517,517,517,517,517,517,486,486,486,486,486,486,486,486,486,486,465,465,465,465,465,465,465,560,560,560,560,560,560,560,560,560,491,491,491,491,491,561,561,561,561,561,561,474,474,474,474,474,474,474,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,483,483,483,483,483,483,483,483,483,483,570,570,570,570,521,521,521,521,521,521,521,486,486,486,486,486,486,486,473,473,473,473,473,473,473,473,473,473,473,473,473,473,549,549,549,549,549,476,476,476,476,476,476,476,476,476,495,495,495,495,495,495,495,495,495,495,495,495,495,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,505,505,505,505,505,505,537,537,537,537,537,537,537,537,555,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,551,551,551,551,551,551,551,551,551,551,551,551,551,551,485,485,485,485,485,485,485,485,446,446,446,446,446,446,446,446,446,446,446,446,544,544,544,544,548,548,548,548,548,548,548,548,548,548,472,472,472,472,472,472,521,521,521,521,521,521,521,521,535,535,535,535,535,535,535,547,547,547,547,547,547,547,547,547,547,547,517,517,517,517,517,517,534,534,534,534,534,534,534,534,534,534,534,534,534,534,558,558,558,558,558,558,558,558,558,558,558,558,558,494,494,494,494,494,494,494,494,494,494,494,494,494,494,494,461,461,461,461,461,461,461,461,461,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,505,505,505,505,561,561,561,561,561,561,561,522,522,522,522,522,522,522,522,522,522,522,522,512,512,512,512,512,512,512,512,499,499,499,499,499,499,499,499,499,499,499,499,484,484,484,484,484,484,484,484,484,483,483,483,483,483,483,483,565,565,565,565,565,565,565,565,565,565,565,565,565,565,522,522,522,522,508,508,508,476,476,476,476,476,480,480,480,480,597,597,597,597,597,597,597,597,597,597,597,540,540,540,540,540,540,540,558,558,558,558,558,558,558,558,558,558,558,558,558,509,509,509,509,503,503,503,503,503,503,532,532,532,532,532,532,532,532,532,532,532,532,532,532,520,520,520,520,520,520,520,520,520,520,520,520,560,560,560,560,560,560,560,532,532,532,532,532,532,515,515,515,515,515,515,515,515,515,566,566,566,566,566,566,566,566,566,498,498,498,498,498,498,483,483,599,599,599,599,599,599,552,552,552,552,552,552,552,552,552,552,552,552,552,552,495,495,495,495,495,506,506,506,559,559,559,559,559,559,559,535,535,535,526,526,526,526,526,526,526,526,526,526,526,526,536,536,536,536,536,536,536,536,536,519,519,519,519,519,519,519,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,536,536,536,536,536,536,536,536,536,536,536,536,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,588,588,514,514,514,514,514,514,514,514,514,514,514,545,545,545,545,545,545,545,545,545,545,545,545,545,545,544,544,544,544,544,544,544,499,499,499,499,499,499,499,499,499,499,499,553,553,553,553,553,553,553,553,553,481,535,535,535,535,535,535,525,525,525,525,525,525,544,544,544,544,544,544,544,544,544,544,557,557,557,557,557,557,557,557,557,557,557,557,557,557,498,498,498,498,498,498,498,498,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,560,560,560,560,560,560,560,560,560,560,560,560,560,560,521,521,521,521,521,521,521,521,521,521,521,521,521,521,550,550,550,550,550,550,550,550,537,537,537,537,537,537,511,511,511,511,511,511,511,511,511,557,557,557,557,557,557,557,557,557,557,546,546,546,546,546,546,546,546,546,546,546,546,546,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,572,572,572,572,572,572,488,488,488,488,488,488,488,488,488,488,537,537,537,537,537,537,537,537,537,537,537,537,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,545,545,545,545,545,545,545,545,545,545,522,522,522,522,522,522,522,522,536,536,536,502,502,502,502,502,502,502,502,502,532,532,532,532,532,532,532,532,552,552,503,503,503,503,503,503,503,546,546,546,546,546,546,546,546,546,546,546,546,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,570,570,570,570,570,570,570,570,501,501,501,501,501,501,501,501,448,448,448,448,448,448,448,551,551,551,551,551,551,551,551,551,551,551,551,551,549,549,549,549,549,549,549,549,549,549,549,506,506,506,506,506,506,506,506,506,506,506,482,482,482,482,482,482,482,482,482,482,482,476,476,476,502,502,502,502,502,502,502,502,502,502,502,502,502,502,545,545,545,545,545,545,545,545,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,512,512,512,512,512,560,560,560,560,560,560,560,560,560,560,503,503,503,503,503,503,503,485,500,500,500,500,500,500,500,500,500,500,500,500,500,528,528,528,528,528,528,528,528,528,528,528,528,528,528,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,552,552,552,552,552,552,552,497,497,497,497,497,497,497,497,497,497,497,497,497,445,445,522,522,522,526,526,566,566,566,566,566,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,532,532,532,532,532,532,532,532,532,532,532,532,532,532,526,526,526,526,526,526,526,540,540,540,540,540,540,540,540,540,540,540,529,529,529,529,529,529,529,529,529,529,529,529,529,529,555,555,555,555,555,555,555,555,555,555,555,498,498,498,498,498,498,498,498,498,456,456,456,456,456,456,502,502,553,553,553,553,553,553,553,553,553,502,502,502,502,502,502,502,502,469,469,469,469,469,469,469,469,469,469,469,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,527,527,527,527,527,527,527,527,527,479,479,479,479,479,479,479,479,479,479,479,558,558,558,563,563,563,563,563,563,563,563,563,563,563,563,563,563,496,496,496,496,496,496,496,496,496,496,465,537,537,537,537,537,537,537,536,536,536,536,536,536,536,536,536,536,536,536,536,536,542,542,542,542,542,542,542,542,542,542,542,512,512,512,512,512,512,512,512,512,512,512,512,525,525,525,525,525,525,525,525,525,525,525,525,478,478,478,478,478,478,478,478,566,472,472,472,472,472,472,472,472,472,472,472,517,517,517,517,517,517,517,517,529,529,529,529,529,529,529,529,529,529,529,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,501,501,501,501,501,501,501,501,501,501,501,540,540,540,540,540,540,540,565,565,565,565,565,522,554,554,554,554,554,554,521,521,521,521,521,521,521,521,521,521,521,521,527,527,499,499,499,499,499,499,499,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,494,494,494,494,494,494,494,494,494,494,494,494,494,494,547,547,547,547,547,522,522,522,522,522,522,522,522,522,522,553,553,553,553,553,510,510,510,510,510,510,487,487,487,487,487,487,487,506,506,506,506,506,506,506,506,506,506,506,535,535,535,474,474,474,474,474,474,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,563,563,521,521,521,521,521,521,521,577,577,577,577,534,534,534,534,517,517,517,517,517,517,517,517,517,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,516,516,516,516,516,516,516,516,478,478,478,478,478,478,478,458,458,458,458,458,458,544,544,544,544,544,544,544,544,569,549,550,550,550,550,550,550,550,550,550,550,521,521,521,521,521,521,521,521,521,521,505,490,490,490,490,490,490,490,490,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,476,476,476,476,476,476,476,511,511,511,511,511,511,511,511,511,511,511,511,511,556,556,556,556,556,556,485,485,485,485,485,485,485,485,485,439,439,439,533,533,533,533,533,533,533,533,533,533,533,533,533,564,564,564,564,564,564,564,564,564,549,549,549,549,549,549,549,549,549,550,550,550,521,521,521,521,521,521,521,521,521,521,521,521,521,521,505,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,461,461,461,461,461,461,461,461,459,459,459,459,459,459,532,532,532,532,532,532,532,532,532,532,532,534,534,534,534,534,565,565,565,565,565,565,565,565,565,565,565,508,508,508,508,508,508,508,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,506,506,506,506,506,506,506,506,498,498,498,498,498,498,498,498,498,498,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,563,563,563,563,563,563,563,563,521,521,521,521,521,521,521,583,583,583,583,583,583,583,583,583,583,583,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,479,479,479,479,479,556,556,556,556,556,556,560,560,560,560,560,560,560,560,560,560,560,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,487,487,487,487,487,487,487,487,487,487,483,483,483,483,483,483,483,483,483,483,483,483,483,483,452,452,452,452,452,452,452,486,573,573,573,502,502,502,502,502,502,502,500,500,500,500,569,569,569,569,569,569,569,514,514,514,514,459,476,476,476,476,476,476,476,476,567,567,567,567,567,502,502,502,502,502,502,502,502,502,502,502,502,475,475,475,475,549,549,549,549,549,549,549,549,549,516,516,516,516,516,516,516,516,516,516,485,485,485,485,485,485,485,485,461,461,461,461,461,461,461,461,461,461,461,482,482,482,482,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,511,511,511,561,561,561,561,561,561,561,561,561,561,561,561,561,522,522,522,512,512,512,512,512,512,512,512,501,501,501,501,501,501,501,501,501,501,501,501,493,493,493,493,493,493,493,493,493,493,493,493,472,472,472,472,472,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,513,513,513,513,513,513,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,522,522,522,522,522,522,522,522,522,522,522,522,522,535,535,535,535,535,535,535,535,535,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,525,525,525,525,525,525,525,525,525,525,539,539,539,539,539,539,515,515,507,507,507,507,507,507,507,507,507,507,507,507,507,507,530,530,530,530,530,530,530,530,530,522,522,522,522,522,522,522,522,522,522,522,522,521,544,544,544,544,544,556,556,556,556,556,556,556,556,556,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,492,492,492,492,492,492,492,492,492,492,492,492,492,492,504,504,504,504,504,504,504,504,504,504,536,536,536,536,536,536,536,536,536,536,536,536,514,514,514,514,514,514,514,514,531,531,531,554,554,554,554,554,554,554,554,554,554,554,554,554,554,495,495,495,495,580,505,505,505,505,505,505,505,505,505,505,505,505,505,529,529,529,529,529,529,529,529,529,530,530,530,530,530,530,530,540,540,540,540,540,540,540,511,511,511,511,511,511,537,537,537,537,537,537,537,516,588,588,588,588,588,588,588,538,538,538,538,538,538,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,589,589,589,589,589,589,589,589,589,589,589,534,534,534,534,534,534,559,559,559,559,559,559,559,559,559,559,559,559,559,559,532,532,532,532,532,532,532,532,532,532,532,551,551,551,551,551,488,488,488,488,488,465,465,465,560,560,505,505,505,505,505,505,505,505,505,505,505,505,505,505,554,554,554,554,554,554,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,563,563,563,563,563,563,563,563,563,530,530,530,530,530,530,530,530,477,477,530,530,530,530,530,530,550,550,550,550,550,550,559,559,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,500,500,554,554,554,554,554,554,554,554,554,554,554,554,554,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,535,535,535,535,535,535,535,535,535,535,535,535,535,535,555,555,555,555,555,555,555,555,555,555,555,555,479,479,479,479,479,479,479,479,479,490,490,490,553,553,553,553,553,553,553,553,553,553,553,547,547,547,547,547,547,547,547,547,547,547,540,540,540,540,540,540,540,540,540,540,540,540,540,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,461,461,461,461,461,461,461,471,471,471,554,554,554,554,554,554,554,554,512,512,512,486,486,486,486,469,469,469,469,560,560,560,560,560,560,560,560,560,560,560,493,493,493,493,445,445,445,445,445,445,445,445,445,445,445,445,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,544,544,544,544,544,512,512,563,563,563,563,563,563,563,563,563,563,563,520,520,520,520,520,520,520,520,520,520,573,573,573,573,573,573,573,573,573,573,573,573,573,573,500,500,500,500,500,500,468,468,468,468,468,468,468,468,468,468,468,468,468,468,554,548,548,548,548,489,489,489,489,489,489,489,489,489,489,489,579,579,579,579,579,579,579,579,579,579,579,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,560,560,560,560,560,560,560,560,560,481,481,481,481,481,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,544,544,544,497,497,497,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,528,528,528,528,528,528,528,528,513,513,513,513,513,513,513,513,513,513,507,507,507,507,507,507,507,507,507,507,507,507,507,507,530,530,530,530,530,530,530,517,517,517,517,517,517,530,530,530,530,530,530,530,530,530,530,563,563,563,563,563,563,521,521,521,521,521,521,521,521,587,587,587,587,587,587,587,587,587,587,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,521,521,521,521,521,521,521,521,521,521,521,521,498,498,498,498,498,498,498,487,487,487,487,487,487,491,491,491,491,491,491,491,491,491,491,491,491,491,506,506,506,506,522,522,522,522,522,530,530,530,530,530,562,562,562,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,501,501,501,501,501,501,501,501,501,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,509,509,509,509,509,509,505,505,505,505,505,535,535,535,535,535,535,535,535,535,535,474,474,474,474,474,524,524,524,524,524,524,524,524,524,524,535,535,535,535,535,535,535,569,569,569,569,543,543,543,543,543,543,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,479,479,479,479,479,559,495,495,495,495,495,495,495,495,464,464,464,464,464,464,551,551,551,551,551,551,551,551,551,513,513,513,513,550,550,550,550,550,550,530,530,530,530,530,530,530,530,530,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,561,561,561,561,561,561,561,561,561,561,561,561,561,544,544,544,544,544,544,544,544,544,544,544,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,547,547,547,547,547,547,547,547,503,503,503,503,503,503,534,534,534,534,522,522,522,522,522,522,522,521,521,542,542,542,542,542,542,542,542,542,542,542,542,542,552,552,552,552,552,552,552,552,552,552,552,552,501,501,501,501,501,501,501,501,501,483,483,483,483,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,510,510,510,510,510,510,510,510,510,510,510,510,510,471,471,471,471,471,471,471,470,470,470,470,470,470,470,470,470,470,470,542,542,542,513,513,513,513,513,513,568,568,568,568,568,500,500,500,500,500,500,500,500,500,500,500,500,500,500,510,510,510,510,510,510,510,510,510,510,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,535,535,535,535,535,531,531,531,548,548,548,548,548,548,548,499,499,499,499,499,499,499,506,506,506,506,506,506,506,548,548,548,548,548,548,548,484,484,484,484,484,484,484,484,484,484,484,484,484,447,447,447,447,447,447,447,447,447,447,557,557,557,557,557,557,559,559,559,559,559,559,559,559,559,559,526,526,526,526,526,526,526,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,509,509,509,509,509,509,509,509,509,509,509,509,540,540,540,540,540,540,540,540,540,540,540,540,540,540,519,519,551,551,551,551,551,551,551,551,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,525,525,525,588,588,588,588,588,588,588,588,588,588,588,588,588,588,588,514,514,514,514,514,514,514,514,514,551,549,549,549,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,458,458,458,458,458,458,458,458,458,458,458,512,512,512,512,512,512,512,512,512,512,512,559,559,559,559,559,559,559,559,559,499,499,513,513,513,513,513,539,539,539,539,539,539,539,539,539,539,539,539,539,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,587,587,587,587,587,587,537,537,537,537,537,537,537,517,517,517,517,517,517,517,553,553,553,553,553,553,553,547,547,547,547,547,547,536,536,536,536,536,536,520,520,520,541,541,541,541,541,541,541,541,541,559,559,559,559,559,559,517,517,517,517,517,517,517,517,517,517,517,563,563,563,563,563,563,563,563,563,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,561,561,561,561,561,561,561,561,561,561,561,561,561,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,464,464,464,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,503,503,503,503,503,531,531,531,531,531,531,531,493,493,493,590,590,590,590,590,590,590,590,590,590,510,510,510,510,510,510,510,510,524,524,524,524,524,524,524,524,524,524,524,524,524,524,530,530,530,530,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,505,505,505,505,505,505,505,531,531,531,531,531,531,531,531,531,531,531,531,544,544,544,544,544,556,556,556,556,556,556,556,556,556,556,556,556,556,556,521,521,521,521,521,509,509,490,490,490,490,490,490,490,490,490,487,487,487,487,493,493,493,493,493,482,482,482,482,482,473,473,473,473,473,473,473,473,473,473,473,473,473,556,556,556,556,556,556,556,556,556,556,556,556,473,473,470,470,470,470,470,470,570,570,570,570,570,570,570,570,570,570,570,570,570,498,498,498,498,498,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,548,548,548,548,548,548,494,494,494,494,494,494,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,573,573,573,573,573,573,573,573,573,573,573,573,498,498,498,498,498,498,498,498,579,579,579,579,579,579,579,579,532,532,516,516,516,516,516,516,516,516,516,516,516,516,546,565,565,565,565,565,565,565,565,565,565,504,504,504,504,504,504,504,504,504,521,521,521,521,521,521,521,521,521,564,564,564,564,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,502,502,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,469,469,469,469,469,469,469,469,469,469,464,554,554,554,554,497,497,497,497,497,497,497,497,497,497,499,499,499,545,545,545,545,545,545,545,545,545,545,545,510,510,510,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,458,475,475,595,595,595,595,595,595,595,595,534,534,534,534,534,534,534,534,534,534,534,534,534,560,560,560,560,560,560,560,505,505,505,505,505,505,505,505,505,505,505,440,440,440,440,470,470,470,470,470,470,470,470,470,470,470,470,564,564,564,564,564,564,564,564,507,507,507,507,507,507,507,507,481,481,481,481,481,481,481,481,492,492,492,492,492,492,492,492,492,492,492,458,458,458,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,545,546,546,546,546,546,546,546,512,512,512,512,512,553,553,553,553,553,553,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,481,481,481,558,558,558,558,558,558,558,558,558,558,558,563,563,563,563,563,563,563,497,497,497,490,490,490,490,490,490,573,573,573,498,498,498,498,498,498,498,498,498,498,498,585,585,585,585,585,585,585,585,585,548,548,495,495,495,495,495,495,495,495,495,494,494,494,494,494,494,494,494,494,494,494,494,494,564,564,564,564,564,564,564,520,520,520,520,520,520,520,520,520,575,575,575,575,575,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,504,504,504,504,504,504,504,484,484,484,484,484,483,483,483,483,483,483,483,483,483,558,558,558,558,558,558,558,558,558,496,496,496,496,496,521,521,521,521,521,521,521,521,521,521,521,521,521,521,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,515,515,515,515,515,515,515,479,479,479,479,479,479,479,479,479,479,479,479,443,443,443,443,443,443,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,515,515,515,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,554,554,554,554,554,554,554,554,554,502,552,552,552,552,552,552,552,552,552,552,552,552,552,552,500,500,500,500,500,500,500,500,500,500,487,487,487,487,487,487,487,487,487,487,487,487,487,487,483,483,483,483,483,483,483,483,483,483,483,483,483,483,463,463,463,463,463,463,463,463,463,463,452,452,452,452,452,497,497,497,497,497,497,497,497,497,497,515,515,515,555,555,555,555,555,555,555,555,555,555,555,554,554,554,554,554,554,554,554,554,554,554,554,554,497,497,497,497,497,497,497,445,445,445,445,445,445,445,445,445,445,445,445,522,522,522,522,522,522,522,522,522,522,529,529,529,529,529,529,565,501,501,501,501,501,535,535,535,535,535,535,535,535,535,535,535,535,535,564,564,564,564,564,564,564,564,547,547,547,547,547,547,547,547,547,547,546,546,546,546,546,546,546,510,510,510,510,510,510,510,510,510,510,510,510,477,477,477,477,477,477,477,477,477,477,469,469,469,469,469,469,469,469,442,442,442,442,544,544,544,544,544,544,544,544,548,548,548,548,548,548,548,548,548,548,548,548,548,548,474,474,474,474,474,474,474,538,538,538,538,538,538,538,538,538,543,543,543,543,543,543,543,543,543,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,554,554,554,554,496,496,496,496,496,496,496,496,496,504,504,504,504,504,504,504,504,504,504,504,507,507,507,507,540,540,540,540,540,540,540,540,540,540,540,540,565,565,565,565,565,565,565,565,565,565,501,501,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,570,570,570,570,570,570,546,546,546,546,546,498,498,498,498,498,498,498,498,498,498,510,510,510,510,510,510,510,510,545,545,545,545,545,545,545,545,545,532,532,532,532,532,532,532,532,560,560,560,560,560,560,560,560,560,560,560,514,514,514,514,514,514,514,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,491,491,491,491,491,491,491,491,491,506,506,506,506,506,506,506,506,506,527,527,527,527,527,527,539,539,539,539,539,539,539,539,539,539,539,545,545,545,545,545,545,475,475,475,475,475,475,475,475,475,475,448,448,448,448,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,519,519,519,519,519,519,519,519,519,519,530,530,530,565,565,565,565,565,565,565,565,509,509,509,509,509,509,509,509,509,509,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,548,548,548,548,548,548,548,548,548,548,548,548,548,502,502,502,502,502,502,502,502,502,502,502,502,502,594,594,594,594,594,594,594,594,594,532,532,532,532,493,493,493,493,590,590,590,590,590,590,590,513,513,513,513,513,513,513,513,545,545,549,549,549,549,549,472,472,472,472,472,472,472,472,521,521,521,521,521,521,515,515,515,515,515,515,515,515,515,515,515,515,530,563,563,563,563,563,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,581,581,581,581,581,581,581,581,581,581,581,581,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,560,560,560,560,560,560,560,560,475,475,475,475,475,475,475,475,475,475,475,534,534,534,534,534,534,534,534,569,569,569,569,569,569,569,569,569,569,569,569,546,546,546,496,496,496,496,496,496,496,496,496,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,542,542,542,542,542,542,542,542,542,542,542,542,542,542,559,559,559,559,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,479,479,479,479,479,492,492,492,492,492,492,492,492,492,492,492,492,492,492,466,466,466,466,466,466,466,466,438,438,438,438,438,438,438,438,520,520,520,520,520,520,520,520,520,520,520,535,535,535,535,535,535,535,535,547,547,547,547,547,547,547,547,547,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,507,507,507,507,507,507,507,524,530,530,530,530,530,530,569,569,569,569,569,569,569,569,569,569,543,543,543,543,543,543,543,543,543,485,485,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,551,551,551,551,551,551,551,551,551,551,544,544,544,544,544,544,516,516,516,516,516,516,516,516,516,516,516,516,516,516,575,575,575,523,523,523,523,523,523,523,523,523,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,489,489,489,489,489,489,489,489,489,489,562,562,562,562,562,562,503,503,503,503,503,503,503,503,503,503,503,503,503,485,485,485,485,485,485,485,485,485,485,485,485,485,485,485,504,504,504,504,504,504,504,504,504,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,500,500,500,504,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,536,536,536,563,563,563,563,563,563,563,563,532,532,532,532,532,532,532,532,532,532,532,532,532,519,519,519,519,519,519,588,588,588,588,588,588,588,588,588,588,588,588,511,511,511,511,511,511,511,531,531,531,531,531,531,531,531,531,531,531,531,541,541,541,541,541,541,551,551,551,551,551,551,551,551,551,551,551,551,519,519,519,519,519,519,519,519,519,491,491,491,491,491,491,491,491,491,491,491,491,491,465,465,465,465,465,465,449,449,449,449,449,449,449,449,475,475,475,475,475,593,593,593,593,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,585,585,585,585,585,546,546,546,546,546,546,546,546,496,496,496,496,496,496,496,496,496,496,504,504,504,504,542,542,542,542,542,542,467,467,467,467,467,467,469,591,591,591,591,591,591,591,591,591,591,591,510,510,510,510,510,510,510,530,530,530,530,530,530,530,530,521,533,533,533,533,533,533,533,533,548,548,548,548,548,548,468,468,468,468,468,468,468,468,468,468,468,468,468,534,534,534,534,534,534,569,569,546,546,546,546,546,546,546,546,546,496,496,496,496,496,496,496,496,496,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,513,540,540,540,540,544,544,544,506,506,506,506,506,506,506,506,506,501,527,527,527,527,527,527,527,527,527,527,527,527,527,517,517,517,517,517,517,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,532,532,532,532,532,532,532,532,532,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,524,524,581,581,581,581,581,581,581,581,507,507,507,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,567,567,567,567,567,567,567,567,567,567,567,567,567,528,528,528,528,528,528,528,528,528,528,475,524,524,524,524,524,524,524,524,524,530,530,530,530,530,530,530,530,530,530,530,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,549,549,549,549,549,553,553,553,553,553,553,553,525,525,525,525,525,525,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,506,506,506,506,506,506,506,506,506,506,498,498,498,498,498,487,487,487,487,487,487,487,487,487,487,491,491,491,491,491,491,491,491,491,491,491,509,509,509,509,509,509,509,509,509,509,509,509,509,509,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,506,506,506,506,506,506,506,506,506,506,506,482,482,482,482,482,482,482,482,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,513,513,513,513,513,513,513,564,564,515,515,515,479,479,479,479,479,479,479,479,479,443,443,443,443,443,443,443,526,526,526,526,526,526,526,526,526,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,544,544,544,544,544,544,544,544,544,544,490,490,490,490,490,490,490,490,490,490,581,581,581,581,581,530,530,530,530,530,530,530,530,530,510,510,510,510,510,510,510,510,560,560,560,560,560,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,487,483,483,483,483,483,450,450,453,453,453,453,453,453,453,453,453,453,453,534,534,534,534,534,534,534,534,524,524,524,524,524,524,524,524,521,521,521,521,521,521,521,521,521,521,539,539,539,539,539,539,539,539,539,539,539,539,546,546,546,546,546,546,546,546,546,502,502,502,502,502,502,502,502,502,502,502,598,598,598,598,558,558,558,558,558,558,558,558,558,558,558,558,558,558,521,521,521,521,521,521,521,521,521,521,521,521,521,521,504,504,504,504,504,504,504,504,504,504,504,504,504,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,461,461,461,461,461,461,461,461,461,461,461,502,502,502,548,548,548,548,498,498,498,498,498,498,493,493,493,493,493,493,493,493,493,493,493,493,493,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,565,565,565,565,565,521,521,521,521,521,521,488,488,488,488,488,488,488,488,480,480,480,480,480,480,480,480,480,560,560,560,560,560,560,503,503,503,503,503,503,503,503,503,503,503,503,503,503,461,461,461,461,461,461,461,461,461,461,461,461,461,461,503,503,503,503,503,503,503,503,503,503,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,476,476,476,529,529,529,529,529,529,539,539,539,539,539,539,539,539,539,539,539,539,539,539,544,544,544,544,544,544,544,487,487,487,487,487,487,487,487,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,519,519,519,519,519,519,519,519,519,519,519,519,519,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,495,495,495,495,495,495,495,463,463,463,463,463,463,463,463,463,463,463,463,510,510,510,510,510,510,510,510,510,556,556,556,556,556,556,492,492,492,492,492,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,554,554,554,554,554,554,554,554,554,499,499,499,499,499,499,499,499,499,499,499,499,499,499,594,594,594,594,594,594,594,594,594,594,594,594,594,594,594,535,535,535,535,535,535,535,535,535,559,559,559,559,559,559,559,559,559,559,559,529,529,529,529,529,529,529,540,540,540,540,540,532,532,532,532,532,532,532,532,563,563,563,563,563,563,563,563,563,563,563,563,563,516,516,516,516,516,516,516,516,516,516,516,516,516,516,481,481,481,481,481,481,481,481,496,496,496,496,496,496,496,496,496,496,496,496,496,496,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,581,581,581,581,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,557,557,557,557,557,557,557,557,557,557,560,560,560,560,560,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,509,509,509,509,509,509,509,509,509,509,509,509,509,509,503,503,503,503,503,503,503,503,503,483,483,483,483,483,483,483,483,461,461,461,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,570,570,570,570,570,570,506,506,506,506,506,506,506,506,506,506,506,506,506,506,546,546,546,546,546,546,510,510,510,510,510,510,510,510,566,566,566,566,566,518,518,518,518,518,518,518,518,518,518,518,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,452,452,452,452,452,452,452,452,452,452,452,452,452,452,450,450,450,450,577,577,577,577,577,577,577,577,577,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,497,497,497,497,497,497,497,497,497,503,503,503,503,503,503,503,503,503,532,532,532,532,532,532,532,520,520,520,520,520,520,520,520,564,564,564,564,564,564,564,564,564,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,525,525,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,492,492,492,492,492,492,492,560,560,560,560,560,560,560,560,560,560,560,560,560,525,525,525,525,525,525,525,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,544,544,544,544,544,544,544,544,544,498,498,498,498,498,498,498,498,498,498,498,498,498,498,492,492,492,492,492,492,492,492,492,492,537,537,537,537,551,551,551,551,480,480,480,483,483,483,483,483,483,483,483,483,483,483,483,483,573,573,573,573,573,573,573,573,573,573,573,573,573,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,574,574,574,574,574,574,574,574,574,574,574,574,574,574,574,574,574,574,501,501,501,501,501,501,501,501,501,501,493,493,493,493,493,493,493,493,493,569,569,569,569,569,569,569,569,569,569,569,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,458,458,458,458,458,458,458,458,458,544,544,544,544,544,544,544,544,544,544,544,544,522,522,522,522,522,553,512,512,512,512,512,512,512,512,512,512,512,483,483,483,483,483,483,483,483,483,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,560,516,516,484,484,484,484,462,497,507,507,507,507,507,507,507,507,507,507,507,507,507,541,541,541,541,541,541,541,541,541,541,541,541,541,565,565,565,565,565,565,565,565,565,565,565,565,565,565,526,526,526,526,526,526,526,526,526,526,474,474,474,474,474,474,474,474,474,474,474,556,556,507,507,507,507,507,507,507,507,507,507,532,532,532,532,532,532,532,532,551,551,551,551,551,551,551,478,478,478,478,478,478,478,478,478,478,452,452,452,452,452,452,452,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,565,565,565,565,565,565,565,565,565,565,565,565,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,508,508,508,508,508,508,479,461,461,461,536,536,536,536,536,536,536,519,519,519,519,519,519,519,519,530,530,530,530,530,530,530,530,530,530,530,530,530,568,568,568,568,568,568,568,568,568,530,530,530,530,530,530,512,512,512,512,512,512,512,512,512,565,565,565,565,519,519,519,519,519,519,519,519,519,492,504,536,536,536,536,536,536,536,536,536,536,536,536,536,510,510,510,510,510,510,510,510,510,510,510,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,581,581,581,581,581,581,581,581,516,516,516,516,516,516,516,516,516,516,516,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,521,521,521,521,521,521,521,521,521,521,521,509,509,509,509,509,509,509,509,509,509,509,509,509,488,488,488,488,488,488,488,488,488,488,488,488,488,488,481,481,481,481,481,481,481,481,481,481,481,476,476,476,446,551,551,551,551,551,551,551,551,549,549,549,549,549,549,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,455,455,455,455,455,482,482,482,482,482,482,482,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,497,497,497,497,497,497,580,580,580,580,580,580,580,580,580,580,502,541,541,541,541,541,541,541,541,541,541,565,565,565,565,565,565,531,531,531,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,547,547,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,534,534,534,534,534,534,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,548,548,548,548,548,548,548,548,477,477,477,477,477,477,477,477,477,551,551,551,551,551,551,551,551,553,553,553,553,501,518,518,518,518,518,518,518,518,518,518,518,518,542,542,542,542,542,542,476,476,476,476,476,529,529,529,529,529,529,529,529,529,529,529,529,542,542,542,542,542,542,542,542,542,542,542,542,542,547,547,504,504,504,504,504,504,504,504,504,504,504,461,461,461,461,461,461,461,461,486,486,486,486,486,486,486,486,486,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,528,528,528,528,528,528,528,528,528,528,528,528,528,528,477,477,507,507,507,507,507,507,507,507,507,507,555,555,555,555,555,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,513,541,541,541,541,541,541,541,541,541,541,541,541,509,509,509,509,558,558,558,558,558,558,558,558,558,558,558,558,558,507,507,507,507,507,507,507,507,507,507,481,481,481,481,481,481,481,481,481,481,481,481,489,489,489,461,461,461,461,461,461,461,461,461,461,461,461,502,502,502,502,502,502,502,502,551,551,551,551,488,488,488,488,488,488,465,465,465,465,465,568,568,568,568,568,568,568,568,568,568,568,568,568,472,472,472,472,472,472,472,472,472,472,472,524,524,524,524,524,524,524,524,524,524,524,542,542,542,549,549,549,549,549,549,505,505,505,505,505,505,505,505,505,505,505,505,505,505,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,558,558,558,558,558,558,558,558,558,558,558,558,558,558,518,518,495,495,495,495,495,495,495,495,495,495,495,495,495,495,458,458,458,458,458,458,458,458,458,458,458,458,458,458,454,454,454,454,454,454,454,454,454,454,454,454,454,454,550,550,550,550,550,550,550,550,550,550,550,548,548,548,548,548,548,548,548,548,548,548,490,490,490,554,554,554,554,554,554,554,554,554,554,554,554,554,486,486,486,486,486,486,486,486,486,579,579,579,579,579,579,579,579,579,579,579,579,579,541,541,541,541,541,526,526,526,526,526,526,526,502,502,502,502,502,502,502,502,502,512,512,512,512,512,554,554,554,554,554,554,554,554,554,554,554,554,554,554,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,507,507,507,507,507,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,509,509,509,509,509,509,509,509,509,509,509,509,509,509,545,545,545,545,545,545,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,555,555,555,555,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,503,503,503,503,503,503,503,503,540,540,540,540,540,540,540,540,540,540,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,526,526,526,526,526,526,526,526,555,555,555,555,555,555,555,555,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,520,520,520,520,520,520,520,520,520,520,553,553,553,553,553,553,553,553,553,553,553,553,553,553,547,547,547,547,547,547,547,547,547,547,547,547,547,536,536,536,536,536,536,536,536,516,516,516,516,516,516,516,516,507,507,507,507,507,507,507,507,507,507,507,507,531,531,531,531,531,531,531,531,531,531,544,544,544,544,544,544,544,544,544,544,544,556,556,556,556,517,517,517,517,517,486,486,486,486,486,486,486,486,486,486,486,469,469,469,469,469,469,469,469,560,560,560,560,560,490,490,490,490,490,490,490,490,453,575,575,575,575,575,575,575,575,546,546,546,546,546,546,546,546,546,527,527,527,527,527,527,527,527,481,481,481,481,481,556,556,556,556,556,556,559,559,559,559,559,559,501,501,483,483,483,483,483,483,483,483,483,483,483,553,553,553,553,553,553,553,553,553,553,501,501,495,495,495,495,539,539,539,539,539,539,539,539,539,539,539,539,539,539,554,554,554,554,554,554,554,554,554,554,509,509,509,509,509,509,509,509,509,509,509,509,509,565,565,565,565,565,565,511,511,511,511,511,511,511,511,511,559,559,559,559,559,559,559,491,491,491,491,491,491,491,491,491,491,491,483,483,483,483,483,483,483,483,483,483,483,483,483,483,596,596,596,596,596,532,532,532,532,532,532,494,494,494,591,591,591,591,591,591,554,554,554,554,554,554,502,502,502,502,502,502,502,502,502,502,502,502,454,454,454,449,449,449,449,449,449,449,449,449,449,546,546,546,546,546,546,574,574,574,574,574,574,574,574,574,574,574,574,574,546,546,546,496,496,496,496,496,496,496,496,496,499,499,499,499,499,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,540,540,540,540,540,540,540,540,540,542,542,542,542,542,542,542,542,542,542,542,542,517,517,527,527,527,527,527,527,527,527,527,527,527,527,527,527,502,502,502,502,502,502,553,553,553,553,553,553,553,553,553,505,505,505,505,505,505,505,505,505,498,498,498,498,498,498,498,527,527,527,527,527,527,527,527,527,527,527,527,477,477,477,477,477,545,545,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,477,549,549,549,549,549,549,549,553,553,553,553,553,553,553,553,553,553,553,553,553,501,501,501,501,501,501,501,501,501,501,483,483,483,483,483,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,547,547,547,547,547,547,547,547,547,547,547,547,508,508,508,508,508,557,557,557,557,557,557,557,557,557,557,557,557,551,551,551,551,551,551,551,551,485,485,485,485,485,485,537,537,537,537,537,537,537,537,537,537,537,550,550,550,550,550,550,550,550,550,550,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,518,518,518,518,518,518,498,498,498,498,498,498,470,470,470,470,470,470,470,470,470,481,481,481,481,481,481,481,481,481,481,511,511,511,511,511,511,511,511,578,578,578,578,578,578,578,578,578,540,540,540,540,540,540,540,540,540,540,540,540,540,521,521,521,521,521,521,521,521,521,521,521,521,521,521,560,560,560,525,525,525,525,525,525,525,525,525,525,525,525,525,525,547,547,547,547,547,497,497,497,497,497,497,497,497,497,497,510,510,510,510,510,510,510,510,510,540,540,540,521,521,521,521,545,545,545,545,545,545,545,545,545,545,545,545,545,518,518,518,518,518,518,588,588,588,588,588,588,588,588,588,588,588,588,588,588,588,538,538,538,516,516,516,516,516,516,516,516,516,516,516,516,589,589,589,589,589,589,589,589,589,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,528,528,528,528,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,479,479,479,479,479,479,479,479,479,479,479,524,524,524,524,545,545,545,545,545,545,556,556,556,556,556,556,556,556,556,556,556,556,518,518,518,518,518,518,518,518,518,518,501,501,501,501,501,501,501,501,501,501,501,468,468,468,468,468,468,468,468,468,468,474,474,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,514,514,514,514,514,514,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,487,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,542,542,542,542,542,542,542,542,542,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,497,487,487,487,487,487,487,521,521,521,550,550,550,550,550,550,550,550,550,550,521,521,521,521,521,521,521,521,521,521,528,528,528,528,528,528,528,528,528,479,479,479,479,479,479,479,479,479,479,558,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,501,501,501,521,521,521,521,521,521,521,521,521,521,521,521,521,521,559,559,559,559,559,559,559,559,497,497,497,497,497,497,497,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,559,559,559,559,559,559,534,534,534,534,534,534,534,534,518,518,518,518,518,518,531,531,531,531,531,531,531,531,531,531,531,531,531,531,559,559,559,559,559,559,559,559,559,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,542,542,542,542,542,542,542,542,542,542,542,542,542,542,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,440,440,440,517,517,517,517,517,517,517,517,517,517,521,521,521,521,521,535,535,535,535,535,544,521,521,521,521,521,521,521,521,521,521,521,545,545,545,545,545,545,545,545,545,504,504,504,504,504,504,504,504,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,522,521,521,521,521,542,542,542,542,542,542,542,542,542,542,542,542,542,542,549,549,549,549,549,549,549,549,505,505,491,491,491,491,491,491,491,491,491,491,503,503,503,503,503,503,503,503,537,537,537,537,537,537,537,537,537,537,537,537,565,565,565,501,501,501,501,501,501,501,535,535,535,535,535,535,535,535,535,535,535,535,564,564,564,564,564,564,564,564,564,564,564,543,543,543,543,543,543,543,543,543,543,543,543,543,532,532,532,532,532,532,532,532,532,532,532,533,533,533,533,533,533,533,533,533,559,559,559,559,559,559,559,559,559,559,495,495,495,495,495,495,495,495,495,495,486,486,486,486,486,486,486,486,486,486,486,486,486,573,573,573,573,573,573,573,573,573,573,497,497,497,579,579,579,579,579,579,579,579,579,579,579,579,579,579,579,579,579,579,523,523,523,523,523,523,523,523,523,523,523,523,554,554,521,521,521,521,521,521,521,521,521,528,528,474,474,474,474,529,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,521,521,521,521,521,521,521,521,521,521,521,521,544,544,544,544,544,544,557,557,557,557,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,490,490,490,490,490,490,490,490,490,490,490,570,570,570,570,570,570,570,570,570,570,570,570,506,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,505,505,505,505,505,505,505,505,505,558,558,558,558,558,558,558,558,558,558,558,558,529,529,529,529,529,529,529,537,537,537,537,479,479,479,479,479,479,479,479,479,479,479,479,479,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,548,548,548,548,548,548,548,548,548,490,490,490,490,490,490,583,583,583,583,583,583,583,583,544,544,544,544,544,490,490,490,490,481,481,481,481,481,481,481,481,481,481,481,481,563,563,563,563,563,563,563,563,512,512,512,512,512,512,512,512,485,485,485,485,485,485,485,485,485,485,443,443,443,443,443,443,443,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,521,521,521,544,544,544,544,544,544,544,544,544,544,559,559,559,559,520,520,520,520,520,520,520,520,520,520,520,486,498,498,498,498,498,498,498,498,498,498,498,498,498,498,568,500,500,510,510,510,510,510,510,510,510,510,559,559,559,559,559,559,559,559,559,559,559,534,534,534,534,534,534,534,520,520,520,520,520,520,546,546,546,546,546,546,546,546,546,572,572,572,572,572,572,572,572,572,572,572,529,529,529,529,529,529,529,529,529,529,529,529,529,529,507,507,507,507,507,507,507,507,482,482,482,482,482,482,482,482,482,482,482,482,482,482,502,502,502,502,502,502,502,502,502,502,502,502,545,545,545,545,545,545,545,545,564,564,488,488,488,488,488,488,547,547,547,547,547,547,547,547,547,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,532,532,532,532,532,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,541,541,541,541,541,541,541,541,541,541,541,570,570,570,570,570,570,570,570,570,570,570,570,548,548,548,548,548,548,548,548,548,548,548,548,548,495,495,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,496,571,571,571,571,571,571,571,571,571,571,571,571,571,571,571,571,571,497,497,497,497,497,497,497,497,497,497,497,497,464,464,464,464,464,464,464,464,464,584,584,584,584,584,584,584,584,584,584,532,532,532,532,532,532,532,532,532,532,532,532,532,532,559,559,559,559,500,500,500,500,500,500,500,500,500,500,500,500,458,458,458,458,458,512,512,512,512,512,512,512,512,512,512,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,498,498,498,498,498,498,498,502,502,502,502,502,502,502,502,502,538,538,538,538,558,558,558,558,558,558,558,558,558,558,558,558,558,494,461,461,550,550,550,550,550,550,550,550,550,550,550,550,505,505,505,505,505,505,505,505,505,505,505,505,505,559,559,559,559,559,559,559,559,559,559,559,512,512,512,512,512,512,512,512,512,485,485,485,485,440,440,440,440,440,440,440,440,440,440,440,440,533,533,533,533,533,533,533,533,533,533,533,533,533,564,564,564,564,564,564,564,564,564,545,545,545,545,545,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,496,496,496,496,496,496,496,496,496,496,496,496,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,587,527,527,527,527,527,527,527,527,581,581,581,581,581,581,581,581,581,542,542,569,569,569,569,569,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,468,468,468,468,468,468,468,468,468,560,560,560,560,560,560,560,560,560,560,560,553,553,553,553,553,553,553,553,501,501,501,501,483,483,483,483,483,483,462,462,462,462,462,462,462,462,462,462,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,540,540,540,549,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,456,456,456,456,456,456,456,456,501,501,501,501,501,501,548,548,548,548,548,548,548,548,548,548,548,548,548,548,522,522,522,522,522,522,522,593,593,593,593,593,593,593,593,593,593,593,550,550,550,550,550,550,550,550,550,550,550,550,498,498,498,498,498,498,498,498,498,498,498,498,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,562,562,562,562,562,562,562,562,562,562,494,494,494,494,494,494,494,494,494,494,464,464,464,464,464,464,464,464,464,464,464,554,554,554,554,554,554,554,554,553,553,553,553,553,553,553,553,553,553,553,553,553,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,539,539,539,539,539,549,549,549,549,549,549,549,549,549,549,549,500,500,500,500,500,500,457,457,457,457,492,492,492,492,492,492,492,492,492,492,492,492,571,571,571,571,571,571,571,504,504,483,483,483,483,483,483,483,483,483,483,559,559,559,559,559,559,559,559,559,559,559,559,559,559,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,448,448,448,448,448,448,448,448,448,448,448,448,544,544,544,544,544,543,543,543,543,543,543,543,543,543,543,489,489,489,489,489,489,489,489,489,489,489,489,489,489,579,579,579,579,579,579,579,532,532,532,532,532,532,532,532,532,532,532,555,555,555,555,555,555,555,555,555,555,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,450,450,450,450,450,450,450,450,450,450,450,450,450,550,550,548,548,548,548,548,548,486,486,486,486,486,486,486,486,486,486,486,577,577,577,577,533,533,533,533,533,533,533,533,533,533,533,533,519,519,519,519,519,519,519,519,519,519,519,519,586,586,586,586,586,586,586,586,586,538,538,538,538,538,538,538,538,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,528,528,528,528,528,528,528,528,528,528,528,528,528,528,551,551,551,551,551,551,551,551,551,551,551,551,551,516,516,516,516,549,549,549,549,549,549,549,549,549,549,549,516,516,516,516,516,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,585,585,585,585,507,507,507,507,507,507,545,545,545,545,545,545,545,545,545,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,474,474,474,474,474,474,474,474,474,474,545,545,545,545,545,545,545,545,545,545,545,545,545,545,540,540,540,540,540,540,540,540,477,477,477,477,477,477,477,477,477,477,477,492,492,492,492,492,564,564,564,564,564,564,564,564,564,549,549,549,549,549,549,549,549,549,549,549,499,499,499,513,513,513,513,513,513,513,513,513,513,513,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,485,485,485,485,485,485,485,443,443,443,443,443,443,526,526,526,526,526,534,534,534,534,534,534,534,534,534,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,474,474,474,474,474,474,474,474,474,474,474,474,474,474,474,545,545,540,540,540,540,540,540,540,540,540,479,479,479,479,479,479,491,491,491,491,491,491,491,491,491,541,541,541,541,541,541,541,541,560,560,560,560,560,560,560,508,508,508,508,508,508,508,594,594,594,594,594,594,594,594,594,594,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,494,494,494,494,494,494,494,494,494,494,494,494,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,532,493,493,493,493,493,493,590,590,590,590,590,590,590,590,590,590,590,590,544,544,544,544,544,544,544,544,544,544,544,544,544,544,564,564,502,502,502,502,502,510,510,510,510,510,510,510,567,567,567,567,567,567,567,567,567,567,552,552,552,552,552,492,492,492,492,492,492,479,479,479,479,479,479,479,479,479,479,597,597,597,597,597,597,597,597,597,597,507,507,507,507,540,540,540,565,565,565,565,565,565,565,565,565,565,501,501,501,501,501,501,501,540,540,540,540,540,540,565,565,565,565,565,565,565,565,565,565,565,508,508,508,508,508,508,508,508,508,508,540,540,540,540,540,540,540,540,540,540,540,544,544,544,544,544,544,544,544,544,504,504,504,504,504,504,504,504,504,504,504,504,504,504,517,517,517,517,517,517,517,517,517,578,578,578,578,578,578,507,507,507,507,507,507,507,507,507,507,507,540,540,540,540,540,540,540,540,540,540,540,540,540,565,565,565,565,565,565,565,565,565,565,565,565,565,501,501,501,501,501,501,541,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,544,544,544,544,544,544,544,544,544,544,544,544,544,503,503,503,503,503,503,503,503,503,503,503,503,503,464,464,464,440,440,440,440,440,540,540,540,540,540,540,540,540,549,549,549,549,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,481,481,481,496,496,496,496,496,496,496,496,496,481,481,481,481,481,481,481,481,481,481,481,481,481,471,471,471,471,471,471,471,471,471,471,471,471,504,545,545,545,545,545,545,545,545,545,545,545,545,545,496,496,496,496,506,506,506,506,506,506,506,506,553,553,553,553,553,553,553,553,553,553,510,510,510,510,510,510,510,510,510,510,483,483,483,483,483,483,483,483,483,483,483,483,483,481,481,481,481,477,477,477,477,477,477,477,477,477,477,477,477,469,469,469,554,554,554,554,554,554,554,554,554,554,554,554,497,497,497,497,497,497,497,497,497,497,497,496,496,496,525,525,520,520,520,520,520,520,520,520,520,520,520,520,564,564,564,564,564,564,564,564,564,564,564,564,564,556,556,556,556,556,556,556,556,556,556,519,519,519,519,519,519,519,519,519,519,519,478,478,478,478,478,478,478,478,458,458,458,458,544,544,544,544,569,569,569,569,569,569,569,569,569,569,569,569,569,569,549,549,549,549,549,549,549,549,549,549,553,553,553,553,553,522,522,522,522,522,522,522,522,501,501,501,501,501,501,501,501,501,501,501,501,501,495,495,495,495,495,495,495,495,495,495,495,495,495,466,466,466,466,466,466,466,466,438,438,438,438,438,438,438,438,438,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,535,535,535,535,535,535,535,535,535,535,535,544,544,544,544,544,544,544,544,544,521,521,521,521,545,545,545,545,545,545,545,545,545,545,545,507,507,507,507,507,507,507,507,507,507,507,507,507,554,554,548,548,548,548,548,548,548,548,548,548,495,495,495,495,495,495,495,495,495,495,495,495,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,555,555,555,555,555,555,555,555,555,491,491,491,491,491,491,491,491,491,491,491,491,483,483,483,483,596,596,596,532,532,532,532,532,532,532,532,532,532,532,532,532,532,493,493,493,493,590,590,590,590,590,590,590,507,507,507,507,507,507,507,507,507,507,541,541,541,541,541,541,541,541,541,541,541,541,541,567,567,567,567,543,543,543,543,543,543,543,543,543,490,490,490,490,490,490,473,473,473,473,473,473,473,473,473,473,473,473,546,546,546,546,546,546,546,518,518,518,518,518,518,518,518,518,518,558,532,532,532,532,506,506,506,506,506,506,506,506,506,506,506,506,506,506,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,517,517,517,517,517,517,517,517,517,517,517,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,583,583,583,583,583,583,583,583,583,583,583,583,583,583,536,536,536,536,536,536,536,536,536,536,536,536,508,508,508,508,508,508,508,508,508,508,508,508,508,564,564,564,564,564,564,564,564,564,564,564,564,564,490,490,490,490,490,490,490,490,490,490,490,490,490,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,553,553,553,553,498,498,498,498,498,498,498,498,467,467,467,467,467,467,467,467,467,467,467,467,442,442,442,442,442,442,551,551,551,551,551,551,551,551,551,551,551,551,551,551,545,545,545,545,545,545,545,545,545,475,475,475,475,475,475,475,475,472,472,472,472,472,472,472,472,560,560,560,560,560,503,503,503,503,503,503,503,503,503,503,503,503,503,483,483,483,483,483,483,483,515,515,515,515,515,515,515,515,515,515,515,515,515,584,584,584,584,584,584,584,584,584,584,584,584,584,584,556,556,556,556,556,556,556,556,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,481,481,481,481,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,526,526,526,581,581,581,581,581,581,581,581,581,581,507,507,507,507,507,507,507,507,507,507,507,507,507,540,540,540,540,540,540,540,540,540,565,565,565,565,501,501,501,501,501,501,501,501,501,501,501,540,540,540,540,540,540,540,540,540,565,565,565,501,501,501,501,501,541,541,541,541,565,533,533,533,533,533,533,533,533,533,533,533,529,529,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,493,493,493,493,493,493,493,493,493,493,493,493,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,592,537,537,537,537,537,537,537,519,519,519,519,519,519,519,547,547,547,500,500,500,500,500,500,500,500,500,500,500,500,500,545,545,545,545,545,545,545,545,565,565,565,565,565,501,501,501,501,501,501,540,540,540,540,540,540,540,540,540,540,540,540,540,565,565,565,565,565,565,565,565,565,565,565,565,565,501,501,501,541,541,541,541,541,541,541,541,541,567,567,567,567,567,567,567,567,567,567,567,567,567,526,526,526,490,588,588,588,588,588,588,588,588,588,538,538,538,538,538,538,538,538,538,538,538,538,519,519,519,519,590,531,531,531,531,531,531,531,531,531,493,493,493,493,493,493,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,534,534,534,534,534,534,534,534,534,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,464,464,464,464,464,464,464,464,477,477,477,477,477,477,477,477,477,479,479,479,479,479,479,479,479,479,458,458,458,458,458,458,458,467,467,467,467,467,549,549,549,549,549,549,549,549,549,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,492,492,492,492,487,487,487,487,487,487,487,487,487,487,487,487,497,497,503,503,503,503,503,503,503,503,503,503,503,482,482,482,482,482,482,482,482,482,482,462,512,512,512,512,512,512,512,512,512,562,562,562,562,562,562,562,497,497,497,497,497,497,491,491,491,491,491,491,491,491,491,491,491,562,562,562,562,562,562,562,562,562,562,562,529,529,529,529,529,529,529,529,529,537,537,537,537,537,537,537,537,511,511,511,511,511,553,553,553,553,553,553,553,553,553,553,553,553,508,508,508,508,508,508,508,508,508,508,508,565,565,565,504,504,504,504,504,504,504,504,504,504,504,553,553,553,553,553,553,502,502,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,478,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,563,563,563,563,563,563,563,563,563,563,563,563,563,563,549,549,549,549,549,549,549,493,493,493,493,493,493,493,493,493,493,493,493,461,461,461,461,461,461,461,461,461,461,461,538,538,538,538,538,538,538,538,538,538,538,538,550,550,550,550,550,559,559,559,559,559,559,559,559,559,559,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,486,486,486,486,486,486,486,486,486,496,496,496,496,496,496,496,496,496,496,496,496,496,496,528,528,528,528,528,580,580,580,580,580,580,580,580,580,580,580,580,580,580,580,536,536,536,536,536,536,536,536,536,521,521,521,521,521,521,521,561,561,561,561,561,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,498,498,498,498,498,498,498,498,498,498,498,498,498,498,456,488,488,488,488,488,524,524,583,583,583,583,583,583,583,583,531,531,531,531,531,531,531,531,531,531,531,531,531,494,494,494,494,494,494,494,494,494,494,494,593,593,593,593,593,593,593,593,593,558,558,558,558,558,558,558,558,558,558,558,558,516,516,516,516,516,516,516,516,516,516,516,516,480,480,480,480,480,480,480,480,480,480,480,498,498,498,498,498,498,498,498,498,498,573,573,573,573,573,573,573,573,573,573,573,573,521,488,488,488,488,488,488,488,488,488,488,488,488,488,488,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,559,559,559,559,559,559,559,559,498,498,498,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,550,550,550,550,550,550,550,550,550,550,501,501,501,501,501,501,501,501,501,501,501,565,565,565,565,565,508,508,508,508,508,508,508,508,508,508,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,558,558,558,558,558,558,558,558,558,558,558,530,530,530,530,530,530,506,506,506,506,506,506,506,506,506,506,506,506,506,557,557,557,557,557,557,557,557,557,557,557,557,517,517,517,517,517,517,517,517,517,517,517,517,517,520,520,520,520,520,520,520,583,583,583,583,583,583,583,546,546,546,546,546,546,546,532,532,532,513,513,513,513,513,513,513,513,513,513,513,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,583,583,583,583,583,583,583,583,583,583,583,583,583,531,531,531,531,531,531,531,531,493,590,590,590,590,590,590,590,590,590,590,590,544,544,544,544,544,544,544,544,571,571,571,571,571,571,571,571,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,481,481,481,481,481,481,481,481,481,481,481,481,480,480,599,599,599,599,554,554,554,554,554,554,554,554,554,554,554,554,554,554,494,494,494,494,494,494,494,494,494,484,484,484,484,484,484,563,563,563,563,563,563,563,563,563,563,563,563,515,515,515,515,515,515,515,515,545,545,545,545,545,545,545,545,545,545,545,545,545,550,550,550,550,550,550,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,488,488,488,488,488,488,488,488,469,469,469,469,469,469,469,469,469,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,492,492,492,492,492,492,492,492,492,492,492,492,492,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,550,550,550,550,550,550,550,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,512,512,512,512,512,512,488,488,488,488,483,564,564,564,564,564,564,564,492,492,492,492,492,492,492,492,492,492,461,461,461,461,461,461,549,549,549,549,549,549,549,549,549,549,549,549,549,549,573,573,573,573,573,573,573,573,573,573,573,573,547,547,547,547,547,547,547,547,547,547,547,547,502,502,502,502,502,502,502,456,456,456,456,456,456,456,456,456,479,479,479,479,479,479,479,479,479,479,479,479,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,520,534,534,534,558,558,558,558,558,558,558,558,558,558,558,558,558,495,495,495,495,495,495,495,495,495,495,495,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,530,530,530,530,530,530,530,530,530,530,530,530,542,542,542,521,521,521,521,521,521,521,521,521,521,521,521,521,556,556,556,556,556,556,556,556,556,556,520,520,520,520,520,520,520,520,498,498,498,498,498,498,498,498,498,498,480,480,480,480,480,480,480,480,480,480,480,480,480,443,443,443,443,443,443,443,443,526,526,526,526,526,526,526,526,526,526,519,519,519,519,519,519,519,519,521,521,521,521,521,521,539,539,539,545,545,545,545,545,545,545,545,545,545,545,545,545,545,510,510,510,510,555,555,555,555,555,555,555,555,555,555,555,555,555,482,482,482,482,482,482,500,500,500,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,499,499,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,531,531,531,531,531,531,531,531,531,493,493,493,493,493,493,493,493,493,493,590,590,590,590,590,590,590,590,529,529,529,529,529,529,529,529,529,529,529,529,529,552,552,552,552,552,552,552,552,552,552,552,552,516,516,516,516,516,516,516,516,516,516,550,550,550,550,550,550,550,550,550,550,550,550,550,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,555,555,555,555,555,499,499,499,499,499,499,499,499,499,499,499,499,499,499,510,510,510,510,510,510,510,510,510,545,545,545,545,545,545,545,545,529,529,529,529,529,529,529,552,552,552,552,552,552,552,552,552,502,502,502,502,502,502,502,502,502,502,502,469,496,496,496,496,496,496,496,496,496,496,496,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,495,495,495,495,495,495,495,495,495,495,495,495,495,463,463,463,463,463,463,463,463,463,463,463,463,463,495,495,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,583,583,583,583,583,583,583,583,534,534,475,475,475,475,475,475,475,475,475,475,475,475,475,530,530,530,530,530,530,530,530,530,530,530,541,541,541,541,541,541,541,547,547,547,547,547,547,517,517,517,517,517,517,517,517,517,517,517,517,503,503,503,503,503,503,503,503,503,503,503,540,540,540,540,540,540,540,540,540,540,540,540,540,565,565,565,565,565,565,525,525,525,525,525,525,525,525,525,525,525,525,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,500,500,500,542,542,542,542,542,518,518,518,518,518,518,518,518,518,518,518,518,559,559,559,559,559,559,559,559,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,495,495,495,495,495,495,495,469,436,436,436,436,436,436,436,436,538,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,569,546,546,546,546,546,546,496,496,496,496,496,496,496,496,496,502,502,502,502,502,502,502,502,535,535,535,535,535,535,535,535,535,535,535,554,554,554,554,554,554,554,554,554,554,554,554,503,503,546,546,546,546,546,546,510,510,510,510,510,510,510,510,510,510,510,510,510,510,566,566,566,566,514,514,514,514,514,514,514,514,514,514,514,514,474,474,474,474,474,474,498,498,498,498,498,498,498,498,498,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,507,507,507,507,507,507,507,507,507,507,477,477,477,477,477,471,471,471,500,500,500,500,500,500,500,500,500,500,500,500,500,500,500,536,536,536,513,513,513,513,513,513,513,513,513,503,503,503,503,503,503,503,503,503,540,540,540,540,540,540,563,563,563,563,563,521,521,521,583,583,583,583,583,583,583,583,583,583,583,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,479,479,479,479,479,479,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,563,563,563,563,563,563,563,517,517,517,517,517,517,488,474,474,474,474,474,474,474,474,474,474,474,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,513,513,513,513,513,513,507,507,507,507,507,507,507,531,531,531,531,531,531,539,539,539,539,539,539,539,539,539,539,539,546,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,598,598,598,598,598,598,598,598,598,598,554,554,554,554,491,491,491,491,491,491,491,491,491,491,491,476,476,476,476,476,476,476,476,476,476,476,476,476,594,541,541,541,541,541,541,541,541,541,541,541,502,502,502,502,502,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,568,568,568,568,568,568,568,568,568,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,494,494,494,494,593,593,593,593,593,593,593,593,593,556,556,556,556,556,556,513,513,513,513,513,479,479,479,479,479,440,440,440,440,440,440,440,538,538,538,538,538,538,538,538,538,538,538,538,538,569,569,569,569,552,552,552,552,552,552,552,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,507,507,507,507,499,499,499,499,499,499,499,482,482,482,473,473,473,473,473,473,473,556,556,556,556,556,556,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,479,479,479,479,479,479,479,479,479,479,479,571,571,571,571,571,571,571,571,571,571,484,484,484,484,547,547,547,547,547,547,547,547,547,547,547,569,569,569,569,533,533,533,533,533,533,533,533,533,533,533,523,523,523,540,540,540,540,540,540,540,540,540,540,540,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,524,581,581,581,581,581,581,581,581,581,581,581,581,514,514,514,514,514,514,514,514,514,545,545,545,545,545,545,545,545,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,504,504,504,504,504,504,504,504,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,493,493,493,493,493,493,493,493,493,493,493,510,510,510,510,510,510,550,550,550,550,550,550,550,550,550,550,550,550,550,550,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,547,547,547,547,547,542,542,542,542,542,542,542,542,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,530,530,513,513,513,513,513,513,513,513,513,513,513,513,513,503,503,503,503,503,503,503,503,503,503,503,540,540,540,540,540,540,540,540,540,540,540,540,540,540,567,567,567,567,567,567,567,567,567,567,532,532,532,532,532,532,532,532,532,532,532,532,532,532,559,508,508,508,508,508,508,508,508,591,591,591,591,591,591,591,591,591,591,540,540,540,540,540,540,540,540,540,540,540,527,527,527,527,527,527,527,527,551,551,551,551,551,551,551,551,551,551,551,551,488,488,488,488,488,488,488,488,488,488,465,465,465,465,465,465,465,465,465,465,561,561,561,561,561,561,490,490,490,490,490,490,490,490,490,581,581,581,581,581,581,581,581,581,581,581,581,581,525,525,525,494,494,494,494,494,494,494,494,494,494,587,587,537,537,537,537,537,537,537,537,537,537,521,521,521,521,521,521,521,521,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,556,556,556,556,556,525,525,525,525,525,525,525,525,507,507,507,507,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,484,484,484,484,484,484,484,484,484,483,483,483,483,483,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,493,493,493,493,493,493,493,510,510,510,510,510,510,510,510,510,510,510,510,510,550,550,504,504,504,504,504,504,504,504,504,504,504,504,534,534,534,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,548,548,548,548,548,548,548,548,548,548,548,474,474,474,474,474,474,474,474,542,542,542,542,542,542,542,542,542,542,548,548,548,548,492,492,492,458,544,515,515,515,515,515,515,515,515,515,515,527,527,527,527,527,527,527,527,527,527,527,519,553,553,553,553,553,553,553,553,553,553,553,553,526,526,526,526,526,526,526,526,526,526,526,526,510,510,510,510,510,510,548,548,548,548,548,548,548,548,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,534,534,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,546,546,546,546,546,546,546,546,546,546,546,546,498,498,498,498,498,498,498,498,467,467,461,461,461,461,461,461,461,461,461,461,461,461,560,560,560,560,560,560,498,498,553,553,553,553,553,553,553,553,553,553,553,553,553,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,479,479,492,492,492,492,492,468,468,468,468,468,468,468,468,470,470,470,470,470,470,470,470,470,470,470,548,548,548,483,483,483,483,483,483,483,483,483,483,483,483,483,483,552,552,552,552,552,552,552,553,553,553,553,553,553,472,472,472,472,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,477,477,477,477,477,541,541,541,541,541,541,541,543,543,543,543,543,543,543,543,543,543,522,522,522,522,522,522,522,522,522,558,558,558,558,558,558,558,558,558,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,496,496,496,496,496,496,496,496,590,590,590,590,590,536,536,536,536,536,536,536,536,508,508,508,508,508,508,508,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,562,562,558,558,558,558,558,558,558,558,558,513,513,513,513,513,513,513,469,469,469,469,469,469,469,469,469,469,469,469,455,455,455,544,544,544,544,544,544,544,544,544,544,544,544,522,522,522,522,522,522,522,522,522,522,553,553,553,553,553,553,553,553,553,553,553,553,553,515,515,515,515,498,498,498,480,480,480,480,480,480,480,480,480,480,480,459,459,459,459,459,459,459,459,459,459,459,459,459,459,492,492,492,492,528,528,528,528,527,527,527,527,527,527,527,527,527,527,527,527,551,551,551,551,551,551,551,551,551,551,551,551,551,551,492,492,492,492,492,492,492,492,492,492,492,473,473,473,473,473,473,473,551,551,551,551,551,551,551,551,551,551,513,507,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,517,517,517,517,517,517,517,517,517,517,517,530,530,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,525,525,525,525,525,525,525,525,525,525,554,554,554,554,554,554,495,495,495,495,495,495,495,495,495,495,495,495,495,495,554,554,554,554,554,554,554,554,554,554,554,554,554,489,489,489,489,489,489,489,489,489,489,489,580,580,505,505,505,505,505,505,505,505,505,505,505,505,529,529,529,529,529,529,529,529,529,529,529,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,545,545,545,545,545,545,545,545,545,545,545,545,475,475,475,475,475,475,475,448,448,448,448,448,448,448,448,448,448,448,448,448,529,529,529,529,529,529,529,529,535,535,535,535,535,568,568,568,568,568,568,568,568,568,568,568,568,568,568,539,539,539,539,539,539,539,539,539,539,539,539,493,493,493,473,473,473,473,473,473,473,473,473,473,473,473,473,473,507,507,507,507,507,507,507,507,507,552,552,497,497,513,513,513,513,513,513,513,513,513,513,513,513,513,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,516,516,516,516,516,516,516,516,516,565,565,565,565,565,565,565,565,565,519,519,519,519,519,519,519,519,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,494,494,494,494,494,494,494,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,544,544,544,544,544,544,544,525,525,462,462,462,462,462,462,462,462,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,498,498,498,498,498,498,498,496,496,496,496,496,496,496,496,496,496,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,562,532,532,532,532,532,532,532,532,532,532,532,532,532,532,563,563,563,563,563,563,563,563,563,563,516,516,516,516,516,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,481,500,538,538,538,538,538,538,538,538,538,538,538,558,558,558,558,558,558,558,558,558,558,494,461,461,461,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,495,495,495,542,542,542,542,542,542,542,542,518,518,518,518,518,518,518,518,518,518,518,518,518,563,549,549,549,549,549,549,549,549,549,549,496,496,496,496,496,496,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,552,495,495,495,488,488,488,488,488,488,488,488,488,488,488,488,569,569,569,569,569,569,569,569,569,514,514,514,514,514,514,514,514,514,514,514,514,514,464,464,464,464,464,464,464,464,464,461,461,461,461,461,461,461,461,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,503,503,503,503,503,503,538,538,538,538,570,570,570,570,570,570,570,570,570,570,546,546,546,546,546,546,546,546,546,546,546,546,546,546,498,498,498,498,498,498,498,498,498,498,498,513,513,513,513,513,513,513,513,513,513,513,513,513,552,552,552,552,552,552,552,552,552,552,552,498,498,498,498,490,490,490,503,503,503,503,503,503,503,503,503,503,538,538,538,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,532,532,532,532,532,532,532,532,532,516,516,516,516,516,516,516,516,516,516,516,516,516,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,565,565,565,565,565,565,565,565,565,565,565,565,504,504,504,504,504,504,504,504,504,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,468,468,468,468,468,440,440,440,440,440,440,440,440,440,440,440,440,440,533,533,533,533,533,548,548,548,548,548,548,548,548,548,548,468,468,534,534,534,534,534,534,534,534,534,564,564,564,564,564,564,564,564,564,564,564,564,538,538,538,538,538,569,569,569,569,569,569,569,569,569,500,500,500,500,493,493,493,493,493,493,493,493,569,569,569,569,569,569,569,569,569,569,569,569,569,569,499,499,499,499,499,499,499,499,499,443,443,443,443,443,443,443,443,443,533,533,533,533,533,533,533,533,533,533,533,543,543,543,543,543,543,543,504,504,504,504,504,504,504,504,504,504,504,504,504,561,561,561,516,481,480,480,480,480,480,480,480,480,480,480,592,592,592,592,592,592,537,537,537,537,537,537,537,537,537,521,521,521,521,521,521,521,521,521,561,561,561,561,561,561,561,561,561,561,561,561,561,561,561,546,546,546,546,546,546,546,546,546,546,546,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,443,443,443,443,443,443,443,443,443,526,526,526,526,526,526,526,526,526,526,515,515,515,515,515,515,515,530,530,530,530,530,530,530,530,530,530,530,530,530,570,570,549,549,549,549,519,519,519,519,492,492,492,461,461,461,461,461,461,461,461,461,504,504,504,504,504,504,504,504,504,504,504,555,555,555,555,555,555,555,555,555,555,498,498,498,498,498,498,498,498,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,507,507,507,507,507,507,507,507,507,507,507,536,563,563,532,532,532,532,532,532,532,532,519,519,519,587,587,587,587,587,587,587,587,587,530,530,530,530,530,530,530,530,530,530,530,560,560,560,560,560,560,560,560,560,484,484,484,484,484,484,484,484,484,484,484,484,484,484,551,551,551,551,551,551,551,551,551,551,551,551,553,553,553,553,553,553,553,553,553,553,501,501,501,501,501,501,501,501,515,515,515,515,515,515,515,515,515,544,544,544,544,544,544,515,515,515,515,515,515,515,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,540,540,540,540,540,540,540,540,540,540,565,565,565,565,565,565,565,565,565,565,525,525,525,525,525,525,525,525,525,525,554,554,554,554,554,554,497,497,497,497,497,497,497,497,497,552,552,552,513,513,513,513,513,513,513,513,482,482,482,482,482,482,482,482,482,482,482,482,482,482,464,464,464,464,464,464,464,464,464,464,464,464,471,471,471,477,477,477,477,477,477,477,477,465,465,465,465,465,465,465,465,568,568,568,568,568,568,568,568,568,568,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,517,517,517,517,517,529,529,529,529,563,563,563,563,563,517,517,517,517,517,578,578,578,578,578,578,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,533,533,533,533,533,533,533,533,533,533,525,525,525,525,525,525,525,525,525,525,589,589,589,589,589,589,589,589,542,542,542,542,542,542,542,542,542,542,542,542,542,569,569,569,569,569,569,569,569,569,569,569,569,569,569,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,488,488,488,488,488,488,488,488,488,488,484,484,484,484,484,484,492,492,492,492,492,492,492,460,486,486,486,486,486,573,573,573,573,573,573,573,573,573,573,573,573,573,500,500,500,500,500,500,500,500,500,500,500,500,465,465,465,465,465,465,465,465,465,465,465,532,532,532,532,532,532,532,532,534,534,534,534,534,534,565,565,565,565,565,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,521,521,521,521,521,521,521,521,537,537,537,537,537,537,537,537,537,537,547,547,547,547,547,547,547,547,547,547,547,547,547,508,508,508,508,508,508,508,508,476,476,476,476,476,476,476,476,476,476,476,456,456,456,456,456,456,456,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,500,500,500,500,500,500,500,527,527,527,522,522,522,522,522,522,522,522,522,522,522,522,542,542,542,542,542,542,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,516,483,483,483,483,483,483,483,483,482,482,466,466,466,466,466,466,466,466,498,498,498,526,526,526,526,526,505,505,505,505,505,505,505,505,505,555,555,555,504,504,504,504,504,469,469,469,469,469,469,469,469,469,475,475,475,475,557,557,557,557,557,557,557,557,557,557,557,557,557,507,507,507,507,507,507,507,507,507,507,507,470,470,470,470,470,470,470,470,470,470,470,470,470,470,489,489,489,489,489,489,489,489,489,489,489,489,489,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,544,544,544,544,544,544,544,544,544,544,486,486,486,443,443,443,443,443,443,443,522,522,522,522,522,522,522,529,529,529,529,529,529,529,529,529,529,565,565,565,565,565,565,565,565,565,565,565,565,565,501,501,501,501,501,540,540,540,540,540,540,540,540,540,540,540,540,563,563,563,563,563,563,563,563,563,563,563,563,563,563,521,521,521,521,581,581,581,581,581,581,581,581,581,581,581,581,581,581,581,581,581,581,532,532,560,560,560,560,560,560,560,560,560,560,560,560,560,505,505,505,440,440,440,440,440,440,440,447,447,447,447,447,447,535,535,550,550,550,550,550,550,550,550,553,553,553,553,553,553,553,501,501,501,501,501,501,515,515,515,515,515,515,515,515,515,515,515,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,525,525,525,525,525,525,525,525,525,525,525,525,525,540,540,540,540,540,540,540,540,540,540,540,515,515,507,507,507,507,507,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,530,530,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,525,525,525,525,555,555,555,555,555,555,555,555,555,500,500,500,500,500,500,500,500,500,500,500,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,526,559,559,559,493,493,493,493,493,493,493,493,493,493,493,493,493,493,476,476,476,476,476,476,476,476,476,476,476,476,476,590,590,590,590,590,590,590,590,590,590,590,546,546,546,546,546,546,546,546,546,546,546,546,546,534,534,534,534,534,534,534,534,506,506,506,506,506,506,506,506,506,506,506,506,506,506,534,534,534,534,539,539,539,546,546,546,546,546,546,546,546,546,546,546,546,498,498,467,467,467,467,467,467,467,467,467,467,458,458,458,458,458,458,553,553,553,553,553,553,553,513,513,513,513,513,513,513,513,513,525,525,525,525,525,525,525,525,525,485,485,485,485,547,547,547,547,547,547,547,547,547,547,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,503,564,564,564,564,564,564,564,564,564,564,564,519,519,519,519,519,519,519,519,519,519,519,519,519,519,478,478,478,478,478,478,478,478,478,486,486,486,486,486,486,580,580,580,580,580,580,580,580,580,580,479,479,479,479,479,479,517,517,517,517,517,517,517,517,517,517,517,517,517,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,531,531,531,531,531,531,531,531,531,531,531,519,519,519,519,519,519,519,519,519,519,549,549,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,577,577,577,577,577,577,577,577,577,577,524,524,524,524,524,524,524,524,524,524,484,458,458,458,458,458,549,549,549,549,549,549,549,549,574,574,574,574,574,574,574,549,549,515,515,515,515,515,515,515,493,493,493,493,470,470,470,470,470,470,470,470,470,470,470,483,483,483,483,500,500,500,500,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,544,544,544,544,544,544,544,544,544,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,485,485,485,485,485,485,485,485,485,485,485,443,443,443,443,443,443,528,528,528,528,528,542,549,549,549,549,549,549,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,489,489,489,489,489,518,518,518,518,518,518,580,580,546,546,546,546,529,529,529,524,524,564,564,564,564,564,564,564,564,564,552,552,552,552,552,552,552,552,496,496,496,496,496,496,498,574,574,501,501,501,501,501,501,501,501,501,501,501,501,495,495,495,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,481,481,481,481,481,481,481,481,481,481,481,481,480,480,480,480,480,480,480,480,480,567,567,567,567,567,567,567,567,567,567,567,519,519,519,519,483,483,483,483,483,483,483,483,483,466,466,466,466,466,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,587,587,587,587,587,542,542,542,542,542,542,542,542,542,542,542,542,497,497,497,497,497,497,497,497,497,497,497,497,497,497,503,503,503,503,503,536,536,536,536,536,536,536,536,522,522,522,522,522,522,540,540,540,540,540,540,540,532,532,563,563,563,563,563,563,563,563,563,563,563,563,563,563,523,523,523,523,523,523,523,523,523,523,498,498,498,498,498,498,498,498,498,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,497,497,497,497,563,563,563,563,563,563,563,563,563,563,563,563,563,554,554,554,554,525,525,525,525,525,525,525,525,525,525,509,503,503,503,503,503,503,503,503,503,503,503,503,503,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,461,461,461,461,461,538,538,538,538,538,538,538,538,545,545,545,550,550,550,550,550,485,485,537,537,537,537,537,537,537,537,537,537,537,537,541,541,541,541,541,541,541,541,541,545,545,545,545,545,545,545,545,545,545,545,545,545,530,530,530,530,530,530,530,530,530,530,530,530,530,560,560,560,560,560,560,560,560,560,514,514,514,514,514,514,514,514,514,514,514,486,486,486,486,486,486,486,486,491,491,491,491,491,491,511,511,511,511,511,511,511,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,560,560,560,560,560,560,560,560,523,523,523,523,523,523,523,509,509,509,509,509,509,509,509,503,503,503,503,503,503,503,503,503,503,503,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,461,461,461,461,461,461,461,461,461,461,482,482,482,482,482,482,482,482,482,482,482,482,482,573,573,573,573,573,573,573,573,573,573,573,573,573,573,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,579,579,579,579,532,532,532,532,532,532,532,532,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,500,500,500,500,500,500,500,500,500,500,500,458,508,508,508,544,544,544,544,544,544,544,544,544,544,544,544,512,512,512,512,512,524,524,524,524,524,524,524,524,524,524,524,524,578,524,524,581,581,581,581,581,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,507,507,507,507,507,507,507,563,563,563,563,563,558,558,558,558,558,558,558,558,496,496,496,496,465,465,465,465,465,465,465,465,465,465,465,465,532,532,532,532,532,532,532,532,532,532,532,530,530,530,530,530,530,530,530,530,530,530,530,564,564,564,564,564,564,564,564,564,564,564,564,534,534,534,534,534,534,502,502,502,502,502,502,502,502,502,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,530,530,530,530,530,542,542,542,542,542,542,542,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,531,531,531,531,531,531,531,531,531,531,531,531,531,527,527,527,527,527,527,552,552,552,552,552,552,552,552,552,552,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,464,464,464,464,464,464,464,464,464,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,463,541,541,541,477,477,477,477,477,477,477,477,477,477,477,477,477,477,503,503,503,503,503,503,503,559,559,559,559,559,559,559,559,559,559,559,559,559,559,494,494,494,494,494,494,494,494,494,494,494,494,494,494,461,461,461,461,461,461,461,461,461,537,537,537,537,537,537,537,537,537,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,544,544,544,544,544,544,544,486,486,486,486,486,486,486,486,486,486,580,580,580,580,580,580,580,580,544,544,544,544,544,544,544,529,529,529,529,529,529,529,529,529,529,529,529,524,524,524,524,524,560,560,530,530,530,530,530,530,530,530,530,477,477,477,477,477,507,507,507,507,507,507,507,507,507,559,494,494,494,494,494,494,494,494,494,494,494,494,494,494,461,461,461,461,461,461,461,532,532,532,532,532,532,532,535,535,535,535,535,535,535,535,535,565,565,565,565,565,565,565,565,565,565,565,565,565,533,533,533,533,533,533,533,533,533,529,529,529,529,529,529,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,514,514,514,487,487,487,487,504,504,504,504,504,504,504,504,536,536,536,536,536,536,536,536,536,536,536,536,536,536,527,527,527,527,527,527,527,527,527,527,527,552,552,506,506,506,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,440,440,440,440,440,440,440,440,440,440,440,440,440,440,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,503,503,503,503,503,503,503,503,503,503,503,503,481,481,481,481,481,452,452,452,452,452,452,452,452,452,452,452,452,452,452,452,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,574,574,574,574,574,574,574,523,523,523,523,523,523,523,523,484,484,484,484,484,484,484,484,484,484,484,484,484,461,461,461,461,461,461,461,538,538,538,538,538,538,538,538,550,550,550,550,550,550,550,550,553,553,501,501,501,501,501,501,501,501,501,501,501,501,501,521,521,521,521,521,521,562,562,562,562,494,494,494,494,494,494,461,461,461,461,461,461,461,461,461,461,461,461,532,532,532,532,532,532,532,532,532,532,532,532,530,530,530,530,530,530,530,530,530,530,561,561,561,561,561,561,561,561,540,540,540,540,540,540,540,540,540,540,550,550,550,550,550,550,550,550,553,553,553,553,553,553,553,553,553,496,496,496,496,496,496,496,505,505,505,505,505,505,505,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,519,519,519,519,519,476,476,476,476,476,476,476,476,476,476,476,476,476,476,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,582,521,521,521,521,521,521,521,521,521,521,521,521,581,581,581,581,581,581,581,581,581,581,581,542,542,542,542,542,542,542,542,542,542,542,569,569,569,569,569,569,569,569,569,569,569,569,569,569,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,509,509,509,509,509,509,509,509,490,490,490,490,490,490,490,490,490,490,484,484,484,484,484,484,484,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,496,496,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,583,583,583,583,583,583,534,534,534,534,534,534,534,534,534,534,534,534,534,559,559,559,559,559,529,529,529,529,536,536,536,521,521,521,521,521,521,521,547,547,547,547,547,547,547,500,500,500,500,500,500,500,500,500,500,500,500,500,540,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,534,534,534,534,534,534,507,507,507,507,507,507,507,507,507,507,507,507,563,563,563,563,563,563,563,563,563,563,563,563,560,560,560,560,560,560,560,560,560,560,519,519,519,519,519,519,519,519,519,519,519,519,519,519,486,486,498,498,498,498,507,507,507,507,540,563,563,563,521,521,521,521,521,521,521,521,521,521,521,581,581,581,581,581,581,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,541,541,541,541,541,541,541,541,541,541,541,541,570,570,570,570,570,570,570,570,570,570,570,570,549,549,549,549,549,549,549,549,549,549,549,511,511,511,511,511,511,511,511,483,483,483,483,483,483,483,483,497,497,497,497,497,497,497,497,563,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,492,492,492,492,492,492,492,492,492,492,492,479,479,479,599,599,599,599,599,599,599,599,599,599,599,599,599,599,556,556,556,556,556,515,515,515,515,515,515,515,515,515,515,515,501,501,501,501,501,501,501,473,439,439,439,439,439,439,489,489,489,489,489,489,489,489,489,489,489,547,547,547,547,547,547,547,501,459,459,459,459,459,459,459,435,435,435,435,435,435,435,435,435,435,435,435,518,518,518,518,539,539,539,539,539,539,539,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,498,498,498,498,498,467,467,467,467,467,467,439,439,439,439,526,526,526,526,526,526,526,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,516,516,516,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,568,568,568,568,530,530,530,530,530,530,530,530,530,530,530,530,530,530,512,512,512,512,512,512,512,512,512,512,512,512,568,568,568,568,568,568,568,568,568,568,521,521,521,521,521,521,521,521,487,487,487,487,487,511,511,511,511,511,511,511,556,556,556,556,556,556,556,556,556,556,556,488,488,488,488,488,488,488,488,488,488,488,488,488,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,551,551,551,551,551,551,551,551,551,551,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,557,557,557,557,557,557,557,557,557,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,522,522,522,504,504,504,504,504,504,504,504,504,504,504,496,496,496,496,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,475,475,575,575,575,575,575,575,575,575,575,575,575,575,575,486,486,486,486,486,486,486,486,486,486,486,486,549,549,549,549,549,549,549,549,549,549,549,549,553,553,553,553,497,497,497,497,497,497,497,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,450,555,555,549,549,549,549,549,549,549,502,502,502,502,502,502,498,498,498,498,498,498,498,498,498,498,498,498,555,555,555,555,532,532,532,532,532,532,532,532,532,518,518,518,518,518,518,518,518,518,518,518,528,528,528,528,528,528,528,528,553,553,553,553,553,553,553,553,553,553,553,553,553,522,522,522,522,522,522,522,522,522,522,522,522,522,543,543,543,543,543,543,501,501,501,501,501,501,501,501,501,501,501,501,501,501,482,482,482,482,482,482,482,474,474,474,474,474,474,474,474,474,474,474,462,462,462,462,462,462,462,462,462,589,589,589,589,589,589,589,589,589,589,589,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,496,496,496,496,496,496,496,502,502,502,542,542,542,542,542,542,542,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,500,500,500,500,500,458,458,458,458,458,458,458,458,458,458,458,458,512,512,512,512,512,512,512,512,512,512,512,512,512,559,559,559,559,559,559,559,559,559,559,559,499,499,499,499,499,499,499,499,499,499,499,499,499,499,510,540,540,523,523,523,523,556,556,556,556,556,556,556,556,556,556,556,556,556,532,532,532,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,548,548,548,548,548,548,527,527,527,527,527,527,527,527,527,527,527,527,527,561,561,561,561,561,561,561,561,561,561,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,559,559,559,559,559,559,559,559,559,559,559,559,559,559,492,492,492,492,492,492,492,492,492,490,490,490,490,490,490,490,570,508,508,508,508,508,553,553,553,553,553,507,507,507,507,507,507,507,507,507,507,507,507,507,470,470,470,470,470,470,489,489,489,489,489,489,551,528,528,528,528,528,528,528,481,481,481,481,481,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,550,550,530,530,530,530,530,530,530,530,530,530,530,530,555,555,555,555,555,498,498,498,498,498,498,498,503,503,503,503,503,503,503,503,503,503,547,547,547,547,547,567,514,514,514,514,514,514,514,514,514,514,459,459,459,459,459,459,454,454,454,454,454,454,454,454,454,454,454,550,550,550,550,550,550,550,550,550,553,553,553,477,477,477,477,477,477,477,477,477,477,477,477,549,549,553,553,553,553,553,553,553,553,553,553,553,553,501,501,501,501,501,501,501,501,501,501,501,483,483,483,483,483,483,483,483,483,483,483,483,553,553,553,553,553,553,553,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,498,563,563,563,563,563,554,554,554,554,519,519,474,474,474,474,474,474,474,474,474,474,474,480,480,480,480,480,480,480,480,480,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,597,554,554,554,554,554,554,502,502,502,502,502,502,502,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,475,475,475,475,475,475,475,475,475,475,567,567,567,567,567,504,504,504,504,504,504,553,553,553,553,553,553,553,553,553,553,553,496,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,458,458,510,510,510,510,510,510,510,510,510,510,510,510,510,539,539,539,539,539,539,539,539,497,497,497,497,497,497,497,497,497,590,590,590,590,590,590,590,590,590,536,536,536,536,536,536,536,536,536,536,536,536,536,536,510,510,510,556,556,556,556,556,556,556,509,509,509,509,509,509,509,509,509,505,505,505,505,505,505,505,505,505,505,505,505,505,531,531,531,531,531,531,531,531,531,531,531,531,531,531,531,494,494,494,494,494,494,494,494,494,494,494,494,494,593,593,593,593,593,593,593,593,593,593,593,593,593,593,593,593,593,593,554,554,554,554,554,554,494,494,494,494,494,494,494,494,494,494,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,564,564,564,564,564,564,564,564,564,564,564,564,564,564,504,463,463,463,463,463,463,463,463,463,463,463,457,457,457,581,581,581,523,523,523,523,523,523,523,523,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,585,547,547,547,547,547,547,547,547,547,547,547,487,487,487,487,487,487,487,487,487,472,472,472,472,472,472,472,472,558,558,558,558,558,558,558,558,558,499,499,499,499,499,499,499,499,499,499,499,457,457,457,457,457,457,457,457,457,457,457,457,457,457,488,488,488,488,488,488,488,488,488,565,565,565,565,565,565,520,520,520,520,520,520,520,520,520,531,531,531,554,554,554,554,554,554,502,502,502,502,502,502,502,502,502,502,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,505,505,505,505,505,505,505,505,505,505,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,474,474,474,474,474,474,474,474,474,474,474,474,474,474,458,458,458,458,458,458,458,544,544,544,569,569,569,569,569,569,569,545,545,545,545,545,545,524,524,524,524,524,524,524,524,524,524,524,496,496,496,496,496,496,496,496,496,496,590,590,590,540,540,540,540,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,504,504,504,504,504,504,504,504,504,504,504,504,504,479,479,479,479,479,479,479,479,560,560,560,560,560,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,552,552,552,552,552,552,552,552,552,552,552,552,552,553,553,553,553,553,553,553,553,553,553,477,477,477,477,477,477,477,477,477,477,477,477,477,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,544,544,544,544,544,544,544,544,544,544,544,544,544,544,515,515,515,515,515,515,515,515,515,515,515,515,515,515,515,563,563,563,563,563,563,563,563,563,563,563,563,508,508,508,508,508,508,508,508,499,499,499,499,499,499,499,499,540,540,540,540,540,540,540,485,485,485,485,493,493,493,493,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,499,499,499,499,499,499,499,499,499,499,499,499,499,545,545,565,565,565,565,565,565,565,525,525,525,525,525,525,525,525,555,555,555,555,555,555,555,555,555,555,555,509,509,509,509,509,509,509,561,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,507,507,507,507,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,483,483,483,483,509,509,509,509,509,509,509,509,509,509,509,544,544,544,544,544,544,544,544,522,522,522,522,522,522,522,522,522,522,522,522,522,534,534,534,534,534,534,534,534,534,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,536,536,536,536,536,536,536,536,536,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,555,555,555,555,555,555,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,481,481,481,481,481,481,481,481,481,461,461,461,461,461,461,461,461,461,461,461,459,459,459,459,459,459,459,459,459,459,536,536,536,536,536,536,536,536,536,536,536,524,524,524,524,524,524,539,539,539,539,539,546,546,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,470,470,470,470,470,470,470,470,470,470,470,470,470,470,470,504,504,504,504,548,548,548,548,548,548,484,484,484,484,484,484,484,484,484,484,443,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,530,530,530,530,530,530,530,530,570,570,549,549,549,549,549,549,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,502,502,502,502,502,502,502,502,481,481,481,481,469,458,458,458,458,458,458,458,458,458,458,458,458,458,458,553,553,553,553,553,553,516,516,516,516,516,539,539,539,539,539,539,539,539,504,504,504,504,504,504,504,504,504,504,504,504,504,478,478,478,462,462,462,462,462,462,462,462,462,462,462,481,481,481,481,481,481,481,481,483,483,483,483,483,483,483,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,498,498,498,498,498,498,498,498,498,498,479,479,479,479,479,479,479,479,479,479,479,479,464,464,464,464,464,464,464,464,464,464,464,560,560,560,560,550,550,550,550,550,550,550,550,550,474,474,474,474,474,474,474,465,465,465,465,465,465,465,465,465,465,465,465,465,465,465,592,592,592,592,592,592,592,592,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,485,485,547,547,547,547,547,547,547,547,547,547,547,526,526,526,526,526,526,526,526,526,555,555,555,555,555,555,555,555,555,555,555,499,499,499,499,499,499,499,499,510,510,510,510,510,510,510,510,510,510,510,544,529,529,529,529,529,529,529,529,545,545,545,545,545,545,496,496,496,496,496,496,496,496,473,473,473,473,473,473,473,473,473,473,473,473,473,504,504,504,504,504,504,504,504,504,545,545,545,545,545,545,545,545,492,492,492,492,492,492,492,492,492,492,492,492,496,496,496,496,496,496,496,496,544,544,520,520,520,520,520,520,520,520,520,520,520,520,587,587,587,587,587,587,587,587,587,587,536,536,536,536,536,536,536,536,536,536,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,478,478,478,478,478,478,478,478,478,478,478,478,478,468,468,468,468,468,468,468,468,561,527,527,527,527,527,527,527,527,527,527,527,527,527,527,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,516,516,516,516,516,516,516,516,516,516,516,478,478,478,478,478,478,478,478,478,478,484,484,484,484,484,484,484,484,484,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,529,529,529,529,529,529,529,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,526,526,526,526,526,509,509,509,509,501,501,501,501,501,501,501,501,501,501,501,501,483,483,483,483,483,488,488,488,488,488,488,470,470,439,439,439,439,439,439,439,439,480,480,480,480,480,524,524,524,524,524,524,524,524,524,524,524,524,524,585,585,585,585,585,585,585,585,547,547,547,547,547,547,547,547,547,547,547,547,490,490,490,490,490,490,490,476,476,476,476,476,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,483,483,483,483,483,483,483,483,483,483,483,483,483,558,558,558,558,558,558,550,550,550,550,550,550,550,550,550,550,475,475,475,475,475,475,475,475,475,475,448,448,448,448,448,529,529,529,529,529,529,529,529,529,529,529,534,534,534,534,534,534,534,534,534,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,565,525,560,475,475,475,475,475,475,475,475,475,475,475,534,534,534,534,534,534,534,534,534,534,563,563,563,563,563,563,563,563,563,563,563,563,563,563,531,531,531,531,521,521,521,521,521,521,521,521,521,521,564,564,564,564,564,564,564,564,564,564,564,564,564,564,552,552,552,552,552,552,552,496,496,496,496,496,496,496,496,496,494,494,494,494,494,494,494,494,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,573,484,484,484,542,542,542,542,542,542,542,542,542,569,569,569,569,569,569,569,569,569,547,547,547,547,547,547,547,547,547,547,547,547,543,543,543,543,502,502,502,502,502,502,502,502,469,469,469,469,469,469,469,469,469,469,469,469,469,469,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,525,525,525,525,525,525,525,525,525,519,519,519,519,519,519,519,519,519,519,547,547,547,504,504,504,504,504,534,534,534,534,534,534,522,522,522,522,522,522,522,522,522,522,520,520,520,520,520,520,521,521,521,521,521,521,521,521,521,521,542,542,542,542,542,542,542,542,542,542,542,542,542,542,549,549,549,549,549,549,549,549,549,549,505,505,505,505,491,506,506,506,506,506,506,506,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,517,517,517,517,517,517,517,526,526,526,526,526,526,526,526,526,526,526,526,526,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,534,534,502,502,502,502,502,502,502,502,502,502,502,534,534,534,534,534,521,521,521,521,521,521,521,521,521,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,544,544,544,544,544,544,544,544,544,504,504,504,504,504,504,504,504,504,554,554,554,554,554,554,554,554,554,554,554,554,496,496,496,504,504,504,504,504,504,504,510,531,531,531,531,531,544,544,544,544,544,544,544,544,544,559,559,559,559,559,559,559,559,559,559,559,559,559,559,526,526,508,508,508,508,508,508,508,508,508,508,508,479,479,479,479,479,479,479,479,479,479,479,479,479,465,465,465,465,465,465,465,465,465,465,465,465,465,556,556,556,548,548,548,548,548,548,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,531,531,531,531,531,531,531,531,531,531,531,531,531,552,552,552,552,552,552,513,513,513,513,513,475,475,475,475,475,475,475,475,475,475,440,440,440,440,440,443,443,443,443,443,443,443,443,443,443,443,443,443,443,546,546,546,546,574,574,574,574,574,574,574,574,574,546,546,546,546,498,498,498,498,498,498,516,516,516,516,516,516,516,516,516,516,516,516,562,562,562,562,562,562,494,494,494,461,461,461,461,461,461,461,461,461,537,537,537,539,539,539,539,539,539,539,539,539,539,539,539,539,539,548,548,548,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,522,522,522,539,539,539,539,539,549,549,549,549,549,549,549,549,549,549,549,500,500,500,500,500,500,500,500,500,500,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,479,479,479,479,479,479,479,479,479,568,568,568,568,568,568,568,568,568,512,512,512,512,512,512,512,512,512,512,512,512,512,512,501,501,501,501,501,501,501,501,501,501,501,501,501,528,528,528,528,528,528,528,528,528,528,528,528,528,539,539,539,539,539,539,539,539,545,545,545,545,545,545,545,545,516,516,516,573,573,573,573,573,573,573,573,498,498,498,498,498,498,498,481,481,481,481,481,481,596,596,596,596,596,596,596,596,596,596,596,596,596,556,556,556,556,556,556,556,556,556,556,553,553,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,478,478,478,478,478,503,503,503,503,503,503,503,503,503,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,504,504,504,504,504,504,504,504,504,530,530,530,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,533,533,533,533,533,533,533,533,533,533,533,533,533,533,527,527,527,551,551,551,551,485,485,485,485,485,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,522,522,522,522,522,522,522,522,526,526,526,526,526,526,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,566,543,543,543,543,543,543,543,543,543,543,543,532,532,532,532,532,532,532,532,532,533,533,533,533,533,533,533,533,533,533,533,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,563,526,526,526,526,526,526,526,507,507,507,507,507,507,507,498,498,488,488,488,488,488,488,504,504,504,504,504,504,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,513,513,513,513,513,513,513,513,513,513,509,509,509,545,545,545,545,545,545,545,545,545,545,545,543,543,543,543,543,543,543,543,543,543,543,543,493,493,493,493,493,493,493,493,493,493,493,493,555,511,511,511,511,511,511,511,511,511,511,469,469,469,472,472,472,472,472,472,472,472,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,507,507,507,507,507,507,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,510,510,510,510,510,510,510,510,510,510,510,486,486,486,486,486,486,486,486,486,490,490,490,490,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,504,504,504,504,506,506,503,503,503,503,503,503,503,503,503,503,503,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,458,458,458,472,472,472,472,472,472,472,472,472,472,472,472,560,560,560,560,560,560,560,560,560,560,560,560,560,560,518,518,518,518,518,518,518,518,518,557,557,557,557,557,557,557,557,557,557,557,554,554,554,554,554,554,554,554,525,525,503,503,503,503,503,503,503,503,503,503,503,503,481,481,481,498,498,498,498,498,498,498,574,574,574,574,574,574,574,574,574,574,574,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,493,493,493,493,493,493,493,493,493,493,493,562,562,562,562,562,562,562,562,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,497,497,497,497,497,497,497,497,497,497,535,535,467,467,467,467,467,467,467,467,467,467,467,467,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,588,588,588,588,588,588,588,588,588,588,588,527,527,527,527,527,527,527,527,527,581,581,581,581,581,581,581,581,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,541,541,541,567,567,567,567,567,567,567,528,528,528,528,528,528,479,479,479,479,558,558,558,558,558,558,563,563,563,563,563,563,563,563,563,563,563,563,563,517,517,517,517,517,517,485,485,443,443,443,443,443,443,443,443,443,443,443,528,528,528,528,528,528,528,528,545,545,545,545,545,545,559,559,559,559,559,559,559,559,523,523,523,523,523,523,523,523,523,523,504,504,504,504,504,504,504,504,504,478,462,462,462,462,462,462,582,582,582,582,582,582,582,582,582,532,532,532,532,532,532,532,532,532,532,521,521,521,521,521,521,521,521,521,564,564,564,564,564,564,564,564,564,564,564,549,549,549,549,549,549,549,549,549,549,549,499,499,499,499,499,499,499,499,499,516,516,516,516,516,516,516,516,516,562,562,562,562,562,562,562,562,562,497,497,497,497,497,497,497,497,497,497,497,497,497,494,494,573,573,573,573,573,573,573,573,573,573,573,573,490,490,490,558,558,558,558,558,558,558,558,558,558,558,550,550,550,550,550,550,550,475,475,475,475,475,475,470,470,470,470,470,470,470,470,470,470,470,470,470,470,575,575,575,575,575,575,575,575,575,575,575,575,483,483,483,545,545,545,545,545,545,545,540,540,540,540,540,540,540,540,540,540,540,540,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,507,507,507,507,507,507,507,524,524,524,524,524,524,524,524,530,530,530,530,530,530,563,563,563,563,563,563,563,563,563,563,521,521,521,521,521,521,521,521,521,521,521,581,581,581,581,581,581,581,581,581,581,511,511,511,511,511,511,530,530,530,530,530,530,530,530,530,530,522,522,522,522,522,520,520,520,520,520,520,520,520,520,520,520,520,520,520,537,537,537,537,537,549,549,549,549,549,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,464,464,464,464,464,464,464,464,464,464,464,464,463,463,463,473,473,473,473,473,473,473,473,473,473,473,560,560,560,560,560,560,560,560,560,560,560,560,481,481,481,481,481,530,530,530,530,535,535,535,535,570,570,570,570,570,570,570,570,570,549,549,549,549,549,549,549,549,549,549,549,549,549,519,519,505,505,505,505,505,488,488,488,488,488,488,488,488,488,488,488,488,482,482,482,492,492,466,466,466,466,440,440,440,440,533,533,533,533,533,533,533,533,533,533,533,533,543,543,543,543,543,543,543,543,543,543,543,543,490,490,490,490,490,490,490,490,490,490,490,490,490,581,581,581,581,581,581,528,528,528,528,528,528,528,528,528,479,479,479,479,479,479,479,479,479,558,558,558,558,558,558,558,558,558,558,563,563,563,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,498,498,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,493,493,493,493,493,493,493,493,493,493,493,493,493,493,546,546,546,500,500,500,500,500,500,500,500,500,500,500,546,546,546,546,546,546,565,565,541,541,541,541,541,541,541,541,541,541,541,541,541,502,502,502,502,502,502,502,502,465,465,465,465,465,465,465,465,465,465,465,465,448,448,448,448,448,448,448,448,448,448,448,448,448,448,501,501,501,501,501,501,501,501,550,550,550,550,550,550,550,550,550,550,500,500,500,500,500,500,500,500,500,500,500,545,545,545,545,545,545,545,545,545,545,545,563,563,563,563,563,563,563,563,563,517,517,517,517,517,517,517,517,517,517,517,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,554,554,554,554,554,554,554,554,554,554,554,547,547,547,547,547,547,547,499,499,499,499,499,499,499,499,499,499,499,499,516,516,516,516,516,516,516,516,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,499,499,499,499,499,499,499,499,499,499,499,499,499,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,540,540,540,540,540,540,540,540,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,548,548,548,548,548,548,527,527,527,527,527,527,527,527,561,561,561,561,561,561,561,561,561,503,503,503,503,503,503,503,503,503,503,503,503,503,544,544,544,504,504,504,504,504,504,504,504,504,566,566,566,566,566,499,499,499,445,445,445,445,445,445,445,445,445,445,445,445,445,536,536,536,536,536,536,536,536,536,536,536,536,536,536,545,545,545,530,530,530,530,530,530,530,530,530,530,555,555,555,555,555,555,555,555,555,555,497,497,497,497,497,497,497,497,497,497,505,505,505,505,505,505,505,505,505,505,554,554,554,554,554,554,535,535,535,535,535,535,535,535,535,535,535,563,563,509,509,509,509,509,509,509,509,509,509,574,574,574,574,574,486,486,486,486,486,486,486,486,486,486,486,486,486,486,549,549,549,505,505,505,494,494,494,494,494,494,494,494,494,494,494,535,535,535,535,535,535,535,535,535,535,535,504,504,504,504,544,544,544,544,544,544,544,544,544,557,557,557,557,557,557,557,557,557,557,509,509,509,509,509,509,509,509,509,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,536,536,536,536,536,536,522,522,522,522,522,522,522,522,522,530,530,484,484,484,484,484,484,484,484,484,484,484,484,484,484,559,559,559,559,559,559,559,559,559,559,511,511,511,511,511,511,511,511,511,511,511,511,511,511,466,466,466,466,466,466,466,448,448,448,448,448,448,499,499,499,499,499,499,499,499,499,556,556,555,555,555,555,555,555,555,555,555,555,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,569,569,569,569,569,569,514,514,514,514,474,474,474,474,474,474,474,495,495,495,495,495,495,528,528,528,528,522,522,522,522,522,522,522,540,540,540,540,540,540,540,540,515,515,515,515,515,515,515,515,515,515,515,515,515,509,509,509,509,509,509,509,509,509,545,545,545,545,545,549,549,549,549,549,549,549,549,549,549,549,477,477,477,477,477,477,477,477,477,477,477,477,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,542,542,542,542,542,542,542,542,542,542,542,542,542,542,507,507,507,507,507,507,507,507,507,507,507,507,507,560,560,560,560,560,560,560,505,505,505,505,505,505,505,505,505,505,505,502,502,545,545,545,545,545,545,545,545,545,545,545,545,545,545,545,493,493,493,493,493,493,493,493,493,493,506,506,506,506,506,506,506,506,506,506,567,567,567,567,567,549,549,499,499,499,499,499,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,543,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,565,565,565,565,565,565,524,524,524,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,486,486,486,486,490,490,490,490,490,490,490,490,490,490,490,475,475,475,475,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,508,508,508,508,508,508,508,508,545,545,545,545,545,525,525,525,525,525,525,525,525,525,525,525,540,540,540,540,540,529,529,529,529,529,529,529,529,529,529,529,529,529,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,495,495,495,495,495,495,495,495,495,495,496,496,496,496,496,496,496,496,496,496,496,496,496,544,544,544,544,544,544,544,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,589,589,589,589,589,589,589,589,589,589,589,589,589,589,554,554,554,554,554,553,553,553,553,553,553,553,553,553,553,553,553,522,522,522,522,522,522,522,522,522,522,501,501,501,493,493,493,493,493,493,493,493,493,472,472,472,472,472,472,472,472,472,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,549,549,549,549,549,549,549,549,549,493,493,493,493,493,493,493,493,496,496,496,496,496,496,496,496,496,496,571,571,571,571,571,571,571,571,571,571,571,571,501,501,501,501,501,501,501,464,553,553,553,519,519,519,519,519,519,519,519,519,519,519,519,519,519,531,531,531,531,531,531,531,531,473,473,473,473,473,473,473,473,473,496,496,496,496,496,496,496,556,556,556,532,520,520,520,520,520,520,520,520,520,551,551,551,551,551,551,551,551,551,551,551,551,551,537,537,537,537,537,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,552,552,552,552,552,552,552,552,552,545,545,545,545,545,545,545,545,527,527,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,503,503,503,503,503,503,503,503,503,503,485,485,485,485,485,485,485,485,485,485,499,499,499,499,499,483,483,483,483,483,483,483,483,483,483,483,483,461,461,461,461,461,461,461,461,461,461,461,461,484,484,484,484,484,569,569,569,569,569,569,569,569,569,569,569,499,499,499,499,499,499,499,499,499,440,440,440,440,440,440,440,440,440,440,440,440,440,517,517,517,517,517,517,517,517,517,517,517,517,517,515,515,515,515,515,515,515,515,515,515,515,515,515,530,530,530,530,530,530,530,570,570,570,570,570,570,549,549,549,549,549,549,549,549,549,511,511,511,511,511,511,511,511,511,511,511,483,483,483,483,483,483,483,483,483,483,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,548,548,548,548,548,503,503,454,454,454,454,454,454,454,454,454,454,454,454,454,454,449,546,546,546,546,572,572,572,572,572,572,528,528,528,479,479,479,479,479,479,479,479,479,553,553,553,553,553,553,553,553,553,548,548,548,548,548,548,548,548,507,507,507,507,507,566,566,566,566,566,566,502,502,502,502,502,502,502,502,502,502,502,502,502,502,473,473,473,473,473,473,473,473,473,473,473,473,548,548,548,548,548,548,548,548,548,548,548,548,477,477,477,477,477,477,477,547,547,547,547,547,547,547,547,547,547,571,571,571,571,571,571,571,571,571,571,571,571,571,534,534,534,534,534,534,534,534,534,534,488,488,488,488,488,488,488,488,506,506,506,506,506,551,551,551,551,551,551,551,551,551,518,518,518,518,518,518,518,518,492,492,492,492,492,492,492,492,492,492,460,460,492,492,541,541,558,558,558,558,558,558,558,558,558,507,507,507,507,507,507,507,507,507,507,507,507,564,564,509,509,509,509,509,509,509,509,509,509,509,517,517,517,517,517,517,517,517,517,517,517,517,582,582,582,582,582,582,582,548,548,548,548,548,548,548,548,548,503,503,503,503,503,503,503,503,503,503,503,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,450,450,450,450,450,572,572,572,572,572,572,572,572,572,572,572,572,572,572,572,538,529,529,529,529,529,529,529,529,529,529,529,529,529,529,568,568,568,568,568,568,568,568,568,568,568,568,568,568,568,521,521,521,521,521,521,521,521,521,521,521,503,503,503,503,540,540,540,540,540,540,540,540,540,540,565,565,565,565,565,565,565,565,565,565,565,565,565,531,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,502,502,502,502,502,454,461,461,461,554,554,548,497,497,497,497,497,497,497,497,544,544,544,544,544,544,544,544,544,544,544,544,544,544,477,477,501,501,501,501,501,501,501,501,501,501,537,537,537,537,537,537,537,537,537,537,537,537,537,537,498,498,498,498,498,498,558,558,558,558,558,558,558,512,512,528,528,528,528,528,528,528,528,528,528,557,557,557,557,557,557,557,557,557,557,557,501,501,501,501,501,501,501,501,441,441,441,441,441,441,441,441,495,495,495,559,559,559,559,559,559,497,497,497,497,497,497,497,497,497,497,497,497,497,498,575,575,575,575,575,523,523,523,523,523,523,523,523,523,523,523,484,484,484,484,484,484,484,484,484,484,484,484,484,484,461,461,461,461,461,461,461,536,536,536,536,536,536,536,536,536,536,536,536,536,525,525,525,525,525,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,553,501,501,501,501,501,501,501,501,501,501,501,501,501,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,559,499,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,552,552,552,552,552,552,552,552,552,552,552,552,552,499,499,499,499,499,505,505,505,535,535,535,474,474,474,474,474,474,474,474,474,474,474,529,529,529,529,529,529,529,529,529,529,529,529,529,529,529,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,524,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,547,547,547,547,547,547,547,547,508,508,508,508,508,508,508,508,508,508,508,508,508,508,508,478,478,478,478,478,478,457,457,457,457,457,457,457,457,457,457,457,457,471,471,471,471,471,471,471,471,471,471,471,471,471,471,471,471,554,554,554,554,554,554,554,554,554,554,554,512,512,512,512,512,512,512,512,512,488,488,488,488,488,488,488,488,488,488,488,488,488,488,483,483,483,483,483,483,558,558,558,558,558,558,493,493,493,493,493,493,493,493,493,493,493,493,510,510,510,510,510,510,510,510,510,510,559,559,559,535,535,535,535,533,533,533,533,533,533,533,533,533,533,533,560,560,560,560,560,560,560,560,560,560,560,515,515,515,515,515,515,515,515,515,515,515,515,483,483,483,483,483,483,483,483,483,480,480,480,480,480,480,480,480,480,480,559,559,559,559,559,559,559,559,559,495,495,495,495,495,495,495,472,472,472,472,472,472,472,472,472,472,472,472,472,472,554,554,554,554,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,496,496,496,525,525,525,525,519,519,519,519,519,519,519,519,519,547,547,547,547,547,547,547,547,547,500,500,500,500,500,500,500,500,500,500,500,545,545,545,545,545,565,565,565,565,565,565,565,565,565,565,565,565,565,565,505,505,505,505,505,505,505,531,531,531,531,531,531,531,531,531,531,531,531,531,541,541,541,541,541,541,541,552,552,552,494,494,494,464,464,464,464,464,464,464,464,464,464,589,589,589,589,589,589,589,589,589,589,553,553,553,553,553,553,553,553,553,553,553,553,516,516,516,516,478,478,478,478,478,478,478,478,478,478,478,478,478,458,458,458,458,458,458,458,458,458,458,458,550,550,550,550,550,550,550,550,550,550,550,550,567,567,567,567,567,567,567,567,567,567,521,521,521,585,585,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,487,487,487,487,487,487,487,462,462,462,462,462,462,462,462,462,551,551,551,551,551,551,551,551,551,551,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,550,550,550,550,550,550,550,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,563,563,563,563,563,563,563,563,563,563,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,503,503,503,503,503,503,503,503,503,503,503,503,503,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,458,458,550,550,550,550,550,550,550,550,550,550,550,567,567,567,567,567,567,567,567,567,567,530,530,530,530,530,530,530,530,530,530,530,530,530,530,517,517,517,517,517,517,517,517,517,517,517,517,517,517,560,560,560,560,560,560,560,560,560,560,560,560,560,512,512,512,512,480,480,480,480,480,469,469,469,469,469,469,469,469,469,469,469,469,469,554,554,554,554,554,554,554,554,554,497,497,497,497,485,485,485,485,485,500,500,500,500,500,500,500,528,528,528,528,528,528,528,544,544,544,544,544,544,544,544,544,544,553,553,553,553,553,553,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,521,521,521,521,521,521,521,521,521,521,567,567,567,567,567,567,567,567,567,567,567,567,567,567,526,526,526,526,526,526,526,526,526,526,526,526,503,503,476,476,476,476,476,476,476,476,476,476,476,480,480,480,480,480,480,480,480,480,480,480,480,480,591,591,591,591,591,591,591,591,591,591,591,591,533,533,533,533,533,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,554,554,554,554,554,554,554,554,554,544,544,544,544,544,544,520,520,520,520,520,476,585,523,523,523,523,523,523,523,523,523,523,523,523,523,523,552,552,552,552,552,552,552,552,552,516,516,516,516,516,516,516,516,553,553,553,553,553,553,553,553,553,553,553,553,553,553,528,528,528,528,528,528,528,528,528,528,508,558,558,558,558,558,558,558,558,558,558,558,558,558,507,507,507,507,507,507,507,507,507,507,478,478,478,478,478,476,443,443,443,443,443,522,522,522,522,522,522,522,530,530,530,530,530,530,530,565,565,565,565,565,565,531,531,531,531,531,531,531,531,531,531,531,531,531,521,521,521,521,521,521,521,521,521,521,521,521,521,556,556,556,556,556,556,556,556,535,535,535,535,535,535,535,535,535,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,559,559,559,495,495,495,495,495,495,495,495,495,495,495,490,490,490,490,490,490,490,490,563,563,563,563,563,479,479,479,479,479,479,479,479,479,479,479,479,464,464,588,588,588,588,588,588,588,588,588,540,540,540,540,540,540,540,540,540,540,540,540,540,523,523,523,523,523,523,523,523,523,523,523,523,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,515,515,515,515,515,515,515,503,503,503,503,503,503,503,503,541,541,541,541,541,541,541,541,541,541,567,567,567,567,567,567,567,567,567,567,567,567,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,506,506,506,506,506,506,506,506,506,555,555,555,555,555,555,555,508,508,508,487,487,487,487,487,487,487,487,487,473,473,473,473,473,473,473,473,473,473,473,469,469,469,469,469,469,469,469,469,469,469,469,469,442,442,442,442,442,442,442,442,551,551,551,551,551,551,551,551,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,506,506,506,506,506,485,485,485,485,485,485,485,485,485,495,495,495,495,495,495,495,495,493,493,493,493,493,493,493,493,493,493,493,493,493,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,525,525,525,525,525,525,525,525,525,525,525,525,525,525,537,537,537,537,537,537,537,537,537,537,537,537,537,476,476,476,476,476,476,476,476,476,476,476,476,476,529,529,529,529,529,529,529,529,542,542,542,542,542,542,542,542,542,542,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,443,443,443,443,443,443,443,443,443,443,530,530,530,530,530,530,530,542,542,542,542,542,542,542,542,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,528,528,528,528,528,528,528,470,470,470,470,470,541,541,541,541,541,541,541,541,541,541,541,541,572,572,572,572,528,528,528,528,528,528,528,528,528,528,528,528,528,475,475,475,475,475,475,475,475,475,475,475,475,475,475,529,529,529,529,529,529,529,529,529,529,529,529,529,529,542,542,542,542,542,542,542,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,468,468,468,468,468,468,468,541,541,541,541,541,541,541,541,541,541,541,541,541,541,476,476,495,495,495,495,495,495,495,495,495,495,538,538,538,520,554,554,554,554,554,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,538,538,538,538,538,538,538,538,538,538,538,538,560,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,442,442,442,442,442,442,442,442,475,475,475,475,567,567,567,567,567,567,567,567,567,567,567,509,509,509,509,509,509,509,509,509,509,509,509,509,509,461,502,502,502,502,502,502,502,555,555,555,555,555,555,555,503,503,503,503,503,503,503,503,453,453,453,453,453,453,453,453,453,467,467,467,467,467,467,467,594,594,550,550,550,550,550,550,550,550,550,550,550,496,496,496,496,496,496,496,460,460,460,460,460,460,460,460,460,460,460,460,460,460,455,455,455,455,455,455,455,550,550,550,550,550,550,550,570,570,570,570,570,570,570,570,570,570,529,529,529,529,529,529,529,529,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,524,524,524,524,524,524,524,524,524,524,524,524,551,551,551,551,551,551,551,551,551,551,551,551,550,550,550,550,550,550,550,550,550,550,550,550,534,534,534,534,534,534,534,534,534,515,515,568,568,568,568,568,568,568,526,526,526,526,526,526,503,503,484,484,484,484,484,484,484,484,484,484,484,497,497,497,497,497,497,497,497,497,497,497,497,558,558,558,558,558,558,558,558,558,558,558,558,558,525,496,496,496,496,496,496,496,496,496,593,593,593,593,593,593,593,593,593,593,593,593,593,593,593,556,556,556,556,511,511,511,511,511,511,511,511,511,511,511,486,486,486,486,486,491,491,491,491,491,491,491,491,491,506,506,506,506,506,527,527,527,527,527,527,527,522,522,522,522,522,522,522,516,516,516,516,516,516,516,516,516,516,516,516,530,530,530,530,530,530,530,530,530,530,530,530,565,565,565,565,505,505,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,517,517,530,530,530,530,530,530,530,530,530,530,530,530,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,570,546,546,546,546,546,546,546,546,546,546,495,495,495,495,495,495,495,502,502,502,554,554,554,554,554,554,554,554,537,537,537,537,509,509,509,509,554,554,554,554,554,554,554,554,554,554,548,548,548,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,443,443,443,443,443,443,443,443,443,540,540,540,540,540,540,540,540,540,540,549,549,549,549,549,549,549,549,500,500,500,500,500,500,457,457,457,457,457,457,457,457,457,457,457,457,457,457,492,571,571,571,571,571,571,571,571,571,571,571,571,497,497,497,497,497,497,497,497,497,497,497,497,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,464,584,584,584,584,584,584,584,507,507,551,545,545,545,545,545,545,545,545,475,475,475,475,475,452,452,452,452,452,452,452,452,452,452,556,556,556,556,556,556,556,556,556,556,556,556,556,548,548,548,548,548,548,548,548,548,507,507,507,507,507,566,566,566,566,566,566,566,566,566,566,566,517,517,517,517,517,517,468,468,468,468,468,468,468,468,452,452,452,452,452,452,452,452,452,459,459,459,459,459,459,459,459,459,459,538,538,538,538,538,538,538,538,538,538,538,538,538,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,556,556,556,518,518,518,518,518,518,518,518,518,518,518,504,504,504,504,504,488,488,488,477,477,477,477,477,477,468,468,468,468,468,468,468,468,468,468,468,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,477,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,562,562,562,562,562,562,562,562,562,562,562,562,532,532,532,532,532,532,532,532,532,563,563,563,563,563,563,563,563,563,563,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,526,503,503,503,503,503,503,503,503,503,479,479,479,479,479,479,479,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,542,542,542,542,542,542,542,542,542,542,542,542,549,549,549,549,498,498,498,498,498,498,441,441,441,493,493,493,493,493,538,538,538,538,538,538,538,538,538,538,538,538,538,473,473,473,473,473,473,536,565,565,565,565,565,565,565,565,565,565,565,565,565,565,536,536,536,536,536,536,536,541,541,541,541,541,541,541,541,541,554,554,554,554,554,554,554,554,554,532,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,479,552,552,552,552,552,552,552,552,552,552,556,556,556,556,556,556,556,556,556,556,556,556,502,502,502,502,502,502,502,502,479,479,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,467,467,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,552,552,552,552,552,552,552,552,552,490,490,490,490,490,490,490,490,490,490,490,490,490,490,490,585,585,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,553,516,516,516,516,516,516,516,478,478,478,478,478,478,478,461,461,461,461,532,532,532,532,532,532,532,532,532,532,532,532,532,534,534,534,534,534,534,565,565,565,565,565,565,565,565,565,565,505,505,505,505,505,505,505,505,505,505,505,529,529,529,529,529,529,529,529,530,530,530,530,530,540,540,540,540,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,512,557,557,557,557,557,557,557,557,557,557,557,557,549,549,549,549,549,493,493,493,493,493,493,493,493,493,493,493,461,461,461,461,461,461,461,538,538,538,538,538,538,538,538,538,538,550,550,550,550,550,550,550,550,550,550,550,550,550,557,557,557,557,557,557,557,557,557,557,557,557,557,557,496,496,496,496,496,496,496,496,496,496,496,496,465,465,465,465,465,532,532,532,532,532,532,532,532,535,535,535,570,570,570,570,570,570,570,570,570,570,552,552,552,552,552,552,552,552,552,552,552,523,523,523,523,523,523,523,523,523,523,523,523,523,523,507,507,507,507,507,507,507,507,507,507,507,507,507,501,501,501,501,501,495,495,495,495,495,495,495,467,467,467,467,467,467,467,467,467,467,457,457,457,457,457,457,457,457,457,457,457,457,552,552,552,552,552,552,552,552,552,552,552,489,489,489,489,489,489,489,489,489,579,579,579,579,579,579,579,579,579,579,523,523,523,523,523,523,523,523,523,523,554,554,554,554,554,554,554,554,554,525,551,551,491,491,491,491,491,491,491,491,491,458,458,458,458,458,458,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,572,572,572,572,572,572,572,572,572,572,530,530,530,530,530,530,510,510,510,510,510,510,510,556,556,556,556,556,556,556,556,507,507,507,489,489,489,489,489,489,489,522,522,522,522,522,522,522,522,578,578,578,578,578,578,578,578,578,578,578,578,578,511,511,511,511,511,511,511,511,530,530,530,530,530,530,530,530,517,517,517,517,517,530,530,530,530,530,530,530,530,530,530,569,569,569,569,547,547,547,547,547,547,547,547,547,547,547,512,512,512,512,512,512,512,512,512,512,512,479,479,479,479,479,462,462,462,462,462,462,462,462,462,462,462,462,462,462,506,506,506,506,506,506,539,539,539,539,539,539,539,539,539,453,453,453,453,453,453,453,453,453,453,453,453,453,453,453,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,564,542,542,542,542,542,520,520,520,520,520,520,520,520,480,480,480,480,480,559,559,559,559,559,559,559,559,559,559,559,559,559,495,495,495,495,495,495,542,542,542,542,542,542,542,518,518,518,518,518,518,518,518,518,518,518,563,563,563,563,563,563,563,563,563,563,563,554,554,554,554,554,554,554,513,513,513,513,513,487,487,487,487,487,487,510,510,510,510,510,510,510,510,510,510,510,510,510,556,556,491,491,491,491,491,491,491,491,491,461,461,461,461,461,532,532,532,532,532,532,532,532,532,532,532,532,532,535,535,535,535,535,535,535,535,535,535,535,535,568,528,528,528,528,528,528,528,496,496,496,496,558,558,558,558,558,558,558,558,558,558,558,509,509,509,509,509,509,509,509,517,580,580,580,580,580,580,580,580,580,580,580,580,580,533,533,533,533,533,533,533,533,499,499,499,499,499,499,499,499,499,499,499,499,499,499,499,568,568,568,568,568,568,568,568,568,568,568,568,568,568,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,534,534,534,534,534,534,534,534,534,534,534,534,534,563,563,563,563,563,563,563,563,563,563,563,563,533,533,533,533,533,533,533,533,533,533,524,524,524,524,524,524,524,524,524,524,524,538,538,538,538,491,491,503,503,503,503,503,503,503,503,503,503,503,538,538,538,538,538,538,538,538,538,538,538,538,538,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,506,506,506,506,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,489,489,489,489,489,489,489,489,476,476,476,476,476,476,476,476,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,505,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,527,527,536,536,536,536,536,536,536,536,536,536,536,536,536,536,536,519,519,519,519,519,519,548,548,548,548,548,548,548,548,548,548,548,548,548,548,543,543,543,543,543,543,543,543,543,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,525,525,525,525,525,525,525,525,588,588,588,588,588,588,588,588,588,588,588,588,588,588,588,588,516,516,516,516,516,516,516,516,516,516,516,555,555,554,554,554,554,554,554,554,554,554,498,498,498,498,498,498,498,498,498,498,498,498,498,467,467,467,467,467,467,467,467,467,467,467,467,561,561,561,561,561,561,561,561,561,561,561,561,561,561,561,561,490,490,490,490,490,490,490,490,490,490,490,490,490,585,585,585,585,585,585,585,548,548,548,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,575,575,575,575,575,575,575,575,575,575,575,575,575,575,575,526,526,526,526,526,526,526,526,526,526,526,526,526,526,504,504,504,504,504,504,478,478,478,478,478,478,478,478,478,478,478,458,458,458,458,584,584,584,584,584,584,584,584,584,584,584,584,549,549,542,542,542,542,542,486,486,486,486,486,486,486,486,486,486,486,486,486,446,446,446,446,446,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,548,548,468,468,468,468,468,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,566,566,566,566,566,566,566,566,566,566,566,566,566,566,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,487,487,487,487,487,487,487,487,487,487,487,440,495,495,495,495,495,495,495,495,495,495,495,495,564,564,564,564,564,564,564,564,564,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,498,498,498,498,498,498,498,498,498,498,498,498,498,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,462,462,553,553,553,553,553,553,518,518,518,518,518,518,518,518,518,518,518,527,527,527,527,527,527,527,527,527,527,527,527,505,505,505,505,505,505,505,505,558,558,507,507,507,507,507,507,507,507,478,478,478,478,478,478,478,478,478,478,482,482,482,482,482,482,482,482,482,482,482,491,491,491,491,491,491,491,491,491,506,506,528,528,528,528,528,528,528,528,528,528,528,528,528,535,535,535,535,535,535,535,535,544,544,544,544,544,544,544,544,544,522,522,522,522,522,560,560,560,560,560,560,560,560,560,560,560,560,544,544,544,544,544,544,544,544,544,544,544,499,499,499,499,499,499,499,499,499,499,499,499,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,536,536,536,536,536,536,536,536,536,536,536,536,522,522,530,530,530,530,530,530,530,530,476,476,476,476,476,476,476,556,556,556,556,556,556,556,556,556,556,556,556,510,510,510,510,510,510,510,510,510,510,510,510,537,537,537,537,537,561,561,561,561,561,561,561,524,524,489,482,482,482,482,482,482,482,482,482,482,482,482,492,492,492,492,492,492,492,492,492,492,492,463,463,463,463,463,463,463,453,453,453,453,453,453,453,453,453,574,574,574,574,574,574,574,574,505,531,531,531,531,531,531,531,531,531,531,531,544,544,544,544,544,544,544,544,544,544,544,557,557,557,557,557,557,557,557,557,497,497,497,497,497,497,497,497,497,497,497,497,497,497,497,488,488,488,488,564,564,564,564,564,564,564,564,564,564,564,564,564,520,520,520,520,520,520,520,520,520,520,530,530,530,530,530,510,510,510,510,510,510,510,510,510,510,510,510,510,510,524,524,524,524,524,587,587,587,587,587,587,587,587,587,587,587,553,553,553,553,553,553,553,553,553,553,553,553,553,553,519,502,502,502,502,502,502,502,502,502,502,502,502,502,502,483,483,483,483,483,486,486,486,486,486,479,479,479,479,479,479,479,479,479,479,479,458,458,458,458,467,467,544,544,544,544,544,544,544,544,544,544,544,497,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,558,558,558,558,558,558,525,525,525,525,525,525,525,496,496,496,496,496,496,496,591,591,591,591,591,591,591,591,591,591,591,551,551,551,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,507,478,478,478,478,478,478,478,478,478,478,454,486,486,486,486,486,486,486,486,548,548,548,548,548,533,533,533,531,531,531,531,531,531,555,555,555,555,555,555,555,555,555,555,555,555,555,513,513,513,513,513,513,513,513,513,513,513,483,483,483,481,481,481,481,481,481,481,481,481,481,476,476,476,476,476,476,476,476,476,476,476,446,446,446,446,446,446,446,446,446,446,446,446,446,544,548,477,477,477,477,477,477,477,477,477,545,545,545,545,545,545,545,545,545,545,545,545,544,544,544,544,544,544,544,544,544,502,502,502,502,502,502,502,502,502,502,502,596,596,596,596,596,596,596,596,596,596,596,596,596,596,596,596,596,596,596,538,538,538,538,538,538,538,538,538,538,538,538,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,476,505,505,538,538,538,538,538,538,538,538,538,538,538,514,514,514,514,514,514,514,514,514,514,514,514,514,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,508,508,508,508,508,508,508,508,508,508,503,503,503,503,503,547,547,547,547,547,495,495,495,495,495,470,470,470,470,470,470,470,470,461,461,461,461,461,461,461,461,461,461,461,560,560,560,560,560,560,560,560,560,560,560,499,499,499,499,499,499,499,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,499,499,499,499,499,499,499,499,499,499,559,559,559,559,559,559,559,559,559,515,515,515,515,515,515,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,540,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,520,520,520,520,520,520,520,520,590,590,590,590,590,590,590,590,590,590,590,590,590,590,590,546,546,546,546,546,546,546,546,520,520,520,520,520,520,520,520,520,520,520,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,557,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,491,491,491,491,491,491,491,491,489,489,489,489,489,489,489,489,489,489,489,489,489,489,523,523,523,523,523,523,523,523,523,577,577,577,577,577,577,577,577,577,577,577,577,577,577,577,577,577,538,538,538,538,538,538,538,538,538,538,538,538,538,519,519,519,519,519,519,519,519,519,519,519,534,534,534,534,534,534,534,534,534,534,534,534,515,515,515,515,515,515,515,515,534,534,534,534,534,534,534,534,534,534,505,505,505,505,505,505,505,505,505,505,505,505,505,555,555,555,555,555,555,555,555,555,555,555,555,504,504,504,504,467,467,467,467,467,467,436,436,436,436,436,538,538,538,538,538,538,538,538,538,538,563,563,533,533,533,533,533,533,533,533,533,533,533,524,524,524,524,524,524,524,524,524,524,545,545,545,545,545,545,545,545,545,545,501,501,501,501,501,461,461,461,461,461,461,461,461,461,461,461,461,461,471,471,471,471,471,471,471,471,471,471,471,471,471,471,550,550,550,550,550,550,550,550,550,550,550,550,496,496,496,496,496,496,496,496,496,515,540,523,523,523,523,523,556,556,556,556,556,556,556,556,556,556,534,534,518,518,528,528,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,513,513,513,513,513,513,513,513,534,534,534,534,534,534,534,534,554,554,554,554,554,554,554,554,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,574,574,574,574,574,574,574,574,574,574,574,574,574,574,479,479,479,479,479,479,524,524,524,524,524,524,524,542,542,542,542,542,542,542,552,552,552,552,552,552,552,552,552,552,552,552,552,498,498,498,498,498,498,498,498,467,467,467,467,467,467,467,467,467,467,467,467,467,467,568,568,568,568,568,568,568,568,568,568,568,468,468,468,468,468,468,468,468,468,468,468,468,468,529,529,529,529,529,529,529,564,564,564,564,564,564,547,547,547,547,547,547,547,547,547,542,542,542,542,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,486,443,443,443,443,443,443,443,443,443,526,526,526,526,526,526,526,526,526,526,526,515,515,515,530,530,530,530,530,530,565,565,565,565,565,565,565,565,565,565,565,565,565,508,508,508,508,508,508,508,508,551,551,551,551,551,551,551,549,549,549,549,549,549,549,549,549,549,549,506,506,506,506,506,506,488,488,488,488,498,498,476,476,476,476,476,480,480,480,480,480,480,480,480,480,480,480,597,597,597,597,597,597,507,541,541,541,541,541,541,541,541,541,541,541,567,567,567,567,567,567,567,567,567,567,530,530,530,530,530,530,530,530,512,512,512,512,512,512,512,512,512,512,512,565,565,565,565,565,521,521,521,521,521,521,521,521,521,521,506,506,506,506,477,477,477,477,477,477,437,437,437,437,437,437,437,437,437,459,459,459,459,459,459,459,459,459,593,593,593,593,550,550,550,550,550,550,550,550,550,550,550,487,487,487,487,487,487,487,487,462,462,462,462,462,462,462,462,462,551,551,513,513,513,513,513,513,513,513,513,513,513,513,557,557,557,557,557,557,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,513,513,513,513,513,486,486,486,486,486,486,486,486,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,523,523,523,523,523,523,523,523,523,523,523,523,523,579,579,579,579,579,579,579,579,521,521,521,521,521,521,521,521,475,475,475,475,475,475,475,475,475,475,475,582,582,582,582,582,582,582,527,527,527,527,527,527,527,527,527,527,527,505,505,505,505,505,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,551,538,538,538,538,538,538,575,521,521,521,521,521,521,521,521,521,521,482,482,482,482,482,482,482,462,462,462,462,462,462,462,462,462,462,462,462,589,589,589,589,589,589,589,589,589,589,589,553,553,553,553,553,553,516,516,516,516,516,478,478,478,478,478,478,478,491,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,556,481,481,481,481,481,481,481,481,481,481,481,488,488,488,488,488,488,488,488,507,507,507,507,507,507,507,507,531,531,531,531,531,531,531,531,531,531,531,531,541,541,541,541,541,541,541,541,541,541,541,541,541,541,541,554,554,554,554,554,554,554,554,511,511,511,511,511,511,511,511,511,511,511,511,511,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,457,467,467,467,467,467,467,592,592,592,592,592,592,592,592,592,592,592,592,541,541,541,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,494,494,494,494,494,494,494,494,494,494,494,494,494,494,523,523,523,523,523,523,523,523,523,523,523,508,508,508,508,557,557,557,557,523,523,523,523,523,523,523,523,523,523,523,523,497,497,497,497,497,558,558,558,558,558,558,558,496,496,496,496,508,508,545,545,545,545,545,558,558,558,558,558,558,558,512,512,512,512,512,512,512,512,560,560,560,560,560,560,560,560,560,560,560,560,560,501,501,501,501,501,501,501,501,491,491,491,491,491,548,548,548,548,548,548,548,548,548,548,548,548,530,530,530,530,530,530,530,530,524,524,524,524,561,561,561,561,561,561,561,561,561,561,561,561,544,544,544,498,498,498,498,498,489,489,489,489,489,489,489,489,489,518,518,518,518,518,518,518,518,518,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,578,539,539,539,539,539,539,539,502,502,502,502,502,502,502,535,535,535,535,535,535,535,535,535,539,550,550,550,550,550,550,550,550,550,550,550,550,489,489,489,489,489,489,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,548,548,548,548,548,548,548,548,548,522,522,522,522,522,554,554,554,554,554,554,554,522,522,522,522,522,522,522,453,453,453,453,453,453,453,453,453,536,536,536,564,509,509,509,509,509,509,509,509,509,509,509,509,509,509,546,546,546,545,545,545,545,545,545,545,545,545,545,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,527,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,503,503,503,503,503,503,503,503,503,503,503,503,503,503,485,485,485,485,485,485,485,485,499,499,499,499,499,499,499,499,499,499,499,499,488,488,488,488,488,488,488,488,488,488,488,488,488,484,499,499,499,499,499,499,499,499,499,482,482,482,482,482,482,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,459,501,501,501,501,501,501,501,501,501,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,507,507,507,547,547,547,547,547,541,541,541,541,541,541,541,541,515,515,515,515,515,515,538,538,538,538,538,538,538,484,484,484,484,484,484,484,484,484,484,484,477,477,477,477,477,554,554,554,554,554,554,554,554,554,554,512,512,512,512,512,512,512,512,512,512,488,488,488,497,497,497,555,555,555,555,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,532,518,534,534,534,534,534,534,534,534,534,534,534,534,558,558,558,558,558,558,558,497,497,497,497,497,473,473,473,473,548,548,548,548,548,548,548,548,481,481,481,481,481,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,535,562,562,562,562,562,562,562,562,562,562,527,527,527,527,527,527,527,527,527,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,554,554,554,554,554,554,554,554,554,554,554,554,554,546,546,546,546,538,538,538,538,538,538,530,530,530,530,530,537,537,537,537,537,537,509,509,509,509,509,509,509,509,509,509,555,555,555,555,555,505,505,505,505,505,505,505,505,505,485,485,485,485,485,485,485,483,483,483,483,483,483,483,483,483,483,483,483,483,464,464,464,464,464,464,464,464,464,464,464,435,435,435,435,435,435,435,435,435,435,435,435,495,495,561,561,561,561,561,561,561,561,561,519,519,519,519,519,519,519,519,519,519,519,519,501,501,501,501,501,501,501,501,501,473,473,473,473,473,473,473,473,473,473,473,473,439,439,439,491,491,491,491,491,491,537,537,537,537,537,537,537,537,537,537,537,537,523,523,523,523,523,523,564,564,564,554,554,554,554,554,554,514,514,514,514,514,514,514,514,514,480,480,480,480,480,480,480,480,465,465,465,465,465,465,465,465,561,561,561,489,489,489,489,489,489,489,489,489,489,489,577,577,577,577,577,577,577,577,577,577,577,523,523,523,523,523,523,523,523,523,523,580,580,580,580,580,580,580,580,580,580,580,580,580,536,521,521,521,521,521,521,556,534,534,534,534,534,534,534,534,534,520,520,520,520,520,520,520,520,537,537,537,537,537,537,537,558,558,558,558,558,558,558,558,531,531,531,531,531,531,531,531,531,531,531,531,531,537,537,475,475,475,475,475,475,475,475,475,475,475,475,475,475,496,496,496,496,496,496,496,496,496,496,555,555,555,555,555,555,555,555,555,555,525,525,525,525,525,525,525,486,486,486,486,486,550,550,550,550,550,550,550,550,550,550,550,550,550,513,513,513,513,513,513,513,513,513,513,513,538,538,559,559,559,559,559,559,559,559,559,502,502,502,502,502,502,502,502,502,502,502,502,502,502,455,455,455,455,455,455,455,455,455,455,455,479,479,479,479,479,479,479,479,479,479,479,479,479,479,563,563,563,563,563,563,563,563,563,563,563,517,517,517,517,517,517,517,517,517,517,517,517,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,539,499,499,499,499,499,499,499,499,499,499,499,499,499,499,546,546,546,546,546,546,568,568,568,568,568,568,568,568,568,568,568,568,539,539,539,539,494,494,494,494,494,494,469,469,469,469,469,469,469,469,469,469,469,436,436,436,436,436,436,436,436,436,538,538,538,538,538,538,538,538,538,538,563,563,563,563,563,563,563,563,563,563,563,563,563,563,522,522,556,556,556,556,556,556,513,513,513,513,513,513,513,513,513,513,513,513,530,530,530,530,530,554,554,554,554,554,554,554,554,554,526,526,526,526,526,526,560,560,560,560,560,560,560,560,560,560,544,544,544,544,544,544,544,544,544,544,544,544,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,489,489,489,489,523,523,523,523,523,523,523,523,523,523,523,584,584,584,584,584,584,584,550,550,550,550,550,495,495,495,495,495,495,495,495,495,495,495,495,495,506,506,506,506,506,506,563,563,563,563,563,563,563,563,563,563,563,563,532,532,532,532,532,532,532,532,532,515,515,515,515,515,515,515,515,515,515,515,560,560,560,560,560,560,560,560,560,560,504,504,504,504,504,504,504,504,504,504,504,504,504,518,518,518,518,518,518,518,518,518,518,518,541,541,541,541,541,541,541,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,548,479,479,479,479,479,479,479,479,479,479,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,560,560,560,560,560,560,560,560,560,531,531,531,531,531,531,531,531,531,531,531,531,531,531,508,508,508,508,508,555,555,555,555,555,555,505,505,505,505,505,483,483,483,483,483,483,483,483,462,462,462,462,462,462,455,455,455,455,455,455,455,455,455,455,455,455,455,544,544,544,544,544,544,544,519,519,519,519,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,484,484,484,484,484,484,484,484,484,484,439,439,439,439,439,439,439,439,439,439,439,439,439,439,439,538,538,538,538,538,538,538,538,538,538,538,538,538,538,568,568,568,568,568,539,539,539,539,539,539,539,539,539,493,493,493,493,493,493,493,473,473,473,473,473,473,473,473,473,473,473,473,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,531,531,531,531,531,531,531,531,531,490,490,490,490,490,490,490,490,490,490,490,490,490,590,590,590,590,590,590,590,553,553,553,553,553,553,553,553,553,553,553,553,539,539,539,539,539,539,539,539,539,539,539,539,539,539,496,496,496,496,496,496,496,496,463,506,506,506,506,539,539,539,539,539,539,457,457,457,457,457,457,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,539,539,539,539,539,539,539,539,539,545,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,564,564,564,564,564,502,502,502,502,502,502,502,502,502,502,502,502,502,502,502,458,458,458,458,458,458,458,458,508,508,508,508,508,545,545,545,545,545,545,527,527,527,527,527,527,527,527,539,539,539,539,539,539,539,539,539,539,539,539,514,514,514,514,514,514,514,514,514,514,514,559,559,559,559,559,559,559,559,559,518,518,518,518,484,484,484,484,484,458,458,458,458,458,458,458,458,458,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,557,557,557,557,557,557,557,557,557,557,557,557,557,557,475,475,475,475,475,534,534,534,534,534,534,534,534,569,569,569,569,549,549,549,549,549,549,549,549,549,513,513,513,513,513,513,513,513,513,513,513,513,513,513,479,479,479,479,479,479,479,479,479,479,479,479,446,446,446,446,446,446,551,551,551,551,551,551,551,551,551,551,551,551,547,547,547,547,547,547,547,501,501,501,501,501,501,501,501,501,501,501,501,501,501,501,481,481,481,481,481,481,481,481,481,481,481,466,466,466,466,466,466,466,466,466,466,466,466,501,501,501,501,501,501,501,501,501,501,501,501,554,554,554,554,522,522,522,522,522,522,522,522,501,501,501,501,501,501,501,501,482,482,482,482,482,482,482,482,482,482,482,482,482,482,506,506,506,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,508,508,508,508,508,508,508,508,508,508,508,508,508,508,548,548,548,548,548,548,548,548,503,503,503,503,503,503,503,503,503,534,534,534,534,534,534,534,534,534,534,534,534,534,534,522,522,516,516,516,516,516,516,530,530,530,530,530,530,530,530,530,570,570,570,546,546,546,546,546,546,546,546,546,546,496,496,496,496,496,496,496,496,496,496,499,499,499,499,499,499,499,499,499,499,499,499,499,499,507,507,507,507,507,507,507,507,507,507,507,507,507,540,567,567,567,567,567,567,567,567,567,529,529,529,529,529,529,529,529,560,560,560,560,560,560,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,523,546,546,546,569,569,569,569,569,569,569,569,520,520,520,520,520,520,520,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,488,497,497,497,497,497,497,497,497,497,497,497,555,555,555,555,555,555,533,533,533,533,533,533,533,533,533,533,533,533,560,560,560,560,515,480,480,480,480,480,480,480,480,480,480,480,480,462,462,462,462,462,462,462,462,462,462,462,462,551,551,551,551,551,551,513,513,513,513,553,553,553,553,553,525,525,525,496,496,496,496,496,496,496,496,496,590,590,590,590,590,590,590,590,590,590,510,510,510,510,531,531,531,531,531,531,531,531,531,531,531,544,544,544,544,544,544,544,544,544,544,556,556,556,556,556,556,556,556,556,556,556,556,556,556,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,501,501,501,501,501,501,458,475,475,475,475,475,475,475,475,575,575,575,575,575,575,575,483,483,483,483,483,483,483,483,483,483,483,545,545,545,545,545,545,545,540,540,540,540,540,540,540,540,540,540,540,540,540,540,479,479,479,479,479,479,479,479,479,497,497,497,534,534,534,476,476,476,476,476,476,476,476,476,476,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,550,512,512,512,512,512,512,512,512,512,512,537,537,537,537,537,537,537,537,537,537,537,520,520,520,520,520,520,520,520,520,520,520,587,536,536,536,536,536,536,536,536,536,536,536,536,555,555,555,555,555,555,555,555,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,480,483,483,483,483,483,483,570,570,570,570,570,570,570,570,570,570,524,524,524,524,524,524,524,524,524,524,498,498,498,498,498,498,498,498,498,456,456,456,456,493,493,493,493,493,493,493,493,493,493,493,493,493,493,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,544,518,518,518,518,518,518,588,588,588,588,588,588,588,588,588,588,588,588,588,588,588,538,538,538,538,538,538,538,538,538,538,538,538,516,516,516,516,516,516,516,589,589,589,589,589,546,546,546,546,546,546,546,546,546,546,546,546,532,532,532,532,532,532,532,532,532,532,527,527,527,527,527,527,527,527,527,527,547,547,547,547,547,547,547,547,547,547,501,501,501,463,463,463,463,463,463,463,463,457,457,457,457,457,457,457,457,457,457,581,581,581,581,581,581,581,581,581,581,581,581,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,583,583,583,583,583,583,583,583,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,553,553,553,553,553,553,553,553,553,553,553,522,522,522,522,522,522,498,498,498,498,498,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,497,497,497,497,497,497,497,497,497,497,497,497,497,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,533,527,527,527,527,527,527,527,527,527,527,527,527,532,532,532,532,532,532,487,487,487,487,487,487,546,546,546,546,546,546,546,546,546,523,523,523,523,523,523,547,547,547,547,547,547,496,496,473,473,473,473,473,473,473,473,473,473,500,500,500,500,500,500,500,500,500,500,500,500,500,500,536,536,536,536,536,536,536,536,536,536,536,536,536,522,522,522,522,522,522,522,527,527,527,527,527,527,527,478,478,478,478,478,582,582,582,582,582,582,582,582,582,582,530,530,530,530,530,530,530,530,530,530,530,530,530,511,511,511,511,511,511,511,550,550,550,550,550,550,550,550,550,495,495,495,495,495,495,495,495,460,460,460,460,460,460,501,501,501,501,501,501,501,501,501,501,552,552,552,552,552,552,552,552,552,552,552,552,552,527,527,527,527,527,527,527,527,527,527,527,527,561,561,561,561,561,561,561,561,561,561,509,509,509,509,561,561,522,522,522,522,522,522,522,507,507,507,507,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,557,557,557,557,502,502,502,502,502,502,469,469,469,469,469,501,501,501,501,501,501,501,501,501,554,554,554,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,481,481,481,481,481,481,481,481,481,481,481,481,481,500,500,500,500,500,500,500,500,500,500,500,500,542,542,542,542,557,557,557,557,557,557,557,557,557,557,557,557,557,501,501,501,501,501,501,501,501,501,501,501,501,467,467,467,467,467,467,467,467,467,442,442,442,442,442,442,442,442,442,442,442,442,442,442,442,442,442,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,550,550,550,550,550,550,550,550,550,550,550,550,498,498,498,498,498,498,498,498,498,498,498,498,442,442,442,442,442,442,442,442,489,489,489,489,489,489,489,489,534,534,534,534,534,534,479,479,479,479,479,479,479,479,479,479,479,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,558,491,491,491,491,491,491,491,561,561,561,561,561,561,561,561,561,561,561,561,561,472,472,472,472,472,472,472,472,472,472,472,521,521,521,521,521,521,521,521,521,521,515,515,515,515,515,530,530,530,530,530,530,530,530,530,530,530,530,530,530,563,563,563,563,563,563,563,563,563,521,521,521,521,521,521,521,521,521,521,521,521,521,521,521,583,583,583,583,583,583,583,583,583,583,583,583,583,583,583,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,458,458,458,458,458,458,458,458,458,458,458,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,549,506,506,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,473,473,473,473,503,503,503,503,503,503,565,565,565,565,565,565,547,547,547,547,547,547,547,547,547,547,547,508,508,508,508,508,508,508,508,485,485,485,485,485,485,485,485,485,485,485,464,464,464,464,464,464,464,464,464,464,464,464,464,435,435,435,435,435,435,435,435,435,435,435,435,435,435,435,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,561,561,561,561,561,561,561,561,561,561,561,561,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,493,470,470,470,470,470,470,470,470,481,481,481,481,481,481,481,481,515,515,515,576,576,576,576,576,576,576,576,576,576,576,524,524,583,583,583,583,583,583,583,583,583,583,583,583,583,549,524,524,524,524,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,590,590,590,590,590,590,590,590,590,590,516,516,516,516,516,516,516,516,516,516,516,516,516,516,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,546,544,544,544,544,544,544,544,521,521,521,521,521,521,521,521,521,521,521,521,545,545,545,545,545,545,545,545,545,545,545,545,545,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,504,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,530,566,566,566,566,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,477,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,456,573,573,573,573,573,573,573,573,573,573,573,573,573,534,534,534,534,523,523,523,523,523,523,523,536,536,536,536,536,519,519,519,519,519,519,553,553,553,553,553,553,553,553,547,547,547,547,547,547,547,547,547,547,547,543,543,543,543,543,543,543,543,543,489,489,489,489,489,489,440,491,491,491,491,491,491,491,491,491,491,491,491,491,491,551,551,551,551,551,551,551,551,551,506,506,506,506,506,506,506,486,486,486,486,486,486,486,486,486,486,473,473,473,473,473,503,503,503,503,503,503,503,503,503,503,503,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,554,538,538,538,538,538,538,538,538,538,538,573,573,573,573,573,514,514,514,514,514,514,514,514,514,514,514,514,459,459,459,459,459,475,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,567,494,494,494,494,494,494,494,494,494,494,494,494,552,552,552,552,552,552,552,552,552,552,552,552,552,552,507,507,532,532,532,532,532,551,551,551,551,551,478,478,478,478,478,478,478,478,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,475,562,562,562,562,562,562,562,479,479,479,479,479,479,479,479,479,479,479,479,465,465,465,465,465,465,465,465,465,465,465,465,465,592,592,592,592,592,592,592,592,541,541,541,541,541,541,541,541,541,541,487,487,487,487,487,487,487,489,489,489,489,489,489,489,489,489,489,489,521,521,521,521,521,521,521,521,521,550,550,550,550,550,525,525,525,525,525,525,525,547,547,547,547,547,547,547,547,547,547,547,547,547,547,547,497,497,497,497,497,497,497,497,510,510,510,510,510,510,544,544,544,544,544,544,544,544,544,544,544,527,527,527,527,527,527,527,547,547,547,547,547,547,547,547,489,489,489,489,489,489,489,489,489,489,489,489,440,440,440,440,440,440,440,440,491,491,491,491,551,551,551,551,551,551,551,551,551,551,551,506,506,506,506,506,506,486,486,486,486,486,486,486,486,486,473,473,473,473,473,473,473,473,473,473,473,473,473,473,473,503,503,559,559,559,559,559,559,559,559,559,559,559,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,497,497,497,497,497,497,563,563,563,563,563,563,563,563,563,563,563,563,563,512,512,512,512,512,512,512,512,512,512,512,492,492,492,492,492,492,492,492,492,492,492,492,507,507,507,507,507,507,507,507,507,545,545,545,545,545,545,492,492,492,492,492,492,492,492,492,492,492,492,492,492,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,522,522,522,522,522,522,522,560,560,560,560,560,560,560,560,522,522,522,522,522,522,522,547,547,547,547,510,510,510,510,510,510,510,510,510,510,510,510,510,483,483,483,484,484,484,484,484,484,484,484,484,484,484,484,484,484,492,492,492,492,492,492,492,492,492,492,492,492,492,460,460,460,460,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,484,567,567,509,509,509,461,461,461,461,461,461,501,501,501,501,501,501,501,501,501,501,501,501,548,548,548,548,548,548,497,497,497,497,469,469,469,469,469,469,469,469,443,443,443,443,443,443,443,443,443,443,443,443,546,546,546,546,546,546,546,546,546,546,546,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,525,525,525,525,525,525,525,525,525,525,582,582,582,582,582,582,582,582,582,523,523,523,523,523,523,523,523,523,523,477,477,477,477,477,477,477,477,477,477,477,477,477,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,486,486,486,486,486,486,486,486,486,486,486,486,577,577,577,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,537,524,524,524,524,524,524,560,560,560,495,495,495,495,495,495,495,495,585,585,585,585,585,585,585,585,585,585,585,585,585,546,546,546,546,546,546,546,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,513,513,513,513,513,513,513,513,513,513,513,541,478,505,505,505,505,505,505,505,505,505,505,505,505,505,505,505,551,551,551,551,551,551,551,551,551,551,551,551,551,492,492,481,481,481,481,481,481,481,481,481,481,481,481,481,481,564,564,564,564,564,564,564,564,492,492,492,492,492,492,492,492,492,492,492,492,492,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,469,564,564,564,564,564,564,564,564,564,564,564,559,559,559,559,559,559,559,559,559,559,559,559,559,559,497,497,497,497,497,497,450,450,450,450,450,450,450,450,450,450,450,551,551,551,551,551,551,551,548,548,548,548,548,548,548,489,489,489,489,489,489,489,489,489,489,564,564,564,564,564,564,564,564,563,563,563,563,563,496,496,496,496,496,496,496,496,496,496,496,496,496,496,496,469,469,469,469,469,469,469,469,469,469,560,560,560,560,550,550,550,550,550,550,550,550,550,550,550,550,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,509,563,563,563,563,563,563,520,520,520,520,520,520,520,520,520,528,528,528,528,528,528,528,528,553,553,553,553,553,553,553,553,517,517,517,517,517,517,517,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,525,485,485,485,485,485,485,485,485,485,485,485,485,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,555,497,497,497,497,497,497,497,497,497,497,497,497,497,497,467,467,467,467,467,467,467,467,467,467,467,467,467,467,458,458,458,458,458,553,553,553,553,553,553,553,515,515,515,515,515,515,515,515,515,515,515,515,515,515,530,530,515,515,515,515,515,515,515,515,546,546,546,546,569,569,569,569,569,569,569,520,520,520,520,520,520,520,520,520,520,492,492,492,492,492,492,492,492,492,492,492,492,492,506,506,506,506,506,533,533,533,533,533,533,533,533,533,496,496,496,496,496,496,496,496,496,496,496,496,554,554,554,554,554,554,554,554,554,554,554,554,554,554,525,525,525,525,525,525,525,525,525,525,525,539,539,539,539,539,539,539,539,539,539,539,539,539,492,492,492,492,492,492,492,492,497,497,497,497,559,559,559,559,559,559,537,537,537,537,537,537,537,537,537,537,495,495,495,495,495,495,495,495,495,470,470,470,470,470,470,470,470,470,470,470,470,470,467,467,467,467,467,467,467,467,467,467,467,467,467,467,549,549,549,549,549,549,549,549,549,549,549,549,549,477,477,477,477,500,500,500,500,500,500,500,500,500,500,500,548,548,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,497,497,497,497,497,497,497,555,555,533,533,533,533,526,526,526,526,526,540,540,540,540,540,540,540,540,540,540,540,529,529,529,529,529,529,529,529,529,529,529,529,529,555,555,555,555,555,555,555,555,555,555,555,555,555,503,503,503,503,503,503,503,503,503,503,503,503,503,503,503,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,454,453,453,453,453,453,453,453,453,534,534,534,534,534,534,534,534,534,534,534,534,534,534,525,525,525,525,525,525,525,525,525,525,544,544,544,544,544,544,559,559,559,559,559,559,559,559,523,523,523,523,523,523,523,523,523,504,504,504,504,504,504,504,480,480,480,480,480,480,480,480,480,480,440,440,440,440,440,440,538,538,538,538,538,538,538,538,538,566,566,566,566,566,566,566,566,524,524,524,524,524,524,455,455,455,455,455,455,455,526,526,526,526,526,526,526,526,526,526,526,526,526,526,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,542,554,554,554,554,554,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,516,487,487,487,487,490,490,490,490,490,490,490,490,475,475,475,475,475,475,475,475,475,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,510,510,510,510,510,510,510,510,510,510,510,510,510,560,560,560,560,560,560,503,503,503,503,503,503,503,503,503,503,503,503,503,503,453,453,453,453,453,453,453,470,470,470,470,470,470,590,590,590,535,535,535,535,535,535,535,535,535,535,535,559,559,559,559,559,559,559,559,559,559,559,559,534,534,534,534,534,534,534,534,534,534,534,560,560,560,560,560,560,560,560,560,560,560,560,560,560,560,521,521,521,521,521,521,521,521,521,521,521,521,521,502,502,502,502,502,502,502,502,502,502,502,486,486,486,486,483,483,483,483,483,483,483,483,483,483,483,483,483,483,483,448,448,448,448,448,448,448,448,448,448,467,467,467,467,467,467,467,594,594,594,594,594,594,594,594,594,594,594,594,550,550,550,550,550,550,550,550,550,550,550,550,550,503,503,503,503,503,503,503,503,503,503,503,489,489,489,493,493,493,493,493,493,493,493,493,480,480,480,480,480,480,480,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,446,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,548,492,492,492,492,492,492,492,492,492,492,492,492,492,492,443,443,443,443,443,443,443,443,443,443,443,443,538,538,538,538,538,538,538,538,538,538,538,538,538,538,538,548,492,492,492,492,492,492,492,492,492,492,492,440,440,440,440,518,518,518,518,518,518,518,518,518,518,518,518,518,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,534,548,548,548,548,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,477,541,541,541,541,541,541,541,541,541,541,543,543,543,543,543,543,543,543,543,543,521,521,521,521,521,521,521,521,521,547,547,547,547,547,547,547,547,547,547,547,547,547,547,529,529,529,529,529,529,529,529,529,564,564,564,564,564,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,482,464,472,472,472,472,472,472,492,492,492,492,492,492,492,492,492,492,492,492,492,492,492,468,468,468,468,468,470,470,470,470,470,542,542,542,542,542,542,542,542,542,542,542,542,542,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,575,521,521,521,521,521,521,484,484,484,484,484,503,503,503,503,503,550,550,550,550,550,550,550,550,550,550,504,504,504,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,535,544,544,544,544,557,557,557,557,557,557,557,557,557 0 233.909891 0 0 0 diff --git a/test/dna_ideal_slow5.exp b/test/dna_ideal_slow5.exp index 536466f..9253f7f 100755 --- a/test/dna_ideal_slow5.exp +++ b/test/dna_ideal_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN106 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!7468!- 0 2048 -237.4102 748.5801 4000 67167 520,520,520,520,520,520,520,520,520,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,506,506,506,506,506,506,506,506,506,463,463,463,463,463,463,463,463,463,519,519,519,519,519,519,519,519,519,485,485,485,485,485,485,485,485,485,496,496,496,496,496,496,496,496,496,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,481,481,481,481,481,481,481,481,481,525,525,525,525,525,525,525,525,525,467,467,467,467,467,467,467,467,467,469,469,469,469,469,469,469,469,469,475,475,475,475,475,475,475,475,475,495,495,495,495,495,495,495,495,495,482,482,482,482,482,482,482,482,482,491,491,491,491,491,491,491,491,491,531,531,531,531,531,531,531,531,531,510,510,510,510,510,510,510,510,510,494,494,494,494,494,494,494,494,494,471,471,471,471,471,471,471,471,471,517,517,517,517,517,517,517,517,517,494,494,494,494,494,494,494,494,494,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,481,481,531,531,531,531,531,531,531,531,531,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,540,540,540,540,540,540,540,540,540,494,494,494,494,494,494,494,494,494,473,473,473,473,473,473,473,473,473,445,445,445,445,445,445,445,445,445,456,456,456,456,456,456,456,456,456,528,528,528,528,528,528,528,528,528,445,445,445,445,445,445,445,445,445,433,433,433,433,433,433,433,433,433,526,526,526,526,526,526,526,526,526,492,492,492,492,492,492,492,492,492,521,521,521,521,521,521,521,521,521,485,485,485,485,485,485,485,485,485,469,469,469,469,469,469,469,469,469,468,468,468,468,468,468,468,468,468,453,453,453,453,453,453,453,453,453,449,449,449,449,449,449,449,449,449,457,457,457,457,457,457,457,457,457,423,423,423,423,423,423,423,423,423,440,440,440,440,440,440,440,440,440,531,531,531,531,531,531,531,531,531,467,467,467,467,467,467,467,467,467,508,508,508,508,508,508,508,508,508,488,488,488,488,488,488,488,488,488,502,502,502,502,502,502,502,502,502,438,438,438,438,438,438,438,438,438,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,503,503,503,503,503,503,503,503,503,529,529,529,529,529,529,529,529,529,467,467,467,467,467,467,467,467,467,475,475,475,475,475,475,475,475,475,528,528,528,528,528,528,528,528,528,497,497,497,497,497,497,497,497,497,478,478,478,478,478,478,478,478,478,521,521,521,521,521,521,521,521,521,472,472,472,472,472,472,472,472,472,458,458,458,458,458,458,458,458,458,502,502,502,502,502,502,502,502,502,521,521,521,521,521,521,521,521,521,473,473,473,473,473,473,473,473,473,449,449,449,449,449,449,449,449,449,437,437,437,437,437,437,437,437,437,445,445,445,445,445,445,445,445,445,562,562,562,562,562,562,562,562,562,512,512,512,512,512,512,512,512,512,465,465,465,465,465,465,465,465,465,441,441,441,441,441,441,441,441,441,418,418,418,418,418,418,418,418,418,451,451,451,451,451,451,451,451,451,516,516,516,516,516,516,516,516,516,493,493,493,493,493,493,493,493,493,442,442,442,442,442,442,442,442,442,494,494,494,494,494,494,494,494,494,504,504,504,504,504,504,504,504,504,509,509,509,509,509,509,509,509,509,460,460,460,460,460,460,460,460,460,508,508,508,508,508,508,508,508,508,491,491,491,491,491,491,491,491,491,525,525,525,525,525,525,525,525,525,486,486,486,486,486,486,486,486,486,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,421,421,421,421,421,421,421,421,421,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,528,461,461,461,461,461,461,461,461,461,434,434,434,434,434,434,434,434,434,525,525,525,525,525,525,525,525,525,519,519,519,519,519,519,519,519,519,454,454,454,454,454,454,454,454,454,529,529,529,529,529,529,529,529,529,524,524,524,524,524,524,524,524,524,463,463,463,463,463,463,463,463,463,475,475,475,475,475,475,475,475,475,524,524,524,524,524,524,524,524,524,501,501,501,501,501,501,501,501,501,495,495,495,495,495,495,495,495,495,504,504,504,504,504,504,504,504,504,481,481,481,481,481,481,481,481,481,530,530,530,530,530,530,530,530,530,484,484,484,484,484,484,484,484,484,453,453,453,453,453,453,453,453,453,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,516,516,516,516,516,516,516,516,516,486,486,486,486,486,486,486,486,486,470,470,470,470,470,470,470,470,470,448,448,448,448,448,448,448,448,448,426,426,426,426,426,426,426,426,426,427,427,427,427,427,427,427,427,427,521,521,521,521,521,521,521,521,521,517,517,517,517,517,517,517,517,517,484,484,484,484,484,484,484,484,484,511,511,511,511,511,511,511,511,511,534,534,534,534,534,534,534,534,534,468,468,468,468,468,468,468,468,468,467,467,467,467,467,467,467,467,467,540,540,540,540,540,540,540,540,540,494,494,494,494,494,494,494,494,494,473,473,473,473,473,473,473,473,473,445,445,445,445,445,445,445,445,445,452,452,452,452,452,452,452,452,452,535,535,535,535,535,535,535,535,535,467,467,467,467,467,467,467,467,467,511,511,511,511,511,511,511,511,511,478,478,478,478,478,478,478,478,478,493,493,493,493,493,493,493,493,493,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,521,521,521,521,521,521,521,521,521,487,487,487,487,487,487,487,487,487,468,468,468,468,468,468,468,468,468,446,446,446,446,446,446,446,446,446,461,461,461,461,461,461,461,461,461,529,529,529,529,529,529,529,529,529,472,472,472,472,472,472,472,472,472,458,458,458,458,458,458,458,458,458,502,502,502,502,502,502,502,502,502,521,521,521,521,521,521,521,521,521,473,473,473,473,473,473,473,473,473,453,453,453,453,453,453,453,453,453,469,469,469,469,469,469,469,469,469,467,467,467,467,467,467,467,467,467,448,448,448,448,448,448,448,448,448,478,478,478,478,478,478,478,478,478,527,527,527,527,527,527,527,527,527,459,459,459,459,459,459,459,459,459,429,429,429,429,429,429,429,429,429,514,514,514,514,514,514,514,514,514,513,513,513,513,513,513,513,513,513,482,482,482,482,482,482,482,482,482,492,492,492,492,492,492,492,492,492,470,470,470,470,470,470,470,470,470,519,519,519,519,519,519,519,519,519,445,445,445,445,445,445,445,445,445,416,416,416,416,416,416,416,416,416,510,510,510,510,510,510,510,510,510,513,513,513,513,513,513,513,513,513,484,484,484,484,484,484,484,484,484,504,504,504,504,504,504,504,504,504,457,457,457,457,457,457,457,457,457,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,514,514,514,514,514,514,514,514,514,457,457,457,457,457,457,457,457,457,441,441,441,441,441,441,441,441,441,561,561,561,561,561,561,561,561,561,521,521,521,521,521,521,521,521,521,515,515,515,515,515,515,515,515,515,479,479,479,479,479,479,479,479,479,448,448,448,448,448,448,448,448,448,439,439,439,439,439,439,439,439,439,512,512,512,512,512,512,512,512,512,488,488,488,488,488,488,488,488,488,502,502,502,502,502,502,502,502,502,479,479,479,479,479,479,479,479,479,525,525,525,525,525,525,525,525,525,487,487,487,487,487,487,487,487,487,457,457,457,457,457,457,457,457,457,455,455,455,455,455,455,455,455,455,469,469,469,469,469,469,469,469,469,467,467,467,467,467,467,467,467,467,444,444,444,444,444,444,444,444,444,468,468,468,468,468,468,468,468,468,519,519,519,519,519,519,519,519,519,503,503,503,503,503,503,503,503,503,535,535,535,535,535,535,535,535,535,466,466,466,466,466,466,466,466,466,440,440,440,440,440,440,440,440,440,523,523,523,523,523,523,523,523,523,470,470,470,470,470,470,470,470,470,453,453,453,453,453,453,453,453,453,466,466,466,466,466,466,466,466,466,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,468,448,448,448,448,448,448,448,448,448,428,428,428,428,428,428,428,428,428,456,456,456,456,456,456,456,456,456,529,529,529,529,529,529,529,529,529,480,480,480,480,480,480,480,480,480,527,527,527,527,527,527,527,527,527,470,470,470,470,470,470,470,470,470,524,524,524,524,524,524,524,524,524,483,483,483,483,483,483,483,483,483,522,522,522,522,522,522,522,522,522,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,474,474,474,474,474,474,474,474,474,467,467,467,467,467,467,467,467,467,444,444,444,444,444,444,444,444,444,468,468,468,468,468,468,468,468,468,524,524,524,524,524,524,524,524,524,499,499,499,499,499,499,499,499,499,478,478,478,478,478,478,478,478,478,489,489,489,489,489,489,489,489,489,547,547,547,547,547,547,547,547,547,493,493,493,493,493,493,493,493,493,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,512,512,512,512,512,512,512,512,512,460,460,460,460,460,460,460,460,460,468,468,468,468,468,468,468,468,468,515,515,515,515,515,515,515,515,515,534,534,534,534,534,534,534,534,534,485,485,485,485,485,485,485,485,485,453,453,453,453,453,453,453,453,453,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,472,472,472,472,472,472,472,472,472,463,463,463,463,463,463,463,463,463,453,453,453,453,453,453,453,453,453,472,472,472,472,472,472,472,472,472,513,513,513,513,513,513,513,513,513,449,449,449,449,449,449,449,449,449,412,412,412,412,412,412,412,412,412,522,522,522,522,522,522,522,522,522,524,524,524,524,524,524,524,524,524,486,486,486,486,486,486,486,486,486,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,555,555,555,555,555,555,555,555,555,511,511,511,511,511,511,511,511,511,512,512,512,512,512,512,512,512,512,497,497,497,497,497,497,497,497,497,442,442,442,442,442,442,442,442,442,495,495,495,495,495,495,495,495,495,515,515,515,515,515,515,515,515,515,524,524,524,524,524,524,524,524,524,491,491,491,491,491,491,491,491,491,477,477,477,477,477,477,477,477,477,468,468,468,468,468,468,468,468,468,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,444,444,444,444,444,444,444,444,444,529,529,529,529,529,529,529,529,529,475,475,475,475,475,475,475,475,475,449,449,449,449,449,449,449,449,449,440,440,440,440,440,440,440,440,440,454,454,454,454,454,454,454,454,454,534,534,534,534,534,534,534,534,534,467,467,467,467,467,467,467,467,467,443,443,443,443,443,443,443,443,443,520,520,520,520,520,520,520,520,520,457,457,457,457,457,457,457,457,457,431,431,431,431,431,431,431,431,431,502,502,502,502,502,502,502,502,502,504,504,504,504,504,504,504,504,504,509,509,509,509,509,509,509,509,509,464,464,464,464,464,464,464,464,464,511,511,511,511,511,511,511,511,511,475,475,475,475,475,475,475,475,475,535,535,535,535,535,535,535,535,535,466,466,466,466,466,466,466,466,466,410,410,410,410,410,410,410,410,410,487,487,487,487,487,487,487,487,487,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,503,503,503,503,503,503,503,503,503,536,536,536,536,536,536,536,536,536,491,491,491,491,491,491,491,491,491,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,453,453,453,453,453,453,453,453,453,447,447,447,447,447,447,447,447,447,462,462,462,462,462,462,462,462,462,443,443,443,443,443,443,443,443,443,406,406,406,406,406,406,406,406,406,440,440,440,440,440,440,440,440,440,530,530,530,530,530,530,530,530,530,482,482,482,482,482,482,482,482,482,434,434,434,434,434,434,434,434,434,423,423,423,423,423,423,423,423,423,517,517,517,517,517,517,517,517,517,454,454,454,454,454,454,454,454,454,545,545,545,545,545,545,545,545,545,503,503,503,503,503,503,503,503,503,536,536,536,536,536,536,536,536,536,491,491,491,491,491,491,491,491,491,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,448,448,448,448,448,448,448,448,448,423,423,423,423,423,423,423,423,423,440,440,440,440,440,440,440,440,440,562,562,562,562,562,562,562,562,562,509,509,509,509,509,509,509,509,509,536,536,536,536,536,536,536,536,536,487,487,487,487,487,487,487,487,487,449,449,449,449,449,449,449,449,449,468,468,468,468,468,468,468,468,468,524,524,524,524,524,524,524,524,524,499,499,499,499,499,499,499,499,499,485,485,485,485,485,485,485,485,485,511,511,511,511,511,511,511,511,511,534,534,534,534,534,534,534,534,534,489,489,489,489,489,489,489,489,489,463,463,463,463,463,463,463,463,463,426,426,426,426,426,426,426,426,426,469,469,469,469,469,469,469,469,469,529,529,529,529,529,529,529,529,529,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,474,474,474,474,474,474,474,474,474,509,509,509,509,509,509,509,509,509,484,484,484,484,484,484,484,484,484,502,502,502,502,502,502,502,502,502,524,524,524,524,524,524,524,524,524,499,499,499,499,499,499,499,499,499,525,525,525,525,525,525,525,525,525,484,484,484,484,484,484,484,484,484,461,461,461,461,461,461,461,461,461,433,433,433,433,433,433,433,433,433,435,435,435,435,435,435,435,435,435,507,507,507,507,507,507,507,507,507,475,475,475,475,475,475,475,475,475,533,533,533,533,533,533,533,533,533,487,487,487,487,487,487,487,487,487,449,449,449,449,449,449,449,449,449,424,424,424,424,424,424,424,424,424,467,467,467,467,467,467,467,467,467,530,530,530,530,530,530,530,530,530,511,511,511,511,511,511,511,511,511,456,456,456,456,456,456,456,456,456,438,438,438,438,438,438,438,438,438,512,512,512,512,512,512,512,512,512,489,489,489,489,489,489,489,489,489,516,516,516,516,516,516,516,516,516,457,457,457,457,457,457,457,457,457,444,444,444,444,444,444,444,444,444,522,522,522,522,522,522,522,522,522,475,475,475,475,475,475,475,475,475,433,433,433,433,433,433,433,433,433,405,405,405,405,405,405,405,405,405,495,495,495,495,495,495,495,495,495,507,507,507,507,507,507,507,507,507,486,486,486,486,486,486,486,486,486,516,516,516,516,516,516,516,516,516,459,459,459,459,459,459,459,459,459,461,461,461,461,461,461,461,461,461,536,536,536,536,536,536,536,536,536,466,466,466,466,466,466,466,466,466,440,440,440,440,440,440,440,440,440,514,514,514,514,514,514,514,514,514,442,442,442,442,442,442,442,442,442,466,466,466,466,466,466,466,466,466,503,503,503,503,503,503,503,503,503,446,446,446,446,446,446,446,446,446,521,521,521,521,521,521,521,521,521,524,524,524,524,524,524,524,524,524,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,525,525,525,525,525,525,525,525,525,478,478,478,478,478,478,478,478,478,448,448,448,448,448,448,448,448,448,434,434,434,434,434,434,434,434,434,401,401,401,401,401,401,401,401,401,503,503,503,503,503,503,503,503,503,534,534,534,534,534,534,534,534,534,517,517,517,517,517,517,517,517,517,481,481,481,481,481,481,481,481,481,445,445,445,445,445,445,445,445,445,461,461,461,461,461,461,461,461,461,529,529,529,529,529,529,529,529,529,471,471,471,471,471,471,471,471,471,462,462,462,462,462,462,462,462,462,512,512,512,512,512,512,512,512,512,464,464,464,464,464,464,464,464,464,510,510,510,510,510,510,510,510,510,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,495,495,495,495,495,495,495,495,495,520,520,520,520,520,520,520,520,520,474,474,474,474,474,474,474,474,474,519,519,519,519,519,519,519,519,519,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,530,530,530,530,530,530,530,530,530,511,511,511,511,511,511,511,511,511,456,456,456,456,456,456,456,456,456,438,438,438,438,438,438,438,438,438,512,512,512,512,512,512,512,512,512,489,489,489,489,489,489,489,489,489,516,516,516,516,516,516,516,516,516,457,457,457,457,457,457,457,457,457,446,446,446,446,446,446,446,446,446,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,474,474,474,474,474,474,474,474,474,453,453,453,453,453,453,453,453,453,447,447,447,447,447,447,447,447,447,455,455,455,455,455,455,455,455,455,437,437,437,437,437,437,437,437,437,463,463,463,463,463,463,463,463,463,491,491,491,491,491,491,491,491,491,461,461,461,461,461,461,461,461,461,518,518,518,518,518,518,518,518,518,482,482,482,482,482,482,482,482,482,509,509,509,509,509,509,509,509,509,503,503,503,503,503,503,503,503,503,542,542,542,542,542,542,542,542,542,489,489,489,489,489,489,489,489,489,449,449,449,449,449,449,449,449,449,431,431,431,431,431,431,431,431,431,529,529,529,529,529,529,529,529,529,525,525,525,525,525,525,525,525,525,473,473,473,473,473,473,473,473,473,426,426,426,426,426,426,426,426,426,468,468,468,468,468,468,468,468,468,503,503,503,503,503,503,503,503,503,446,446,446,446,446,446,446,446,446,523,523,523,523,523,523,523,523,523,530,530,530,530,530,530,530,530,530,491,491,491,491,491,491,491,491,491,472,472,472,472,472,472,472,472,472,448,448,448,448,448,448,448,448,448,474,474,474,474,474,474,474,474,474,505,505,505,505,505,505,505,505,505,486,486,486,486,486,486,486,486,486,514,514,514,514,514,514,514,514,514,505,505,505,505,505,505,505,505,505,542,542,542,542,542,542,542,542,542,491,491,491,491,491,491,491,491,491,468,468,468,468,468,468,468,468,468,453,453,453,453,453,453,453,453,453,472,472,472,472,472,472,472,472,472,510,510,510,510,510,510,510,510,510,461,461,461,461,461,461,461,461,461,466,466,466,466,466,466,466,466,466,509,509,509,509,509,509,509,509,509,445,445,445,445,445,445,445,445,445,408,408,408,408,408,408,408,408,408,505,505,505,505,505,505,505,505,505,512,512,512,512,512,512,512,512,512,464,464,464,464,464,464,464,464,464,434,434,434,434,434,434,434,434,434,440,440,440,440,440,440,440,440,440,525,525,525,525,525,525,525,525,525,473,473,473,473,473,473,473,473,473,424,424,424,424,424,424,424,424,424,421,421,421,421,421,421,421,421,421,528,528,528,528,528,528,528,528,528,530,530,530,530,530,530,530,530,530,488,488,488,488,488,488,488,488,488,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,447,447,447,447,447,447,447,447,447,424,424,424,424,424,424,424,424,424,466,466,466,466,466,466,466,466,466,519,519,519,519,519,519,519,519,519,503,503,503,503,503,503,503,503,503,537,537,537,537,537,537,537,537,537,478,478,478,478,478,478,478,478,478,439,439,439,439,439,439,439,439,439,466,466,466,466,466,466,466,466,466,519,519,519,519,519,519,519,519,519,478,478,478,478,478,478,478,478,478,446,446,446,446,446,446,446,446,446,474,474,474,474,474,474,474,474,474,509,509,509,509,509,509,509,509,509,480,480,480,480,480,480,480,480,480,476,476,476,476,476,476,476,476,476,522,522,522,522,522,522,522,522,522,523,523,523,523,523,523,523,523,523,463,463,463,463,463,463,463,463,463,465,465,465,465,465,465,465,465,465,536,536,536,536,536,536,536,536,536,469,469,469,469,469,469,469,469,469,450,450,450,450,450,450,450,450,450,531,531,531,531,531,531,531,531,531,487,487,487,487,487,487,487,487,487,479,479,479,479,479,479,479,479,479,467,467,467,467,467,467,467,467,467,444,444,444,444,444,444,444,444,444,468,468,468,468,468,468,468,468,468,532,532,532,532,532,532,532,532,532,521,521,521,521,521,521,521,521,521,484,484,484,484,484,484,484,484,484,443,443,443,443,443,443,443,443,443,431,431,431,431,431,431,431,431,431,525,525,525,525,525,525,525,525,525,515,515,515,515,515,515,515,515,515,481,481,481,481,481,481,481,481,481,538,538,538,538,538,538,538,538,538,467,467,467,467,467,467,467,467,467,465,465,465,465,465,465,465,465,465,539,539,539,539,539,539,539,539,539,453,453,453,453,453,453,453,453,453,502,502,502,502,502,502,502,502,502,510,510,510,510,510,510,510,510,510,511,511,511,511,511,511,511,511,511,467,467,467,467,467,467,467,467,467,561,561,561,561,561,561,561,561,561,516,516,516,516,516,516,516,516,516,450,450,450,450,450,450,450,450,450,408,408,408,408,408,408,408,408,408,493,493,493,493,493,493,493,493,493,507,507,507,507,507,507,507,507,507,519,519,519,519,519,519,519,519,519,484,484,484,484,484,484,484,484,484,457,457,457,457,457,457,457,457,457,455,455,455,455,455,455,455,455,455,469,469,469,469,469,469,469,469,469,468,468,468,468,468,468,468,468,468,444,444,444,444,444,444,444,444,444,431,431,431,431,431,431,431,431,431,529,529,529,529,529,529,529,529,529,523,523,523,523,523,523,523,523,523,478,478,478,478,478,478,478,478,478,434,434,434,434,434,434,434,434,434,428,428,428,428,428,428,428,428,428,506,506,506,506,506,506,506,506,506,441,441,441,441,441,441,441,441,441,453,453,453,453,453,453,453,453,453,468,468,468,468,468,468,468,468,468,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,517,517,517,517,517,517,517,517,517,481,481,481,481,481,481,481,481,481,445,445,445,445,445,445,445,445,445,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,465,465,465,465,465,465,465,465,465,434,434,434,434,434,434,434,434,434,532,532,532,532,532,532,532,532,532,530,530,530,530,530,530,530,530,530,486,486,486,486,486,486,486,486,486,449,449,449,449,449,449,449,449,449,456,456,456,456,456,456,456,456,456,531,531,531,531,531,531,531,531,531,472,472,472,472,472,472,472,472,472,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,462,462,462,462,462,462,462,462,462,509,509,509,509,509,509,509,509,509,485,485,485,485,485,485,485,485,485,554,554,554,554,554,554,554,554,554,503,503,503,503,503,503,503,503,503,529,529,529,529,529,529,529,529,529,474,474,474,474,474,474,474,474,474,426,426,426,426,426,426,426,426,426,469,469,469,469,469,469,469,469,469,529,529,529,529,529,529,529,529,529,491,491,491,491,491,491,491,491,491,468,468,468,468,468,468,468,468,468,444,444,444,444,444,444,444,444,444,427,427,427,427,427,427,427,427,427,503,503,503,503,503,503,503,503,503,506,506,506,506,506,506,506,506,506,509,509,509,509,509,509,509,509,509,487,487,487,487,487,487,487,487,487,524,524,524,524,524,524,524,524,524,495,495,495,495,495,495,495,495,495,442,442,442,442,442,442,442,442,442,469,469,469,469,469,469,469,469,469,505,505,505,505,505,505,505,505,505,477,477,477,477,477,477,477,477,477,489,489,489,489,489,489,489,489,489,546,546,546,546,546,546,546,546,546,481,481,481,481,481,481,481,481,481,522,522,522,522,522,522,522,522,522,519,519,519,519,519,519,519,519,519,466,466,466,466,466,466,466,466,466,483,483,483,483,483,483,483,483,483,521,521,521,521,521,521,521,521,521,457,457,457,457,457,457,457,457,457,441,441,441,441,441,441,441,441,441,525,525,525,525,525,525,525,525,525,442,442,442,442,442,442,442,442,442,511,511,511,511,511,511,511,511,511,534,534,534,534,534,534,534,534,534,470,470,470,470,470,470,470,470,470,494,494,494,494,494,494,494,494,494,495,495,495,495,495,495,495,495,495,509,509,509,509,509,509,509,509,509,474,474,474,474,474,474,474,474,474,499,499,499,499,499,499,499,499,499,520,520,520,520,520,520,520,520,520,484,484,484,484,484,484,484,484,484,535,535,535,535,535,535,535,535,535,469,469,469,469,469,469,469,469,469,448,448,448,448,448,448,448,448,448,524,524,524,524,524,524,524,524,524,457,457,457,457,457,457,457,457,457,428,428,428,428,428,428,428,428,428,550,550,550,550,550,550,550,550,550,500,500,500,500,500,500,500,500,500,453,453,453,453,453,453,453,453,453,467,467,467,467,467,467,467,467,467,493,493,493,493,493,493,493,493,493,475,475,475,475,475,475,475,475,475,525,525,525,525,525,525,525,525,525,479,479,479,479,479,479,479,479,479,424,424,424,424,424,424,424,424,424,437,437,437,437,437,437,437,437,437,530,530,530,530,530,530,530,530,530,477,477,477,477,477,477,477,477,477,466,466,466,466,466,466,466,466,466,493,493,493,493,493,493,493,493,493,509,509,509,509,509,509,509,509,509,522,522,522,522,522,522,522,522,522,461,461,461,461,461,461,461,461,461,427,427,427,427,427,427,427,427,427,515,515,515,515,515,515,515,515,515,535,535,535,535,535,535,535,535,535,501,501,501,501,501,501,501,501,501,529,529,529,529,529,529,529,529,529,489,489,489,489,489,489,489,489,489,450,450,450,450,450,450,450,450,450,426,426,426,426,426,426,426,426,426,424,424,424,424,424,424,424,424,424,502,502,502,502,502,502,502,502,502,504,504,504,504,504,504,504,504,504,509,509,509,509,509,509,509,509,509,460,460,460,460,460,460,460,460,460,511,511,511,511,511,511,511,511,511,478,478,478,478,478,478,478,478,478,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,532,532,532,532,532,532,532,532,532,501,501,501,501,501,501,501,501,501,528,528,528,528,528,528,528,528,528,469,469,469,469,469,469,469,469,469,450,450,450,450,450,450,450,450,450,531,531,531,531,531,531,531,531,531,487,487,487,487,487,487,487,487,487,477,477,477,477,477,477,477,477,477,464,464,464,464,464,464,464,464,464,449,449,449,449,449,449,449,449,449,439,439,439,439,439,439,439,439,439,512,512,512,512,512,512,512,512,512,486,486,486,486,486,486,486,486,486,505,505,505,505,505,505,505,505,505,497,497,497,497,497,497,497,497,497,524,524,524,524,524,524,524,524,524,459,459,459,459,459,459,459,459,459,429,429,429,429,429,429,429,429,429,519,519,519,519,519,519,519,519,519,514,514,514,514,514,514,514,514,514,466,466,466,466,466,466,466,466,466,514,514,514,514,514,514,514,514,514,466,466,466,466,466,466,466,466,466,475,475,475,475,475,475,475,475,475,521,521,521,521,521,521,521,521,521,459,459,459,459,459,459,459,459,459,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,491,491,491,491,491,491,491,491,491,469,469,469,469,469,469,469,469,469,449,449,449,449,449,449,449,449,449,448,448,448,448,448,448,448,448,448,531,531,531,531,531,531,531,531,531,485,485,485,485,485,485,485,485,485,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,455,455,455,455,455,455,455,455,455,450,450,450,450,450,450,450,450,450,442,442,442,442,442,442,442,442,442,463,463,463,463,463,463,463,463,463,538,538,538,538,538,538,538,538,538,486,486,486,486,486,486,486,486,486,463,463,463,463,463,463,463,463,463,437,437,437,437,437,437,437,437,437,463,463,463,463,463,463,463,463,463,493,493,493,493,493,493,493,493,493,473,473,473,473,473,473,473,473,473,520,520,520,520,520,520,520,520,520,485,485,485,485,485,485,485,485,485,538,538,538,538,538,538,538,538,538,465,465,465,465,465,465,465,465,465,434,434,434,434,434,434,434,434,434,529,529,529,529,529,529,529,529,529,524,524,524,524,524,524,524,524,524,466,466,466,466,466,466,466,466,466,440,440,440,440,440,440,440,440,440,512,512,512,512,512,512,512,512,512,491,491,491,491,491,491,491,491,491,528,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,474,474,474,474,474,474,474,474,474,509,509,509,509,509,509,509,509,509,492,492,492,492,492,492,492,492,492,508,508,508,508,508,508,508,508,508,446,446,446,446,446,446,446,446,446,405,405,405,405,405,405,405,405,405,485,485,485,485,485,485,485,485,485,510,510,510,510,510,510,510,510,510,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,452,452,452,452,452,452,452,452,452,474,474,474,474,474,474,474,474,474,505,505,505,505,505,505,505,505,505,487,487,487,487,487,487,487,487,487,520,520,520,520,520,520,520,520,520,488,488,488,488,488,488,488,488,488,445,445,445,445,445,445,445,445,445,524,524,524,524,524,524,524,524,524,470,470,470,470,470,470,470,470,470,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,473,473,473,473,473,473,473,473,473,510,510,510,510,510,510,510,510,510,523,523,523,523,523,523,523,523,523,474,474,474,474,474,474,474,474,474,539,539,539,539,539,539,539,539,539,451,451,451,451,451,451,451,451,451,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,413,413,413,413,413,413,413,413,413,509,509,509,509,509,509,509,509,509,508,508,508,508,508,508,508,508,508,460,460,460,460,460,460,460,460,460,511,511,511,511,511,511,511,511,511,481,481,481,481,481,481,481,481,481,511,511,511,511,511,511,511,511,511,530,530,530,530,530,530,530,530,530,469,469,469,469,469,469,469,469,469,486,486,486,486,486,486,486,486,486,524,524,524,524,524,524,524,524,524,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,464,475,475,475,475,475,475,475,475,475,494,494,494,494,494,494,494,494,494,498,498,498,498,498,498,498,498,498,513,513,513,513,513,513,513,513,513,442,442,442,442,442,442,442,442,442,516,516,516,516,516,516,516,516,516,522,522,522,522,522,522,522,522,522,486,486,486,486,486,486,486,486,486,474,474,474,474,474,474,474,474,474,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,455,466,466,466,466,466,466,466,466,466,466,466,466,466,466,466,466,466,466,458,458,458,458,458,458,458,458,458,435,435,435,435,435,435,435,435,435,448,448,448,448,448,448,448,448,448,469,469,469,469,469,469,469,469,469,516,516,516,516,516,516,516,516,516,515,515,515,515,515,515,515,515,515,470,470,470,470,470,470,470,470,470,470,470,470,470,470,470,470,470,470,500,500,500,500,500,500,500,500,500,477,477,477,477,477,477,477,477,477,531,531,531,531,531,531,531,531,531,465,465,465,465,465,465,465,465,465,434,434,434,434,434,434,434,434,434,529,529,529,529,529,529,529,529,529,520,520,520,520,520,520,520,520,520,470,470,470,470,470,470,470,470,470,460,460,460,460,460,460,460,460,460,504,504,504,504,504,504,504,504,504,520,520,520,520,520,520,520,520,520,484,484,484,484,484,484,484,484,484,535,535,535,535,535,535,535,535,535,469,469,469,469,469,469,469,469,469,444,444,444,444,444,444,444,444,444,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,554,554,554,554,554,554,554,554,554,511,511,511,511,511,511,511,511,511,515,515,515,515,515,515,515,515,515,521,521,521,521,521,521,521,521,521,484,484,484,484,484,484,484,484,484,463,463,463,463,463,463,463,463,463,453,453,453,453,453,453,453,453,453,429,429,429,429,429,429,429,429,429,400,400,400,400,400,400,400,400,400,456,456,456,456,456,456,456,456,456,505,505,505,505,505,505,505,505,505,484,484,484,484,484,484,484,484,484,506,506,506,506,506,506,506,506,506,529,529,529,529,529,529,529,529,529,461,461,461,461,461,461,461,461,461,529,529,529,529,529,529,529,529,529,524,524,524,524,524,524,524,524,524,466,466,466,466,466,466,466,466,466,483,483,483,483,483,483,483,483,483,517,517,517,517,517,517,517,517,517,464,464,464,464,464,464,464,464,464,471,471,471,471,471,471,471,471,471,510,510,510,510,510,510,510,510,510,461,461,461,461,461,461,461,461,461,458,458,458,458,458,458,458,458,458,509,509,509,509,509,509,509,509,509,534,534,534,534,534,534,534,534,534,487,487,487,487,487,487,487,487,487,449,449,449,449,449,449,449,449,449,468,468,468,468,468,468,468,468,468,528,528,528,528,528,528,528,528,528,496,496,496,496,496,496,496,496,496,473,473,473,473,473,473,473,473,473,520,520,520,520,520,520,520,520,520,469,469,469,469,469,469,469,469,469,434,434,434,434,434,434,434,434,434,440,440,440,440,440,440,440,440,440,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,475,475,475,475,475,475,475,475,475,523,523,523,523,523,523,523,523,523,480,480,480,480,480,480,480,480,480,463,463,463,463,463,463,463,463,463,448,448,448,448,448,448,448,448,448,422,422,422,422,422,422,422,422,422,400,400,400,400,400,400,400,400,400,482,482,482,482,482,482,482,482,482,480,480,480,480,480,480,480,480,480,496,496,496,496,496,496,496,496,496,535,535,535,535,535,535,535,535,535,517,517,517,517,517,517,517,517,517,479,479,479,479,479,479,479,479,479,443,443,443,443,443,443,443,443,443,468,468,468,468,468,468,468,468,468,519,519,519,519,519,519,519,519,519,505,505,505,505,505,505,505,505,505,541,541,541,541,541,541,541,541,541,468,468,468,468,468,468,468,468,468,461,461,461,461,461,461,461,461,461,531,531,531,531,531,531,531,531,531,482,482,482,482,482,482,482,482,482,489,489,489,489,489,489,489,489,489,548,548,548,548,548,548,548,548,548,503,503,503,503,503,503,503,503,503,529,529,529,529,529,529,529,529,529,479,479,479,479,479,479,479,479,479,426,426,426,426,426,426,426,426,426,451,451,451,451,451,451,451,451,451,538,538,538,538,538,538,538,538,538,465,465,465,465,465,465,465,465,465,427,427,427,427,427,427,427,427,427,515,515,515,515,515,515,515,515,515,537,537,537,537,537,537,537,537,537,494,494,494,494,494,494,494,494,494,444,444,444,444,444,444,444,444,444,521,521,521,521,521,521,521,521,521,523,523,523,523,523,523,523,523,523,478,478,478,478,478,478,478,478,478,433,433,433,433,433,433,433,433,433,403,403,403,403,403,403,403,403,403,479,479,479,479,479,479,479,479,479,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,474,474,474,474,474,474,474,474,474,522,522,522,522,522,522,522,522,522,523,523,523,523,523,523,523,523,523,463,463,463,463,463,463,463,463,463,465,465,465,465,465,465,465,465,465,536,536,536,536,536,536,536,536,536,469,469,469,469,469,469,469,469,469,450,450,450,450,450,450,450,450,450,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,463,463,463,463,463,463,463,463,463,425,425,425,425,425,425,425,425,425,457,457,457,457,457,457,457,457,457,509,509,509,509,509,509,509,509,509,532,532,532,532,532,532,532,532,532,489,489,489,489,489,489,489,489,489,450,450,450,450,450,450,450,450,450,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,454,454,454,454,454,454,454,454,454,545,545,545,545,545,545,545,545,545,494,494,494,494,494,494,494,494,494,524,524,524,524,524,524,524,524,524,496,496,496,496,496,496,496,496,496,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,481,481,530,530,530,530,530,530,530,530,530,484,484,484,484,484,484,484,484,484,458,458,458,458,458,458,458,458,458,472,472,472,472,472,472,472,472,472,510,510,510,510,510,510,510,510,510,457,457,457,457,457,457,457,457,457,462,462,462,462,462,462,462,462,462,523,523,523,523,523,523,523,523,523,493,493,493,493,493,493,493,493,493,447,447,447,447,447,447,447,447,447,521,521,521,521,521,521,521,521,521,525,525,525,525,525,525,525,525,525,476,476,476,476,476,476,476,476,476,422,422,422,422,422,422,422,422,422,435,435,435,435,435,435,435,435,435,555,555,555,555,555,555,555,555,555,496,496,496,496,496,496,496,496,496,519,519,519,519,519,519,519,519,519,460,460,460,460,460,460,460,460,460,518,518,518,518,518,518,518,518,518,459,459,459,459,459,459,459,459,459,514,514,514,514,514,514,514,514,514,460,460,460,460,460,460,460,460,460,456,456,456,456,456,456,456,456,456,520,520,520,520,520,520,520,520,520,512,512,512,512,512,512,512,512,512,461,461,461,461,461,461,461,461,461,470,470,470,470,470,470,470,470,470,513,513,513,513,513,513,513,513,513,487,487,487,487,487,487,487,487,487,553,553,553,553,553,553,553,553,553,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,520,520,520,520,520,520,520,520,520,474,474,474,474,474,474,474,474,474,524,524,524,524,524,524,524,524,524,457,457,457,457,457,457,457,457,457,431,431,431,431,431,431,431,431,431,501,501,501,501,501,501,501,501,501,489,489,489,489,489,489,489,489,489,486,486,486,486,486,486,486,486,486,509,509,509,509,509,509,509,509,509,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,451,451,451,451,451,451,451,451,451,467,467,467,467,467,467,467,467,467,510,510,510,510,510,510,510,510,510,529,529,529,529,529,529,529,529,529,461,461,461,461,461,461,461,461,461,523,523,523,523,523,523,523,523,523,519,519,519,519,519,519,519,519,519,450,450,450,450,450,450,450,450,450,500,500,500,500,500,500,500,500,500,501,501,501,501,501,501,501,501,501,509,509,509,509,509,509,509,509,509,472,472,472,472,472,472,472,472,472,493,493,493,493,493,493,493,493,493,520,520,520,520,520,520,520,520,520,460,460,460,460,460,460,460,460,460,405,405,405,405,405,405,405,405,405,485,485,485,485,485,485,485,485,485,510,510,510,510,510,510,510,510,510,521,521,521,521,521,521,521,521,521,482,482,482,482,482,482,482,482,482,453,453,453,453,453,453,453,453,453,443,443,443,443,443,443,443,443,443,516,516,516,516,516,516,516,516,516,478,478,478,478,478,478,478,478,478,538,538,538,538,538,538,538,538,538,466,466,466,466,466,466,466,466,466,455,455,455,455,455,455,455,455,455,538,538,538,538,538,538,538,538,538,462,462,462,462,462,462,462,462,462,542,542,542,542,542,542,542,542,542,484,484,484,484,484,484,484,484,484,546,546,546,546,546,546,546,546,546,508,508,508,508,508,508,508,508,508,494,494,494,494,494,494,494,494,494,529,529,529,529,529,529,529,529,529,499,499,499,499,499,499,499,499,499,520,520,520,520,520,520,520,520,520,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,464,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,531,531,531,531,531,531,531,531,531,502,502,502,502,502,502,502,502,502,449,449,449,449,449,449,449,449,449,439,439,439,439,439,439,439,439,439,516,516,516,516,516,516,516,516,516,460,460,460,460,460,460,460,460,460,410,410,410,410,410,410,410,410,410,491,491,491,491,491,491,491,491,491,480,480,480,480,480,480,480,480,480,496,496,496,496,496,496,496,496,496,530,530,530,530,530,530,530,530,530,498,498,498,498,498,498,498,498,498,490,490,490,490,490,490,490,490,490,502,502,502,502,502,502,502,502,502,446,446,446,446,446,446,446,446,446,513,513,513,513,513,513,513,513,513,515,515,515,515,515,515,515,515,515,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,477,477,477,477,477,477,477,477,477,489,489,489,489,489,489,489,489,489,552,552,552,552,552,552,552,552,552,518,518,518,518,518,518,518,518,518,484,484,484,484,484,484,484,484,484,470,470,470,470,470,470,470,470,470,447,447,447,447,447,447,447,447,447,427,427,427,427,427,427,427,427,427,471,471,471,471,471,471,471,471,471,500,500,500,500,500,500,500,500,500,442,442,442,442,442,442,442,442,442,550,550,550,550,550,550,550,550,550,470,470,470,470,470,470,470,470,470,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,520,520,520,520,520,520,520,520,520,468,468,468,468,468,468,468,468,468,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,531,531,531,531,531,531,531,531,531,467,467,467,467,467,467,467,467,467,440,440,440,440,440,440,440,440,440,513,513,513,513,513,513,513,513,513,479,479,479,479,479,479,479,479,479,446,446,446,446,446,446,446,446,446,405,405,405,405,405,405,405,405,405,412,412,412,412,412,412,412,412,412,499,499,499,499,499,499,499,499,499,484,484,484,484,484,484,484,484,484,491,491,491,491,491,491,491,491,491,531,531,531,531,531,531,531,531,531,508,508,508,508,508,508,508,508,508,497,497,497,497,497,497,497,497,497,485,485,485,485,485,485,485,485,485,502,502,502,502,502,502,502,502,502,526,526,526,526,526,526,526,526,526,486,486,486,486,486,486,486,486,486,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,512,512,512,512,512,512,512,512,512,474,474,474,474,474,474,474,474,474,446,446,446,446,446,446,446,446,446,445,445,445,445,445,445,445,445,445,416,416,416,416,416,416,416,416,416,456,456,456,456,456,456,456,456,456,500,500,500,500,500,500,500,500,500,523,523,523,523,523,523,523,523,523,460,460,460,460,460,460,460,460,460,405,405,405,405,405,405,405,405,405,482,482,482,482,482,482,482,482,482,486,486,486,486,486,486,486,486,486,507,507,507,507,507,507,507,507,507,519,519,519,519,519,519,519,519,519,476,476,476,476,476,476,476,476,476,422,422,422,422,422,422,422,422,422,435,435,435,435,435,435,435,435,435,556,556,556,556,556,556,556,556,556,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,526,526,526,526,526,526,526,526,526,495,495,495,495,495,495,495,495,495,479,479,479,479,479,479,479,479,479,516,516,516,516,516,516,516,516,516,464,464,464,464,464,464,464,464,464,434,434,434,434,434,434,434,434,434,466,466,466,466,466,466,466,466,466,516,516,516,516,516,516,516,516,516,483,483,483,483,483,483,483,483,483,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,421,421,421,421,421,421,421,421,421,521,521,521,521,521,521,521,521,521,514,514,514,514,514,514,514,514,514,464,464,464,464,464,464,464,464,464,560,560,560,560,560,560,560,560,560,516,516,516,516,516,516,516,516,516,492,492,492,492,492,492,492,492,492,437,437,437,437,437,437,437,437,437,501,501,501,501,501,501,501,501,501,530,530,530,530,530,530,530,530,530,504,504,504,504,504,504,504,504,504,501,501,501,501,501,501,501,501,501,491,491,491,491,491,491,491,491,491,525,525,525,525,525,525,525,525,525,480,480,480,480,480,480,480,480,480,494,494,494,494,494,494,494,494,494,472,472,472,472,472,472,472,472,472,494,494,494,494,494,494,494,494,494,437,437,437,437,437,437,437,437,437,549,549,549,549,549,549,549,549,549,498,498,498,498,498,498,498,498,498,484,484,484,484,484,484,484,484,484,552,552,552,552,552,552,552,552,552,501,501,501,501,501,501,501,501,501,514,514,514,514,514,514,514,514,514,446,446,446,446,446,446,446,446,446,453,453,453,453,453,453,453,453,453,468,468,468,468,468,468,468,468,468,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,438,438,438,438,438,438,438,438,438,512,512,512,512,512,512,512,512,512,488,488,488,488,488,488,488,488,488,499,499,499,499,499,499,499,499,499,462,462,462,462,462,462,462,462,462,558,558,558,558,558,558,558,558,558,523,523,523,523,523,523,523,523,523,479,479,479,479,479,479,479,479,479,447,447,447,447,447,447,447,447,447,475,475,475,475,475,475,475,475,475,519,519,519,519,519,519,519,519,519,464,464,464,464,464,464,464,464,464,425,425,425,425,425,425,425,425,425,424,424,424,424,424,424,424,424,424,502,502,502,502,502,502,502,502,502,511,511,511,511,511,511,511,511,511,510,510,510,510,510,510,510,510,510,440,440,440,440,440,440,440,440,440,435,435,435,435,435,435,435,435,435,540,540,540,540,540,540,540,540,540,444,444,444,444,444,444,444,444,444,482,482,482,482,482,482,482,482,482,495,495,495,495,495,495,495,495,495,535,535,535,535,535,535,535,535,535,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,467,467,467,467,467,467,467,467,467,503,503,503,503,503,503,503,503,503,523,523,523,523,523,523,523,523,523,460,460,460,460,460,460,460,460,460,405,405,405,405,405,405,405,405,405,482,482,482,482,482,482,482,482,482,485,485,485,485,485,485,485,485,485,498,498,498,498,498,498,498,498,498,509,509,509,509,509,509,509,509,509,452,452,452,452,452,452,452,452,452,517,517,517,517,517,517,517,517,517,469,469,469,469,469,469,469,469,469,478,478,478,478,478,478,478,478,478,545,545,545,545,545,545,545,545,545,519,519,519,519,519,519,519,519,519,518,518,518,518,518,518,518,518,518,487,487,487,487,487,487,487,487,487,469,469,469,469,469,469,469,469,469,457,457,457,457,457,457,457,457,457,426,426,426,426,426,426,426,426,426,469,469,469,469,469,469,469,469,469,520,520,520,520,520,520,520,520,520,464,464,464,464,464,464,464,464,464,474,474,474,474,474,474,474,474,474,505,505,505,505,505,505,505,505,505,456,456,456,456,456,456,456,456,456,515,515,515,515,515,515,515,515,515,470,470,470,470,470,470,470,470,470,523,523,523,523,523,523,523,523,523,492,492,492,492,492,492,492,492,492,501,501,501,501,501,501,501,501,501,488,488,488,488,488,488,488,488,488,527,527,527,527,527,527,527,527,527,512,512,512,512,512,512,512,512,512,471,471,471,471,471,471,471,471,471,431,431,431,431,431,431,431,431,431,435,435,435,435,435,435,435,435,435,514,514,514,514,514,514,514,514,514,446,446,446,446,446,446,446,446,446,500,500,500,500,500,500,500,500,500,507,507,507,507,507,507,507,507,507,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,405,405,405,405,405,405,405,405,405,485,485,485,485,485,485,485,485,485,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,474,474,474,474,474,474,474,474,474,525,525,525,525,525,525,525,525,525,490,490,490,490,490,490,490,490,490,496,496,496,496,496,496,496,496,496,449,449,449,449,449,449,449,449,449,518,518,518,518,518,518,518,518,518,462,462,462,462,462,462,462,462,462,450,450,450,450,450,450,450,450,450,465,465,465,465,465,465,465,465,465,493,493,493,493,493,493,493,493,493,504,504,504,504,504,504,504,504,504,515,515,515,515,515,515,515,515,515,454,454,454,454,454,454,454,454,454,527,527,527,527,527,527,527,527,527,524,524,524,524,524,524,524,524,524,463,463,463,463,463,463,463,463,463,413,413,413,413,413,413,413,413,413,505,505,505,505,505,505,505,505,505,507,507,507,507,507,507,507,507,507,482,482,482,482,482,482,482,482,482,493,493,493,493,493,493,493,493,493,442,442,442,442,442,442,442,442,442,510,510,510,510,510,510,510,510,510,518,518,518,518,518,518,518,518,518,442,442,442,442,442,442,442,442,442,516,516,516,516,516,516,516,516,516,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,483,483,483,483,483,483,483,483,483,506,506,506,506,506,506,506,506,506,463,463,463,463,463,463,463,463,463,518,518,518,518,518,518,518,518,518,483,483,483,483,483,483,483,483,483,522,522,522,522,522,522,522,522,522,519,519,519,519,519,519,519,519,519,482,482,482,482,482,482,482,482,482,446,446,446,446,446,446,446,446,446,478,478,478,478,478,478,478,478,478,527,527,527,527,527,527,527,527,527,462,462,462,462,462,462,462,462,462,461,461,461,461,461,461,461,461,461,534,534,534,534,534,534,534,534,534,482,482,482,482,482,482,482,482,482,433,433,433,433,433,433,433,433,433,403,403,403,403,403,403,403,403,403,485,485,485,485,485,485,485,485,485,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,470,470,470,470,470,470,470,470,470,531,531,531,531,531,531,531,531,531,476,476,476,476,476,476,476,476,476,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,486,486,486,486,486,486,486,486,486,527,527,527,527,527,527,527,527,527,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,503,503,503,503,503,503,503,503,503,513,513,513,513,513,513,513,513,513,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,454,454,454,454,454,454,454,454,454,483,483,483,483,483,483,483,483,483,543,543,543,543,543,543,543,543,543,504,504,504,504,504,504,504,504,504,467,467,467,467,467,467,467,467,467,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,474,474,474,474,474,474,474,474,474,522,522,522,522,522,522,522,522,522,525,525,525,525,525,525,525,525,525,491,491,491,491,491,491,491,491,491,477,477,477,477,477,477,477,477,477,468,468,468,468,468,468,468,468,468,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,451,451,451,451,451,451,451,451,451,444,444,444,444,444,444,444,444,444,421,421,421,421,421,421,421,421,421,420,420,420,420,420,420,420,420,420,515,515,515,515,515,515,515,515,515,456,456,456,456,456,456,456,456,456,518,518,518,518,518,518,518,518,518,467,467,467,467,467,467,467,467,467,520,520,520,520,520,520,520,520,520,460,460,460,460,460,460,460,460,460,432,432,432,432,432,432,432,432,432,533,533,533,533,533,533,533,533,533,437,437,437,437,437,437,437,437,437,489,489,489,489,489,489,489,489,489,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,481,481,481,481,481,481,481,481,481,538,538,538,538,538,538,538,538,538,463,463,463,463,463,463,463,463,463,448,448,448,448,448,448,448,448,448,564,564,564,564,564,564,564,564,564,519,519,519,519,519,519,519,519,519,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,529,529,529,529,529,529,529,529,529,471,471,471,471,471,471,471,471,471,463,463,463,463,463,463,463,463,463,520,520,520,520,520,520,520,520,520,495,495,495,495,495,495,495,495,495,489,489,489,489,489,489,489,489,489,521,521,521,521,521,521,521,521,521,501,501,501,501,501,501,501,501,501,495,495,495,495,495,495,495,495,495,499,499,499,499,499,499,499,499,499,462,462,462,462,462,462,462,462,462,552,552,552,552,552,552,552,552,552,502,502,502,502,502,502,502,502,502,486,486,486,486,486,486,486,486,486,525,525,525,525,525,525,525,525,525,495,495,495,495,495,495,495,495,495,442,442,442,442,442,442,442,442,442,495,495,495,495,495,495,495,495,495,515,515,515,515,515,515,515,515,515,521,521,521,521,521,521,521,521,521,482,482,482,482,482,482,482,482,482,447,447,447,447,447,447,447,447,447,427,427,427,427,427,427,427,427,427,552,552,552,552,552,552,552,552,552,510,510,510,510,510,510,510,510,510,472,472,472,472,472,472,472,472,472,450,450,450,450,450,450,450,450,450,442,442,442,442,442,442,442,442,442,433,433,433,433,433,433,433,433,433,446,446,446,446,446,446,446,446,446,469,469,469,469,469,469,469,469,469,468,468,468,468,468,468,468,468,468,445,445,445,445,445,445,445,445,445,452,452,452,452,452,452,452,452,452,535,535,535,535,535,535,535,535,535,476,476,476,476,476,476,476,476,476,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,469,469,469,469,469,469,469,469,469,475,475,475,475,475,475,475,475,475,496,496,496,496,496,496,496,496,496,509,509,509,509,509,509,509,509,509,521,521,521,521,521,521,521,521,521,481,481,481,481,481,481,481,481,481,456,456,456,456,456,456,456,456,456,454,454,454,454,454,454,454,454,454,487,487,487,487,487,487,487,487,487,541,541,541,541,541,541,541,541,541,492,492,492,492,492,492,492,492,492,546,546,546,546,546,546,546,546,546,479,479,479,479,479,479,479,479,479,516,516,516,516,516,516,516,516,516,514,514,514,514,514,514,514,514,514,467,467,467,467,467,467,467,467,467,443,443,443,443,443,443,443,443,443,447,447,447,447,447,447,447,447,447,472,472,472,472,472,472,472,472,472,515,515,515,515,515,515,515,515,515,468,468,468,468,468,468,468,468,468,429,429,429,429,429,429,429,429,429,403,403,403,403,403,403,403,403,403,479,479,479,479,479,479,479,479,479,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,474,474,474,474,474,474,474,474,474,516,516,516,516,516,516,516,516,516,511,511,511,511,511,511,511,511,511,481,481,481,481,481,481,481,481,481,533,533,533,533,533,533,533,533,533,465,465,465,465,465,465,465,465,465,475,475,475,475,475,475,475,475,475,530,530,530,530,530,530,530,530,530,511,511,511,511,511,511,511,511,511,451,451,451,451,451,451,451,451,451,412,412,412,412,412,412,412,412,412,522,522,522,522,522,522,522,522,522,518,518,518,518,518,518,518,518,518,465,465,465,465,465,465,465,465,465,471,471,471,471,471,471,471,471,471,503,503,503,503,503,503,503,503,503,523,523,523,523,523,523,523,523,523,460,460,460,460,460,460,460,460,460,405,405,405,405,405,405,405,405,405,485,485,485,485,485,485,485,485,485,510,510,510,510,510,510,510,510,510,524,524,524,524,524,524,524,524,524,486,486,486,486,486,486,486,486,486,446,446,446,446,446,446,446,446,446,445,445,445,445,445,445,445,445,445,561,561,561,561,561,561,561,561,561,497,497,497,497,497,497,497,497,497,459,459,459,459,459,459,459,459,459,557,557,557,557,557,557,557,557,557,514,514,514,514,514,514,514,514,514,462,462,462,462,462,462,462,462,462,474,474,474,474,474,474,474,474,474,526,526,526,526,526,526,526,526,526,481,481,481,481,481,481,481,481,481,443,443,443,443,443,443,443,443,443,427,427,427,427,427,427,427,427,427,502,502,502,502,502,502,502,502,502,511,511,511,511,511,511,511,511,511,510,510,510,510,510,510,510,510,510,442,442,442,442,442,442,442,442,442,444,444,444,444,444,444,444,444,444,536,536,536,536,536,536,536,536,536,458,458,458,458,458,458,458,458,458,523,523,523,523,523,523,523,523,523,514,514,514,514,514,514,514,514,514,467,467,467,467,467,467,467,467,467,556,556,556,556,556,556,556,556,556,505,505,505,505,505,505,505,505,505,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,471,471,471,471,471,471,471,471,471,517,517,517,517,517,517,517,517,517,497,497,497,497,497,497,497,497,497,528,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,463,463,463,463,463,463,463,463,463,480,480,480,480,480,480,480,480,480,522,522,522,522,522,522,522,522,522,525,525,525,525,525,525,525,525,525,491,491,491,491,491,491,491,491,491,473,473,473,473,473,473,473,473,473,444,444,444,444,444,444,444,444,444,431,431,431,431,431,431,431,431,431,525,525,525,525,525,525,525,525,525,514,514,514,514,514,514,514,514,514,467,467,467,467,467,467,467,467,467,561,561,561,561,561,561,561,561,561,515,515,515,515,515,515,515,515,515,465,465,465,465,465,465,465,465,465,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,447,456,456,456,456,456,456,456,456,456,475,475,475,475,475,475,475,475,475,503,503,503,503,503,503,503,503,503,507,507,507,507,507,507,507,507,507,477,477,477,477,477,477,477,477,477,492,492,492,492,492,492,492,492,492,421,421,421,421,421,421,421,421,421,490,490,490,490,490,490,490,490,490,502,502,502,502,502,502,502,502,502,514,514,514,514,514,514,514,514,514,467,467,467,467,467,467,467,467,467,407,407,407,407,407,407,407,407,407,440,440,440,440,440,440,440,440,440,526,526,526,526,526,526,526,526,526,476,476,476,476,476,476,476,476,476,531,531,531,531,531,531,531,531,531,464,464,464,464,464,464,464,464,464,408,408,408,408,408,408,408,408,408,503,503,503,503,503,503,503,503,503,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,405,405,405,405,405,405,405,405,405,483,483,483,483,483,483,483,483,483,502,502,502,502,502,502,502,502,502,513,513,513,513,513,513,513,513,513,460,460,460,460,460,460,460,460,460,433,433,433,433,433,433,433,433,433,503,503,503,503,503,503,503,503,503,491,491,491,491,491,491,491,491,491,525,525,525,525,525,525,525,525,525,486,486,486,486,486,486,486,486,486,461,461,461,461,461,461,461,461,461,421,421,421,421,421,421,421,421,421,432,432,432,432,432,432,432,432,432,560,560,560,560,560,560,560,560,560,519,519,519,519,519,519,519,519,519,457,457,457,457,457,457,457,457,457,429,429,429,429,429,429,429,429,429,523,523,523,523,523,523,523,523,523,519,519,519,519,519,519,519,519,519,457,457,457,457,457,457,457,457,457,408,408,408,408,408,408,408,408,408,495,495,495,495,495,495,495,495,495,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,482,482,482,482,482,482,482,482,482,543,543,543,543,543,543,543,543,543,495,495,495,495,495,495,495,495,495,519,519,519,519,519,519,519,519,519,467,467,467,467,467,467,467,467,467,518,518,518,518,518,518,518,518,518,470,470,470,470,470,470,470,470,470,449,449,449,449,449,449,449,449,449,442,442,442,442,442,442,442,442,442,463,463,463,463,463,463,463,463,463,538,538,538,538,538,538,538,538,538,489,489,489,489,489,489,489,489,489,474,474,474,474,474,474,474,474,474,448,448,448,448,448,448,448,448,448,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,426,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,454,454,454,454,454,454,454,454,454,545,545,545,545,545,545,545,545,545,470,470,470,470,470,470,470,470,470,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,474,474,474,474,474,474,474,474,474,516,516,516,516,516,516,516,516,516,511,511,511,511,511,511,511,511,511,481,481,481,481,481,481,481,481,481,538,538,538,538,538,538,538,538,538,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,540,540,540,540,540,540,540,540,540,465,465,465,465,465,465,465,465,465,433,433,433,433,433,433,433,433,433,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,451,451,451,451,451,451,451,451,451,545,545,545,545,545,545,545,545,545,515,515,515,515,515,515,515,515,515,512,512,512,512,512,512,512,512,512,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,464,480,480,480,480,480,480,480,480,480,521,521,521,521,521,521,521,521,521,516,516,516,516,516,516,516,516,516,480,480,480,480,480,480,480,480,480,451,451,451,451,451,451,451,451,451,417,417,417,417,417,417,417,417,417,415,415,415,415,415,415,415,415,415,544,544,544,544,544,544,544,544,544,514,514,514,514,514,514,514,514,514,457,457,457,457,457,457,457,457,457,426,426,426,426,426,426,426,426,426,497,497,497,497,497,497,497,497,497,499,499,499,499,499,499,499,499,499,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,520,520,520,520,520,520,520,520,520,465,465,465,465,465,465,465,465,465,508,508,508,508,508,508,508,508,508,491,491,491,491,491,491,491,491,491,528,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,478,478,478,478,478,478,478,478,478,524,524,524,524,524,524,524,524,524,464,464,464,464,464,464,464,464,464,476,476,476,476,476,476,476,476,476,505,505,505,505,505,505,505,505,505,488,488,488,488,488,488,488,488,488,525,525,525,525,525,525,525,525,525,492,492,492,492,492,492,492,492,492,457,457,457,457,457,457,457,457,457,554,554,554,554,554,554,554,554,554,521,521,521,521,521,521,521,521,521,513,513,513,513,513,513,513,513,513,458,458,458,458,458,458,458,458,458,426,426,426,426,426,426,426,426,426,503,503,503,503,503,503,503,503,503,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,481,481,481,481,481,481,481,481,481,537,537,537,537,537,537,537,537,537,486,486,486,486,486,486,486,486,486,453,453,453,453,453,453,453,453,453,448,448,448,448,448,448,448,448,448,523,523,523,523,523,523,523,523,523,461,461,461,461,461,461,461,461,461,471,471,471,471,471,471,471,471,471,503,503,503,503,503,503,503,503,503,523,523,523,523,523,523,523,523,523,460,460,460,460,460,460,460,460,460,405,405,405,405,405,405,405,405,405,482,482,482,482,482,482,482,482,482,486,486,486,486,486,486,486,486,486,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,473,473,473,473,473,473,473,473,473,531,531,531,531,531,531,531,531,531,464,464,464,464,464,464,464,464,464,408,408,408,408,408,408,408,408,408,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,439,439,439,439,439,439,439,439,439,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,518,518,518,518,518,518,518,518,518,470,470,470,470,470,470,470,470,470,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,471,471,471,471,471,471,471,471,471,500,500,500,500,500,500,500,500,500,524,524,524,524,524,524,524,524,524,444,444,444,444,444,444,444,444,444,487,487,487,487,487,487,487,487,487,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,494,494,494,494,494,494,494,494,494,498,498,498,498,498,498,498,498,498,509,509,509,509,509,509,509,509,509,466,466,466,466,466,466,466,466,466,519,519,519,519,519,519,519,519,519,481,481,481,481,481,481,481,481,481,457,457,457,457,457,457,457,457,457,455,455,455,455,455,455,455,455,455,462,462,462,462,462,462,462,462,462,448,448,448,448,448,448,448,448,448,476,476,476,476,476,476,476,476,476,504,504,504,504,504,504,504,504,504,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,514,514,514,514,514,514,514,514,514,487,487,487,487,487,487,487,487,487,462,462,462,462,462,462,462,462,462,529,529,529,529,529,529,529,529,529,459,459,459,459,459,459,459,459,459,465,465,465,465,465,465,465,465,465,534,534,534,534,534,534,534,534,534,486,486,486,486,486,486,486,486,486,441,441,441,441,441,441,441,441,441,401,401,401,401,401,401,401,401,401,449,449,449,449,449,449,449,449,449,511,511,511,511,511,511,511,511,511,469,469,469,469,469,469,469,469,469,499,499,499,499,499,499,499,499,499,498,498,498,498,498,498,498,498,498,509,509,509,509,509,509,509,509,509,464,464,464,464,464,464,464,464,464,518,518,518,518,518,518,518,518,518,442,442,442,442,442,442,442,442,442,511,511,511,511,511,511,511,511,511,534,534,534,534,534,534,534,534,534,496,496,496,496,496,496,496,496,496,522,522,522,522,522,522,522,522,522,468,468,468,468,468,468,468,468,468,452,452,452,452,452,452,452,452,452,435,435,435,435,435,435,435,435,435,404,404,404,404,404,404,404,404,404,446,446,446,446,446,446,446,446,446,472,472,472,472,472,472,472,472,472,494,494,494,494,494,494,494,494,494,498,498,498,498,498,498,498,498,498,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,524,524,524,524,524,524,524,524,524,477,477,477,477,477,477,477,477,477,453,453,453,453,453,453,453,453,453,448,448,448,448,448,448,448,448,448,531,531,531,531,531,531,531,531,531,485,485,485,485,485,485,485,485,485,468,468,468,468,468,468,468,468,468,453,453,453,453,453,453,453,453,453,469,469,469,469,469,469,469,469,469,497,497,497,497,497,497,497,497,497,484,484,484,484,484,484,484,484,484,520,520,520,520,520,520,520,520,520,484,484,484,484,484,484,484,484,484,441,441,441,441,441,441,441,441,441,550,550,550,550,550,550,550,550,550,498,498,498,498,498,498,498,498,498,522,522,522,522,522,522,522,522,522,472,472,472,472,472,472,472,472,472,526,526,526,526,526,526,526,526,526,492,492,492,492,492,492,492,492,492,516,516,516,516,516,516,516,516,516,459,459,459,459,459,459,459,459,459,456,456,456,456,456,456,456,456,456,527,527,527,527,527,527,527,527,527,497,497,497,497,497,497,497,497,497,528,528,528,528,528,528,528,528,528,488,488,488,488,488,488,488,488,488,464,464,464,464,464,464,464,464,464,446,446,446,446,446,446,446,446,446,408,408,408,408,408,408,408,408,408,487,487,487,487,487,487,487,487,487,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,506,519,519,519,519,519,519,519,519,519,484,484,484,484,484,484,484,484,484,454,454,454,454,454,454,454,454,454,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,413,413,413,413,413,413,413,413,413,516,516,516,516,516,516,516,516,516,509,509,509,509,509,509,509,509,509,478,478,478,478,478,478,478,478,478,527,527,527,527,527,527,527,527,527,473,473,473,473,473,473,473,473,473,539,539,539,539,539,539,539,539,539,444,444,444,444,444,444,444,444,444,489,489,489,489,489,489,489,489,489,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,480,480,480,480,480,480,480,480,480,535,535,535,535,535,535,535,535,535,466,466,466,466,466,466,466,466,466,440,440,440,440,440,440,440,440,440,514,514,514,514,514,514,514,514,514,439,439,439,439,439,439,439,439,439,458,458,458,458,458,458,458,458,458,521,521,521,521,521,521,521,521,521,501,501,501,501,501,501,501,501,501,491,491,491,491,491,491,491,491,491,505,505,505,505,505,505,505,505,505,482,482,482,482,482,482,482,482,482,499,499,499,499,499,499,499,499,499,523,523,523,523,523,523,523,523,523,462,462,462,462,462,462,462,462,462,443,443,443,443,443,443,443,443,443,520,520,520,520,520,520,520,520,520,457,457,457,457,457,457,457,457,457,434,434,434,434,434,434,434,434,434,521,521,521,521,521,521,521,521,521,513,513,513,513,513,513,513,513,513,487,487,487,487,487,487,487,487,487,525,525,525,525,525,525,525,525,525,511,511,511,511,511,511,511,511,511,453,453,453,453,453,453,453,453,453,430,430,430,430,430,430,430,430,430,525,525,525,525,525,525,525,525,525,460,460,460,460,460,460,460,460,460,511,511,511,511,511,511,511,511,511,477,477,477,477,477,477,477,477,477,490,490,490,490,490,490,490,490,490,545,545,545,545,545,545,545,545,545,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,509,509,509,509,509,509,509,509,509,526,526,526,526,526,526,526,526,526,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,501,501,501,501,501,501,501,501,501,494,494,494,494,494,494,494,494,494,525,525,525,525,525,525,525,525,525,480,480,480,480,480,480,480,480,480,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,531,531,531,531,531,531,531,531,531,481,481,481,481,481,481,481,481,481,449,449,449,449,449,449,449,449,449,452,452,452,452,452,452,452,452,452,535,535,535,535,535,535,535,535,535,467,467,467,467,467,467,467,467,467,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,523,523,523,523,523,523,523,523,523,496,496,496,496,496,496,496,496,496,463,463,463,463,463,463,463,463,463,523,523,523,523,523,523,523,523,523,477,477,477,477,477,477,477,477,477,470,470,470,470,470,470,470,470,470,519,519,519,519,519,519,519,519,519,522,522,522,522,522,522,522,522,522,482,482,482,482,482,482,482,482,482,450,450,450,450,450,450,450,450,450,405,405,405,405,405,405,405,405,405,503,503,503,503,503,503,503,503,503,531,531,531,531,531,531,531,531,531,495,495,495,495,495,495,495,495,495,468,468,468,468,468,468,468,468,468,522,522,522,522,522,522,522,522,522,485,485,485,485,485,485,485,485,485,503,503,503,503,503,503,503,503,503,522,522,522,522,522,522,522,522,522,466,466,466,466,466,466,466,466,466,435,435,435,435,435,435,435,435,435,469,469,469,469,469,469,469,469,469,515,515,515,515,515,515,515,515,515,468,468,468,468,468,468,468,468,468,429,429,429,429,429,429,429,429,429,425,425,425,425,425,425,425,425,425,516,516,516,516,516,516,516,516,516,457,457,457,457,457,457,457,457,457,423,423,423,423,423,423,423,423,423,512,512,512,512,512,512,512,512,512,472,472,472,472,472,472,472,472,472,497,497,497,497,497,497,497,497,497,511,511,511,511,511,511,511,511,511,446,446,446,446,446,446,446,446,446,466,466,466,466,466,466,466,466,466,499,499,499,499,499,499,499,499,499,462,462,462,462,462,462,462,462,462,555,555,555,555,555,555,555,555,555,501,501,501,501,501,501,501,501,501,477,477,477,477,477,477,477,477,477,525,525,525,525,525,525,525,525,525,469,469,469,469,469,469,469,469,469,486,486,486,486,486,486,486,486,486,532,532,532,532,532,532,532,532,532,491,491,491,491,491,491,491,491,491,472,472,472,472,472,472,472,472,472,466,466,466,466,466,466,466,466,466,460,460,460,460,460,460,460,460,460,432,432,432,432,432,432,432,432,432,428,428,428,428,428,428,428,428,428,506,506,506,506,506,506,506,506,506,441,441,441,441,441,441,441,441,441,452,452,452,452,452,452,452,452,452,485,485,485,485,485,485,485,485,485,546,546,546,546,546,546,546,546,546,505,505,505,505,505,505,505,505,505,489,489,489,489,489,489,489,489,489,531,531,531,531,531,531,531,531,531,446,446,446,446,446,446,446,446,446,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,460,460,460,460,460,460,460,460,460,511,511,511,511,511,511,511,511,511,481,481,481,481,481,481,481,481,481,508,508,508,508,508,508,508,508,508,532,532,532,532,532,532,532,532,532,479,479,479,479,479,479,479,479,479,426,426,426,426,426,426,426,426,426,449,449,449,449,449,449,449,449,449,536,536,536,536,536,536,536,536,536,453,453,453,453,453,453,453,453,453,500,500,500,500,500,500,500,500,500,489,489,489,489,489,489,489,489,489,498,498,498,498,498,498,498,498,498,509,509,509,509,509,509,509,509,509,466,466,466,466,466,466,466,466,466,514,514,514,514,514,514,514,514,514,466,466,466,466,466,466,466,466,466,456,456,456,456,456,456,456,456,456,475,475,475,475,475,475,475,475,475,507,507,507,507,507,507,507,507,507,514,514,514,514,514,514,514,514,514,437,437,437,437,437,437,437,437,437,489,489,489,489,489,489,489,489,489,500,500,500,500,500,500,500,500,500,509,509,509,509,509,509,509,509,509,487,487,487,487,487,487,487,487,487,520,520,520,520,520,520,520,520,520,501,501,501,501,501,501,501,501,501,491,491,491,491,491,491,491,491,491,505,505,505,505,505,505,505,505,505,490,490,490,490,490,490,490,490,490,497,497,497,497,497,497,497,497,497,452,452,452,452,452,452,452,452,452,512,512,512,512,512,512,512,512,512,491,491,491,491,491,491,491,491,491,525,525,525,525,525,525,525,525,525,484,484,484,484,484,484,484,484,484,461,461,461,461,461,461,461,461,461,433,433,433,433,433,433,433,433,433,435,435,435,435,435,435,435,435,435,508,508,508,508,508,508,508,508,508,464,464,464,464,464,464,464,464,464,559,559,559,559,559,559,559,559,559,503,503,503,503,503,503,503,503,503,524,524,524,524,524,524,524,524,524,465,465,465,465,465,465,465,465,465,423,423,423,423,423,423,423,423,423,473,473,473,473,473,473,473,473,473,505,505,505,505,505,505,505,505,505,486,486,486,486,486,486,486,486,486,512,512,512,512,512,512,512,512,512,469,469,469,469,469,469,469,469,469,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,474,474,474,474,474,474,474,474,474,522,522,522,522,522,522,522,522,522,525,525,525,525,525,525,525,525,525,486,486,486,486,486,486,486,486,486,449,449,449,449,449,449,449,449,449,429,429,429,429,429,429,429,429,429,519,519,519,519,519,519,519,519,519,518,518,518,518,518,518,518,518,518,433,433,433,433,433,433,433,433,433,499,499,499,499,499,499,499,499,499,531,531,531,531,531,531,531,531,531,495,495,495,495,495,495,495,495,495,477,477,477,477,477,477,477,477,477,530,530,530,530,530,530,530,530,530,489,489,489,489,489,489,489,489,489,474,474,474,474,474,474,474,474,474,455,455,455,455,455,455,455,455,455,452,452,452,452,452,452,452,452,452,458,458,458,458,458,458,458,458,458,447,447,447,447,447,447,447,447,447,430,430,430,430,430,430,430,430,430,525,525,525,525,525,525,525,525,525,452,452,452,452,452,452,452,452,452,511,511,511,511,511,511,511,511,511,475,475,475,475,475,475,475,475,475,510,510,510,510,510,510,510,510,510,514,514,514,514,514,514,514,514,514,498,498,498,498,498,498,498,498,498,467,467,467,467,467,467,467,467,467,526,526,526,526,526,526,526,526,526,467,467,467,467,467,467,467,467,467,508,508,508,508,508,508,508,508,508,488,488,488,488,488,488,488,488,488,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,481,481,525,525,525,525,525,525,525,525,525,469,469,469,469,469,469,469,469,469,483,483,483,483,483,483,483,483,483,517,517,517,517,517,517,517,517,517,463,463,463,463,463,463,463,463,463,456,456,456,456,456,456,456,456,456,468,468,468,468,468,468,468,468,468,502,502,502,502,502,502,502,502,502,532,532,532,532,532,532,532,532,532,494,494,494,494,494,494,494,494,494,524,524,524,524,524,524,524,524,524,494,494,494,494,494,494,494,494,494,501,501,501,501,501,501,501,501,501,484,484,484,484,484,484,484,484,484,516,516,516,516,516,516,516,516,516,502,502,502,502,502,502,502,502,502,476,476,476,476,476,476,476,476,476,528,528,528,528,528,528,528,528,528,522,522,522,522,522,522,522,522,522,483,483,483,483,483,483,483,483,483,469,469,469,469,469,469,469,469,469,448,448,448,448,448,448,448,448,448,422,422,422,422,422,422,422,422,422,402,402,402,402,402,402,402,402,402,499,499,499,499,499,499,499,499,499,508,508,508,508,508,508,508,508,508,454,454,454,454,454,454,454,454,454,544,544,544,544,544,544,544,544,544,488,488,488,488,488,488,488,488,488,521,521,521,521,521,521,521,521,521,476,476,476,476,476,476,476,476,476,490,490,490,490,490,490,490,490,490,522,522,522,522,522,522,522,522,522,446,446,446,446,446,446,446,446,446,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,451,451,451,451,451,451,451,451,451,545,545,545,545,545,545,545,545,545,509,509,509,509,509,509,509,509,509,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,525,525,525,525,525,525,525,525,525,480,480,480,480,480,480,480,480,480,444,444,444,444,444,444,444,444,444,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,486,486,486,486,486,486,486,486,486,500,500,500,500,500,500,500,500,500,510,510,510,510,510,510,510,510,510,490,490,490,490,490,490,490,490,490,505,505,505,505,505,505,505,505,505,490,490,490,490,490,490,490,490,490,501,501,501,501,501,501,501,501,501,488,488,488,488,488,488,488,488,488,521,521,521,521,521,521,521,521,521,500,500,500,500,500,500,500,500,500,492,492,492,492,492,492,492,492,492,496,496,496,496,496,496,496,496,496,418,418,418,418,418,418,418,418,418,502,502,502,502,502,502,502,502,502,534,534,534,534,534,534,534,534,534,514,514,514,514,514,514,514,514,514,484,484,484,484,484,484,484,484,484,457,457,457,457,457,457,457,457,457,425,425,425,425,425,425,425,425,425,453,453,453,453,453,453,453,453,453,489,489,489,489,489,489,489,489,489,546,546,546,546,546,546,546,546,546,476,476,476,476,476,476,476,476,476,495,495,495,495,495,495,495,495,495,486,486,486,486,486,486,486,486,486,495,495,495,495,495,495,495,495,495,507,507,507,507,507,507,507,507,507,486,486,486,486,486,486,486,486,486,518,518,518,518,518,518,518,518,518,483,483,483,483,483,483,483,483,483,470,470,470,470,470,470,470,470,470,448,448,448,448,448,448,448,448,448,423,423,423,423,423,423,423,423,423,440,440,440,440,440,440,440,440,440,562,562,562,562,562,562,562,562,562,509,509,509,509,509,509,509,509,509,536,536,536,536,536,536,536,536,536,489,489,489,489,489,489,489,489,489,449,449,449,449,449,449,449,449,449,429,429,429,429,429,429,429,429,429,523,523,523,523,523,523,523,523,523,514,514,514,514,514,514,514,514,514,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,491,491,491,491,491,491,491,491,491,464,464,464,464,464,464,464,464,464,533,533,533,533,533,533,533,533,533,448,448,448,448,448,448,448,448,448,510,510,510,510,510,510,510,510,510,515,515,515,515,515,515,515,515,515,471,471,471,471,471,471,471,471,471,447,447,447,447,447,447,447,447,447,441,441,441,441,441,441,441,441,441,478,478,478,478,478,478,478,478,478,529,529,529,529,529,529,529,529,529,480,480,480,480,480,480,480,480,480,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,448,523,523,523,523,523,523,523,523,523,461,461,461,461,461,461,461,461,461,468,468,468,468,468,468,468,468,468,493,493,493,493,493,493,493,493,493,548,548,548,548,548,548,548,548,548,499,499,499,499,499,499,499,499,499,442,442,442,442,442,442,442,442,442,510,510,510,510,510,510,510,510,510,518,518,518,518,518,518,518,518,518,437,437,437,437,437,437,437,437,437,482,482,482,482,482,482,482,482,482,494,494,494,494,494,494,494,494,494,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,507,507,507,507,507,507,507,507,507,529,529,529,529,529,529,529,529,529,469,469,469,469,469,469,469,469,469,483,483,483,483,483,483,483,483,483,504,504,504,504,504,504,504,504,504,462,462,462,462,462,462,462,462,462,552,552,552,552,552,552,552,552,552,502,502,502,502,502,502,502,502,502,484,484,484,484,484,484,484,484,484,514,514,514,514,514,514,514,514,514,505,505,505,505,505,505,505,505,505,536,536,536,536,536,536,536,536,536,469,469,469,469,469,469,469,469,469,468,468,468,468,468,468,468,468,468,493,493,493,493,493,493,493,493,493,545,545,545,545,545,545,545,545,545,501,501,501,501,501,501,501,501,501,484,484,484,484,484,484,484,484,484,514,514,514,514,514,514,514,514,514,498,498,498,498,498,498,498,498,498,533,533,533,533,533,533,533,533,533,486,486,486,486,486,486,486,486,486,496,496,496,496,496,496,496,496,496,519,519,519,519,519,519,519,519,519,460,460,460,460,460,460,460,460,460,545,545,545,545,545,545,545,545,545,475,475,475,475,475,475,475,475,475,516,516,516,516,516,516,516,516,516,517,517,517,517,517,517,517,517,517,454,454,454,454,454,454,454,454,454,519,519,519,519,519,519,519,519,519,515,515,515,515,515,515,515,515,515,493,493,493,493,493,493,493,493,493,516,516,516,516,516,516,516,516,516,457,457,457,457,457,457,457,457,457,444,444,444,444,444,444,444,444,444,522,522,522,522,522,522,522,522,522,473,473,473,473,473,473,473,473,473,438,438,438,438,438,438,438,438,438,451,451,451,451,451,451,451,451,451,503,503,503,503,503,503,503,503,503,530,530,530,530,530,530,530,530,530,489,489,489,489,489,489,489,489,489,466,466,466,466,466,466,466,466,466,425,425,425,425,425,425,425,425,425,451,451,451,451,451,451,451,451,451,535,535,535,535,535,535,535,535,535,486,486,486,486,486,486,486,486,486,451,451,451,451,451,451,451,451,451,427,427,427,427,427,427,427,427,427,518,518,518,518,518,518,518,518,518,480,480,480,480,480,480,480,480,480,496,496,496,496,496,496,496,496,496,494,494,494,494,494,494,494,494,494,528,528,528,528,528,528,528,528,528,491,491,491,491,491,491,491,491,491,472,472,472,472,472,472,472,472,472,464,464,464,464,464,464,464,464,464,446,446,446,446,446,446,446,446,446,413,413,413,413,413,413,413,413,413,520,520,520,520,520,520,520,520,520,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,472,472,472,472,472,472,472,472,472,510,510,510,510,510,510,510,510,510,461,461,461,461,461,461,461,461,461,456,456,456,456,456,456,456,456,456,468,468,468,468,468,468,468,468,468,503,503,503,503,503,503,503,503,503,530,530,530,530,530,530,530,530,530,496,496,496,496,496,496,496,496,496,486,486,486,486,486,486,486,486,486,527,527,527,527,527,527,527,527,527,509,509,509,509,509,509,509,509,509,460,460,460,460,460,460,460,460,460,458,458,458,458,458,458,458,458,458,515,515,515,515,515,515,515,515,515,501,501,501,501,501,501,501,501,501,474,474,474,474,474,474,474,474,474,512,512,512,512,512,512,512,512,512,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,482,482,482,482,482,482,482,482,482,543,543,543,543,543,543,543,543,543,495,495,495,495,495,495,495,495,495,520,520,520,520,520,520,520,520,520,474,474,474,474,474,474,474,474,474,524,524,524,524,524,524,524,524,524,459,459,459,459,459,459,459,459,459,467,467,467,467,467,467,467,467,467,538,538,538,538,538,538,538,538,538,484,484,484,484,484,484,484,484,484,458,458,458,458,458,458,458,458,458,471,471,471,471,471,471,471,471,471,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,478,478,478,478,478,478,478,478,478,510,510,510,510,510,510,510,510,510,509,509,509,509,509,509,509,509,509,466,466,466,466,466,466,466,466,466,519,519,519,519,519,519,519,519,519,478,478,478,478,478,478,478,478,478,447,447,447,447,447,447,447,447,447,436,436,436,436,436,436,436,436,436,469,469,469,469,469,469,469,469,469,515,515,515,515,515,515,515,515,515,468,468,468,468,468,468,468,468,468,429,429,429,429,429,429,429,429,429,425,425,425,425,425,425,425,425,425,516,516,516,516,516,516,516,516,516,467,467,467,467,467,467,467,467,467,405,405,405,405,405,405,405,405,405,415,415,415,415,415,415,415,415,415,528,528,528,528,528,528,528,528,528,530,530,530,530,530,530,530,530,530,484,484,484,484,484,484,484,484,484,451,451,451,451,451,451,451,451,451,463,463,463,463,463,463,463,463,463,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,463,463,463,463,463,463,463,463,463,491,491,491,491,491,491,491,491,491,548,548,548,548,548,548,548,548,548,502,502,502,502,502,502,502,502,502,529,529,529,529,529,529,529,529,529,456,456,456,456,456,456,456,456,456,500,500,500,500,500,500,500,500,500,504,504,504,504,504,504,504,504,504,513,513,513,513,513,513,513,513,513,439,439,439,439,439,439,439,439,439,507,507,507,507,507,507,507,507,507,515,515,515,515,515,515,515,515,515,471,471,471,471,471,471,471,471,471,429,429,429,429,429,429,429,429,429,425,425,425,425,425,425,425,425,425,426,426,426,426,426,426,426,426,426,533,533,533,533,533,533,533,533,533,442,442,442,442,442,442,442,442,442,516,516,516,516,516,516,516,516,516,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,486,486,486,486,486,486,486,486,486,527,527,527,527,527,527,527,527,527,460,460,460,460,460,460,460,460,460,449,449,449,449,449,449,449,449,449,529,529,529,529,529,529,529,529,529,490,490,490,490,490,490,490,490,490,507,507,507,507,507,507,507,507,507,451,451,451,451,451,451,451,451,451,434,434,434,434,434,434,434,434,434,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,468,468,468,468,468,468,468,468,468,516,516,516,516,516,516,516,516,516,483,483,483,483,483,483,483,483,483,461,461,461,461,461,461,461,461,461,425,425,425,425,425,425,425,425,425,451,451,451,451,451,451,451,451,451,532,532,532,532,532,532,532,532,532,469,469,469,469,469,469,469,469,469,483,483,483,483,483,483,483,483,483,521,521,521,521,521,521,521,521,521,450,450,450,450,450,450,450,450,450,411,411,411,411,411,411,411,411,411,509,509,509,509,509,509,509,509,509,513,513,513,513,513,513,513,513,513,442,442,442,442,442,442,442,442,442,511,511,511,511,511,511,511,511,511,509,509,509,509,509,509,509,509,509,466,466,466,466,466,466,466,466,466,559,559,559,559,559,559,559,559,559,494,494,494,494,494,494,494,494,494,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,510,510,510,510,510,510,510,510,510,514,514,514,514,514,514,514,514,514,497,497,497,497,497,497,497,497,497,442,442,442,442,442,442,442,442,442,495,495,495,495,495,495,495,495,495,515,515,515,515,515,515,515,515,515,522,522,522,522,522,522,522,522,522,463,463,463,463,463,463,463,463,463,465,465,465,465,465,465,465,465,465,534,534,534,534,534,534,534,534,534,487,487,487,487,487,487,487,487,487,454,454,454,454,454,454,454,454,454,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,413,413,413,413,413,413,413,413,413,522,522,522,522,522,522,522,522,522,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,449,449,449,449,449,449,449,449,449,468,468,468,468,468,468,468,468,468,528,528,528,528,528,528,528,528,528,495,495,495,495,495,495,495,495,495,447,447,447,447,447,447,447,447,447,523,523,523,523,523,523,523,523,523,524,524,524,524,524,524,524,524,524,465,465,465,465,465,465,465,465,465,469,469,469,469,469,469,469,469,469,478,478,478,478,478,478,478,478,478,510,510,510,510,510,510,510,510,510,508,508,508,508,508,508,508,508,508,458,458,458,458,458,458,458,458,458,518,518,518,518,518,518,518,518,518,473,473,473,473,473,473,473,473,473,427,427,427,427,427,427,427,427,427,432,432,432,432,432,432,432,432,432,514,514,514,514,514,514,514,514,514,446,446,446,446,446,446,446,446,446,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,531,531,531,531,531,531,531,531,531,508,508,508,508,508,508,508,508,508,497,497,497,497,497,497,497,497,497,481,481,481,481,481,481,481,481,481,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,507,507,507,507,507,507,507,507,507,517,517,517,517,517,517,517,517,517,463,463,463,463,463,463,463,463,463,432,432,432,432,432,432,432,432,432,525,525,525,525,525,525,525,525,525,463,463,463,463,463,463,463,463,463,514,514,514,514,514,514,514,514,514,439,439,439,439,439,439,439,439,439,413,413,413,413,413,413,413,413,413,500,500,500,500,500,500,500,500,500,515,515,515,515,515,515,515,515,515,522,522,522,522,522,522,522,522,522,462,462,462,462,462,462,462,462,462,453,453,453,453,453,453,453,453,453,533,533,533,533,533,533,533,533,533,477,477,477,477,477,477,477,477,477,497,497,497,497,497,497,497,497,497,511,511,511,511,511,511,511,511,511,446,446,446,446,446,446,446,446,446,466,466,466,466,466,466,466,466,466,502,502,502,502,502,502,502,502,502,467,467,467,467,467,467,467,467,467,526,526,526,526,526,526,526,526,526,467,467,467,467,467,467,467,467,467,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,513,513,513,513,513,513,513,513,513,498,498,498,498,498,498,498,498,498,528,528,528,528,528,528,528,528,528,489,489,489,489,489,489,489,489,489,516,516,516,516,516,516,516,516,516,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,479,479,479,479,479,479,479,479,479,452,452,452,452,452,452,452,452,452,455,455,455,455,455,455,455,455,455,462,462,462,462,462,462,462,462,462,447,447,447,447,447,447,447,447,447,467,467,467,467,467,467,467,467,467,512,512,512,512,512,512,512,512,512,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,446,446,446,446,446,446,446,446,446,402,402,402,402,402,402,402,402,402,424,424,424,424,424,424,424,424,424,558,558,558,558,558,558,558,558,558,516,516,516,516,516,516,516,516,516,450,450,450,450,450,450,450,450,450,411,411,411,411,411,411,411,411,411,509,509,509,509,509,509,509,509,509,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,518,518,518,518,518,518,518,518,518,459,459,459,459,459,459,459,459,459,520,520,520,520,520,520,520,520,520,461,461,461,461,461,461,461,461,461,440,440,440,440,440,440,440,440,440,516,516,516,516,516,516,516,516,516,463,463,463,463,463,463,463,463,463,440,440,440,440,440,440,440,440,440,516,516,516,516,516,516,516,516,516,477,477,477,477,477,477,477,477,477,490,490,490,490,490,490,490,490,490,552,552,552,552,552,552,552,552,552,521,521,521,521,521,521,521,521,521,488,488,488,488,488,488,488,488,488,472,472,472,472,472,472,472,472,472,463,463,463,463,463,463,463,463,463,449,449,449,449,449,449,449,449,449,462,462,462,462,462,462,462,462,462,509,509,509,509,509,509,509,509,509,486,486,486,486,486,486,486,486,486,558,558,558,558,558,558,558,558,558,515,515,515,515,515,515,515,515,515,463,463,463,463,463,463,463,463,463,476,476,476,476,476,476,476,476,476,509,509,509,509,509,509,509,509,509,490,490,490,490,490,490,490,490,490,497,497,497,497,497,497,497,497,497,460,460,460,460,460,460,460,460,460,523,523,523,523,523,523,523,523,523,478,478,478,478,478,478,478,478,478,448,448,448,448,448,448,448,448,448,434,434,434,434,434,434,434,434,434,426,426,426,426,426,426,426,426,426,526,526,526,526,526,526,526,526,526,455,455,455,455,455,455,455,455,455,546,546,546,546,546,546,546,546,546,490,490,490,490,490,490,490,490,490,459,459,459,459,459,459,459,459,459,555,555,555,555,555,555,555,555,555,499,499,499,499,499,499,499,499,499,444,444,444,444,444,444,444,444,444,521,521,521,521,521,521,521,521,521,523,523,523,523,523,523,523,523,523,478,478,478,478,478,478,478,478,478,436,436,436,436,436,436,436,436,436,439,439,439,439,439,439,439,439,439,522,522,522,522,522,522,522,522,522,487,487,487,487,487,487,487,487,487,472,472,472,472,472,472,472,472,472,448,448,448,448,448,448,448,448,448,476,476,476,476,476,476,476,476,476,508,508,508,508,508,508,508,508,508,481,481,481,481,481,481,481,481,481,533,533,533,533,533,533,533,533,533,494,494,494,494,494,494,494,494,494,473,473,473,473,473,473,473,473,473,445,445,445,445,445,445,445,445,445,452,452,452,452,452,452,452,452,452,545,545,545,545,545,545,545,545,545,444,444,444,444,444,444,444,444,444,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,500,500,500,500,500,500,500,500,500,509,509,509,509,509,509,509,509,509,486,486,486,486,486,486,486,486,486,510,510,510,510,510,510,510,510,510,465,465,465,465,465,465,465,465,465,511,511,511,511,511,511,511,511,511,532,532,532,532,532,532,532,532,532,493,493,493,493,493,493,493,493,493,464,464,464,464,464,464,464,464,464,525,525,525,525,525,525,525,525,525,469,469,469,469,469,469,469,469,469,518,518,518,518,518,518,518,518,518,464,464,464,464,464,464,464,464,464,419,419,419,419,419,419,419,419,419,427,427,427,427,427,427,427,427,427,525,525,525,525,525,525,525,525,525,513,513,513,513,513,513,513,513,513,475,475,475,475,475,475,475,475,475,527,527,527,527,527,527,527,527,527,470,470,470,470,470,470,470,470,470,448,448,448,448,448,448,448,448,448,427,427,427,427,427,427,427,427,427,403,403,403,403,403,403,403,403,403,482,482,482,482,482,482,482,482,482,486,486,486,486,486,486,486,486,486,504,504,504,504,504,504,504,504,504,515,515,515,515,515,515,515,515,515,450,450,450,450,450,450,450,450,450,500,500,500,500,500,500,500,500,500,490,490,490,490,490,490,490,490,490,507,507,507,507,507,507,507,507,507,517,517,517,517,517,517,517,517,517,466,466,466,466,466,466,466,466,466,450,450,450,450,450,450,450,450,450,523,523,523,523,523,523,523,523,523,461,461,461,461,461,461,461,461,461,483,483,483,483,483,483,483,483,483,504,504,504,504,504,504,504,504,504,462,462,462,462,462,462,462,462,462,557,557,557,557,557,557,557,557,557,514,514,514,514,514,514,514,514,514,462,462,462,462,462,462,462,462,462,454,454,454,454,454,454,454,454,454,483,483,483,483,483,483,483,483,483,545,545,545,545,545,545,545,545,545,514,514,514,514,514,514,514,514,514,489,489,489,489,489,489,489,489,489,457,457,457,457,457,457,457,457,457,554,554,554,554,554,554,554,554,554,521,521,521,521,521,521,521,521,521,518,518,518,518,518,518,518,518,518,484,484,484,484,484,484,484,484,484,445,445,445,445,445,445,445,445,445,463,463,463,463,463,463,463,463,463,538,538,538,538,538,538,538,538,538,486,486,486,486,486,486,486,486,486,450,450,450,450,450,450,450,450,450,411,411,411,411,411,411,411,411,411,513,513,513,513,513,513,513,513,513,515,515,515,515,515,515,515,515,515,463,463,463,463,463,463,463,463,463,404,404,404,404,404,404,404,404,404,449,449,449,449,449,449,449,449,449,529,529,529,529,529,529,529,529,529,521,521,521,521,521,521,521,521,521,482,482,482,482,482,482,482,482,482,446,446,446,446,446,446,446,446,446,465,465,465,465,465,465,465,465,465,500,500,500,500,500,500,500,500,500,524,524,524,524,524,524,524,524,524,446,446,446,446,446,446,446,446,446,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,451,451,451,451,451,451,451,451,451,545,545,545,545,545,545,545,545,545,511,511,511,511,511,511,511,511,511,494,494,494,494,494,494,494,494,494,476,476,476,476,476,476,476,476,476,518,518,518,518,518,518,518,518,518,473,473,473,473,473,473,473,473,473,532,532,532,532,532,532,532,532,532,463,463,463,463,463,463,463,463,463,546,546,546,546,546,546,546,546,546,493,493,493,493,493,493,493,493,493,442,442,442,442,442,442,442,442,442,517,517,517,517,517,517,517,517,517,510,510,510,510,510,510,510,510,510,445,445,445,445,445,445,445,445,445,466,466,466,466,466,466,466,466,466,502,502,502,502,502,502,502,502,502,467,467,467,467,467,467,467,467,467,527,527,527,527,527,527,527,527,527,460,460,460,460,460,460,460,460,460,545,545,545,545,545,545,545,545,545,509,509,509,509,509,509,509,509,509,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,520,520,520,520,520,520,520,520,520,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,505,505,505,505,505,505,505,505,505,507,507,507,507,507,507,507,507,507,477,477,477,477,477,477,477,477,477,490,490,490,490,490,490,490,490,490,443,443,443,443,443,443,443,443,443,523,523,523,523,523,523,523,523,523,459,459,459,459,459,459,459,459,459,520,520,520,520,520,520,520,520,520,473,473,473,473,473,473,473,473,473,429,429,429,429,429,429,429,429,429,440,440,440,440,440,440,440,440,440,427,427,427,427,427,427,427,427,427,407,407,407,407,407,407,407,407,407,511,511,511,511,511,511,511,511,511,522,522,522,522,522,522,522,522,522,462,462,462,462,462,462,462,462,462,455,455,455,455,455,455,455,455,455,545,545,545,545,545,545,545,545,545,448,448,448,448,448,448,448,448,448,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,454,454,454,454,454,454,454,454,454,545,545,545,545,545,545,545,545,545,494,494,494,494,494,494,494,494,494,525,525,525,525,525,525,525,525,525,486,486,486,486,486,486,486,486,486,496,496,496,496,496,496,496,496,496,524,524,524,524,524,524,524,524,524,446,446,446,446,446,446,446,446,446,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,469,469,469,469,469,469,469,469,469,526,526,526,526,526,526,526,526,526,479,479,479,479,479,479,479,479,479,452,452,452,452,452,452,452,452,452,474,474,474,474,474,474,474,474,474,505,505,505,505,505,505,505,505,505,486,486,486,486,486,486,486,486,486,512,512,512,512,512,512,512,512,512,474,474,474,474,474,474,474,474,474,528,528,528,528,528,528,528,528,528,523,523,523,523,523,523,523,523,523,463,463,463,463,463,463,463,463,463,465,465,465,465,465,465,465,465,465,536,536,536,536,536,536,536,536,536,462,462,462,462,462,462,462,462,462,425,425,425,425,425,425,425,425,425,547,547,547,547,547,547,547,547,547,498,498,498,498,498,498,498,498,498,484,484,484,484,484,484,484,484,484,551,551,551,551,551,551,551,551,551,503,503,503,503,503,503,503,503,503,478,478,478,478,478,478,478,478,478,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,543,543,543,543,543,543,543,543,543,493,493,493,493,493,493,493,493,493,552,552,552,552,552,552,552,552,552,521,521,521,521,521,521,521,521,521,486,486,486,486,486,486,486,486,486,469,469,469,469,469,469,469,469,469,468,468,468,468,468,468,468,468,468,455,455,455,455,455,455,455,455,455,452,452,452,452,452,452,452,452,452,462,462,462,462,462,462,462,462,462,468,468,468,468,468,468,468,468,468,453,453,453,453,453,453,453,453,453,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,430,430,430,430,430,430,430,430,430,526,526,526,526,526,526,526,526,526,454,454,454,454,454,454,454,454,454,545,545,545,545,545,545,545,545,545,475,475,475,475,475,475,475,475,475,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,486,486,486,486,486,486,486,486,486,466,466,466,466,466,466,466,466,466,423,423,423,423,423,423,423,423,423,419,419,419,419,419,419,419,419,419,515,515,515,515,515,515,515,515,515,513,513,513,513,513,513,513,513,513,455,455,455,455,455,455,455,455,455,550,550,550,550,550,550,550,550,550,518,518,518,518,518,518,518,518,518,486,486,486,486,486,486,486,486,486,466,466,466,466,466,466,466,466,466,460,460,460,460,460,460,460,460,460,432,432,432,432,432,432,432,432,432,428,428,428,428,428,428,428,428,428,511,511,511,511,511,511,511,511,511,441,441,441,441,441,441,441,441,441,448,448,448,448,448,448,448,448,448,532,532,532,532,532,532,532,532,532,467,467,467,467,467,467,467,467,467,469,469,469,469,469,469,469,469,469,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,530,530,530,530,530,530,530,530,530,496,496,496,496,496,496,496,496,496,486,486,486,486,486,486,486,486,486,525,525,525,525,525,525,525,525,525,492,492,492,492,492,492,492,492,492,461,461,461,461,461,461,461,461,461,555,555,555,555,555,555,555,555,555,505,505,505,505,505,505,505,505,505,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,434,434,434,434,434,434,434,434,434,425,425,425,425,425,425,425,425,425,516,516,516,516,516,516,516,516,516,476,476,476,476,476,476,476,476,476,433,433,433,433,433,433,433,433,433,417,417,417,417,417,417,417,417,417,447,447,447,447,447,447,447,447,447,535,535,535,535,535,535,535,535,535,465,465,465,465,465,465,465,465,465,520,520,520,520,520,520,520,520,520,461,461,461,461,461,461,461,461,461,440,440,440,440,440,440,440,440,440,513,513,513,513,513,513,513,513,513,479,479,479,479,479,479,479,479,479,446,446,446,446,446,446,446,446,446,405,405,405,405,405,405,405,405,405,415,415,415,415,415,415,415,415,415,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,517,484,484,484,484,484,484,484,484,484,508,508,508,508,508,508,508,508,508,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,432,432,432,432,432,432,432,432,432,525,525,525,525,525,525,525,525,525,470,470,470,470,470,470,470,470,470,524,524,524,524,524,524,524,524,524,459,459,459,459,459,459,459,459,459,465,465,465,465,465,465,465,465,465,529,529,529,529,529,529,529,529,529,477,477,477,477,477,477,477,477,477,523,523,523,523,523,523,523,523,523,492,492,492,492,492,492,492,492,492,504,504,504,504,504,504,504,504,504,480,480,480,480,480,480,480,480,480,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,487,487,487,487,487,487,487,487,487,504,504,504,504,504,504,504,504,504,511,511,511,511,511,511,511,511,511,467,467,467,467,467,467,467,467,467,556,556,556,556,556,556,556,556,556,502,502,502,502,502,502,502,502,502,484,484,484,484,484,484,484,484,484,510,510,510,510,510,510,510,510,510,487,487,487,487,487,487,487,487,487,550,550,550,550,550,550,550,550,550,492,492,492,492,492,492,492,492,492,546,546,546,546,546,546,546,546,546,481,481,481,481,481,481,481,481,481,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,486,486,486,486,486,486,486,486,486,474,474,474,474,474,474,474,474,474,455,455,455,455,455,455,455,455,455,450,450,450,450,450,450,450,450,450,440,440,440,440,440,440,440,440,440,423,423,423,423,423,423,423,423,423,515,515,515,515,515,515,515,515,515,535,535,535,535,535,535,535,535,535,497,497,497,497,497,497,497,497,497,524,524,524,524,524,524,524,524,524,478,478,478,478,478,478,478,478,478,525,525,525,525,525,525,525,525,525,489,489,489,489,489,489,489,489,489,513,513,513,513,513,513,513,513,513,503,503,503,503,503,503,503,503,503,535,535,535,535,535,535,535,535,535,464,464,464,464,464,464,464,464,464,413,413,413,413,413,413,413,413,413,509,509,509,509,509,509,509,509,509,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,518,518,518,518,518,518,518,518,518,467,467,467,467,467,467,467,467,467,519,519,519,519,519,519,519,519,519,473,473,473,473,473,473,473,473,473,424,424,424,424,424,424,424,424,424,419,419,419,419,419,419,419,419,419,515,515,515,515,515,515,515,515,515,513,513,513,513,513,513,513,513,513,451,451,451,451,451,451,451,451,451,545,545,545,545,545,545,545,545,545,514,514,514,514,514,514,514,514,514,511,511,511,511,511,511,511,511,511,479,479,479,479,479,479,479,479,479,446,446,446,446,446,446,446,446,446,428,428,428,428,428,428,428,428,428,457,457,457,457,457,457,457,457,457,534,534,534,534,534,534,534,534,534,486,486,486,486,486,486,486,486,486,441,441,441,441,441,441,441,441,441,401,401,401,401,401,401,401,401,401,449,449,449,449,449,449,449,449,449,529,529,529,529,529,529,529,529,529,517,517,517,517,517,517,517,517,517,457,457,457,457,457,457,457,457,457,444,444,444,444,444,444,444,444,444,562,562,562,562,562,562,562,562,562,475,475,475,475,475,475,475,475,475,496,496,496,496,496,496,496,496,496,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,480,480,480,480,480,480,480,480,480,531,531,531,531,531,531,531,531,531,486,486,486,486,486,486,486,486,486,456,456,456,456,456,456,456,456,456,428,428,428,428,428,428,428,428,428,413,413,413,413,413,413,413,413,413,467,467,467,467,467,467,467,467,467,530,530,530,530,530,530,530,530,530,509,509,509,509,509,509,509,509,509,464,464,464,464,464,464,464,464,464,474,474,474,474,474,474,474,474,474,523,523,523,523,523,523,523,523,523,477,477,477,477,477,477,477,477,477,445,445,445,445,445,445,445,445,445,438,438,438,438,438,438,438,438,438,520,520,520,520,520,520,520,520,520,468,468,468,468,468,468,468,468,468,446,446,446,446,446,446,446,446,446,415,415,415,415,415,415,415,415,415,441,441,441,441,441,441,441,441,441,532,532,532,532,532,532,532,532,532,464,464,464,464,464,464,464,464,464,405,405,405,405,405,405,405,405,405,479,479,479,479,479,479,479,479,479,495,495,495,495,495,495,495,495,495,535,535,535,535,535,535,535,535,535,513,513,513,513,513,513,513,513,513,460,460,460,460,460,460,460,460,460,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,494,494,494,494,494,494,494,494,494,473,473,473,473,473,473,473,473,473,445,445,445,445,445,445,445,445,445,452,452,452,452,452,452,452,452,452,545,545,545,545,545,545,545,545,545,440,440,440,440,440,440,440,440,440,499,499,499,499,499,499,499,499,499,529,529,529,529,529,529,529,529,529,466,466,466,466,466,466,466,466,466,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,509,509,509,509,509,509,509,509,509,468,468,468,468,468,468,468,468,468,429,429,429,429,429,429,429,429,429,423,423,423,423,423,423,423,423,423,523,523,523,523,523,523,523,523,523,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,507,507,507,507,507,507,507,507,507,519,519,519,519,519,519,519,519,519,484,484,484,484,484,484,484,484,484,454,454,454,454,454,454,454,454,454,449,449,449,449,449,449,449,449,449,464,464,464,464,464,464,464,464,464,453,453,453,453,453,453,453,453,453,449,449,449,449,449,449,449,449,449,464,464,464,464,464,464,464,464,464,453,453,453,453,453,453,453,453,453,446,446,446,446,446,446,446,446,446,443,443,443,443,443,443,443,443,443,448,448,448,448,448,448,448,448,448,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,466,466,466,466,466,466,466,466,466,425,425,425,425,425,425,425,425,425,451,451,451,451,451,451,451,451,451,532,532,532,532,532,532,532,532,532,465,465,465,465,465,465,465,465,465,475,475,475,475,475,475,475,475,475,528,528,528,528,528,528,528,528,528,495,495,495,495,495,495,495,495,495,447,447,447,447,447,447,447,447,447,518,518,518,518,518,518,518,518,518,515,515,515,515,515,515,515,515,515,474,474,474,474,474,474,474,474,474,525,525,525,525,525,525,525,525,525,489,489,489,489,489,489,489,489,489,501,501,501,501,501,501,501,501,501,467,467,467,467,467,467,467,467,467,497,497,497,497,497,497,497,497,497,517,517,517,517,517,517,517,517,517,474,474,474,474,474,474,474,474,474,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,483,483,483,483,483,483,483,483,483,517,517,517,517,517,517,517,517,517,464,464,464,464,464,464,464,464,464,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,459,459,459,459,459,459,459,459,459,557,557,557,557,557,557,557,557,557,516,516,516,516,516,516,516,516,516,468,468,468,468,468,468,468,468,468,429,429,429,429,429,429,429,429,429,428,428,428,428,428,428,428,428,428,515,515,515,515,515,515,515,515,515,467,467,467,467,467,467,467,467,467,446,446,446,446,446,446,446,446,446,464,464,464,464,464,464,464,464,464,455,455,455,455,455,455,455,455,455,449,449,449,449,449,449,449,449,449,441,441,441,441,441,441,441,441,441,476,476,476,476,476,476,476,476,476,525,525,525,525,525,525,525,525,525,478,478,478,478,478,478,478,478,478,452,452,452,452,452,452,452,452,452,449,449,449,449,449,449,449,449,449,441,441,441,441,441,441,441,441,441,465,465,465,465,465,465,465,465,465,500,500,500,500,500,500,500,500,500,519,519,519,519,519,519,519,519,519,470,470,470,470,470,470,470,470,470,514,514,514,514,514,514,514,514,514,466,466,466,466,466,466,466,466,466,458,458,458,458,458,458,458,458,458,498,498,498,498,498,498,498,498,498,515,515,515,515,515,515,515,515,515,465,465,465,465,465,465,465,465,465,461,461,461,461,461,461,461,461,461,493,493,493,493,493,493,493,493,493,478,478,478,478,478,478,478,478,478,472,472,472,472,472,472,472,472,472,494,494,494,494,494,494,494,494,494,504,504,504,504,504,504,504,504,504,512,512,512,512,512,512,512,512,512,468,468,468,468,468,468,468,468,468,452,452,452,452,452,452,452,452,452,442,442,442,442,442,442,442,442,442,448,448,448,448,448,448,448,448,448,413,413,413,413,413,413,413,413,413,435,435,435,435,435,435,435,435,435,553,553,553,553,553,553,553,553,553,494,494,494,494,494,494,494,494,494,548,548,548,548,548,548,548,548,548,501,501,501,501,501,501,501,501,501,473,473,473,473,473,473,473,473,473,520,520,520,520,520,520,520,520,520,477,477,477,477,477,477,477,477,477,525,525,525,525,525,525,525,525,525,489,489,489,489,489,489,489,489,489,524,524,524,524,524,524,524,524,524,505,505,505,505,505,505,505,505,505,459,459,459,459,459,459,459,459,459,438,438,438,438,438,438,438,438,438,469,469,469,469,469,469,469,469,469,510,510,510,510,510,510,510,510,510,461,461,461,461,461,461,461,461,461,456,456,456,456,456,456,456,456,456,468,468,468,468,468,468,468,468,468,502,502,502,502,502,502,502,502,502,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,500,500,500,500,500,500,500,500,500,529,529,529,529,529,529,529,529,529,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,484,484,484,484,484,484,484,484,484,443,443,443,443,443,443,443,443,443,427,427,427,427,427,427,427,427,427,503,503,503,503,503,503,503,503,503,515,515,515,515,515,515,515,515,515,521,521,521,521,521,521,521,521,521,481,481,481,481,481,481,481,481,481,453,453,453,453,453,453,453,453,453,462,462,462,462,462,462,462,462,462,523,523,523,523,523,523,523,523,523,493,493,493,493,493,493,493,493,493,467,467,467,467,467,467,467,467,467,525,525,525,525,525,525,525,525,525,462,462,462,462,462,462,462,462,462,526,526,526,526,526,526,526,526,526,442,442,442,442,442,442,442,442,442,506,506,506,506,506,506,506,506,506,510,510,510,510,510,510,510,510,510,492,492,492,492,492,492,492,492,492,502,502,502,502,502,502,502,502,502,479,479,479,479,479,479,479,479,479,521,521,521,521,521,521,521,521,521,471,471,471,471,471,471,471,471,471,463,463,463,463,463,463,463,463,463,528,528,528,528,528,528,528,528,528,516,516,516,516,516,516,516,516,516,479,479,479,479,479,479,479,479,479,445,445,445,445,445,445,445,445,445,434,434,434,434,434,434,434,434,434,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,492,492,492,492,492,492,492,492,492,442,442,442,442,442,442,442,442,442,510,510,510,510,510,510,510,510,510,514,514,514,514,514,514,514,514,514,469,469,469,469,469,469,469,469,469,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,486,486,486,486,486,486,486,486,486,529,529,529,529,529,529,529,529,529,486,486,486,486,486,486,486,486,486,467,467,467,467,467,467,467,467,467,446,446,446,446,446,446,446,446,446,434,434,434,434,434,434,434,434,434,404,404,404,404,404,404,404,404,404,487,487,487,487,487,487,487,487,487,495,495,495,495,495,495,495,495,495,533,533,533,533,533,533,533,533,533,494,494,494,494,494,494,494,494,494,440,440,440,440,440,440,440,440,440,495,495,495,495,495,495,495,495,495,513,513,513,513,513,513,513,513,513,519,519,519,519,519,519,519,519,519,476,476,476,476,476,476,476,476,476,422,422,422,422,422,422,422,422,422,432,432,432,432,432,432,432,432,432,557,557,557,557,557,557,557,557,557,493,493,493,493,493,493,493,493,493,425,425,425,425,425,425,425,425,425,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,482,482,482,482,482,482,482,482,482,451,451,451,451,451,451,451,451,451,430,430,430,430,430,430,430,430,430,525,525,525,525,525,525,525,525,525,456,456,456,456,456,456,456,456,456,526,526,526,526,526,526,526,526,526,439,439,439,439,439,439,439,439,439,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,510,442,442,442,442,442,442,442,442,442,448,448,448,448,448,448,448,448,448,535,535,535,535,535,535,535,535,535,486,486,486,486,486,486,486,486,486,451,451,451,451,451,451,451,451,451,438,438,438,438,438,438,438,438,438,514,514,514,514,514,514,514,514,514,441,441,441,441,441,441,441,441,441,460,460,460,460,460,460,460,460,460,502,502,502,502,502,502,502,502,502,470,470,470,470,470,470,470,470,470,502,502,502,502,502,502,502,502,502,520,520,520,520,520,520,520,520,520,497,497,497,497,497,497,497,497,497,516,516,516,516,516,516,516,516,516,450,450,450,450,450,450,450,450,450,411,411,411,411,411,411,411,411,411,509,509,509,509,509,509,509,509,509,513,513,513,513,513,513,513,513,513,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,500,500,500,500,500,500,500,500,500,512,512,512,512,512,512,512,512,512,483,483,483,483,483,483,483,483,483,499,499,499,499,499,499,499,499,499,523,523,523,523,523,523,523,523,523,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,515,515,515,515,515,515,515,515,515,470,470,470,470,470,470,470,470,470,526,526,526,526,526,526,526,526,526,487,487,487,487,487,487,487,487,487,477,477,477,477,477,477,477,477,477,464,464,464,464,464,464,464,464,464,449,449,449,449,449,449,449,449,449,448,448,448,448,448,448,448,448,448,531,531,531,531,531,531,531,531,531,487,487,487,487,487,487,487,487,487,473,473,473,473,473,473,473,473,473,441,441,441,441,441,441,441,441,441,445,445,445,445,445,445,445,445,445,562,562,562,562,562,562,562,562,562,505,505,505,505,505,505,505,505,505,524,524,524,524,524,524,524,524,524,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,497,497,497,497,497,497,497,497,497,485,485,485,485,485,485,485,485,485,525,525,525,525,525,525,525,525,525,497,497,497,497,497,497,497,497,497,480,480,480,480,480,480,480,480,480,531,531,531,531,531,531,531,531,531,463,463,463,463,463,463,463,463,463,448,448,448,448,448,448,448,448,448,564,564,564,564,564,564,564,564,564,517,517,517,517,517,517,517,517,517,460,460,460,460,460,460,460,460,460,471,471,471,471,471,471,471,471,471,524,524,524,524,524,524,524,524,524,501,501,501,501,501,501,501,501,501,491,491,491,491,491,491,491,491,491,501,501,501,501,501,501,501,501,501,484,484,484,484,484,484,484,484,484,516,516,516,516,516,516,516,516,516,501,501,501,501,501,501,501,501,501,490,490,490,490,490,490,490,490,490,553,553,553,553,553,553,553,553,553,479,479,479,479,479,479,479,479,479,510,510,510,510,510,510,510,510,510,509,509,509,509,509,509,509,509,509,464,464,464,464,464,464,464,464,464,518,518,518,518,518,518,518,518,518,446,446,446,446,446,446,446,446,446,500,500,500,500,500,500,500,500,500,490,490,490,490,490,490,490,490,490,509,509,509,509,509,509,509,509,509,522,522,522,522,522,522,522,522,522,463,463,463,463,463,463,463,463,463,461,461,461,461,461,461,461,461,461,525,525,525,525,525,525,525,525,525,486,486,486,486,486,486,486,486,486,515,515,515,515,515,515,515,515,515,502,502,502,502,502,502,502,502,502,476,476,476,476,476,476,476,476,476,522,522,522,522,522,522,522,522,522,511,511,511,511,511,511,511,511,511,478,478,478,478,478,478,478,478,478,537,537,537,537,537,537,537,537,537,453,453,453,453,453,453,453,453,453,502,502,502,502,502,502,502,502,502,506,506,506,506,506,506,506,506,506,510,510,510,510,510,510,510,510,510,487,487,487,487,487,487,487,487,487,501,501,501,501,501,501,501,501,501,467,467,467,467,467,467,467,467,467,497,497,497,497,497,497,497,497,497,517,517,517,517,517,517,517,517,517,468,468,468,468,468,468,468,468,468,511,511,511,511,511,511,511,511,511,475,475,475,475,475,475,475,475,475,535,535,535,535,535,535,535,535,535,466,466,466,466,466,466,466,466,466,413,413,413,413,413,413,413,413,413,516,516,516,516,516,516,516,516,516,515,515,515,515,515,515,515,515,515,471,471,471,471,471,471,471,471,471,447,447,447,447,447,447,447,447,447,441,441,441,441,441,441,441,441,441,467,467,467,467,467,467,467,467,467,510,510,510,510,510,510,510,510,510,523,523,523,523,523,523,523,523,523,477,477,477,477,477,477,477,477,477,525,525,525,525,525,525,525,525,525,468,468,468,468,468,468,468,468,468,450,450,450,450,450,450,450,450,450,465,465,465,465,465,465,465,465,465,493,493,493,493,493,493,493,493,493,506,506,506,506,506,506,506,506,506,517,517,517,517,517,517,517,517,517,463,463,463,463,463,463,463,463,463,410,410,410,410,410,410,410,410,410,487,487,487,487,487,487,487,487,487,491,491,491,491,491,491,491,491,491,531,531,531,531,531,531,531,531,531,508,508,508,508,508,508,508,508,508,497,497,497,497,497,497,497,497,497,491,491,491,491,491,491,491,491,491,505,505,505,505,505,505,505,505,505,494,494,494,494,494,494,494,494,494,520,520,520,520,520,520,520,520,520,463,463,463,463,463,463,463,463,463,421,421,421,421,421,421,421,421,421,467,467,467,467,467,467,467,467,467,518,518,518,518,518,518,518,518,518,467,467,467,467,467,467,467,467,467,434,434,434,434,434,434,434,434,434,463,463,463,463,463,463,463,463,463,492,492,492,492,492,492,492,492,492,444,444,444,444,444,444,444,444,444,523,523,523,523,523,523,523,523,523,528,528,528,528,528,528,528,528,528,461,461,461,461,461,461,461,461,461,431,431,431,431,431,431,431,431,431,502,502,502,502,502,502,502,502,502,501,501,501,501,501,501,501,501,501,507,507,507,507,507,507,507,507,507,477,477,477,477,477,477,477,477,477,490,490,490,490,490,490,490,490,490,443,443,443,443,443,443,443,443,443,531,531,531,531,531,531,531,531,531,437,437,437,437,437,437,437,437,437,482,482,482,482,482,482,482,482,482,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,487,487,487,487,487,487,487,487,487,519,519,519,519,519,519,519,519,519,486,486,486,486,486,486,486,486,486,492,492,492,492,492,492,492,492,492,464,464,464,464,464,464,464,464,464,525,525,525,525,525,525,525,525,525,459,459,459,459,459,459,459,459,459,512,512,512,512,512,512,512,512,512,487,487,487,487,487,487,487,487,487,518,518,518,518,518,518,518,518,518,475,475,475,475,475,475,475,475,475,452,452,452,452,452,452,452,452,452,471,471,471,471,471,471,471,471,471,500,500,500,500,500,500,500,500,500,439,439,439,439,439,439,439,439,439,489,489,489,489,489,489,489,489,489,499,499,499,499,499,499,499,499,499,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,542,542,542,542,542,542,542,542,542,499,499,499,499,499,499,499,499,499,482,482,482,482,482,482,482,482,482,528,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,443,443,443,443,443,443,443,443,443,423,423,423,423,423,423,423,423,423,509,509,509,509,509,509,509,509,509,534,534,534,534,534,534,534,534,534,514,514,514,514,514,514,514,514,514,515,515,515,515,515,515,515,515,515,486,486,486,486,486,486,486,486,486,470,470,470,470,470,470,470,470,470,455,455,455,455,455,455,455,455,455,449,449,449,449,449,449,449,449,449,441,441,441,441,441,441,441,441,441,476,476,476,476,476,476,476,476,476,521,521,521,521,521,521,521,521,521,450,450,450,450,450,450,450,450,450,404,404,404,404,404,404,404,404,404,498,498,498,498,498,498,498,498,498,529,529,529,529,529,529,529,529,529,514,514,514,514,514,514,514,514,514,515,515,515,515,515,515,515,515,515,486,486,486,486,486,486,486,486,486,470,470,470,470,470,470,470,470,470,448,448,448,448,448,448,448,448,448,426,426,426,426,426,426,426,426,426,424,424,424,424,424,424,424,424,424,497,497,497,497,497,497,497,497,497,499,499,499,499,499,499,499,499,499,530,530,530,530,530,530,530,530,530,473,473,473,473,473,473,473,473,473,505,505,505,505,505,505,505,505,505,509,509,509,509,509,509,509,509,509,471,471,471,471,471,471,471,471,471,463,463,463,463,463,463,463,463,463,502,502,502,502,502,502,502,502,502,528,528,528,528,528,528,528,528,528,487,487,487,487,487,487,487,487,487,548,548,548,548,548,548,548,548,548,499,499,499,499,499,499,499,499,499,444,444,444,444,444,444,444,444,444,521,521,521,521,521,521,521,521,521,525,525,525,525,525,525,525,525,525,481,481,481,481,481,481,481,481,481,452,452,452,452,452,452,452,452,452,448,448,448,448,448,448,448,448,448,417,417,417,417,417,417,417,417,417,451,451,451,451,451,451,451,451,451,538,538,538,538,538,538,538,538,538,467,467,467,467,467,467,467,467,467,465,465,465,465,465,465,465,465,465,534,534,534,534,534,534,534,534,534,479,479,479,479,479,479,479,479,479,424,424,424,424,424,424,424,424,424,441,441,441,441,441,441,441,441,441,532,532,532,532,532,532,532,532,532,467,467,467,467,467,467,467,467,467,440,440,440,440,440,440,440,440,440,514,514,514,514,514,514,514,514,514,481,481,481,481,481,481,481,481,481,450,450,450,450,450,450,450,450,450,426,426,426,426,426,426,426,426,426,447,447,447,447,447,447,447,447,447,535,535,535,535,535,535,535,535,535,476,476,476,476,476,476,476,476,476,526,526,526,526,526,526,526,526,526,487,487,487,487,487,487,487,487,487,477,477,477,477,477,477,477,477,477,466,466,466,466,466,466,466,466,466,458,458,458,458,458,458,458,458,458,437,437,437,437,437,437,437,437,437,460,460,460,460,460,460,460,460,460,493,493,493,493,493,493,493,493,493,478,478,478,478,478,478,478,478,478,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,487,487,487,487,487,487,487,487,487,500,500,500,500,500,500,500,500,500,510,510,510,510,510,510,510,510,510,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,480,480,480,480,480,480,480,480,480,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,509,509,509,509,509,509,509,509,509,521,521,521,521,521,521,521,521,521,481,481,481,481,481,481,481,481,481,458,458,458,458,458,458,458,458,458,469,469,469,469,469,469,469,469,469,501,501,501,501,501,501,501,501,501,479,479,479,479,479,479,479,479,479,496,496,496,496,496,496,496,496,496,519,519,519,519,519,519,519,519,519,460,460,460,460,460,460,460,460,460,545,545,545,545,545,545,545,545,545,470,470,470,470,470,470,470,470,470,494,494,494,494,494,494,494,494,494,495,495,495,495,495,495,495,495,495,505,505,505,505,505,505,505,505,505,476,476,476,476,476,476,476,476,476,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,553,553,553,553,553,553,553,553,553,503,503,503,503,503,503,503,503,503,484,484,484,484,484,484,484,484,484,554,554,554,554,554,554,554,554,554,499,499,499,499,499,499,499,499,499,524,524,524,524,524,524,524,524,524,497,497,497,497,497,497,497,497,497,516,516,516,516,516,516,516,516,516,453,453,453,453,453,453,453,453,453,430,430,430,430,430,430,430,430,430,525,525,525,525,525,525,525,525,525,470,470,470,470,470,470,470,470,470,519,519,519,519,519,519,519,519,519,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,528,528,528,528,528,528,528,528,528,495,495,495,495,495,495,495,495,495,442,442,442,442,442,442,442,442,442,495,495,495,495,495,495,495,495,495,515,515,515,515,515,515,515,515,515,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,449,449,449,449,449,449,449,449,449,465,465,465,465,465,465,465,465,465,519,519,519,519,519,519,519,519,519,504,504,504,504,504,504,504,504,504,500,500,500,500,500,500,500,500,500,520,520,520,520,520,520,520,520,520,444,444,444,444,444,444,444,444,444,455,455,455,455,455,455,455,455,455,518,518,518,518,518,518,518,518,518,512,512,512,512,512,512,512,512,512,505,505,505,505,505,505,505,505,505,464,464,464,464,464,464,464,464,464,426,426,426,426,426,426,426,426,426,436,436,436,436,436,436,436,436,436,519,519,519,519,519,519,519,519,519,477,477,477,477,477,477,477,477,477,451,451,451,451,451,451,451,451,451,434,434,434,434,434,434,434,434,434,525,525,525,525,525,525,525,525,525,458,458,458,458,458,458,458,458,458,410,410,410,410,410,410,410,410,410,506,506,506,506,506,506,506,506,506,509,509,509,509,509,509,509,509,509,478,478,478,478,478,478,478,478,478,528,528,528,528,528,528,528,528,528,485,485,485,485,485,485,485,485,485,538,538,538,538,538,538,538,538,538,465,465,465,465,465,465,465,465,465,433,433,433,433,433,433,433,433,433,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,454,454,454,454,454,454,454,454,454,544,544,544,544,544,544,544,544,544,491,491,491,491,491,491,491,491,491,525,525,525,525,525,525,525,525,525,446,446,446,446,446,446,446,446,446,507,507,507,507,507,507,507,507,507,509,509,509,509,509,509,509,509,509,462,462,462,462,462,462,462,462,462,461,461,461,461,461,461,461,461,461,493,493,493,493,493,493,493,493,493,478,478,478,478,478,478,478,478,478,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,482,482,482,482,482,482,482,482,482,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,528,528,528,487,487,487,487,487,487,487,487,487,552,552,552,552,552,552,552,552,552,521,521,521,521,521,521,521,521,521,486,486,486,486,486,486,486,486,486,463,463,463,463,463,463,463,463,463,452,452,452,452,452,452,452,452,452,456,456,456,456,456,456,456,456,456,471,471,471,471,471,471,471,471,471,487,487,487,487,487,487,487,487,487,495,495,495,495,495,495,495,495,495,527,527,527,527,527,527,527,527,527,494,494,494,494,494,494,494,494,494,466,466,466,466,466,466,466,466,466,510,510,510,510,510,510,510,510,510,522,522,522,522,522,522,522,522,522,474,474,474,474,474,474,474,474,474,470,470,470,470,470,470,470,470,470,500,500,500,500,500,500,500,500,500,439,439,439,439,439,439,439,439,439,489,489,489,489,489,489,489,489,489,500,500,500,500,500,500,500,500,500,534,534,534,534,534,534,534,534,534,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,444,444,444,444,444,444,444,444,444,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,430,430,430,430,430,430,430,430,430,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,515,515,515,515,515,515,515,515,515,495,495,495,495,495,495,495,495,495,489,489,489,489,489,489,489,489,489,527,527,527,527,527,527,527,527,527,509,509,509,509,509,509,509,509,509,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,512,512,512,512,512,512,512,512,512,468,468,468,468,468,468,468,468,468,499,499,499,499,499,499,499,499,499,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,507,507,507,507,507,507,507,507,507,517,517,517,517,517,517,517,517,517,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,522,522,522,522,522,522,522,522,522,475,475,475,475,475,475,475,475,475,436,436,436,436,436,436,436,436,436,435,435,435,435,435,435,435,435,435,507,507,507,507,507,507,507,507,507,478,478,478,478,478,478,478,478,478,533,533,533,533,533,533,533,533,533,465,465,465,465,465,465,465,465,465,475,475,475,475,475,475,475,475,475,524,524,524,524,524,524,524,524,524,501,501,501,501,501,501,501,501,501,496,496,496,496,496,496,496,496,496,513,513,513,513,513,513,513,513,513,464,464,464,464,464,464,464,464,464,471,471,471,471,471,471,471,471,471,513,513,513,513,513,513,513,513,513,449,449,449,449,449,449,449,449,449,412,412,412,412,412,412,412,412,412,522,522,522,522,522,522,522,522,522,524,524,524,524,524,524,524,524,524,491,491,491,491,491,491,491,491,491,472,472,472,472,472,472,472,472,472,448,448,448,448,448,448,448,448,448,474,474,474,474,474,474,474,474,474,505,505,505,505,505,505,505,505,505,484,484,484,484,484,484,484,484,484,516,516,516,516,516,516,516,516,516,501,501,501,501,501,501,501,501,501,490,490,490,490,490,490,490,490,490,553,553,553,553,553,553,553,553,553,479,479,479,479,479,479,479,479,479,516,516,516,516,516,516,516,516,516,514,514,514,514,514,514,514,514,514,462,462,462,462,462,462,462,462,462,423,423,423,423,423,423,423,423,423,477,477,477,477,477,477,477,477,477,524,524,524,524,524,524,524,524,524,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,504,504,504,504,504,504,504,504,504,462,462,462,462,462,462,462,462,462,552,552,552,552,552,552,552,552,552,502,502,502,502,502,502,502,502,502,482,482,482,482,482,482,482,482,482,518,518,518,518,518,518,518,518,518,512,512,512,512,512,512,512,512,512,502,502,502,502,502,502,502,502,502,485,485,485,485,485,485,485,485,485,506,506,506,506,506,506,506,506,506,524,524,524,524,524,524,524,524,524,482,482,482,482,482,482,482,482,482,528,528,528,528,528,528,528,528,528,480,480,480,480,480,480,480,480,480,527,527,527,527,527,527,527,527,527,476,476,476,476,476,476,476,476,476,531,531,531,531,531,531,531,531,531,479,479,479,479,479,479,479,479,479,429,429,429,429,429,429,429,429,429,427,427,427,427,427,427,427,427,427,468,468,468,468,468,468,468,468,468,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,475,475,475,475,475,475,475,475,475,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,509,509,509,509,509,509,509,509,509,521,521,521,521,521,521,521,521,521,486,486,486,486,486,486,486,486,486,474,474,474,474,474,474,474,474,474,455,455,455,455,455,455,455,455,455,452,452,452,452,452,452,452,452,452,458,458,458,458,458,458,458,458,458,447,447,447,447,447,447,447,447,447,438,438,438,438,438,438,438,438,438,521,521,521,521,521,521,521,521,521,438,438,438,438,438,438,438,438,438,435,435,435,435,435,435,435,435,435,535,535,535,535,535,535,535,535,535,463,463,463,463,463,463,463,463,463,550,550,550,550,550,550,550,550,550,514,514,514,514,514,514,514,514,514,459,459,459,459,459,459,459,459,459,451,451,451,451,451,451,451,451,451,538,538,538,538,538,538,538,538,538,463,463,463,463,463,463,463,463,463,544,544,544,544,544,544,544,544,544,497,497,497,497,497,497,497,497,497,481,481,481,481,481,481,481,481,481,511,511,511,511,511,511,511,511,511,530,530,530,530,530,530,530,530,530,469,469,469,469,469,469,469,469,469,486,486,486,486,486,486,486,486,486,529,529,529,529,529,529,529,529,529,486,486,486,486,486,486,486,486,486,467,467,467,467,467,467,467,467,467,446,446,446,446,446,446,446,446,446,434,434,434,434,434,434,434,434,434,429,429,429,429,429,429,429,429,429,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,464,464,464,464,464,464,464,464,464,510,510,510,510,510,510,510,510,510,475,475,475,475,475,475,475,475,475,446,446,446,446,446,446,446,446,446,423,423,423,423,423,423,423,423,423,440,440,440,440,440,440,440,440,440,560,560,560,560,560,560,560,560,560,499,499,499,499,499,499,499,499,499,525,525,525,525,525,525,525,525,525,470,470,470,470,470,470,470,470,470,405,405,405,405,405,405,405,405,405,435,435,435,435,435,435,435,435,435,529,529,529,529,529,529,529,529,529,472,472,472,472,472,472,472,472,472,446,446,446,446,446,446,446,446,446,457,457,457,457,457,457,457,457,457,423,423,423,423,423,423,423,423,423,419,419,419,419,419,419,419,419,419,510,510,510,510,510,510,510,510,510,511,511,511,511,511,511,511,511,511,477,477,477,477,477,477,477,477,477,518,518,518,518,518,518,518,518,518,493,493,493,493,493,493,493,493,493,447,447,447,447,447,447,447,447,447,523,523,523,523,523,523,523,523,523,528,528,528,528,528,528,528,528,528,462,462,462,462,462,462,462,462,462,455,455,455,455,455,455,455,455,455,538,538,538,538,538,538,538,538,538,463,463,463,463,463,463,463,463,463,550,550,550,550,550,550,550,550,550,514,514,514,514,514,514,514,514,514,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,460,529,529,529,529,529,529,529,529,529,485,485,485,485,485,485,485,485,485,540,540,540,540,540,540,540,540,540,491,491,491,491,491,491,491,491,491,469,469,469,469,469,469,469,469,469,449,449,449,449,449,449,449,449,449,448,448,448,448,448,448,448,448,448,523,523,523,523,523,523,523,523,523,461,461,461,461,461,461,461,461,461,486,486,486,486,486,486,486,486,486,529,529,529,529,529,529,529,529,529,480,480,480,480,480,480,480,480,480,444,444,444,444,444,444,444,444,444,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,519,519,519,519,519,519,519,519,519,467,467,467,467,467,467,467,467,467,517,517,517,517,517,517,517,517,517,465,465,465,465,465,465,465,465,465,452,452,452,452,452,452,452,452,452,448,448,448,448,448,448,448,448,448,428,428,428,428,428,428,428,428,428,417,417,417,417,417,417,417,417,417,462,462,462,462,462,462,462,462,462,480,480,480,480,480,480,480,480,480,521,521,521,521,521,521,521,521,521,519,519,519,519,519,519,519,519,519,463,463,463,463,463,463,463,463,463,410,410,410,410,410,410,410,410,410,487,487,487,487,487,487,487,487,487,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,500,500,500,500,500,500,500,500,500,529,529,529,529,529,529,529,529,529,512,512,512,512,512,512,512,512,512,511,511,511,511,511,511,511,511,511,475,475,475,475,475,475,475,475,475,442,442,442,442,442,442,442,442,442,434,434,434,434,434,434,434,434,434,407,407,407,407,407,407,407,407,407,509,509,509,509,509,509,509,509,509,513,513,513,513,513,513,513,513,513,439,439,439,439,439,439,439,439,439,503,503,503,503,503,503,503,503,503,508,508,508,508,508,508,508,508,508,469,469,469,469,469,469,469,469,469,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,469,469,469,469,469,469,469,469,469,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,511,511,511,511,511,511,511,511,511,463,463,463,463,463,463,463,463,463,476,476,476,476,476,476,476,476,476,510,510,510,510,510,510,510,510,510,497,497,497,497,497,497,497,497,497,525,525,525,525,525,525,525,525,525,479,479,479,479,479,479,479,479,479,451,451,451,451,451,451,451,451,451,456,456,456,456,456,456,456,456,456,471,471,471,471,471,471,471,471,471,492,492,492,492,492,492,492,492,492,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,440,440,440,440,440,440,440,440,440,413,413,413,413,413,413,413,413,413,499,499,499,499,499,499,499,499,499,484,484,484,484,484,484,484,484,484,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,474,474,474,474,474,474,474,474,474,516,516,516,516,516,516,516,516,516,513,513,513,513,513,513,513,513,513,467,467,467,467,467,467,467,467,467,559,559,559,559,559,559,559,559,559,497,497,497,497,497,497,497,497,497,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,478,478,478,478,478,478,478,478,478,510,510,510,510,510,510,510,510,510,514,514,514,514,514,514,514,514,514,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,495,495,495,495,495,495,495,495,495,525,525,525,525,525,525,525,525,525,440,440,440,440,440,440,440,440,440,499,499,499,499,499,499,499,499,499,534,534,534,534,534,534,534,534,534,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,467,467,467,467,467,467,467,467,467,507,507,507,507,507,507,507,507,507,524,524,524,524,524,524,524,524,524,470,470,470,470,470,470,470,470,470,444,444,444,444,444,444,444,444,444,457,457,457,457,457,457,457,457,457,431,431,431,431,431,431,431,431,431,403,403,403,403,403,403,403,403,403,485,485,485,485,485,485,485,485,485,500,500,500,500,500,500,500,500,500,512,512,512,512,512,512,512,512,512,482,482,482,482,482,482,482,482,482,472,472,472,472,472,472,472,472,472,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,534,534,534,534,534,534,534,534,534,508,508,508,508,508,508,508,508,508,450,450,450,450,450,450,450,450,450,412,412,412,412,412,412,412,412,412,516,516,516,516,516,516,516,516,516,509,509,509,509,509,509,509,509,509,481,481,481,481,481,481,481,481,481,540,540,540,540,540,540,540,540,540,488,488,488,488,488,488,488,488,488,449,449,449,449,449,449,449,449,449,454,454,454,454,454,454,454,454,454,527,527,527,527,527,527,527,527,527,468,468,468,468,468,468,468,468,468,450,450,450,450,450,450,450,450,450,469,469,469,469,469,469,469,469,469,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,519,465,465,465,465,465,465,465,465,465,469,469,469,469,469,469,469,469,469,472,472,472,472,472,472,472,472,472,501,501,501,501,501,501,501,501,501,528,528,528,528,528,528,528,528,528,497,497,497,497,497,497,497,497,497,484,484,484,484,484,484,484,484,484,553,553,553,553,553,553,553,553,553,476,476,476,476,476,476,476,476,476,496,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,506,516,516,516,516,516,516,516,516,516,484,484,484,484,484,484,484,484,484,456,456,456,456,456,456,456,456,456,430,430,430,430,430,430,430,430,430,414,414,414,414,414,414,414,414,414,440,440,440,440,440,440,440,440,440,558,558,558,558,558,558,558,558,558,494,494,494,494,494,494,494,494,494,550,550,550,550,550,550,550,550,550,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,469,469,469,469,469,469,469,469,469,507,507,507,507,507,507,507,507,507,432,432,432,432,432,432,432,432,432,434,434,434,434,434,434,434,434,434,556,556,556,556,556,556,556,556,556,475,475,475,475,475,475,475,475,475,495,495,495,495,495,495,495,495,495,486,486,486,486,486,486,486,486,486,498,498,498,498,498,498,498,498,498,513,513,513,513,513,513,513,513,513,433,433,433,433,433,433,433,433,433,499,499,499,499,499,499,499,499,499,534,534,534,534,534,534,534,534,534,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,505,505,505,505,505,505,505,505,505,509,509,509,509,509,509,509,509,509,471,471,471,471,471,471,471,471,471,466,466,466,466,466,466,466,466,466,492,492,492,492,492,492,492,492,492,482,482,482,482,482,482,482,482,482,496,496,496,496,496,496,496,496,496,530,530,530,530,530,530,530,530,530,498,498,498,498,498,498,498,498,498,475,475,475,475,475,475,475,475,475,489,489,489,489,489,489,489,489,489,546,546,546,546,546,546,546,546,546,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,494,494,494,494,494,494,494,494,494,440,440,440,440,440,440,440,440,440,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,531,531,531,531,531,531,531,531,531,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,490,490,490,490,490,490,490,490,490,474,474,474,474,474,474,474,474,474,471,471,471,471,471,471,471,471,471,463,463,463,463,463,463,463,463,463,452,452,452,452,452,452,452,452,452,456,456,456,456,456,456,456,456,456,475,475,475,475,475,475,475,475,475,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,471,471,471,471,471,471,471,471,471,447,447,447,447,447,447,447,447,447,441,441,441,441,441,441,441,441,441,478,478,478,478,478,478,478,478,478,529,529,529,529,529,529,529,529,529,480,480,480,480,480,480,480,480,480,444,444,444,444,444,444,444,444,444,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,499,499,499,499,499,499,499,499,499,509,509,509,509,509,509,509,509,509,455,455,455,455,455,455,455,455,455,546,546,546,546,546,546,546,546,546,495,495,495,495,495,495,495,495,495,475,475,475,475,475,475,475,475,475,525,525,525,525,525,525,525,525,525,484,484,484,484,484,484,484,484,484,452,452,452,452,452,452,452,452,452,448,448,448,448,448,448,448,448,448,415,415,415,415,415,415,415,415,415,418,418,418,418,418,418,418,418,418,499,499,499,499,499,499,499,499,499,489,489,489,489,489,489,489,489,489,486,486,486,486,486,486,486,486,486,504,504,504,504,504,504,504,504,504,511,511,511,511,511,511,511,511,511,467,467,467,467,467,467,467,467,467,563,563,563,563,563,563,563,563,563,523,523,523,523,523,523,523,523,523,486,486,486,486,486,486,486,486,486,469,469,469,469,469,469,469,469,469,457,457,457,457,457,457,457,457,457,426,426,426,426,426,426,426,426,426,467,467,467,467,467,467,467,467,467,513,513,513,513,513,513,513,513,513,463,463,463,463,463,463,463,463,463,458,458,458,458,458,458,458,458,458,509,509,509,509,509,509,509,509,509,530,530,530,530,530,530,530,530,530,486,486,486,486,486,486,486,486,486,453,453,453,453,453,453,453,453,453,445,445,445,445,445,445,445,445,445,525,525,525,525,525,525,525,525,525,468,468,468,468,468,468,468,468,468,426,426,426,426,426,426,426,426,426,468,468,468,468,468,468,468,468,468,503,503,503,503,503,503,503,503,503,441,441,441,441,441,441,441,441,441,494,494,494,494,494,494,494,494,494,504,504,504,504,504,504,504,504,504,509,509,509,509,509,509,509,509,509,452,452,452,452,452,452,452,452,452,512,512,512,512,512,512,512,512,512,484,484,484,484,484,484,484,484,484,508,508,508,508,508,508,508,508,508,460,460,460,460,460,460,460,460,460,428,428,428,428,428,428,428,428,428,475,475,475,475,475,475,475,475,475,521,521,521,521,521,521,521,521,521,457,457,457,457,457,457,457,457,457,441,441,441,441,441,441,441,441,441,519,519,519,519,519,519,519,519,519,464,464,464,464,464,464,464,464,464,559,559,559,559,559,559,559,559,559,500,500,500,500,500,500,500,500,500,524,524,524,524,524,524,524,524,524,494,494,494,494,494,494,494,494,494,505,505,505,505,505,505,505,505,505,497,497,497,497,497,497,497,497,497,528,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,461,461,461,461,461,461,461,461,461,491,491,491,491,491,491,491,491,491,546,546,546,546,546,546,546,546,546,481,481,481,481,481,481,481,481,481,522,522,522,522,522,522,522,522,522,525,525,525,525,525,525,525,525,525,488,488,488,488,488,488,488,488,488,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,448,448,448,448,448,448,448,448,448,426,426,426,426,426,426,426,426,426,447,447,447,447,447,447,447,447,447,535,535,535,535,535,535,535,535,535,471,471,471,471,471,471,471,471,471,511,511,511,511,511,511,511,511,511,475,475,475,475,475,475,475,475,475,531,531,531,531,531,531,531,531,531,483,483,483,483,483,483,483,483,483,451,451,451,451,451,451,451,451,451,417,417,417,417,417,417,417,417,417,415,415,415,415,415,415,415,415,415,542,542,542,542,542,542,542,542,542,507,507,507,507,507,507,507,507,507,462,462,462,462,462,462,462,462,462,468,468,468,468,468,468,468,468,468,497,497,497,497,497,497,497,497,497,485,485,485,485,485,485,485,485,485,529,529,529,529,529,529,529,529,529,521,521,521,521,521,521,521,521,521,490,490,490,490,490,490,490,490,490,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,446,446,446,446,446,446,446,446,446,457,457,457,457,457,457,457,457,457,525,525,525,525,525,525,525,525,525,490,490,490,490,490,490,490,490,490,525,525,525,525,525,525,525,525,525,509,509,509,509,509,509,509,509,509,463,463,463,463,463,463,463,463,463,457,457,457,457,457,457,457,457,457,502,502,502,502,502,502,502,502,502,516,516,516,516,516,516,516,516,516,445,445,445,445,445,445,445,445,445,448,448,448,448,448,448,448,448,448,538,538,538,538,538,538,538,538,538,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,467,540,540,540,540,540,540,540,540,540,466,466,466,466,466,466,466,466,466,458,458,458,458,458,458,458,458,458,534,534,534,534,534,534,534,534,534,463,463,463,463,463,463,463,463,463,423,423,423,423,423,423,423,423,423,509,509,509,509,509,509,509,509,509,487,487,487,487,487,487,487,487,487,518,518,518,518,518,518,518,518,518,477,477,477,477,477,477,477,477,477,448,448,448,448,448,448,448,448,448,445,445,445,445,445,445,445,445,445,525,525,525,525,525,525,525,525,525,481,481,481,481,481,481,481,481,481,449,449,449,449,449,449,449,449,449,427,427,427,427,427,427,427,427,427,462,462,462,462,462,462,462,462,462,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,530,530,530,530,530,530,530,530,530,491,491,491,491,491,491,491,491,491,439,439,439,439,439,439,439,439,439,521,521,521,521,521,521,521,521,521,472,472,472,472,472,472,472,472,472,497,497,497,497,497,497,497,497,497,516,516,516,516,516,516,516,516,516,443,443,443,443,443,443,443,443,443,417,417,417,417,417,417,417,417,417,528,528,528,528,528,528,528,528,528,530,530,530,530,530,530,530,530,530,491,491,491,491,491,491,491,491,491,473,473,473,473,473,473,473,473,473,444,444,444,444,444,444,444,444,444,427,427,427,427,427,427,427,427,427,501,501,501,501,501,501,501,501,501,484,484,484,484,484,484,484,484,484,496,496,496,496,496,496,496,496,496,533,533,533,533,533,533,533,533,533,495,495,495,495,495,495,495,495,495,477,477,477,477,477,477,477,477,477,530,530,530,530,530,530,530,530,530,484,484,484,484,484,484,484,484,484,458,458,458,458,458,458,458,458,458,469,469,469,469,469,469,469,469,469,501,501,501,501,501,501,501,501,501,475,475,475,475,475,475,475,475,475,489,489,489,489,489,489,489,489,489,546,546,546,546,546,546,546,546,546,481,481,481,481,481,481,481,481,481,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,486,486,486,486,486,486,486,486,486,474,474,474,474,474,474,474,474,474,453,453,453,453,453,453,453,453,453,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,411,411,411,411,411,411,411,411,411,516,516,516,516,516,516,516,516,516,515,515,515,515,515,515,515,515,515,465,465,465,465,465,465,465,465,465,420,420,420,420,420,420,420,420,420,447,447,447,447,447,447,447,447,447,538,538,538,538,538,538,538,538,538,462,462,462,462,462,462,462,462,462,545,545,545,545,545,545,545,545,545,467,467,467,467,467,467,467,467,467,506,506,506,506,506,506,506,506,506,530,530,530,530,530,530,530,530,530,496,496,496,496,496,496,496,496,496,484,484,484,484,484,484,484,484,484,512,512,512,512,512,512,512,512,512,469,469,469,469,469,469,469,469,469,499,499,499,499,499,499,499,499,499,498,498,498,498,498,498,498,498,498,513,513,513,513,513,513,513,513,513,442,442,442,442,442,442,442,442,442,516,516,516,516,516,516,516,516,516,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,483,483,483,483,483,483,483,483,483,507,507,507,507,507,507,507,507,507,441,441,441,441,441,441,441,441,441,494,494,494,494,494,494,494,494,494,507,507,507,507,507,507,507,507,507,512,512,512,512,512,512,512,512,512,469,469,469,469,469,469,469,469,469,426,426,426,426,426,426,426,426,426,451,451,451,451,451,451,451,451,451,516,516,516,516,516,516,516,516,516,493,493,493,493,493,493,493,493,493,442,442,442,442,442,442,442,442,442,472,472,472,472,472,472,472,472,472,520,520,520,520,520,520,520,520,520,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,506,506,506,506,506,506,506,506,506,474,474,474,474,474,474,474,474,474,523,523,523,523,523,523,523,523,523,472,472,472,472,472,472,472,472,472,446,446,446,446,446,446,446,446,446,454,454,454,454,454,454,454,454,454,426,426,426,426,426,426,426,426,426,467,467,467,467,467,467,467,467,467,516,516,516,516,516,516,516,516,516,453,453,453,453,453,453,453,453,453,430,430,430,430,430,430,430,430,430,533,533,533,533,533,533,533,533,533,437,437,437,437,437,437,437,437,437,489,489,489,489,489,489,489,489,489,507,507,507,507,507,507,507,507,507,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,475,475,475,475,475,475,475,475,475,523,523,523,523,523,523,523,523,523,483,483,483,483,483,483,483,483,483,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,419,419,419,419,419,419,419,419,419,515,515,515,515,515,515,515,515,515,513,513,513,513,513,513,513,513,513,455,455,455,455,455,455,455,455,455,519,519,519,519,519,519,519,519,519,451,451,451,451,451,451,451,451,451,544,544,544,544,544,544,544,544,544,506,506,506,506,506,506,506,506,506,491,491,491,491,491,491,491,491,491,467,467,467,467,467,467,467,467,467,477,477,477,477,477,477,477,477,477,519,519,519,519,519,519,519,519,519,525,525,525,525,525,525,525,525,525,491,491,491,491,491,491,491,491,491,472,472,472,472,472,472,472,472,472,448,448,448,448,448,448,448,448,448,474,474,474,474,474,474,474,474,474,510,510,510,510,510,510,510,510,510,497,497,497,497,497,497,497,497,497,520,520,520,520,520,520,520,520,520,463,463,463,463,463,463,463,463,463,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,522,522,522,522,522,522,522,522,522,491,491,491,491,491,491,491,491,491,520,520,520,520,520,520,520,520,520,497,497,497,497,497,497,497,497,497,485,485,485,485,485,485,485,485,485,518,518,518,518,518,518,518,518,518,512,512,512,512,512,512,512,512,512,502,502,502,502,502,502,502,502,502,481,481,481,481,481,481,481,481,481,472,472,472,472,472,472,472,472,472,496,496,496,496,496,496,496,496,496,509,509,509,509,509,509,509,509,509,521,521,521,521,521,521,521,521,521,482,482,482,482,482,482,482,482,482,451,451,451,451,451,451,451,451,451,434,434,434,434,434,434,434,434,434,525,525,525,525,525,525,525,525,525,455,455,455,455,455,455,455,455,455,418,418,418,418,418,418,418,418,418,540,540,540,540,540,540,540,540,540,511,511,511,511,511,511,511,511,511,492,492,492,492,492,492,492,492,492,447,447,447,447,447,447,447,447,447,521,521,521,521,521,521,521,521,521,524,524,524,524,524,524,524,524,524,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,460,460,460,460,460,460,460,460,460,504,504,504,504,504,504,504,504,504,519,519,519,519,519,519,519,519,519,474,474,474,474,474,474,474,474,474,531,531,531,531,531,531,531,531,531,476,476,476,476,476,476,476,476,476,524,524,524,524,524,524,524,524,524,456,456,456,456,456,456,456,456,456,448,448,448,448,448,448,448,448,448,561,561,561,561,561,561,561,561,561,497,497,497,497,497,497,497,497,497,459,459,459,459,459,459,459,459,459,557,557,557,557,557,557,557,557,557,519,519,519,519,519,519,519,519,519,467,467,467,467,467,467,467,467,467,419,419,419,419,419,419,419,419,419,414,414,414,414,414,414,414,414,414,511,511,511,511,511,511,511,511,511,539,539,539,539,539,539,539,539,539,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,505,505,505,505,505,505,505,505,505,507,507,507,507,507,507,507,507,507,482,482,482,482,482,482,482,482,482,492,492,492,492,492,492,492,492,492,467,467,467,467,467,467,467,467,467,518,518,518,518,518,518,518,518,518,470,470,470,470,470,470,470,470,470,463,463,463,463,463,463,463,463,463,492,492,492,492,492,492,492,492,492,442,442,442,442,442,442,442,442,442,510,510,510,510,510,510,510,510,510,518,518,518,518,518,518,518,518,518,442,442,442,442,442,442,442,442,442,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,518,518,518,518,518,518,518,518,518,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,462,512,512,512,512,512,512,512,512,512,473,473,473,473,473,473,473,473,473,522,522,522,522,522,522,522,522,522,517,517,517,517,517,517,517,517,517,450,450,450,450,450,450,450,450,450,502,502,502,502,502,502,502,502,502,515,515,515,515,515,515,515,515,515,521,521,521,521,521,521,521,521,521,483,483,483,483,483,483,483,483,483,463,463,463,463,463,463,463,463,463,435,435,435,435,435,435,435,435,435,446,446,446,446,446,446,446,446,446,476,476,476,476,476,476,476,476,476,543,543,543,543,543,543,543,543,543,505,505,505,505,505,505,505,505,505,486,486,486,486,486,486,486,486,486,525,525,525,525,525,525,525,525,525,490,490,490,490,490,490,490,490,490,512,512,512,512,512,512,512,512,512,462,462,462,462,462,462,462,462,462,476,476,476,476,476,476,476,476,476,505,505,505,505,505,505,505,505,505,486,486,486,486,486,486,486,486,486,510,510,510,510,510,510,510,510,510,484,484,484,484,484,484,484,484,484,553,553,553,553,553,553,553,553,553,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,555,555,555,555,555,555,555,555,555,514,514,514,514,514,514,514,514,514,493,493,493,493,493,493,493,493,493,467,467,467,467,467,467,467,467,467,533,533,533,533,533,533,533,533,533,444,444,444,444,444,444,444,444,444,489,489,489,489,489,489,489,489,489,510,510,510,510,510,510,510,510,510,521,521,521,521,521,521,521,521,521,483,483,483,483,483,483,483,483,483,466,466,466,466,466,466,466,466,466,433,433,433,433,433,433,433,433,433,439,439,439,439,439,439,439,439,439,522,522,522,522,522,522,522,522,522,479,479,479,479,479,479,479,479,479,452,452,452,452,452,452,452,452,452,476,476,476,476,476,476,476,476,476,507,507,507,507,507,507,507,507,507,444,444,444,444,444,444,444,444,444,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,462,462,462,462,462,462,462,462,462,452,452,452,452,452,452,452,452,452,486,486,486,486,486,486,486,486,486,515,515,515,515,515,515,515,515,515,486,486,486,486,486,486,486,486,486,493,493,493,493,493,493,493,493,493,444,444,444,444,444,444,444,444,444,523,523,523,523,523,523,523,523,523,524,524,524,524,524,524,524,524,524,466,466,466,466,466,466,466,466,466,486,486,486,486,486,486,486,486,486,524,524,524,524,524,524,524,524,524,462,462,462,462,462,462,462,462,462,471,471,471,471,471,471,471,471,471,524,524,524,524,524,524,524,524,524,499,499,499,499,499,499,499,499,499,483,483,483,483,483,483,483,483,483,496,496,496,496,496,496,496,496,496,524,524,524,524,524,524,524,524,524,446,446,446,446,446,446,446,446,446,507,507,507,507,507,507,507,507,507,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,405,405,405,405,405,405,405,405,405,482,482,482,482,482,482,482,482,482,486,486,486,486,486,486,486,486,486,500,500,500,500,500,500,500,500,500,509,509,509,509,509,509,509,509,509,486,486,486,486,486,486,486,486,486,510,510,510,510,510,510,510,510,510,469,469,469,469,469,469,469,469,469,499,499,499,499,499,499,499,499,499,487,487,487,487,487,487,487,487,487,486,486,486,486,486,486,486,486,486,507,507,507,507,507,507,507,507,507,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,456,456,456,456,456,456,456,456,456,468,468,468,468,468,468,468,468,468,502,502,502,502,502,502,502,502,502,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,500,500,500,500,500,500,500,500,500,529,529,529,529,529,529,529,529,529,508,508,508,508,508,508,508,508,508,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,451,451,451,451,451,451,451,451,451,538,538,538,538,538,538,538,538,538,462,462,462,462,462,462,462,462,462,544,544,544,544,544,544,544,544,544,488,488,488,488,488,488,488,488,488,519,519,519,519,519,519,519,519,519,486,486,486,486,486,486,486,486,486,493,493,493,493,493,493,493,493,493,439,439,439,439,439,439,439,439,439,494,494,494,494,494,494,494,494,494,489,489,489,489,489,489,489,489,489,486,486,486,486,486,486,486,486,486,509,509,509,509,509,509,509,509,509,522,522,522,522,522,522,522,522,522,462,462,462,462,462,462,462,462,462,455,455,455,455,455,455,455,455,455,535,535,535,535,535,535,535,535,535,471,471,471,471,471,471,471,471,471,511,511,511,511,511,511,511,511,511,470,470,470,470,470,470,470,470,470,523,523,523,523,523,523,523,523,523,494,494,494,494,494,494,494,494,494,502,502,502,502,502,502,502,502,502,444,444,444,444,444,444,444,444,444,510,510,510,510,510,510,510,510,510,513,513,513,513,513,513,513,513,513,455,455,455,455,455,455,455,455,455,548,548,548,548,548,548,548,548,548,509,509,509,509,509,509,509,509,509,455,455,455,455,455,455,455,455,455,446,446,446,446,446,446,446,446,446,528,528,528,528,528,528,528,528,528,477,477,477,477,477,477,477,477,477,450,450,450,450,450,450,450,450,450,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,486,486,486,486,486,486,486,486,486,509,509,509,509,509,509,509,509,509,524,524,524,524,524,524,524,524,524,486,486,486,486,486,486,486,486,486,451,451,451,451,451,451,451,451,451,463,463,463,463,463,463,463,463,463,533,533,533,533,533,533,533,533,533,465,465,465,465,465,465,465,465,465,475,475,475,475,475,475,475,475,475,524,524,524,524,524,524,524,524,524,499,499,499,499,499,499,499,499,499,485,485,485,485,485,485,485,485,485,511,511,511,511,511,511,511,511,511,537,537,537,537,537,537,537,537,537,494,494,494,494,494,494,494,494,494,472,472,472,472,472,472,472,472,472,447,447,447,447,447,447,447,447,447,467,467,467,467,467,467,467,467,467,510,510,510,510,510,510,510,510,510,529,529,529,529,529,529,529,529,529,453,453,453,453,453,453,453,453,453,512,512,512,512,512,512,512,512,512,534,534,534,534,534,534,534,534,534,498,498,498,498,498,498,498,498,498,478,478,478,478,478,478,478,478,478,468,468,468,468,468,468,468,468,468,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,513,513,513,513,513,513,513,513,513,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,536,536,536,536,536,536,536,536,536,462,462,462,462,462,462,462,462,462,429,429,429,429,429,429,429,429,429,549,549,549,549,549,549,549,549,549,497,497,497,497,497,497,497,497,497,524,524,524,524,524,524,524,524,524,465,465,465,465,465,465,465,465,465,423,423,423,423,423,423,423,423,423,477,477,477,477,477,477,477,477,477,524,524,524,524,524,524,524,524,524,463,463,463,463,463,463,463,463,463,467,467,467,467,467,467,467,467,467,503,503,503,503,503,503,503,503,503,523,523,523,523,523,523,523,523,523,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,515,515,515,515,515,515,515,515,515,470,470,470,470,470,470,470,470,470,524,524,524,524,524,524,524,524,524,477,477,477,477,477,477,477,477,477,450,450,450,450,450,450,450,450,450,405,405,405,405,405,405,405,405,405,498,498,498,498,498,498,498,498,498,529,529,529,529,529,529,529,529,529,510,510,510,510,510,510,510,510,510,489,489,489,489,489,489,489,489,489,461,461,461,461,461,461,461,461,461,552,552,552,552,552,552,552,552,552,492,492,492,492,492,492,492,492,492,546,546,546,546,546,546,546,546,546,507,507,507,507,507,507,507,507,507,534,534,534,534,534,534,534,534,534,465,465,465,465,465,465,465,465,465,433,433,433,433,433,433,433,433,433,525,525,525,525,525,525,525,525,525,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,427,427,427,427,427,427,427,427,427,405,405,405,405,405,405,405,405,405,505,505,505,505,505,505,505,505,505,515,515,515,515,515,515,515,515,515,462,462,462,462,462,462,462,462,462,421,421,421,421,421,421,421,421,421,466,466,466,466,466,466,466,466,466,513,513,513,513,513,513,513,513,513,487,487,487,487,487,487,487,487,487,558,558,558,558,558,558,558,558,558,515,515,515,515,515,515,515,515,515,463,463,463,463,463,463,463,463,463,481,481,481,481,481,481,481,481,481,527,527,527,527,527,527,527,527,527,459,459,459,459,459,459,459,459,459,429,429,429,429,429,429,429,429,429,519,519,519,519,519,519,519,519,519,518,518,518,518,518,518,518,518,518,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,504,504,504,504,504,504,504,504,504,514,514,514,514,514,514,514,514,514,465,465,465,465,465,465,465,465,465,422,422,422,422,422,422,422,422,422,457,457,457,457,457,457,457,457,457,536,536,536,536,536,536,536,536,536,469,469,469,469,469,469,469,469,469,448,448,448,448,448,448,448,448,448,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,413,413,413,413,413,413,413,413,413,509,509,509,509,509,509,509,509,509,508,508,508,508,508,508,508,508,508,454,454,454,454,454,454,454,454,454,544,544,544,544,544,544,544,544,544,497,497,497,497,497,497,497,497,497,520,520,520,520,520,520,520,520,520,443,443,443,443,443,443,443,443,443,416,416,416,416,416,416,416,416,416,515,515,515,515,515,515,515,515,515,513,513,513,513,513,513,513,513,513,451,451,451,451,451,451,451,451,451,542,542,542,542,542,542,542,542,542,498,498,498,498,498,498,498,498,498,484,484,484,484,484,484,484,484,484,551,551,551,551,551,551,551,551,551,503,503,503,503,503,503,503,503,503,479,479,479,479,479,479,479,479,479,493,493,493,493,493,493,493,493,493,516,516,516,516,516,516,516,516,516,481,481,481,481,481,481,481,481,481,514,514,514,514,514,514,514,514,514,482,482,482,482,482,482,482,482,482,441,441,441,441,441,441,441,441,441,550,550,550,550,550,550,550,550,550,472,472,472,472,472,472,472,472,472,510,510,510,510,510,510,510,510,510,514,514,514,514,514,514,514,514,514,439,439,439,439,439,439,439,439,439,510,510,510,510,510,510,510,510,510,505,505,505,505,505,505,505,505,505,442,442,442,442,442,442,442,442,442,458,458,458,458,458,458,458,458,458,529,529,529,529,529,529,529,529,529,515,515,515,515,515,515,515,515,515,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,521,521,521,521,521,521,521,521,521,450,450,450,450,450,450,450,450,450,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,439,439,439,439,439,439,439,439,439,510,510,510,510,510,510,510,510,510,505,505,505,505,505,505,505,505,505,444,444,444,444,444,444,444,444,444,456,456,456,456,456,456,456,456,456,506,506,506,506,506,506,506,506,506,525,525,525,525,525,525,525,525,525,473,473,473,473,473,473,473,473,473,559,559,559,559,559,559,559,559,559,497,497,497,497,497,497,497,497,497,459,459,459,459,459,459,459,459,459,555,555,555,555,555,555,555,555,555,497,497,497,497,497,497,497,497,497,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,509,509,509,509,509,509,509,509,509,529,529,529,529,529,529,529,529,529,467,467,467,467,467,467,467,467,467,475,475,475,475,475,475,475,475,475,532,532,532,532,532,532,532,532,532,517,517,517,517,517,517,517,517,517,457,457,457,457,457,457,457,457,457,444,444,444,444,444,444,444,444,444,562,562,562,562,562,562,562,562,562,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,473,473,473,473,473,473,473,473,473,505,505,505,505,505,505,505,505,505,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,482,482,482,482,482,482,482,482,482,543,543,543,543,543,543,543,543,543,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,509,509,509,509,509,509,509,509,509,468,468,468,468,468,468,468,468,468,429,429,429,429,429,429,429,429,429,405,405,405,405,405,405,405,405,405,505,505,505,505,505,505,505,505,505,515,515,515,515,515,515,515,515,515,467,467,467,467,467,467,467,467,467,446,446,446,446,446,446,446,446,446,461,461,461,461,461,461,461,461,461,446,446,446,446,446,446,446,446,446,436,436,436,436,436,436,436,436,436,469,469,469,469,469,469,469,469,469,510,510,510,510,510,510,510,510,510,461,461,461,461,461,461,461,461,461,471,471,471,471,471,471,471,471,471,518,518,518,518,518,518,518,518,518,475,475,475,475,475,475,475,475,475,448,448,448,448,448,448,448,448,448,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,434,434,434,434,434,434,434,434,434,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,461,461,461,461,461,461,461,461,461,490,490,490,490,490,490,490,490,490,485,485,485,485,485,485,485,485,485,529,529,529,529,529,529,529,529,529,521,521,521,521,521,521,521,521,521,484,484,484,484,484,484,484,484,484,443,443,443,443,443,443,443,443,443,423,423,423,423,423,423,423,423,423,509,509,509,509,509,509,509,509,509,534,534,534,534,534,534,534,534,534,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,487,487,487,487,487,487,487,487,487,466,466,466,466,466,466,466,466,466,460,460,460,460,460,460,460,460,460,431,431,431,431,431,431,431,431,431,403,403,403,403,403,403,403,403,403,485,485,485,485,485,485,485,485,485,500,500,500,500,500,500,500,500,500,509,509,509,509,509,509,509,509,509,486,486,486,486,486,486,486,486,486,510,510,510,510,510,510,510,510,510,472,472,472,472,472,472,472,472,472,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,460,460,460,460,460,460,460,460,460,443,443,443,443,443,443,443,443,443,520,520,520,520,520,520,520,520,520,456,456,456,456,456,456,456,456,456,448,448,448,448,448,448,448,448,448,561,561,561,561,561,561,561,561,561,497,497,497,497,497,497,497,497,497,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,438,438,438,438,438,438,438,438,438,511,511,511,511,511,511,511,511,511,483,483,483,483,483,483,483,483,483,523,523,523,523,523,523,523,523,523,497,497,497,497,497,497,497,497,497,471,471,471,471,471,471,471,471,471,522,522,522,522,522,522,522,522,522,482,482,482,482,482,482,482,482,482,490,490,490,490,490,490,490,490,490,548,548,548,548,548,548,548,548,548,501,501,501,501,501,501,501,501,501,473,473,473,473,473,473,473,473,473,529,529,529,529,529,529,529,529,529,455,455,455,455,455,455,455,455,455,523,523,523,523,523,523,523,523,523,518,518,518,518,518,518,518,518,518,464,464,464,464,464,464,464,464,464,432,432,432,432,432,432,432,432,432,407,407,407,407,407,407,407,407,407,516,516,516,516,516,516,516,516,516,510,510,510,510,510,510,510,510,510,440,440,440,440,440,440,440,440,440,437,437,437,437,437,437,437,437,437,525,525,525,525,525,525,525,525,525,468,468,468,468,468,468,468,468,468,448,448,448,448,448,448,448,448,448,480,480,480,480,480,480,480,480,480,549,549,549,549,549,549,549,549,549,521,521,521,521,521,521,521,521,521,479,479,479,479,479,479,479,479,479,446,446,446,446,446,446,446,446,446,461,461,461,461,461,461,461,461,461,491,491,491,491,491,491,491,491,491,546,546,546,546,546,546,546,546,546,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,506,506,506,506,506,506,506,506,506,530,530,530,530,530,530,530,530,530,498,498,498,498,498,498,498,498,498,494,494,494,494,494,494,494,494,494,524,524,524,524,524,524,524,524,524,458,458,458,458,458,458,458,458,458,444,444,444,444,444,444,444,444,444,557,557,557,557,557,557,557,557,557,502,502,502,502,502,502,502,502,502,484,484,484,484,484,484,484,484,484,512,512,512,512,512,512,512,512,512,465,465,465,465,465,465,465,465,465,510,510,510,510,510,510,510,510,510,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,491,491,491,491,491,491,491,491,491,455,455,455,455,455,455,455,455,455,553,553,553,553,553,553,553,553,553,503,503,503,503,503,503,503,503,503,484,484,484,484,484,484,484,484,484,555,555,555,555,555,555,555,555,555,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,499,499,499,499,499,499,499,499,499,525,525,525,525,525,525,525,525,525,476,476,476,476,476,476,476,476,476,429,429,429,429,429,429,429,429,429,442,442,442,442,442,442,442,442,442,444,444,444,444,444,444,444,444,444,423,423,423,423,423,423,423,423,423,432,432,432,432,432,432,432,432,432,514,514,514,514,514,514,514,514,514,481,481,481,481,481,481,481,481,481,457,457,457,457,457,457,457,457,457,452,452,452,452,452,452,452,452,452,462,462,462,462,462,462,462,462,462,468,468,468,468,468,468,468,468,468,447,447,447,447,447,447,447,447,447,427,427,427,427,427,427,427,427,427,477,477,477,477,477,477,477,477,477,527,527,527,527,527,527,527,527,527,462,462,462,462,462,462,462,462,462,456,456,456,456,456,456,456,456,456,527,527,527,527,527,527,527,527,527,494,494,494,494,494,494,494,494,494,502,502,502,502,502,502,502,502,502,476,476,476,476,476,476,476,476,476,518,518,518,518,518,518,518,518,518,473,473,473,473,473,473,473,473,473,530,530,530,530,530,530,530,530,530,469,469,469,469,469,469,469,469,469,518,518,518,518,518,518,518,518,518,467,467,467,467,467,467,467,467,467,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,443,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,514,514,514,514,514,514,514,514,514,458,458,458,458,458,458,458,458,458,426,426,426,426,426,426,426,426,426,503,503,503,503,503,503,503,503,503,515,515,515,515,515,515,515,515,515,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,451,451,451,451,451,451,451,451,451,461,461,461,461,461,461,461,461,461,493,493,493,493,493,493,493,493,493,545,545,545,545,545,545,545,545,545,501,501,501,501,501,501,501,501,501,486,486,486,486,486,486,486,486,486,527,527,527,527,527,527,527,527,527,516,516,516,516,516,516,516,516,516,463,463,463,463,463,463,463,463,463,422,422,422,422,422,422,422,422,422,453,453,453,453,453,453,453,453,453,490,490,490,490,490,490,490,490,490,548,548,548,548,548,548,548,548,548,496,496,496,496,496,496,496,496,496,459,459,459,459,459,459,459,459,459,558,558,558,558,558,558,558,558,558,523,523,523,523,523,523,523,523,523,481,481,481,481,481,481,481,481,481,445,445,445,445,445,445,445,445,445,463,463,463,463,463,463,463,463,463,538,538,538,538,538,538,538,538,538,486,486,486,486,486,486,486,486,486,453,453,453,453,453,453,453,453,453,445,445,445,445,445,445,445,445,445,524,524,524,524,524,524,524,524,524,463,463,463,463,463,463,463,463,463,444,444,444,444,444,444,444,444,444,515,515,515,515,515,515,515,515,515,466,466,466,466,466,466,466,466,466,531,531,531,531,531,531,531,531,531,473,473,473,473,473,473,473,473,473,514,514,514,514,514,514,514,514,514,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,523,523,523,523,523,523,523,523,523,495,495,495,495,495,495,495,495,495,471,471,471,471,471,471,471,471,471,522,522,522,522,522,522,522,522,522,482,482,482,482,482,482,482,482,482,485,485,485,485,485,485,485,485,485,548,548,548,548,548,548,548,548,548,512,512,512,512,512,512,512,512,512,497,497,497,497,497,497,497,497,497,478,478,478,478,478,478,478,478,478,489,489,489,489,489,489,489,489,489,548,548,548,548,548,548,548,548,548,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,509,509,509,509,509,509,509,509,509,536,536,536,536,536,536,536,536,536,489,489,489,489,489,489,489,489,489,446,446,446,446,446,446,446,446,446,445,445,445,445,445,445,445,445,445,564,564,564,564,564,564,564,564,564,519,519,519,519,519,519,519,519,519,459,459,459,459,459,459,459,459,459,449,449,449,449,449,449,449,449,449,528,528,528,528,528,528,528,528,528,480,480,480,480,480,480,480,480,480,510,510,510,510,510,510,510,510,510,515,515,515,515,515,515,515,515,515,512,512,512,512,512,512,512,512,512,453,453,453,453,453,453,453,453,453,434,434,434,434,434,434,434,434,434,525,525,525,525,525,525,525,525,525,457,457,457,457,457,457,457,457,457,426,426,426,426,426,426,426,426,426,515,515,515,515,515,515,515,515,515,470,470,470,470,470,470,470,470,470,524,524,524,524,524,524,524,524,524,477,477,477,477,477,477,477,477,477,453,453,453,453,453,453,453,453,453,448,448,448,448,448,448,448,448,448,529,529,529,529,529,529,529,529,529,457,457,457,457,457,457,457,457,457,427,427,427,427,427,427,427,427,427,515,515,515,515,515,515,515,515,515,538,538,538,538,538,538,538,538,538,512,512,512,512,512,512,512,512,512,467,467,467,467,467,467,467,467,467,421,421,421,421,421,421,421,421,421,445,445,445,445,445,445,445,445,445,527,527,527,527,527,527,527,527,527,485,485,485,485,485,485,485,485,485,499,499,499,499,499,499,499,499,499,523,523,523,523,523,523,523,523,523,460,460,460,460,460,460,460,460,460,408,408,408,408,408,408,408,408,408,495,495,495,495,495,495,495,495,495,507,507,507,507,507,507,507,507,507,486,486,486,486,486,486,486,486,486,521,521,521,521,521,521,521,521,521,485,485,485,485,485,485,485,485,485,464,464,464,464,464,464,464,464,464,446,446,446,446,446,446,446,446,446,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,484,484,484,484,484,484,484,484,484,486,486,486,486,486,486,486,486,486,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,475,475,475,475,475,475,475,475,475,520,520,520,520,520,520,520,520,520,447,447,447,447,447,447,447,447,447,465,465,465,465,465,465,465,465,465,513,513,513,513,513,513,513,513,513,464,464,464,464,464,464,464,464,464,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,458,458,458,458,458,458,458,458,458,555,555,555,555,555,555,555,555,555,494,494,494,494,494,494,494,494,494,517,517,517,517,517,517,517,517,517,481,481,481,481,481,481,481,481,481,515,515,515,515,515,515,515,515,515,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,520,520,520,520,520,520,520,520,520,464,464,464,464,464,464,464,464,464,476,476,476,476,476,476,476,476,476,510,510,510,510,510,510,510,510,510,494,494,494,494,494,494,494,494,494,517,517,517,517,517,517,517,517,517,467,467,467,467,467,467,467,467,467,434,434,434,434,434,434,434,434,434,461,461,461,461,461,461,461,461,461,507,507,507,507,507,507,507,507,507,460,460,460,460,460,460,460,460,460,428,428,428,428,428,428,428,428,428,460,460,460,460,460,460,460,460,460,493,493,493,493,493,493,493,493,493,548,548,548,548,548,548,548,548,548,499,499,499,499,499,499,499,499,499,440,440,440,440,440,440,440,440,440,495,495,495,495,495,495,495,495,495,506,506,506,506,506,506,506,506,506,512,512,512,512,512,512,512,512,512,482,482,482,482,482,482,482,482,482,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,520,520,520,520,520,520,520,520,520,465,465,465,465,465,465,465,465,465,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,524,524,524,524,524,524,524,524,524,505,505,505,505,505,505,505,505,505,460,460,460,460,460,460,460,460,460,434,434,434,434,434,434,434,434,434,401,401,401,401,401,401,401,401,401,503,503,503,503,503,503,503,503,503,534,534,534,534,534,534,534,534,534,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,467,467,467,467,467,467,467,467,467,500,500,500,500,500,500,500,500,500,519,519,519,519,519,519,519,519,519,468,468,468,468,468,468,468,468,468,511,511,511,511,511,511,511,511,511,475,475,475,475,475,475,475,475,475,531,531,531,531,531,531,531,531,531,479,479,479,479,479,479,479,479,479,439,439,439,439,439,439,439,439,439,463,463,463,463,463,463,463,463,463,510,510,510,510,510,510,510,510,510,472,472,472,472,472,472,472,472,472,442,442,442,442,442,442,442,442,442,436,436,436,436,436,436,436,436,436,465,465,465,465,465,465,465,465,465,501,501,501,501,501,501,501,501,501,478,478,478,478,478,478,478,478,478,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,528,528,528,528,528,528,528,528,528,487,487,487,487,487,487,487,487,487,548,548,548,548,548,548,548,548,548,499,499,499,499,499,499,499,499,499,444,444,444,444,444,444,444,444,444,523,523,523,523,523,523,523,523,523,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,453,453,453,453,453,453,453,453,453,439,439,439,439,439,439,439,439,439,516,516,516,516,516,516,516,516,516,478,478,478,478,478,478,478,478,478,472,472,472,472,472,472,472,472,472,496,496,496,496,496,496,496,496,496,504,504,504,504,504,504,504,504,504,511,511,511,511,511,511,511,511,511,467,467,467,467,467,467,467,467,467,563,563,563,563,563,563,563,563,563,519,519,519,519,519,519,519,519,519,456,456,456,456,456,456,456,456,456,441,441,441,441,441,441,441,441,441,559,559,559,559,559,559,559,559,559,506,506,506,506,506,506,506,506,506,467,467,467,467,467,467,467,467,467,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,533,533,533,533,533,533,533,533,533,491,491,491,491,491,491,491,491,491,459,459,459,459,459,459,459,459,459,558,558,558,558,558,558,558,558,558,521,521,521,521,521,521,521,521,521,478,478,478,478,478,478,478,478,478,444,444,444,444,444,444,444,444,444,405,405,405,405,405,405,405,405,405,503,503,503,503,503,503,503,503,503,534,534,534,534,534,534,534,534,534,517,517,517,517,517,517,517,517,517,488,488,488,488,488,488,488,488,488,472,472,472,472,472,472,472,472,472,464,464,464,464,464,464,464,464,464,447,447,447,447,447,447,447,447,447,438,438,438,438,438,438,438,438,438,521,521,521,521,521,521,521,521,521,441,441,441,441,441,441,441,441,441,444,444,444,444,444,444,444,444,444,536,536,536,536,536,536,536,536,536,449,449,449,449,449,449,449,449,449,512,512,512,512,512,512,512,512,512,534,534,534,534,534,534,534,534,534,498,498,498,498,498,498,498,498,498,488,488,488,488,488,488,488,488,488,505,505,505,505,505,505,505,505,505,477,477,477,477,477,477,477,477,477,489,489,489,489,489,489,489,489,489,546,546,546,546,546,546,546,546,546,479,479,479,479,479,479,479,479,479,510,510,510,510,510,510,510,510,510,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,519,519,519,519,519,519,519,519,519,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,516,516,516,516,516,516,516,516,516,472,472,472,472,472,472,472,472,472,512,512,512,512,512,512,512,512,512,507,507,507,507,507,507,507,507,507,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,478,478,478,478,478,478,478,478,478,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,532,532,532,532,532,532,532,532,532,497,497,497,497,497,497,497,497,497,524,524,524,524,524,524,524,524,524,473,473,473,473,473,473,473,473,473,556,556,556,556,556,556,556,556,556,505,505,505,505,505,505,505,505,505,492,492,492,492,492,492,492,492,492,516,516,516,516,516,516,516,516,516,453,453,453,453,453,453,453,453,453,430,430,430,430,430,430,430,430,430,526,526,526,526,526,526,526,526,526,455,455,455,455,455,455,455,455,455,546,546,546,546,546,546,546,546,546,490,490,490,490,490,490,490,490,490,459,459,459,459,459,459,459,459,459,552,552,552,552,552,552,552,552,552,502,502,502,502,502,502,502,502,502,486,486,486,486,486,486,486,486,486,529,529,529,529,529,529,529,529,529,521,521,521,521,521,521,521,521,521,490,490,490,490,490,490,490,490,490,472,472,472,472,472,472,472,472,472,464,464,464,464,464,464,464,464,464,449,449,449,449,449,449,449,449,449,448,448,448,448,448,448,448,448,448,523,523,523,523,523,523,523,523,523,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,516,516,516,516,516,516,516,516,516,469,469,469,469,469,469,469,469,469,499,499,499,499,499,499,499,499,499,498,498,498,498,498,498,498,498,498,513,513,513,513,513,513,513,513,513,439,439,439,439,439,439,439,439,439,507,507,507,507,507,507,507,507,507,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,423,423,423,423,423,423,423,423,423,509,509,509,509,509,509,509,509,509,480,480,480,480,480,480,480,480,480,492,492,492,492,492,492,492,492,492,484,484,484,484,484,484,484,484,484,518,518,518,518,518,518,518,518,518,491,491,491,491,491,491,491,491,491,475,475,475,475,475,475,475,475,475,513,513,513,513,513,513,513,513,513,468,468,468,468,468,468,468,468,468,499,499,499,499,499,499,499,499,499,504,504,504,504,504,504,504,504,504,512,512,512,512,512,512,512,512,512,464,464,464,464,464,464,464,464,464,432,432,432,432,432,432,432,432,432,426,426,426,426,426,426,426,426,426,525,525,525,525,525,525,525,525,525,463,463,463,463,463,463,463,463,463,518,518,518,518,518,518,518,518,518,467,467,467,467,467,467,467,467,467,444,444,444,444,444,444,444,444,444,457,457,457,457,457,457,457,457,457,433,433,433,433,433,433,433,433,433,435,435,435,435,435,435,435,435,435,514,514,514,514,514,514,514,514,514,448,448,448,448,448,448,448,448,448,517,517,517,517,517,517,517,517,517,518,518,518,518,518,518,518,518,518,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,442,442,442,442,442,442,442,442,442,506,506,506,506,506,506,506,506,506,508,508,508,508,508,508,508,508,508,487,487,487,487,487,487,487,487,487,523,523,523,523,523,523,523,523,523,492,492,492,492,492,492,492,492,492,461,461,461,461,461,461,461,461,461,555,555,555,555,555,555,555,555,555,501,501,501,501,501,501,501,501,501,473,473,473,473,473,473,473,473,473,529,529,529,529,529,529,529,529,529,458,458,458,458,458,458,458,458,458,527,527,527,527,527,527,527,527,527,523,523,523,523,523,523,523,523,523,478,478,478,478,478,478,478,478,478,434,434,434,434,434,434,434,434,434,420,420,420,420,420,420,420,420,420,509,509,509,509,509,509,509,509,509,487,487,487,487,487,487,487,487,487,518,518,518,518,518,518,518,518,518,480,480,480,480,480,480,480,480,480,463,463,463,463,463,463,463,463,463,445,445,445,445,445,445,445,445,445,424,424,424,424,424,424,424,424,424,457,457,457,457,457,457,457,457,457,493,493,493,493,493,493,493,493,493,492,492,492,492,492,492,492,492,492,516,516,516,516,516,516,516,516,516,457,457,457,457,457,457,457,457,457,438,438,438,438,438,438,438,438,438,516,516,516,516,516,516,516,516,516,478,478,478,478,478,478,478,478,478,472,472,472,472,472,472,472,472,472,495,495,495,495,495,495,495,495,495,482,482,482,482,482,482,482,482,482,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,519,519,519,519,519,519,519,519,519,460,460,460,460,460,460,460,460,460,519,519,519,519,519,519,519,519,519,454,454,454,454,454,454,454,454,454,545,545,545,545,545,545,545,545,545,470,470,470,470,470,470,470,470,470,494,494,494,494,494,494,494,494,494,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,440,440,440,440,440,440,440,440,440,413,413,413,413,413,413,413,413,413,494,494,494,494,494,494,494,494,494,500,500,500,500,500,500,500,500,500,533,533,533,533,533,533,533,533,533,504,504,504,504,504,504,504,504,504,458,458,458,458,458,458,458,458,458,438,438,438,438,438,438,438,438,438,472,472,472,472,472,472,472,472,472,517,517,517,517,517,517,517,517,517,462,462,462,462,462,462,462,462,462,478,478,478,478,478,478,478,478,478,508,508,508,508,508,508,508,508,508,481,481,481,481,481,481,481,481,481,530,530,530,530,530,530,530,530,530,484,484,484,484,484,484,484,484,484,453,453,453,453,453,453,453,453,453,459,459,459,459,459,459,459,459,459,517,517,517,517,517,517,517,517,517,509,509,509,509,509,509,509,509,509,490,490,490,490,490,490,490,490,490,427,427,427,427,427,427,427,427,427,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,463,463,463,463,463,463,463,463,463,461,461,461,461,461,461,461,461,461,527,527,527,527,527,527,527,527,527,497,497,497,497,497,497,497,497,497,528,528,528,528,528,528,528,528,528,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,465,465,465,465,465,465,465,465,465,503,503,503,503,503,503,503,503,503,523,523,523,523,523,523,523,523,523,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,515,515,515,515,515,515,515,515,515,460,460,460,460,460,460,460,460,460,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,528,528,528,528,528,528,528,528,528,515,515,515,515,515,515,515,515,515,461,461,461,461,461,461,461,461,461,471,471,471,471,471,471,471,471,471,532,532,532,532,532,532,532,532,532,517,517,517,517,517,517,517,517,517,460,460,460,460,460,460,460,460,460,453,453,453,453,453,453,453,453,453,534,534,534,534,534,534,534,534,534,479,479,479,479,479,479,479,479,479,429,429,429,429,429,429,429,429,429,426,426,426,426,426,426,426,426,426,453,453,453,453,453,453,453,453,453,468,468,468,468,468,468,468,468,468,503,503,503,503,503,503,503,503,503,535,535,535,535,535,535,535,535,535,511,511,511,511,511,511,511,511,511,463,463,463,463,463,463,463,463,463,478,478,478,478,478,478,478,478,478,517,517,517,517,517,517,517,517,517,463,463,463,463,463,463,463,463,463,456,456,456,456,456,456,456,456,456,468,468,468,468,468,468,468,468,468,503,503,503,503,503,503,503,503,503,530,530,530,530,530,530,530,530,530,498,498,498,498,498,498,498,498,498,481,481,481,481,481,481,481,481,481,509,509,509,509,509,509,509,509,509,530,530,530,530,530,530,530,530,530,469,469,469,469,469,469,469,469,469,448,448,448,448,448,448,448,448,448,522,522,522,522,522,522,522,522,522,475,475,475,475,475,475,475,475,475,433,433,433,433,433,433,433,433,433,405,405,405,405,405,405,405,405,405,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,433,433,433,433,433,433,433,433,433,499,499,499,499,499,499,499,499,499,529,529,529,529,529,529,529,529,529,503,503,503,503,503,503,503,503,503,534,534,534,534,534,534,534,534,534,465,465,465,465,465,465,465,465,465,458,458,458,458,458,458,458,458,458,534,534,534,534,534,534,534,534,534,464,464,464,464,464,464,464,464,464,408,408,408,408,408,408,408,408,408,499,499,499,499,499,499,499,499,499,508,508,508,508,508,508,508,508,508,469,469,469,469,469,469,469,469,469,526,526,526,526,526,526,526,526,526,481,481,481,481,481,481,481,481,481,446,446,446,446,446,446,446,446,446,445,445,445,445,445,445,445,445,445,557,557,557,557,557,557,557,557,557,502,502,502,502,502,502,502,502,502,486,486,486,486,486,486,486,486,486,527,527,527,527,527,527,527,527,527,511,511,511,511,511,511,511,511,511,451,451,451,451,451,451,451,451,451,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,480,480,480,480,480,480,480,480,480,496,496,496,496,496,496,496,496,496,535,535,535,535,535,535,535,535,535,514,514,514,514,514,514,514,514,514,484,484,484,484,484,484,484,484,484,457,457,457,457,457,457,457,457,457,426,426,426,426,426,426,426,426,426,469,469,469,469,469,469,469,469,469,520,520,520,520,520,520,520,520,520,463,463,463,463,463,463,463,463,463,464,464,464,464,464,464,464,464,464,472,472,472,472,472,472,472,472,472,501,501,501,501,501,501,501,501,501,528,528,528,528,528,528,528,528,528,497,497,497,497,497,497,497,497,497,484,484,484,484,484,484,484,484,484,552,552,552,552,552,552,552,552,552,495,495,495,495,495,495,495,495,495,525,525,525,525,525,525,525,525,525,449,449,449,449,449,449,449,449,449,516,516,516,516,516,516,516,516,516,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,480,480,480,480,480,480,480,480,480,509,509,509,509,509,509,509,509,509,480,480,480,480,480,480,480,480,480,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,518,518,518,518,518,518,518,518,518,478,478,478,478,478,478,478,478,478,447,447,447,447,447,447,447,447,447,429,429,429,429,429,429,429,429,429,436,436,436,436,436,436,436,436,436,442,442,442,442,442,442,442,442,442,430,430,430,430,430,430,430,430,430,533,533,533,533,533,533,533,533,533,437,437,437,437,437,437,437,437,437,482,482,482,482,482,482,482,482,482,494,494,494,494,494,494,494,494,494,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,543,543,543,543,543,543,543,543,543,507,507,507,507,507,507,507,507,507,498,498,498,498,498,498,498,498,498,490,490,490,490,490,490,490,490,490,554,554,554,554,554,554,554,554,554,507,507,507,507,507,507,507,507,507,534,534,534,534,534,534,534,534,534,489,489,489,489,489,489,489,489,489,474,474,474,474,474,474,474,474,474,453,453,453,453,453,453,453,453,453,449,449,449,449,449,449,449,449,449,457,457,457,457,457,457,457,457,457,425,425,425,425,425,425,425,425,425,451,451,451,451,451,451,451,451,451,538,538,538,538,538,538,538,538,538,465,465,465,465,465,465,465,465,465,431,431,431,431,431,431,431,431,431,497,497,497,497,497,497,497,497,497,499,499,499,499,499,499,499,499,499,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,495,495,495,495,495,495,495,495,495,486,486,486,486,486,486,486,486,486,502,502,502,502,502,502,502,502,502,512,512,512,512,512,512,512,512,512,473,473,473,473,473,473,473,473,473,441,441,441,441,441,441,441,441,441,421,421,421,421,421,421,421,421,421,447,447,447,447,447,447,447,447,447,465,465,465,465,465,465,465,465,465,492,492,492,492,492,492,492,492,492,487,487,487,487,487,487,487,487,487,507,507,507,507,507,507,507,507,507,519,519,519,519,519,519,519,519,519,481,481,481,481,481,481,481,481,481,448,448,448,448,448,448,448,448,448,447,447,447,447,447,447,447,447,447,431,431,431,431,431,431,431,431,431,463,463,463,463,463,463,463,463,463,491,491,491,491,491,491,491,491,491,470,470,470,470,470,470,470,470,470,520,520,520,520,520,520,520,520,520,469,469,469,469,469,469,469,469,469,434,434,434,434,434,434,434,434,434,440,440,440,440,440,440,440,440,440,522,522,522,522,522,522,522,522,522,473,473,473,473,473,473,473,473,473,435,435,435,435,435,435,435,435,435,454,454,454,454,454,454,454,454,454,518,518,518,518,518,518,518,518,518,509,509,509,509,509,509,509,509,509,451,451,451,451,451,451,451,451,451,408,408,408,408,408,408,408,408,408,487,487,487,487,487,487,487,487,487,494,494,494,494,494,494,494,494,494,530,530,530,530,530,530,530,530,530,466,466,466,466,466,466,466,466,466,505,505,505,505,505,505,505,505,505,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,497,497,497,497,497,497,497,497,497,525,525,525,525,525,525,525,525,525,470,470,470,470,470,470,470,470,470,405,405,405,405,405,405,405,405,405,412,412,412,412,412,412,412,412,412,500,500,500,500,500,500,500,500,500,515,515,515,515,515,515,515,515,515,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,480,480,480,480,480,480,480,480,480,510,510,510,510,510,510,510,510,510,490,490,490,490,490,490,490,490,490,505,505,505,505,505,505,505,505,505,480,480,480,480,480,480,480,480,480,472,472,472,472,472,472,472,472,472,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,520,520,520,520,520,520,520,520,520,465,465,465,465,465,465,465,465,465,508,508,508,508,508,508,508,508,508,491,491,491,491,491,491,491,491,491,524,524,524,524,524,524,524,524,524,458,458,458,458,458,458,458,458,458,441,441,441,441,441,441,441,441,441,555,555,555,555,555,555,555,555,555,511,511,511,511,511,511,511,511,511,500,500,500,500,500,500,500,500,500,471,471,471,471,471,471,471,471,471,499,499,499,499,499,499,499,499,499,504,504,504,504,504,504,504,504,504,512,512,512,512,512,512,512,512,512,464,464,464,464,464,464,464,464,464,432,432,432,432,432,432,432,432,432,423,423,423,423,423,423,423,423,423,518,518,518,518,518,518,518,518,518,478,478,478,478,478,478,478,478,478,490,490,490,490,490,490,490,490,490,450,450,450,450,450,450,450,450,450,512,512,512,512,512,512,512,512,512,442,442,442,442,442,442,442,442,442,468,468,468,468,468,468,468,468,468,529,529,529,529,529,529,529,529,529,484,484,484,484,484,484,484,484,484,443,443,443,443,443,443,443,443,443,452,452,452,452,452,452,452,452,452,545,545,545,545,545,545,545,545,545,444,444,444,444,444,444,444,444,444,482,482,482,482,482,482,482,482,482,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,496,496,496,496,496,496,496,496,496,484,484,484,484,484,484,484,484,484,514,514,514,514,514,514,514,514,514,505,505,505,505,505,505,505,505,505,542,542,542,542,542,542,542,542,542,489,489,489,489,489,489,489,489,489,449,449,449,449,449,449,449,449,449,423,423,423,423,423,423,423,423,423,515,515,515,515,515,515,515,515,515,539,539,539,539,539,539,539,539,539,514,514,514,514,514,514,514,514,514,480,480,480,480,480,480,480,480,480,458,458,458,458,458,458,458,458,458,435,435,435,435,435,435,435,435,435,448,448,448,448,448,448,448,448,448,465,465,465,465,465,465,465,465,465,493,493,493,493,493,493,493,493,493,509,509,509,509,509,509,509,509,509,521,521,521,521,521,521,521,521,521,482,482,482,482,482,482,482,482,482,450,450,450,450,450,450,450,450,450,408,408,408,408,408,408,408,408,408,493,493,493,493,493,493,493,493,493,507,507,507,507,507,507,507,507,507,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,454,454,454,454,454,454,454,454,454,483,483,483,483,483,483,483,483,483,545,545,545,545,545,545,545,545,545,512,512,512,512,512,512,512,512,512,494,494,494,494,494,494,494,494,494,489,489,489,489,489,489,489,489,489,529,529,529,529,529,529,529,529,529,517,517,517,517,517,517,517,517,517,461,461,461,461,461,461,461,461,461,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,466,466,466,466,466,466,466,466,466,460,460,460,460,460,460,460,460,460,528,528,528,528,528,528,528,528,528,446,446,446,446,446,446,446,446,446,445,445,445,445,445,445,445,445,445,532,532,532,532,532,532,532,532,532,484,484,484,484,484,484,484,484,484,448,448,448,448,448,448,448,448,448,431,431,431,431,431,431,431,431,431,421,421,421,421,421,421,421,421,421,552,552,552,552,552,552,552,552,552,507,507,507,507,507,507,507,507,507,462,462,462,462,462,462,462,462,462,468,468,468,468,468,468,468,468,468,501,501,501,501,501,501,501,501,501,487,487,487,487,487,487,487,487,487,505,505,505,505,505,505,505,505,505,497,497,497,497,497,497,497,497,497,528,528,528,528,528,528,528,528,528,488,488,488,488,488,488,488,488,488,463,463,463,463,463,463,463,463,463,449,449,449,449,449,449,449,449,449,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,444,444,444,444,444,444,444,444,444,427,427,427,427,427,427,427,427,427,503,503,503,503,503,503,503,503,503,510,510,510,510,510,510,510,510,510,515,515,515,515,515,515,515,515,515,450,450,450,450,450,450,450,450,450,502,502,502,502,502,502,502,502,502,506,506,506,506,506,506,506,506,506,510,510,510,510,510,510,510,510,510,495,495,495,495,495,495,495,495,495,525,525,525,525,525,525,525,525,525,479,479,479,479,479,479,479,479,479,451,451,451,451,451,451,451,451,451,456,456,456,456,456,456,456,456,456,476,476,476,476,476,476,476,476,476,519,519,519,519,519,519,519,519,519,525,525,525,525,525,525,525,525,525,488,488,488,488,488,488,488,488,488,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,448,448,448,448,448,448,448,448,448,426,426,426,426,426,426,426,426,426,447,447,447,447,447,447,447,447,447,538,538,538,538,538,538,538,538,538,462,462,462,462,462,462,462,462,462,544,544,544,544,544,544,544,544,544,497,497,497,497,497,497,497,497,497,524,524,524,524,524,524,524,524,524,465,465,465,465,465,465,465,465,465,423,423,423,423,423,423,423,423,423,473,473,473,473,473,473,473,473,473,509,509,509,509,509,509,509,509,509,477,477,477,477,477,477,477,477,477,489,489,489,489,489,489,489,489,489,543,543,543,543,543,543,543,543,543,489,489,489,489,489,489,489,489,489,546,546,546,546,546,546,546,546,546,504,504,504,504,504,504,504,504,504,472,472,472,472,472,472,472,472,472,528,528,528,528,528,528,528,528,528,523,523,523,523,523,523,523,523,523,461,461,461,461,461,461,461,461,461,431,431,431,431,431,431,431,431,431,497,497,497,497,497,497,497,497,497,495,495,495,495,495,495,495,495,495,529,529,529,529,529,529,529,529,529,499,499,499,499,499,499,499,499,499,467,467,467,467,467,467,467,467,467,499,499,499,499,499,499,499,499,499,495,495,495,495,495,495,495,495,495,507,507,507,507,507,507,507,507,507,480,480,480,480,480,480,480,480,480,496,496,496,496,496,496,496,496,496,492,492,492,492,492,492,492,492,492,517,517,517,517,517,517,517,517,517,471,471,471,471,471,471,471,471,471,429,429,429,429,429,429,429,429,429,428,428,428,428,428,428,428,428,428,506,506,506,506,506,506,506,506,506,442,442,442,442,442,442,442,442,442,468,468,468,468,468,468,468,468,468,524,524,524,524,524,524,524,524,524,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,502,502,502,502,502,502,502,502,502,504,504,504,504,504,504,504,504,504,509,509,509,509,509,509,509,509,509,451,451,451,451,451,451,451,451,451,545,545,545,545,545,545,545,545,545,509,509,509,509,509,509,509,509,509,494,494,494,494,494,494,494,494,494,489,489,489,489,489,489,489,489,489,525,525,525,525,525,525,525,525,525,495,495,495,495,495,495,495,495,495,442,442,442,442,442,442,442,442,442,472,472,472,472,472,472,472,472,472,524,524,524,524,524,524,524,524,524,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,497,497,497,497,497,497,497,497,497,500,500,500,500,500,500,500,500,500,530,530,530,530,530,530,530,530,530,498,498,498,498,498,498,498,498,498,494,494,494,494,494,494,494,494,494,525,525,525,525,525,525,525,525,525,479,479,479,479,479,479,479,479,479,452,452,452,452,452,452,452,452,452,469,469,469,469,469,469,469,469,469,501,501,501,501,501,501,501,501,501,492,492,492,492,492,492,492,492,492,517,517,517,517,517,517,517,517,517,471,471,471,471,471,471,471,471,471,429,429,429,429,429,429,429,429,429,405,405,405,405,405,405,405,405,405,505,505,505,505,505,505,505,505,505,512,512,512,512,512,512,512,512,512,468,468,468,468,468,468,468,468,468,446,446,446,446,446,446,446,446,446,417,417,417,417,417,417,417,417,417,451,451,451,451,451,451,451,451,451,539,539,539,539,539,539,539,539,539,488,488,488,488,488,488,488,488,488,449,449,449,449,449,449,449,449,449,427,427,427,427,427,427,427,427,427,503,503,503,503,503,503,503,503,503,515,515,515,515,515,515,515,515,515,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,486,486,486,486,486,486,486,486,486,527,527,527,527,527,527,527,527,527,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,497,497,497,497,497,497,497,497,497,495,495,495,495,495,495,495,495,495,526,526,526,526,526,526,526,526,526,505,505,505,505,505,505,505,505,505,515,515,515,515,515,515,515,515,515,518,518,518,518,518,518,518,518,518,461,461,461,461,461,461,461,461,461,470,470,470,470,470,470,470,470,470,524,524,524,524,524,524,524,524,524,484,484,484,484,484,484,484,484,484,441,441,441,441,441,441,441,441,441,547,547,547,547,547,547,547,547,547,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,507,507,507,507,507,507,507,507,507,534,534,534,534,534,534,534,534,534,489,489,489,489,489,489,489,489,489,474,474,474,474,474,474,474,474,474,455,455,455,455,455,455,455,455,455,449,449,449,449,449,449,449,449,449,441,441,441,441,441,441,441,441,441,461,461,461,461,461,461,461,461,461,491,491,491,491,491,491,491,491,491,548,548,548,548,548,548,548,548,548,499,499,499,499,499,499,499,499,499,524,524,524,524,524,524,524,524,524,494,494,494,494,494,494,494,494,494,501,501,501,501,501,501,501,501,501,486,486,486,486,486,486,486,486,486,512,512,512,512,512,512,512,512,512,465,465,465,465,465,465,465,465,465,506,506,506,506,506,506,506,506,506,528,528,528,528,528,528,528,528,528,499,499,499,499,499,499,499,499,499,472,472,472,472,472,472,472,472,472,528,528,528,528,528,528,528,528,528,525,525,525,525,525,525,525,525,525,484,484,484,484,484,484,484,484,484,451,451,451,451,451,451,451,451,451,463,463,463,463,463,463,463,463,463,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,535,535,535,535,535,535,535,535,535,514,514,514,514,514,514,514,514,514,476,476,476,476,476,476,476,476,476,448,448,448,448,448,448,448,448,448,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,514,514,514,514,514,514,514,514,514,457,457,457,457,457,457,457,457,457,444,444,444,444,444,444,444,444,444,564,564,564,564,564,564,564,564,564,521,521,521,521,521,521,521,521,521,480,480,480,480,480,480,480,480,480,466,466,466,466,466,466,466,466,466,438,438,438,438,438,438,438,438,438,404,404,404,404,404,404,404,404,404,454,454,454,454,454,454,454,454,454,513,513,513,513,513,513,513,513,513,466,466,466,466,466,466,466,466,466,424,424,424,424,424,424,424,424,424,400,400,400,400,400,400,400,400,400,483,483,483,483,483,483,483,483,483,504,504,504,504,504,504,504,504,504,512,512,512,512,512,512,512,512,512,464,464,464,464,464,464,464,464,464,432,432,432,432,432,432,432,432,432,404,404,404,404,404,404,404,404,404,491,491,491,491,491,491,491,491,491,484,484,484,484,484,484,484,484,484,481,481,481,481,481,481,481,481,481,496,496,496,496,496,496,496,496,496,533,533,533,533,533,533,533,533,533,495,495,495,495,495,495,495,495,495,477,477,477,477,477,477,477,477,477,533,533,533,533,533,533,533,533,533,486,486,486,486,486,486,486,486,486,452,452,452,452,452,452,452,452,452,476,476,476,476,476,476,476,476,476,521,521,521,521,521,521,521,521,521,453,453,453,453,453,453,453,453,453,427,427,427,427,427,427,427,427,427,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,522,522,522,522,522,522,522,522,522,519,519,519,519,519,519,519,519,519,487,487,487,487,487,487,487,487,487,469,469,469,469,469,469,469,469,469,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,440,440,440,440,440,440,440,440,440,540,540,540,540,540,540,540,540,540,451,451,451,451,451,451,451,451,451,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,463,463,463,463,463,463,463,463,463,415,415,415,415,415,415,415,415,415,520,520,520,520,520,520,520,520,520,514,514,514,514,514,514,514,514,514,467,467,467,467,467,467,467,467,467,463,463,463,463,463,463,463,463,463,520,520,520,520,520,520,520,520,520,497,497,497,497,497,497,497,497,497,483,483,483,483,483,483,483,483,483,493,493,493,493,493,493,493,493,493,518,518,518,518,518,518,518,518,518,487,487,487,487,487,487,487,487,487,508,508,508,508,508,508,508,508,508,466,466,466,466,466,466,466,466,466,447,447,447,447,447,447,447,447,447,439,439,439,439,439,439,439,439,439,427,427,427,427,427,427,427,427,427,554,554,554,554,554,554,554,554,554,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,467,467,467,467,467,467,467,467,467,507,507,507,507,507,507,507,507,507,524,524,524,524,524,524,524,524,524,465,465,465,465,465,465,465,465,465,423,423,423,423,423,423,423,423,423,477,477,477,477,477,477,477,477,477,524,524,524,524,524,524,524,524,524,464,464,464,464,464,464,464,464,464,476,476,476,476,476,476,476,476,476,505,505,505,505,505,505,505,505,505,488,488,488,488,488,488,488,488,488,521,521,521,521,521,521,521,521,521,497,497,497,497,497,497,497,497,497,488,488,488,488,488,488,488,488,488,513,513,513,513,513,513,513,513,513,492,492,492,492,492,492,492,492,492,526,526,526,526,526,526,526,526,526,474,474,474,474,474,474,474,474,474,524,524,524,524,524,524,524,524,524,457,457,457,457,457,457,457,457,457,455,455,455,455,455,455,455,455,455,535,535,535,535,535,535,535,535,535,473,473,473,473,473,473,473,473,473,518,518,518,518,518,518,518,518,518,473,473,473,473,473,473,473,473,473,435,435,435,435,435,435,435,435,435,454,454,454,454,454,454,454,454,454,516,516,516,516,516,516,516,516,516,493,493,493,493,493,493,493,493,493,447,447,447,447,447,447,447,447,447,513,513,513,513,513,513,513,513,513,515,515,515,515,515,515,515,515,515,495,495,495,495,495,495,495,495,495,520,520,520,520,520,520,520,520,520,463,463,463,463,463,463,463,463,463,468,468,468,468,468,468,468,468,468,512,512,512,512,512,512,512,512,512,532,532,532,532,532,532,532,532,532,479,479,479,479,479,479,479,479,479,424,424,424,424,424,424,424,424,424,419,419,419,419,419,419,419,419,419,515,515,515,515,515,515,515,515,515,518,518,518,518,518,518,518,518,518,442,442,442,442,442,442,442,442,442,514,514,514,514,514,514,514,514,514,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,518,518,518,518,518,518,518,518,518,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,528,528,528,528,528,528,528,528,528,519,519,519,519,519,519,519,519,519,484,484,484,484,484,484,484,484,484,439,439,439,439,439,439,439,439,439,445,445,445,445,445,445,445,445,445,562,562,562,562,562,562,562,562,562,519,519,519,519,519,519,519,519,519,467,467,467,467,467,467,467,467,467,420,420,420,420,420,420,420,420,420,440,440,440,440,440,440,440,440,440,532,532,532,532,532,532,532,532,532,469,469,469,469,469,469,469,469,469,518,518,518,518,518,518,518,518,518,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,475,475,475,475,475,475,475,475,475,504,504,504,504,504,504,504,504,504,462,462,462,462,462,462,462,462,462,555,555,555,555,555,555,555,555,555,501,501,501,501,501,501,501,501,501,475,475,475,475,475,475,475,475,475,521,521,521,521,521,521,521,521,521,474,474,474,474,474,474,474,474,474,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,459,459,459,459,459,459,459,459,459,558,558,558,558,558,558,558,558,558,519,519,519,519,519,519,519,519,519,459,459,459,459,459,459,459,459,459,456,456,456,456,456,456,456,456,456,529,529,529,529,529,529,529,529,529,469,469,469,469,469,469,469,469,469,429,429,429,429,429,429,429,429,429,422,422,422,422,422,422,422,422,422,546,546,546,546,546,546,546,546,546,488,488,488,488,488,488,488,488,488,550,550,550,550,550,550,550,550,550,512,512,512,512,512,512,512,512,512,452,452,452,452,452,452,452,452,452,437,437,437,437,437,437,437,437,437,523,523,523,523,523,523,523,523,523,464,464,464,464,464,464,464,464,464,422,422,422,422,422,422,422,422,422,453,453,453,453,453,453,453,453,453,531,531,531,531,531,531,531,531,531,485,485,485,485,485,485,485,485,485,496,496,496,496,496,496,496,496,496,519,519,519,519,519,519,519,519,519,467,467,467,467,467,467,467,467,467,518,518,518,518,518,518,518,518,518,470,470,470,470,470,470,470,470,470,449,449,449,449,449,449,449,449,449,440,440,440,440,440,440,440,440,440,423,423,423,423,423,423,423,423,423,509,509,509,509,509,509,509,509,509,534,534,534,534,534,534,534,534,534,510,510,510,510,510,510,510,510,510,489,489,489,489,489,489,489,489,489,461,461,461,461,461,461,461,461,461,555,555,555,555,555,555,555,555,555,505,505,505,505,505,505,505,505,505,528,528,528,528,528,528,528,528,528,469,469,469,469,469,469,469,469,469,444,444,444,444,444,444,444,444,444,525,525,525,525,525,525,525,525,525,448,448,448,448,448,448,448,448,448,517,517,517,517,517,517,517,517,517,518,518,518,518,518,518,518,518,518,442,442,442,442,442,442,442,442,442,511,511,511,511,511,511,511,511,511,509,509,509,509,509,509,509,509,509,480,480,480,480,480,480,480,480,480,528,528,528,528,528,528,528,528,528,473,473,473,473,473,473,473,473,473,464,464,464,464,464,464,464,464,464,505,505,505,505,505,505,505,505,505,450,450,450,450,450,450,450,450,450,458,458,458,458,458,458,458,458,458,503,503,503,503,503,503,503,503,503,464,464,464,464,464,464,464,464,464,510,510,510,510,510,510,510,510,510,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,520,520,520,520,520,520,520,520,520,474,474,474,474,474,474,474,474,474,526,526,526,526,526,526,526,526,526,487,487,487,487,487,487,487,487,487,472,472,472,472,472,472,472,472,472,448,448,448,448,448,448,448,448,448,474,474,474,474,474,474,474,474,474,509,509,509,509,509,509,509,509,509,487,487,487,487,487,487,487,487,487,499,499,499,499,499,499,499,499,499,477,477,477,477,477,477,477,477,477,501,501,501,501,501,501,501,501,501,492,492,492,492,492,492,492,492,492,520,520,520,520,520,520,520,520,520,478,478,478,478,478,478,478,478,478,446,446,446,446,446,446,446,446,446,426,426,426,426,426,426,426,426,426,424,424,424,424,424,424,424,424,424,501,501,501,501,501,501,501,501,501,489,489,489,489,489,489,489,489,489,504,504,504,504,504,504,504,504,504,512,512,512,512,512,512,512,512,512,463,463,463,463,463,463,463,463,463,435,435,435,435,435,435,435,435,435,469,469,469,469,469,469,469,469,469,513,513,513,513,513,513,513,513,513,449,449,449,449,449,449,449,449,449,408,408,408,408,408,408,408,408,408,487,487,487,487,487,487,487,487,487,495,495,495,495,495,495,495,495,495,535,535,535,535,535,535,535,535,535,514,514,514,514,514,514,514,514,514,484,484,484,484,484,484,484,484,484,467,467,467,467,467,467,467,467,467,446,446,446,446,446,446,446,446,446,434,434,434,434,434,434,434,434,434,423,423,423,423,423,423,423,423,423,518,518,518,518,518,518,518,518,518,481,481,481,481,481,481,481,481,481,504,504,504,504,504,504,504,504,504,469,469,469,469,469,469,469,469,469,443,443,443,443,443,443,443,443,443,427,427,427,427,427,427,427,427,427,446,446,446,446,446,446,446,446,446,448,448,448,448,448,448,448,448,448,455,455,455,455,455,455,455,455,455,463,463,463,463,463,463,463,463,463,444,444,444,444,444,444,444,444,444,429,429,429,429,429,429,429,429,429,525,525,525,525,525,525,525,525,525,515,515,515,515,515,515,515,515,515,439,439,439,439,439,439,439,439,439,430,430,430,430,430,430,430,430,430,557,557,557,557,557,557,557,557,557,495,495,495,495,495,495,495,495,495,450,450,450,450,450,450,450,450,450,512,512,512,512,512,512,512,512,512,491,491,491,491,491,491,491,491,491,520,520,520,520,520,520,520,520,520,464,464,464,464,464,464,464,464,464,476,476,476,476,476,476,476,476,476,509,509,509,509,509,509,509,509,509,494,494,494,494,494,494,494,494,494,510,510,510,510,510,510,510,510,510,461,461,461,461,461,461,461,461,461,438,438,438,438,438,438,438,438,438,469,469,469,469,469,469,469,469,469,510,510,510,510,510,510,510,510,510,457,457,457,457,457,457,457,457,457,461,461,461,461,461,461,461,461,461,509,509,509,509,509,509,509,509,509,485,485,485,485,485,485,485,485,485,552,552,552,552,552,552,552,552,552,501,501,501,501,501,501,501,501,501,520,520,520,520,520,520,520,520,520,443,443,443,443,443,443,443,443,443,433,433,433,433,433,433,433,433,433,526,526,526,526,526,526,526,526,526,492,492,492,492,492,492,492,492,492,521,521,521,521,521,521,521,521,521,481,481,481,481,481,481,481,481,481,443,443,443,443,443,443,443,443,443,449,449,449,449,449,449,449,449,449,529,529,529,529,529,529,529,529,529,488,488,488,488,488,488,488,488,488,494,494,494,494,494,494,494,494,494,477,477,477,477,477,477,477,477,477,533,533,533,533,533,533,533,533,533,491,491,491,491,491,491,491,491,491,474,474,474,474,474,474,474,474,474,466,466,466,466,466,466,466,466,466,448,448,448,448,448,448,448,448,448,453,453,453,453,453,453,453,453,453,435,435,435,435,435,435,435,435,435,404,404,404,404,404,404,404,404,404,445,445,445,445,445,445,445,445,445,490,490,490,490,490,490,490,490,490,550,550,550,550,550,550,550,550,550,512,512,512,512,512,512,512,512,512,455,455,455,455,455,455,455,455,455,441,441,441,441,441,441,441,441,441,525,525,525,525,525,525,525,525,525,448,448,448,448,448,448,448,448,448,523,523,523,523,523,523,523,523,523,515,515,515,515,515,515,515,515,515,440,440,440,440,440,440,440,440,440,413,413,413,413,413,413,413,413,413,494,494,494,494,494,494,494,494,494,499,499,499,499,499,499,499,499,499,530,530,530,530,530,530,530,530,530,490,490,490,490,490,490,490,490,490,525,525,525,525,525,525,525,525,525,440,440,440,440,440,440,440,440,440,499,499,499,499,499,499,499,499,499,528,528,528,528,528,528,528,528,528,496,496,496,496,496,496,496,496,496,486,486,486,486,486,486,486,486,486,529,529,529,529,529,529,529,529,529,517,517,517,517,517,517,517,517,517,461,461,461,461,461,461,461,461,461,460,460,460,460,460,460,460,460,460,539,539,539,539,539,539,539,539,539,449,449,449,449,449,449,449,449,449,507,507,507,507,507,507,507,507,507,534,534,534,534,534,534,534,534,534,512,512,512,512,512,512,512,512,512,508,508,508,508,508,508,508,508,508,467,467,467,467,467,467,467,467,467,434,434,434,434,434,434,434,434,434,460,460,460,460,460,460,460,460,460,490,490,490,490,490,490,490,490,490,484,484,484,484,484,484,484,484,484,512,512,512,512,512,512,512,512,512,469,469,469,469,469,469,469,469,469,499,499,499,499,499,499,499,499,499,487,487,487,487,487,487,487,487,487,485,485,485,485,485,485,485,485,485,486,486,486,486,486,486,486,486,486,507,507,507,507,507,507,507,507,507,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,456,456,456,456,456,456,456,456,456,471,471,471,471,471,471,471,471,471,492,492,492,492,492,492,492,492,492,482,482,482,482,482,482,482,482,482,491,491,491,491,491,491,491,491,491,529,529,529,529,529,529,529,529,529,499,499,499,499,499,499,499,499,499,467,467,467,467,467,467,467,467,467,499,499,499,499,499,499,499,499,499,486,486,486,486,486,486,486,486,486,498,498,498,498,498,498,498,498,498,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,519,519,519,519,519,519,519,519,519,461,461,461,461,461,461,461,461,461,469,469,469,469,469,469,469,469,469,475,475,475,475,475,475,475,475,475,496,496,496,496,496,496,496,496,496,509,509,509,509,509,509,509,509,509,524,524,524,524,524,524,524,524,524,491,491,491,491,491,491,491,491,491,473,473,473,473,473,473,473,473,473,444,444,444,444,444,444,444,444,444,431,431,431,431,431,431,431,431,431,521,521,521,521,521,521,521,521,521,513,513,513,513,513,513,513,513,513,487,487,487,487,487,487,487,487,487,520,520,520,520,520,520,520,520,520,501,501,501,501,501,501,501,501,501,496,496,496,496,496,496,496,496,496,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,440,440,440,440,440,440,440,440,440,405,405,405,405,405,405,405,405,405,408,408,408,408,408,408,408,408,408,511,511,511,511,511,511,511,511,511,539,539,539,539,539,539,539,539,539,511,511,511,511,511,511,511,511,511,463,463,463,463,463,463,463,463,463,481,481,481,481,481,481,481,481,481,527,527,527,527,527,527,527,527,527,459,459,459,459,459,459,459,459,459,426,426,426,426,426,426,426,426,426,502,502,502,502,502,502,502,502,502,504,504,504,504,504,504,504,504,504,513,513,513,513,513,513,513,513,513,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,504,504,504,504,504,504,504,504,504,514,514,514,514,514,514,514,514,514,465,465,465,465,465,465,465,465,465,420,420,420,420,420,420,420,420,420,444,444,444,444,444,444,444,444,444,533,533,533,533,533,533,533,533,533,477,477,477,477,477,477,477,477,477,466,466,466,466,466,466,466,466,466,493,493,493,493,493,493,493,493,493,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,481,481,481,481,481,481,481,481,481,538,538,538,538,538,538,538,538,538,463,463,463,463,463,463,463,463,463,446,446,446,446,446,446,446,446,446,561,561,561,561,561,561,561,561,561,521,521,521,521,521,521,521,521,521,518,518,518,518,518,518,518,518,518,482,482,482,482,482,482,482,482,482,443,443,443,443,443,443,443,443,443,468,468,468,468,468,468,468,468,468,516,516,516,516,516,516,516,516,516,469,469,469,469,469,469,469,469,469,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,498,498,498,498,498,498,498,498,498,492,492,492,492,492,492,492,492,492,516,516,516,516,516,516,516,516,516,450,450,450,450,450,450,450,450,450,408,408,408,408,408,408,408,408,408,487,487,487,487,487,487,487,487,487,491,491,491,491,491,491,491,491,491,531,531,531,531,531,531,531,531,531,508,508,508,508,508,508,508,508,508,497,497,497,497,497,497,497,497,497,498,498,498,498,498,498,498,498,498,528,528,528,528,528,528,528,528,528,491,491,491,491,491,491,491,491,491,472,472,472,472,472,472,472,472,472,463,463,463,463,463,463,463,463,463,453,453,453,453,453,453,453,453,453,469,469,469,469,469,469,469,469,469,501,501,501,501,501,501,501,501,501,478,478,478,478,478,478,478,478,478,474,474,474,474,474,474,474,474,474,510,510,510,510,510,510,510,510,510,508,508,508,508,508,508,508,508,508,458,458,458,458,458,458,458,458,458,520,520,520,520,520,520,520,520,520,476,476,476,476,476,476,476,476,476,434,434,434,434,434,434,434,434,434,437,437,437,437,437,437,437,437,437,447,447,447,447,447,447,447,447,447,472,472,472,472,472,472,472,472,472,518,518,518,518,518,518,518,518,518,475,475,475,475,475,475,475,475,475,452,452,452,452,452,452,452,452,452,455,455,455,455,455,455,455,455,455,469,469,469,469,469,469,469,469,469,471,471,471,471,471,471,471,471,471,468,468,468,468,468,468,468,468,468,461,461,461,461,461,461,461,461,461,423,423,423,423,423,423,423,423,423,437,437,437,437,437,437,437,437,437,525,525,525,525,525,525,525,525,525,483,483,483,483,483,483,483,483,483,522,522,522,522,522,522,522,522,522,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,468,468,468,468,468,468,468,468,468,446,446,446,446,446,446,446,446,446,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,466,466,466,466,466,466,466,466,466,458,458,458,458,458,458,458,458,458,527,527,527,527,527,527,527,527,527,469,469,469,469,469,469,469,469,469,462,462,462,462,462,462,462,462,462,500,500,500,500,500,500,500,500,500,432,432,432,432,432,432,432,432,432,434,434,434,434,434,434,434,434,434,553,553,553,553,553,553,553,553,553,492,492,492,492,492,492,492,492,492,546,546,546,546,546,546,546,546,546,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,494,494,494,494,494,494,494,494,494,444,444,444,444,444,444,444,444,444,523,523,523,523,523,523,523,523,523,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,450,450,450,450,450,450,450,450,450,408,408,408,408,408,408,408,408,408,493,493,493,493,493,493,493,493,493,510,510,510,510,510,510,510,510,510,524,524,524,524,524,524,524,524,524,488,488,488,488,488,488,488,488,488,469,469,469,469,469,469,469,469,469,443,443,443,443,443,443,443,443,443,427,427,427,427,427,427,427,427,427,547,547,547,547,547,547,547,547,547,497,497,497,497,497,497,497,497,497,486,486,486,486,486,486,486,486,486,529,529,529,529,529,529,529,529,529,515,515,515,515,515,515,515,515,515,464,464,464,464,464,464,464,464,464,481,481,481,481,481,481,481,481,481,527,527,527,527,527,527,527,527,527,462,462,462,462,462,462,462,462,462,460,460,460,460,460,460,460,460,460,539,539,539,539,539,539,539,539,539,455,455,455,455,455,455,455,455,455,523,523,523,523,523,523,523,523,523,515,515,515,515,515,515,515,515,515,440,440,440,440,440,440,440,440,440,435,435,435,435,435,435,435,435,435,540,540,540,540,540,540,540,540,540,448,448,448,448,448,448,448,448,448,510,510,510,510,510,510,510,510,510,505,505,505,505,505,505,505,505,505,444,444,444,444,444,444,444,444,444,453,453,453,453,453,453,453,453,453,472,472,472,472,472,472,472,472,472,489,489,489,489,489,489,489,489,489,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,546,546,546,546,546,546,546,546,546,476,476,476,476,476,476,476,476,476,495,495,495,495,495,495,495,495,495,487,487,487,487,487,487,487,487,487,485,485,485,485,485,485,485,485,485,502,502,502,502,502,502,502,502,502,514,514,514,514,514,514,514,514,514,471,471,471,471,471,471,471,471,471,429,429,429,429,429,429,429,429,429,428,428,428,428,428,428,428,428,428,438,438,438,438,438,438,438,438,438,525,525,525,525,525,525,525,525,525,446,446,446,446,446,446,446,446,446,495,495,495,495,495,495,495,495,495,500,500,500,500,500,500,500,500,500,535,535,535,535,535,535,535,535,535,514,514,514,514,514,514,514,514,514,484,484,484,484,484,484,484,484,484,470,470,470,470,470,470,470,470,470,453,453,453,453,453,453,453,453,453,447,447,447,447,447,447,447,447,447,457,457,457,457,457,457,457,457,457,431,431,431,431,431,431,431,431,431,405,405,405,405,405,405,405,405,405,499,499,499,499,499,499,499,499,499,508,508,508,508,508,508,508,508,508,455,455,455,455,455,455,455,455,455,546,546,546,546,546,546,546,546,546,493,493,493,493,493,493,493,493,493,444,444,444,444,444,444,444,444,444,523,523,523,523,523,523,523,523,523,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,463,463,463,463,463,463,463,463,463,421,421,421,421,421,421,421,421,421,458,458,458,458,458,458,458,458,458,511,511,511,511,511,511,511,511,511,465,465,465,465,465,465,465,465,465,511,511,511,511,511,511,511,511,511,531,531,531,531,531,531,531,531,531,506,506,506,506,506,506,506,506,506,467,467,467,467,467,467,467,467,467,430,430,430,430,430,430,430,430,430,413,413,413,413,413,413,413,413,413,466,466,466,466,466,466,466,466,466,516,516,516,516,516,516,516,516,516,465,465,465,465,465,465,465,465,465,510,510,510,510,510,510,510,510,510,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,548,548,548,548,548,548,548,548,548,519,519,519,519,519,519,519,519,519,512,512,512,512,512,512,512,512,512,464,464,464,464,464,464,464,464,464,481,481,481,481,481,481,481,481,481,524,524,524,524,524,524,524,524,524,464,464,464,464,464,464,464,464,464,476,476,476,476,476,476,476,476,476,505,505,505,505,505,505,505,505,505,486,486,486,486,486,486,486,486,486,513,513,513,513,513,513,513,513,513,492,492,492,492,492,492,492,492,492,526,526,526,526,526,526,526,526,526,468,468,468,468,468,468,468,468,468,509,509,509,509,509,509,509,509,509,469,469,469,469,469,469,469,469,469,531,531,531,531,531,531,531,531,531,464,464,464,464,464,464,464,464,464,410,410,410,410,410,410,410,410,410,501,501,501,501,501,501,501,501,501,510,510,510,510,510,510,510,510,510,495,495,495,495,495,495,495,495,495,520,520,520,520,520,520,520,520,520,462,462,462,462,462,462,462,462,462,470,470,470,470,470,470,470,470,470,519,519,519,519,519,519,519,519,519,500,500,500,500,500,500,500,500,500,528,528,528,528,528,528,528,528,528,474,474,474,474,474,474,474,474,474,539,539,539,539,539,539,539,539,539,451,451,451,451,451,451,451,451,451,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,514,470,470,470,470,470,470,470,470,470,459,459,459,459,459,459,459,459,459,500,500,500,500,500,500,500,500,500,469,469,469,469,469,469,469,469,469,510,510,510,510,510,510,510,510,510,522,522,522,522,522,522,522,522,522,474,474,474,474,474,474,474,474,474,468,468,468,468,468,468,468,468,468,501,501,501,501,501,501,501,501,501,487,487,487,487,487,487,487,487,487,495,495,495,495,495,495,495,495,495,449,449,449,449,449,449,449,449,449,524,524,524,524,524,524,524,524,524,476,476,476,476,476,476,476,476,476,431,431,431,431,431,431,431,431,431,413,413,413,413,413,413,413,413,413,464,464,464,464,464,464,464,464,464,521,521,521,521,521,521,521,521,521,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,520,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,461,534,534,534,534,534,534,534,534,534,479,479,479,479,479,479,479,479,479,439,439,439,439,439,439,439,439,439,460,460,460,460,460,460,460,460,460,493,493,493,493,493,493,493,493,493,487,487,487,487,487,487,487,487,487,505,505,505,505,505,505,505,505,505,480,480,480,480,480,480,480,480,480,474,474,474,474,474,474,474,474,474,510,510,510,510,510,510,510,510,510,514,514,514,514,514,514,514,514,514,442,442,442,442,442,442,442,442,442,511,511,511,511,511,511,511,511,511,507,507,507,507,507,507,507,507,507,473,473,473,473,473,473,473,473,473,525,525,525,525,525,525,525,525,525,470,470,470,470,470,470,470,470,470,468,468,468,468,468,468,468,468,468,510,510,510,510,510,510,510,510,510,458,458,458,458,458,458,458,458,458,471,471,471,471,471,471,471,471,471,532,532,532,532,532,532,532,532,532,515,515,515,515,515,515,515,515,515,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,508,508,508,508,508,508,508,508,508,481,481,481,481,481,481,481,481,481,530,530,530,530,530,530,530,530,530,489,489,489,489,489,489,489,489,489,472,472,472,472,472,472,472,472,472,451,451,451,451,451,451,451,451,451,455,455,455,455,455,455,455,455,455,440,440,440,440,440,440,440,440,440,427,427,427,427,427,427,427,427,427,473,473,473,473,473,473,473,473,473,510,510,510,510,510,510,510,510,510,490,490,490,490,490,490,490,490,490,505,505,505,505,505,505,505,505,505,494,494,494,494,494,494,494,494,494,513,513,513,513,513,513,513,513,513,460,460,460,460,460,460,460,460,460,461,461,461,461,461,461,461,461,461,509,509,509,509,509,509,509,509,509,481,481,481,481,481,481,481,481,481,555,555,555,555,555,555,555,555,555,519,519,519,519,519,519,519,519,519,518,518,518,518,518,518,518,518,518,487,487,487,487,487,487,487,487,487,466,466,466,466,466,466,466,466,466,458,458,458,458,458,458,458,458,458,437,437,437,437,437,437,437,437,437,466,466,466,466,466,466,466,466,466,514,514,514,514,514,514,514,514,514,459,459,459,459,459,459,459,459,459,461,461,461,461,461,461,461,461,461,536,536,536,536,536,536,536,536,536,466,466,466,466,466,466,466,466,466,430,430,430,430,430,430,430,430,430,518,518,518,518,518,518,518,518,518,484,484,484,484,484,484,484,484,484,496,496,496,496,496,496,496,496,496,438,438,438,438,438,438,438,438,438,461,461,461,461,461,461,461,461,461,521,521,521,521,521,521,521,521,521,497,497,497,497,497,497,497,497,497,485,485,485,485,485,485,485,485,485,516,516,516,516,516,516,516,516,516,502,502,502,502,502,502,502,502,502,476,476,476,476,476,476,476,476,476,517,517,517,517,517,517,517,517,517,510,510,510,510,510,510,510,510,510,492,492,492,492,492,492,492,492,492,515,515,515,515,515,515,515,515,515,468,468,468,468,468,468,468,468,468,451,451,451,451,451,451,451,451,451,464,464,464,464,464,464,464,464,464,448,448,448,448,448,448,448,448,448,426,426,426,426,426,426,426,426,426,449,449,449,449,449,449,449,449,449,534,534,534,534,534,534,534,534,534,464,464,464,464,464,464,464,464,464,405,405,405,405,405,405,405,405,405,482,482,482,482,482,482,482,482,482,480,480,480,480,480,480,480,480,480,496,496,496,496,496,496,496,496,496,535,535,535,535,535,535,535,535,535,514,514,514,514,514,514,514,514,514,476,476,476,476,476,476,476,476,476,448,448,448,448,448,448,448,448,448,462,462,462,462,462,462,462,462,462,525,525,525,525,525,525,525,525,525,513,513,513,513,513,513,513,513,513,468,468,468,468,468,468,468,468,468,419,419,419,419,419,419,419,419,419,414,414,414,414,414,414,414,414,414,511,511,511,511,511,511,511,511,511,537,537,537,537,537,537,537,537,537,494,494,494,494,494,494,494,494,494,444,444,444,444,444,444,444,444,444,518,518,518,518,518,518,518,518,518,513,513,513,513,513,513,513,513,513,473,473,473,473,473,473,473,473,473,531,531,531,531,531,531,531,531,531,467,467,467,467,467,467,467,467,467,438,438,438,438,438,438,438,438,438,514,514,514,514,514,514,514,514,514,442,442,442,442,442,442,442,442,442,512,512,512,512,512,512,512,512,512,537,537,537,537,537,537,537,537,537,499,499,499,499,499,499,499,499,499,453,453,453,453,453,453,453,453,453,471,471,471,471,471,471,471,471,471,516,516,516,516,516,516,516,516,516,483,483,483,483,483,483,483,483,483,457,457,457,457,457,457,457,457,457,425,425,425,425,425,425,425,425,425,457,457,457,457,457,457,457,457,457,506,506,506,506,506,506,506,506,506,523,523,523,523,523,523,523,523,523,472,472,472,472,472,472,472,472,472,529,529,529,529,529,529,529,529,529,474,474,474,474,474,474,474,474,474,483,483,483,483,483,483,483,483,483,547,547,547,547,547,547,547,547,547,513,513,513,513,513,513,513,513,513,468,468,468,468,468,468,468,468,468,426,426,426,426,426,426,426,426,426,415,415,415,415,415,415,415,415,415,537,537,537,537,537,537,537,537,537,503,503,503,503,503,503,503,503,503,494,494,494,494,494,494,494,494,494,533,533,533,533,533,533,533,533,533,486,486,486,486,486,486,486,486,486,468,468,468,468,468,468,468,468,468,505,505,505,505,505,505,505,505,505,530,530,530,530,530,530,530,530,530,496,496,496,496,496,496,496,496,496,524,524,524,524,524,524,524,524,524,467,467,467,467,467,467,467,467,467,419,419,419,419,419,419,419,419,419,426,426,426,426,426,426,426,426,426,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,462,462,462,462,462,462,462,462,462,509,509,509,509,509,509,509,509,509,442,442,442,442,442,442,442,442,442,466,466,466,466,466,466,466,466,466,502,502,502,502,502,502,502,502,502,463,463,463,463,463,463,463,463,463,523,523,523,523,523,523,523,523,523,477,477,477,477,477,477,477,477,477,493,493,493,493,493,493,493,493,493,522,522,522,522,522,522,522,522,522,466,466,466,466,466,466,466,466,466,406,406,406,406,406,406,406,406,406,460,460,460,460,460,460,460,460,460,524,524,524,524,524,524,524,524,524,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,488,488,488,488,488,488,488,488,488,449,449,449,449,449,449,449,449,449,427,427,427,427,427,427,427,427,427,501,501,501,501,501,501,501,501,501,490,490,490,490,490,490,490,490,490,509,509,509,509,509,509,509,509,509,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,486,486,486,486,486,486,486,486,486,524,524,524,524,524,524,524,524,524,464,464,464,464,464,464,464,464,464,478,478,478,478,478,478,478,478,478,517,517,517,517,517,517,517,517,517,464,464,464,464,464,464,464,464,464,470,470,470,470,470,470,470,470,470,500,500,500,500,500,500,500,500,500,439,439,439,439,439,439,439,439,439,494,494,494,494,494,494,494,494,494,489,489,489,489,489,489,489,489,489,502,502,502,502,502,502,502,502,502,512,512,512,512,512,512,512,512,512,473,473,473,473,473,473,473,473,473,443,443,443,443,443,443,443,443,443,422,422,422,422,422,422,422,422,422,436,436,436,436,436,436,436,436,436,519,519,519,519,519,519,519,519,519,477,477,477,477,477,477,477,477,477,453,453,453,453,453,453,453,453,453,448,448,448,448,448,448,448,448,448,523,523,523,523,523,523,523,523,523,458,458,458,458,458,458,458,458,458,475,475,475,475,475,475,475,475,475,524,524,524,524,524,524,524,524,524,501,501,501,501,501,501,501,501,501,498,498,498,498,498,498,498,498,498,525,525,525,525,525,525,525,525,525,480,480,480,480,480,480,480,480,480,448,448,448,448,448,448,448,448,448,445,445,445,445,445,445,445,445,445,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,437,437,437,437,437,437,437,437,437,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,461,461,461,461,461,461,461,461,461,490,490,490,490,490,490,490,490,490,484,484,484,484,484,484,484,484,484,512,512,512,512,512,512,512,512,512,465,465,465,465,465,465,465,465,465,510,510,510,510,510,510,510,510,510,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,506,517,517,517,517,517,517,517,517,517,459,459,459,459,459,459,459,459,459,429,429,429,429,429,429,429,429,429,554,554,554,554,554,554,554,554,554,518,518,518,518,518,518,518,518,518,481,481,481,481,481,481,481,481,481,443,443,443,443,443,443,443,443,443,423,423,423,423,423,423,423,423,423,515,515,515,515,515,515,515,515,515,532,532,532,532,532,532,532,532,532,487,487,487,487,487,487,487,487,487,550,550,550,550,550,550,550,550,550,512,512,512,512,512,512,512,512,512,452,452,452,452,452,452,452,452,452,427,427,427,427,427,427,427,427,427,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,515,515,515,515,515,515,515,515,515,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,528,528,528,528,528,528,528,528,528,491,491,491,491,491,491,491,491,491,468,468,468,468,468,468,468,468,468,444,444,444,444,444,444,444,444,444,423,423,423,423,423,423,423,423,423,515,515,515,515,515,515,515,515,515,532,532,532,532,532,532,532,532,532,495,495,495,495,495,495,495,495,495,482,482,482,482,482,482,482,482,482,525,525,525,525,525,525,525,525,525,477,477,477,477,477,477,477,477,477,445,445,445,445,445,445,445,445,445,434,434,434,434,434,434,434,434,434,519,519,519,519,519,519,519,519,519,462,462,462,462,462,462,462,462,462,450,450,450,450,450,450,450,450,450,465,465,465,465,465,465,465,465,465,493,493,493,493,493,493,493,493,493,509,509,509,509,509,509,509,509,509,518,518,518,518,518,518,518,518,518,466,466,466,466,466,466,466,466,466,486,486,486,486,486,486,486,486,486,532,532,532,532,532,532,532,532,532,491,491,491,491,491,491,491,491,491,468,468,468,468,468,468,468,468,468,441,441,441,441,441,441,441,441,441,445,445,445,445,445,445,445,445,445,556,556,556,556,556,556,556,556,556,498,498,498,498,498,498,498,498,498,467,467,467,467,467,467,467,467,467,519,519,519,519,519,519,519,519,519,509,509,509,509,509,509,509,509,509,485,485,485,485,485,485,485,485,485,441,441,441,441,441,441,441,441,441,550,550,550,550,550,550,550,550,550,488,488,488,488,488,488,488,488,488,517,517,517,517,517,517,517,517,517,481,481,481,481,481,481,481,481,481,518,518,518,518,518,518,518,518,518,493,493,493,493,493,493,493,493,493,473,473,473,473,473,473,473,473,473,523,523,523,523,523,523,523,523,523,472,472,472,472,472,472,472,472,472,443,443,443,443,443,443,443,443,443,442,442,442,442,442,442,442,442,442,408,408,408,408,408,408,408,408,408,487,487,487,487,487,487,487,487,487,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,496,496,496,496,496,496,496,496,496,486,486,486,486,486,486,486,486,486,521,521,521,521,521,521,521,521,521,501,501,501,501,501,501,501,501,501,498,498,498,498,498,498,498,498,498,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,456,456,456,456,456,456,456,456,456,528,528,528,528,528,528,528,528,528,444,444,444,444,444,444,444,444,444,429,429,429,429,429,429,429,429,429,553,553,553,553,553,553,553,553,553,505,505,505,505,505,505,505,505,505,488,488,488,488,488,488,488,488,488,505,505,505,505,505,505,505,505,505,480,480,480,480,480,480,480,480,480,468,468,468,468,468,468,468,468,468,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,493,493,493,493,493,493,493,493,493,471,471,471,471,471,471,471,471,471,520,520,520,520,520,520,520,520,520,473,473,473,473,473,473,473,473,473,452,452,452,452,452,452,452,452,452,438,438,438,438,438,438,438,438,438,434,434,434,434,434,434,434,434,434,407,407,407,407,407,407,407,407,407,516,516,516,516,516,516,516,516,516,515,515,515,515,515,515,515,515,515,471,471,471,471,471,471,471,471,471,450,450,450,450,450,450,450,450,450,460,460,460,460,460,460,460,460,460,458,458,458,458,458,458,458,458,458,437,437,437,437,437,437,437,437,437,460,460,460,460,460,460,460,460,460,493,493,493,493,493,493,493,493,493,490,490,490,490,490,490,490,490,490,502,502,502,502,502,502,502,502,502,441,441,441,441,441,441,441,441,441,494,494,494,494,494,494,494,494,494,507,507,507,507,507,507,507,507,507,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,408,408,408,408,408,408,408,408,408,495,495,495,495,495,495,495,495,495,507,507,507,507,507,507,507,507,507,482,482,482,482,482,482,482,482,482,493,493,493,493,493,493,493,493,493,435,435,435,435,435,435,435,435,435,506,506,506,506,506,506,506,506,506,537,537,537,537,537,537,537,537,537,494,494,494,494,494,494,494,494,494,440,440,440,440,440,440,440,440,440,494,494,494,494,494,494,494,494,494,507,507,507,507,507,507,507,507,507,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,433,433,433,433,433,433,433,433,433,506,506,506,506,506,506,506,506,506,441,441,441,441,441,441,441,441,441,460,460,460,460,460,460,460,460,460,503,503,503,503,503,503,503,503,503,485,485,485,485,485,485,485,485,485,519,519,519,519,519,519,519,519,519,460,460,460,460,460,460,460,460,460,467,467,467,467,467,467,467,467,467,503,503,503,503,503,503,503,503,503,525,525,525,525,525,525,525,525,525,470,470,470,470,470,470,470,470,470,407,407,407,407,407,407,407,407,407,440,440,440,440,440,440,440,440,440,532,532,532,532,532,532,532,532,532,474,474,474,474,474,474,474,474,474,426,426,426,426,426,426,426,426,426,467,467,467,467,467,467,467,467,467,520,520,520,520,520,520,520,520,520,468,468,468,468,468,468,468,468,468,418,418,418,418,418,418,418,418,418,432,432,432,432,432,432,432,432,432,559,559,559,559,559,559,559,559,559,515,515,515,515,515,515,515,515,515,461,461,461,461,461,461,461,461,461,425,425,425,425,425,425,425,425,425,420,420,420,420,420,420,420,420,420,515,515,515,515,515,515,515,515,515,535,535,535,535,535,535,535,535,535,494,494,494,494,494,494,494,494,494,522,522,522,522,522,522,522,522,522,489,489,489,489,489,489,489,489,489,516,516,516,516,516,516,516,516,516,515,515,515,515,515,515,515,515,515,499,499,499,499,499,499,499,499,499,480,480,480,480,480,480,480,480,480,533,533,533,533,533,533,533,533,533,491,491,491,491,491,491,491,491,491,468,468,468,468,468,468,468,468,468,449,449,449,449,449,449,449,449,449,462,462,462,462,462,462,462,462,462,523,523,523,523,523,523,523,523,523,490,490,490,490,490,490,490,490,490,461,461,461,461,461,461,461,461,461,558,558,558,558,558,558,558,558,558,521,521,521,521,521,521,521,521,521,476,476,476,476,476,476,476,476,476,451,451,451,451,451,451,451,451,451,456,456,456,456,456,456,456,456,456,471,471,471,471,471,471,471,471,471,492,492,492,492,492,492,492,492,492,487,487,487,487,487,487,487,487,487,481,481,481,481,481,481,481,481,481,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,495,495,495,495,495,495,495,495,495,482,482,482,482,482,482,482,482,482,496,496,496,496,496,496,496,496,496,535,535,535,535,535,535,535,535,535,511,511,511,511,511,511,511,511,511,460,460,460,460,460,460,460,460,460,467,467,467,467,467,467,467,467,467,519,519,519,519,519,519,519,519,519,502,502,502,502,502,502,502,502,502,474,474,474,474,474,474,474,474,474,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,408,408,408,408,408,408,408,408,408,505,505,505,505,505,505,505,505,505,515,515,515,515,515,515,515,515,515,465,465,465,465,465,465,465,465,465,422,422,422,422,422,422,422,422,422,457,457,457,457,457,457,457,457,457,536,536,536,536,536,536,536,536,536,462,462,462,462,462,462,462,462,462,429,429,429,429,429,429,429,429,429,549,549,549,549,549,549,549,549,549,472,472,472,472,472,472,472,472,472,516,516,516,516,516,516,516,516,516,510,510,510,510,510,510,510,510,510,440,440,440,440,440,440,440,440,440,417,417,417,417,417,417,417,417,417,521,521,521,521,521,521,521,521,521,513,513,513,513,513,513,513,513,513,473,473,473,473,473,473,473,473,473,531,531,531,531,531,531,531,531,531,482,482,482,482,482,482,482,482,482,433,433,433,433,433,433,433,433,433,417,417,417,417,417,417,417,417,417,424,424,424,424,424,424,424,424,424,503,503,503,503,503,503,503,503,503,515,515,515,515,515,515,515,515,515,521,521,521,521,521,521,521,521,521,483,483,483,483,483,483,483,483,483,469,469,469,469,469,469,469,469,469,453,453,453,453,453,453,453,453,453,442,442,442,442,442,442,442,442,442,433,433,433,433,433,433,433,433,433,441,441,441,441,441,441,441,441,441,442,442,442,442,442,442,442,442,442,457,457,457,457,457,457,457,457,457,527,527,527,527,527,527,527,527,527,497,497,497,497,497,497,497,497,497,528,528,528,528,528,528,528,528,528,491,491,491,491,491,491,491,491,491,468,468,468,468,468,468,468,468,468,444,444,444,444,444,444,444,444,444,427,427,427,427,427,427,427,427,427,502,502,502,502,502,502,502,502,502,507,507,507,507,507,507,507,507,507,514,514,514,514,514,514,514,514,514,463,463,463,463,463,463,463,463,463,406,406,406,406,406,406,406,406,406,458,458,458,458,458,458,458,458,458,503,503,503,503,503,503,503,503,503,438,438,438,438,438,438,438,438,438,501,501,501,501,501,501,501,501,501,530,530,530,530,530,530,530,530,530,501,501,501,501,501,501,501,501,501,506,506,506,506,506,506,506,506,506,519,519,519,519,519,519,519,519,519,497,497,497,497,497,497,497,497,497,444,444,444,444,444,444,444,444,444,517,517,517,517,517,517,517,517,517,521,521,521,521,521,521,521,521,521,467,467,467,467,467,467,467,467,467,444,444,444,444,444,444,444,444,444,457,457,457,457,457,457,457,457,457,432,432,432,432,432,432,432,432,432,423,423,423,423,423,423,423,423,423,517,517,517,517,517,517,517,517,517,455,455,455,455,455,455,455,455,455,550,550,550,550,550,550,550,550,550,518,518,518,518,518,518,518,518,518,481,481,481,481,481,481,481,481,481,443,443,443,443,443,443,443,443,443,427,427,427,427,427,427,427,427,427,497,497,497,497,497,497,497,497,497,499,499,499,499,499,499,499,499,499,530,530,530,530,530,530,530,530,530,470,470,470,470,470,470,470,470,470,494,494,494,494,494,494,494,494,494,495,495,495,495,495,495,495,495,495,505,505,505,505,505,505,505,505,505,477,477,477,477,477,477,477,477,477,522,522,522,522,522,522,522,522,522,514,514,514,514,514,514,514,514,514,458,458,458,458,458,458,458,458,458,426,426,426,426,426,426,426,426,426,503,503,503,503,503,503,503,503,503,515,515,515,515,515,515,515,515,515,522,522,522,522,522,522,522,522,522,461,461,461,461,461,461,461,461,461,431,431,431,431,431,431,431,431,431,497,497,497,497,497,497,497,497,497,500,500,500,500,500,500,500,500,500,535,535,535,535,535,535,535,535,535,517,517,517,517,517,517,517,517,517,488,488,488,488,488,488,488,488,488,472,472,472,472,472,472,472,472,472,466,466,466,466,466,466,466,466,466,460,460,460,460,460,460,460,460,460,432,432,432,432,432,432,432,432,432,423,423,423,423,423,423,423,423,423,517,517,517,517,517,517,517,517,517,454,454,454,454,454,454,454,454,454,544,544,544,544,544,544,544,544,544,488,488,488,488,488,488,488,488,488,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,516,516,516,516,516,516,516,516,516,456,456,456,456,456,456,456,456,456,423,423,423,423,423,423,423,423,423,515,515,515,515,515,515,515,515,515,537,537,537,537,537,537,537,537,537,495,495,495,495,495,495,495,495,495,475,475,475,475,475,475,475,475,475,521,521,521,521,521,521,521,521,521,472,472,472,472,472,472,472,472,472,454,454,454,454,454,454,454,454,454,487,487,487,487,487,487,487,487,487,543,543,543,543,543,543,543,543,543,476,476,476,476,476,476,476,476,476,495,495,495,495,495,495,495,495,495,482,482,482,482,482,482,482,482,482,496,496,496,496,496,496,496,496,496,534,534,534,534,534,534,534,534,534,512,512,512,512,512,512,512,512,512,477,477,477,477,477,477,477,477,477,444,444,444,444,444,444,444,444,444,427,427,427,427,427,427,427,427,427,471,471,471,471,471,471,471,471,471,504,504,504,504,504,504,504,504,504,418,418,418,418,418,418,418,418,418,497,497,497,497,497,497,497,497,497,529,529,529,529,529,529,529,529,529,507,507,507,507,507,507,507,507,507,485,485,485,485,485,485,485,485,485,445,445,445,445,445,445,445,445,445,524,524,524,524,524,524,524,524,524,460,460,460,460,460,460,460,460,460,507,507,507,507,507,507,507,507,507,483,483,483,483,483,483,483,483,483,528,528,528,528,528,528,528,528,528,519,519,519,519,519,519,519,519,519,478,478,478,478,478,478,478,478,478,452,452,452,452,452,452,452,452,452,475,475,475,475,475,475,475,475,475,521,521,521,521,521,521,521,521,521,456,456,456,456,456,456,456,456,456,426,426,426,426,426,426,426,426,426,497,497,497,497,497,497,497,497,497,500,500,500,500,500,500,500,500,500,533,533,533,533,533,533,533,533,533,493,493,493,493,493,493,493,493,493,461,461,461,461,461,461,461,461,461,523,523,523,523,523,523,523,523,523,474,474,474,474,474,474,474,474,474,483,483,483,483,483,483,483,483,483,545,545,545,545,545,545,545,545,545,498,498,498,498,498,498,498,498,498,464,464,464,464,464,464,464,464,464,533,533,533,533,533,533,533,533,533,440,440,440,440,440,440,440,440,440,499,499,499,499,499,499,499,499,499,528,528,528,528,528,528,528,528,528,498,498,498,498,498,498,498,498,498,489,489,489,489,489,489,489,489,489,503,503,503,503,503,503,503,503,503,456,456,456,456,456,456,456,456,456,468,468,468,468,468,468,468,468,468,503,503,503,503,503,503,503,503,503,461,461,461,461,461,461,461,461,461,471,471,471,471,471,471,471,471,471,513,513,513,513,513,513,513,513,513,454,454,454,454,454,454,454,454,454,441,441,441,441,441,441,441,441,441,516,516,516,516,516,516,516,516,516,470,470,470,470,470,470,470,470,470,523,523,523,523,523,523,523,523,523,492,492,492,492,492,492,492,492,492,501,501,501,501,501,501,501,501,501,484,484,484,484,484,484,484,484,484,513,513,513,513,513,513,513,513,513,508,508,508,508,508,508,508,508,508,504,504,504,504,504,504,504,504,504,490,490,490,490,490,490,490,490,490,553,553,553,553,553,553,553,553,553,481,481,481,481,481,481,481,481,481,520,520,520,520,520,520,520,520,520,519,519,519,519,519,519,519,519,519,463,463,463,463,463,463,463,463,463,432,432,432,432,432,432,432,432,432,526,526,526,526,526,526,526,526,526,455,455,455,455,455,455,455,455,455,550,550,550,550,550,550,550,550,550,514,514,514,514,514,514,514,514,514,460,460,460,460,460,460,460,460,460,463,463,463,463,463,463,463,463,463,540,540,540,540,540,540,540,540,540,491,491,491,491,491,491,491,491,491,469,469,469,469,469,469,469,469,469,443,443,443,443,443,443,443,443,443,423,423,423,423,423,423,423,423,423,549,549,549,549,549,549,549,549,549,514,514,514,514,514,514,514,514,514,507,507,507,507,507,507,507,507,507,451,451,451,451,451,451,451,451,451,411,411,411,411,411,411,411,411,411,509,509,509,509,509,509,509,509,509,513,513,513,513,513,513,513,513,513,433,433,433,433,433,433,433,433,433,499,499,499,499,499,499,499,499,499,531,531,531,531,531,531,531,531,531,506,506,506,506,506,506,506,506,506,452,452,452,452,452,452,452,452,452,405,405,405,405,405,405,405,405,405,460,460,460,460,460,460,460,460,460,529,529,529,529,529,529,529,529,529,488,488,488,488,488,488,488,488,488,464,464,464,464,464,464,464,464,464,447,447,447,447,447,447,447,447,447,427,427,427,427,427,427,427,427,427,518,518,518,518,518,518,518,518,518,483,483,483,483,483,483,483,483,483,492,492,492,492,492,492,492,492,492,470,470,470,470,470,470,470,470,470,523,523,523,523,523,523,523,523,523,472,472,472,472,472,472,472,472,472,443,443,443,443,443,443,443,443,443,447,447,447,447,447,447,447,447,447,456,456,456,456,456,456,456,456,456,471,471,471,471,471,471,471,471,471,493,493,493,493,493,493,493,493,493,500,500,500,500,500,500,500,500,500,509,509,509,509,509,509,509,509,509,487,487,487,487,487,487,487,487,487,525,525,525,525,525,525,525,525,525,509,509,509,509,509,509,509,509,509,464,464,464,464,464,464,464,464,464,468,468,468,468,468,468,468,468,468,501,501,501,501,501,501,501,501,501,487,487,487,487,487,487,487,487,487,495,495,495,495,495,495,495,495,495,441,441,441,441,441,441,441,441,441,521,521,521,521,521,521,521,521,521,475,475,475,475,475,475,475,475,475,502,502,502,502,502,502,502,502,502,526,526,526,526,526,526,526,526,526,489,489,489,489,489,489,489,489,489,454,454,454,454,454,454,454,454,454,447,447,447,447,447,447,447,447,447,457,457,457,457,457,457,457,457,457,428,428,428,428,428,428,428,428,428,418,418,418,418,418,418,418,418,418,539,539,539,539,539,539,539,539,539,470,470,470,470,470,470,470,470,470,496,496,496,496,496,496,496,496,496,509,509,509,509,509,509,509,509,509,522,522,522,522,522,522,522,522,522,462,462,462,462,462,462,462,462,462,453,453,453,453,453,453,453,453,453,529,529,529,529,529,529,529,529,529,485,485,485,485,485,485,485,485,485,495,495,495,495,495,495,495,495,495,475,475,475,475,475,475,475,475,475,489,489,489,489,489,489,489,489,489,552,552,552,552,552,552,552,552,552,518,518,518,518,518,518,518,518,518,484,484,484,484,484,484,484,484,484,467,467,467,467,467,467,467,467,467,448,448,448,448,448,448,448,448,448,451,451,451,451,451,451,451,451,451,444,444,444,444,444,444,444,444,444,423,423,423,423,423,423,423,423,423,432,432,432,432,432,432,432,432,432,509,509,509,509,509,509,509,509,509,462,462,462,462,462,462,462,462,462,463,463,463,463,463,463,463,463,463,523,523,523,523,523,523,523,523,523,490,490,490,490,490,490,490,490,490,461,461,461,461,461,461,461,461,461,557,557,557,557,557,557,557,557,557,516,516,516,516,516,516,516,516,516,472,472,472,472,472,472,472,472,472,443,443,443,443,443,443,443,443,443,420,420,420,420,420,420,420,420,420,451,451,451,451,451,451,451,451,451,513,513,513,513,513,513,513,513,513,498,498,498,498,498,498,498,498,498,496,496,496,496,496,496,496,496,496,520,520,520,520,520,520,520,520,520,478,478,478,478,478,478,478,478,478,448,448,448,448,448,448,448,448,448,446,446,446,446,446,446,446,446,446,442,442,442,442,442,442,442,442,442,411,411,411,411,411,411,411,411,411,509,509,509,509,509,509,509,509,509,513,513,513,513,513,513,513,513,513,442,442,442,442,442,442,442,442,442,511,511,511,511,511,511,511,511,511,509,509,509,509,509,509,509,509,509,467,467,467,467,467,467,467,467,467,561,561,561,561,561,561,561,561,561,503,503,503,503,503,503,503,503,503,441,441,441,441,441,441,441,441,441,470,470,470,470,470,470,470,470,470,503,503,503,503,503,503,503,503,503,479,479,479,479,479,479,479,479,479,521,521,521,521,521,521,521,521,521,473,473,473,473,473,473,473,473,473,468,468,468,468,468,468,468,468,468,512,512,512,512,512,512,512,512,512,460,460,460,460,460,460,460,460,460,436,436,436,436,436,436,436,436,436,426,426,426,426,426,426,426,426,426,525,525,525,525,525,525,525,525,525,464,464,464,464,464,464,464,464,464,509,509,509,509,509,509,509,509,509,464,464,464,464,464,464,464,464,464,524,524,524,524,524,524,524,524,524,480,480,480,480,480,480,480,480,480,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,506,504,504,504,504,504,504,504,504,504,486,486,486,486,486,486,486,486,486,555,555,555,555,555,555,555,555,555,511,511,511,511,511,511,511,511,511,485,485,485,485,485,485,485,485,485,427,427,427,427,427,427,427,427,427,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,522,481,481,481,481,481,481,481,481,481,456,456,456,456,456,456,456,456,456,454,454,454,454,454,454,454,454,454,488,488,488,488,488,488,488,488,488,542,542,542,542,542,542,542,542,542,503,503,503,503,503,503,503,503,503,484,484,484,484,484,484,484,484,484,499,499,499,499,499,499,499,499,499,480,480,480,480,480,480,480,480,480,499,499,499,499,499,499,499,499,499,470,470,470,470,470,470,470,470,470,520,520,520,520,520,520,520,520,520,469,469,469,469,469,469,469,469,469,432,432,432,432,432,432,432,432,432,401,401,401,401,401,401,401,401,401,503,503,503,503,503,503,503,503,503,528,528,528,528,528,528,528,528,528,498,498,498,498,498,498,498,498,498,489,489,489,489,489,489,489,489,489,510,510,510,510,510,510,510,510,510,466,466,466,466,466,466,466,466,466,426,426,426,426,426,426,426,426,426,436,436,436,436,436,436,436,436,436,515,515,515,515,515,515,515,515,515,461,461,461,461,461,461,461,461,461,480,480,480,480,480,480,480,480,480,505,505,505,505,505,505,505,505,505,488,488,488,488,488,488,488,488,488,521,521,521,521,521,521,521,521,521,499,499,499,499,499,499,499,499,499,483,483,483,483,483,483,483,483,483,493,493,493,493,493,493,493,493,493,521,521,521,521,521,521,521,521,521,478,478,478,478,478,478,478,478,478,499,499,499,499,499,499,499,499,499,519,519,519,519,519,519,519,519,519,474,474,474,474,474,474,474,474,474,539,539,539,539,539,539,539,539,539,444,444,444,444,444,444,444,444,444,489,489,489,489,489,489,489,489,489,507,507,507,507,507,507,507,507,507,517,517,517,517,517,517,517,517,517,463,463,463,463,463,463,463,463,463,432,432,432,432,432,432,432,432,432,533,533,533,533,533,533,533,533,533,433,433,433,433,433,433,433,433,433,494,494,494,494,494,494,494,494,494,529,529,529,529,529,529,529,529,529,512,512,512,512,512,512,512,512,512,507,507,507,507,507,507,507,507,507,451,451,451,451,451,451,451,451,451,408,408,408,408,408,408,408,408,408,491,491,491,491,491,491,491,491,491,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,530,530,530,530,530,530,530,530,530,473,473,473,473,473,473,473,473,473,516,516,516,516,516,516,516,516,516,514,514,514,514,514,514,514,514,514,471,471,471,471,471,471,471,471,471,453,453,453,453,453,453,453,453,453,463,463,463,463,463,463,463,463,463,441,441,441,441,441,441,441,441,441,445,445,445,445,445,445,445,445,445,562,562,562,562,562,562,562,562,562,472,472,472,472,472,472,472,472,472,506,506,506,506,506,506,506,506,506,532,532,532,532,532,532,532,532,532,495,495,495,495,495,495,495,495,495,477,477,477,477,477,477,477,477,477,530,530,530,530,530,530,530,530,530,486,486,486,486,486,486,486,486,486,472,472,472,472,472,472,472,472,472,443,443,443,443,443,443,443,443,443,402,402,402,402,402,402,402,402,402,424,424,424,424,424,424,424,424,424,558,558,558,558,558,558,558,558,558,516,516,516,516,516,516,516,516,516,452,452,452,452,452,452,452,452,452,427,427,427,427,427,427,427,427,427,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,522,522,522,522,522,522,522,522,522,516,516,516,516,516,516,516,516,516,478,478,478,478,478,478,478,478,478,451,451,451,451,451,451,451,451,451,454,454,454,454,454,454,454,454,454,488,488,488,488,488,488,488,488,488,544,544,544,544,544,544,544,544,544,486,486,486,486,486,486,486,486,486,440,440,440,440,440,440,440,440,440,547,547,547,547,547,547,547,547,547,492,492,492,492,492,492,492,492,492,470,470,470,470,470,470,470,470,470,516,516,516,516,516,516,516,516,516,503,503,503,503,503,503,503,503,503,540,540,540,540,540,540,540,540,540,486,486,486,486,486,486,486,486,486,447,447,447,447,447,447,447,447,447,427,427,427,427,427,427,427,427,427,554,554,554,554,554,554,554,554,554,518,518,518,518,518,518,518,518,518,481,481,481,481,481,481,481,481,481,443,443,443,443,443,443,443,443,443,456,456,456,456,456,456,456,456,456,521,521,521,521,521,521,521,521,521,446,446,446,446,446,446,446,446,446,453,453,453,453,453,453,453,453,453,472,472,472,472,472,472,472,472,472,496,496,496,496,496,496,496,496,496,506,506,506,506,506,506,506,506,506,519,519,519,519,519,519,519,519,519,476,476,476,476,476,476,476,476,476,422,422,422,422,422,422,422,422,422,432,432,432,432,432,432,432,432,432,557,557,557,557,557,557,557,557,557,506,506,506,506,506,506,506,506,506,453,453,453,453,453,453,453,453,453,459,459,459,459,459,459,459,459,459,488,488,488,488,488,488,488,488,488,473,473,473,473,473,473,473,473,473,522,522,522,522,522,522,522,522,522,488,488,488,488,488,488,488,488,488,462,462,462,462,462,462,462,462,462,523,523,523,523,523,523,523,523,523,461,461,461,461,461,461,461,461,461,473,473,473,473,473,473,473,473,473,510,510,510,510,510,510,510,510,510,523,523,523,523,523,523,523,523,523,477,477,477,477,477,477,477,477,477,525,525,525,525,525,525,525,525,525,466,466,466,466,466,466,466,466,466,456,456,456,456,456,456,456,456,456,513,513,513,513,513,513,513,513,513,495,495,495,495,495,495,495,495,495,489,489,489,489,489,489,489,489,489,527,527,527,527,527,527,527,527,527,509,509,509,509,509,509,509,509,509,463,463,463,463,463,463,463,463,463,454,454,454,454,454,454,454,454,454,483,483,483,483,483,483,483,483,483,543,543,543,543,543,543,543,543,543,504,504,504,504,504,504,504,504,504,467,467,467,467,467,467,467,467,467,500,500,500,500,500,500,500,500,500,504,504,504,504,504,504,504,504,504,515,515,515,515,515,515,515,515,515,454,454,454,454,454,454,454,454,454,519,519,519,519,519,519,519,519,519,513,513,513,513,513,513,513,513,513,487,487,487,487,487,487,487,487,487,519,519,519,519,519,519,519,519,519,487,487,487,487,487,487,487,487,487,418,418,418,418,418,418,418,418,418,501,501,501,501,501,501,501,501,501,529,529,529,529,529,529,529,529,529,474,474,474,474,474,474,474,474,474,511,511,511,511,511,511,511,511,511,510,510,510,510,510,510,510,510,510,492,492,492,492,492,492,492,492,492,515,515,515,515,515,515,515,515,515,468,468,468,468,468,468,468,468,468,451,451,451,451,451,451,451,451,451,464,464,464,464,464,464,464,464,464,453,453,453,453,453,453,453,453,453,449,449,449,449,449,449,449,449,449,464,464,464,464,464,464,464,464,464,447,447,447,447,447,447,447,447,447,424,424,424,424,424,424,424,424,424,466,466,466,466,466,466,466,466,466,516,516,516,516,516,516,516,516,516,472,472,472,472,472,472,472,472,472,512,512,512,512,512,512,512,512,512,507,507,507,507,507,507,507,507,507,480,480,480,480,480,480,480,480,480,503,503,503,503,503,503,503,503,503,449,449,449,449,449,449,449,449,449,442,442,442,442,442,442,442,442,442,519,519,519,519,519,519,519,519,519,477,477,477,477,477,477,477,477,477,453,453,453,453,453,453,453,453,453,462,462,462,462,462,462,462,462,462,520,520,520,520,520,520,520,520,520,497,497,497,497,497,497,497,497,497,483,483,483,483,483,483,483,483,483,499,499,499,499,499,499,499,499,499,523,523,523,523,523,523,523,523,523,462,462,462,462,462,462,462,462,462,438,438,438,438,438,438,438,438,438,514,514,514,514,514,514,514,514,514,446,446,446,446,446,446,446,446,446,495,495,495,495,495,495,495,495,495,500,500,500,500,500,500,500,500,500,527,527,527,527,527,527,527,527,527,492,492,492,492,492,492,492,492,492,467,467,467,467,467,467,467,467,467,519,519,519,519,519,519,519,519,519,511,511,511,511,511,511,511,511,511,503,503,503,503,503,503,503,503,503,495,495,495,495,495,495,495,495,495,502,502,502,502,502,502,502,502,502,474,474,474,474,474,474,474,474,474,520,520,520,520,520,520,520,520,520,470,470,470,470,470,470,470,470,470,450,450,450,450,450,450,450,450,450,448,448,448,448,448,448,448,448,448,429,429,429,429,429,429,429,429,429,400,400,400,400,400,400,400,400,400,460,460,460,460,460,460,460,460,460,526,526,526,526,526,526,526,526,526,484,484,484,484,484,484,484,484,484,466,466,466,466,466,466,466,466,466,438,438,438,438,438,438,438,438,438,404,404,404,404,404,404,404,404,404,456,456,456,456,456,456,456,456,456,502,502,502,502,502,502,502,502,502,488,488,488,488,488,488,488,488,488,529,529,529,529,529,529,529,529,529,519,519,519,519,519,519,519,519,519,479,479,479,479,479,479,479,479,479,445,445,445,445,445,445,445,445,445,430,430,430,430,430,430,430,430,430,526,526,526,526,526,526,526,526,526,454,454,454,454,454,454,454,454,454,542,542,542,542,542,542,542,542,542,488,488,488,488,488,488,488,488,488,545,545,545,545,545,545,545,545,545,501,501,501,501,501,501,501,501,501,486,486,486,486,486,486,486,486,486,521,521,521,521,521,521,521,521,521,499,499,499,499,499,499,499,499,499,485,485,485,485,485,485,485,485,485,502,502,502,502,502,502,502,502,502,523,523,523,523,523,523,523,523,523,496,496,496,496,496,496,496,496,496,502,502,502,502,502,502,502,502,502,440,440,440,440,440,440,440,440,440,461,461,461,461,461,461,461,461,461,520,520,520,520,520,520,520,520,520,490,490,490,490,490,490,490,490,490,451,451,451,451,451,451,451,451,451,515,515,515,515,515,515,515,515,515,478,478,478,478,478,478,478,478,478,503,503,503,503,503,503,503,503,503,524,524,524,524,524,524,524,524,524,467,467,467,467,467,467,467,467,467,420,420,420,420,420,420,420,420,420,444,444,444,444,444,444,444,444,444,528,528,528,528,528,528,528,528,528,482,482,482,482,482,482,482,482,482,504,504,504,504,504,504,504,504,504,464,464,464,464,464,464,464,464,464,511,511,511,511,511,511,511,511,511,533,533,533,533,533,533,533,533,533,504,504,504,504,504,504,504,504,504,459,459,459,459,459,459,459,459,459,434,434,434,434,434,434,434,434,434,401,401,401,401,401,401,401,401,401,503,503,503,503,503,503,503,503,503,528,528,528,528,528,528,528,528,528,487,487,487,487,487,487,487,487,487,521,521,521,521,521,521,521,521,521,478,478,478,478,478,478,478,478,478,496,496,496,496,496,496,496,496,496,519,519,519,519,519,519,519,519,519,491,491,491,491,491,491,491,491,491,525,525,525,525,525,525,525,525,525,509,509,509,509,509,509,509,509,509,463,463,463,463,463,463,463,463,463,454,454,454,454,454,454,454,454,454,488,488,488,488,488,488,488,488,488,549,549,549,549,549,549,549,549,549,515,515,515,515,515,515,515,515,515,460,460,460,460,460,460,460,460,460,471,471,471,471,471,471,471,471,471,528,528,528,528,528,528,528,528,528,497,497,497,497,497,497,497,497,497,480,480,480,480,480,480,480,480,480,525,525,525,525,525,525,525,525,525,469,469,469,469,469,469,469,469,469,483,483,483,483,483,483,483,483,483,506,506,506,506,506,506,506,506,506,474,474,474,474,474,474,474,474,474,513,513,513,513,513,513,513,513,513,444,444,444,444,444,444,444,444,444,458,458,458,458,458,458,458,458,458,525,525,525,525,525,525,525,525,525,496,496,496,496,496,496,496,496,496,473,473,473,473,473,473,473,473,473,520,520,520,520,520,520,520,520,520,470,470,470,470,470,470,470,470,470,448,448,448,448,448,448,448,448,448,427,427,427,427,427,427,427,427,427,420,420,420,420,420,420,420,420,420,509,509,509,509,509,509,509,509,509,484,484,484,484,484,484,484,484,484,507,507,507,507,507,507,507,507,507,449,449,449,449,449,449,449,449,449,404,404,404,404,404,404,404,404,404,503,503,503,503,503,503,503,503,503,533,533,533,533,533,533,533,533,533,504,504,504,504,504,504,504,504,504,458,458,458,458,458,458,458,458,458,438,438,438,438,438,438,438,438,438,468,468,468,468,468,468,468,468,468,496,496,496,496,496,496,496,496,496,455,455,455,455,455,455,455,455,455,555,555,555,555,555,555,555,555,555,518,518,518,518,518,518,518,518,518,504,504,504,504,504,504,504,504,504,461,461,461,461,461,461,461,461,461,428,428,428,428,428,428,428,428,428,471,471,471,471,471,471,471,471,471,504,504,504,504,504,504,504,504,504,422,422,422,422,422,422,422,422,422,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,510,510,510,510,510,510,510,510,510,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,440,529,529,529,529,529,529,529,529,529,467,467,467,467,467,467,467,467,467,423,423,423,423,423,423,423,423,423,473,473,473,473,473,473,473,473,473,510,510,510,510,510,510,510,510,510,492,492,492,492,492,492,492,492,492,504,504,504,504,504,504,504,504,504,479,479,479,479,479,479,479,479,479,524,524,524,524,524,524,524,524,524,483,483,483,483,483,483,483,483,483,449,449,449,449,449,449,449,449,449,423,423,423,423,423,423,423,423,423,447,447,447,447,447,447,447,447,447,488,488,488,488,488,488,488,488,488,522,522,522,522,522,522,522,522,522,440,440,440,440,440,440,440,440,440,499,499,499,499,499,499,499,499,499,534,534,534,534,534,534,534,534,534,514,514,514,514,514,514,514,514,514,478,478,478,478,478,478,478,478,478,444,444,444,444,444,444,444,444,444,411,411,411,411,411,411,411,411,411,516,516,516,516,516,516,516,516,516,512,512,512,512,512,512,512,512,512,466,466,466,466,466,466,466,466,466,446,446,446,446,446,446,446,446,446,431,431,431,431,431,431,431,431,431,466,466,466,466,466,466,466,466,466,519,519,519,519,519,519,519,519,519,487,487,487,487,487,487,487,487,487,466,466,466,466,466,466,466,466,466,447,447,447,447,447,447,447,447,447,471,471,471,471,471,471,471,471,471,502,502,502,502,502,502,502,502,502,473,473,473,473,473,473,473,473,473,513,513,513,513,513,513,513,513,513,468,468,468,468,468,468,468,468,468,499,499,499,499,499,499,499,499,499,487,487,487,487,487,487,487,487,487,481,481,481,481,481,481,481,481,481,496,496,496,496,496,496,496,496,496,535,535,535,535,535,535,535,535,535,511,511,511,511,511,511,511,511,511,461,461,461,461,461,461,461,461,461,464,464,464,464,464,464,464,464,464,472,472,472,472,472,472,472,472,472,505,505,505,505,505,505,505,505,505,532,532,532,532,532,532,532,532,532,494,494,494,494,494,494,494,494,494,525,525,525,525,525,525,525,525,525,488,488,488,488,488,488,488,488,488,511,511,511,511,511,511,511,511,511,534,534,534,534,534,534,534,534,534,485,485,485,485,485,485,485,485,485,453,453,453,453,453,453,453,453,453,462,462,462,462,462,462,462,462,462,520,520,520,520,520,520,520,520,520,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,498,525,525,525,525,525,525,525,525,525,480,480,480,480,480,480,480,480,480,445,445,445,445,445,445,445,445,445,427,427,427,427,427,427,427,427,427,517,517,517,517,517,517,517,517,517,478,478,478,478,478,478,478,478,478,518,518,518,518,518,518,518,518,518,490,490,490,490,490,490,490,490,490,461,461,461,461,461,461,461,461,461,555,555,555,555,555,555,555,555,555,475,475,475,475,475,475,475,475,475,496,496,496,496,496,496,496,496,496,509,509,509,509,509,509,509,509,509,521,521,521,521,521,521,521,521,521,486,486,486,486,486,486,486,486,486,466,466,466,466,466,466,466,466,466,423,423,423,423,423,423,423,423,423,440,440,440,440,440,440,440,440,440,540,540,540,540,540,540,540,540,540,448,448,448,448,448,448,448,448,448,510,510,510,510,510,510,510,510,510,505,505,505,505,505,505,505,505,505,444,444,444,444,444,444,444,444,444,462,462,462,462,462,462,462,462,462,499,499,499,499,499,499,499,499,499,441,441,441,441,441,441,441,441,441,515,515,515,515,515,515,515,515,515,477,477,477,477,477,477,477,477,477,503,503,503,503,503,503,503,503,503,485,485,485,485,485,485,485,485,485,552,552,552,552,552,552,552,552,552,501,501,501,501,501,501,501,501,501,520,520,520,520,520,520,520,520,520,445,445,445,445,445,445,445,445,445,448,448,448,448,448,448,448,448,448,535,535,535,535,535,535,535,535,535,489,489,489,489,489,489,489,489,489,463,463,463,463,463,463,463,463,463,421,421,421,421,421,421,421,421,421,458,458,458,458,458,458,458,458,458,510,510,510,510,510,510,510,510,510,484,484,484,484,484,484,484,484,484,553,553,553,553,553,553,553,553,553,503,503,503,503,503,503,503,503,503,481,481,481,481,481,481,481,481,481,555,555,555,555,555,555,555,555,555,512,512,512,512,512,512,512,512,512,497,497,497,497,497,497,497,497,497,492,492,492,492,492,492,492,492,492,512,512,512,512,512,512,512,512,512,466,466,466,466,466,466,466,466,466,428,428,428,428,428,428,428,428,428,422,422,422,422,422,422,422,422,422,422,422,422,422,422,422,422,422,422,546,546,546,546,546,546,546,546,546,484,484,484,484,484,484,484,484,484,548,548,548,548,548,548,548,548,548,519,519,519,519,519,519,519,519,519,518,518,518,518,518,518,518,518,518,487,487,487,487,487,487,487,487,487,463,463,463,463,463,463,463,463,463,449,449,449,449,449,449,449,449,449,462,462,462,462,462,462,462,462,462,520,520,520,520,520,520,520,520,520,498,498,498,498,498,498,498,498,498,492,492,492,492,492,492,492,492,492,497,497,497,497,497,497,497,497,497,452,452,452,452,452,452,452,452,452,511,511,511,511,511,511,511,511,511,488,488,488,488,488,488,488,488,488,512,512,512,512,512,512,512,512,512,461,461,461,461,461,461,461,461,461,438,438,438,438,438,438,438,438,438,465,465,465,465,465,465,465,465,465,501,501,501,501,501,501,501,501,501,487,487,487,487,487,487,487,487,487,492,492,492,492,492,492,492,492,492,443,443,443,443,443,443,443,443,443,547,547,547,547,547,547,547,547,547,496,496,496,496,496,496,496,496,496,476,476,476,476,476,476,476,476,476,515,515,515,515,515,515,515,515,515,460,460,460,460,460,460,460,460,460,425,425,425,425,425,425,425,425,425,466,466,466,466,466,466,466,466,466,517,517,517,517,517,517,517,517,517,492,492,492,492,492,492,492,492,492,526,526,526,526,526,526,526,526,526,474,474,474,474,474,474,474,474,474,526,526,526,526,526,526,526,526,526,487,487,487,487,487,487,487,487,487,472,472,472,472,472,472,472,472,472,448,448,448,448,448,448,448,448,448,476,476,476,476,476,476,476,476,476,522,522,522,522,522,522,522,522,522,467,467,467,467,467,467,467,467,467,434,434,434,434,434,434,434,434,434,466,466,466,466,466,466,466,466,466,519,519,519,519,519,519,519,519,519,478,478,478,478,478,478,478,478,478,446,446,446,446,446,446,446,446,446,465,465,465,465,465,465,465,465,465,507,507,507,507,507,507,507,507,507,522,522,522,522,522,522,522,522,522,466,466,466,466,466,466,466,466,466,432,432,432,432,432,432,432,432,432,407,407,407,407,407,407,407,407,407,513,513,513,513,513,513,513,513,513,515,515,515,515,515,515,515,515,515,463,463,463,463,463,463,463,463,463,407,407,407,407,407,407,407,407,407,454,454,454,454,454,454,454,454,454,499,499,499,499,499,499,499,499,499,444,444,444,444,444,444,444,444,444,523,523,523,523,523,523,523,523,523,456,456,456,456,456,456,456,456,456,526,526,526,526,526,526,526,526,526,437,437,437,437,437,437,437,437,437,487,487,487,487,487,487,487,487,487,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,528,528,528,528,528,528,528,528,528,486,486,486,486,486,486,486,486,486,548,548,548,548,548,548,548,548,548,493,493,493,493,493,493,493,493,493,423,423,423,423,423,423,423,423,423,514,514,514,514,514,514,514,514,514,515,515,515,515,515,515,515,515,515,471,471,471,471,471,471,471,471,471,447,447,447,447,447,447,447,447,447,438,438,438,438,438,438,438,438,438,468,468,468,468,468,468,468,468,468,530,530,530,530,530,530,530,530,530,512,512,512,512,512,512,512,512,512,473,473,473,473,473,473,473,473,473,450,450,450,450,450,450,450,450,450,429,429,429,429,429,429,429,429,429,400,400,400,400,400,400,400,400,400,460,460,460,460,460,460,460,460,460,526,526,526,526,526,526,526,526,526,484,484,484,484,484,484,484,484,484,458,458,458,458,458,458,458,458,458,435,435,435,435,435,435,435,435,435,446,446,446,446,446,446,446,446,446,480,480,480,480,480,480,480,480,480,541,541,541,541,541,541,541,541,541,489,489,489,489,489,489,489,489,489,548,548,548,548,548,548,548,548,548,514,514,514,514,514,514,514,514,514,489,489,489,489,489,489,489,489,489,461,461,461,461,461,461,461,461,461,555,555,555,555,555,555,555,555,555,481,481,481,481,481,481,481,481,481,511,511,511,511,511,511,511,511,511,509,509,509,509,509,509,509,509,509,486,486,486,486,486,486,486,486,486,510,510,510,510,510,510,510,510,510,469,469,469,469,469,469,469,469,469,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,495,531,531,531,531,531,531,531,531,531,502,502,502,502,502,502,502,502,502,442,442,442,442,442,442,442,442,442,421,421,421,421,421,421,421,421,421,538,538,538,538,538,538,538,538,538,499,499,499,499,499,499,499,499,499,488,488,488,488,488,488,488,488,488,501,501,501,501,501,501,501,501,501,484,484,484,484,484,484,484,484,484,518,518,518,518,518,518,518,518,518,512,512,512,512,512,512,512,512,512,508,508,508,508,508,508,508,508,508,454,454,454,454,454,454,454,454,454,405,405,405,405,405,405,405,405,405,456,456,456,456,456,456,456,456,456,516,516,516,516,516,516,516,516,516,471,471,471,471,471,471,471,471,471,451,451,451,451,451,451,451,451,451,438,438,438,438,438,438,438,438,438,468,468,468,468,468,468,468,468,468,519,519,519,519,519,519,519,519,519,503,503,503,503,503,503,503,503,503,538,538,538,538,538,538,538,538,538,479,479,479,479,479,479,479,479,479,424,424,424,424,424,424,424,424,424,440,440,440,440,440,440,440,440,440,532,532,532,532,532,532,532,532,532,459,459,459,459,459,459,459,459,459,517,517,517,517,517,517,517,517,517,472,472,472,472,472,472,472,472,472,497,497,497,497,497,497,497,497,497,516,516,516,516,516,516,516,516,516,443,443,443,443,443,443,443,443,443,440,440,440,440,440,440,440,440,440,527,527,527,527,527,527,527,527,527,444,444,444,444,444,444,444,444,444,430,430,430,430,430,430,430,430,430,557,557,557,557,557,557,557,557,557,506,506,506,506,506,506,506,506,506,452,452,452,452,452,452,452,452,452,454,454,454,454,454,454,454,454,454,486,486,486,486,486,486,486,486,486,515,515,515,515,515,515,515,515,515,490,490,490,490,490,490,490,490,490,512,512,512,512,512,512,512,512,512,462,462,462,462,462,462,462,462,462,476,476,476,476,476,476,476,476,476,509,509,509,509,509,509,509,509,509,492,492,492,492,492,492,492,492,492,512,512,512,512,512,512,512,512,512,454,454,454,454,454,454,454,454,454,405,405,405,405,405,405,405,405,405,456,456,456,456,456,456,456,456,456,516,516,516,516,516,516,516,516,516,471,471,471,471,471,471,471,471,471,451,451,451,451,451,451,451,451,451,438,438,438,438,438,438,438,438,438,468,468,468,468,468,468,468,468,468,524,524,524,524,524,524,524,524,524,490,490,490,490,490,490,490,490,490,462,462,462,462,462,462,462,462,462,528,528,528,528,528,528,528,528,528,477,477,477,477,477,477,477,477,477,458,458,458,458,458,458,458,458,458,472,472,472,472,472,472,472,472,472,510,510,510,510,510,510,510,510,510,457,457,457,457,457,457,457,457,457,461,461,461,461,461,461,461,461,461,513,513,513,513,513,513,513,513,513,487,487,487,487,487,487,487,487,487,525,525,525,525,525,525,525,525,525,487,487,487,487,487,487,487,487,487,512,512,512,512,512,512,512,512,512,475,475,475,475,475,475,475,475,475,448,448,448,448,448,448,448,448,448,449,449,449,449,449,449,449,449,449,457,457,457,457,457,457,457,457,457,425,425,425,425,425,425,425,425,425,449,449,449,449,449,449,449,449,449,532,532,532,532,532,532,532,532,532,474,474,474,474,474,474,474,474,474,426,426,426,426,426,426,426,426,426,466,466,466,466,466,466,466,466,466,513,513,513,513,513,513,513,513,513,462,462,462,462,462,462,462,462,462,434,434,434,434,434,434,434,434,434,408,408,408,408,408,408,408,408,408,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,511,479,479,479,479,479,479,479,479,479,490,490,490,490,490,490,490,490,490,547,547,547,547,547,547,547,547,547,488,488,488,488,488,488,488,488,488,442,442,442,442,442,442,442,442,442,525,525,525,525,525,525,525,525,525,451,451,451,451,451,451,451,451,451,542,542,542,542,542,542,542,542,542,502,502,502,502,502,502,502,502,502,489,489,489,489,489,489,489,489,489,525,525,525,525,525,525,525,525,525,460,460,460,460,460,460,460,460,460,550,550,550,550,550,550,550,550,550,511,511,511,511,511,511,511,511,511,463,463,463,463,463,463,463,463,463,478,478,478,478,478,478,478,478,478,506,506,506,506,506,506,506,506,506,443,443,443,443,443,443,443,443,443,470,470,470,470,470,470,470,470,470,516,516,516,516,516,516,516,516,516,457,457,457,457,457,457,457,457,457,446,446,446,446,446,446,446,446,446,529,529,529,529,529,529,529,529,529,457,457,457,457,457,457,457,457,457,434,434,434,434,434,434,434,434,434,529,529,529,529,529,529,529,529,529,524,524,524,524,524,524,524,524,524,463,463,463,463,463,463,463,463,463,415,415,415,415,415,415,415,415,415,516,516,516,516,516,516,516,516,516,513,513,513,513,513,513,513,513,513,454,454,454,454,454,454,454,454,454,529,529,529,529,529,529,529,529,529,528,528,528,528,528,528,528,528,528,461,461,461,461,461,461,461,461,461,434,434,434,434,434,434,434,434,434,525,525,525,525,525,525,525,525,525,515,515,515,515,515,515,515,515,515,474,474,474,474,474,474,474,474,474,528,528,528,528,528,528,528,528,528,485,485,485,485,485,485,485,485,485,493,493,493,493,493,493,493,493,493,518,518,518,518,518,518,518,518,518,482,482,482,482,482,482,482,482,482,490,490,490,490,490,490,490,490,490,450,450,450,450,450,450,450,450,450,520,520,520,520,520,520,520,520,520,462,462,462,462,462,462,462,462,462,432,432,432,432,432,432,432,432,432,423,423,423,423,423,423,423,423,423,518,518,518,518,518,518,518,518,518,480,480,480,480,480,480,480,480,480,495,495,495,495,495,495,495,495,495,480,480,480,480,480,480,480,480,480,511,511,511,511,511,511,511,511,511,534,534,534,534,534,534,534,534,534,485,485,485,485,485,485,485,485,485,458,458,458,458,458,458,458,458,458,471,471,471,471,471,471,471,471,471,498,498,498,498,498,498,498,498,498,461,461,461,461,461,461,461,461,461,519,519,519,519,519,519,519,519,519,490,490,490,490,490,490,490,490,490,504,504,504,504,504,504,504,504,504,457,457,457,457,457,457,457,457,457,462,462,462,462,462,462,462,462,462,524,524,524,524,524,524,524,524,524,502,502,502,502,502,502,502,502,502,460,460,460,460,460,460,460,460,460,436,436,436,436,436,436,436,436,436,432,432,432,432,432,432,432,432,432,514,514,514,514,514,514,514,514,514,442,442,442,442,442,442,442,442,442,465,465,465,465,465,465,465,465,465,513,513,513,513,513,513,513,513,513,460,460,460,460,460,460,460,460,460,462,462,462,462,462,462,462,462,462,520,520,520,520,520,520,520,520,520,498,498,498,498,498,498,498,498,498,491,491,491,491,491,491,491,491,491,505,505,505,505,505,505,505,505,505,494,494,494,494,494,494,494,494,494,520,520,520,520,520,520,520,520,520,468,468,468,468,468,468,468,468,468,419,419,419,419,419,419,419,419,419,418,418,418,418,418,418,418,418,418,499,499,499,499,499,499,499,499,499,490,490,490,490,490,490,490,490,490,509,509,509,509,509,509,509,509,509,524,524,524,524,524,524,524,524,524,488,488,488,488,488,488,488,488,488,469,469,469,469,469,469,469,469,469,446,446,446,446,446,446,446,446,446,405,405,405,405,405,405,405,405,405,503,503,503,503,503,503,503,503,503,531,531,531,531,531,531,531,531,531,489,489,489,489,489,489,489,489,489,420,420,420,420,420,420,420,420,420,491,491,491,491,491,491,491,491,491,507,507,507,507,507,507,507,507,507,519,519,519,519,519,519,519,519,519,481,481,481,481,481,481,481,481,481,452,452,452,452,452,452,452,452,452,455,455,455,455,455,455,455,455,455,440,440,440,440,440,440,440,440,440,427,427,427,427,427,427,427,427,427,475,475,475,475,475,475,475,475,475,525,525,525,525,525,525,525,525,525,468,468,468,468,468,468,468,468,468,418,418,418,418,418,418,418,418,418,435,435,435,435,435,435,435,435,435,555,555,555,555,555,555,555,555,555,500,500,500,500,500,500,500,500,500,524,524,524,524,524,524,524,524,524,499,499,499,499,499,499,499,499,499,525,525,525,525,525,525,525,525,525,486,486,486,486,486,486,486,486,486,467,467,467,467,467,467,467,467,467,451,451,451,451,451,451,451,451,451,448,448,448,448,448,448,448,448,448,413,413,413,413,413,413,413,413,413,432,432,432,432,432,432,432,432,432,559,559,559,559,559,559,559,559,559,515,515,515,515,515,515,515,515,515,468,468,468,468,468,468,468,468,468,454,454,454,454,454,454,454,454,454,458,458,458,458,458,458,458,458,458,446,446,446,446,446,446,446,446,446,411,411,411,411,411,411,411,411,411,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,408,408,408,408,408,408,408,408,408,503,503,503,503,503,503,503,503,503,513,513,513,513,513,513,513,513,513,457,457,457,457,457,457,457,457,457,405,405,405,405,405,405,405,405,405,483,483,483,483,483,483,483,483,483,499,499,499,499,499,499,499,499,499,513,513,513,513,513,513,513,513,513,442,442,442,442,442,442,442,442,442,506,506,506,506,506,506,506,506,506,508,508,508,508,508,508,508,508,508,486,486,486,486,486,486,486,486,486,512,512,512,512,512,512,512,512,512,494,494,494,494,494,494,494,494,494,529,529,529,529,529,529,529,529,529,479,479,479,479,479,479,479,479,479,447,447,447,447,447,447,447,447,447,429,429,429,429,429,429,429,429,429,437,437,437,437,437,437,437,437,437,457,457,457,457,457,457,457,457,457,433,433,433,433,433,433,433,433,433,435,435,435,435,435,435,435,435,435,507,507,507,507,507,507,507,507,507,478,478,478,478,478,478,478,478,478,540,540,540,540,540,540,540,540,540,486,486,486,486,486,486,486,486,486,449,449,449,449,449,449,449,449,449,468,468,468,468,468,468,468,468,468,516,516,516,516,516,516,516,516,516,469,469,469,469,469,469,469,469,469,500,500,500,500,500,500,500,500,500,509,509,509,509,509,509,509,509,509,522,522,522,522,522,522,522,522,522 0 214.289034 0 0 0 diff --git a/test/dna_ideal_time_slow5.exp b/test/dna_ideal_time_slow5.exp index a826076..aea04ad 100755 --- a/test/dna_ideal_time_slow5.exp +++ b/test/dna_ideal_time_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN106 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!7468!- 0 2048 -272.365141 748.5801 4000 67167 557,555,558,554,560,562,549,556,563,489,497,508,503,508,488,502,499,510,505,514,505,512,517,512,518,516,517,523,542,537,538,544,550,540,547,528,492,508,499,501,489,505,500,496,494,565,552,549,552,562,559,548,554,553,522,521,521,520,520,520,517,522,525,518,523,536,533,525,529,529,538,534,522,532,529,523,525,529,521,530,527,547,541,544,535,541,546,541,540,537,529,521,517,523,524,515,509,508,513,566,552,559,569,549,550,574,569,553,520,510,509,505,497,508,504,510,506,501,501,502,508,503,503,502,505,510,518,509,517,519,509,501,505,511,512,520,531,533,520,527,537,528,532,535,525,516,528,524,515,517,516,518,517,515,532,525,530,528,526,525,523,520,577,572,557,561,562,569,568,569,569,552,545,547,548,545,546,543,542,547,539,528,519,520,518,527,528,521,531,521,508,507,511,510,512,516,495,507,532,561,547,561,552,556,554,554,544,523,525,527,537,524,527,529,523,531,541,535,532,537,530,534,540,546,538,514,508,517,513,503,518,511,503,521,540,562,568,569,563,565,569,568,562,499,506,517,504,509,498,503,500,515,488,494,500,502,508,504,508,503,507,551,569,574,594,560,575,569,576,565,541,524,524,540,530,526,512,521,541,499,511,505,509,512,508,502,505,506,497,484,480,481,487,480,474,482,487,473,498,485,490,490,489,497,495,484,592,551,572,564,566,554,571,565,564,491,485,469,476,475,483,457,474,489,482,466,460,461,468,467,475,470,476,537,555,545,564,559,557,558,566,546,538,527,532,528,522,528,524,525,530,572,547,570,558,554,551,562,565,570,500,531,531,526,513,519,521,531,521,513,505,506,503,500,496,502,507,510,494,504,503,499,506,505,506,500,502,490,489,487,497,487,496,485,475,490,469,487,488,482,485,481,485,486,487,500,493,489,492,495,485,495,496,495,465,448,455,462,453,458,461,458,459,476,469,475,474,471,481,476,481,473,541,577,560,569,569,576,574,554,558,484,505,502,504,503,499,498,507,501,532,544,551,544,552,560,542,547,549,533,523,524,523,524,526,526,523,525,524,534,542,539,544,538,547,532,536,484,479,467,474,475,474,484,449,465,534,531,536,537,553,540,542,544,542,586,562,567,564,566,567,571,572,566,551,540,525,536,542,538,536,544,526,560,555,568,570,572,559,564,555,567,483,498,501,497,494,508,510,491,505,518,501,510,509,522,501,519,505,511,581,556,560,564,550,556,565,556,558,537,531,537,536,532,536,528,529,526,528,509,503,508,523,509,529,523,513,554,552,542,555,561,562,552,549,552,503,501,514,489,507,506,515,518,509,504,498,488,481,496,494,493,490,497,536,534,531,536,537,538,550,536,539,546,559,556,557,558,554,549,547,546,498,517,500,517,505,510,496,501,511,496,477,480,484,481,476,489,481,476,473,471,467,478,470,475,471,472,473,483,481,489,477,473,468,484,482,478,607,588,604,591,595,597,596,604,596,564,541,536,560,552,539,547,542,546,500,502,508,496,497,497,507,487,509,466,466,474,480,474,481,480,472,476,441,453,459,446,457,459,454,457,459,480,485,490,492,493,488,481,489,492,554,549,556,557,545,550,541,543,547,516,521,538,520,525,526,516,530,519,481,470,474,468,477,484,473,480,467,530,524,536,528,526,526,530,522,533,545,540,535,538,537,541,538,537,541,540,550,539,543,543,539,547,542,535,479,506,496,488,489,498,499,493,500,542,540,546,539,537,544,545,533,557,520,524,524,527,531,522,533,523,528,573,559,557,566,570,557,552,560,563,538,508,535,529,513,516,528,511,525,484,496,498,494,497,491,494,492,498,475,461,454,458,455,460,462,457,462,442,457,446,458,447,453,461,450,451,577,566,565,567,560,566,571,554,555,569,568,568,555,566,562,556,558,562,501,490,493,493,500,499,492,483,495,481,477,479,474,462,466,466,463,472,577,567,560,556,564,560,556,560,563,539,549,554,552,554,564,553,567,537,502,491,495,489,489,490,494,484,503,568,555,552,567,560,567,564,574,558,541,560,555,568,562,558,559,552,554,512,513,511,500,501,497,501,499,490,510,513,512,512,504,511,505,511,511,564,558,564,558,557,554,565,553,550,535,539,540,531,536,537,536,539,527,540,530,528,523,536,530,535,527,534,529,542,532,542,548,556,543,539,533,515,508,512,517,518,518,524,515,519,550,581,574,553,549,570,567,560,552,508,521,514,523,522,527,525,524,532,497,486,489,487,491,485,482,483,493,483,495,493,506,496,490,499,498,508,580,575,564,560,562,570,559,566,562,560,547,556,547,554,544,559,554,551,499,522,522,528,525,510,507,522,536,517,506,497,502,516,510,499,508,508,471,479,489,476,480,479,479,494,488,444,462,454,458,456,461,461,457,468,449,461,464,461,462,459,468,465,463,566,559,558,554,559,555,547,557,561,544,559,556,556,553,555,545,552,547,529,514,523,507,516,517,520,517,520,558,547,544,547,551,543,549,552,541,546,566,574,576,551,571,564,557,559,485,505,504,501,513,492,500,509,510,498,501,510,500,513,495,507,510,495,575,566,568,570,576,568,580,579,563,525,540,526,530,532,529,540,524,515,504,501,512,509,506,511,500,515,504,483,477,482,483,482,473,476,479,489,500,480,487,486,489,494,489,488,479,585,563,582,584,568,573,571,561,580,502,501,506,494,502,499,513,510,493,544,533,545,555,552,532,550,537,551,502,515,511,513,514,514,511,520,516,537,534,526,526,525,530,520,531,525,560,545,557,554,550,554,556,556,553,528,522,526,533,522,527,529,529,535,567,564,561,556,559,555,555,557,555,529,525,516,524,517,522,518,535,522,505,500,506,507,507,510,496,502,504,477,484,482,483,483,481,478,484,484,491,491,501,491,494,490,497,500,489,538,560,565,571,570,573,569,570,556,511,515,508,507,501,495,511,498,508,496,495,493,492,496,485,490,493,487,535,536,540,533,544,541,529,546,537,562,559,563,555,557,550,546,561,562,500,508,500,509,511,525,511,515,484,477,488,490,488,494,490,501,493,480,492,505,502,510,505,503,506,501,505,500,506,493,496,506,504,505,510,508,471,482,486,477,480,481,487,478,489,515,514,511,510,518,516,504,516,518,584,565,570,568,552,557,558,568,557,498,494,491,491,494,492,480,500,499,481,456,475,473,471,461,456,466,460,565,548,549,548,548,551,547,542,553,559,546,544,549,555,553,541,554,542,507,522,518,516,507,512,518,510,516,533,531,533,523,529,524,525,526,529,490,506,508,509,507,501,503,498,508,544,557,569,558,555,548,552,556,546,502,476,478,482,472,478,475,484,496,447,449,429,453,454,448,457,451,455,543,553,550,558,560,538,539,545,542,542,545,541,544,552,551,553,545,548,509,516,527,516,514,528,524,525,518,548,538,542,536,542,543,534,535,547,507,495,494,501,494,481,504,483,496,493,504,498,494,495,497,494,495,505,558,562,562,559,563,564,566,566,559,562,555,547,549,555,553,560,547,549,496,487,488,489,473,499,491,481,499,482,470,485,478,468,483,476,482,474,625,595,589,577,602,591,595,601,594,550,552,561,555,553,561,553,555,553,540,556,548,550,549,550,544,548,554,536,503,523,519,509,522,510,502,529,473,482,487,481,486,483,489,483,483,457,470,477,478,472,465,475,472,469,545,549,547,542,544,546,533,544,543,518,523,522,521,521,521,520,519,526,529,534,542,535,539,538,540,530,535,500,514,515,508,520,510,505,509,505,577,565,561,554,577,559,558,568,546,509,514,518,523,517,533,520,521,525,505,495,498,497,498,489,491,483,488,475,489,487,490,484,487,489,489,497,508,506,501,503,508,504,504,504,497,504,500,506,505,499,499,499,505,499,484,479,476,486,471,484,479,482,491,514,513,503,500,496,494,504,501,507,556,549,550,559,562,552,556,554,553,543,542,538,542,540,535,541,535,538,576,563,576,566,583,575,565,579,569,518,493,498,493,511,504,488,509,508,462,482,480,484,473,474,469,476,477,582,562,553,555,563,561,548,550,555,489,503,505,505,501,501,511,516,501,485,492,484,494,487,489,483,490,488,503,500,504,498,507,499,506,497,502,511,505,506,507,496,501,501,504,513,504,501,501,501,494,505,508,499,506,485,477,485,479,479,481,476,483,479,479,464,467,459,462,460,468,473,470,493,493,493,488,495,492,479,485,495,600,568,577,568,551,554,576,561,554,526,519,512,512,502,521,511,513,512,551,570,565,578,570,567,556,574,562,494,512,514,505,517,509,498,494,500,547,533,574,549,545,569,562,568,544,508,516,519,509,520,517,518,517,524,569,565,552,564,554,554,555,556,558,545,543,552,555,552,549,558,557,554,502,522,516,516,517,517,523,516,529,515,513,501,513,516,502,506,512,511,495,501,506,496,505,502,505,506,497,473,483,474,485,483,480,474,478,485,505,501,496,503,498,513,502,511,509,553,556,557,561,555,549,555,564,566,543,532,536,532,532,533,532,534,527,508,515,514,512,511,508,512,523,520,508,521,518,521,521,525,519,533,525,606,581,591,585,580,584,563,580,578,529,534,532,520,538,536,531,533,527,568,549,563,552,550,540,559,562,546,521,524,525,519,520,526,520,530,526,560,549,549,550,542,550,554,537,551,508,494,495,491,502,499,505,492,496,489,507,490,506,504,505,491,504,506,561,553,549,548,547,547,552,557,552,558,572,569,576,559,569,565,581,563,539,513,504,518,514,535,517,510,526,491,491,486,488,483,487,480,483,490,507,493,495,487,494,497,493,506,501,553,560,559,562,569,559,564,561,584,550,566,556,553,556,558,551,551,551,515,525,532,528,523,525,514,529,522,518,520,513,509,511,505,502,509,513,491,494,501,500,497,499,495,497,501,499,490,491,491,482,490,488,488,488,497,497,510,508,505,503,516,509,510,537,544,548,551,542,542,545,540,542,470,483,499,481,479,483,480,487,489,429,444,439,433,448,459,449,444,440,577,556,566,560,560,560,562,564,559,564,564,566,557,539,561,567,561,563,509,527,520,517,532,512,529,524,518,491,478,478,488,474,485,478,480,481,496,477,479,473,472,482,479,474,468,608,595,606,587,602,601,586,584,586,550,547,547,554,545,555,543,549,541,551,554,549,546,549,547,554,544,547,543,532,533,532,533,527,542,529,528,482,491,470,481,481,465,470,478,483,546,530,524,540,525,529,537,523,536,548,551,555,556,555,551,555,549,551,543,558,564,562,554,561,550,558,563,527,521,535,520,533,541,527,517,523,501,509,510,508,513,514,509,515,511,499,505,499,503,505,502,508,498,507,494,489,501,493,493,495,496,497,495,455,459,467,448,448,457,468,460,466,489,481,469,478,482,469,477,473,477,588,555,564,567,545,560,559,574,555,537,505,507,525,499,537,522,512,530,486,485,477,475,484,487,484,482,481,467,476,473,464,474,467,472,476,478,490,493,494,492,495,486,500,488,484,596,570,566,573,559,561,578,577,573,507,481,516,508,486,503,499,488,502,474,482,473,478,475,468,488,482,489,533,565,543,562,571,552,552,562,557,473,495,496,481,497,507,501,499,494,450,463,463,471,468,469,463,469,468,519,541,538,537,532,533,538,541,547,543,536,542,529,541,540,534,535,539,531,558,535,543,546,544,534,525,549,502,500,500,511,495,504,506,497,515,524,547,540,550,541,567,558,557,547,520,517,510,509,510,513,515,505,518,589,558,565,586,580,560,569,565,571,489,500,498,511,498,502,505,501,499,436,455,444,448,451,442,451,452,449,523,521,520,536,530,525,516,522,531,541,527,534,538,534,519,538,532,524,573,559,568,576,567,560,560,575,565,538,540,546,540,543,540,543,533,534,583,578,575,570,575,578,570,582,583,541,525,536,518,528,521,533,527,529,508,518,505,508,509,507,501,512,508,505,506,496,504,499,503,503,503,505,488,492,495,491,482,492,493,489,495,485,487,477,486,485,479,485,483,494,499,500,496,500,488,504,497,493,505,461,478,483,475,476,478,474,480,477,454,434,443,439,437,444,436,442,449,457,472,470,471,468,479,474,482,483,585,561,575,568,583,569,569,557,562,524,510,518,517,523,517,521,523,517,479,470,471,469,473,461,469,474,477,474,460,457,458,456,451,459,459,455,576,546,547,543,551,541,549,559,547,473,494,498,477,493,489,489,498,498,558,590,590,604,574,570,575,570,579,536,531,535,535,537,532,538,533,535,557,572,576,567,566,575,567,582,570,538,527,534,528,530,523,537,531,531,515,515,507,498,508,506,507,509,508,500,496,516,501,493,501,505,497,501,486,484,481,477,467,484,483,492,481,465,458,462,461,453,459,463,450,472,475,479,474,474,466,477,474,467,479,624,596,592,608,581,599,592,602,593,556,548,550,549,537,541,533,538,545,567,565,567,563,571,572,561,575,583,541,525,523,528,525,533,527,521,528,493,483,486,481,486,484,480,479,483,493,500,496,507,503,503,514,509,508,562,567,552,561,566,556,561,561,553,537,534,537,537,527,539,539,526,532,525,513,515,517,512,532,519,519,524,533,537,550,550,546,536,545,546,547,571,568,564,565,577,570,569,561,571,540,528,519,520,517,518,523,534,527,487,496,500,490,499,495,497,498,501,439,468,463,458,457,477,455,449,470,485,500,506,507,495,505,503,507,520,580,568,562,557,573,555,568,564,563,540,515,507,525,523,519,525,513,530,472,486,478,475,481,476,471,494,485,494,509,514,510,513,508,508,508,517,526,550,545,549,543,540,541,546,537,504,517,517,513,515,525,520,526,521,532,539,541,532,532,542,535,538,537,539,560,563,548,554,557,554,571,540,544,534,536,541,535,532,528,535,541,563,562,558,573,557,564,554,564,557,538,513,506,518,509,514,519,507,532,484,496,496,502,496,495,500,494,496,469,466,475,459,466,473,472,463,463,491,467,464,471,475,461,485,469,466,533,550,522,563,527,547,533,537,540,504,512,505,510,511,508,510,516,517,546,578,565,570,568,582,572,568,571,509,529,521,526,523,516,510,533,528,489,479,485,483,492,484,483,491,476,472,452,457,454,460,464,465,455,464,510,508,509,495,506,499,493,506,506,582,568,569,563,558,567,565,571,562,538,546,545,543,544,539,544,549,543,487,488,493,482,476,493,498,494,495,486,470,476,479,466,472,469,470,473,543,547,543,544,538,548,539,537,546,532,523,524,519,525,518,526,523,525,566,554,548,563,544,558,552,541,551,473,500,500,485,487,487,480,478,484,481,479,478,477,470,485,475,481,479,581,569,555,552,555,547,554,556,553,516,509,511,503,511,506,515,513,518,469,465,471,471,473,473,468,464,471,418,428,447,441,447,445,436,435,436,517,533,527,521,526,524,541,519,528,527,539,541,548,547,539,541,546,537,526,520,513,521,521,526,522,528,519,539,558,547,552,547,556,551,541,563,496,492,490,513,493,487,501,492,501,482,504,493,497,498,490,500,490,495,586,556,568,563,568,585,580,575,568,508,502,488,499,502,497,507,499,501,474,477,467,475,477,475,472,472,481,571,541,536,555,552,538,536,557,544,492,466,473,482,467,477,484,482,473,518,513,511,496,493,514,497,507,501,553,540,542,529,544,533,530,539,530,474,475,478,482,478,477,490,483,477,546,562,541,560,555,558,557,559,556,570,562,561,562,550,562,555,560,551,521,506,498,497,498,504,497,506,509,473,489,491,485,480,480,478,486,485,565,565,563,568,549,554,554,553,551,530,505,513,501,515,519,500,517,521,469,490,481,473,483,481,494,480,482,462,474,465,472,464,471,465,468,468,422,420,445,432,441,426,432,430,438,521,538,538,543,528,541,545,545,545,582,564,565,560,566,570,564,566,566,543,557,559,556,557,549,554,548,555,512,517,504,522,508,514,518,530,509,470,477,485,483,479,478,482,479,481,491,505,483,503,493,497,501,490,496,554,563,566,561,572,551,568,544,562,525,497,497,507,501,498,509,518,506,508,492,500,494,486,491,485,497,498,563,551,548,547,543,550,555,552,542,490,488,504,494,498,500,508,500,498,560,547,535,544,545,545,547,542,546,579,562,564,564,550,570,559,565,558,533,520,525,517,507,525,526,517,516,598,574,577,570,592,576,581,585,574,546,531,526,527,534,531,531,536,530,575,560,544,559,558,552,555,548,547,526,512,520,506,503,507,519,519,513,575,556,555,554,553,552,546,555,561,498,489,499,493,493,496,492,494,493,507,518,521,516,514,506,513,508,509,562,569,565,564,564,566,564,568,565,549,551,551,548,551,549,554,547,553,475,504,496,497,488,502,502,495,500,471,469,471,464,479,480,478,479,469,544,553,537,554,544,546,537,544,553,523,528,525,525,526,528,525,516,522,550,561,564,552,544,547,546,541,549,498,491,501,487,494,502,473,492,494,498,485,484,479,478,484,480,486,482,589,561,565,575,569,565,554,557,554,502,515,503,518,497,512,513,503,517,500,515,514,516,511,510,505,509,511,490,490,486,486,481,491,490,482,498,486,484,473,477,491,481,475,485,481,499,484,486,492,487,486,489,492,492,467,470,473,475,473,470,469,469,471,504,496,493,510,504,502,500,491,499,537,516,526,515,523,525,526,535,521,490,494,499,484,496,498,493,501,500,578,559,537,553,557,551,540,554,549,531,526,509,510,518,519,519,513,522,537,537,544,544,546,552,548,542,543,550,531,539,540,540,537,532,536,531,578,558,572,588,579,580,596,577,573,525,522,524,524,519,527,531,514,528,488,481,488,480,482,490,484,482,484,487,477,461,463,472,462,469,462,464,585,559,566,572,574,566,562,564,573,543,551,565,563,558,558,550,559,552,493,512,508,517,514,509,519,520,515,447,466,462,461,457,460,464,458,454,525,504,494,513,502,494,490,505,516,538,530,547,536,533,545,549,545,530,484,479,486,492,478,481,476,493,491,543,559,560,558,551,569,557,563,556,550,566,564,557,565,569,566,573,564,525,531,530,538,522,525,520,520,526,500,509,509,508,507,506,506,505,502,482,473,482,477,482,472,485,483,480,510,505,509,500,510,504,508,512,517,545,542,537,533,536,539,532,544,539,527,518,519,527,520,517,520,521,522,563,543,539,547,552,552,542,547,545,524,540,541,533,544,537,540,536,542,572,575,569,582,579,580,576,583,565,527,527,523,524,518,531,521,523,522,494,501,504,503,503,504,493,500,503,481,484,486,482,490,493,489,489,492,511,514,508,500,511,516,510,512,507,563,545,541,547,543,541,545,537,535,501,490,505,487,501,502,497,504,502,512,500,505,497,503,494,501,489,506,526,540,545,553,533,549,535,534,546,484,477,491,475,486,488,480,476,487,454,445,453,433,446,454,438,446,438,522,535,546,551,528,550,549,551,532,545,543,545,550,546,547,549,551,539,476,487,487,509,506,496,486,500,488,462,461,464,466,476,472,465,466,472,489,471,470,477,471,474,481,466,478,554,556,557,556,560,567,543,568,564,518,509,500,516,507,504,505,505,520,473,473,463,460,464,452,462,457,460,455,445,461,460,455,458,456,459,460,568,568,564,564,566,573,560,560,561,566,576,576,557,558,567,561,557,557,505,519,515,526,530,526,529,518,513,501,504,509,513,515,511,502,512,513,507,500,497,496,507,502,503,508,502,497,476,474,482,474,479,468,483,490,454,458,471,467,458,460,461,457,468,487,498,500,496,498,501,498,497,505,555,556,550,558,556,555,557,548,548,540,538,540,536,530,542,538,532,539,590,575,568,572,577,570,570,561,563,514,515,500,523,514,506,512,498,515,477,473,474,467,472,470,476,467,478,486,497,509,503,507,501,500,511,502,550,561,554,561,543,548,554,545,555,504,508,520,505,506,515,511,502,513,482,479,471,482,484,470,480,487,481,504,506,506,494,508,516,510,506,517,546,533,550,546,548,543,548,542,544,526,519,521,511,517,511,522,510,517,519,518,504,521,515,512,510,507,515,545,562,559,551,552,560,557,557,560,540,561,555,552,561,551,557,567,554,505,503,495,493,491,496,500,499,497,504,497,501,502,507,503,511,500,500,562,584,577,563,566,576,564,568,587,526,512,518,514,514,503,510,498,503,475,486,484,483,491,485,484,490,491,563,562,560,553,569,570,562,559,552,504,529,524,517,529,525,519,526,520,517,513,519,517,512,517,514,515,511,500,502,503,504,495,502,503,503,503,476,480,483,472,477,478,476,482,475,509,502,497,507,499,496,505,514,503,556,573,566,571,564,578,570,574,562,559,557,554,565,567,555,559,565,551,536,530,529,513,526,527,517,523,523,482,480,476,479,482,479,485,481,478,472,471,466,469,470,467,459,479,468,558,557,565,553,553,566,572,547,565,571,548,559,545,548,539,545,534,531,503,514,514,517,519,522,511,518,526,588,582,555,566,570,560,582,579,580,504,491,501,498,501,500,501,503,500,513,502,507,500,511,493,502,503,504,550,558,567,576,560,581,576,583,565,466,483,494,494,481,498,489,486,480,527,544,543,538,539,546,538,536,532,555,547,537,549,550,539,546,554,547,551,542,552,542,547,540,557,551,551,518,495,489,508,502,503,500,512,507,607,596,606,593,582,597,576,605,594,571,555,552,556,558,546,555,563,542,501,483,486,487,475,479,483,484,489,462,442,443,432,428,436,451,458,435,516,537,522,528,533,524,524,529,533,533,549,543,541,543,550,542,539,531,540,548,555,551,566,558,553,540,563,504,515,528,520,522,516,527,504,523,500,488,489,491,495,487,493,502,488,489,487,486,486,482,489,490,487,487,509,500,504,502,505,505,505,507,502,484,509,509,501,503,507,507,508,506,493,474,474,481,481,476,473,477,482,469,464,477,477,462,472,462,468,466,565,570,574,570,571,554,567,560,564,555,555,552,560,553,553,555,557,553,526,509,503,511,508,506,511,509,517,471,474,474,474,468,469,471,476,471,455,461,457,465,456,472,472,466,460,519,545,553,533,549,549,533,540,536,471,483,473,480,479,470,496,474,475,479,479,488,489,492,489,491,481,489,515,506,510,507,506,504,506,497,503,554,542,541,545,540,543,538,539,546,574,570,579,560,565,565,572,571,568,561,557,551,547,541,556,549,550,552,514,508,518,515,522,506,508,521,513,479,481,482,476,485,484,469,482,476,478,484,497,497,501,495,497,503,496,581,589,584,589,580,580,575,579,565,515,492,497,500,502,501,506,499,512,461,468,477,478,467,473,483,466,462,561,555,568,560,567,570,562,565,570,566,572,566,572,572,571,555,570,568,524,525,506,515,517,510,529,517,520,494,486,487,479,483,481,482,488,484,492,493,496,499,490,495,489,491,491,542,575,566,566,565,575,567,575,564,506,500,508,503,505,512,525,513,517,477,474,481,483,476,479,477,477,473,470,478,478,484,480,478,482,483,489,514,497,497,501,504,504,497,488,504,540,546,543,539,539,544,549,550,541,529,521,520,506,518,525,523,526,518,568,576,585,596,596,584,598,600,579,546,537,537,534,531,530,542,539,537,570,557,560,560,553,574,573,562,568,516,504,510,507,509,499,515,509,516,462,473,466,462,463,457,465,469,473,502,503,506,504,510,519,506,507,498,565,571,571,563,563,550,557,562,556,534,535,525,510,527,518,532,529,534,501,511,498,502,504,505,500,504,500,487,483,483,475,474,480,481,480,479,443,457,473,446,464,462,464,467,460,535,548,535,538,535,526,538,544,541,550,542,547,538,551,536,548,541,541,552,555,549,544,544,539,538,546,554,529,522,527,519,520,517,512,522,522,562,561,567,562,551,565,558,558,556,514,526,524,528,534,532,530,528,529,488,481,474,478,476,479,483,471,483,487,503,503,517,497,505,502,512,505,549,539,542,541,530,547,539,547,539,502,517,508,515,509,509,515,506,513,519,521,521,529,532,525,530,521,512,597,585,586,586,571,574,578,581,576,527,517,516,507,520,514,516,509,517,543,560,550,558,563,558,553,553,549,555,558,562,555,549,548,549,565,553,502,491,507,501,503,505,514,499,495,506,516,520,513,521,511,522,515,520,580,561,551,550,561,543,547,555,539,488,502,492,492,502,488,482,493,492,465,477,471,473,474,473,472,477,475,551,563,554,561,582,581,572,551,543,459,484,483,479,498,482,469,473,482,542,545,550,552,550,537,547,541,537,550,576,571,564,570,569,567,554,567,521,514,513,504,510,509,509,512,492,525,525,527,525,531,539,534,534,525,519,528,531,530,524,524,528,525,529,533,542,538,541,555,549,545,549,543,509,510,511,497,518,511,512,510,509,529,538,539,538,530,535,539,537,526,578,555,550,552,562,558,555,571,554,505,517,516,521,517,518,517,519,519,588,574,577,574,570,574,584,564,566,500,498,499,501,500,516,496,495,510,481,480,485,486,484,476,489,480,500,570,542,561,565,560,566,559,558,551,472,487,489,497,504,485,504,515,496,473,470,460,460,451,460,459,472,470,600,584,595,585,585,581,584,590,580,523,536,536,529,536,534,550,537,520,474,496,489,487,491,486,489,488,495,487,498,501,504,504,501,503,516,511,538,522,526,535,530,525,533,528,527,512,515,507,510,512,512,508,508,514,566,557,562,551,567,568,554,566,566,514,514,522,515,501,506,517,514,516,470,452,462,451,461,461,463,462,459,490,467,474,475,473,477,470,478,467,585,564,566,570,569,563,569,564,551,526,506,514,517,507,514,521,507,514,500,499,502,505,497,505,499,502,496,520,530,534,533,530,531,525,524,524,532,535,550,547,545,548,542,547,540,569,561,555,559,552,554,553,560,561,496,498,497,498,490,500,508,515,491,462,451,462,455,460,463,456,467,467,535,549,546,546,552,555,538,543,556,578,570,572,572,569,562,573,576,569,538,543,547,546,535,535,536,543,530,576,556,556,550,561,548,566,552,561,541,525,516,527,526,526,530,522,527,473,484,485,489,486,486,486,490,482,459,456,461,461,460,461,456,466,459,465,458,450,460,464,461,460,459,459,541,542,536,534,537,541,530,539,536,532,537,539,530,542,533,544,538,534,552,535,552,534,537,556,544,543,546,489,488,488,496,489,490,490,494,499,550,546,547,548,545,541,549,534,556,505,513,508,512,517,511,509,507,518,497,504,504,508,507,508,499,504,499,536,542,537,542,546,542,537,542,546,571,565,567,562,559,566,563,565,550,532,540,541,542,536,538,529,533,541,547,567,559,563,557,556,564,566,566,489,486,504,512,508,508,495,516,506,487,482,491,495,482,488,481,486,479,574,571,579,557,570,559,562,544,563,518,512,535,518,535,522,529,520,517,498,513,519,512,513,516,512,522,510,483,489,495,501,500,499,498,496,507,498,475,485,476,488,480,479,487,480,481,474,472,475,468,479,467,470,460,552,544,553,544,553,548,544,546,530,523,523,519,526,528,523,522,523,525,547,535,540,538,543,535,530,540,544,542,533,532,531,534,533,530,529,536,547,566,562,555,557,560,559,551,556,498,496,503,488,506,492,491,501,492,462,460,457,464,464,467,457,456,467,567,547,559,557,543,559,552,547,565,556,557,557,548,545,558,548,545,548,492,500,512,493,488,492,507,503,509,569,543,567,555,549,546,564,539,550,498,497,501,505,494,511,498,502,506,518,506,508,516,517,514,512,511,511,551,566,576,555,556,555,557,559,546,500,493,496,499,503,492,504,506,486,509,501,502,492,500,495,502,493,497,593,561,569,566,581,574,576,575,578,508,521,528,517,523,520,523,517,534,498,497,502,497,503,506,501,502,504,491,487,488,482,477,481,484,486,485,479,485,483,488,474,486,492,483,481,562,559,560,573,566,563,559,569,568,526,534,520,518,521,521,512,520,519,511,508,503,502,512,511,508,511,505,505,506,507,503,502,500,506,509,507,509,493,490,480,486,496,482,489,496,496,484,487,483,484,487,487,483,492,487,476,475,477,468,471,477,475,481,498,494,496,501,504,493,495,497,509,554,561,571,561,572,571,571,570,568,500,519,504,524,530,517,530,517,525,490,498,504,503,495,492,496,494,499,479,471,463,476,479,470,472,475,475,507,497,501,499,494,499,501,493,495,527,530,517,520,523,529,534,534,515,520,499,514,505,512,507,504,509,514,539,551,561,552,555,545,538,564,549,504,518,526,515,519,515,520,520,518,545,564,570,587,582,562,575,578,568,494,490,495,507,493,498,494,501,492,476,467,468,468,467,469,468,468,469,566,565,565,570,560,571,573,573,566,564,555,554,562,553,552,561,567,566,498,503,501,509,489,511,506,495,504,460,472,470,474,475,481,472,471,485,554,545,533,549,549,556,542,546,554,522,524,530,528,522,522,526,522,530,552,565,570,558,564,551,559,561,568,516,518,518,527,515,525,514,516,515,481,484,489,482,483,480,485,478,484,516,511,515,516,509,512,507,503,523,534,540,541,546,539,550,544,542,540,529,528,530,531,521,531,529,533,528,558,546,551,533,544,555,546,537,542,492,487,470,480,483,477,483,488,480,434,434,436,450,443,434,440,436,438,534,522,524,515,519,522,520,526,519,555,547,542,544,542,549,542,543,541,551,559,551,564,559,563,567,552,560,507,530,519,520,522,511,522,526,512,486,487,486,489,495,487,485,491,483,508,505,511,512,509,502,506,517,510,539,548,546,546,541,549,538,537,546,518,524,525,516,523,522,521,523,526,560,561,552,551,564,555,549,558,540,520,519,519,529,532,520,522,518,527,495,477,468,467,487,479,480,474,477,565,563,561,551,563,562,555,563,558,499,504,501,507,493,502,491,490,509,546,545,560,554,544,561,542,550,557,479,496,492,498,487,505,492,497,495,518,507,517,509,503,507,509,506,513,544,546,542,544,542,544,551,537,547,581,555,553,556,559,549,564,558,552,496,502,504,509,523,519,511,527,509,559,584,578,569,572,568,555,559,568,505,501,481,475,467,507,498,500,477,535,549,552,566,555,551,544,553,542,553,554,552,559,554,546,547,550,553,498,494,503,503,490,504,492,506,507,487,482,481,487,479,486,484,485,480,565,559,561,558,560,563,559,562,579,491,479,498,494,503,486,498,509,508,452,441,439,453,453,453,451,441,449,524,536,541,543,545,545,541,543,548,527,543,535,537,540,543,540,548,523,495,496,500,501,499,495,491,491,488,546,531,551,543,556,544,544,545,546,518,518,519,514,517,515,510,525,520,553,543,544,545,546,546,541,547,540,573,549,559,551,560,564,562,553,545,491,506,496,510,501,495,512,514,512,514,522,518,529,520,516,521,521,522,549,558,548,563,557,557,558,565,549,495,505,500,500,499,505,504,505,509,510,498,500,502,505,498,494,496,502,501,514,515,504,509,510,506,514,517,533,521,536,540,521,528,526,525,530,541,528,532,526,528,532,530,531,533,540,547,545,548,541,549,558,554,539,498,487,480,482,480,474,476,483,496,563,545,548,550,555,552,552,558,539,572,569,554,562,551,561,569,558,558,517,516,522,536,517,523,530,523,514,505,504,512,514,506,511,506,508,512,486,488,491,500,489,486,487,492,489,495,485,493,486,488,497,492,497,491,506,495,501,500,502,505,500,497,502,484,507,499,496,500,499,495,503,506,477,492,494,492,492,496,491,493,489,484,472,471,472,479,470,472,471,469,473,484,490,484,487,486,484,485,489,509,501,508,504,503,502,508,504,499,565,553,550,554,546,554,557,557,545,546,545,543,548,551,549,551,551,544,521,508,511,513,507,506,511,499,514,492,513,511,511,504,503,504,499,508,517,543,538,537,523,537,530,541,526,497,513,514,509,509,515,507,510,520,560,575,573,574,569,557,573,579,544,501,498,497,495,504,490,502,497,491,466,463,469,465,463,462,469,476,464,555,571,564,561,557,569,569,572,561,540,556,552,550,554,555,541,556,539,494,501,494,512,501,505,513,506,515,494,497,501,497,498,497,490,492,500,527,545,534,537,544,540,539,536,542,555,563,549,575,552,553,554,563,550,520,517,520,523,521,517,518,514,523,579,574,576,580,578,565,565,590,567,514,510,505,495,509,503,506,492,492,480,470,485,479,470,486,471,477,485,523,549,556,547,560,568,558,547,549,477,492,481,485,489,495,496,496,506,591,591,581,589,576,594,581,583,585,557,550,543,543,548,548,549,544,549,541,548,544,550,548,548,552,550,550,562,557,560,550,569,553,550,543,548,528,525,516,513,518,503,515,530,527,491,493,495,494,497,500,501,502,500,490,484,500,488,491,489,492,476,486,456,470,455,461,467,469,461,476,467,437,437,432,437,441,436,438,433,434,506,490,483,500,484,497,500,487,498,539,550,535,542,539,538,541,535,543,525,519,520,522,514,521,519,516,516,555,545,536,545,535,547,535,542,543,592,568,552,570,560,567,573,565,554,494,506,494,508,501,488,500,479,495,555,562,555,563,560,575,566,564,559,558,556,564,574,566,549,559,555,560,512,494,495,508,498,507,494,488,511,510,521,524,518,518,516,522,516,510,549,554,554,552,557,544,545,552,547,480,493,506,502,509,502,504,501,499,522,509,504,517,500,507,494,505,508,547,539,546,545,546,548,540,546,540,488,506,496,495,504,493,500,489,506,486,490,487,493,498,492,496,486,496,548,540,545,543,547,542,539,551,547,549,568,568,575,580,576,567,564,569,525,523,524,515,523,531,511,524,526,483,494,486,488,485,483,485,486,482,498,508,502,503,502,500,508,501,509,556,558,566,562,566,564,569,575,560,546,525,527,527,534,537,525,529,528,520,510,508,506,504,504,512,510,506,532,557,564,555,554,557,555,553,550,479,486,507,498,503,494,497,514,516,464,466,464,469,471,466,473,469,472,477,471,479,467,474,468,467,473,484,574,544,548,551,538,556,548,557,539,500,492,493,495,495,498,490,498,486,516,503,511,517,508,509,516,507,511,568,551,559,567,561,557,570,557,552,493,517,523,512,518,510,521,515,518,495,499,499,498,497,499,498,492,499,471,484,481,484,483,482,485,489,480,442,454,454,463,463,455,458,454,456,455,438,423,436,434,426,438,434,445,505,513,510,514,519,516,517,513,516,520,518,516,519,510,510,521,519,512,525,527,525,535,531,532,531,533,527,557,577,560,569,564,573,577,571,574,553,539,555,552,557,553,553,541,545,534,509,524,509,497,505,525,530,512,463,471,474,479,477,492,476,469,484,496,489,498,498,500,503,502,508,506,552,563,553,562,554,553,548,547,544,537,530,537,532,540,540,540,537,544,589,587,580,585,571,566,584,578,571,494,498,490,511,503,501,504,500,497,488,496,489,494,499,490,504,496,504,555,563,568,567,570,571,579,572,551,530,518,516,516,524,506,509,515,519,533,526,528,533,516,534,520,525,517,582,585,569,587,595,583,573,579,576,528,533,533,541,545,542,537,532,542,559,562,560,555,552,576,572,566,573,497,505,514,515,511,498,521,513,518,451,458,457,464,463,468,463,464,460,492,485,488,491,476,475,475,486,482,584,575,567,566,561,564,566,571,569,494,500,495,489,503,498,504,507,503,456,457,465,459,454,457,461,462,460,552,542,546,547,557,549,544,552,555,587,565,561,569,577,575,578,578,567,516,530,525,534,532,536,519,522,530,483,476,486,475,473,477,486,486,486,554,557,562,546,549,544,553,560,560,565,563,556,555,567,559,560,561,557,504,506,515,506,518,508,509,507,514,474,468,469,461,472,459,465,471,471,419,439,448,451,450,437,438,443,430,522,508,519,510,514,507,512,508,511,530,528,532,525,527,525,524,522,528,551,570,572,575,561,571,550,562,564,493,508,513,507,517,503,513,509,496,550,570,555,556,561,553,556,553,545,565,557,557,547,561,576,558,555,549,488,503,508,498,489,497,498,507,493,500,501,500,495,504,504,499,501,503,564,556,561,567,573,567,579,560,580,492,506,505,508,500,492,505,512,498,479,488,483,484,487,476,497,490,488,562,548,567,549,553,562,568,554,573,524,524,514,509,515,525,519,525,517,496,500,503,493,501,505,494,491,491,476,456,461,456,466,452,454,469,469,501,494,483,491,489,498,490,490,498,531,550,539,541,543,538,545,544,541,584,559,575,567,572,559,568,575,561,529,522,527,517,521,518,533,523,533,489,481,494,483,488,483,489,487,482,450,468,462,462,447,465,460,461,464,454,464,462,468,461,455,471,462,461,557,564,546,556,557,553,561,566,553,538,537,548,557,545,543,548,551,547,481,482,492,489,491,498,492,473,495,578,585,573,588,582,585,583,574,586,518,531,514,532,525,533,528,534,524,549,558,570,563,561,562,568,562,562,525,537,531,536,530,532,529,532,538,547,533,539,535,541,553,537,533,535,517,517,508,517,514,515,511,503,518,553,567,566,560,578,565,570,567,575,530,517,528,529,519,513,531,530,515,503,499,492,487,494,496,488,496,496,507,506,500,507,506,510,514,508,506,545,549,545,537,541,533,544,556,552,491,488,499,496,484,496,493,495,492,494,494,495,502,500,496,500,496,503,544,553,552,547,561,553,551,557,543,521,527,533,530,535,525,535,530,525,466,492,475,472,479,471,475,479,473,551,560,556,550,562,564,562,553,552,561,554,556,558,553,549,549,569,569,520,511,503,510,513,511,515,520,516,458,462,456,463,464,453,460,454,457,464,456,465,465,473,474,469,477,461,586,589,590,589,587,588,573,601,575,522,531,527,530,531,526,536,526,534,562,568,566,548,574,554,545,547,553,476,506,492,503,487,485,485,497,495,569,546,559,551,551,550,556,565,547,514,486,491,486,496,496,498,491,501,554,552,566,556,545,558,557,536,541,496,490,501,486,495,501,497,486,506,503,493,489,492,492,495,491,487,490,543,553,553,561,540,555,553,564,552,547,550,551,552,547,549,553,544,547,506,498,486,503,502,506,490,497,506,514,503,497,497,502,503,505,514,511,535,558,538,550,550,553,548,551,546,502,510,517,521,514,518,529,528,528,599,592,583,594,589,590,594,583,579,503,504,511,518,507,508,506,514,508,530,548,549,534,531,534,536,542,527,582,568,567,569,562,562,561,562,556,512,533,528,532,528,535,527,525,518,553,548,562,546,555,554,556,557,564,507,508,514,496,496,501,510,504,506,564,555,557,563,563,553,551,557,562,491,501,493,491,499,494,474,482,485,460,464,474,460,463,471,465,473,461,528,530,543,540,536,546,539,533,540,520,522,525,528,527,527,523,521,529,513,521,522,517,519,525,513,523,509,548,544,537,544,536,543,552,542,543,553,556,553,557,563,567,562,556,558,524,518,518,517,513,529,513,513,535,495,482,485,488,491,489,480,482,484,509,501,499,500,505,510,511,499,503,545,541,551,551,547,541,540,539,550,568,561,562,556,558,551,558,570,562,501,489,504,494,493,494,493,506,496,565,562,563,558,552,554,553,548,551,555,552,557,554,555,541,561,548,549,465,481,486,483,486,489,501,490,498,525,537,529,530,533,537,540,534,533,547,542,541,538,531,537,537,536,540,548,525,543,541,545,544,542,543,536,520,510,503,509,510,510,506,506,507,519,531,527,522,535,524,531,521,527,570,566,561,552,562,549,557,551,550,513,477,504,504,489,496,508,479,498,433,449,442,435,424,434,435,442,451,525,525,518,520,515,511,523,511,517,540,537,542,546,554,541,547,551,538,556,554,551,557,554,560,554,553,568,510,516,506,529,511,520,518,515,511,499,483,484,492,483,494,489,492,489,469,462,476,480,478,463,479,475,475,538,555,552,551,562,549,553,555,533,522,516,510,516,520,516,517,505,516,583,579,586,581,557,576,578,573,556,522,505,488,497,503,497,506,501,508,503,485,491,492,485,494,489,496,499,561,576,578,557,565,562,574,580,577,501,489,483,496,500,480,511,496,495,562,573,572,578,566,583,570,586,573,535,518,508,523,507,530,505,521,509,590,578,595,586,573,586,579,581,580,557,535,542,540,548,545,546,539,532,530,528,528,528,532,536,538,531,519,560,547,561,561,554,568,574,563,557,537,530,537,535,539,530,535,536,535,555,566,552,545,561,551,556,561,559,492,495,494,505,492,501,500,489,493,497,499,498,495,490,493,504,505,494,493,508,500,505,507,501,505,507,511,550,538,542,537,544,541,540,539,545,548,562,562,567,558,555,552,566,560,531,537,528,540,539,528,531,537,533,466,483,474,483,477,478,496,472,490,458,471,469,474,475,476,471,469,480,532,548,553,536,543,550,546,555,547,480,500,495,502,499,497,508,501,508,449,441,453,447,436,443,449,450,441,543,527,532,519,529,531,517,531,532,518,512,508,514,509,510,519,514,514,537,525,531,526,530,526,527,537,532,563,554,566,559,553,558,573,563,570,540,537,538,532,532,524,539,532,539,518,523,528,527,522,526,525,525,527,541,531,536,535,539,530,541,541,535,483,486,471,487,488,470,477,480,487,530,544,550,542,548,542,550,544,548,566,542,547,556,556,551,548,553,546,516,518,525,529,528,528,524,520,523,527,544,528,538,537,542,537,531,542,515,507,517,508,519,512,519,503,516,537,520,525,520,512,521,514,524,525,598,585,589,585,584,577,595,585,574,537,550,560,560,550,551,553,551,551,538,509,516,518,523,517,517,511,516,501,510,500,510,507,506,500,507,514,481,480,487,464,483,488,488,487,480,460,473,458,458,467,449,471,466,471,517,508,495,504,499,503,507,505,512,508,520,541,529,537,543,538,534,537,494,480,472,475,477,472,479,484,469,561,586,580,587,594,586,591,583,572,506,504,499,498,505,514,507,497,503,531,528,522,522,532,520,527,520,513,523,526,529,531,530,525,522,521,527,550,548,561,567,565,556,555,570,565,528,523,525,525,529,510,521,530,527,545,536,557,552,560,561,560,562,562,489,489,504,502,504,501,505,496,506,529,544,552,531,528,549,561,552,550,511,498,499,503,504,501,491,508,508,581,568,561,562,582,567,562,566,551,507,502,487,511,497,507,503,501,508,492,483,479,459,475,463,477,474,482,528,548,567,547,544,552,545,542,546,520,511,502,506,510,520,516,511,522,473,484,468,484,476,488,492,494,483,436,443,436,438,443,439,435,428,448,457,441,445,442,441,456,445,456,451,548,534,528,540,523,534,531,525,534,508,519,520,522,519,520,516,517,520,529,527,526,531,529,529,523,531,528,566,552,577,561,563,579,568,562,561,552,545,543,538,548,548,533,539,545,533,524,527,533,536,533,526,535,533,517,525,521,520,525,523,519,523,517,544,528,541,536,539,543,536,541,533,585,566,563,553,562,563,562,552,544,532,515,519,521,529,517,524,523,528,504,501,499,511,504,499,496,505,503,537,544,543,535,534,536,542,547,539,573,559,552,562,561,573,562,568,549,494,506,499,496,515,503,506,505,497,554,541,538,532,536,547,529,531,527,550,564,556,568,569,558,567,581,559,542,545,548,535,533,541,546,544,555,496,495,505,521,503,510,508,505,521,478,473,482,484,483,489,483,492,489,485,476,478,478,479,475,482,481,481,448,447,453,448,447,446,447,454,452,475,498,497,486,488,499,492,481,493,524,535,533,539,536,533,547,546,533,553,555,556,571,566,552,562,550,561,485,486,511,510,496,502,505,485,504,436,440,439,434,444,439,449,443,432,517,521,521,518,516,511,513,510,516,517,520,531,516,519,522,527,516,519,553,538,549,546,539,543,544,543,536,560,554,565,551,549,540,559,556,549,523,522,509,508,505,515,510,522,513,461,456,456,452,455,447,456,452,461,475,482,461,468,458,468,485,486,455,606,597,580,588,582,601,588,581,586,490,514,507,519,499,504,509,502,522,541,537,541,549,535,552,537,536,533,548,565,564,555,560,565,551,559,543,517,527,536,523,520,540,530,525,530,523,515,518,518,518,517,516,513,514,567,559,551,549,554,552,550,544,543,482,505,497,492,501,493,506,495,506,458,466,466,470,467,468,479,471,469,503,503,500,501,496,497,502,503,498,535,552,552,546,544,543,552,543,553,518,522,506,519,530,501,538,520,521,499,500,495,494,498,495,497,493,502,452,466,461,460,462,460,458,460,458,450,455,463,450,451,459,466,456,446,539,556,564,559,555,555,556,562,550,565,549,549,550,544,556,545,564,544,504,509,494,487,495,492,496,492,508,613,587,591,603,585,594,589,602,593,564,552,550,544,549,548,551,550,549,524,536,528,520,516,528,528,529,528,453,454,473,485,468,478,462,476,470,553,531,541,539,541,528,543,536,537,574,550,576,559,574,571,583,569,552,534,528,542,536,532,538,542,539,539,535,541,532,536,529,539,533,536,532,515,533,528,527,521,527,513,526,527,560,565,572,561,555,564,560,556,549,528,509,518,520,517,517,514,519,526,542,531,526,535,530,530,525,539,524,497,507,504,511,502,508,515,512,518,509,533,526,521,515,539,533,529,526,491,474,468,471,469,471,476,473,477,562,579,576,577,570,588,580,591,580,535,531,536,530,536,532,524,528,522,504,511,520,517,524,528,522,512,507,581,583,592,584,588,583,590,594,582,525,530,543,536,542,533,539,532,535,531,557,552,544,558,551,557,527,542,465,480,488,484,486,472,473,480,482,486,484,484,485,482,479,491,478,491,502,507,504,499,502,499,514,505,498,531,550,548,543,533,539,548,542,538,568,559,565,564,570,557,564,572,559,556,544,533,532,542,547,531,539,549,482,496,473,492,488,497,487,485,494,475,479,475,467,465,464,469,474,469,551,550,552,537,544,547,540,546,544,526,526,519,519,525,528,520,524,519,525,533,532,524,533,542,539,526,534,484,496,494,498,498,490,495,494,491,603,586,597,619,585,589,587,596,584,542,565,555,548,556,555,561,559,547,510,526,507,512,502,526,522,516,528,471,490,481,486,478,475,479,489,483,506,508,504,518,510,515,512,511,511,555,544,554,558,553,546,550,546,554,521,511,504,490,495,495,492,494,508,469,462,461,447,454,466,457,461,465,461,455,461,467,468,464,460,460,460,543,539,536,544,527,527,536,540,541,548,541,545,544,544,546,551,544,548,557,546,544,539,541,558,540,548,541,492,478,492,484,480,480,473,476,468,463,467,476,472,478,470,484,471,475,602,571,578,576,560,564,588,589,568,475,476,483,475,474,469,482,467,469,525,512,514,511,511,514,514,527,514,523,532,531,545,536,532,532,527,525,566,570,568,559,569,576,572,573,579,549,538,546,543,553,547,550,549,552,502,501,488,495,504,497,490,504,495,503,507,512,503,505,506,498,505,509,546,537,543,535,543,545,538,541,543,563,565,559,558,556,564,561,549,545,476,508,485,481,511,512,500,500,498,441,426,444,438,426,430,444,450,444,523,518,520,502,515,514,518,515,520,531,515,513,521,512,522,521,518,514,533,534,543,538,534,527,527,530,527,526,551,552,546,541,540,552,534,538,470,470,484,495,491,488,490,476,505,572,554,532,543,555,560,554,539,540,509,514,507,506,506,504,507,504,504,527,521,506,519,514,516,522,515,508,596,577,581,577,576,572,587,580,572,545,561,556,545,551,559,554,560,545,548,554,556,549,550,547,551,552,558,524,513,529,533,524,506,513,516,534,513,497,507,500,503,502,500,512,509,476,489,484,495,493,486,495,494,492,461,457,461,466,471,460,451,460,459,508,503,505,494,498,518,511,503,500,571,548,562,561,570,560,560,559,555,482,496,489,491,502,497,505,494,506,500,507,506,512,508,504,504,509,518,525,550,551,554,553,536,540,539,547,480,499,482,498,480,481,499,500,488,580,538,553,554,547,547,553,556,540,519,500,503,503,506,499,510,512,511,581,549,559,559,550,565,569,553,559,518,525,529,526,526,526,530,521,531,533,545,537,539,538,537,534,535,537,512,528,521,532,529,527,517,523,524,549,560,559,550,561,567,561,555,560,531,552,540,546,545,549,536,545,538,517,505,513,510,496,504,507,503,508,452,472,469,460,471,465,463,467,468,469,470,474,465,464,470,468,473,476,572,537,556,563,550,548,541,549,546,491,494,473,487,490,489,469,479,483,531,536,530,543,534,544,538,543,537,556,542,544,543,535,542,543,543,544,557,545,542,552,549,555,562,550,544,491,502,487,491,489,510,502,491,504,439,425,435,442,436,440,439,435,434,521,518,521,521,515,518,512,526,518,526,530,547,538,541,534,540,543,535,561,545,538,555,547,556,551,537,548,503,513,509,512,515,506,502,507,512,559,560,562,556,559,571,576,557,565,522,529,523,522,528,520,521,523,530,523,543,535,533,540,529,533,544,519,481,486,501,483,486,486,479,481,476,563,557,553,542,544,550,555,546,551,476,492,493,496,513,507,501,491,503,475,486,486,482,479,485,478,488,487,490,506,491,501,499,501,504,502,496,535,534,539,525,537,532,533,521,526,544,541,540,541,550,536,537,536,536,533,546,547,559,547,543,555,552,553,489,495,484,486,494,486,482,491,480,577,559,569,560,559,568,558,572,559,559,566,570,559,554,561,564,550,562,480,498,494,495,511,480,493,493,506,459,457,451,437,446,456,456,454,451,542,535,540,538,540,543,533,536,545,536,544,545,536,548,546,544,532,534,508,518,515,513,519,510,514,516,522,542,521,526,523,527,534,525,529,531,466,471,474,483,474,472,478,479,478,555,546,542,547,543,547,552,554,549,535,550,549,551,556,547,557,556,554,475,497,476,491,471,493,482,478,469,548,554,555,545,552,563,550,548,544,568,545,558,549,548,545,563,551,558,495,500,504,497,487,499,508,509,511,514,523,526,524,524,521,524,522,521,539,541,534,539,536,539,542,541,552,507,490,500,494,497,501,497,505,509,556,556,554,555,566,551,556,536,537,517,519,521,519,514,524,521,514,519,566,569,562,560,547,560,549,559,561,557,551,550,554,556,559,561,554,554,501,523,510,513,516,522,512,524,523,479,479,479,482,479,479,479,487,479,517,508,520,520,518,524,520,516,508,549,560,560,566,553,558,564,563,556,481,489,504,492,492,495,495,488,503,502,495,498,491,499,498,492,507,501,560,578,553,572,568,564,576,564,556,515,516,506,526,522,514,526,504,511,470,467,465,475,477,463,465,466,474,440,435,444,443,434,435,434,433,449,516,524,516,520,512,513,520,508,514,531,534,544,533,545,538,537,540,534,536,546,555,538,540,560,547,541,552,520,505,509,498,502,504,507,508,512,564,558,562,560,571,565,558,566,560,505,498,518,504,511,516,507,505,510,551,554,565,561,546,543,555,558,544,512,500,495,500,497,495,484,495,494,513,516,526,519,532,535,520,517,524,547,567,564,564,571,563,559,550,558,493,489,493,499,495,491,490,501,495,474,473,462,453,473,468,452,457,454,553,538,525,534,530,531,542,545,547,562,547,545,545,551,550,557,536,549,542,556,556,559,553,537,548,560,552,502,504,514,492,506,495,498,510,505,496,485,489,489,496,488,483,492,490,530,531,522,515,519,518,519,516,520,559,582,579,577,574,586,590,581,569,531,544,537,538,537,532,539,541,529,490,508,501,505,501,508,499,500,497,532,519,536,522,535,531,534,515,532,525,534,534,537,534,526,538,533,526,559,571,564,562,561,562,559,570,573,520,518,514,507,511,511,516,511,503,555,568,556,555,549,549,549,561,560,573,557,555,552,554,569,554,548,558,524,525,529,522,529,533,525,539,535,518,507,510,505,507,505,516,513,508,504,503,507,504,502,507,508,503,495,488,505,499,501,500,503,503,499,500,479,483,472,480,489,486,485,479,490,498,481,483,487,486,485,488,489,485,492,480,482,484,490,484,479,482,480,446,464,444,451,458,458,456,458,453,439,449,450,446,450,453,462,453,460,562,550,561,555,554,557,550,544,540,503,492,491,487,494,482,498,492,501,533,535,548,559,543,548,568,567,543,518,494,504,503,496,499,498,490,515,553,546,541,542,544,549,561,546,561,478,504,503,490,500,497,513,478,504,472,469,468,473,472,464,466,471,468,594,582,563,555,573,558,573,560,570,460,468,466,481,460,464,481,469,475,520,529,529,526,518,530,520,514,515,537,544,538,538,535,540,534,543,540,543,550,538,540,545,543,554,551,542,526,519,510,516,520,519,519,512,511,585,570,585,575,561,568,566,586,563,512,496,499,501,509,499,502,498,502,499,481,483,466,487,487,488,478,492,570,601,600,603,598,585,600,595,589,572,550,562,546,552,555,558,557,543,478,490,493,504,497,488,485,494,493,504,495,496,498,501,512,502,495,491,566,569,561,565,561,562,575,559,543,517,498,510,500,518,511,503,505,496,493,497,497,494,490,505,495,502,499,566,552,561,555,556,551,549,552,550,528,531,531,527,533,534,533,528,529,531,522,529,526,527,524,532,527,531,541,556,561,562,557,547,557,562,548,535,537,531,535,534,541,535,530,532,533,530,527,539,533,527,532,528,529,552,529,531,537,540,530,538,534,528,493,502,496,500,505,494,488,491,490,577,598,590,583,576,600,581,586,572,539,531,530,543,535,536,545,540,530,511,525,519,517,520,515,521,529,521,559,563,554,564,557,558,558,567,555,536,532,517,533,538,527,524,531,525,469,479,459,466,475,479,469,488,470,527,541,536,535,537,522,527,523,531,548,558,553,549,551,547,555,552,552,553,560,553,561,544,554,545,556,544,514,504,522,516,526,526,524,518,511,489,482,480,480,474,479,482,479,485,470,466,456,467,462,470,461,466,455,606,577,582,596,590,575,592,594,575,542,553,556,528,546,541,554,540,544,491,517,508,500,508,511,495,498,515,498,488,486,492,491,483,486,488,487,462,475,474,480,486,468,476,476,479,465,467,469,463,465,466,475,466,467,490,473,481,476,481,482,471,479,480,508,503,505,504,503,506,509,505,505,502,503,502,507,498,504,507,507,502,477,477,479,479,482,479,471,482,483,501,490,490,484,487,488,486,488,483,572,570,559,578,576,574,565,570,573,516,518,511,517,514,503,510,522,514,566,544,555,559,551,555,557,549,553,496,494,486,502,493,498,491,507,500,495,504,511,500,505,497,507,502,506,510,510,510,506,508,510,511,515,512,547,526,522,529,531,524,530,524,535,548,545,538,544,543,540,540,539,542,560,558,553,557,555,557,563,554,556,500,521,529,506,506,516,525,513,514,485,489,490,487,491,486,490,486,494,492,484,483,489,487,493,483,487,491,534,526,518,526,521,521,528,522,529,574,569,580,577,579,581,566,594,565,508,532,523,529,529,534,530,529,525,585,583,581,574,585,594,583,578,579,497,526,518,513,511,514,510,507,514,537,548,552,548,549,554,547,550,547,542,560,545,548,547,545,547,546,544,490,499,494,502,497,498,500,490,486,478,477,481,479,480,486,476,471,475,482,481,480,475,485,486,486,478,488,504,513,511,508,509,497,502,511,502,554,551,545,543,547,560,548,558,548,514,514,505,511,502,496,509,502,506,472,461,464,460,458,461,455,458,464,428,440,437,434,441,441,438,434,428,515,510,514,515,516,516,516,508,509,526,526,528,528,528,529,532,530,528,580,565,567,563,562,564,557,549,567,514,502,512,518,513,515,502,513,514,559,547,560,561,550,549,542,552,543,538,548,546,545,540,545,555,548,538,512,519,518,518,514,511,517,518,519,550,574,586,572,566,560,571,577,570,508,504,491,492,496,504,501,509,508,519,507,506,499,510,513,504,515,513,566,561,559,564,576,559,565,562,566,555,543,550,548,551,545,550,541,546,478,493,487,478,484,488,492,485,488,460,455,441,452,449,441,437,439,449,554,563,551,559,548,568,564,556,563,558,555,550,555,552,543,556,554,559,510,505,487,498,500,499,507,499,496,512,508,499,505,505,506,505,505,510,540,532,533,542,532,538,538,542,535,564,558,551,553,558,557,555,571,558,485,485,500,506,508,499,488,506,507,430,440,451,438,437,438,445,441,440,513,510,520,511,517,516,526,519,514,544,547,540,554,546,543,548,537,543,556,559,559,558,553,562,566,551,559,518,516,526,523,513,529,511,513,519,479,476,479,486,483,483,485,479,485,504,474,472,487,460,471,487,483,474,618,598,594,598,610,605,589,593,587,527,543,532,530,532,524,532,540,527,492,492,491,495,496,498,500,498,506,568,578,590,578,590,584,587,601,587,549,553,544,543,550,547,553,568,535,486,494,498,491,497,501,492,495,503,511,513,512,509,503,512,503,510,514,577,560,556,557,560,558,568,558,551,498,513,511,519,515,522,517,506,518,475,478,475,490,481,478,476,477,475,460,466,457,460,463,465,463,465,473,532,547,534,534,534,542,539,539,541,548,542,546,550,551,554,548,546,548,549,547,547,535,552,536,537,549,545,465,490,476,466,488,478,465,476,474,477,474,489,469,477,472,477,489,490,570,569,575,550,565,577,580,581,556,515,495,486,493,502,490,491,501,485,553,553,551,557,556,562,552,550,555,556,555,550,551,556,562,545,550,549,503,493,503,495,497,501,502,503,505,585,590,585,602,586,590,577,581,590,555,546,540,542,537,540,546,537,536,526,524,527,526,525,523,527,528,529,541,540,539,533,548,546,529,541,537,506,501,520,505,509,513,498,512,501,540,546,568,541,540,554,546,563,553,532,539,537,533,532,532,536,533,534,561,559,564,571,559,563,568,570,557,523,516,510,510,516,516,507,516,526,480,479,484,476,471,484,479,476,485,502,494,508,497,501,493,501,501,498,501,513,512,516,516,516,514,516,517,558,554,553,561,561,553,560,552,559,554,560,570,565,566,562,561,560,548,523,530,518,529,513,522,515,525,514,508,509,507,507,500,507,506,505,504,486,481,479,484,482,484,485,475,477,467,466,463,467,459,472,456,462,460,552,562,560,564,560,568,553,545,575,549,555,556,550,551,546,556,547,550,492,488,509,507,499,505,498,506,515,581,581,604,598,600,589,591,598,592,554,549,547,551,543,548,554,554,546,518,494,498,502,505,496,492,501,495,474,489,478,479,490,484,478,486,486,475,480,484,475,478,479,486,486,487,505,490,497,488,488,495,490,491,492,522,512,514,512,508,518,510,502,511,551,535,538,542,538,532,535,541,532,555,545,545,536,549,542,555,532,537,504,513,514,512,518,507,515,510,512,536,529,525,530,523,527,529,528,520,448,456,451,447,463,444,452,462,458,512,517,530,530,530,524,532,523,528,526,535,537,543,535,545,542,536,533,550,554,550,555,553,534,552,545,546,492,492,498,508,498,502,488,520,508,455,437,438,443,441,444,443,449,435,458,482,482,476,466,474,472,469,489,540,561,562,574,561,560,567,550,553,514,510,516,509,515,500,502,520,501,574,577,574,580,573,550,559,580,566,513,514,498,506,490,487,491,510,498,425,435,431,441,433,445,439,439,450,538,536,531,535,531,553,539,548,533,534,552,547,553,544,548,537,542,540,486,500,483,502,501,501,497,471,500,436,447,424,420,438,443,435,432,441,516,529,515,525,523,521,514,523,514,539,534,534,544,528,535,536,536,536,545,547,543,548,546,553,547,544,555,511,480,494,493,519,494,494,491,506,478,462,467,469,465,473,482,467,472,526,525,536,534,542,549,537,530,539,531,530,524,526,528,523,524,522,527,558,561,562,562,567,565,573,547,568,519,528,505,512,518,526,534,513,539,497,495,493,485,499,497,488,492,487,448,462,460,452,455,456,456,457,463,457,469,462,460,471,461,458,464,459,611,600,598,599,582,591,604,587,591,559,564,559,547,553,556,559,551,548,503,491,494,498,487,499,488,490,491,465,470,470,469,474,461,459,461,467,579,562,562,555,552,551,555,565,565,569,549,555,546,539,540,552,556,553,492,501,510,476,501,501,481,478,496,438,423,435,449,430,453,440,445,448,534,536,512,527,521,529,534,524,525,558,556,542,548,551,545,541,542,539,514,503,490,513,506,498,505,503,505,520,519,525,508,526,523,520,532,515,561,588,574,574,586,564,575,563,577,535,532,529,523,538,517,523,533,537,547,551,557,541,533,557,555,548,557,522,502,511,519,504,512,499,503,503,574,570,565,557,553,548,547,548,549,515,496,512,506,507,523,504,506,502,486,485,479,486,485,480,487,490,478,477,472,475,478,476,480,483,477,467,498,503,505,504,496,497,492,493,493,579,583,568,573,569,571,566,572,582,530,514,526,517,524,523,528,518,532,506,504,513,510,509,516,512,509,504,490,474,497,478,490,485,493,482,480,465,463,473,457,456,461,466,467,464,467,462,466,456,451,463,466,465,463,548,558,546,561,550,565,559,545,554,548,549,556,558,552,541,549,548,550,493,487,506,488,476,487,502,505,489,597,568,581,592,577,590,572,587,577,506,514,506,503,508,503,506,505,498,518,531,526,523,521,519,526,535,524,534,529,529,534,528,531,529,526,534,559,575,577,560,555,560,565,564,567,512,514,522,507,523,497,510,507,517,551,556,548,553,553,550,547,545,543,540,540,557,545,550,545,548,549,544,507,528,513,524,515,527,524,517,523,567,578,565,581,568,576,566,572,582,502,488,500,495,502,512,502,507,500,503,505,486,503,507,506,513,512,514,588,570,567,574,586,566,566,571,567,489,507,499,509,495,500,494,498,495,457,470,459,468,467,462,458,463,477,561,556,553,555,544,548,563,551,558,556,547,540,548,554,557,558,536,536,506,479,483,476,478,495,501,466,497,560,559,577,575,592,582,578,580,581,561,550,548,547,551,550,554,548,548,536,544,551,550,544,550,543,548,548,483,498,509,494,500,500,489,498,505,500,501,497,491,500,499,500,494,496,514,519,514,517,515,515,515,518,527,544,564,555,556,554,558,555,554,557,537,559,553,550,549,552,555,551,550,516,532,516,521,511,525,515,518,527,483,491,483,486,489,496,488,482,494,454,448,454,450,452,448,450,449,451,431,458,456,450,453,448,451,457,456,581,591,575,581,579,578,578,577,574,539,548,542,551,541,564,547,543,550,480,479,487,498,490,494,495,491,486,460,464,460,460,448,466,460,457,463,516,530,526,531,527,539,535,527,538,526,538,528,534,529,534,539,537,535,562,559,553,566,569,575,567,570,561,522,527,529,523,529,529,539,524,524,550,561,565,541,549,566,549,560,531,512,493,496,496,494,500,517,490,505,566,534,560,534,548,554,557,538,526,526,531,524,525,528,520,527,536,525,567,566,563,563,567,560,570,559,561,522,509,511,521,511,509,511,524,527,477,489,474,476,484,475,483,476,478,516,514,511,516,514,517,509,524,507,551,556,556,559,566,557,554,565,556,487,499,502,496,490,506,505,494,493,526,517,516,500,514,511,513,515,518,548,534,542,540,544,548,530,536,541,517,523,522,528,526,524,528,525,524,563,565,565,563,557,562,555,557,558,543,530,528,527,528,516,522,530,519,474,493,497,489,501,497,498,486,491,583,585,602,589,592,578,589,590,574,556,561,567,552,561,553,558,555,555,545,538,542,545,549,554,547,551,553,475,485,494,494,487,502,494,483,497,469,452,465,456,464,452,463,461,465,529,534,533,536,536,540,538,540,528,536,550,535,544,546,544,540,549,545,537,546,535,539,554,544,542,537,549,518,517,517,513,509,512,514,522,514,570,564,567,576,563,576,578,564,577,503,521,523,515,524,529,534,524,529,483,485,489,484,488,486,489,497,493,485,481,480,483,483,487,493,477,490,576,562,544,556,565,557,552,564,554,501,494,495,491,495,491,484,501,492,503,511,509,510,511,507,509,505,496,541,540,542,537,547,540,536,539,541,562,552,561,560,577,566,556,555,568,483,505,490,495,491,506,502,491,494,439,431,427,431,433,435,444,433,439,520,521,509,516,515,524,510,516,517,524,520,517,523,526,525,523,519,515,543,540,539,529,537,536,540,537,538,539,540,538,536,534,543,533,556,543,518,505,506,513,503,510,508,505,511,567,554,563,573,553,558,556,561,559,502,492,499,493,497,506,486,502,502,431,451,448,459,436,444,435,435,444,547,533,531,543,526,526,535,524,527,566,539,557,544,546,547,543,549,530,477,476,468,466,474,475,469,476,485,523,533,543,544,534,525,533,552,531,553,547,549,548,531,545,537,544,533,500,483,491,482,502,491,489,483,500,533,562,556,540,544,553,544,549,557,511,498,506,510,509,498,504,511,494,550,549,559,569,548,557,542,546,557,497,498,502,496,514,506,496,495,496,512,501,509,503,502,506,509,502,509,529,538,541,536,542,531,533,533,543,560,553,548,556,557,549,569,558,561,502,495,457,487,473,474,472,496,477,532,523,523,524,523,517,522,529,513,518,511,510,517,520,523,517,510,516,528,531,531,532,531,527,529,526,526,566,562,554,569,555,571,559,581,568,506,510,520,509,505,502,494,500,500,525,528,529,532,535,525,533,536,535,530,534,534,538,532,534,536,539,537,547,543,547,554,543,551,557,535,549,500,503,490,501,506,504,500,502,506,568,556,554,536,560,562,562,563,562,516,515,518,531,525,519,508,524,529,491,485,494,484,489,495,494,493,503,484,485,495,494,489,482,485,494,492,490,497,502,494,500,499,500,500,497,485,483,490,483,478,475,486,481,477,496,516,508,509,509,507,509,501,515,537,539,544,544,539,536,537,534,532,496,497,501,487,493,496,491,494,481,615,588,586,600,597,575,595,586,581,560,546,545,551,553,548,548,548,542,535,510,511,522,518,524,529,518,518,487,497,507,502,499,498,494,497,497,575,559,565,567,571,555,574,556,559,508,487,483,479,494,492,496,483,495,499,516,494,500,505,505,504,504,494,564,563,575,574,568,563,568,560,561,504,531,534,526,525,524,532,511,521,465,475,477,467,477,478,479,478,481,457,433,425,428,438,432,434,439,443,497,488,485,486,484,485,479,484,492,561,538,539,544,553,540,550,544,545,486,511,508,499,506,495,502,499,508,547,537,537,542,534,532,539,544,538,540,533,532,539,530,527,539,529,544,539,539,547,548,559,546,541,536,542,496,503,496,499,499,501,506,504,484,560,558,548,553,550,541,577,547,553,471,469,482,465,484,490,475,469,472,548,558,554,539,555,558,537,539,546,557,565,570,569,567,568,568,570,560,546,531,529,539,529,520,538,534,524,543,544,556,549,559,547,570,571,555,528,492,505,507,508,513,503,512,504,491,480,486,490,486,492,484,488,488,465,468,475,469,466,474,464,463,478,441,441,447,445,434,432,432,439,442,495,484,479,480,480,475,479,487,486,509,514,501,509,513,507,508,503,507,530,536,528,528,529,527,519,529,527,530,535,535,533,539,532,533,533,535,547,532,545,552,523,541,545,540,544,492,496,492,505,502,497,505,506,521,578,560,548,554,565,569,551,558,570,531,516,513,520,506,518,512,524,515,488,489,480,489,486,487,485,495,494,484,479,487,482,489,480,483,478,476,556,566,565,563,567,565,573,581,566,516,523,528,511,511,516,512,521,514,507,501,498,505,499,511,507,503,500,494,485,484,491,485,488,494,486,490,509,512,507,506,495,504,511,502,505,517,535,522,537,539,529,535,530,527,528,518,517,519,522,517,516,516,522,553,553,550,563,556,547,554,558,553,531,523,519,509,523,525,512,523,521,458,464,475,478,470,468,470,465,475,604,590,580,586,585,581,584,584,571,526,533,545,531,529,539,528,536,530,579,548,569,560,565,562,560,556,559,498,504,513,520,509,514,516,510,508,567,575,562,573,550,558,578,550,551,537,535,524,531,528,528,533,525,523,559,555,553,545,553,551,544,547,548,490,483,486,485,488,498,495,495,496,489,486,497,496,495,493,496,497,491,588,559,563,561,565,558,564,556,547,531,534,528,528,529,529,530,532,531,554,573,574,562,565,553,561,556,568,547,525,523,530,526,512,536,525,528,497,500,499,497,497,503,499,499,505,474,487,476,475,483,485,479,477,476,442,457,453,434,435,442,439,440,440,524,525,520,515,528,526,527,514,519,531,526,527,531,528,520,535,531,537,569,572,574,570,569,561,564,567,565,495,500,505,502,495,495,499,499,508,544,528,533,537,534,538,532,535,524,535,538,533,537,546,547,532,543,539,550,552,545,551,553,560,539,546,557,521,521,508,523,511,516,525,523,519,484,498,486,486,491,487,489,483,487,494,481,481,481,482,482,486,470,485,473,475,480,480,478,476,473,476,479,463,447,444,447,443,452,433,459,445,532,550,547,552,546,550,559,543,555,531,539,536,552,540,548,534,545,544,525,515,515,519,514,508,502,503,523,569,565,575,565,565,568,562,554,560,524,508,505,509,515,514,498,500,505,570,567,568,578,576,570,573,579,577,489,478,482,487,480,487,478,477,486,514,525,526,526,526,515,522,534,517,532,541,535,543,539,530,535,535,530,533,547,550,548,536,546,552,542,551,520,505,515,502,522,523,507,528,521,567,569,562,573,576,568,570,566,558,492,499,494,494,503,482,502,500,498,470,478,478,473,475,465,467,481,470,548,557,545,555,545,524,544,555,550,493,492,480,471,473,472,484,470,473,498,491,489,490,489,486,489,488,493,562,562,553,565,558,554,555,556,551,537,535,532,537,533,529,537,535,532,525,525,527,530,526,527,528,522,532,547,536,542,545,535,538,542,535,535,517,515,518,519,516,525,521,523,518,544,538,540,533,541,534,529,528,536,549,551,557,563,553,557,557,567,560,471,498,497,509,495,492,502,512,502,464,490,469,479,475,481,474,463,469,556,555,552,560,558,545,552,560,549,496,488,486,485,500,487,501,497,483,481,473,479,472,470,473,463,468,476,558,561,559,552,556,554,547,549,545,564,551,543,550,557,549,545,547,541,529,525,513,525,524,519,516,524,521,574,562,561,563,570,561,564,562,559,545,552,548,539,552,552,551,542,538,469,484,487,493,483,488,492,490,489,450,468,462,468,470,462,474,469,462,531,557,584,545,566,575,570,560,561,503,498,483,492,491,503,493,508,503,554,546,550,555,547,548,538,556,540,505,510,516,514,516,511,511,504,519,511,521,524,536,524,524,525,526,517,573,578,590,578,573,585,589,581,576,544,544,546,534,537,539,536,534,528,506,514,521,518,516,514,520,517,522,551,541,542,545,541,542,540,543,545,562,576,557,568,573,566,565,554,552,493,524,501,499,501,517,509,511,515,500,509,498,497,504,493,503,492,504,522,521,537,530,540,537,539,537,534,526,527,530,525,526,523,529,522,531,541,553,567,554,560,557,559,567,552,515,523,513,522,496,517,514,526,519,481,486,480,482,489,480,485,482,484,478,492,483,480,476,478,494,487,489,566,556,561,570,560,556,573,548,558,533,513,507,511,519,516,506,516,515,481,486,483,478,482,477,490,476,483,485,491,489,488,480,488,489,486,479,569,565,577,554,571,566,561,571,578,495,496,497,499,502,508,502,514,504,523,538,544,539,558,533,542,536,551,523,520,520,523,517,518,523,519,523,568,554,565,552,561,557,563,558,556,526,533,528,525,534,536,530,532,536,516,498,501,497,496,510,498,497,498,564,578,575,547,573,552,552,553,557,515,509,507,520,516,509,510,517,503,513,508,513,509,506,500,507,502,499,555,553,554,553,555,567,558,564,544,546,553,562,563,557,572,553,547,555,516,515,518,522,523,529,525,518,520,476,490,489,488,485,481,488,484,486,463,444,431,442,427,438,437,432,432,530,550,536,543,544,539,551,543,528,561,566,576,560,566,569,561,569,562,532,524,528,538,532,518,527,535,532,496,500,500,504,500,498,508,501,514,583,553,575,565,567,558,549,550,548,531,517,523,516,521,525,519,520,524,550,534,544,532,537,533,532,536,537,535,555,557,561,543,565,554,559,554,518,505,488,502,522,484,500,494,509,467,472,475,473,467,472,471,475,475,502,504,499,511,497,507,505,501,512,551,559,552,548,550,540,542,559,543,513,492,501,503,501,499,497,492,499,461,465,461,471,462,465,457,472,465,477,451,467,457,458,472,461,459,451,555,546,553,558,541,548,546,560,543,469,504,501,485,489,472,482,490,505,470,462,451,454,458,459,456,464,468,546,540,542,538,542,548,528,558,542,501,505,507,506,507,507,514,515,511,525,530,532,534,535,530,535,522,527,550,541,549,527,547,554,536,553,525,486,488,474,484,480,490,475,480,482,504,505,499,508,499,510,505,504,505,524,541,529,533,540,533,529,538,532,496,505,490,499,488,489,503,495,504,569,593,584,604,589,615,588,586,581,548,528,548,532,544,549,539,525,522,516,515,503,509,511,523,512,514,519,530,550,559,563,535,568,556,563,563,495,490,503,504,490,496,502,494,508,512,513,530,527,515,528,527,520,523,545,572,568,577,567,567,567,561,561,529,514,533,517,532,526,527,528,517,505,506,505,514,503,512,508,507,508,500,497,502,503,505,500,492,499,494,499,498,492,501,497,497,491,493,493,484,466,463,469,464,475,473,464,463,455,463,456,463,466,463,463,465,466,543,531,542,551,546,539,525,542,534,475,471,473,473,471,492,488,480,479,476,483,484,474,488,487,497,482,489,532,515,519,518,513,524,522,518,518,600,574,576,570,584,591,576,592,578,544,537,544,544,541,543,541,538,534,535,524,530,519,523,527,521,520,522,589,572,568,573,565,562,547,574,561,494,469,484,486,460,491,476,462,481,535,531,544,537,534,539,539,543,543,549,541,533,540,538,541,555,552,552,502,496,489,497,501,498,487,490,492,552,538,539,538,539,559,549,549,544,517,518,519,520,513,519,514,519,519,546,541,544,541,544,537,546,547,541,555,570,570,569,577,553,558,566,576,516,504,518,515,506,516,510,515,521,461,455,454,465,467,465,463,453,451,493,478,475,489,491,494,477,484,479,571,567,578,571,571,580,562,590,560,468,480,502,470,496,476,494,478,496,536,532,531,535,533,529,542,536,531,512,524,536,516,525,520,518,527,527,532,532,528,535,537,532,543,533,541,543,549,526,552,536,544,542,554,550,508,501,504,501,507,497,517,508,505,556,554,546,556,548,548,545,547,547,493,517,497,506,487,491,500,503,505,499,486,491,499,496,492,491,494,497,506,511,504,509,511,512,513,508,509,546,539,540,546,549,536,541,546,539,545,558,555,542,546,539,549,545,546,458,470,481,475,470,469,463,472,490,520,526,526,522,526,520,517,536,527,536,531,528,538,533,533,533,538,529,552,545,551,544,536,541,544,542,537,527,521,514,513,524,520,524,522,518,565,547,549,560,561,555,558,553,554,538,535,534,547,534,532,531,546,537,526,524,525,531,527,526,524,524,530,554,541,540,536,537,540,541,545,538,516,524,527,526,523,523,525,518,526,554,523,539,539,539,524,537,537,531,504,489,497,481,485,480,492,495,482,567,552,536,539,552,551,561,553,538,527,527,528,531,530,525,523,529,524,558,560,576,559,555,549,563,545,563,525,512,507,517,512,522,500,510,513,492,494,493,496,491,500,502,494,489,462,471,470,472,470,468,472,470,470,466,471,472,463,469,473,475,462,470,558,519,537,542,541,541,534,546,540,502,499,507,494,496,499,497,496,504,574,594,584,610,599,586,613,583,587,554,538,535,534,540,538,537,543,541,548,554,562,573,567,552,564,562,555,509,486,501,502,491,492,483,505,500,472,461,466,455,458,462,466,461,455,508,497,505,498,514,514,504,503,512,535,546,541,537,536,531,538,544,549,520,521,520,520,524,519,520,520,528,540,544,547,545,549,547,546,546,544,499,502,501,502,510,503,501,504,508,520,523,528,524,539,522,531,531,519,529,531,527,531,533,529,531,525,527,575,571,569,574,558,571,569,561,563,508,501,508,515,518,509,514,509,511,556,556,557,554,553,564,558,558,571,556,563,554,554,558,562,558,558,559,539,510,521,514,516,524,523,509,517,483,484,485,484,483,483,479,479,474,459,468,465,464,467,462,467,458,455,553,561,545,556,549,554,552,556,557,547,553,557,555,556,556,551,557,554,486,456,451,472,471,468,465,464,474,525,539,533,525,549,538,531,535,530,565,555,561,555,573,568,573,565,569,532,539,511,539,521,522,525,546,526,512,513,513,506,511,515,522,510,508,580,554,563,563,553,563,576,557,569,527,518,531,517,531,530,526,526,527,514,510,518,508,502,511,509,512,510,486,492,490,494,481,495,488,489,486,486,490,488,481,485,482,488,488,491,505,495,497,491,487,505,493,496,496,488,477,479,488,483,472,475,486,479,462,467,470,463,464,458,455,453,455,567,549,542,567,578,585,582,566,565,501,495,483,499,499,485,489,492,491,537,545,547,550,550,553,554,545,542,518,504,502,505,509,505,506,514,512,535,547,543,545,540,544,547,536,545,557,548,553,552,556,547,543,552,546,533,532,521,531,533,539,540,536,522,501,496,500,495,492,505,499,504,498,581,557,565,575,555,570,556,573,557,498,506,498,501,505,499,504,502,497,534,551,549,536,542,542,554,548,530,523,523,523,525,524,529,522,524,513,533,534,534,537,535,535,535,538,535,514,513,516,523,516,519,519,516,519,557,580,560,547,551,549,545,567,565,499,507,505,498,490,510,506,502,503,524,518,523,515,517,513,520,514,518,560,553,556,558,549,555,544,544,550,517,499,500,501,492,498,499,499,497,490,494,491,491,488,500,492,494,493,515,496,502,512,500,500,510,511,509,532,530,538,526,535,533,538,539,535,563,558,573,564,560,558,564,558,566,540,524,530,531,529,530,527,523,525,553,563,562,554,571,555,558,553,565,538,531,527,529,530,533,521,529,531,540,538,531,533,535,543,540,539,535,508,511,524,518,520,516,511,519,521,549,559,545,557,546,546,539,557,544,533,536,541,541,545,537,539,535,535,516,506,507,514,511,511,505,512,511,577,557,570,558,559,571,561,560,562,558,552,559,566,555,556,553,554,559,501,518,520,514,517,518,529,521,514,503,502,507,501,493,507,502,508,507,481,485,490,479,480,479,487,488,478,460,449,462,448,463,450,451,454,460,450,437,433,428,434,455,438,442,442,545,534,525,532,536,533,532,515,537,539,541,538,543,536,539,538,540,537,490,491,492,487,482,495,497,480,489,581,587,567,563,566,578,572,571,572,508,522,520,513,526,527,516,522,521,553,556,549,556,545,564,566,555,547,501,516,514,508,505,505,503,504,518,524,523,529,525,526,537,527,530,520,541,561,569,564,568,550,558,531,547,469,484,484,483,479,478,467,489,487,535,532,544,548,543,538,550,529,525,544,523,538,544,546,535,543,550,542,495,491,487,482,490,492,475,493,491,581,573,588,580,593,572,589,581,579,548,546,543,540,544,543,547,545,544,537,535,533,534,535,529,530,529,533,525,540,533,524,531,531,534,538,537,568,559,565,568,552,563,549,562,571,520,519,512,516,515,523,515,513,527,491,473,477,478,486,482,481,482,479,446,451,434,447,438,441,441,450,453,523,522,519,525,528,520,519,521,533,517,522,514,524,526,524,521,525,520,547,537,536,544,533,535,548,536,531,560,538,549,543,540,553,540,543,552,530,522,521,528,526,525,515,528,524,547,544,539,542,542,536,546,545,552,536,520,525,526,530,521,522,527,526,548,537,534,534,527,536,541,530,529,517,524,525,520,526,524,526,520,524,567,553,563,557,557,545,560,548,567,549,544,529,540,530,538,534,536,530,538,532,525,531,523,524,527,528,529,511,541,530,535,534,538,531,531,531,441,453,449,453,454,444,447,453,444,535,540,540,541,535,552,535,528,534,570,566,564,574,577,575,566,566,573,562,559,542,547,558,543,554,546,558,528,520,525,514,521,528,513,515,514,498,492,490,492,495,489,485,488,497,469,456,447,453,466,456,457,455,452,483,483,486,494,480,485,488,489,490,530,518,520,524,520,529,529,522,519,597,575,576,594,592,575,582,581,570,493,507,508,502,502,509,505,517,512,517,534,530,535,535,525,538,525,524,520,523,522,517,519,521,521,519,521,542,534,518,525,535,526,527,526,514,544,542,545,539,540,535,537,538,541,520,522,524,522,525,521,519,523,528,553,548,542,548,541,544,553,563,559,514,511,527,521,511,526,526,522,520,501,507,497,504,506,507,503,512,499,479,482,476,480,475,491,487,483,483,460,458,455,464,465,459,461,471,452,471,483,468,470,479,471,470,482,471,598,599,586,569,584,600,582,567,590,546,547,543,545,555,544,543,547,546,571,559,571,561,569,570,556,563,570,530,520,528,520,512,517,526,524,501,485,487,485,481,482,489,478,484,490,466,463,455,466,465,468,472,470,460,560,555,554,557,567,566,555,560,554,554,539,546,551,544,540,546,549,547,504,508,502,503,489,496,475,481,498,509,497,502,492,496,489,508,501,497,523,522,518,512,524,522,518,525,527,515,499,493,504,496,504,498,501,501,566,566,569,579,559,561,564,558,566,499,487,486,500,476,487,485,496,477,552,556,543,553,543,547,531,544,538,565,550,556,537,546,540,551,552,548,525,505,514,500,510,490,509,494,500,478,481,484,479,482,476,484,478,479,489,470,473,475,480,472,477,473,477,519,513,520,507,510,510,507,513,507,573,563,562,553,559,566,562,558,563,513,522,509,521,507,525,532,525,512,477,477,477,480,481,483,478,481,488,483,484,487,481,486,485,479,476,483,561,562,562,569,557,565,564,546,558,490,479,487,502,500,497,497,483,492,514,502,504,504,496,503,503,504,504,513,525,523,523,524,528,537,536,533,562,579,574,578,581,590,585,598,572,535,527,541,542,533,532,532,521,526,494,475,470,484,469,472,477,479,480,543,543,546,542,538,545,539,543,550,547,553,536,547,552,554,556,547,558,468,483,465,466,467,475,476,461,468,512,521,523,514,517,520,516,521,518,530,537,521,535,533,526,535,528,524,558,573,552,550,562,566,555,556,562,517,513,511,518,509,519,519,530,522,591,581,586,581,582,566,576,586,580,529,541,544,542,532,537,543,545,539,555,567,574,571,566,552,550,568,572,504,512,513,509,513,511,502,502,507,515,515,527,517,524,525,517,518,519,539,533,537,556,550,536,520,536,532,480,491,497,503,491,495,507,498,496,571,572,590,589,596,586,576,583,599,546,534,535,525,550,532,536,537,540,527,517,521,516,530,523,523,513,520,545,554,548,541,545,549,547,558,543,545,542,531,544,543,529,545,539,537,587,576,570,564,570,562,575,572,564,506,492,505,510,500,513,505,494,513,499,495,506,500,496,507,501,504,505,529,526,530,517,524,533,531,524,520,583,587,573,570,579,580,585,587,599,550,538,531,541,533,543,529,534,533,525,523,522,519,524,516,523,521,519,553,550,547,540,550,550,544,542,553,524,531,542,535,536,533,534,536,537,558,571,576,567,562,567,570,582,559,525,525,525,519,527,528,524,518,526,522,532,532,528,529,535,528,533,531,582,542,562,545,553,545,563,549,557,515,491,492,493,507,492,495,493,499,560,580,584,565,590,591,570,579,580,520,518,513,501,513,507,508,516,507,554,552,547,558,545,555,557,549,558,569,548,558,550,546,563,553,549,543,489,496,494,497,481,490,485,478,482,568,567,550,554,544,553,551,544,543,550,550,556,544,554,546,543,553,550,520,529,529,528,533,527,525,532,528,554,555,556,549,551,559,554,553,545,501,495,492,498,500,491,487,495,488,472,483,477,481,477,472,490,483,484,561,566,556,558,552,552,561,564,553,524,511,509,510,502,492,509,511,520,478,481,465,467,471,477,480,474,478,499,489,481,489,485,482,488,484,486,527,542,536,535,535,529,530,540,537,560,571,569,557,567,575,559,564,566,518,526,523,526,522,530,522,518,527,505,495,498,507,507,500,497,498,502,442,457,467,459,461,461,467,458,464,470,483,495,481,490,479,481,477,487,594,571,571,567,563,585,566,573,569,531,518,520,541,526,528,504,526,534,485,483,489,484,485,494,488,488,492,443,460,460,461,467,456,457,460,459,528,555,553,557,544,564,548,545,550,507,507,506,517,507,514,510,521,516,533,533,535,539,531,526,528,528,533,530,530,520,530,529,525,531,532,531,564,560,553,561,567,560,562,569,561,519,530,517,521,521,518,534,526,516,509,508,510,505,502,504,511,502,504,500,499,504,495,504,498,500,491,501,482,491,477,479,476,480,477,480,481,443,449,454,446,441,442,463,455,461,547,553,551,548,554,559,562,563,557,564,551,550,550,559,543,547,544,550,510,500,503,510,505,501,514,512,501,495,501,507,506,508,513,506,516,508,538,558,540,537,551,533,546,547,551,494,497,501,501,497,485,492,495,490,491,494,487,492,491,492,488,491,487,500,506,501,504,504,499,502,502,499,535,549,548,537,533,544,545,540,536,556,566,561,574,565,568,566,549,560,525,527,539,529,522,537,536,541,539,526,527,525,520,521,519,518,522,520,568,561,562,560,564,563,562,556,560,530,540,544,550,535,540,537,546,538,483,492,486,494,502,489,485,499,498,480,483,498,501,490,495,489,495,495,564,553,547,547,552,544,550,555,547,531,536,532,535,535,531,541,534,533,523,505,514,514,512,512,503,507,513,546,545,557,546,553,546,552,543,547,546,541,548,554,545,541,547,552,537,504,501,507,503,501,498,503,504,503,508,520,514,517,521,518,519,521,518,581,577,580,566,568,589,587,590,562,528,534,522,525,529,538,533,527,529,555,555,546,556,569,550,549,561,556,505,503,504,507,511,514,508,503,506,553,577,571,562,562,549,578,543,558,499,506,498,492,506,492,494,493,486,498,496,507,497,500,500,505,503,506,560,573,559,576,583,556,586,578,563,507,521,508,528,516,516,506,514,520,496,493,491,493,494,498,489,492,488,488,508,504,505,503,509,507,504,511,516,528,534,526,527,522,523,524,529,478,484,493,505,502,500,482,503,495,604,589,590,591,584,591,603,596,583,510,503,517,501,512,521,518,517,518,556,557,550,541,546,543,545,542,541,559,532,543,536,533,555,555,544,540,502,497,490,499,502,499,498,490,507,567,541,550,549,568,562,561,548,542,501,524,508,512,508,528,522,508,515,483,481,487,490,478,476,488,479,480,474,472,472,470,472,474,479,473,472,503,497,503,498,502,512,514,509,500,558,545,550,552,546,548,556,547,545,511,504,519,506,500,499,499,502,492,467,460,457,466,472,464,469,468,459,457,463,456,457,468,463,461,463,454,535,562,530,561,541,549,548,540,542,526,504,494,518,492,506,516,489,525,430,442,438,443,433,437,443,439,436,451,455,456,446,453,440,448,442,456,551,562,569,552,556,566,572,556,562,575,561,566,570,555,562,567,568,571,523,514,532,512,518,524,517,515,521,488,486,486,494,493,483,483,489,496,502,504,498,504,499,492,491,492,493,501,503,507,504,503,504,510,516,505,543,547,541,530,536,542,538,533,540,570,571,572,561,553,577,573,581,570,550,541,544,550,548,547,549,537,556,510,500,499,498,492,498,495,493,502,489,492,499,493,498,490,495,495,502,531,531,526,522,529,520,529,520,531,586,571,584,579,586,574,571,574,569,551,540,538,536,528,541,543,529,535,580,565,564,552,565,553,564,585,567,505,490,487,502,492,496,497,500,489,532,525,537,528,538,529,543,526,526,541,533,539,536,535,542,533,539,540,546,558,556,555,560,555,550,546,552,466,471,461,478,481,470,466,473,487,526,546,539,534,529,547,538,528,538,564,547,544,554,557,547,545,567,542,484,514,499,493,493,509,497,485,510,472,467,453,472,465,461,464,455,460,470,459,461,461,460,462,464,465,463,472,455,454,470,463,456,456,456,462,567,565,567,568,568,567,573,564,573,474,477,479,489,477,483,493,477,481,551,547,551,541,567,574,549,550,544,556,545,547,545,556,563,550,564,548,503,495,503,508,496,498,507,490,512,519,523,526,514,517,524,519,523,517,559,575,565,560,558,551,569,570,573,482,494,491,500,491,495,488,488,498,478,484,489,482,484,485,476,486,480,586,586,582,558,573,569,575,559,564,517,522,522,530,525,524,520,524,533,527,538,540,535,553,548,533,541,546,486,484,487,492,468,490,484,483,488,465,457,475,470,474,476,475,465,468,572,558,549,539,553,537,555,556,554,513,498,494,493,496,487,512,508,503,489,501,498,496,491,512,507,502,501,542,554,550,551,554,554,549,548,550,507,530,511,509,519,517,513,521,519,493,492,496,496,498,494,499,497,497,449,461,464,457,460,463,453,454,459,484,487,488,479,487,481,486,509,487,587,561,576,577,565,561,543,563,566,499,491,502,500,506,511,501,502,499,515,517,521,510,520,522,514,524,515,566,557,555,565,555,554,566,554,558,508,480,484,478,490,491,479,496,476,454,445,455,451,440,447,452,444,441,547,544,545,537,535,543,541,544,545,547,549,545,547,536,553,547,563,555,473,480,472,475,478,472,475,479,476,528,544,549,540,555,538,544,543,533,525,552,538,531,541,543,531,544,543,484,504,507,508,494,493,498,499,506,594,601,596,596,582,588,585,589,583,545,531,536,530,533,527,530,524,534,570,558,558,544,550,559,559,546,550,500,511,514,509,517,512,515,512,519,545,546,545,544,546,542,544,546,544,546,550,552,547,545,543,550,547,550,537,535,520,529,526,529,521,530,523,478,474,476,480,477,490,482,480,476,533,525,529,533,531,531,528,533,535,552,549,544,556,547,547,545,556,549,558,557,557,552,559,558,558,548,557,491,493,499,495,508,499,493,495,501,501,495,504,493,496,497,494,499,498,541,570,587,559,575,554,590,562,565,526,519,525,519,523,521,515,521,524,498,488,491,489,484,495,488,494,487,483,484,477,486,477,481,471,485,485,480,467,478,472,474,476,467,468,479,455,458,447,443,447,451,441,447,451,549,566,569,555,556,559,550,555,573,563,549,555,547,556,562,548,561,557,517,522,514,514,518,522,512,513,522,485,478,482,487,483,490,483,476,485,504,503,507,504,499,496,505,504,503,553,559,559,562,566,558,561,567,564,527,530,528,537,530,527,532,539,528,473,485,481,477,490,480,486,480,489,542,559,572,550,560,568,560,577,560,556,551,560,558,563,564,563,552,555,503,498,497,489,500,502,503,499,508,507,512,506,497,499,507,500,510,500,509,513,514,513,511,516,509,512,520,552,548,546,546,550,547,535,553,546,554,536,538,544,538,546,544,546,533,487,497,493,495,501,489,495,502,499,541,546,555,546,541,548,562,566,539,530,502,508,500,512,512,507,508,519,467,464,459,459,456,459,463,464,467,452,465,472,470,477,469,467,462,469,564,559,533,530,559,558,549,539,537,469,490,474,479,480,466,485,480,480,516,520,530,536,532,525,534,531,523,521,537,538,528,531,530,534,536,532,564,564,564,564,561,562,567,566,567,545,537,543,540,541,547,539,546,542,531,537,527,531,530,537,523,527,535,505,516,516,514,513,508,511,524,520,495,503,507,514,507,505,510,508,512,531,527,526,532,534,531,530,528,532,513,520,514,520,522,523,523,524,523,516,524,520,520,516,525,520,520,518,547,546,545,540,547,547,545,544,545,565,553,545,547,562,549,554,560,559,493,501,501,498,504,504,496,502,503,468,480,469,468,467,474,467,466,472,561,561,561,558,578,550,553,548,554,497,491,501,496,505,498,498,491,510,531,541,548,555,558,553,551,550,543,462,468,475,463,472,460,471,485,476,458,453,449,442,449,457,455,438,456,528,532,536,543,534,538,523,544,534,556,550,555,553,552,545,545,544,543,563,553,544,552,553,553,553,561,551,513,500,500,506,497,491,495,511,492,485,478,485,492,481,489,489,495,491,538,557,571,565,573,566,574,577,570,527,515,515,511,508,506,520,518,519,529,529,531,530,532,538,535,536,538,559,534,560,549,540,554,536,564,536,474,487,485,479,486,482,482,473,482,515,498,509,508,516,492,503,501,501,540,526,535,550,539,538,529,534,532,483,506,505,498,498,509,507,499,489,558,573,559,534,558,564,563,562,575,489,494,493,495,491,498,493,502,496,547,540,549,550,546,551,539,535,539,508,516,523,521,511,522,518,516,523,543,544,557,546,548,552,534,539,542,532,537,532,543,545,531,536,523,526,545,567,557,558,533,562,574,580,562,515,527,526,518,517,524,523,524,529,550,557,551,554,554,552,556,551,550,541,545,553,553,556,563,552,545,549,567,545,552,547,545,552,553,549,542,508,517,505,510,513,521,500,501,523,478,490,479,485,484,494,493,486,489,492,490,489,493,488,494,496,493,492,511,499,492,498,492,494,489,493,498,501,476,482,476,476,488,481,482,488,510,510,512,501,506,497,507,499,496,559,547,550,552,537,546,552,554,553,546,559,555,557,567,547,569,568,547,535,516,516,514,517,522,512,521,529,479,480,482,486,485,489,477,474,481,454,447,439,441,435,436,432,436,439,454,449,469,461,443,460,453,464,464,607,596,586,581,584,585,606,588,580,545,544,547,549,556,555,548,558,561,480,477,490,490,479,486,489,486,499,447,436,439,449,441,454,461,444,449,552,554,542,532,540,550,536,551,550,545,550,532,544,542,545,524,547,543,491,487,493,480,499,485,493,495,492,547,530,561,549,561,545,566,540,565,492,490,499,481,491,488,498,480,490,534,565,541,554,551,555,566,542,550,509,505,484,502,500,482,492,495,518,471,475,476,482,470,467,479,470,477,551,551,550,546,538,555,547,554,551,488,499,486,499,503,510,506,495,512,476,479,484,461,475,476,479,475,476,538,550,560,546,544,559,546,561,547,513,504,519,507,515,510,512,513,513,527,530,529,520,520,529,516,524,524,596,579,585,595,591,595,578,602,579,554,553,549,551,555,546,559,551,553,538,528,529,530,514,527,533,522,514,508,510,508,513,503,505,510,507,500,497,504,498,498,497,506,492,494,497,500,481,481,485,482,484,482,491,483,501,493,492,501,496,490,501,498,499,536,544,545,542,543,553,547,545,554,505,514,523,518,525,513,519,514,518,606,606,603,601,593,578,583,592,583,537,551,551,546,544,556,550,553,550,484,495,499,496,492,500,499,487,497,507,499,506,515,508,506,512,504,511,544,544,547,535,539,545,548,541,542,526,528,525,521,523,529,520,520,526,531,549,537,538,542,522,523,534,533,499,490,495,492,489,498,502,486,494,535,553,553,560,555,560,568,561,554,507,506,513,517,514,512,515,523,513,481,484,480,481,478,485,484,483,481,456,465,467,463,466,466,467,471,467,453,456,459,464,464,468,460,463,464,544,569,563,570,573,553,576,558,563,494,483,491,489,490,486,482,477,499,573,593,586,589,588,580,582,581,582,516,523,523,516,529,527,529,531,523,503,501,497,491,496,493,498,485,494,588,605,592,589,591,583,604,585,589,513,539,532,533,522,522,532,538,521,470,476,479,480,483,477,492,484,474,566,552,556,557,558,565,566,552,554,550,558,561,554,553,566,558,565,561,522,524,514,517,510,516,524,498,512,478,470,468,475,477,465,473,475,473,460,481,484,473,491,482,477,478,471,573,549,559,565,561,562,560,555,559,527,525,524,524,523,524,514,524,518,503,510,509,508,509,504,513,509,510,484,477,481,478,479,481,476,480,488,509,510,508,509,514,519,511,520,507,559,538,553,542,552,550,542,546,538,506,504,524,513,512,515,512,514,519,591,572,556,574,561,573,580,555,564,525,542,527,526,543,526,524,522,525,512,510,507,511,503,506,511,512,502,474,473,483,476,480,477,479,485,480,491,492,483,485,487,481,485,484,497,548,592,575,593,568,566,576,584,592,486,478,480,480,481,474,485,476,491,518,524,525,515,531,515,524,521,516,526,528,526,517,525,535,519,520,525,541,528,543,545,533,535,535,535,538,540,544,538,555,541,538,545,554,554,521,522,525,523,520,523,519,522,521,542,549,543,537,557,543,539,551,538,500,501,496,499,506,495,502,496,507,534,539,551,545,544,548,544,547,545,553,574,568,558,573,573,565,555,566,511,517,531,519,540,526,521,535,534,490,500,508,507,499,501,505,490,502,580,558,555,549,557,574,554,571,559,490,518,502,509,505,513,507,505,501,545,565,563,570,555,558,556,555,553,502,507,490,497,490,500,505,491,496,440,461,454,461,459,459,448,460,452,468,457,460,461,464,465,459,467,462,556,565,561,564,561,556,561,570,559,548,550,539,551,543,545,545,534,538,498,507,508,502,500,514,509,511,518,583,568,558,549,562,548,573,551,549,496,518,493,504,507,509,501,496,512,485,488,481,486,487,478,480,483,484,449,468,465,464,462,463,471,464,466,438,446,427,439,430,438,445,448,430,514,520,520,522,527,515,517,517,518,516,519,521,522,521,524,525,520,527,541,541,544,542,535,538,540,540,530,536,552,540,561,561,549,549,556,548,489,487,475,491,500,468,482,482,479,520,529,524,526,536,529,531,542,532,521,524,524,533,523,523,524,527,530,532,539,542,546,544,542,546,538,539,549,549,550,554,549,545,548,559,548,505,489,498,508,496,514,499,484,491,494,480,488,488,478,490,486,478,489,566,565,554,568,558,556,566,556,562,490,492,496,480,493,502,505,503,503,522,512,521,513,517,502,511,529,527,547,529,532,539,537,548,548,538,532,493,492,493,506,497,497,488,501,494,583,596,601,593,584,597,586,579,578,548,548,546,545,542,540,550,550,545,512,496,489,490,499,492,492,510,503,477,494,490,485,489,494,493,494,494,522,510,524,529,519,518,520,524,519,581,576,587,579,587,592,569,573,583,551,545,550,542,543,544,551,548,540,537,527,525,526,520,530,524,530,525,496,494,494,496,490,491,494,487,494,584,578,597,592,594,583,599,587,598,559,559,557,552,554,562,551,553,554,553,554,559,560,552,556,555,558,551,524,526,513,511,507,512,516,520,504,472,482,487,481,477,468,478,478,484,501,501,504,497,492,500,485,493,501,552,577,578,564,574,567,571,569,579,529,541,516,516,517,526,516,518,513,479,485,489,495,485,485,492,487,489,463,439,448,446,442,449,442,452,435,534,555,555,551,553,545,535,550,558,554,552,553,549,552,557,555,548,552,478,495,496,504,492,497,492,500,499,455,439,443,442,442,440,432,435,432,467,485,493,488,474,481,484,484,490,578,560,568,561,573,567,556,564,562,547,544,551,559,561,561,552,557,552,514,505,524,512,515,527,529,522,519,485,481,481,483,482,476,476,483,480,515,501,501,505,510,501,503,496,500,534,537,527,534,540,540,533,539,533,568,547,542,555,554,562,568,544,565,490,467,478,499,483,475,476,480,487,536,530,536,532,541,542,541,543,534,557,543,541,543,548,559,544,546,531,484,484,490,495,481,484,486,482,481,593,581,579,577,585,581,589,590,582,534,553,558,545,545,543,546,554,543,525,524,533,532,521,524,528,526,525,515,516,508,511,514,513,513,502,510,581,537,547,551,539,535,549,559,534,504,505,504,506,497,502,512,505,509,547,583,567,575,573,565,556,566,556,510,497,500,498,505,500,501,496,497,580,587,587,585,579,578,579,587,596,545,528,530,539,536,529,534,532,526,470,480,486,481,473,476,475,478,492,535,554,551,553,555,554,556,547,555,545,556,541,546,554,542,544,534,538,465,484,485,482,476,476,474,470,473,505,506,500,498,502,500,513,502,494,540,537,541,537,541,533,540,546,540,510,504,514,493,492,495,505,504,501,592,566,556,560,549,560,556,550,562,518,494,510,501,506,484,501,496,492,582,570,593,579,572,571,571,587,567,542,544,542,552,549,548,549,540,545,537,539,531,537,529,539,534,532,537,531,533,533,530,537,530,531,529,533,542,561,553,565,558,564,554,549,550,492,493,490,501,507,494,498,504,495,502,502,508,500,505,498,503,501,497,509,515,514,517,516,515,514,519,511,524,547,542,537,544,546,534,553,544,542,538,541,545,552,535,547,543,554,519,508,517,506,517,519,512,510,508,543,525,532,522,515,526,525,526,522,482,479,475,477,478,474,480,488,481,531,571,553,569,564,565,556,559,550,489,506,491,487,493,495,492,490,476,574,548,556,557,555,552,561,568,551,523,507,505,499,500,502,520,523,520,461,454,467,456,474,465,463,476,462,465,474,478,476,477,472,478,472,479,460,458,462,464,460,454,466,458,474,448,436,433,443,444,445,443,438,435,530,543,543,542,551,555,550,545,543,563,554,552,557,553,544,559,541,560,490,488,501,496,502,502,495,502,493,489,495,493,486,501,492,493,482,496,606,588,575,558,600,578,590,578,581,488,474,482,478,494,480,483,476,483,536,528,543,526,545,541,544,533,536,530,539,548,545,540,533,546,544,549,495,492,487,492,491,490,490,489,490,590,583,579,574,560,576,573,582,587,533,530,531,536,536,527,530,530,529,578,564,553,562,554,560,567,562,563,522,531,523,518,525,521,517,516,520,527,538,528,537,533,536,537,530,536,562,561,554,553,575,564,546,574,557,486,487,483,478,478,472,487,481,481,545,545,541,543,525,551,543,542,543,539,538,541,554,556,552,538,528,542,493,506,502,497,506,498,504,499,500,570,560,575,568,558,566,554,560,564,506,504,524,521,525,513,509,512,511,485,488,494,484,488,475,484,492,489,499,510,510,513,506,505,512,508,503,547,530,538,547,541,544,543,541,541,523,520,526,526,519,521,523,522,525,551,549,551,549,532,546,544,548,542,523,509,509,508,512,518,512,512,513,558,563,564,549,561,559,561,566,563,557,555,553,555,547,559,548,557,553,488,495,491,504,499,496,491,501,508,505,493,496,494,491,506,506,491,508,584,581,565,579,582,573,558,583,561,519,488,498,488,499,502,504,501,496,478,455,454,475,452,461,458,459,463,584,597,579,585,574,592,584,580,576,529,530,531,528,537,527,546,536,533,529,532,516,514,530,510,523,524,507,606,583,586,572,582,594,573,586,567,534,544,536,541,544,545,537,528,544,524,515,510,523,508,513,519,514,520,502,502,504,500,509,498,503,506,505,540,544,542,537,535,546,546,541,537,555,565,572,564,574,564,571,558,570,513,520,529,519,530,511,521,525,516,597,580,574,600,582,586,577,573,574,543,521,543,532,526,516,538,533,524,587,587,578,592,593,591,584,573,587,569,551,558,547,554,561,550,561,553,532,521,516,519,515,525,522,505,516,500,501,511,505,514,508,505,501,508,499,501,498,504,509,501,515,499,501,483,491,493,494,493,489,488,482,485,482,481,490,485,488,493,484,479,497,486,491,496,495,494,495,502,496,500,504,502,496,502,504,506,507,498,507,493,485,498,493,489,486,490,483,486,478,475,485,482,487,481,481,479,486,467,478,476,478,481,479,475,475,484,454,470,469,476,473,469,462,472,463,568,578,565,564,559,562,557,557,571,477,485,488,491,490,489,488,481,486,564,581,573,580,580,593,586,581,585,504,511,499,507,513,512,502,507,508,555,553,557,558,551,561,559,562,552,571,567,556,559,551,569,559,557,558,521,519,521,523,523,531,520,517,513,500,496,502,500,499,500,506,497,502,468,455,453,446,455,457,462,460,451,440,452,461,445,448,450,457,449,451,533,552,543,542,552,542,540,549,548,539,556,553,533,557,555,547,551,543,507,491,478,486,482,473,501,491,496,603,573,580,594,583,590,588,588,587,568,551,554,555,561,550,539,567,555,512,516,520,523,524,517,529,531,519,509,498,497,499,493,500,503,502,505,497,496,497,498,497,499,486,499,490,463,471,472,469,457,466,461,466,464,463,460,469,467,457,457,469,473,460,543,545,535,540,550,556,542,553,532,495,477,466,463,480,494,477,468,476,496,480,475,481,482,494,480,473,494,572,566,577,554,580,574,568,557,578,507,504,518,507,494,505,494,505,499,508,500,512,515,503,502,498,506,498,506,509,509,515,511,503,512,508,506,541,541,538,542,543,534,534,544,539,567,568,564,579,573,566,571,573,569,524,529,533,529,533,527,533,522,520,521,520,516,527,519,524,515,521,518,561,563,558,559,557,560,550,556,554,522,523,528,532,524,528,516,530,525,494,496,491,499,496,504,500,492,494,592,597,580,594,588,585,599,581,582,549,549,536,535,538,537,536,538,541,545,546,571,576,557,576,575,560,565,499,526,530,510,527,509,512,505,525,477,469,464,473,475,468,475,470,461,459,457,461,450,463,454,465,464,465,550,562,545,549,548,548,555,533,551,491,502,523,533,499,509,517,526,534,471,466,465,466,464,474,465,465,467,448,457,453,461,457,446,456,457,456,479,483,472,490,481,487,485,479,482,538,562,562,570,559,575,569,564,577,483,507,504,499,496,512,508,511,499,551,549,554,562,566,539,546,551,557,502,496,506,513,492,504,497,504,511,471,476,472,482,469,477,477,472,470,543,539,551,549,550,540,560,557,552,522,518,514,507,514,512,511,511,514,480,481,474,484,482,482,481,487,475,443,437,435,434,448,442,450,446,439,450,460,447,453,464,454,449,447,446,555,548,538,548,546,542,553,559,550,549,555,546,563,567,552,556,565,551,515,524,521,518,522,523,530,516,521,544,543,539,541,553,542,549,542,545,542,572,562,564,573,573,574,561,560,515,506,515,517,487,481,494,499,496,473,471,473,469,468,473,462,463,470,576,554,575,557,561,564,565,551,568,512,494,506,506,504,511,509,512,506,561,576,564,556,559,562,556,565,563,498,488,492,495,485,496,488,485,493,501,490,499,505,504,494,502,499,495,561,566,563,576,569,563,564,563,563,498,517,514,509,508,515,511,511,505,546,564,548,541,554,559,554,559,572,522,529,526,531,532,527,530,525,531,542,540,538,535,547,537,532,540,547,515,517,519,516,513,518,507,513,515,510,507,510,509,506,508,510,504,507,529,536,536,526,531,537,525,525,530,534,529,523,521,515,524,520,523,522,541,545,539,537,541,542,538,545,537,536,540,546,553,546,560,554,549,558,501,501,507,506,511,503,508,503,503,583,606,583,579,594,587,584,593,591,545,541,525,535,538,530,535,532,530,516,518,511,519,518,513,523,516,509,559,545,546,550,551,544,536,546,539,529,522,526,530,526,517,513,525,518,565,587,594,581,594,596,599,576,569,531,535,540,523,526,523,524,527,519,578,578,597,577,580,576,577,571,587,530,507,507,526,507,520,526,530,519,556,559,555,554,548,561,545,557,560,559,554,554,551,560,550,556,547,556,505,524,523,518,522,522,521,524,531,505,511,506,505,509,506,509,509,515,493,497,484,485,492,495,494,489,489,483,481,487,489,480,487,484,479,483,462,472,478,478,477,479,469,473,480,470,455,445,460,469,459,462,462,453,539,547,550,548,551,558,554,551,545,574,564,569,574,577,575,566,555,579,523,524,534,523,527,536,533,526,521,555,551,547,546,559,562,563,555,564,509,514,509,508,510,513,510,511,516,576,561,576,564,547,539,573,564,563,529,523,522,520,521,521,518,518,527,543,543,553,547,542,548,542,549,551,535,534,533,527,542,539,545,538,546,570,573,572,575,562,560,572,562,578,521,509,508,505,501,498,498,493,501,453,451,461,453,449,453,451,455,451,546,546,543,532,544,541,540,536,537,545,548,540,537,551,544,544,536,547,495,487,486,486,492,480,496,487,488,553,559,551,540,551,542,528,547,544,506,509,502,508,495,505,504,511,508,562,560,572,542,554,549,559,557,552,503,505,504,511,518,510,510,503,515,471,457,457,453,463,462,460,452,452,446,466,460,461,457,458,453,453,453,550,541,556,560,557,550,554,553,551,546,548,543,555,551,546,544,548,555,486,482,482,490,491,488,495,484,491,582,570,582,570,594,592,575,572,582,543,545,549,555,546,550,549,548,547,538,548,545,546,552,539,537,543,548,514,512,508,526,509,507,515,510,522,495,483,483,481,473,474,486,479,483,470,453,453,457,460,468,464,466,460,504,488,485,496,494,492,483,497,494,558,577,553,575,569,557,559,577,573,532,517,520,520,530,521,515,513,514,477,486,480,481,477,472,477,472,470,439,433,443,431,429,441,425,433,443,477,477,472,485,484,484,484,475,485,561,566,566,567,565,566,562,568,568,541,550,556,559,557,550,554,547,546,480,487,504,493,502,487,491,486,491,497,471,471,481,473,490,475,483,478,567,596,609,605,586,595,596,596,595,523,527,514,509,504,505,517,508,518,520,523,539,540,527,535,528,534,529,543,537,533,540,533,538,542,535,538,541,543,535,535,551,549,528,540,544,517,515,513,513,512,512,512,511,521,571,573,570,562,571,568,568,568,572,525,517,524,515,526,521,527,507,514,490,492,496,492,497,490,492,488,493,448,453,451,467,473,454,465,470,465,432,451,456,453,436,454,446,451,449,499,505,506,502,509,502,508,506,503,566,557,571,573,562,567,554,568,569,550,542,551,551,546,538,538,542,543,500,510,495,500,504,511,491,493,500,515,516,507,519,504,506,519,506,507,558,555,555,560,550,561,553,556,568,498,512,515,512,512,525,520,513,517,489,482,476,485,484,479,481,478,480,463,475,467,469,477,474,469,475,463,562,565,558,553,553,561,539,547,555,481,492,491,502,504,508,507,504,502,486,479,478,475,473,480,486,477,484,455,455,450,441,457,458,450,441,454,490,481,486,474,475,475,475,470,468,546,562,570,557,571,565,570,575,563,515,507,483,508,481,507,511,509,488,447,457,445,441,444,457,450,432,421,505,517,521,519,506,507,520,512,504,527,531,533,538,527,527,535,529,529,569,570,565,563,570,573,581,567,574,563,546,544,552,549,552,554,550,551,494,491,491,480,494,493,486,492,488,497,499,497,496,495,492,500,503,499,583,575,571,568,567,569,562,575,580,539,525,518,534,519,532,529,528,515,513,505,513,511,504,507,505,505,508,477,481,480,474,484,476,469,487,479,489,489,492,487,482,486,488,478,486,574,577,585,584,567,575,579,578,602,501,472,476,464,470,466,490,461,474,549,527,540,525,533,528,524,535,530,576,559,560,564,549,567,574,562,556,506,501,504,502,496,504,508,501,503,542,543,535,539,536,537,538,538,544,577,569,571,574,567,578,574,575,561,561,535,544,544,540,535,537,545,548,485,500,499,508,505,490,486,510,517,469,472,472,463,470,465,464,468,456,459,457,454,463,457,463,448,458,458,549,559,564,561,573,554,560,562,542,483,474,472,485,480,477,467,473,464,516,526,527,533,524,520,525,514,514,524,522,518,518,524,522,520,519,517,543,546,541,546,532,547,538,545,536,556,539,553,555,556,562,550,556,551,509,529,515,519,510,510,521,519,519,491,493,496,494,490,487,492,494,484,485,485,484,481,483,482,489,483,489,498,494,497,499,502,507,505,497,503,486,492,481,491,482,492,484,494,486,487,480,487,478,487,492,477,489,484,501,500,499,497,501,500,503,500,502,492,488,491,488,481,486,485,496,483,481,480,481,474,484,491,476,479,480,474,483,476,482,477,481,474,477,481,485,490,483,485,478,488,480,487,492,565,561,559,560,556,554,557,563,552,525,523,516,518,513,515,523,509,513,507,493,501,491,502,497,498,502,489,455,456,457,460,460,459,453,452,460,479,484,502,494,492,492,495,482,482,575,570,570,582,574,549,556,576,556,500,489,502,502,508,500,506,499,505,497,504,516,511,510,501,513,507,506,572,560,569,562,565,560,557,564,561,533,530,541,532,528,529,527,525,528,476,483,473,481,476,467,482,479,479,557,541,549,554,556,546,556,551,554,565,551,544,547,549,549,546,554,541,515,495,500,509,509,503,518,508,512,550,552,551,555,565,554,565,560,556,513,524,530,529,527,520,521,520,525,537,534,525,542,529,526,539,534,530,490,500,509,502,504,495,501,506,504,523,527,525,540,528,532,527,530,533,554,551,547,561,569,557,558,557,541,514,507,509,500,512,505,500,512,507,549,564,565,555,548,555,551,553,561,499,492,496,497,498,496,503,492,491,513,513,520,517,515,532,522,518,511,556,561,549,552,544,547,549,549,548,492,500,495,497,497,496,497,501,501,513,500,500,498,495,505,502,507,510,522,533,537,538,534,528,527,534,526,511,496,498,497,506,494,488,475,496,598,593,575,584,592,577,597,599,584,567,550,540,550,557,558,556,537,547,500,505,487,507,518,499,508,504,509,462,463,457,468,452,464,467,458,458,470,457,464,459,461,462,464,458,463,539,544,551,535,553,533,547,550,535,487,498,499,496,498,499,505,511,500,472,483,480,487,479,481,482,483,478,503,498,496,499,499,504,501,504,501,479,492,496,481,487,485,503,490,490,472,484,482,492,476,493,485,484,485,478,486,480,478,473,465,477,473,482,488,509,517,513,511,517,509,525,513,540,548,563,552,561,560,554,558,559,538,504,513,516,521,516,527,521,513,497,491,489,482,499,482,488,486,482,478,489,484,485,490,482,484,482,483,463,481,479,476,475,481,481,478,477,502,499,504,496,499,500,494,491,501,537,535,537,531,538,533,537,536,540,570,561,561,547,555,572,561,562,555,504,515,493,510,505,506,508,514,507,551,557,560,549,551,538,549,548,553,514,493,495,506,496,490,503,495,491,502,485,488,495,499,491,501,489,494,519,533,540,535,527,536,537,532,540,560,555,547,559,550,548,550,545,540,480,494,492,482,503,491,492,494,509,487,497,494,499,493,490,502,497,495,532,530,526,529,530,533,538,530,528,511,505,508,513,510,511,513,511,515,505,509,510,510,506,508,506,499,506,521,526,537,537,530,532,536,532,523,527,546,544,528,538,542,523,546,539,561,540,542,555,543,542,541,545,544,519,523,504,513,501,500,496,496,490,497,489,479,489,484,487,491,491,488,465,477,467,476,474,478,473,475,480,494,478,484,486,484,478,488,482,483,461,445,444,445,453,445,447,459,450,463,466,479,477,466,464,472,463,480,567,597,599,593,588,596,574,577,578,512,533,530,531,533,526,522,531,530,572,580,583,586,585,582,578,590,583,547,538,536,537,542,537,524,539,529,496,508,511,493,506,501,511,504,514,566,577,550,552,541,557,555,550,548,510,513,515,521,519,504,507,514,501,554,559,557,562,557,570,555,563,559,536,525,526,531,521,528,521,530,526,559,562,562,556,563,558,557,564,555,534,543,538,544,543,532,539,541,539,474,488,486,490,485,490,504,497,499,484,468,463,482,472,480,466,475,475,502,511,501,498,493,510,509,499,502,536,549,540,539,532,536,548,552,543,498,495,507,497,488,496,505,497,489,482,486,488,494,495,488,490,488,486,499,509,506,497,500,502,502,506,500,532,533,526,536,539,533,544,540,534,565,560,566,564,563,561,556,560,565,515,508,502,506,501,501,503,500,497,545,537,526,535,533,532,533,542,531,562,563,575,570,565,562,559,574,559,550,547,548,552,554,547,542,553,551,548,549,555,553,549,556,552,556,553,520,526,507,517,515,539,510,507,530,477,481,479,473,474,479,481,482,483,456,456,464,463,459,456,468,450,454,540,547,532,536,537,543,546,536,540,555,546,544,554,543,542,553,553,545,559,568,552,556,553,560,558,547,564,508,525,519,513,502,510,511,515,515,483,490,487,492,494,483,488,488,492,495,493,495,497,502,502,502,501,503,562,557,545,566,558,560,558,557,555,515,533,529,527,525,528,521,527,524,498,501,504,505,502,496,500,498,506,546,548,563,552,575,550,556,571,552,497,487,492,499,488,491,506,485,493,585,569,556,565,560,561,563,550,550,487,477,481,471,489,494,469,472,475,540,542,541,541,542,539,540,536,537,538,549,543,541,545,551,547,557,548,526,524,529,524,534,532,523,524,526,532,526,535,524,538,539,526,533,544,510,519,512,514,514,514,521,509,514,575,561,552,567,555,543,537,559,547,504,501,518,508,495,518,506,510,500,498,501,507,498,497,496,507,503,498,562,560,571,565,566,573,564,561,563,541,550,556,547,541,545,554,544,552,507,510,516,517,517,523,515,506,533,477,472,477,476,477,485,480,485,474,453,470,474,472,472,472,462,469,463,568,549,563,565,558,564,541,550,565,497,496,493,499,490,497,502,486,485,496,510,488,495,490,501,490,502,510,526,529,533,530,520,527,527,518,526,478,466,469,477,479,475,480,470,486,550,548,544,543,545,546,546,532,547,553,550,551,540,552,543,552,547,552,495,504,511,504,516,511,511,522,500,554,565,558,555,556,555,550,558,551,494,494,498,495,504,486,500,501,492,521,517,519,525,520,511,512,523,523,559,566,560,562,569,567,565,567,573,514,524,514,515,520,511,513,508,535,498,500,507,504,505,509,501,505,503,465,482,478,486,488,480,485,484,482,466,467,472,471,471,469,471,468,472,428,434,430,434,438,423,430,434,439,518,528,516,527,517,521,522,532,513,527,529,524,540,524,535,532,527,528,583,563,568,568,563,567,579,564,570,529,533,527,527,523,526,532,532,525,483,474,471,473,462,477,474,474,480,528,527,524,529,524,531,532,534,524,544,543,545,547,548,552,542,555,553,553,556,549,547,546,565,560,544,553,519,521,507,528,510,519,494,510,505,463,460,458,456,456,446,453,452,449,446,477,477,473,481,458,456,461,462,581,593,581,588,597,597,585,583,576,529,523,524,510,517,544,504,553,530,447,468,465,453,454,461,454,478,468,556,562,561,553,570,565,551,553,554,556,567,549,554,559,556,558,565,554,514,519,514,512,521,519,504,521,516,484,494,497,479,484,491,484,490,486,465,461,463,463,461,463,473,469,463,578,550,569,561,548,549,560,562,551,492,504,502,493,482,486,486,482,504,547,563,576,568,554,557,547,552,564,452,484,456,468,469,486,481,477,484,547,536,540,543,537,541,534,546,551,532,554,540,535,546,551,545,541,544,485,498,482,474,476,462,476,481,473,484,488,482,475,477,473,494,475,470,599,560,590,573,570,573,567,563,573,529,525,522,514,524,519,522,510,516,486,476,482,486,484,478,488,489,483,471,481,474,467,488,472,480,474,471,549,541,557,560,546,562,560,542,556,486,472,484,474,475,478,489,480,475,504,495,487,494,496,501,497,495,496,552,550,539,546,534,539,530,549,530,498,496,495,501,509,499,503,506,508,551,538,535,541,537,541,548,546,535,575,560,549,559,554,568,544,556,555,534,528,530,526,531,530,530,531,536,552,554,544,551,547,553,548,554,549,482,486,495,490,486,490,484,481,486,452,456,450,438,443,453,446,436,449,547,547,544,540,546,557,554,546,549,539,541,547,548,560,542,544,557,553,475,476,459,466,475,476,465,474,465,517,530,515,520,526,524,521,524,525,525,507,516,522,527,520,520,514,517,532,533,536,536,534,530,528,537,538,535,552,541,537,551,540,542,548,553,522,516,512,524,519,515,519,516,521,533,528,527,541,531,527,533,532,529,556,552,558,563,552,560,557,558,557,492,502,493,489,477,489,505,510,506,469,472,466,458,456,461,454,466,467,572,557,534,552,550,553,545,541,534,499,500,504,511,511,488,499,504,504,546,566,561,562,568,550,567,559,560,538,520,513,523,520,513,518,522,528,515,509,512,510,516,514,518,513,512,502,497,499,502,500,495,499,498,498,489,480,486,488,484,486,480,479,482,484,472,477,489,478,489,474,480,480,576,572,560,565,568,569,564,577,563,523,516,527,516,523,518,519,520,528,508,510,509,504,508,507,503,506,505,486,472,481,472,480,475,472,473,481,464,476,480,486,472,486,486,480,474,600,596,602,590,598,588,584,587,597,545,536,529,538,532,544,543,543,541,550,569,564,546,556,554,569,562,565,508,514,510,509,520,505,510,515,503,506,509,508,502,503,499,503,503,503,540,532,529,529,527,540,530,529,538,524,518,522,517,522,518,519,514,523,548,550,565,567,547,556,557,557,557,532,527,537,528,532,526,536,534,529,522,506,529,517,516,514,523,528,516,569,562,564,573,564,562,560,575,552,497,506,492,503,496,493,501,506,495,492,486,478,478,475,483,486,478,482,615,586,582,603,592,597,595,603,596,547,541,545,556,546,553,560,553,548,479,502,505,493,494,494,494,505,492,491,504,507,497,506,506,511,503,513,556,557,565,553,563,557,556,563,547,545,543,535,534,535,535,530,536,536,529,527,524,532,524,525,525,527,527,540,534,542,532,533,544,537,545,543,516,526,518,513,520,522,525,519,519,548,548,550,552,555,550,544,551,556,549,531,533,532,538,538,538,533,535,535,527,522,522,509,526,518,522,526,581,591,585,581,577,582,580,584,579,513,525,503,516,519,505,512,519,519,543,542,550,538,553,544,544,550,553,542,529,555,546,546,540,526,541,552,500,498,507,486,503,487,492,490,501,549,554,556,560,549,564,553,571,544,481,487,481,475,476,496,488,487,481,532,541,545,543,542,531,531,537,541,525,528,531,527,524,528,527,524,529,545,544,548,538,540,541,531,541,543,557,563,551,557,554,552,560,550,554,505,484,505,487,505,488,492,504,497,490,502,498,500,485,499,483,499,496,590,564,554,549,569,562,566,567,556,532,521,523,519,518,521,520,515,527,543,548,554,551,546,548,550,551,548,536,537,531,535,539,539,536,535,529,514,515,510,509,511,514,526,509,515,542,563,557,554,549,552,555,557,557,537,533,552,533,555,547,539,552,550,517,515,512,515,514,524,511,512,509,545,562,576,564,577,570,563,559,572,483,496,480,491,471,496,491,482,487,537,526,534,543,536,527,535,539,532,533,538,541,542,539,544,544,551,535,542,542,542,560,545,546,539,543,548,512,526,518,520,515,525,519,523,522,534,536,541,528,543,545,535,535,532,502,509,506,499,497,506,501,502,503,537,543,528,530,527,536,532,533,533,560,556,552,568,546,549,551,549,563,508,499,506,508,494,503,514,498,502,546,549,538,526,542,553,564,554,533,507,503,518,512,508,508,511,507,512,566,559,576,572,568,568,561,565,583,497,495,501,510,485,505,505,499,504,444,455,444,447,453,452,455,443,444,567,569,545,548,550,550,547,555,554,549,543,537,541,545,543,555,543,554,504,515,512,498,484,523,516,500,506,481,483,472,476,485,479,482,484,486,469,483,478,473,466,472,480,472,480,508,499,494,503,504,498,501,507,504,544,544,549,542,540,539,541,543,548,567,571,560,564,559,553,566,567,563,495,517,509,500,518,509,524,510,512,574,553,568,555,565,561,555,562,555,521,499,509,485,506,504,499,509,507,485,484,478,490,485,485,482,484,487,498,507,508,496,499,502,500,496,499,531,534,525,527,530,532,535,527,529,548,536,536,540,539,545,545,532,542,559,548,538,545,556,552,554,556,551,502,504,495,496,490,499,488,488,499,447,440,454,449,445,443,433,443,441,513,519,517,521,518,519,519,521,522,527,523,520,521,539,519,529,529,516,573,567,549,569,572,568,565,573,573,538,544,541,539,549,546,539,539,545,523,536,531,533,538,530,527,534,534,529,528,521,530,531,527,526,525,525,542,539,537,546,536,539,542,546,536,535,531,530,529,532,532,526,528,532,549,557,558,554,548,557,561,560,545,513,513,490,503,499,490,500,492,499,463,451,452,449,454,461,464,458,462,515,490,501,500,499,504,495,500,510,552,550,561,553,545,550,543,546,551,509,496,502,495,493,504,499,503,495,467,463,467,459,462,468,469,459,468,498,506,485,498,515,500,498,497,496,518,536,526,529,525,533,530,526,518,495,473,479,468,472,478,480,478,482,564,561,564,569,568,567,559,555,558,557,570,567,568,559,578,563,564,557,495,496,495,503,494,490,498,501,500,467,465,465,457,475,462,457,468,469,542,526,537,529,548,525,530,541,534,542,547,538,531,534,538,539,532,540,527,549,540,538,547,533,542,537,537,503,519,511,509,507,509,515,514,503,531,521,536,532,526,537,523,522,527,471,470,475,482,468,474,472,475,487,546,564,578,561,578,547,561,566,565,471,491,454,477,468,472,470,480,484,527,520,527,513,523,508,522,514,522,525,527,536,526,530,527,520,529,529,572,554,570,567,565,564,557,568,575,498,507,502,504,500,515,505,497,497,550,541,540,539,538,535,534,539,541,563,571,567,566,559,574,570,563,557,531,525,519,518,522,529,531,521,510,554,554,553,553,568,558,567,558,542,526,522,522,528,520,521,530,519,531,531,521,530,531,526,523,533,532,523,507,497,491,494,504,493,499,501,511,545,552,589,552,562,555,565,545,564,472,490,503,492,489,490,500,482,488,527,556,555,536,563,535,552,547,537,511,527,520,527,518,526,519,516,524,556,544,561,556,548,556,554,550,547,495,506,508,514,513,519,515,509,518,476,485,484,487,486,488,485,490,491,509,504,503,515,507,507,507,509,504,548,526,529,537,529,520,533,530,527,456,484,468,466,470,488,478,471,476,537,527,525,515,514,528,525,532,526,538,535,532,532,530,531,533,535,532,555,561,556,554,565,564,568,568,563,522,524,528,514,512,514,524,526,507,561,571,566,577,573,579,572,574,576,554,536,526,548,532,534,516,532,527,522,522,511,515,519,518,518,515,516,548,561,561,569,556,562,558,569,559,515,523,506,517,516,507,528,510,512,480,477,482,477,478,477,476,477,474,460,456,455,455,453,454,458,466,455,531,545,553,550,555,545,537,540,554,587,578,571,580,577,559,579,564,562,555,550,550,552,554,543,544,557,558,554,545,553,553,558,544,548,558,550,529,521,514,523,528,528,511,526,526,508,508,515,503,505,506,510,507,511,490,482,495,487,486,494,487,484,485,486,485,485,485,483,484,481,483,482,479,481,480,473,477,475,479,477,469,510,513,507,523,507,510,502,511,511,542,557,554,555,548,557,558,552,567,495,495,481,491,498,503,484,488,476,432,442,441,448,438,433,444,442,437,527,530,536,528,530,532,534,526,535,550,564,565,563,567,562,564,562,563,553,547,546,553,554,553,553,552,555,553,548,551,547,551,545,549,556,548,531,530,511,529,520,510,513,528,516,506,506,508,506,491,504,502,505,506,480,483,477,489,486,483,481,475,482,452,461,458,455,465,453,455,465,463,449,449,462,467,442,443,459,463,451,539,520,530,533,538,536,525,537,531,531,535,534,528,535,536,526,532,533,567,565,563,568,570,561,565,562,567,514,500,502,514,512,499,513,502,500,531,545,532,548,537,531,537,539,533,540,545,548,539,533,544,541,553,542,513,500,512,497,507,498,505,507,507,509,492,495,494,496,500,498,500,497,534,532,531,530,533,538,537,542,534,553,564,567,563,554,567,573,566,561,505,523,511,520,520,518,526,528,517,575,584,583,579,588,584,586,597,588,537,529,535,518,542,530,541,540,531,460,484,487,490,479,478,491,485,477,561,545,546,558,557,554,546,559,560,575,569,567,569,552,557,567,564,554,512,516,508,508,525,515,517,506,518,498,488,484,486,485,489,492,489,486,477,481,485,483,480,483,482,485,487,465,466,449,453,453,458,452,439,458,480,474,489,497,481,486,493,505,480,585,576,579,567,563,563,568,570,567,509,503,497,509,508,504,504,492,518,495,509,513,502,498,493,501,498,500,551,572,580,585,560,576,569,563,571,513,516,520,508,514,514,515,523,517,463,468,456,465,457,456,455,457,459,477,480,474,483,471,471,477,478,468,563,559,577,559,548,551,576,558,561,505,504,492,524,485,489,497,488,499,473,479,483,464,471,478,468,467,463,559,543,548,547,546,553,538,542,549,508,510,517,517,536,512,509,517,525,484,478,490,485,490,482,485,484,486,453,458,458,461,460,459,461,466,465,488,480,479,482,479,483,482,489,485,551,569,562,558,559,575,547,560,578,513,512,504,514,509,514,507,503,513,571,573,577,553,556,555,551,546,553,525,525,531,518,525,527,513,512,529,523,513,517,509,507,515,513,511,508,501,503,502,501,503,501,501,501,505,496,495,495,496,491,488,499,503,493,474,471,474,469,477,480,472,474,467,479,497,500,494,496,496,495,486,500,536,526,535,535,537,526,529,531,534,515,510,510,516,510,516,508,519,513,508,511,507,509,504,510,503,509,504,530,521,536,526,526,538,522,530,527,519,519,522,517,521,525,521,525,522,533,535,536,532,534,530,531,538,537,547,538,548,546,552,543,547,541,550,525,520,521,516,522,526,522,531,520,547,537,542,528,532,536,545,541,537,520,517,524,524,519,516,514,513,518,505,513,503,506,503,512,507,503,503,532,532,528,529,531,519,527,528,534,528,510,515,523,523,523,528,523,523,527,518,514,519,517,526,522,517,524,547,550,546,536,542,540,546,536,550,556,562,559,557,562,570,558,561,553,518,508,522,506,521,519,517,513,509,492,497,492,494,497,490,493,491,490,504,504,504,509,497,501,504,511,510,543,541,543,531,539,536,539,532,535,521,520,512,515,505,516,513,515,522,545,525,528,524,534,529,530,536,534,565,553,552,545,565,546,547,547,559,502,498,491,500,499,474,500,497,488,597,578,570,580,595,595,569,589,582,511,499,498,511,520,499,506,499,496,530,531,519,528,522,537,523,527,531,528,526,533,532,529,532,528,531,529,531,538,544,547,541,543,536,544,537,521,517,513,514,510,509,519,505,510,541,547,535,546,539,533,542,538,535,502,524,512,516,520,519,515,523,512,592,594,571,580,585,593,586,587,571,551,550,541,535,543,532,540,541,534,502,526,522,523,516,517,523,518,519,584,593,573,603,570,579,598,589,587,530,537,530,538,530,535,536,532,530,549,562,554,550,560,552,552,562,572,537,531,535,531,532,535,530,537,523,547,556,545,543,550,551,554,546,552,502,490,483,484,489,479,483,476,483,470,465,464,461,459,471,467,453,470,555,551,582,559,559,548,571,569,577,514,511,512,507,506,498,506,509,496,546,549,535,556,558,538,545,544,551,493,504,488,496,488,493,495,499,491,502,506,505,512,510,510,504,515,510,563,569,566,562,557,566,564,565,562,534,525,527,529,532,536,524,531,538,481,477,475,481,470,475,479,484,477,533,536,535,524,539,535,534,524,528,557,557,545,553,553,557,553,553,547,552,565,560,560,554,558,564,550,556,524,510,509,522,514,520,517,526,521,481,489,479,488,493,482,482,492,477,517,504,502,512,499,494,501,495,502,538,551,554,554,554,553,564,551,549,546,546,548,538,544,537,541,542,538,532,531,535,537,531,533,527,536,536,572,554,555,552,543,555,563,554,550,468,472,476,472,481,473,471,479,482,482,494,479,495,483,492,486,493,490,560,554,547,548,546,556,557,561,551,539,552,550,542,546,548,553,549,547,527,548,540,533,532,538,545,537,539,518,512,505,497,504,500,501,504,502,465,464,462,463,459,458,469,460,461,489,465,468,476,471,467,464,473,473,537,548,555,553,563,563,554,548,560,522,514,511,513,509,521,503,514,512,484,487,488,483,492,485,495,495,488,464,458,480,460,467,472,460,478,465,541,573,562,564,570,556,565,560,561,469,492,510,497,484,503,479,495,514,440,442,455,440,444,445,433,439,456,550,546,544,538,544,532,557,540,538,553,543,550,550,540,542,531,541,539,521,521,518,517,516,511,505,508,519,589,584,558,550,587,568,557,571,565,513,529,524,512,519,521,519,521,523,591,560,570,580,555,575,574,579,587,502,489,500,499,493,506,504,503,513,452,471,474,472,476,469,465,469,473,556,550,555,557,553,561,562,559,549,552,539,554,541,550,547,546,553,548,489,495,480,485,474,486,488,496,485,572,568,586,591,562,573,576,574,568,523,520,525,531,537,531,517,521,519,550,560,560,562,567,558,558,567,553,490,491,480,474,474,484,476,478,484,537,544,543,544,543,550,556,549,542,549,548,544,537,545,544,537,532,526,494,476,493,495,508,495,493,510,475,492,491,494,487,506,492,502,498,494,535,522,536,534,527,523,526,523,525,515,503,513,517,513,510,502,517,515,510,505,506,504,500,508,505,498,512,534,531,533,530,529,520,526,528,533,517,522,512,523,524,512,513,518,507,530,526,527,537,530,525,533,531,534,559,570,569,569,563,561,562,556,562,510,521,521,531,519,511,534,524,524,575,591,598,587,596,594,590,594,594,554,548,552,557,559,557,549,560,549,512,534,523,508,530,522,517,515,516,511,498,496,502,493,502,498,497,499,486,483,487,488,482,488,482,490,486,489,493,495,489,489,492,494,491,488,512,502,507,498,507,501,508,513,510,507,522,524,514,526,522,517,526,520,533,531,524,531,535,531,524,542,528,565,565,561,564,569,565,558,560,563,533,541,519,522,517,522,523,531,516,491,495,504,502,496,503,499,507,501,552,545,539,546,547,536,546,537,542,545,552,554,558,552,548,551,556,557,495,511,512,512,514,516,510,509,510,506,499,511,504,498,508,504,511,514,534,525,537,537,540,542,535,541,533,474,473,474,475,470,461,479,468,473,509,522,528,518,523,528,530,520,520,535,531,537,534,540,538,538,528,536,579,570,579,574,565,572,578,571,570,543,540,535,536,542,553,543,546,537,479,478,485,483,484,499,496,499,493,492,470,490,478,476,478,492,477,476,558,552,555,551,568,547,547,564,566,491,497,502,489,501,471,501,503,494,450,464,462,464,466,464,459,465,469,531,548,540,551,532,544,547,558,551,525,518,514,516,507,522,510,508,514,553,539,547,548,543,551,549,550,551,527,523,534,532,525,527,522,526,530,526,517,518,522,524,524,520,524,527,557,551,559,562,553,555,563,565,558,542,533,545,540,563,551,545,543,543,501,499,491,485,501,499,491,492,486,491,493,491,492,497,496,491,498,503,540,544,544,542,545,546,541,550,542,515,498,498,510,509,503,505,504,501,549,529,530,533,531,539,540,526,535,525,523,522,531,526,525,523,520,523,516,526,525,524,523,525,517,526,520,547,541,529,542,543,545,532,552,545,550,557,555,550,553,551,560,552,549,505,489,496,501,518,497,504,503,504,482,482,486,487,486,488,492,483,485,563,559,550,554,562,550,558,541,535,513,519,517,526,515,506,516,510,510,478,468,470,473,477,470,471,475,474,471,472,480,482,471,472,473,473,473,550,555,535,551,556,546,516,542,526,507,504,511,508,507,515,509,515,511,563,578,571,577,564,575,559,584,590,495,502,489,508,500,501,503,501,503,514,508,517,506,519,506,508,503,500,563,565,567,563,559,552,553,552,560,533,539,543,534,540,539,541,536,535,538,532,524,535,533,530,534,534,533,530,543,546,543,547,542,556,544,545,493,507,505,499,498,502,501,505,494,506,507,502,509,506,515,505,500,505,546,552,556,552,534,546,553,556,552,485,483,476,477,494,486,478,477,494,439,455,450,450,452,454,444,443,439,551,566,552,567,557,559,553,551,556,565,554,550,563,557,564,562,551,562,536,530,519,525,520,524,528,524,528,507,511,503,509,504,503,500,499,508,477,481,483,485,476,473,487,480,482,514,500,510,514,510,507,514,497,510,534,545,542,543,543,540,530,544,537,519,515,521,517,521,522,518,522,512,555,550,548,550,553,553,549,551,549,530,530,531,529,541,532,536,534,539,521,517,520,523,520,521,531,517,518,583,580,588,592,587,587,579,583,581,498,518,499,512,503,514,504,514,504,556,545,553,553,552,558,544,552,552,552,551,548,551,555,545,542,548,554,503,500,495,502,496,505,497,509,487,469,462,457,460,471,444,447,457,462,501,518,518,519,515,511,511,516,514,563,565,564,558,566,555,559,553,562,489,496,493,495,514,502,508,494,499,515,516,511,518,507,521,512,494,510,555,540,538,535,546,537,542,539,553,489,491,492,506,490,483,501,493,498,581,588,582,583,586,586,578,582,588,524,537,537,540,534,540,552,540,542,511,511,514,518,517,520,518,509,518,563,552,554,559,547,560,550,546,546,534,552,556,545,550,543,546,556,545,543,540,543,538,535,536,536,540,532,525,520,523,520,521,522,519,516,524,544,542,539,540,538,536,544,547,545,541,548,567,566,572,554,577,562,548,503,517,517,519,513,520,517,518,519,575,542,585,563,574,568,559,539,548,518,519,516,518,517,526,521,523,518,560,571,567,561,554,581,579,546,553,509,520,498,511,514,522,509,511,507,564,573,563,560,576,561,565,562,551,487,525,531,520,518,494,517,518,516,452,470,465,463,470,463,462,463,455,452,467,459,470,455,463,464,460,463,512,505,503,504,499,496,506,504,505,529,526,529,523,536,536,528,537,534,493,495,494,492,493,495,495,502,485,581,609,598,571,595,604,593,591,584,516,501,508,519,517,509,515,498,516,514,523,522,519,522,530,525,525,523,533,526,532,531,530,524,529,531,529,577,558,570,559,564,568,565,572,562,502,511,502,510,510,505,520,501,504,529,530,526,531,528,532,532,531,525,546,543,536,536,544,536,545,545,549,558,564,545,551,560,572,553,549,553,525,527,527,539,533,519,522,523,511,516,509,510,513,512,514,509,516,506,491,497,495,496,494,496,494,490,493,484,491,495,496,482,482,487,490,482,492,493,491,484,498,492,498,493,496,489,481,481,482,481,486,483,482,478,485,466,473,469,467,471,472,470,473,542,543,568,552,552,552,553,564,553,477,476,481,474,474,478,472,463,474,461,463,461,475,479,472,461,478,478,560,555,566,578,568,563,580,583,556,494,498,501,520,487,493,496,515,490,574,593,586,580,583,582,590,594,587,549,540,544,544,556,549,552,550,546,492,494,509,484,492,481,491,495,493,474,491,483,486,488,490,483,487,483,587,560,556,562,570,596,566,570,586,504,496,489,503,510,489,501,491,504,598,583,577,572,581,567,582,577,582,544,523,529,529,529,538,534,533,533,509,511,508,520,517,520,516,511,524,548,549,550,554,541,546,538,552,547,572,568,559,569,564,552,572,555,561,504,501,503,505,501,511,506,496,514,522,512,521,519,522,517,527,522,525,561,556,567,556,568,563,565,573,562,531,523,523,519,516,529,529,507,523,504,500,500,510,496,498,507,502,498,478,485,480,482,478,485,479,479,493,465,474,474,457,464,474,471,466,464,480,468,461,463,473,473,463,469,468,554,543,566,571,558,568,545,550,564,499,508,507,497,491,496,499,499,492,501,501,503,502,496,502,507,497,497,536,540,541,542,551,542,548,544,544,494,513,506,508,504,519,511,512,519,480,485,478,487,488,479,487,485,479,461,462,459,457,458,452,451,456,448,461,469,474,482,479,473,476,478,467,580,593,598,588,586,600,592,598,594,540,529,538,536,538,536,537,540,535,545,560,557,553,558,556,572,559,558,499,507,501,521,505,523,496,513,511,441,432,445,446,437,446,450,443,438,471,468,479,460,474,468,465,470,474,573,567,569,561,551,567,549,571,580,513,496,497,505,512,506,509,505,512,483,470,488,481,475,478,478,480,479,489,493,497,496,492,491,484,493,492,462,457,458,453,465,466,465,453,453,458,457,469,457,455,451,458,452,458,535,547,550,550,543,544,543,556,544,543,544,541,544,546,542,537,540,544,509,503,505,516,508,515,515,520,510,539,550,559,558,548,554,553,564,553,526,532,526,531,526,530,520,534,526,480,482,484,469,486,468,480,483,487,553,550,549,559,547,567,559,557,565,564,566,568,563,575,565,562,560,573,501,490,496,498,499,495,490,495,497,496,490,488,484,487,496,495,490,494,583,578,577,573,566,559,576,569,564,501,503,494,500,498,501,505,508,484,592,582,594,567,581,583,581,597,585,542,541,545,544,548,543,543,550,551,498,483,492,503,497,498,507,497,487,478,480,487,489,494,498,498,500,492,572,579,555,545,573,556,559,583,559,522,515,519,513,514,524,516,517,513,552,554,583,566,575,588,588,565,583,520,523,517,525,528,522,524,518,533,507,509,498,508,502,502,500,500,502,477,483,484,483,480,485,485,483,483,466,488,483,479,477,489,482,489,484,551,558,559,561,559,558,562,574,561,500,498,494,496,490,499,505,493,492,521,509,509,530,523,524,524,521,511,572,568,566,566,560,575,567,571,564,506,505,516,517,504,507,510,518,528,472,480,474,485,483,478,481,483,485,444,449,438,440,457,450,446,441,444,529,517,523,511,530,515,530,530,530,516,517,521,520,504,515,506,512,512,532,523,529,528,533,526,532,535,535,563,561,569,574,560,557,576,575,578,536,523,535,537,521,535,525,524,525,560,566,555,555,554,554,551,571,540,515,502,493,502,503,502,506,504,513,547,559,542,560,556,544,553,550,549,492,498,513,524,513,510,505,500,500,486,482,491,491,482,487,488,492,490,470,488,482,481,482,475,479,491,488,471,474,458,461,468,469,460,457,462,456,455,449,450,450,454,452,451,453,487,501,489,499,498,494,502,498,498,507,514,516,518,520,514,507,515,513,551,553,555,563,555,560,551,555,557,539,544,561,557,552,554,560,553,550,503,484,502,503,485,497,499,484,502,439,446,443,445,440,440,448,443,450,531,523,520,530,533,516,524,521,519,527,530,531,534,533,528,528,523,534,570,562,567,568,558,568,542,561,557,502,502,499,493,505,499,502,504,504,541,525,523,536,539,539,540,525,538,568,578,561,558,570,574,567,569,567,559,546,558,549,548,545,546,551,548,546,546,537,549,550,546,548,542,543,531,515,517,509,518,521,504,500,516,489,481,484,478,481,471,477,469,485,464,469,470,472,469,466,467,463,476,423,445,442,451,442,447,436,447,442,556,552,541,548,541,537,545,544,544,549,548,554,551,552,537,546,541,560,488,472,471,478,488,474,480,474,480,544,534,544,541,541,536,531,539,548,540,533,546,542,554,552,550,547,544,511,511,502,504,502,501,491,504,511,553,556,547,571,548,542,548,563,566,502,485,505,491,502,488,484,487,495,494,500,501,503,507,511,513,501,509,513,512,504,506,510,507,503,505,499,550,532,532,540,542,548,539,542,535,573,563,572,565,558,557,567,573,567,504,493,506,492,488,501,501,503,509,537,540,538,540,540,544,539,545,541,567,583,577,555,565,569,569,574,573,533,546,547,542,549,540,538,548,547,499,505,507,498,491,504,488,499,506,515,508,513,526,510,517,510,512,507,561,539,547,549,542,548,539,541,537,532,531,534,538,525,529,535,535,531,560,551,567,567,559,563,565,563,567,541,515,515,506,510,526,521,525,523,497,487,488,482,483,480,487,484,489,498,487,492,487,486,482,493,488,501,507,499,505,507,504,507,508,505,514,515,524,523,528,532,529,520,523,525,535,536,549,528,537,547,538,542,545,550,547,547,543,542,552,541,534,541,494,475,471,467,480,473,475,475,473,451,448,449,449,441,455,445,453,439,542,533,531,540,533,528,540,531,534,518,522,521,516,519,513,525,512,513,528,528,527,522,531,525,530,524,528,558,567,565,567,558,559,563,562,562,504,513,507,507,513,507,513,504,516,551,548,548,554,543,543,554,545,554,555,543,539,547,536,551,558,545,546,503,484,503,505,505,502,504,507,491,616,597,602,587,589,595,590,586,590,522,544,538,532,533,532,537,541,529,505,494,496,491,498,492,494,490,504,599,595,592,591,585,600,582,592,596,519,510,513,505,513,504,516,510,514,548,547,538,555,546,545,540,542,549,556,539,546,547,549,554,550,539,555,466,467,473,472,468,468,481,464,475,522,513,518,514,519,521,510,512,523,512,519,515,513,519,512,514,522,520,528,527,529,521,521,528,524,526,527,558,561,574,560,573,559,550,560,561,517,519,525,528,516,529,520,533,522,575,580,590,585,588,592,573,579,576,538,539,544,526,529,523,531,529,538,537,553,563,575,567,568,537,554,568,469,483,478,461,464,457,473,476,474,546,530,527,533,541,536,528,534,537,572,570,571,581,571,569,570,572,560,539,546,538,543,549,542,541,547,542,491,498,499,497,489,487,499,492,505,497,496,497,505,511,502,506,503,501,557,536,536,544,549,546,544,547,549,557,553,555,553,555,564,555,561,558,528,527,514,495,493,510,502,500,507,487,482,482,470,481,477,477,478,477,497,489,496,494,486,487,489,493,499,476,466,463,458,461,461,473,467,460,430,440,437,440,437,431,441,434,431,519,523,520,524,514,520,518,526,529,530,538,534,532,532,536,536,538,535,547,542,554,549,550,549,546,548,551,512,519,517,509,521,517,520,531,518,517,507,506,504,510,512,501,516,505,539,530,522,524,522,528,521,529,531,542,529,537,532,534,538,527,532,527,570,576,569,565,575,558,566,567,567,549,541,538,544,536,535,545,545,529,482,481,504,482,479,486,482,487,489,452,455,444,457,458,449,451,441,456,548,553,542,548,546,558,553,558,556,553,543,542,554,534,540,541,545,533,515,524,519,512,509,515,514,517,510,575,567,593,569,588,563,561,578,569,503,532,533,532,516,539,520,533,536,485,485,486,482,478,486,484,484,475,493,484,491,490,483,485,492,490,485,567,559,562,577,561,556,570,571,568,499,505,512,509,519,499,487,497,503,490,488,485,482,490,484,495,483,485,499,505,505,504,504,504,497,501,502,557,557,556,560,556,550,555,555,549,553,564,556,546,551,543,553,553,556,496,504,504,504,495,496,497,497,501,505,505,507,513,503,502,499,497,501,508,504,505,508,508,507,504,504,508,552,537,542,538,540,536,530,539,538,575,573,561,567,574,577,558,558,558,518,529,530,525,539,529,547,536,530,526,514,521,515,514,516,519,520,522,578,594,596,591,592,591,577,597,588,504,505,507,509,504,510,507,513,513,530,521,533,529,528,539,541,532,520,539,537,537,545,543,536,542,542,538,556,550,551,545,558,558,552,541,556,502,526,520,516,510,524,519,519,522,495,489,498,487,496,493,495,485,492,461,462,476,468,471,464,464,470,473,436,447,443,440,454,460,451,444,451,473,472,473,466,475,473,476,481,475,602,596,582,590,587,587,588,589,593,534,531,519,527,527,518,523,539,521,567,592,591,577,597,587,582,576,585,528,547,535,546,551,547,539,542,540,508,495,497,496,504,503,494,478,500,509,507,502,510,507,500,500,502,505,522,540,557,538,547,546,546,545,541,467,473,459,456,467,455,462,465,470,450,470,457,469,478,476,472,466,468,603,585,607,595,590,604,588,598,591,510,509,504,518,513,509,519,514,503,521,523,529,525,527,532,529,534,522,522,523,518,515,515,519,522,525,523,534,540,531,532,521,534,534,537,534,555,540,549,545,537,536,542,555,538,457,464,463,448,466,471,463,466,470,531,538,535,522,532,527,545,534,528,567,564,571,571,572,567,556,569,574,539,553,541,540,543,547,554,541,546,489,482,508,498,494,502,495,501,488,504,494,502,495,493,502,500,505,496,518,511,514,512,513,508,509,510,519,547,532,545,533,545,542,538,544,546,551,541,537,545,548,540,544,551,536,503,507,506,505,504,506,508,508,513,507,500,503,502,498,505,500,504,496,526,532,525,532,527,526,519,530,524,513,513,516,514,514,522,518,511,512,536,526,529,521,535,538,530,522,537,564,562,564,566,560,567,568,565,558,519,533,523,530,525,542,533,537,537,507,514,509,510,507,511,515,510,512,522,527,529,526,528,528,524,521,509,587,577,575,578,586,574,578,580,595,510,508,502,506,509,510,508,516,503,545,538,537,537,544,549,542,534,528,575,565,559,572,558,569,558,568,569,530,531,521,531,530,548,526,527,518,474,461,479,468,477,461,472,486,472,522,529,523,526,528,519,524,519,523,531,526,523,526,537,533,537,536,533,560,554,570,561,575,562,547,568,563,552,548,535,550,555,552,550,553,551,553,553,551,556,550,556,560,553,551,535,533,519,531,531,519,535,529,529,494,511,508,514,509,508,509,502,505,491,501,503,514,509,498,510,499,518,492,497,501,491,498,502,496,499,498,484,484,488,489,489,491,482,491,491,488,489,489,490,495,493,487,492,483,506,503,511,507,504,508,514,509,509,555,560,559,556,548,559,548,546,545,542,551,552,543,539,531,549,535,543,507,516,505,518,501,504,514,516,511,477,484,480,476,478,471,483,484,483,479,478,474,478,478,480,475,473,475,509,527,514,515,522,511,512,510,514,565,569,555,551,558,574,569,557,563,525,513,502,500,512,502,514,505,518,484,475,478,476,483,472,482,481,478,444,438,438,447,443,448,431,444,444,539,528,531,522,539,518,519,523,530,522,539,534,534,527,530,539,543,526,528,537,549,540,538,545,550,558,542,491,483,487,492,485,484,493,497,492,577,582,582,580,594,577,571,574,574,512,531,520,544,541,526,531,524,529,496,512,516,512,507,513,512,514,514,559,538,554,569,577,561,545,561,561,505,518,521,522,512,521,520,518,520,480,490,489,493,478,488,494,484,483,479,485,478,489,488,486,486,486,479,443,445,453,460,458,446,451,458,457,455,457,455,467,445,454,458,456,447,535,534,537,532,523,529,526,528,532,520,524,525,520,518,525,516,522,527,521,528,526,519,526,522,520,526,524,547,540,534,534,544,534,537,540,540,540,549,540,549,561,539,544,555,543,496,511,513,496,507,505,508,516,503,578,606,577,590,597,601,588,608,597,555,562,564,561,557,564,566,553,549,517,527,520,511,519,513,522,507,517,512,503,497,506,498,502,503,508,507,490,488,485,494,493,496,493,491,498,452,458,459,465,458,452,470,459,456,495,499,507,505,502,500,500,504,501,560,547,543,544,541,549,541,556,542,500,497,491,505,489,488,493,503,500,495,502,495,491,492,498,498,494,490,545,545,534,543,543,544,543,538,552,579,565,567,567,568,564,565,562,565,515,509,535,519,524,524,510,513,524,491,493,491,486,483,487,490,494,486,461,488,483,473,478,485,482,482,472,552,552,546,567,564,563,565,553,568,516,508,512,504,504,503,493,498,507,460,469,465,449,473,453,456,465,473,501,493,513,497,505,513,492,502,497,532,536,541,540,534,531,534,528,539,495,477,484,478,484,477,479,462,471,522,528,537,537,526,534,534,528,532,542,538,541,536,543,540,541,540,535,542,542,544,539,536,546,556,538,549,492,492,499,481,482,492,485,493,478,556,547,543,554,553,530,560,548,540,506,518,521,515,521,521,513,517,521,549,540,555,552,537,548,542,545,539,504,487,499,490,503,494,499,491,494,457,464,462,467,460,461,461,462,469,522,513,502,512,521,507,505,515,517,550,556,545,553,556,555,564,542,561,500,494,502,497,491,492,482,488,488,471,480,477,473,475,477,471,477,480,570,560,559,548,527,545,553,565,548,511,483,500,492,512,501,507,497,492,607,587,606,591,598,590,601,588,584,551,529,537,535,527,541,533,538,535,567,559,556,556,556,558,565,562,559,530,532,536,529,525,530,526,537,533,547,537,540,539,537,540,540,535,537,529,531,532,529,533,527,534,527,533,565,568,564,567,572,550,572,562,558,517,519,521,514,512,504,496,518,516,479,484,482,478,487,483,476,493,479,513,496,496,492,502,492,498,500,497,542,517,524,527,514,528,518,524,521,589,587,590,587,584,587,576,579,573,521,514,510,520,515,520,513,520,520,562,554,564,557,553,553,560,553,555,548,562,560,555,559,553,567,553,557,529,522,519,527,532,520,530,517,519,505,517,506,516,509,510,502,515,507,498,500,507,501,496,503,495,498,501,485,485,475,487,493,485,483,480,481,463,475,457,460,456,452,459,469,463,477,488,483,488,483,487,484,485,474,562,579,589,558,565,573,572,580,565,500,509,493,500,507,500,506,509,503,569,543,567,527,538,556,531,558,543,499,507,507,505,505,510,519,502,507,572,572,568,561,553,557,570,557,573,509,522,505,507,521,519,521,510,519,487,491,484,485,483,483,476,492,487,460,457,450,447,444,458,456,442,453,451,440,445,446,437,462,456,458,447,556,581,576,584,588,575,579,581,574,553,536,543,543,541,549,548,546,542,506,501,499,503,491,494,500,495,495,516,494,506,501,500,502,494,503,511,533,530,534,527,529,536,536,542,539,516,520,519,524,518,519,523,516,523,554,564,568,564,566,567,566,559,559,560,555,551,557,552,560,561,550,557,521,535,519,524,521,526,525,509,533,507,507,515,511,507,512,507,508,510,507,502,503,505,502,498,503,511,504,482,486,484,491,474,485,483,477,481,473,495,497,499,492,502,491,487,487,561,568,562,556,546,567,573,559,567,527,530,525,519,524,526,524,531,528,564,562,552,556,568,560,559,560,554,549,545,557,539,543,549,547,542,545,486,491,508,508,500,491,496,500,499,483,490,498,495,492,489,500,488,493,539,537,543,541,543,540,537,530,542,570,547,550,562,550,561,529,554,541,478,473,480,480,481,491,485,489,488,492,481,476,491,484,486,477,478,482,567,574,580,565,594,570,572,597,580,498,501,504,497,508,498,495,501,509,506,495,501,504,502,499,503,506,503,574,563,564,570,575,570,564,565,581,494,500,488,494,521,506,502,505,510,500,496,483,486,490,492,493,486,498,570,577,569,565,566,554,572,570,563,527,488,486,505,490,501,491,486,498,465,459,458,444,457,449,455,465,443,558,549,542,535,549,539,536,535,539,528,515,523,522,522,522,525,514,526,550,558,552,545,549,565,550,555,548,512,508,525,507,511,521,512,516,514,492,475,483,478,484,486,487,487,479,485,484,473,477,487,473,478,479,480,557,563,565,556,544,562,558,555,579,525,521,515,515,527,509,515,521,518,488,487,484,485,487,487,481,491,486,446,459,472,469,472,468,475,458,462,502,491,494,509,501,490,493,497,496,502,503,503,508,506,510,499,512,511,539,541,549,546,548,538,539,551,548,555,569,563,569,562,571,563,566,557,515,541,530,529,533,532,501,541,515,476,470,463,465,459,475,456,472,481,534,559,558,557,555,546,567,547,550,510,516,516,502,503,512,499,508,504,530,529,527,534,531,536,537,534,530,552,565,559,555,551,542,553,555,556,466,482,486,475,464,470,483,470,487,436,454,454,444,468,452,455,452,461,568,562,555,565,562,561,558,565,559,569,559,571,567,558,557,573,570,571,521,515,519,526,517,525,537,524,542,508,508,510,516,503,510,507,503,505,478,477,484,484,485,482,473,483,487,461,451,469,461,449,453,467,461,450,544,537,538,540,532,530,546,542,543,524,518,522,523,519,522,523,520,532,532,536,523,535,531,535,526,530,532,571,569,572,572,565,569,562,564,574,541,533,526,535,530,519,519,528,534,507,512,520,518,503,504,512,510,511,568,566,571,571,575,569,556,575,563,511,513,526,515,521,516,505,512,524,492,494,492,489,498,493,497,492,491,497,502,493,510,496,508,503,504,507,538,539,535,535,539,535,540,535,535,522,505,515,507,505,506,508,509,515,523,528,521,525,528,527,526,518,520,581,592,587,578,586,574,583,584,575,518,518,518,522,512,525,527,514,513,557,555,558,556,557,551,559,563,557,557,561,552,548,560,564,566,555,555,520,521,522,506,511,532,524,526,524,510,504,509,502,502,517,506,505,514,483,498,486,487,489,492,490,487,494,486,478,482,472,480,481,482,484,479,465,476,474,480,474,475,476,475,478,448,449,445,442,452,454,443,458,444,554,547,561,553,550,545,555,554,554,550,554,558,555,559,546,556,550,563,478,500,495,495,487,509,496,512,495,444,453,462,456,459,449,451,450,454,489,482,480,468,475,481,481,480,483,565,569,562,586,578,567,561,563,557,481,500,498,491,488,477,491,498,491,586,569,577,584,570,573,575,573,578,520,501,506,503,507,509,500,494,497,554,538,551,543,544,543,536,545,549,562,553,571,566,556,568,564,559,554,525,529,531,526,533,532,525,531,534,523,521,522,522,516,521,524,520,516,549,547,542,547,543,551,548,552,553,502,502,503,502,512,503,500,496,496,529,535,536,535,535,531,541,536,535,537,532,529,532,533,535,534,533,533,545,547,554,547,543,541,549,551,547,483,468,491,476,464,478,465,483,473,561,549,549,555,550,549,573,561,545,556,560,552,539,549,556,563,557,552,495,502,488,485,503,515,494,502,498,519,510,517,527,511,514,516,524,519,520,540,536,541,544,537,543,535,538,472,477,476,473,476,466,485,477,483,519,528,528,521,537,526,531,537,520,545,545,549,549,540,540,541,539,532,561,559,546,544,555,544,555,544,546,483,505,515,504,506,507,494,514,513,459,466,463,460,466,464,455,457,463,476,482,481,482,491,489,486,488,490,537,556,559,549,557,553,543,553,549,541,527,532,516,531,522,529,524,517,473,475,474,472,479,478,486,480,480,504,505,516,505,505,503,504,494,517,553,558,567,559,549,552,553,553,565,495,499,503,494,499,505,496,499,499,510,508,513,506,520,508,509,513,522,541,547,536,528,541,543,535,541,540,519,502,504,504,503,495,514,510,497,552,562,548,563,549,558,560,553,548,513,504,499,506,503,504,499,488,511,483,479,480,483,482,481,483,468,481,496,495,494,488,495,484,498,492,495,463,457,463,468,456,458,468,466,466,500,513,500,507,500,503,501,492,513,538,552,557,553,550,551,550,557,547,487,494,495,483,490,472,492,482,471,466,468,470,468,469,465,471,466,469,571,567,573,556,566,568,577,568,567,476,478,473,460,456,476,480,474,455,529,523,520,530,535,521,530,529,533,540,548,543,547,539,547,538,543,546,551,555,551,554,552,550,551,551,547,501,496,503,506,506,509,515,508,507,503,507,513,507,511,511,517,512,508,567,554,570,561,567,558,557,555,560,519,516,518,527,530,503,523,505,502,493,494,500,489,499,496,493,500,499,456,464,459,462,466,463,450,444,460,453,457,456,463,451,463,462,452,456,549,548,557,547,553,552,550,550,549,527,550,540,541,549,560,550,544,548,485,490,501,490,496,489,471,497,488,552,558,565,550,542,556,556,541,538,473,497,474,487,488,487,478,498,500,574,572,580,586,585,579,577,571,579,541,543,539,542,544,536,538,539,536,516,533,521,530,531,521,525,531,521,491,493,500,499,510,509,503,502,507,499,516,511,505,505,512,505,513,512,565,556,551,552,565,549,548,556,548,576,565,557,563,566,554,555,567,561,524,528,520,523,528,537,523,523,516,510,503,507,508,504,505,514,505,511,474,480,483,486,489,481,487,485,490,508,507,509,509,511,509,510,511,501,540,542,546,540,550,542,542,543,543,524,534,526,532,533,535,532,533,534,557,543,556,550,557,553,558,554,557,502,506,514,500,500,492,508,488,489,500,505,503,511,501,496,499,509,496,558,538,544,535,535,541,544,533,544,553,560,554,560,552,563,554,546,551,515,524,528,527,523,524,524,525,528,559,559,551,558,543,544,565,554,555,542,526,529,530,531,527,532,530,529,520,522,523,525,525,519,522,519,523,559,552,558,549,553,548,552,546,560,543,553,538,557,556,551,544,550,549,533,531,542,527,541,542,533,538,538,513,519,516,512,520,519,522,515,514,507,511,508,509,515,507,506,506,506,541,525,528,532,533,534,538,534,535,537,553,548,541,540,544,533,547,545,551,554,559,549,551,555,567,550,561,527,524,522,521,521,529,525,516,517,489,481,487,485,487,485,477,480,480,461,466,468,477,466,458,469,465,463,565,557,568,562,564,545,562,548,552,482,480,489,493,487,497,483,491,497,440,452,445,442,465,462,456,459,461,575,581,580,565,580,569,583,583,565,547,544,545,548,544,540,545,541,549,528,524,535,528,521,525,521,527,523,475,485,483,488,492,484,484,483,472,561,554,557,560,552,558,558,555,560,565,557,562,552,562,569,561,555,555,503,507,495,501,505,507,503,511,492,485,491,488,487,474,486,480,480,483,552,543,549,555,559,541,554,561,548,500,494,505,499,497,501,498,490,510,500,487,493,489,494,499,498,495,497,543,537,538,545,537,535,537,540,545,548,548,556,542,561,554,557,566,547,513,518,511,518,518,503,507,521,517,569,554,567,563,572,566,578,577,571,507,510,513,512,509,514,511,509,523,541,573,564,566,567,560,581,561,566,490,500,488,496,494,500,494,501,493,483,483,483,484,484,482,486,491,496,602,588,596,593,590,588,595,603,579,542,540,532,527,519,522,533,536,520,492,495,504,502,494,496,478,496,492,587,588,593,603,599,600,598,600,582,539,553,564,560,563,558,557,552,546,483,505,491,498,497,496,499,505,506,444,452,454,455,453,453,450,452,456,428,448,447,438,446,457,450,454,439,534,544,551,544,546,554,545,541,545,556,583,580,574,576,569,575,564,569,543,553,543,551,544,544,543,551,554,488,488,507,490,497,495,500,511,494,492,503,494,494,496,504,497,496,504,515,516,511,515,509,512,510,509,514,540,544,549,542,541,538,541,540,547,551,554,538,555,545,541,548,528,535,516,524,511,516,522,517,513,518,514,526,528,529,515,527,525,525,531,528,510,504,500,508,497,495,500,499,503,529,562,540,568,558,544,542,544,548,501,506,500,502,509,501,504,506,510,512,492,499,497,497,497,496,502,505,537,519,537,529,540,523,528,529,527,469,477,475,479,489,489,484,479,475,538,542,543,546,549,545,546,552,547,560,558,561,550,545,560,542,548,554,478,476,480,486,488,477,462,471,482,552,548,553,539,547,532,553,544,550,554,556,557,549,555,546,558,549,552,492,507,493,497,495,499,502,494,495,490,477,482,483,477,484,483,479,478,559,558,543,554,564,553,548,563,552,483,505,503,487,493,491,494,498,505,487,497,496,501,497,491,495,506,498,550,551,540,554,550,557,545,534,550,494,515,515,517,498,505,515,506,505,562,552,562,563,548,556,551,557,558,550,550,553,558,553,551,546,554,539,489,480,491,494,485,487,485,494,486,542,537,544,539,533,531,540,531,541,558,551,550,546,546,543,553,563,553,564,556,573,557,552,554,563,568,560,512,519,528,520,519,514,519,519,524,499,491,492,499,497,493,495,500,504,471,464,470,461,474,471,472,480,473,490,479,481,484,481,482,483,483,483,510,510,508,512,519,526,504,501,505,566,570,574,584,581,588,576,570,579,544,543,539,539,546,541,540,532,540,525,520,512,527,519,531,521,516,516,539,570,558,559,544,562,561,557,556,528,523,526,525,525,523,522,523,521,555,547,551,546,549,543,553,547,552,494,502,487,491,499,493,499,503,498,503,509,516,509,509,509,503,514,510,545,539,539,544,547,549,542,549,539,519,518,525,521,520,519,518,518,515,544,546,545,556,547,555,547,551,546,525,513,526,523,506,518,522,519,532,595,582,601,587,588,598,588,595,600,548,538,539,538,536,532,535,537,546,513,512,514,508,519,522,521,510,512,574,591,597,578,577,582,585,592,571,544,543,548,543,549,544,552,555,550,536,523,538,534,521,525,531,525,529,498,501,490,493,489,494,504,509,498,559,575,579,578,553,566,560,576,578,482,479,482,474,478,483,487,481,481,520,528,527,524,532,522,518,522,522,552,550,548,542,543,552,542,538,543,552,549,561,564,563,565,559,548,544,528,525,521,519,519,527,509,518,515,509,504,500,499,498,501,501,498,507,472,470,472,462,465,475,459,465,459,486,476,478,493,465,479,481,473,481,566,552,547,550,558,547,549,552,550,509,511,520,520,514,524,522,515,525,482,491,484,491,485,487,492,492,490,515,510,510,517,498,509,510,504,507,539,550,531,545,539,550,546,542,542,502,473,480,460,482,476,494,495,465,545,551,554,548,548,549,555,541,551,559,554,546,552,550,546,547,548,554,503,496,487,503,497,504,489,509,498,480,486,479,495,483,489,481,482,490,523,525,521,519,522,525,520,517,513,558,551,544,538,545,546,547,549,531,520,520,525,521,517,517,516,528,521,530,525,540,524,529,533,525,532,517,483,481,476,483,471,477,476,479,478,565,546,552,554,548,569,552,552,566,561,544,559,553,563,562,556,563,554,503,495,502,495,503,502,496,516,510,529,523,521,517,519,520,524,520,519,564,559,577,557,572,549,565,563,550,477,498,493,503,498,503,501,500,500,508,502,503,500,500,505,498,499,514,567,562,555,563,570,551,555,563,558,538,539,533,543,536,537,538,533,535,506,517,523,522,514,521,515,509,520,530,525,537,536,529,536,542,524,536,546,560,561,559,560,571,586,543,547,471,490,468,478,478,489,475,477,466,548,547,549,548,542,548,539,548,541,558,558,546,551,548,553,549,559,549,490,497,494,503,493,497,488,499,491,438,448,427,451,439,446,446,431,444,513,512,516,514,517,510,518,517,522,520,514,525,527,530,522,530,528,520,539,539,525,541,535,535,538,540,537,541,543,537,544,544,538,540,548,545,520,519,522,525,521,517,524,515,519,545,543,543,543,540,543,544,541,546,505,503,503,503,495,503,509,503,495,533,540,537,531,526,535,533,543,536,525,517,532,522,518,520,526,533,521,522,523,517,520,523,524,525,523,519,540,539,545,546,546,539,545,546,550,539,547,543,549,551,562,557,559,554,509,494,503,508,508,503,503,505,501,498,488,493,494,485,491,485,486,498,504,501,497,509,497,506,505,506,507,540,540,530,533,540,536,529,539,536,561,563,567,568,567,574,571,563,558,507,501,497,489,502,500,504,504,505,525,535,534,532,536,541,535,530,532,558,548,573,562,563,568,568,566,566,554,536,541,542,543,540,544,543,540,528,530,532,538,532,536,534,528,534,537,536,530,537,532,528,536,528,529,564,561,570,544,566,556,553,562,555,497,504,499,498,496,500,490,503,502,482,481,481,489,488,487,487,481,487,570,552,576,567,587,577,578,563,568,507,500,486,497,501,497,489,499,494,573,582,570,595,577,586,566,576,566,518,523,518,534,525,531,520,511,520,543,539,559,551,545,558,546,551,557,516,521,525,520,523,518,515,521,519,527,519,538,527,523,520,538,522,527,481,478,474,485,478,480,470,473,491,518,538,529,538,524,531,529,536,537,522,526,525,512,517,527,529,525,519,520,522,521,516,521,524,525,519,518,535,541,547,546,545,549,542,547,542,561,543,559,550,570,545,562,557,556,498,489,496,505,504,495,497,495,505,482,487,489,493,493,496,492,496,496,557,559,548,561,564,581,568,557,579,501,510,514,494,515,505,505,510,508,560,549,545,541,553,540,549,525,527,503,504,494,510,509,499,504,514,504,553,556,567,556,554,562,551,556,551,526,530,532,530,528,527,525,527,524,534,536,536,546,539,543,528,529,527,475,490,480,481,471,477,485,483,478,552,544,550,546,554,535,544,540,549,542,551,550,554,553,548,549,551,563,485,492,495,490,489,485,493,507,476,591,575,587,581,584,587,585,584,588,529,534,545,541,549,552,557,549,544,487,489,496,496,493,495,493,483,488,480,484,474,486,477,485,474,491,485,557,561,565,560,541,563,572,574,562,522,515,508,506,505,523,518,518,504,488,492,482,482,486,484,483,480,485,432,446,439,451,445,450,447,441,441,528,522,518,523,532,523,523,525,532,518,518,521,514,524,522,521,519,523,543,542,537,545,539,541,548,540,544,553,564,560,560,556,560,562,557,555,517,516,507,515,532,520,528,504,519,489,496,482,483,482,479,483,487,486,499,498,487,498,502,498,502,486,497,537,577,556,563,565,569,564,569,553,511,502,504,489,506,497,500,506,497,512,514,513,509,511,508,504,518,511,562,555,565,568,549,558,553,568,562,533,531,539,531,531,538,535,535,541,526,522,518,513,518,516,520,516,523,553,544,548,542,544,554,550,549,540,594,582,567,577,561,574,556,584,562,540,526,519,531,530,526,531,529,532,509,505,511,505,504,505,507,513,500,471,475,478,483,482,477,488,475,480,505,511,502,497,502,500,500,505,505,543,549,550,543,547,543,542,543,535,573,560,571,553,563,546,555,561,553,502,486,493,478,496,509,494,502,486,542,543,545,551,540,558,544,556,537,558,568,578,586,575,583,571,578,561,530,527,541,527,535,540,530,531,538,507,510,513,504,520,516,517,511,518,504,505,509,512,506,500,501,501,499,543,539,547,545,543,543,541,539,543,571,571,573,560,560,560,563,563,568,550,554,551,549,541,548,545,543,548,492,502,492,489,496,489,502,489,492,506,513,502,492,511,501,485,495,504,563,571,572,580,568,558,556,586,571,484,502,490,502,496,498,473,493,503,459,456,469,454,461,465,458,459,473,573,593,592,593,597,585,579,578,577,525,541,536,537,536,524,526,530,524,548,568,563,563,556,551,568,554,562,496,511,492,500,503,496,507,501,504,459,460,454,460,465,459,458,457,453,516,517,507,519,511,526,516,514,518,555,558,554,564,558,545,550,563,558,498,496,500,491,504,498,502,490,495,507,497,498,503,499,498,498,506,504,530,536,536,545,539,539,540,543,538,558,567,558,556,555,561,562,562,559,477,507,499,482,494,495,494,484,491,468,457,456,457,458,470,465,462,466,562,557,538,553,566,552,562,551,556,506,506,516,499,503,493,504,518,510,557,556,564,559,564,565,549,556,553,530,509,510,515,515,524,507,502,512,483,485,488,489,483,487,490,494,478,438,430,440,443,440,442,440,443,437,530,526,532,526,530,524,532,535,533,556,565,560,578,563,576,562,564,565,544,552,554,542,548,539,552,545,551,523,525,535,522,524,524,529,523,535,492,491,499,503,493,497,492,491,488,607,577,589,592,579,588,597,595,575,534,527,515,530,539,528,526,522,528,582,577,590,598,582,571,587,572,590,539,540,522,543,540,543,552,541,540,550,568,562,567,571,561,574,564,579,509,501,508,488,511,508,491,498,508,463,466,466,469,472,458,469,467,471,561,564,555,565,559,556,558,567,571,566,551,561,549,555,555,550,563,551,483,510,501,505,503,501,490,498,494,473,480,481,482,480,488,483,485,485,462,451,465,454,462,459,457,458,460,448,443,455,437,438,449,441,435,440,541,543,533,542,546,535,554,534,546,546,550,551,549,556,553,557,548,552,486,486,504,508,514,495,499,494,509,459,451,462,458,451,455,465,455,451,494,514,505,503,505,502,499,499,508,545,540,541,542,543,557,545,543,553,540,525,519,523,516,521,523,520,528,590,588,592,591,592,601,600,591,592,553,555,550,560,553,551,554,552,553,503,493,502,503,498,497,496,497,497,531,510,521,515,526,513,529,511,520,565,548,561,559,553,568,568,556,561,492,499,484,496,495,488,490,498,483,470,464,468,457,466,470,458,469,455,550,550,550,557,547,563,555,550,557,560,554,545,548,547,554,542,556,549,457,470,492,461,465,473,469,478,471,536,523,515,525,522,531,520,514,517,546,539,541,538,545,545,541,537,531,544,543,553,540,540,547,546,550,546,496,509,496,501,491,508,494,489,499,466,457,451,464,463,453,456,453,453,491,484,501,503,479,495,494,490,505,563,569,564,562,571,563,565,563,571,515,498,499,511,523,503,505,504,497,477,482,483,475,479,489,482,486,477,562,557,559,560,553,555,567,562,568,492,489,503,490,496,503,509,497,494,451,441,440,449,459,443,452,457,438,549,543,539,541,530,534,546,534,542,546,539,548,545,552,535,538,535,540,482,481,490,490,483,502,484,484,493,584,568,568,574,570,564,566,580,566,527,542,531,523,521,529,527,529,535,555,557,549,565,556,560,558,544,550,469,468,473,487,497,468,471,490,461,452,447,450,450,455,451,450,460,457,559,549,547,546,551,556,545,548,544,543,547,558,537,561,543,545,552,556,479,494,479,487,488,491,503,473,489,589,585,586,574,583,579,572,587,577,533,534,533,532,530,520,538,535,535,519,528,509,517,519,509,521,508,520,578,582,582,590,577,587,582,583,591,547,547,531,537,530,545,529,533,529,520,507,510,510,512,513,520,514,518,527,526,532,530,531,528,522,535,532,572,561,549,555,550,542,553,550,551,504,521,508,522,517,517,518,516,527,535,554,554,547,559,546,553,552,546,500,523,505,518,514,519,515,512,507,483,465,482,472,473,458,480,464,470,582,584,578,574,589,598,570,582,582,520,509,505,514,511,503,507,515,500,553,542,545,547,550,536,546,545,546,557,546,548,553,548,548,552,549,539,480,459,490,473,490,477,474,472,462,544,542,547,544,537,558,546,546,543,550,541,545,550,536,545,542,537,535,475,475,485,478,469,487,468,486,466,503,499,494,486,488,494,492,502,491,562,565,565,569,564,560,568,566,563,540,547,545,542,553,549,553,542,540,517,498,496,495,502,496,496,497,505,519,505,510,525,518,513,517,509,529,541,553,558,552,553,551,556,557,554,477,488,478,472,487,487,483,474,487,441,447,433,443,445,441,444,440,453,525,527,524,535,521,531,519,520,527,540,536,533,525,535,534,532,528,541,542,557,541,547,540,552,540,546,545,471,479,488,472,472,475,473,479,477,548,544,545,549,546,541,547,543,535,536,540,536,553,541,547,532,534,529,497,469,469,487,477,480,476,485,472,491,506,493,491,499,488,498,494,492,533,532,542,544,541,543,544,541,538,564,575,569,556,562,575,564,559,542,501,512,510,504,498,505,511,506,511,578,580,580,589,571,590,603,597,605,533,526,533,536,535,536,532,528,538,499,497,496,496,490,496,494,489,495,593,587,579,599,597,583,575,579,591,539,543,521,522,541,523,525,530,531,495,497,482,498,500,495,492,484,493,592,596,579,600,597,594,601,595,584,538,551,540,542,544,538,535,550,546,576,562,547,558,570,570,572,557,565,506,504,503,495,502,502,498,500,506,507,511,513,506,512,507,509,514,506,557,565,564,565,574,568,567,572,563,548,545,549,551,554,553,553,544,549,493,492,487,499,505,495,491,493,491,484,478,488,482,480,477,485,479,478,601,602,594,606,588,611,596,593,593,507,518,509,514,498,509,503,501,492,546,538,534,548,542,539,533,539,547,565,565,583,564,565,566,570,556,563,496,496,505,503,499,502,497,506,496,536,543,533,546,545,532,536,538,538,553,566,560,561,563,560,548,562,561,518,497,516,506,511,500,501,505,521,542,540,546,537,538,544,547,546,536,555,547,536,553,544,545,541,543,537,509,497,504,511,501,511,505,510,508,517,518,508,513,518,523,506,505,517,558,565,574,580,588,586,573,591,572,510,507,503,522,502,513,523,504,505,541,544,541,540,537,543,540,543,528,572,547,563,560,576,568,558,569,577,503,495,499,498,501,496,506,510,499,532,549,537,540,543,543,545,533,541,561,574,563,552,579,558,566,566,565,538,542,542,548,557,547,547,547,548,495,507,514,501,505,504,497,509,508,466,465,460,461,462,456,460,465,469,440,443,440,426,457,458,442,443,439,540,540,542,541,546,546,551,553,540,555,548,547,551,550,541,542,553,554,493,504,502,486,498,499,500,487,500,481,479,479,481,478,490,488,488,483,508,495,499,497,497,499,498,493,509,491,478,482,478,484,480,481,486,485,469,479,473,470,476,477,468,480,474,499,503,508,500,503,503,509,510,509,539,546,544,550,541,546,535,559,537,511,495,487,498,503,500,504,507,507,506,508,499,510,508,511,513,501,512,572,547,558,558,555,559,555,560,547,515,517,502,502,511,505,510,519,521,496,483,489,489,478,484,486,484,490,474,483,481,483,477,483,477,477,479,484,478,477,480,481,482,480,475,472,476,470,462,463,466,465,473,471,472,559,553,560,551,569,534,551,575,546,496,507,486,503,515,483,486,504,502,493,495,502,502,503,496,500,509,494,537,525,530,521,525,529,530,528,525,519,514,515,514,522,523,515,519,521,567,569,566,563,559,565,564,549,561,550,561,554,562,553,553,560,553,555,522,513,519,521,517,518,513,518,519,472,479,481,479,477,483,478,474,482,466,454,465,457,450,464,460,453,462,536,549,546,536,548,536,542,541,544,558,568,569,581,559,578,566,562,582,554,557,546,551,547,542,544,547,551,545,556,556,552,551,555,554,547,560,522,527,522,529,523,518,524,527,529,502,504,505,499,504,501,507,504,501,495,499,496,497,496,498,495,498,499,467,470,466,466,474,459,471,461,467,430,429,425,424,431,428,425,426,437,521,526,512,517,513,525,518,514,519,539,536,531,535,534,530,534,536,530,547,534,544,544,545,556,545,545,547,522,519,518,527,524,518,520,524,521,542,541,544,540,543,545,544,537,552,494,503,515,521,516,509,507,511,519,543,556,555,547,572,556,563,557,556,548,552,554,547,543,545,555,548,538,495,508,500,487,505,504,489,479,496,484,488,468,476,471,473,474,478,487,551,564,559,555,551,555,555,548,547,499,483,494,492,481,483,503,488,502,481,487,482,473,491,479,478,479,479,586,579,593,593,582,593,591,594,594,538,532,527,537,528,536,532,519,536,492,491,494,488,497,497,494,490,492,594,587,584,573,597,577,591,595,586,507,506,504,491,515,512,509,516,507,546,538,537,537,542,545,549,540,546,567,564,565,565,577,571,580,573,568,546,545,546,541,540,538,538,545,541,487,495,489,490,496,491,495,490,489,475,476,474,466,467,473,475,467,472,528,541,535,556,538,549,545,548,538,516,515,517,522,519,517,516,516,520,570,553,555,564,559,561,557,561,568,535,524,535,535,532,526,530,539,523,508,499,498,509,504,499,505,515,505,562,534,559,564,550,556,570,569,557,516,524,503,510,519,516,517,520,522,527,531,523,519,526,521,524,517,521,581,575,577,566,600,586,579,584,577,542,526,540,540,537,528,527,534,531,509,505,511,521,508,520,508,497,506,593,568,564,562,559,575,557,559,558,482,492,496,501,489,486,489,494,485,566,561,562,547,559,564,560,562,555,546,549,556,552,549,552,550,554,546,499,493,510,501,479,498,480,506,492,466,469,466,465,469,465,458,472,470,437,440,442,444,444,450,431,441,454,545,563,551,550,549,550,556,541,551,533,541,545,549,543,537,556,542,548,477,471,478,476,464,477,477,485,472,477,475,471,478,476,473,482,471,473,571,552,557,566,575,555,570,560,552,518,510,496,509,508,515,490,508,500,485,483,481,479,482,478,480,489,485,526,516,520,514,518,510,509,526,511,566,581,584,595,595,583,592,590,580,559,562,548,557,552,552,546,556,554,518,502,520,510,522,524,514,520,509,482,473,474,478,481,482,478,489,477,501,492,500,498,494,501,501,494,502,527,528,530,523,525,528,524,526,532,584,575,586,585,572,578,578,577,591,498,504,509,501,516,499,515,503,509,538,532,540,540,529,539,536,540,542,563,568,554,553,563,558,563,570,560,516,508,501,499,491,500,505,505,501,532,545,538,544,542,537,546,536,536,573,567,571,558,562,560,572,576,559,506,511,497,503,501,488,489,501,489,544,534,544,532,538,544,542,538,535,559,579,565,577,563,574,563,560,572,532,532,541,534,537,544,527,531,541,538,531,523,531,524,527,527,530,529,562,569,563,553,554,562,555,551,561,471,502,495,491,487,493,488,500,502,470,483,481,483,476,466,479,473,478,571,589,596,589,591,600,592,593,590,539,537,543,527,541,545,531,538,532,521,520,524,519,519,517,520,517,513,540,545,550,555,543,546,539,542,547,494,496,499,498,503,501,502,506,493,547,544,545,546,547,541,544,532,541,565,567,564,570,558,569,555,557,568,501,508,506,489,501,512,491,506,502,542,537,540,535,535,530,540,532,541,568,565,570,554,555,580,568,568,564,505,500,501,494,506,520,495,507,511,534,538,538,542,540,538,544,533,540,569,577,581,565,564,571,561,557,573,514,534,533,529,532,532,521,520,530,501,494,486,502,496,480,498,486,494,608,588,580,591,600,596,596,594,574,526,533,538,541,537,538,541,529,534,523,509,530,517,513,520,513,521,530,589,586,588,598,582,602,586,588,580,551,531,521,530,539,527,530,530,518,488,489,497,490,483,490,498,483,500,615,603,602,582,572,586,601,582,587,529,535,538,532,533,535,543,534,531,570,555,558,550,553,569,562,567,567,525,502,519,511,500,504,502,501,529,468,469,468,465,458,461,459,462,471,469,478,479,481,483,483,489,479,490,472,477,474,480,476,475,480,476,474,470,460,460,466,457,459,455,461,458,464,468,466,464,472,464,461,472,476,542,552,563,557,546,557,540,556,549,511,504,507,509,519,515,506,525,510,508,486,497,496,493,494,490,495,490,487,486,490,488,486,479,486,497,488,494,496,501,501,503,495,500,496,501,502,503,499,496,504,497,508,497,505,478,479,481,483,478,492,481,486,482,482,466,464,471,463,453,466,465,463,520,507,523,509,518,519,516,509,505,564,565,552,565,562,565,567,568,562,509,496,495,496,501,495,500,497,491,492,485,490,495,490,495,488,494,486,566,558,555,564,569,564,569,558,548,533,530,529,527,528,531,531,529,526,530,535,545,542,549,536,530,546,541,492,510,500,516,518,522,510,515,508,553,549,535,547,571,564,552,532,573,507,502,502,510,511,507,506,503,506,539,560,566,564,567,567,551,580,547,501,501,501,510,507,505,499,506,508,556,549,551,546,558,555,552,550,558,505,513,509,507,521,500,504,510,497,474,481,477,471,478,471,469,481,482,476,477,481,482,480,477,480,483,477,499,497,503,499,496,486,493,506,498,569,553,556,562,561,562,561,565,567,544,556,560,556,557,550,556,545,549,491,507,498,498,482,493,495,481,492,463,456,469,469,465,455,460,462,465,542,524,532,541,537,545,537,530,539,556,546,551,546,552,555,552,556,541,554,560,556,575,567,567,558,566,557,521,525,518,529,524,518,524,517,523,486,487,486,485,489,491,487,484,485,496,500,491,493,498,495,503,496,496,514,528,530,532,519,526,530,532,530,576,580,589,584,584,578,570,571,583,533,537,531,540,528,531,539,532,538,516,521,521,519,513,518,524,529,519,560,560,567,555,564,566,557,555,562,548,555,558,547,545,558,546,550,547,510,496,494,503,501,496,495,510,501,441,463,474,450,457,453,458,440,462,489,489,485,484,485,494,494,487,489,527,527,531,524,521,517,532,526,518,598,588,586,573,586,590,584,578,577,532,531,539,525,532,532,527,532,534,491,490,490,499,496,491,487,486,493,588,595,595,590,591,590,596,585,591,559,555,554,557,554,569,548,565,572,514,511,525,517,517,520,521,517,528,478,484,481,483,483,480,481,478,476,505,504,497,499,492,505,497,504,492,580,560,574,576,562,573,574,564,572,523,519,522,521,522,530,532,526,527,486,485,496,488,489,493,487,490,486,473,474,487,485,486,472,483,470,482,556,548,563,547,560,569,559,547,561,498,504,515,494,508,509,492,499,500,477,475,481,475,467,479,475,475,475,521,552,528,555,563,542,558,558,539,496,511,499,493,503,502,498,497,507,578,577,565,575,560,544,577,571,562,491,505,504,513,514,517,508,504,507,538,546,545,564,553,552,541,552,544,499,504,495,498,496,501,492,482,498,495,498,499,494,502,494,495,498,496,564,558,551,563,555,557,563,558,561,535,540,527,519,523,529,528,531,522,513,516,508,517,503,500,502,501,500,564,567,549,564,567,570,560,556,535,515,514,524,518,518,527,516,517,514,509,526,514,510,519,527,519,520,519,575,590,582,571,578,580,584,569,579,534,532,544,550,534,544,548,542,543,532,534,531,523,537,536,534,530,530,507,512,517,512,510,512,509,515,520,523,518,514,525,525,528,522,527,521,595,588,579,590,581,585,576,576,585,514,536,530,533,540,521,533,525,537,489,491,483,492,494,492,484,495,503,589,593,589,596,573,579,585,592,589,542,546,534,543,546,547,549,545,534,564,566,564,580,566,575,560,576,563,512,526,521,527,511,532,525,530,522,479,475,484,486,479,483,481,480,479,471,470,476,483,478,488,472,477,466,611,589,595,579,605,619,600,608,593,553,548,549,558,555,544,555,551,556,489,498,492,489,501,498,505,490,493,483,487,483,487,479,480,483,483,487,562,557,557,566,577,548,580,569,564,515,519,525,518,519,520,515,514,524,544,536,552,551,543,551,547,548,541,561,551,548,544,554,553,546,547,543,537,552,553,544,538,541,550,546,537,486,475,485,488,488,471,487,498,484,477,467,470,473,475,472,477,466,462,564,558,565,552,552,561,559,554,557,498,497,501,497,507,491,492,493,492,465,471,462,459,464,466,464,471,464,546,552,551,560,546,542,546,551,569,511,500,508,507,506,496,510,506,497,553,547,567,562,552,558,562,554,565,511,499,502,517,497,515,507,495,518,489,494,493,493,489,485,492,493,497,475,495,478,492,478,478,482,492,482,582,564,579,556,565,564,552,569,550,484,494,488,492,478,504,497,502,510,457,464,458,465,462,459,460,464,452,548,549,558,557,551,550,548,543,542,576,577,569,561,587,565,577,565,559,537,543,549,558,548,547,532,547,539,505,499,512,495,504,505,512,500,507,457,453,460,459,462,459,454,463,459,500,480,488,470,478,486,457,473,473,554,570,564,568,570,552,557,564,560,515,519,516,529,515,520,526,523,519,522,534,534,529,534,531,535,531,533,566,561,561,558,558,555,561,567,563,497,499,506,496,468,503,510,505,512,431,439,435,428,428,443,437,439,452,524,526,541,535,530,533,526,526,517,541,538,549,549,541,550,548,542,555,519,526,516,523,518,512,524,522,517,560,562,552,557,557,555,543,556,559,523,509,515,509,508,517,508,511,522,499,494,506,502,492,498,492,499,503,478,476,482,482,474,474,489,483,482,445,435,436,431,443,450,444,444,435,528,525,522,523,526,525,523,531,522,529,526,516,514,517,514,520,519,517,524,519,525,521,529,524,527,515,516,543,540,538,526,542,537,541,536,542,548,539,541,548,548,535,548,528,534,500,509,519,504,507,499,509,514,515,563,554,568,568,546,560,564,567,547,461,483,479,477,492,490,486,482,488,517,492,507,508,498,496,499,494,499,551,546,545,552,539,552,544,547,546,501,505,499,505,490,498,498,495,495,501,511,497,501,502,506,504,501,503,531,520,530,529,531,520,516,520,526,505,494,501,500,487,498,499,491,496,579,583,590,604,583,585,574,595,588,520,530,538,541,532,538,523,529,537,557,542,544,554,544,559,554,555,552,511,517,526,513,517,519,518,518,520,555,548,559,547,549,538,552,560,547,540,526,527,536,534,524,535,535,532,534,533,528,530,534,532,531,530,534,549,557,565,558,557,552,552,554,549,490,501,505,504,497,495,497,494,502,512,511,513,504,507,506,515,518,516,546,546,548,547,546,549,547,547,551,526,531,530,532,532,532,525,535,529,534,560,547,557,553,556,563,555,546,511,497,501,515,508,503,509,509,505,461,469,470,457,471,466,470,471,472,482,502,491,490,493,487,501,496,501,524,538,542,541,539,543,543,528,532,491,485,492,488,492,492,497,491,500,477,466,468,465,464,475,449,467,470,489,503,505,494,494,494,497,493,499,515,530,534,531,525,530,521,526,533,580,581,575,574,579,586,576,576,586,544,544,529,533,539,538,541,532,524,475,476,476,467,473,482,469,473,467,532,522,529,523,528,520,530,539,532,542,543,537,543,531,540,542,532,536,550,551,533,542,541,548,551,552,543,518,519,514,516,526,520,517,518,524,511,500,507,504,499,503,498,505,507,536,541,540,541,543,540,539,531,542,567,566,567,577,561,563,560,560,577,519,527,511,529,531,527,521,518,524,567,560,566,574,568,562,554,579,559,496,507,509,501,502,496,491,484,490,542,538,554,548,557,546,532,543,538,508,524,515,517,514,516,523,519,521,563,561,560,554,559,554,545,561,564,538,543,536,546,542,543,531,545,532,499,494,501,499,494,488,496,496,510,462,467,470,467,457,470,470,473,472,424,445,430,435,432,434,439,437,428,536,528,543,534,549,536,533,532,539,565,575,561,573,570,568,563,559,576,551,548,548,551,560,541,538,546,545,498,496,497,495,496,504,506,500,496,496,508,508,501,498,503,501,502,501,532,533,532,527,524,535,535,538,529,576,549,551,557,545,547,554,544,556,499,494,493,493,501,499,500,509,505,541,550,548,541,557,526,542,537,547,516,507,507,514,503,512,517,510,504,566,558,578,566,572,559,566,554,563,494,497,509,524,522,513,528,523,514,467,479,476,468,473,474,474,471,470,491,498,495,485,502,497,499,506,505,552,544,548,544,547,546,547,561,546,497,509,516,519,507,526,512,525,512,485,491,466,479,482,472,479,466,479,470,462,467,468,474,470,468,471,475,488,500,498,492,499,495,506,505,505,536,534,539,548,531,535,541,541,534,520,517,511,506,512,515,516,512,510,506,505,511,497,498,498,506,499,506,536,539,539,543,538,542,543,545,537,559,566,575,564,559,572,562,559,559,528,517,528,528,510,523,531,508,523,580,580,584,591,579,583,590,587,585,531,529,521,526,535,533,541,545,541,477,482,479,481,481,484,477,481,481,557,554,560,548,553,562,550,562,564,554,561,572,563,572,566,560,569,555,527,527,516,507,524,512,525,530,515,489,486,485,486,489,485,491,485,485,470,481,475,478,475,467,471,481,482,550,563,541,555,543,551,545,552,546,512,530,517,512,512,516,513,515,515,508,507,505,509,501,510,518,509,504,546,537,534,528,536,528,533,536,543,550,541,538,542,544,538,531,536,537,543,553,552,542,547,544,549,541,546,498,506,492,513,508,498,504,494,500,597,596,598,606,591,595,598,596,614,557,550,546,556,553,558,558,550,558,477,495,491,492,490,495,478,490,491,485,468,479,487,487,482,471,477,480,569,608,589,584,600,596,585,587,593,531,541,544,536,539,542,542,536,539,514,499,497,509,505,500,509,515,500,526,522,530,526,523,531,522,531,528,537,536,529,528,537,528,525,529,526,575,564,562,559,566,572,559,568,574,535,527,520,515,536,526,524,536,528,490,491,493,500,488,500,507,494,494,582,591,585,609,584,596,604,611,608,565,558,557,561,546,554,558,554,549,502,518,508,500,516,515,503,515,511,471,478,482,480,484,475,478,492,480,437,431,439,446,441,456,443,440,441,540,529,544,541,534,541,535,542,542,563,566,579,563,564,560,565,568,578,552,550,545,555,557,555,548,568,560,513,522,517,525,534,522,517,529,519,503,517,502,517,507,514,504,516,502,505,499,498,501,502,501,505,503,489,479,484,483,481,478,479,479,471,488,475,489,475,469,479,468,475,468,477,549,556,551,569,571,559,563,565,561,472,478,473,486,474,462,478,465,469,494,481,487,485,474,472,478,470,470,554,573,560,557,577,573,554,572,576,495,478,483,466,485,493,482,478,470,547,551,547,549,561,549,549,542,548,568,564,586,566,567,569,561,564,572,534,535,535,535,536,528,548,524,528,529,519,520,518,521,528,521,521,523,539,538,540,533,539,538,537,544,539,512,507,516,509,514,516,513,507,502,523,518,522,531,512,515,526,530,517,580,584,568,582,586,567,583,587,580,506,509,515,521,515,523,518,509,516,543,544,543,540,547,543,546,549,555,544,543,534,533,541,550,533,539,546,509,504,505,522,497,499,507,512,501,558,540,543,559,562,557,554,536,558,485,498,494,502,498,488,487,501,493,511,517,515,510,514,515,514,515,511,537,556,560,553,549,553,549,556,550,504,509,503,511,498,499,511,509,506,546,547,537,548,542,549,548,542,549,545,547,535,553,539,546,539,549,539,511,516,516,520,514,512,518,509,512,540,532,527,530,530,540,518,525,532,509,517,521,513,514,514,507,510,512,495,502,501,505,506,507,498,504,503,541,544,545,539,541,539,538,542,540,563,565,573,562,564,573,565,566,562,529,536,532,526,535,536,532,533,530,572,567,560,569,561,549,562,562,560,504,517,505,513,502,506,508,498,495,579,599,590,585,579,574,584,598,591,542,544,540,550,540,549,542,539,539,527,535,531,529,524,524,526,528,528,544,539,561,551,557,549,565,549,541,490,484,487,487,496,496,488,488,483,468,470,464,458,463,464,471,462,463,557,576,574,562,553,554,558,560,567,483,490,476,491,492,484,486,490,486,586,576,590,590,585,589,571,587,583,519,513,522,529,513,525,528,520,535,493,508,481,500,490,502,490,492,497,575,584,587,577,580,578,597,596,591,534,545,544,540,541,544,532,540,534,520,514,520,516,523,516,519,518,524,570,560,563,558,563,562,564,564,564,556,566,566,557,557,566,560,560,557,523,532,530,519,517,534,513,525,524,503,511,511,508,504,505,508,509,516,505,493,493,499,497,498,493,498,498,488,486,484,481,480,488,480,479,485,486,470,488,480,484,481,480,486,479,563,582,551,559,548,572,557,562,554,496,494,497,493,492,503,507,498,494,521,510,506,507,506,511,510,515,510,548,561,548,543,551,550,554,542,546,509,500,504,504,505,496,503,500,504,543,536,536,527,524,539,538,532,535,536,537,536,540,538,526,523,525,525,551,556,544,541,550,558,544,541,551,480,477,478,487,466,476,478,470,475,537,537,541,547,540,538,547,544,546,545,553,548,548,552,551,556,556,553,509,485,508,489,495,485,497,491,499,451,453,460,462,468,452,456,463,452,534,534,551,542,546,534,544,543,541,519,516,520,516,520,522,511,511,516,519,528,530,525,521,534,524,520,532,513,522,522,524,513,515,516,517,520,537,556,558,552,553,546,548,558,548,539,528,524,529,520,533,523,520,526,502,512,508,514,507,512,508,505,519,541,538,544,551,543,547,539,539,541,497,504,506,500,500,501,501,495,502,529,537,539,529,533,534,533,535,531,543,537,533,538,537,536,538,545,545,551,548,554,555,530,546,552,554,551,495,511,484,489,493,501,509,493,507,459,464,472,469,470,472,460,463,468,458,462,469,458,457,463,463,462,459,566,569,554,570,554,563,563,555,536,492,501,498,493,497,496,495,491,499,555,560,548,552,556,538,548,570,558,509,497,481,507,508,503,508,505,506,477,481,484,478,481,480,482,475,486,496,491,484,488,497,497,487,489,491,471,466,461,467,471,464,464,468,464,466,464,463,471,470,469,467,478,475,548,548,546,545,553,558,554,542,567,477,474,480,474,489,471,473,486,490,554,547,553,544,553,548,563,551,550,555,550,553,554,551,549,553,553,551,483,459,483,481,474,465,493,476,470,521,518,533,527,512,532,526,524,525,533,537,532,531,536,533,537,532,529,550,552,550,539,552,560,543,543,554,481,490,468,464,463,477,461,481,478,541,533,546,550,544,541,543,531,546,529,538,547,546,547,540,545,532,544,518,517,520,520,519,524,523,517,514,559,563,563,555,551,563,557,556,553,522,543,530,522,526,526,528,513,530,487,489,504,501,503,488,501,505,496,597,578,594,577,583,581,592,596,592,535,533,537,535,530,528,547,539,535,504,510,508,505,503,507,511,507,509,555,576,561,569,553,572,575,549,559,489,485,487,497,503,492,497,488,503,548,561,556,564,562,548,560,553,572,557,553,559,564,560,550,564,551,568,511,507,514,507,520,502,508,500,518,466,468,464,472,474,473,462,463,468,462,460,456,457,445,450,466,453,449,537,568,543,551,541,537,549,539,541,521,523,520,521,523,517,523,518,532,557,547,558,556,553,542,552,552,539,514,522,524,517,516,514,504,521,528,507,500,495,502,491,499,498,498,497,469,486,481,480,485,478,486,490,477,473,453,459,456,459,456,454,452,460,505,496,487,500,490,488,487,489,497,533,530,525,528,527,520,532,524,529,518,522,525,532,524,525,525,521,532,546,541,548,548,546,549,543,552,556,495,486,490,487,507,495,488,501,499,461,472,477,475,467,460,471,475,480,542,556,548,545,551,556,549,554,550,513,508,511,505,518,512,516,512,520,502,512,510,507,505,514,504,507,507,531,537,532,531,533,530,525,534,526,513,513,523,517,517,515,514,524,522,530,529,526,533,530,532,538,535,535,560,567,577,570,566,570,560,562,566,524,520,515,525,521,526,530,533,529,563,564,570,551,562,566,546,561,556,487,498,494,491,496,491,501,502,503,542,559,569,574,552,557,566,537,540,490,506,480,491,497,492,491,493,487,553,572,577,565,583,589,586,587,586,507,502,504,501,505,505,511,514,518,522,526,533,527,531,538,533,529,519,543,540,536,538,541,540,542,533,541,541,539,541,535,549,540,549,552,544,473,485,481,472,478,465,470,481,472,446,449,442,449,451,438,452,449,454,533,532,535,529,527,528,527,520,529,521,533,535,538,533,537,539,530,538,559,568,565,570,571,568,568,571,569,552,532,532,549,539,546,545,532,536,508,492,499,508,488,490,499,503,488,478,472,468,480,470,479,474,471,472,493,512,510,507,508,520,510,501,509,572,556,550,544,552,553,562,554,550,492,497,495,495,504,503,499,481,501,519,514,514,512,528,510,512,519,517,547,551,538,533,535,558,538,537,542,532,517,511,518,519,516,516,514,506,571,568,585,575,573,567,555,563,571,526,512,534,521,502,512,521,516,516,491,485,485,492,489,487,489,485,485,492,496,495,500,495,499,496,482,497,556,552,558,546,554,555,551,549,542,550,549,541,541,540,542,545,549,536,539,521,526,532,530,528,528,520,523,464,462,458,461,465,471,463,467,461,559,554,552,553,566,568,551,552,554,555,550,556,561,557,558,557,564,548,498,493,492,496,492,507,504,489,495,485,483,487,507,508,498,489,496,496,570,576,555,552,557,559,568,562,565,533,532,532,528,536,530,525,535,533,557,567,566,565,563,561,567,558,554,530,509,515,525,520,515,532,509,496,482,479,477,482,476,474,476,478,487,496,498,496,496,500,496,494,501,494,530,544,540,538,536,538,536,539,538,561,562,548,564,554,545,549,561,556,502,485,492,501,504,496,483,492,494,471,472,455,469,455,460,461,462,466,549,550,532,559,539,545,553,550,540,497,496,494,490,500,491,502,499,495,542,563,549,550,536,544,547,550,545,521,514,516,517,520,519,521,516,522,562,568,560,555,566,561,576,566,561,544,553,546,547,545,550,541,548,545,509,497,488,488,505,496,498,502,500,495,506,506,505,508,494,506,506,504,566,560,554,573,570,562,561,563,566,553,545,546,559,543,549,547,553,562,485,502,493,496,490,491,496,505,507,475,487,489,488,488,481,487,487,487,552,581,585,570,571,580,576,560,572,514,508,515,508,516,519,506,519,502,466,465,472,465,470,467,471,462,462,473,456,458,467,463,451,464,464,461,478,486,482,490,488,490,486,479,490,506,503,509,501,511,504,502,504,506,533,530,535,540,542,535,542,539,534,562,559,570,571,574,566,568,559,572,552,544,551,540,545,546,548,546,542,506,503,503,489,496,492,486,499,496,513,511,505,508,515,512,520,509,511,549,532,542,551,543,534,551,540,538,506,504,504,501,495,499,500,496,493,494,495,489,485,490,495,483,487,492,500,502,502,504,505,500,504,501,504,543,538,534,534,538,548,530,538,537,560,568,564,571,574,564,559,565,567,535,533,532,542,530,534,533,537,523,516,514,510,517,524,522,521,516,521,547,545,545,546,546,543,546,546,548,565,580,568,556,568,555,561,568,572,506,501,504,513,504,515,510,509,517,494,478,486,487,474,479,485,490,474,561,559,552,557,569,561,566,556,544,505,516,516,507,517,509,511,505,512,469,461,466,466,469,464,466,461,466,448,459,428,440,440,440,444,447,441,535,531,539,521,522,537,535,527,540,544,546,554,547,551,555,555,550,538,463,466,464,480,475,461,466,468,478,540,533,532,536,537,546,533,537,535,547,568,582,563,555,559,570,561,557,540,540,543,542,535,538,547,536,537,555,574,574,571,555,570,570,568,568,493,502,497,495,508,499,493,504,505,491,491,496,495,491,488,485,490,491,557,570,578,571,572,574,580,569,581,507,488,506,499,506,494,490,493,493,442,442,455,437,442,446,436,432,441,536,537,532,533,537,541,539,524,534,545,553,546,540,542,548,548,540,546,499,511,501,499,502,498,501,500,506,564,553,562,558,582,561,557,555,574,505,513,518,527,525,508,505,524,513,483,483,483,484,474,478,487,478,473,486,475,492,488,484,486,485,477,474,601,594,587,588,587,592,607,609,600,536,542,533,533,536,536,544,540,540,521,524,522,522,521,525,521,518,519,558,566,557,561,563,565,570,581,557,546,547,541,545,544,539,554,550,549,487,494,477,486,475,489,487,493,492,446,443,445,447,435,448,440,457,440,526,528,526,525,529,523,532,539,520,514,515,517,507,515,510,512,517,509,533,530,529,530,534,529,529,529,532,572,568,572,571,571,572,566,565,564,559,551,551,548,554,540,553,542,546,529,530,520,527,504,518,512,521,512,491,489,485,485,495,497,485,492,491,458,462,455,452,455,449,460,458,462,519,510,506,510,506,503,509,514,505,563,548,563,551,550,554,549,563,558,503,493,491,501,492,495,502,504,498,494,500,496,500,497,499,509,491,494,509,505,507,509,510,498,503,508,502,531,537,540,533,535,539,536,538,537,564,572,561,575,568,572,561,556,575,539,533,525,535,528,526,523,531,531,522,524,520,511,530,519,522,518,512,576,589,575,592,594,597,576,583,582,532,530,532,527,534,537,532,534,529,570,537,560,571,556,555,577,556,568,463,480,485,491,479,491,468,482,484,549,541,542,556,543,548,568,547,552,539,560,553,549,550,553,560,538,546,500,504,508,497,510,486,502,508,501,501,516,507,512,520,530,517,517,516,539,542,544,545,544,542,540,537,547,520,507,513,514,518,515,518,515,510,506,509,497,503,503,502,508,504,507,544,549,532,537,535,538,541,534,536,563,567,580,563,571,556,570,561,568,531,526,531,526,520,537,520,525,524,543,550,548,548,556,552,535,537,535,489,492,493,482,498,499,490,497,499,551,555,546,548,547,556,557,551,536,498,522,502,504,519,507,516,517,524,472,480,490,477,481,484,481,481,485,478,465,465,466,464,464,474,462,462,466,467,474,471,479,477,477,467,473,475,472,473,477,477,471,476,479,485,463,465,463,472,478,469,478,471,467,572,573,561,556,581,565,570,561,576,473,481,466,473,487,476,468,480,477,520,519,512,509,511,520,518,523,515,532,536,532,527,538,537,534,523,540,570,560,554,554,564,556,564,558,560,505,514,514,528,511,519,518,511,509,593,569,563,572,572,580,568,581,577,539,542,540,542,544,542,550,545,539,541,530,532,534,529,528,532,532,531,530,517,522,523,525,517,529,530,527,583,583,590,590,591,604,599,596,586,551,544,542,545,532,536,538,550,542,553,570,567,566,582,583,572,576,576,521,527,521,526,532,519,537,517,533,516,513,504,507,510,512,502,503,512,486,485,480,488,489,485,488,492,486,484,481,480,488,484,476,483,481,485,488,488,490,503,489,491,486,487,495,455,455,451,463,463,454,461,456,462,488,488,480,497,501,476,500,482,472,563,569,584,586,581,549,561,567,582,507,487,497,501,503,499,498,503,484,468,470,473,466,453,474,460,464,461,535,533,528,529,526,531,537,530,535,540,541,531,527,537,538,537,536,533,557,558,562,567,574,570,566,567,563,512,519,504,507,500,505,516,496,507,537,528,523,545,517,531,536,534,529,512,523,520,526,522,522,517,531,521,545,532,537,537,544,539,532,540,533,542,540,535,548,546,541,553,542,541,491,504,508,514,515,498,494,501,509,479,477,489,472,481,479,477,473,480,463,459,453,463,462,465,455,459,459,484,475,474,480,479,485,488,483,486,501,502,509,505,495,502,509,504,508,531,530,530,536,534,529,528,524,526,524,525,519,520,518,523,519,527,525,540,541,547,549,539,533,545,535,543,559,558,550,545,547,560,550,564,548,521,516,506,518,524,516,508,534,524,474,482,487,489,481,487,492,486,481,490,485,479,489,484,482,485,478,482,477,475,453,461,459,462,464,467,473,506,487,509,509,494,507,501,495,491,529,531,528,535,529,526,524,525,519,509,500,506,509,515,494,496,510,508,550,563,561,559,574,559,550,547,552,498,488,507,492,505,501,513,515,516,471,471,467,473,470,463,468,467,467,472,464,482,473,476,475,481,476,476,546,562,559,554,555,558,561,552,554,512,511,511,517,511,510,504,499,512,480,473,479,473,465,472,473,474,477,503,492,488,487,495,486,493,493,493,545,556,550,554,547,556,547,562,552,557,537,544,543,540,545,543,540,540,473,493,493,481,475,489,474,483,490,440,437,439,428,447,441,440,440,446,519,524,526,518,525,517,508,525,520,527,532,531,530,537,536,523,527,531,567,564,554,573,568,549,565,571,558,507,505,509,516,506,510,504,494,492,540,548,544,545,538,539,547,540,538,549,561,572,565,552,561,568,568,561,518,522,516,527,509,520,531,515,520,589,575,593,588,587,578,577,577,585,545,532,529,544,535,529,535,527,532,556,575,563,557,568,549,573,562,565,505,501,526,496,509,498,511,512,511,443,438,438,436,441,443,436,447,434,435,453,439,442,454,452,452,441,445,538,535,544,522,533,527,537,536,535,542,560,556,550,542,559,552,548,548,542,557,551,549,544,546,541,555,560,490,507,505,504,504,500,501,499,495,511,525,517,516,507,512,516,515,515,541,549,546,547,549,554,544,550,539,521,527,529,523,527,525,527,526,527,546,532,542,534,534,535,539,531,538,517,516,502,518,520,515,512,525,518,503,509,508,513,504,510,511,505,505,529,524,517,523,521,516,522,525,518,533,539,531,528,525,521,530,532,528,568,574,554,556,560,568,568,559,565,528,523,526,526,532,525,529,526,524,566,552,536,561,546,558,565,562,549,506,498,496,504,502,506,498,500,492,547,545,540,550,545,544,542,544,542,527,530,524,531,526,521,527,522,522,575,562,556,555,559,569,549,558,562,499,488,496,492,489,488,494,494,489,475,481,480,488,471,476,475,486,471,584,602,606,592,597,612,595,599,591,534,543,536,551,550,540,540,543,541,526,528,533,526,533,526,530,531,527,511,507,503,511,513,506,506,510,507,532,543,539,534,530,535,532,523,543,543,546,540,547,542,543,547,535,537,546,550,551,558,543,549,556,554,561,497,492,506,508,498,504,509,480,503,465,466,463,466,466,472,462,466,468,467,447,463,448,462,455,458,454,460,551,555,552,551,547,556,549,547,552,524,516,513,511,515,512,513,513,516,532,528,521,519,517,529,519,528,527,472,481,500,481,481,489,495,473,489,550,554,549,549,550,548,560,540,539,481,473,479,485,466,478,475,478,482,494,501,495,495,509,502,492,495,502,563,578,565,565,559,560,571,558,570,527,519,527,506,526,525,537,518,528,472,469,473,477,480,476,483,475,484,486,490,487,483,494,493,484,484,495,596,573,563,597,576,573,580,576,586,479,485,490,463,475,492,473,475,489,518,508,518,521,523,516,520,520,516,529,529,523,526,525,539,530,530,533,554,561,562,569,561,576,558,569,564,535,535,537,526,526,527,531,528,535,520,516,518,519,517,511,519,521,520,557,546,546,543,546,550,544,546,556,535,541,537,542,539,538,531,541,540,578,580,576,574,583,582,580,571,588,535,526,524,527,535,532,524,512,533,486,489,488,488,487,481,485,483,485,454,452,458,456,461,451,453,454,464,549,546,548,537,551,550,553,553,544,572,577,582,576,577,581,570,569,570,547,548,553,544,556,545,555,544,550,521,513,518,513,529,511,508,511,515,495,497,491,489,487,492,494,492,494,477,466,475,464,472,464,469,470,471,486,479,483,486,481,484,484,488,480,497,503,500,502,497,503,504,500,498,529,523,530,537,529,531,534,522,528,546,544,550,548,545,538,550,544,542,558,556,558,547,549,554,559,563,564,520,502,525,514,508,504,515,521,518,489,488,485,487,487,490,486,483,482,442,439,451,442,446,454,442,437,440,533,523,529,534,528,521,534,527,537,547,538,539,538,542,539,550,539,549,559,546,554,548,546,539,549,551,548,507,510,510,491,511,497,511,511,500,493,488,487,497,494,491,493,488,490,512,522,523,511,519,516,521,520,519,587,572,584,581,583,581,571,569,587,546,553,544,543,540,551,546,549,551,540,525,535,530,535,537,526,533,532,531,522,523,529,521,527,524,518,521,564,568,568,559,558,568,563,555,555,558,554,549,543,547,556,546,560,545,513,497,499,497,488,494,494,506,500,495,505,496,494,510,497,497,492,509,567,586,585,584,559,580,578,568,570,499,502,496,503,512,499,499,512,500,484,500,504,499,492,495,499,488,505,564,550,571,565,565,566,565,565,566,459,484,492,485,475,485,471,473,497,492,483,486,470,471,497,477,470,487,578,555,553,567,571,572,567,563,563,518,508,520,525,522,534,520,523,506,472,474,489,485,479,482,483,482,487,456,470,469,468,457,466,465,464,465,462,451,463,458,445,457,467,453,457,580,582,585,592,588,592,600,584,581,549,543,554,546,544,531,542,545,533,496,495,495,501,490,504,492,489,508,504,496,494,488,507,500,504,491,512,538,541,529,539,542,533,537,531,535,514,526,516,520,519,526,522,529,525,550,536,544,542,540,537,541,542,540,529,533,531,532,532,536,538,532,530,563,570,580,562,567,560,563,563,562,519,534,532,509,520,519,519,523,530,502,501,512,499,504,506,503,503,491,480,486,481,492,487,483,488,484,483,501,498,489,498,494,492,499,501,496,557,555,559,570,560,557,562,573,560,545,550,552,556,556,555,559,552,562,520,518,521,529,525,515,522,524,523,506,512,511,514,517,506,512,505,509,500,502,503,507,501,504,497,502,489,475,475,482,476,486,486,481,477,479,457,461,464,460,463,476,460,451,462,538,540,544,545,547,537,542,536,528,537,544,536,539,538,541,544,541,546,553,555,537,542,552,549,548,554,554,492,475,477,482,477,480,488,499,483,533,535,529,535,538,531,536,538,536,542,537,545,537,542,546,539,533,545,544,548,537,543,536,543,546,539,546,525,535,529,527,537,525,525,536,529,556,563,561,557,554,564,565,577,562,515,506,507,523,523,507,514,511,512,486,485,489,482,486,489,490,479,486,492,490,495,491,496,493,491,493,492,514,514,505,510,508,515,517,502,515,555,545,555,562,555,562,561,550,549,562,562,558,559,554,562,572,558,556,531,530,532,530,521,531,535,528,518,510,505,502,507,510,506,507,508,513,507,503,506,508,497,501,505,503,507,481,485,493,486,484,482,479,485,477,456,452,464,464,458,461,465,461,467,477,485,478,476,480,481,488,482,484,583,579,568,569,587,570,560,583,575,475,483,492,492,495,495,489,500,495,583,583,573,588,578,590,574,576,580,520,537,532,527,526,523,532,540,525,554,572,565,556,559,551,557,552,559,501,502,494,502,495,475,503,504,480,452,454,451,458,460,469,452,456,452,517,512,507,501,508,504,506,516,511,547,535,540,540,553,533,535,541,538,510,511,508,512,513,511,521,521,517,520,526,527,521,526,522,529,526,524,595,579,574,569,579,575,564,580,575,525,535,525,521,523,530,536,522,523,584,588,571,577,579,592,583,584,581,540,533,539,542,535,543,544,535,538,511,505,511,512,502,498,501,512,501,555,560,559,569,562,561,564,561,566,568,547,552,565,558,565,548,549,554,506,483,493,487,498,497,504,491,496,465,457,468,458,474,470,466,468,458,530,538,531,534,542,527,537,532,523,535,529,529,533,529,535,526,524,531,548,563,566,560,572,564,565,561,566,532,534,534,544,538,528,538,539,532,506,491,501,497,503,500,502,518,506,534,536,527,533,529,534,534,532,534,528,533,526,527,524,527,531,522,527,553,538,548,554,545,545,533,543,532,510,507,515,514,511,523,519,518,509,537,524,530,533,530,534,533,539,531,526,525,522,530,530,530,524,526,525,544,552,543,554,544,543,548,556,552,483,501,504,498,502,513,498,520,502,460,471,472,453,462,452,470,465,459,474,461,466,465,462,471,466,454,460,535,551,531,547,525,542,544,550,548,473,471,469,468,470,483,489,481,473,501,512,500,486,504,523,496,516,509,550,555,555,552,562,565,564,566,556,486,487,492,481,503,493,495,490,492,462,458,457,467,457,470,466,461,462,542,541,536,527,541,530,528,538,532,536,527,540,535,537,537,540,541,537,537,539,542,546,536,535,544,534,539,490,482,477,476,483,506,488,491,498,588,584,583,581,580,573,587,573,574,549,544,542,545,538,548,543,537,540,531,527,525,523,534,527,536,529,526,515,521,522,519,530,525,526,525,528,547,559,559,553,555,562,557,554,559,527,532,525,524,524,531,533,530,531,478,478,470,466,475,482,472,490,476,510,498,513,501,503,523,505,506,507,550,561,562,566,557,557,563,551,552,490,488,497,504,504,492,481,490,504,460,459,451,454,476,466,468,470,476,538,538,529,527,537,541,537,532,531,534,535,531,537,528,533,542,537,531,555,557,563,564,566,563,562,562,565,539,537,533,537,542,537,530,533,526,526,529,526,525,527,525,520,529,535,559,558,562,559,569,567,568,542,568,518,518,510,504,508,503,522,518,523,489,486,487,489,488,492,486,484,487,502,517,506,498,498,513,504,505,513,531,536,540,535,537,537,530,530,534,529,524,525,529,529,529,528,527,523,549,540,555,562,565,549,548,561,559,523,517,510,509,509,503,498,506,502,461,457,470,473,464,463,461,463,469,436,431,442,430,442,454,431,448,437,537,533,541,543,545,533,544,545,547,544,552,543,545,550,547,539,542,548,505,499,496,490,498,495,502,503,494,482,485,485,473,482,480,484,485,482,449,451,451,444,445,456,448,457,444,483,486,482,480,482,487,503,480,490,578,580,572,568,566,585,558,579,573,523,527,522,526,524,518,519,519,515,486,484,482,480,488,484,492,488,489,460,465,464,466,453,469,455,459,467,545,536,533,549,541,541,524,540,535,553,551,548,564,545,542,547,547,543,550,542,551,548,554,543,550,548,560,500,511,497,491,507,494,511,506,502,518,532,524,524,528,525,519,517,519,569,564,558,562,559,566,557,567,562,486,490,493,495,499,486,492,492,502,457,466,467,463,458,466,461,461,459,535,525,540,532,525,536,532,536,529,534,531,529,525,525,535,533,533,527,561,555,560,565,562,560,564,558,562,537,541,532,536,536,538,538,542,542,557,552,552,549,552,545,547,552,556,566,547,551,553,558,558,548,554,549,496,499,491,499,492,495,497,493,492,502,508,505,506,499,508,510,504,509,575,561,568,551,565,561,562,559,558,510,516,513,522,516,512,529,509,524,467,478,470,477,472,477,486,465,462,583,578,590,576,588,592,583,583,578,527,515,529,529,521,523,516,522,515,569,570,587,578,594,584,583,570,579,544,545,533,547,542,548,551,536,543,564,565,571,557,569,567,572,571,561,536,519,531,517,520,522,515,525,526,511,515,511,510,510,514,513,502,508,490,496,496,493,491,494,498,483,489,481,476,489,484,491,492,482,492,478,478,479,477,479,471,480,476,476,477,499,500,499,502,492,498,496,498,484,537,525,525,521,526,525,528,529,536,585,582,581,579,580,595,591,588,590,531,538,529,532,528,531,534,525,533,560,563,556,569,573,559,563,570,562,535,529,523,520,523,526,532,527,524,534,538,540,541,528,536,537,543,536,524,526,526,518,523,522,520,527,522,539,550,549,545,539,550,552,541,549,504,495,496,503,500,508,498,497,503,538,550,552,544,538,535,541,538,540,569,547,577,562,573,554,561,561,571,543,540,537,540,534,539,548,540,542,507,502,508,503,512,508,512,514,503,563,563,565,562,563,561,567,566,562,557,554,562,551,555,564,565,558,568,524,526,520,523,516,521,525,517,526,489,488,480,493,480,484,483,492,491,500,497,496,505,497,495,501,497,499,508,509,508,507,509,506,506,502,502,545,539,543,538,538,541,540,540,542,568,563,566,564,557,554,568,561,549,528,504,524,518,528,525,525,521,526,583,575,590,584,587,573,586,587,573,505,513,511,507,503,499,498,500,507,544,538,539,548,538,534,540,541,544,575,577,571,574,570,566,572,574,573,544,551,542,552,538,552,545,550,554,530,525,519,530,521,517,507,518,507,479,488,481,484,480,479,482,481,485,495,490,507,493,505,495,495,498,502,561,562,563,560,565,561,563,561,564,550,546,549,558,544,542,550,553,564,489,486,487,495,498,493,485,484,494,481,476,487,470,477,486,485,483,475,605,594,587,582,598,600,607,584,598,560,550,559,562,560,548,545,548,561,520,516,514,506,499,512,523,504,521,511,498,503,509,496,503,501,502,502,466,471,465,478,462,479,469,475,473,455,439,436,440,439,451,435,437,449,486,485,481,490,497,488,485,485,497,531,540,555,556,547,543,543,537,540,494,498,497,489,505,496,502,500,498,464,460,465,460,459,459,461,462,465,448,438,432,440,422,433,424,427,433,522,517,519,518,519,526,513,516,530,545,544,541,544,539,546,545,534,549,551,547,545,554,542,552,554,552,544,504,487,489,494,505,514,491,509,493,467,463,462,469,478,466,465,461,470,438,431,443,435,443,437,433,438,439,530,525,528,525,523,528,528,530,529,518,519,517,518,521,520,514,521,515,505,515,509,515,509,506,515,514,512,529,530,532,525,537,529,524,531,533,566,565,557,565,564,565,563,572,564,533,534,531,532,524,535,523,537,526,510,511,505,515,508,514,509,517,512,563,574,565,567,569,560,564,569,563,517,524,512,520,518,531,518,530,525,484,498,484,483,485,489,488,494,491,500,514,509,509,505,518,508,516,512,555,561,555,565,549,552,552,550,554,484,496,483,497,483,487,481,481,483,471,471,467,460,464,448,466,467,458,544,547,535,556,555,550,542,553,537,514,512,513,512,516,519,521,512,514,557,567,564,563,554,555,551,564,550,557,554,549,545,564,558,552,545,558,516,521,520,509,522,531,525,531,517,511,505,503,501,495,506,503,501,508,494,494,489,501,490,496,493,495,498,461,458,451,457,451,451,458,456,451,476,477,475,460,480,476,479,481,475,590,566,581,556,582,572,581,566,594,489,486,479,485,493,502,472,472,493,552,552,551,555,554,551,553,547,551,549,552,548,557,547,555,558,553,555,494,504,470,487,489,482,498,497,492,466,440,459,451,461,452,449,444,455,547,543,549,557,553,543,545,562,557,548,549,555,549,543,551,546,549,544,515,496,513,497,502,499,509,506,505,494,492,502,500,497,499,498,495,497,554,556,553,560,550,543,555,556,564,521,532,532,535,538,537,535,522,531,515,514,521,520,517,517,518,519,512,523,533,527,530,523,524,520,525,530,575,552,547,551,555,558,557,571,553,529,525,527,518,529,522,522,522,528,551,547,558,539,549,551,541,540,544,496,502,506,507,515,501,504,506,500,473,486,485,484,486,486,476,485,483,463,468,470,469,474,469,466,475,478,469,459,456,453,458,471,466,455,452,602,587,599,585,593,580,602,596,585,559,549,553,540,547,555,544,536,550,498,492,483,503,496,504,503,512,501,507,504,503,496,501,500,510,500,496,547,546,536,542,548,546,543,542,540,565,557,549,539,548,557,557,565,572,509,494,491,497,505,489,492,499,494,456,466,459,457,473,460,448,449,471,514,510,518,518,516,519,509,510,512,560,567,568,548,555,564,559,557,559,502,505,502,495,491,506,498,503,494,511,512,509,515,513,508,514,505,500,542,541,534,538,550,540,544,546,539,526,521,523,523,516,526,525,519,520,553,567,554,558,552,551,554,554,557,532,538,526,532,532,529,529,528,533,512,527,520,523,524,519,526,522,529,554,549,558,545,557,550,547,548,537,542,525,528,529,530,524,529,525,537,536,563,569,567,570,567,552,544,553,507,495,506,501,510,499,503,506,507,561,551,558,553,571,558,558,562,560,478,479,500,500,503,486,498,483,497,493,485,496,488,488,490,489,493,497,575,562,579,550,565,581,579,573,571,504,502,512,518,508,510,513,515,516,566,561,555,562,549,564,556,562,557,514,513,519,515,506,496,507,504,505,465,470,470,470,467,455,474,468,472,491,490,496,486,489,488,490,485,494,550,552,559,554,561,553,551,549,557,533,530,524,529,525,522,526,530,529,482,480,476,475,494,474,490,470,473,542,542,553,556,553,547,555,556,545,556,543,554,558,553,550,557,555,549,531,535,529,528,532,526,533,536,539,547,552,555,560,561,558,551,562,548,488,488,503,498,504,494,482,495,488,495,501,497,503,492,495,495,511,497,543,560,550,541,548,545,544,538,547,561,570,570,565,568,565,561,562,563,513,518,520,526,515,515,515,511,509,455,468,464,462,460,461,446,450,463,445,460,458,456,454,462,465,461,459,552,551,553,543,549,543,551,541,549,548,549,566,554,537,544,554,538,538,467,488,479,468,480,468,473,484,485,550,548,551,554,553,546,550,550,558,553,560,556,545,543,554,557,551,561,507,498,501,519,500,506,513,502,495,487,470,486,477,479,483,483,483,486,560,563,554,554,555,550,557,550,552,499,494,502,504,490,503,488,491,492,493,505,497,499,500,488,498,492,504,561,560,562,573,566,555,554,561,565,552,559,559,547,566,552,548,554,553,516,511,514,523,522,529,516,508,529,461,480,472,473,476,480,478,477,478,487,476,483,480,487,484,485,489,476,598,598,600,597,599,594,593,598,591,556,542,544,558,563,553,561,559,570,490,506,496,497,496,504,510,509,503,439,455,451,455,456,458,453,458,463,473,478,483,482,470,483,474,474,475,579,587,567,557,560,585,578,552,563,506,509,498,510,504,506,507,503,512,552,558,555,551,538,549,567,564,551,473,506,505,504,484,498,510,486,490,457,461,459,459,462,453,462,456,456,525,505,511,517,514,517,503,505,512,538,540,545,546,540,535,542,532,538,509,499,498,502,497,496,504,499,492,580,596,607,604,605,598,602,589,588,539,533,535,530,529,531,537,533,535,514,507,520,501,507,508,509,508,518,551,577,553,555,561,550,568,554,566,524,511,508,505,505,512,510,495,512,498,498,508,506,508,506,506,502,507,535,537,521,523,538,534,522,539,530,489,491,504,502,493,492,488,498,493,593,595,584,603,588,602,604,601,586,559,554,558,559,559,546,553,548,558,493,486,492,490,510,488,499,502,497,496,491,490,492,485,486,485,488,488,583,571,563,570,571,581,569,565,564,509,504,512,520,513,500,504,505,501,453,465,464,463,466,455,458,467,469,441,455,454,460,458,456,460,454,466,556,576,577,579,589,581,579,586,577,529,525,525,524,515,519,514,520,517,582,577,588,587,586,573,579,589,584,543,548,559,550,550,546,537,544,543,503,498,501,489,481,496,483,486,500,489,466,470,472,481,477,474,468,470,557,562,556,554,563,559,558,568,566,511,494,511,492,499,508,507,505,498,448,455,458,454,459,460,452,455,455,503,488,485,487,498,487,480,484,495,560,559,570,555,568,567,547,555,557,516,522,525,525,524,523,519,518,519,529,527,532,531,529,528,532,533,530,576,577,549,567,547,558,564,557,560,497,500,492,498,497,507,505,492,486,556,574,548,550,554,551,553,545,562,493,513,498,496,512,490,507,516,494,473,485,481,484,482,476,482,480,482,480,471,471,470,473,474,475,478,468,452,459,464,458,459,458,461,463,459,549,547,543,542,551,539,536,538,539,575,561,576,571,565,574,574,568,565,548,543,539,547,546,541,536,543,544,523,521,518,531,514,522,522,527,523,486,509,490,488,502,499,504,496,495,586,584,588,599,592,602,602,591,590,544,531,531,542,543,541,538,542,540,573,560,559,568,560,555,573,562,561,489,509,508,511,499,507,503,488,509,484,482,479,490,476,491,480,475,489,577,549,581,546,568,567,563,561,559,479,484,482,498,480,482,480,479,497,555,554,553,546,548,552,549,553,556,558,562,551,555,555,552,551,557,549,472,473,481,481,483,468,479,472,482,549,558,544,557,550,550,544,543,540,554,546,549,545,545,542,559,547,537,516,504,522,514,520,511,524,519,510,550,559,572,545,572,555,566,564,566,520,511,508,509,505,512,514,496,510,488,505,493,498,499,502,495,497,501,535,538,536,527,538,560,536,531,540,497,490,486,487,483,493,479,476,489,507,495,488,499,494,494,491,499,496,529,540,526,540,530,534,544,539,533,495,503,508,490,505,501,507,497,496,546,546,542,551,550,550,547,554,552,560,570,578,573,554,565,558,563,562,523,524,518,526,528,519,517,517,519,553,559,540,558,555,563,542,561,559,516,501,509,516,517,508,514,504,511,552,562,570,574,554,561,564,566,563,524,532,525,534,515,514,512,530,517,505,510,498,508,508,504,507,506,503,479,483,480,485,486,480,479,495,474,506,512,511,507,502,507,508,500,503,544,550,545,537,548,545,551,550,542,533,518,522,517,519,515,522,516,525,551,548,531,534,525,530,537,544,527,522,510,520,514,512,515,520,517,515,547,539,527,531,539,533,532,538,531,528,526,524,531,530,526,527,525,522,552,554,550,565,553,557,559,557,562,511,507,523,512,521,506,511,512,517,474,478,483,486,490,479,472,480,481,460,469,456,458,456,465,463,466,456,457,463,467,454,461,459,451,460,457,535,532,528,549,533,532,536,534,534,519,516,526,528,533,522,523,519,527,547,536,537,544,543,546,537,544,533,544,552,546,535,549,553,540,546,548,497,492,510,481,501,498,489,502,494,476,471,473,471,478,477,476,475,464,509,501,510,499,510,506,506,501,501,548,550,548,551,547,550,541,553,546,485,483,500,488,493,487,476,481,474,444,444,452,422,437,448,439,452,434,526,523,521,527,529,528,520,517,521,533,528,528,530,530,527,534,526,536,573,568,574,562,568,561,577,571,572,547,545,545,552,552,549,542,552,547,516,510,535,515,515,510,521,524,522,503,505,498,504,503,503,503,505,504,485,483,476,472,485,485,489,487,473,471,469,469,470,464,461,474,474,468,455,458,454,462,462,450,458,466,457,551,551,550,547,561,571,549,551,556,519,514,513,518,524,518,515,515,516,524,541,543,537,548,543,529,546,530,499,504,497,509,501,495,503,515,509,464,478,486,476,487,473,478,480,484,463,465,459,464,470,467,463,454,463,490,480,481,481,478,484,479,477,487,474,481,482,488,484,483,482,487,484,493,486,498,488,497,494,483,490,494,509,501,496,503,500,499,506,502,501,482,480,474,475,475,475,482,482,477,462,471,468,458,452,463,454,471,463,556,562,558,562,561,555,561,564,559,568,552,554,552,555,549,545,541,546,478,471,481,475,476,468,472,474,469,455,471,466,454,463,469,466,458,476,585,588,592,607,599,588,587,583,582,499,532,557,513,529,507,525,523,531,492,496,483,487,491,491,487,490,499,552,551,541,552,547,548,553,547,550,529,530,519,520,526,524,528,525,532,547,558,567,556,564,566,553,543,545,505,496,495,501,494,506,497,502,498,508,509,512,501,508,514,513,507,499,547,544,543,548,542,555,542,545,543,542,533,526,530,528,532,528,535,531,541,552,553,543,543,543,550,555,542,507,495,496,489,496,488,490,492,505,477,472,468,476,471,470,472,469,462,502,500,510,508,507,510,498,505,496,554,541,546,534,542,541,553,545,549,487,480,496,488,493,501,497,499,494,494,495,498,491,505,489,493,498,500,538,539,540,542,547,546,535,538,534,528,520,516,518,522,517,515,530,514,591,594,589,584,588,585,591,606,592,540,537,540,540,538,533,542,540,545,552,559,549,555,545,545,544,557,557,457,462,477,463,472,493,481,487,483,461,469,460,472,466,467,475,470,465,568,563,546,564,572,550,555,569,545,524,525,531,528,526,527,526,528,536,554,547,561,569,557,546,566,562,554,520,519,514,516,516,520,517,502,511,472,475,478,470,474,471,480,477,481,472,482,484,482,486,490,492,483,483,562,563,568,561,563,551,554,576,568,510,529,512,528,526,524,519,523,526,515,535,523,524,531,511,519,529,534,511,520,511,522,509,515,512,510,502,565,554,569,573,564,565,571,564,557,528,520,518,533,536,527,515,525,536,510,504,506,505,502,515,515,502,511,498,504,497,497,506,496,500,497,498,481,470,482,483,486,480,489,478,478,487,486,491,479,490,488,491,491,487,468,470,469,456,474,465,467,481,467,436,446,444,430,438,434,441,439,438,474,492,482,479,484,478,470,485,487,522,526,516,525,523,529,526,525,521,565,586,585,586,573,572,594,584,578,554,550,558,545,543,554,549,542,563,487,486,492,495,497,494,483,494,497,475,483,484,489,469,479,469,478,485,551,571,555,546,549,567,563,565,577,480,488,484,490,483,491,470,479,476,567,559,558,569,554,554,557,553,564,547,553,548,551,548,543,553,548,560,466,464,462,464,469,471,471,474,477,443,446,452,436,452,458,451,456,444,532,541,531,531,527,532,524,528,523,530,540,543,531,527,526,528,548,536,559,555,566,574,565,574,563,561,562,521,526,530,522,521,532,526,515,529,564,562,577,564,554,548,559,566,553,472,479,483,463,487,476,469,489,472,528,536,541,535,531,531,522,533,542,579,569,553,564,558,563,558,566,563,538,539,535,524,532,540,527,527,529,519,525,525,524,512,522,518,512,525,565,565,562,569,560,563,559,558,568,555,548,552,549,546,560,559,557,554,492,500,502,491,493,494,481,490,492,500,504,497,501,493,489,499,501,501,580,577,562,545,594,580,559,581,570,472,493,484,477,484,496,478,481,482,527,546,537,530,541,536,539,534,539,565,561,567,576,576,567,582,567,575,549,548,551,551,546,547,554,549,545,534,545,555,548,544,533,541,542,544,518,500,492,490,492,501,499,501,507,463,464,469,469,465,481,475,476,472,503,498,496,494,494,492,494,495,502,527,525,539,527,526,532,517,529,525,521,518,518,515,523,519,514,521,523,555,553,534,541,547,550,546,546,551,500,507,504,509,497,500,495,490,500,536,539,536,543,531,542,533,536,533,517,523,515,519,522,527,519,520,523,522,519,524,518,514,517,517,519,509,524,525,520,522,519,518,518,527,526,536,537,539,545,549,538,536,548,545,548,546,542,556,547,548,543,551,546,494,513,495,501,503,507,502,500,504,491,493,487,494,494,488,486,497,487,508,509,511,509,505,508,505,506,513,522,526,524,514,529,528,529,536,527,516,517,510,522,514,513,522,519,519,526,527,524,527,535,528,529,528,525,573,555,566,566,559,573,554,557,561,535,538,531,536,540,537,532,533,536,497,500,499,498,495,503,499,507,496,534,536,539,539,548,534,531,533,545,524,519,529,521,523,523,521,530,520,528,534,536,531,529,529,531,535,535,547,537,533,545,544,535,542,545,553,502,508,508,487,501,505,511,507,503,557,564,555,562,553,544,554,549,541,493,497,484,501,500,491,494,503,493,504,502,507,502,503,507,502,511,503,510,515,510,508,515,511,503,504,514,531,535,532,533,528,522,533,524,528,544,539,546,545,538,543,542,546,546,553,555,559,565,559,566,562,560,557,517,524,523,534,526,522,531,525,538,509,508,507,510,506,511,516,512,507,484,486,479,479,475,484,475,472,476,465,461,472,472,462,467,464,465,466,568,553,557,555,551,559,555,550,549,541,541,549,556,547,547,547,552,560,528,525,525,524,523,522,520,522,525,554,554,565,562,555,549,545,556,557,539,537,529,531,536,531,536,535,534,535,535,526,525,527,533,534,530,526,556,547,542,541,546,559,551,558,557,534,514,524,511,508,512,512,511,510,474,479,477,473,461,480,484,474,480,444,434,428,444,437,435,439,437,439,457,433,445,453,444,449,441,452,445,545,547,539,546,543,547,544,548,544,587,584,582,589,581,566,569,574,566,543,544,548,552,546,546,546,550,558,498,504,507,508,505,496,498,499,490,506,520,506,513,515,528,511,508,512,561,555,557,557,556,563,560,574,566,493,486,487,492,492,495,499,499,491,468,458,449,459,463,457,464,447,466,543,539,541,535,537,536,546,535,540,530,538,535,543,540,553,541,529,544,552,533,546,556,560,550,553,554,533,474,490,454,481,478,477,474,455,483,525,517,530,528,532,520,521,528,520,530,540,531,541,540,538,537,539,537,547,547,550,554,550,541,545,551,547,495,508,494,494,498,504,486,490,509,453,453,453,449,454,447,461,458,451,492,485,489,475,475,483,484,475,481,565,566,573,568,565,564,576,572,572,523,516,515,516,507,522,523,508,516,503,504,503,497,503,505,508,498,498,524,524,539,520,525,524,528,533,533,545,535,536,540,531,539,539,541,543,555,546,561,548,544,543,542,542,543,510,521,519,511,510,516,518,517,510,582,557,584,579,570,574,565,578,571,492,497,490,508,502,499,496,490,500,487,480,473,491,485,480,486,488,497,596,595,600,597,594,590,593,598,601,548,564,554,550,560,553,557,553,562,548,552,549,553,550,546,557,549,555,513,511,512,520,522,519,509,510,512,479,468,475,477,474,479,482,483,486,508,503,501,509,503,504,497,496,499,548,559,549,547,556,555,558,554,548,496,502,505,503,501,509,502,512,496,520,537,533,533,529,530,533,531,528,532,531,523,522,538,533,535,534,537,576,572,566,559,564,565,560,569,564,542,529,535,533,535,541,534,532,531,526,524,530,522,526,531,529,530,525,554,560,553,550,556,553,552,539,545,489,491,488,490,490,484,484,481,488,436,446,442,441,449,452,449,445,445,523,523,516,531,528,526,521,530,506,520,531,531,524,524,528,529,523,528,554,564,566,558,560,561,567,579,577,546,539,538,543,541,548,549,548,545,533,531,535,530,538,531,527,532,524,534,527,537,536,531,536,526,534,528,559,560,575,553,554,570,565,559,559,528,519,519,521,532,533,521,533,524,509,499,508,508,498,520,513,498,511,496,501,491,508,501,500,501,498,505,492,492,489,486,491,488,487,487,489,498,507,501,495,503,496,507,509,504,537,538,536,532,534,528,543,541,533,510,514,513,513,507,520,511,505,514,499,512,516,503,510,512,510,507,512,548,553,540,544,546,547,547,551,545,543,544,540,545,546,545,546,528,542,503,484,496,501,488,489,490,495,497,561,548,540,554,576,552,553,558,561,523,506,522,500,510,501,533,507,519,462,478,461,473,465,466,457,472,463,484,472,471,471,474,476,475,469,473,479,487,493,478,480,488,487,489,480,505,507,502,508,503,509,502,501,506,561,554,551,553,549,556,558,554,559,509,515,512,507,515,497,519,500,504,491,487,489,480,490,494,489,488,496,488,497,495,495,491,494,493,485,492,501,501,497,508,509,501,514,501,503,508,512,506,502,512,511,505,508,513,496,508,496,495,506,501,506,501,498,496,498,495,504,492,498,495,497,499,461,455,450,463,456,451,470,453,463,477,470,469,467,471,467,469,477,477,545,564,562,544,561,561,560,556,555,512,521,523,520,515,517,522,520,528,557,567,566,562,557,545,550,556,566,562,552,556,556,559,563,549,545,550,518,521,534,519,518,532,525,524,523,498,500,504,501,502,497,499,504,499,485,481,482,483,486,474,479,481,473,489,496,492,498,495,486,492,495,500,585,580,579,588,562,591,562,580,577,493,502,498,510,504,502,510,500,504,491,494,489,493,491,497,490,493,492,558,560,561,553,571,572,548,570,567,529,509,502,504,519,500,503,504,507,487,501,497,500,502,505,500,494,499,548,538,524,537,534,527,543,546,525,464,473,470,470,466,472,465,469,472,460,465,469,480,478,465,458,465,465,586,595,589,592,583,584,592,587,591,523,530,530,535,525,523,532,536,521,567,566,587,591,582,575,579,590,573,497,497,503,517,506,500,511,504,492,544,546,547,533,543,542,546,537,542,566,568,557,569,564,576,571,569,570,526,534,516,527,526,524,523,538,531,495,489,479,480,485,481,471,466,471,546,552,559,561,566,570,550,561,558,556,553,574,560,562,563,569,562,566,520,519,516,503,504,510,519,518,512,484,479,479,482,492,490,479,481,488,457,448,447,445,429,442,440,434,439,527,518,528,527,523,531,531,521,527,533,547,549,543,545,541,537,541,540,554,559,560,565,552,563,543,563,553,528,521,523,528,536,519,521,513,522,505,502,505,502,507,503,512,503,506,493,480,482,479,484,481,472,474,476,468,468,465,459,463,468,471,457,462,606,587,588,584,588,586,584,575,575,520,529,537,533,524,535,533,530,532,511,518,520,523,513,523,523,518,523,559,565,567,569,569,568,570,562,559,546,544,546,546,547,554,547,551,545,503,492,497,506,497,506,495,509,500,511,514,521,516,511,522,515,515,518,563,557,565,558,557,564,561,555,560,485,496,494,492,487,499,490,485,498,498,501,495,490,498,499,488,498,495,568,594,564,568,582,588,575,564,579,483,489,494,500,482,488,483,475,491,558,555,565,559,554,562,555,551,563,541,559,539,547,548,556,547,553,551,476,482,473,467,475,476,477,476,492,465,468,462,471,478,474,469,477,471,569,584,590,570,572,580,572,582,601,477,476,482,461,481,477,473,495,468,537,546,549,546,527,547,546,543,547,547,537,546,538,542,539,534,540,539,479,476,474,488,485,497,470,477,484,490,493,494,495,489,488,498,483,491,501,503,504,502,515,509,505,505,507,524,521,524,525,531,527,513,522,526,535,528,535,530,532,542,532,535,532,561,567,554,564,562,560,559,571,563,529,521,515,512,515,510,514,518,527,591,579,590,581,578,573,595,572,585,509,506,501,504,508,507,516,511,514,530,531,535,532,524,521,531,529,531,520,523,518,521,521,521,524,522,520,513,523,518,524,517,525,518,521,514,532,535,532,535,540,534,542,538,539,549,550,548,552,545,557,546,549,560,501,516,499,502,495,516,529,515,515,467,460,471,462,466,465,452,464,459,457,464,461,459,466,472,466,467,468,488,478,483,470,466,473,481,479,478,567,554,552,559,557,552,555,571,549,475,481,474,491,482,476,478,475,472,527,532,529,523,533,533,534,532,528,535,537,532,541,535,536,541,540,533,567,571,565,569,577,565,573,565,571,552,544,549,549,558,554,547,543,549,512,522,531,525,513,517,521,517,526,506,494,505,500,508,503,500,505,512,485,493,501,491,491,485,486,490,483,480,488,487,483,485,480,482,483,483,488,490,489,494,493,494,496,488,496,471,464,471,459,467,464,466,468,464,439,443,439,435,451,446,438,452,442,526,539,542,537,530,539,532,540,529,530,517,535,551,537,545,533,547,550,482,478,487,487,501,487,497,488,482,584,584,583,579,589,572,581,578,584,519,541,522,536,528,525,523,513,523,487,472,490,485,480,480,474,478,489,550,556,567,567,544,550,555,552,552,554,567,564,561,571,573,562,574,563,528,508,526,536,526,536,515,520,523,497,497,500,501,498,499,487,499,500,441,447,452,465,456,450,451,467,458,473,503,489,500,506,488,485,498,496,542,536,549,546,556,545,549,547,545,493,502,505,499,506,499,497,506,500,555,544,543,544,545,549,546,549,546,552,571,572,562,568,571,567,562,574,557,539,543,546,538,544,531,540,537,518,503,506,489,512,503,494,507,506,475,468,466,472,467,464,460,454,470,445,448,439,456,449,448,449,450,448,500,507,502,508,499,504,501,507,497,556,552,554,548,547,547,549,551,559,503,494,504,500,507,512,495,507,497,544,540,537,551,543,546,542,542,556,571,576,565,568,559,560,573,551,552,511,517,511,506,517,514,520,520,522,586,589,579,587,583,583,575,578,582,557,553,552,556,556,550,544,558,555,551,548,547,545,539,548,550,549,554,501,492,493,505,491,503,501,501,499,515,509,522,517,521,517,503,516,523,567,548,560,550,565,550,573,553,561,496,507,502,504,501,492,496,489,494,519,515,502,515,526,510,513,508,506,538,539,542,539,543,547,538,542,536,522,520,524,518,520,526,526,530,521,552,539,555,546,548,544,552,551,547,524,531,524,527,525,517,526,530,526,554,567,551,556,571,556,561,578,568,499,507,501,504,511,507,506,502,495,535,536,543,539,554,550,516,547,538,508,495,513,508,512,504,499,498,499,569,555,561,574,563,570,572,579,565,493,480,496,504,493,501,497,499,503,447,449,432,451,445,438,446,455,434,520,544,532,538,545,530,543,537,530,537,545,540,540,544,542,541,549,548,522,534,530,528,529,528,530,526,527,548,547,557,560,551,552,548,550,550,489,504,498,502,491,497,494,493,500,508,504,511,505,502,505,508,504,511,547,546,550,563,547,557,550,560,553,550,527,526,529,534,536,541,537,538,543,572,551,560,576,554,556,558,563,513,503,507,511,505,505,511,510,515,576,589,579,583,574,575,561,574,563,494,478,482,494,476,480,485,489,493,553,540,543,540,551,548,549,553,547,554,548,546,549,543,558,561,552,546,507,506,502,502,505,508,513,503,511,488,491,492,498,492,489,491,496,499,551,528,541,535,535,543,534,534,534,501,503,509,502,503,503,515,500,507,536,550,548,558,542,543,543,540,551,553,569,557,549,556,561,568,563,551,496,510,509,510,499,502,513,515,505,505,498,504,501,508,508,500,500,497,530,531,533,537,547,538,539,539,528,521,514,518,524,519,521,520,521,529,523,523,524,520,548,518,531,531,529,481,484,485,481,482,477,478,493,472,550,555,554,570,552,565,560,567,549,518,501,522,511,504,513,513,513,507,453,460,467,465,464,472,459,464,462,457,428,449,455,444,451,450,451,438,496,490,499,499,502,500,489,494,506,564,564,550,556,553,559,560,561,550,548,551,556,555,556,561,549,543,549,550,555,560,560,559,556,548,565,553,517,490,489,503,504,501,495,492,489,494,495,499,501,496,507,496,499,498,570,570,566,562,569,566,549,580,576,518,511,505,517,510,515,507,507,521,471,473,470,468,474,475,472,466,477,493,486,489,493,497,498,498,491,500,528,523,533,527,530,524,532,528,536,524,520,519,520,519,523,523,523,525,536,544,536,545,538,534,536,541,543,517,520,511,513,512,516,513,511,506,514,504,510,507,508,511,508,503,511,545,539,549,542,546,542,543,542,543,539,556,556,553,547,549,546,552,541,482,488,477,476,479,470,484,469,468,541,540,547,551,547,544,543,546,539,530,530,549,545,535,546,521,541,542,506,507,509,497,503,509,511,516,508,568,546,575,570,572,568,564,566,566,500,505,512,498,509,508,512,504,505,502,506,496,509,501,502,503,507,505,531,536,560,543,542,559,548,554,547,503,486,495,496,500,495,498,488,495,512,512,503,507,501,509,510,512,498,556,565,571,573,569,569,564,571,571,547,553,546,543,548,553,550,549,547,505,488,503,497,507,500,499,500,494,521,522,511,525,519,513,513,510,509,543,549,534,548,534,547,543,547,547,522,522,520,517,516,523,525,515,518,553,563,565,569,556,563,552,572,560,523,536,522,519,513,520,527,527,520,503,511,505,508,511,509,505,508,513,504,489,487,492,497,489,486,479,487,485,492,487,494,484,500,491,487,491,461,479,481,470,476,473,475,473,476,452,465,469,455,468,448,467,457,460,507,509,515,494,514,508,503,513,516,554,549,543,548,539,534,543,548,544,524,527,525,516,528,518,522,532,522,540,537,553,538,531,547,551,542,538,530,526,530,531,536,529,530,528,526,547,555,544,535,549,551,553,556,539,485,501,491,492,496,494,499,494,494,495,492,491,499,488,493,497,498,495,547,547,543,543,542,542,552,541,545,520,508,509,517,517,515,520,521,520,592,583,596,587,586,600,603,592,591,554,552,552,559,558,564,551,555,559,549,557,552,562,559,540,551,550,546,520,517,520,520,518,523,514,521,528,503,504,505,501,502,500,498,495,492,493,491,492,489,498,495,490,499,492,465,477,485,472,466,469,474,475,468,505,511,493,504,501,501,499,504,494,542,546,537,554,541,552,551,555,549,496,500,491,507,497,479,494,495,505,495,497,490,495,490,501,495,487,490,563,569,567,573,564,567,580,563,575,494,501,503,503,501,506,495,497,506,466,454,463,464,459,456,465,456,456,573,542,562,553,571,547,553,562,553,512,524,515,512,507,524,522,526,513,524,531,532,522,520,516,529,529,525,467,476,474,477,475,472,472,466,474,502,502,502,506,494,495,498,496,498,552,560,559,551,557,544,555,567,558,526,539,530,528,530,530,532,532,528,527,522,519,523,518,524,516,521,517,554,556,544,552,552,548,552,553,552,537,535,538,539,532,532,537,538,537,511,508,499,503,516,517,516,511,511,556,564,552,552,550,548,549,554,551,558,549,549,542,552,549,549,541,541,520,525,526,528,524,521,525,527,527,559,543,556,543,555,559,541,544,547,522,495,502,501,503,512,498,509,508,487,481,483,488,490,480,483,482,487,495,504,508,502,503,506,500,493,498,486,479,475,489,480,492,487,495,486,461,467,470,464,469,460,464,465,458,491,476,481,477,478,474,485,487,485,567,572,567,578,568,565,565,563,561,508,486,477,476,510,496,489,487,503,423,437,439,437,443,423,430,444,441,514,520,515,519,519,516,517,513,519,514,515,511,521,518,508,521,520,518,529,531,528,530,534,532,529,525,528,570,576,565,555,568,573,573,559,574,537,544,552,554,551,542,551,546,547,515,504,519,518,512,504,513,495,500,491,480,487,480,480,482,481,481,481,497,491,497,488,496,492,502,497,499,558,565,560,561,566,569,554,562,553,541,551,541,546,548,545,552,557,546,520,494,512,501,505,497,495,512,511,457,457,454,447,455,456,454,449,451,439,450,462,444,446,444,441,449,443,541,545,553,533,545,540,543,540,539,567,583,577,564,578,574,584,561,567,535,524,525,532,513,528,531,507,529,473,485,477,476,488,492,471,491,466,553,557,554,554,556,558,544,554,555,550,535,553,549,542,544,553,547,554,508,494,518,505,500,503,499,505,516,573,557,563,575,563,558,551,560,554,493,500,512,503,504,508,493,498,485,486,464,478,473,474,479,476,476,484,559,546,543,525,568,535,554,557,547,483,465,478,480,484,479,481,479,482,533,547,546,554,547,550,547,554,541,580,570,574,579,564,568,580,573,565,551,537,545,536,532,526,533,535,527,479,495,497,484,494,488,486,489,477,517,515,511,511,506,509,508,503,514,553,551,552,558,557,557,543,557,553,516,517,523,507,524,513,526,520,517,491,487,486,496,497,498,491,491,494,470,458,455,451,464,458,452,469,453,495,489,488,495,492,485,488,491,484,539,544,536,540,553,535,540,541,540,559,561,568,561,554,550,571,559,554,503,499,505,511,507,509,519,510,508,545,557,551,575,566,575,566,570,555,514,508,509,505,496,519,515,503,513,524,511,515,506,514,512,525,515,515,589,572,581,576,582,578,585,585,580,531,546,550,544,558,548,539,552,536,495,509,504,503,504,502,512,502,499,448,453,458,460,461,461,456,451,463,444,447,455,455,446,436,456,438,447,585,574,573,564,571,579,578,562,561,529,541,541,539,550,543,530,543,532,533,530,522,527,531,527,522,525,530,576,565,574,574,572,568,579,568,570,526,519,526,525,521,524,521,518,520,502,503,502,495,502,503,508,504,497,532,533,539,542,533,540,542,545,536,565,565,557,560,571,569,563,569,562,531,529,529,534,535,528,535,537,535,553,554,563,549,550,566,555,568,572,524,497,499,509,501,499,496,505,507,449,453,447,463,464,453,463,457,453,462,462,464,458,453,455,460,448,460,546,560,551,553,551,555,555,555,548,542,540,562,537,541,550,542,551,536,479,507,493,487,506,492,501,510,507,555,540,544,531,551,559,544,548,535,485,479,468,479,480,476,473,475,480,495,509,490,504,504,505,510,494,486,541,538,542,527,533,538,537,542,536,493,496,492,496,501,501,504,504,496,567,548,554,561,554,555,553,552,557,519,502,511,506,516,517,510,520,511,529,531,533,526,530,524,523,530,528,553,556,551,555,553,557,554,561,552,527,505,515,498,491,513,494,512,513,456,443,448,439,441,437,436,445,437,514,507,495,484,493,485,503,500,499,554,573,563,568,561,565,545,561,555,498,494,495,495,498,503,491,498,494,494,503,503,495,497,503,494,499,501,567,565,570,573,577,589,565,593,570,532,538,518,521,524,530,530,525,524,491,485,479,479,483,490,483,483,486,470,470,468,462,454,459,458,452,457,535,538,532,539,532,531,538,540,531,525,528,528,526,527,525,521,526,524,548,542,538,545,546,541,545,550,548,544,553,548,563,555,567,540,560,564,498,513,504,493,497,496,499,481,495,524,520,519,517,522,525,515,518,511,560,561,565,561,552,559,560,561,560,497,483,495,506,501,500,513,491,496,516,518,515,513,515,513,516,512,513,547,544,550,561,550,563,543,549,552,499,508,497,493,498,498,492,495,497,498,508,499,506,507,511,500,511,507,537,534,530,538,540,535,530,537,535,473,465,456,471,468,474,481,468,471,526,536,532,518,533,523,522,529,535,527,524,526,521,521,531,523,522,525,528,531,534,543,533,530,534,534,535,534,547,551,550,548,548,541,548,547,512,503,519,506,511,500,514,503,498,488,474,470,479,476,483,483,475,480,445,447,448,455,452,449,445,453,464,479,469,457,472,472,475,476,479,467,561,568,549,549,543,558,556,556,553,511,506,507,515,512,511,508,509,500,490,489,485,489,484,491,485,494,489,486,492,490,490,477,476,481,485,491,558,555,557,561,556,551,563,551,553,494,492,489,492,496,495,483,498,486,505,513,509,514,509,506,514,513,509,558,562,555,565,561,560,554,555,562,538,536,541,533,541,541,536,533,537,532,532,533,529,534,534,532,529,535,569,560,556,559,562,567,565,551,553,523,498,513,505,508,515,516,519,527,488,476,481,477,484,484,490,472,487,483,475,482,479,486,475,480,482,480,558,548,557,541,555,565,556,553,555,485,506,507,496,505,504,490,495,500,465,471,464,464,473,472,466,469,479,553,540,553,539,546,550,550,562,560,498,483,491,515,496,494,491,491,502,507,496,502,501,500,487,492,505,499,523,528,528,523,528,526,525,523,532,516,519,525,518,515,516,514,518,521,545,561,540,549,546,552,545,554,557,512,510,502,493,499,500,503,497,496,542,542,542,549,543,553,549,544,544,561,565,576,564,572,562,568,571,564,495,503,509,514,503,499,500,504,506,524,536,528,531,537,528,523,528,543,546,539,541,540,541,541,538,544,540,545,553,544,550,557,560,559,544,549,505,489,501,498,495,482,485,489,508,478,466,462,455,460,460,451,466,475,592,601,592,603,577,586,578,591,585,548,549,550,556,554,557,557,552,549,521,533,519,526,528,524,514,516,526,473,481,479,480,487,476,474,476,474,465,460,453,461,458,466,461,452,462,547,546,545,555,556,545,550,537,550,570,581,568,573,563,568,568,565,561,526,534,519,517,520,515,534,526,531,587,594,585,590,585,594,572,582,591,552,537,540,547,550,545,549,544,535,472,498,487,483,496,486,478,488,489,464,473,465,460,463,455,462,457,465,551,562,563,565,561,545,556,545,562,513,514,513,512,510,515,518,509,527,559,545,555,553,543,547,553,549,551,531,532,536,532,533,539,530,531,535,527,526,532,536,539,534,539,532,532,566,564,559,564,556,562,557,568,559,533,516,529,531,527,541,529,514,523,506,505,503,503,506,505,502,506,506,486,481,472,484,482,479,474,478,478,467,451,459,459,459,465,463,454,463,529,548,555,547,552,548,540,555,553,560,569,574,561,563,574,574,566,563,515,521,538,527,538,524,534,540,528,519,517,513,520,522,517,520,519,522,571,562,576,561,559,557,546,564,558,520,521,499,513,510,516,511,499,509,483,479,479,481,482,475,473,479,477,472,477,468,476,466,469,468,466,470,552,558,556,555,557,559,567,548,550,482,495,489,496,494,490,489,487,488,478,488,486,496,485,485,484,489,486,499,499,496,500,508,497,501,501,495,528,523,531,528,531,526,535,526,525,539,542,548,548,541,552,544,543,548,549,556,551,553,558,549,558,543,550,503,499,496,506,506,484,494,495,515,523,524,522,516,522,524,516,523,517,566,560,558,567,566,554,556,579,565,525,537,523,525,526,525,528,533,513,501,499,497,503,503,502,505,503,498,482,474,483,474,480,477,474,474,471,474,481,484,487,495,478,493,474,487,578,598,589,605,593,592,576,584,586,513,543,525,531,534,538,535,537,532,491,502,501,505,505,499,502,502,503,539,548,551,556,559,560,557,553,546,546,538,541,539,546,547,546,544,541,529,511,516,514,522,534,534,518,519,476,482,468,470,480,480,479,484,463,568,587,595,589,588,580,588,584,576,521,520,523,517,513,523,527,522,521,551,562,553,540,540,554,552,553,570,516,523,524,517,516,522,515,520,519,556,560,557,554,546,556,552,557,555,527,526,529,525,526,535,525,533,533,504,510,515,499,508,497,520,505,515,554,560,564,561,558,560,559,557,570,506,518,496,494,513,508,494,500,497,489,475,476,480,480,482,474,480,475,488,473,480,469,474,466,478,472,479,439,432,446,429,436,447,452,447,437,529,521,525,524,528,528,530,528,525,529,534,525,534,524,529,536,533,534,559,565,568,567,562,577,566,567,568,530,536,533,527,536,528,529,538,531,528,521,525,518,529,515,525,519,512,560,560,562,562,565,552,552,548,559,538,528,536,534,536,533,531,546,538,535,535,532,533,536,529,532,536,536,563,559,561,562,556,552,564,557,554,503,502,495,497,493,496,495,490,487,490,485,492,488,495,494,501,489,492,550,562,575,564,555,558,548,569,557,471,473,478,479,466,478,465,485,484,448,476,460,480,457,468,464,455,466,611,577,587,598,583,589,599,594,580,545,542,537,537,545,535,539,544,554,522,524,523,527,525,523,522,525,522,536,544,545,542,534,533,544,542,544,514,507,512,514,514,513,522,514,512,502,503,505,503,502,505,509,501,506,538,543,546,536,543,533,540,530,526,565,567,564,553,567,565,566,566,566,535,515,519,542,526,539,535,536,525,505,501,509,516,513,508,510,507,509,554,561,565,536,574,557,570,553,564,535,513,517,502,513,526,503,500,520,490,485,487,493,484,483,483,487,488,478,465,477,472,479,463,467,475,477,469,467,476,465,465,466,473,468,473,435,444,454,443,441,449,446,434,433,549,559,553,558,551,554,558,558,543,538,554,545,561,550,551,547,544,538,508,506,500,497,506,504,515,504,499,491,488,475,488,485,488,489,488,480,501,493,496,496,491,491,496,490,496,501,491,486,493,490,493,495,495,499,472,468,471,475,470,468,477,470,470,488,489,500,503,499,504,492,490,495,522,522,532,526,531,532,528,538,527,521,530,524,521,524,523,523,525,526,540,538,540,536,543,545,537,534,533,484,487,462,486,476,487,470,484,491,535,536,526,526,536,530,536,525,526,543,542,543,539,544,538,542,546,547,552,553,550,546,547,554,550,549,538,497,495,493,502,482,496,492,492,486,436,430,435,441,448,435,448,454,446,535,518,531,526,525,537,533,531,529,544,538,537,542,531,547,541,540,541,520,521,515,520,517,520,520,520,520,535,533,535,523,532,540,517,529,522,474,473,477,474,459,479,475,469,471,557,544,549,537,552,545,546,543,542,571,582,582,569,572,593,568,577,557,531,530,529,527,525,529,532,534,521,476,481,459,471,481,470,475,477,484,530,535,535,530,527,521,531,531,521,538,542,541,544,550,538,535,544,535,545,556,549,541,543,542,550,538,548,483,479,490,482,476,489,492,485,500,469,466,468,462,473,464,467,461,474,543,547,538,532,545,542,542,531,541,476,464,473,494,474,478,477,484,467,492,495,502,497,495,494,487,491,503,530,535,535,546,536,539,536,536,529,520,520,521,520,522,519,525,516,527,551,554,555,545,546,561,546,549,548,488,499,497,494,499,497,497,495,498,507,495,497,502,502,500,510,508,505,537,544,542,534,546,529,544,538,542,550,558,567,582,572,568,568,573,561,494,496,516,496,511,494,497,492,501,451,443,443,442,445,447,442,443,441,460,484,472,479,464,480,478,486,478,561,564,559,587,564,575,572,567,570,489,509,501,504,506,503,508,510,514,457,470,475,469,456,465,461,457,463,497,496,504,510,491,501,506,508,505,573,557,555,558,551,552,552,547,552,482,509,510,504,513,503,509,500,503,442,456,450,450,460,447,452,448,458,476,463,465,468,469,464,475,472,476,615,600,600,588,601,586,588,596,579,553,564,554,551,545,546,547,568,555,509,504,489,499,505,497,487,496,488,459,461,471,462,463,460,463,456,453,440,455,466,448,458,465,463,453,456,546,546,557,556,560,545,531,546,549,565,572,579,575,564,566,569,578,579,525,525,532,525,525,526,528,527,532,563,560,564,555,555,545,558,556,562,524,526,526,525,524,528,520,531,518,557,562,546,544,545,547,551,554,552,547,551,542,550,550,545,550,556,544,519,529,535,535,532,538,538,536,531,518,515,512,514,524,518,519,519,517,558,550,565,570,567,571,564,568,556,526,538,526,534,542,530,538,530,534,503,509,504,507,504,502,508,499,503,484,487,481,481,484,474,479,489,475,497,497,502,491,498,503,503,496,500,559,560,560,555,561,547,563,561,565,519,522,514,536,515,525,521,525,523,507,489,495,495,494,494,504,496,486,593,585,594,592,587,599,595,588,584,548,562,548,563,550,555,552,569,550,516,494,512,507,507,517,511,507,507,489,485,484,484,482,481,482,484,485,497,496,488,490,483,492,490,487,490,505,500,506,507,509,509,512,508,509,527,533,532,525,526,524,526,530,524,526,518,522,519,520,525,518,514,520,514,511,518,516,519,512,514,514,517,530,534,525,529,528,531,528,525,529,568,557,567,568,576,570,563,574,569,510,505,498,507,505,503,490,507,499,539,525,524,523,529,528,529,534,522,516,521,521,516,526,513,520,513,515,537,531,527,528,537,528,532,533,531,565,569,573,571,580,566,570,562,573,550,549,545,545,542,531,552,545,545,500,494,500,497,498,495,504,495,488,489,502,510,510,500,498,507,504,515,557,551,556,550,544,553,563,559,557,533,543,533,533,536,541,540,541,538,516,508,513,505,516,502,507,511,512,546,545,550,554,556,552,558,553,553,542,548,554,536,551,553,547,547,545,496,489,488,488,494,495,498,493,492,443,446,435,441,452,430,435,453,435,548,529,535,526,545,544,537,533,548,556,541,549,543,553,544,554,557,545,478,489,489,513,502,502,486,508,502,459,460,458,460,451,457,457,447,462,491,497,487,491,486,495,499,492,503,583,572,574,579,577,574,566,581,573,497,493,502,499,503,506,497,499,499,458,470,458,458,468,470,459,457,463,594,569,594,579,587,581,576,592,583,505,510,506,507,501,499,516,504,517,550,552,547,551,557,545,557,553,548,540,536,542,539,554,546,548,545,540,468,474,473,490,479,481,464,477,471,448,451,448,446,441,457,455,458,437,557,558,554,554,557,561,563,557,551,544,551,552,541,556,545,545,550,552,508,510,520,514,521,510,508,499,509,579,567,573,558,567,562,573,573,568,526,520,515,514,507,503,519,524,523,465,474,463,474,471,466,466,462,466,460,445,459,452,452,454,457,448,453,469,462,461,455,460,466,456,462,458,535,536,545,528,542,535,543,536,534,547,558,552,553,545,545,553,547,549,565,551,548,545,547,550,560,558,559,520,523,519,522,509,516,516,522,512,505,502,502,502,508,504,504,506,502,487,493,488,504,483,481,489,495,482,489,478,480,473,479,478,481,481,483,467,468,472,475,462,464,466,466,463,474,482,464,472,472,477,473,482,475,479,481,485,474,478,475,467,474,468,486,490,485,487,490,495,496,484,489,564,564,578,550,566,557,570,555,558,530,531,529,539,527,533,532,532,524,569,571,568,565,566,567,562,561,559,534,522,533,519,518,519,516,520,523,506,502,501,507,505,509,500,497,505,476,486,484,475,483,487,469,480,478,452,459,461,457,463,461,466,464,456,541,547,535,537,542,532,534,533,538,545,542,545,543,542,534,539,545,537,552,556,558,543,554,545,545,550,547,487,492,483,500,520,501,491,511,493,429,441,431,432,438,436,446,435,459,480,490,500,484,486,501,494,491,498,535,540,541,529,542,541,545,541,531,473,469,480,459,483,483,467,480,462,538,539,523,538,532,528,548,535,538,561,564,562,563,571,559,563,561,563,526,533,533,536,534,536,535,534,536,550,539,539,545,545,541,549,544,540,543,551,552,561,558,545,557,552,549,531,534,532,529,539,536,529,530,537,468,484,486,476,476,464,478,476,474,563,551,548,554,539,547,551,541,561,542,547,542,559,559,556,550,568,551,498,502,501,495,491,509,505,507,493,477,476,478,478,476,475,483,474,478,490,494,489,488,484,484,493,491,488,464,472,474,470,464,469,464,459,470,454,457,458,456,467,454,455,452,451,558,536,550,546,544,554,537,556,543,512,504,487,492,494,467,501,491,496,579,589,584,579,595,579,591,585,599,554,542,552,552,540,555,551,547,568,523,501,524,511,514,520,516,530,514,475,478,476,477,477,474,474,484,478,463,469,460,457,464,460,457,458,458,529,536,532,535,537,536,532,533,531,535,530,530,538,538,533,535,537,528,568,573,565,557,564,575,570,563,572,511,509,500,498,502,503,505,511,507,530,538,523,525,534,529,528,530,529,534,535,528,530,523,529,529,524,525,546,545,548,538,532,547,551,544,543,508,506,506,518,510,518,506,511,509,561,559,553,558,555,561,555,551,545,557,550,547,549,549,548,551,558,551,492,485,484,489,496,488,486,499,491,461,455,453,460,455,456,458,461,458,535,540,535,542,536,539,539,542,534,556,542,563,552,557,550,548,550,559,552,552,553,551,555,550,555,559,551,492,501,503,504,483,491,494,497,495,459,463,470,474,463,465,466,462,461,541,531,526,541,532,530,534,531,526,535,534,528,540,541,531,539,533,540,577,569,574,567,574,575,583,570,577,534,549,546,549,547,551,547,552,554,538,526,531,528,526,525,524,518,527,502,509,507,507,510,500,499,510,512,502,505,493,500,497,499,503,503,502,494,490,489,496,498,495,499,495,504,468,475,458,465,470,462,470,469,467,451,453,452,462,454,459,448,452,463,534,552,559,575,549,540,572,549,557,484,498,487,487,493,492,493,490,475,582,591,572,575,568,573,588,576,582,525,520,532,522,522,522,521,520,513,554,561,539,550,557,561,553,548,538,523,525,522,525,535,529,525,527,527,544,553,549,550,542,555,551,546,559,500,509,508,503,489,496,492,504,500,468,462,459,458,462,463,451,457,456,554,559,552,545,553,554,551,559,553,578,570,562,566,571,574,575,571,567,521,532,532,533,537,524,532,526,527,514,506,514,508,505,503,506,510,516,563,546,556,539,558,550,557,554,561,512,509,512,506,506,512,500,516,516,490,498,488,485,490,483,487,491,500,522,525,531,526,520,523,520,525,513,590,584,580,592,585,573,584,587,579,509,497,510,510,501,502,511,506,502,532,518,536,532,531,534,535,531,527,521,521,514,519,517,521,520,512,517,532,526,529,535,533,523,528,525,531,569,574,567,573,560,573,572,565,562,551,545,546,550,539,551,541,540,545,527,504,518,504,497,512,513,509,515,484,479,478,473,478,475,481,479,484,462,457,466,451,459,464,456,455,452,506,505,503,509,504,504,504,503,498,536,534,533,551,533,540,551,539,548,462,449,459,462,441,452,474,461,445,517,529,535,532,527,525,529,541,532,558,569,562,560,566,559,565,549,559,545,531,544,541,542,541,548,543,542,511,518,531,517,510,520,524,518,508,482,481,484,469,499,477,487,476,484,553,550,552,560,541,562,559,567,580,491,500,495,490,491,500,490,494,498,545,534,538,558,545,541,548,532,540,513,515,521,516,521,511,510,519,520,563,557,556,562,563,566,565,560,565,539,560,552,553,559,554,557,560,551,504,510,501,513,514,519,511,512,518,481,484,479,486,492,483,492,491,484,527,505,510,507,504,508,516,511,516,557,550,552,553,555,552,557,546,554,497,488,485,478,498,492,490,493,486,465,464,447,459,457,453,453,469,452,534,518,544,534,531,538,524,535,534,534,531,535,536,540,527,535,537,539,569,574,571,571,577,561,578,560,564,521,529,518,517,535,533,527,529,526,484,504,495,490,505,496,501,481,503,566,562,570,560,555,563,565,565,556,519,514,503,514,499,506,509,522,514,506,517,514,520,522,522,527,513,520,598,594,587,590,575,582,586,579,576,549,537,531,544,534,537,531,550,529,482,501,496,499,493,494,494,503,502,575,570,583,569,576,566,562,571,557,488,478,467,478,458,475,483,465,460,536,528,536,537,539,538,527,518,533,562,568,553,556,564,565,558,556,564,519,535,530,534,529,530,534,526,536,520,525,520,522,532,522,526,527,525,526,537,524,547,540,546,539,531,535,477,501,494,492,490,488,488,497,491,492,507,498,493,510,506,505,502,508,521,547,537,540,548,546,542,538,537,490,495,498,493,500,493,492,502,488,511,509,510,508,502,499,506,504,510,557,555,544,547,543,536,544,542,554,507,487,485,484,484,492,489,488,495,470,477,481,467,481,476,477,480,473,555,538,562,554,553,551,542,570,547,512,512,520,513,502,498,505,507,510,554,548,573,555,563,562,540,570,558,521,527,525,534,532,523,532,522,528,537,532,535,537,529,547,543,535,544,519,513,520,519,518,516,519,515,521,563,551,554,540,534,544,543,555,547,543,543,540,536,540,542,545,544,542,537,541,545,539,538,538,535,540,532,526,522,525,521,522,516,530,525,525,584,582,582,580,570,584,590,600,577,519,512,520,512,515,517,521,509,515,552,559,559,555,555,558,548,553,550,547,557,557,554,555,547,541,554,560,502,492,489,506,500,497,493,483,506,471,458,452,466,478,462,468,463,464,570,562,558,553,559,560,570,559,570,496,487,487,502,498,488,497,500,489,587,578,600,578,582,580,593,576,584,552,555,543,564,549,544,546,546,558,499,494,493,494,497,507,493,491,493,490,494,498,487,489,494,493,497,491,594,581,572,566,575,572,565,571,571,520,533,520,532,520,530,520,524,532,503,500,504,505,509,501,505,502,501,481,471,480,478,484,477,480,481,479,480,451,459,451,463,454,455,454,448,567,579,584,592,579,566,594,590,577,550,556,546,538,548,549,539,547,547,542,542,539,548,539,547,540,543,543,496,498,478,495,483,497,478,492,487,443,438,441,458,439,448,446,440,445,542,535,547,541,545,543,551,548,545,553,543,544,542,531,572,553,553,561,473,461,483,469,465,465,463,470,472,548,538,542,533,537,542,527,533,523,570,576,564,564,568,564,567,560,565,539,541,534,540,540,546,550,541,544,504,481,492,488,492,488,479,483,494,422,427,429,447,445,452,439,450,447,495,496,495,501,495,513,496,491,497,570,564,575,570,566,565,562,567,564,527,519,522,534,526,528,530,522,526,495,495,500,495,498,493,502,507,501,483,483,484,481,488,483,481,477,486,454,462,467,469,454,455,463,463,464,536,562,543,530,538,541,555,558,555,526,514,526,521,513,515,517,523,521,528,536,531,531,519,515,525,530,536,509,502,508,500,498,508,503,510,513,559,556,561,566,560,562,565,554,557,489,493,510,499,502,519,515,509,511,471,480,476,477,474,477,482,484,474,478,485,482,482,474,485,479,493,481,491,491,488,491,495,495,495,490,485,510,507,513,512,507,500,509,506,505,524,526,519,532,534,522,532,526,533,522,537,532,536,537,523,531,532,530,549,538,546,545,540,539,547,541,533,522,523,516,522,529,526,519,524,522,559,558,567,561,558,560,565,561,556,538,544,539,548,538,547,544,543,545,500,495,495,506,502,496,500,494,497,512,497,491,498,511,515,493,506,497,541,531,529,538,536,537,533,529,530,527,518,522,523,526,525,520,518,518,539,526,538,539,533,538,540,532,521,489,476,478,480,483,470,474,480,472,558,560,568,539,561,553,547,576,551,522,503,512,509,513,511,511,510,515,525,536,541,547,533,535,540,535,532,542,565,554,557,555,565,555,563,558,517,523,526,526,513,519,519,526,523,487,492,498,494,492,492,485,490,486,483,476,479,487,489,474,474,478,483,491,487,492,491,492,492,497,485,493,476,465,466,469,457,460,468,467,461,431,454,449,448,448,450,463,447,444,581,580,562,576,580,581,574,572,565,504,502,495,502,518,507,496,499,514,542,531,527,526,524,522,525,536,526,544,541,539,546,544,545,547,541,545,567,560,566,554,555,552,558,567,560,498,485,504,501,494,510,508,484,494,490,485,488,487,488,487,485,483,487,565,562,573,554,554,557,574,556,574,525,519,515,516,516,526,514,519,523,527,534,527,525,529,528,522,525,540,512,515,507,511,510,509,514,511,520,527,526,526,519,530,520,533,528,520,585,590,589,580,587,583,591,592,590,553,550,552,539,552,545,561,553,556,523,522,527,530,522,517,527,517,516,499,497,503,499,504,503,504,505,504,484,484,477,482,488,487,482,479,486,488,488,484,482,494,487,492,484,488,479,488,478,472,474,486,482,474,478,459,457,455,462,458,458,462,455,462,478,474,456,467,470,459,462,471,480,537,545,545,547,535,535,529,551,544,500,503,499,500,490,499,504,495,488,493,498,499,491,504,500,490,495,493,551,560,560,561,557,555,560,556,554,526,530,524,528,517,525,518,533,529,494,511,496,498,502,496,496,498,495,578,580,602,594,597,592,579,602,582,545,554,547,554,551,556,543,562,549,503,514,498,505,494,504,503,512,497,491,472,469,470,488,479,477,475,480,461,462,446,454,454,462,448,460,457,490,485,481,479,477,485,489,486,491,533,548,542,540,543,545,544,539,543,539,536,527,532,523,531,526,532,529,529,526,530,529,526,531,535,528,532,559,557,569,551,555,552,555,558,552,510,505,523,512,524,510,516,521,508,484,484,478,477,481,487,479,487,490,484,485,481,482,478,479,484,485,491,475,471,483,472,477,483,474,468,474,443,448,440,460,453,452,438,447,438,541,536,545,543,537,545,540,542,554,541,549,552,547,553,536,558,559,551,484,483,480,483,475,465,489,471,465,537,547,550,538,545,549,543,539,540,550,538,545,534,546,557,543,531,552,496,516,517,498,514,508,502,510,485,607,601,601,615,596,599,610,608,595,557,541,530,542,527,544,544,536,532,476,468,477,473,490,474,475,472,474,496,502,505,501,505,507,506,508,516,521,535,536,537,540,538,534,534,532,516,519,512,513,508,512,518,510,514,553,548,550,555,555,566,561,551,547,516,509,515,509,506,512,513,507,522,506,504,508,501,500,505,500,502,505,533,547,548,548,559,541,550,543,543,476,500,504,496,486,485,491,490,499,472,478,466,467,466,471,470,467,472,458,463,460,464,457,450,470,469,466,556,553,560,568,568,561,573,561,556,513,502,510,500,493,500,493,510,503,530,572,551,554,540,554,539,550,551,514,502,496,508,495,502,492,495,501,554,557,557,578,559,555,560,558,564,514,508,518,514,513,514,514,513,513,540,541,533,536,534,540,544,549,540,533,545,540,543,541,535,539,542,536,540,536,533,542,533,535,538,539,544,534,524,524,525,519,528,518,516,521,578,587,585,598,585,580,586,592,580,552,550,542,551,549,541,550,550,540,504,521,521,519,518,523,526,521,516,466,469,466,479,450,475,456,460,466,564,561,558,554,560,563,550,571,549,554,574,553,556,560,559,569,555,557,528,530,520,513,515,518,513,519,521,498,491,489,493,498,494,492,490,487,485,488,498,489,487,490,487,484,493,521,514,521,528,531,521,523,525,529,570,584,568,572,579,582,591,573,571,553,533,543,537,534,534,527,540,533,524,517,518,522,525,524,528,515,524,537,531,534,535,531,534,523,527,533,524,513,509,514,511,516,518,519,521,518,532,528,533,521,539,542,526,531,513,502,511,507,505,504,507,509,516,552,563,556,559,559,568,553,555,545,510,510,514,513,502,500,498,513,507,466,471,462,468,473,466,471,468,463,438,434,439,445,429,442,432,440,436,538,523,546,545,543,548,529,544,534,570,560,565,561,570,570,554,557,568,528,537,540,537,528,532,542,528,533,524,526,516,525,527,521,528,524,525,547,544,540,548,551,540,548,551,541,490,506,503,488,507,513,502,497,485,462,459,464,451,453,460,458,464,462,469,478,472,473,482,467,463,468,467,549,552,563,542,553,534,552,553,553,498,506,489,502,498,501,506,492,496,514,522,522,525,507,515,510,518,511,541,541,543,539,549,537,539,537,542,525,521,525,522,522,522,520,524,524,554,555,553,561,553,551,555,553,557,534,533,531,532,538,537,532,539,532,515,525,520,514,516,524,521,517,515,536,526,537,523,526,529,531,522,533,565,558,557,556,562,543,562,541,556,503,516,513,516,512,509,509,506,524,532,538,528,532,526,527,540,526,528,557,541,552,559,557,551,558,563,558,504,495,511,504,516,515,512,501,501,569,588,561,591,572,581,562,574,572,483,479,486,484,481,481,482,481,478,522,521,535,531,529,520,524,521,525,542,549,542,539,548,551,533,536,546,553,549,556,558,559,552,555,552,551,506,511,504,497,489,507,488,508,486,475,468,466,471,465,464,464,473,466,573,567,563,571,567,567,565,559,571,450,465,472,463,467,465,472,467,475,533,528,523,539,532,526,524,529,522,569,562,570,566,568,566,576,569,561,545,548,539,547,549,547,550,548,544,532,544,543,538,553,549,538,536,540,484,488,480,491,476,484,503,483,496,445,448,449,447,440,432,448,444,447,526,528,528,525,528,525,525,527,528,509,519,519,515,513,522,518,518,518,530,534,520,527,537,531,528,528,527,569,573,566,574,560,572,572,565,570,506,506,512,504,504,504,508,511,498,542,558,545,550,553,560,551,554,563,552,541,550,545,541,541,552,549,550,512,499,507,515,498,504,495,516,505,487,488,484,489,485,486,484,487,483,500,498,498,498,500,501,499,495,493,474,478,476,468,485,474,478,475,480,480,472,481,472,471,479,480,477,472,590,597,607,597,596,601,598,604,585,514,504,509,511,508,495,508,516,501,539,545,549,540,549,539,546,535,543,573,561,563,564,562,566,563,555,568,536,527,528,535,532,533,510,537,512,517,511,515,517,509,517,524,510,510,559,569,573,558,561,580,564,573,564,526,533,523,508,516,523,521,530,518,496,508,503,505,505,509,505,511,512,480,473,473,474,478,486,485,480,479,436,445,427,431,432,426,429,442,433,457,456,459,472,455,465,454,464,454,609,578,599,588,595,599,597,594,588,549,546,549,552,549,545,544,551,556,496,491,490,485,485,490,493,485,489,462,472,464,456,470,454,463,469,459,543,552,559,543,548,534,547,549,560,510,508,510,519,516,509,522,508,518,555,561,550,563,545,565,552,563,559,551,552,549,553,550,549,551,549,552,514,521,513,513,506,506,514,514,506,489,488,481,487,480,483,479,481,485,488,488,489,496,488,490,497,481,485,541,520,528,520,524,523,526,523,527,598,570,576,574,583,581,579,582,578,539,503,498,527,531,539,522,507,510,484,474,476,462,469,471,469,476,484,577,570,591,581,573,589,576,587,568,536,525,533,537,516,518,531,515,519,505,509,516,501,504,501,503,498,506,549,552,550,554,547,554,549,559,543,535,549,542,531,531,539,539,537,533,596,567,579,570,574,579,581,574,574,515,533,513,513,519,528,532,515,523,477,479,486,487,484,478,476,488,474,473,446,468,459,461,456,451,457,455,578,581,575,598,584,596,584,582,591,549,556,545,544,557,556,549,546,551,504,517,519,531,525,525,516,516,521,483,475,481,478,476,480,472,474,471,499,493,501,499,497,477,495,491,489,552,553,545,549,557,550,558,552,556,500,470,488,479,496,476,481,487,487,497,496,492,482,486,488,494,483,493,511,512,511,506,509,511,504,505,509,540,527,529,536,533,520,529,531,530,539,548,542,538,544,548,542,542,541,551,557,541,547,553,564,550,560,550,506,509,511,503,500,505,509,516,516,460,461,452,452,452,450,452,468,452,472,469,481,471,470,457,461,473,471,599,592,587,599,594,581,588,599,582,562,547,536,534,546,553,543,546,540,485,491,487,483,488,483,492,487,492,490,495,500,493,486,498,489,496,502,531,529,529,529,528,522,536,530,518,519,521,507,504,506,511,516,502,511,566,552,549,559,556,551,556,549,552,510,522,520,529,514,519,513,533,517,493,490,490,497,497,489,488,501,497,536,544,560,548,573,550,561,551,551,489,495,493,501,502,489,505,503,491,508,507,507,510,511,498,507,509,511,554,549,548,541,532,546,548,548,546,568,548,560,554,553,557,572,561,561,511,512,512,506,503,525,521,514,505,556,564,557,546,559,568,561,544,569,516,497,493,504,511,510,497,501,503,483,490,489,494,497,489,489,492,490,547,548,551,551,547,536,546,542,549,529,529,525,526,527,528,535,532,526,521,525,525,523,527,522,530,533,525,570,563,554,552,567,565,560,566,554,546,542,550,544,547,538,546,542,547,500,486,501,496,502,488,503,494,498,496,489,490,492,492,490,489,494,498,524,511,520,519,526,519,520,506,525,584,573,585,564,580,572,578,583,579,545,540,546,535,541,536,542,549,541,505,504,514,504,502,501,501,509,511,525,541,533,531,540,535,537,536,536,530,535,542,543,539,536,539,540,540,561,548,555,544,548,548,548,543,554,480,489,488,500,472,492,501,485,477,549,561,551,555,558,554,558,553,555,544,555,552,548,550,541,542,541,544,524,525,521,519,527,518,519,521,526,559,556,555,556,548,547,546,564,550,506,525,510,526,523,530,522,527,523,440,454,462,465,460,448,456,449,450,527,536,531,538,533,529,533,545,535,566,567,556,570,569,559,571,563,566,495,530,510,507,502,512,509,508,503,534,541,545,544,552,541,541,548,529,552,539,540,549,557,554,538,539,539,526,525,531,523,524,529,531,523,527,556,536,542,553,549,558,546,545,552,509,505,505,510,509,503,513,499,507,485,497,484,491,482,484,481,483,491,497,494,500,500,502,494,501,491,500,473,491,486,488,497,488,493,485,485,489,484,490,483,481,481,490,488,487,493,503,491,501,494,498,502,498,500,479,479,488,478,472,484,483,474,492,461,459,460,459,454,457,468,444,449,507,512,498,496,504,493,507,502,506,550,548,553,560,556,555,544,548,550,504,512,505,503,510,508,511,512,504,546,555,546,543,547,541,544,550,544,542,544,540,543,556,542,545,536,552,503,513,514,516,517,524,518,517,515,528,535,537,535,539,537,537,533,535,492,490,480,477,485,482,477,492,492,468,472,482,482,481,477,478,472,479,557,542,562,551,554,543,549,558,541,509,518,513,510,506,515,509,526,512,491,484,488,485,491,492,492,491,482,502,502,499,500,498,498,500,495,499,553,559,552,546,563,545,555,556,552,532,532,531,537,531,537,534,533,533,518,519,517,502,518,514,520,516,514,533,534,535,530,539,533,535,523,527,565,556,561,567,557,561,558,550,568,490,484,493,491,505,504,496,497,510,463,481,474,472,465,472,480,471,466,546,535,542,553,562,546,534,554,537,481,476,482,486,496,481,488,486,489,535,538,535,527,530,527,517,537,529,539,538,532,536,534,533,534,537,539,562,573,559,562,554,551,576,550,579,509,533,535,534,522,522,525,531,523,497,492,507,501,501,502,510,504,495,557,551,559,547,561,559,555,552,553,552,545,539,547,547,541,542,549,542,526,536,535,539,542,536,537,530,533,527,534,527,527,529,535,528,534,524,553,543,531,538,547,555,541,537,528,525,514,510,512,507,498,507,516,508,559,562,547,548,559,555,541,532,546,501,512,518,515,514,518,502,526,503,493,481,487,485,486,486,483,485,490,473,487,475,490,487,475,478,480,484,470,469,465,469,464,459,464,467,466,442,425,428,440,441,431,429,437,444,494,492,502,487,494,499,492,503,490,566,573,564,563,564,549,566,555,560,522,511,517,520,517,520,514,512,511,503,498,506,504,500,502,501,497,500,478,473,472,466,475,467,467,471,477,450,443,439,445,447,448,438,434,441,488,480,487,483,496,487,496,487,494,525,531,537,539,535,542,537,543,535,525,526,521,529,526,521,520,521,526,566,567,563,557,568,566,559,566,561,552,555,546,556,555,548,558,552,557,512,524,500,511,519,531,520,516,520,479,473,482,479,480,483,485,490,474,468,463,463,468,460,464,459,460,467,557,554,555,551,566,559,571,578,553,477,483,489,483,497,484,485,490,487,566,578,577,567,586,575,583,574,576,530,521,531,519,528,512,522,524,523,567,577,579,583,589,578,579,591,580,534,535,535,536,529,530,532,526,539,520,518,517,525,526,521,520,516,522,557,553,554,555,554,548,557,556,550,530,530,532,542,534,528,527,529,538,521,525,516,520,523,521,524,516,524,538,537,543,535,536,538,533,533,540,572,556,551,565,555,554,556,569,548,542,530,536,527,528,531,532,524,535,554,546,540,550,546,532,528,542,532,469,478,472,475,473,470,462,472,479,513,497,492,491,503,497,502,499,505,541,555,546,556,556,551,564,549,547,545,522,532,528,526,524,519,522,526,490,485,487,488,488,482,481,486,487,538,551,553,544,542,549,558,546,540,512,514,516,519,513,512,517,518,509,531,546,541,535,542,544,537,525,545,565,559,556,555,569,555,570,561,561,496,494,510,511,504,512,492,501,488,454,458,459,454,453,464,451,452,452,480,475,473,476,482,477,483,483,479,552,586,573,566,549,562,559,573,549,514,522,520,518,513,520,518,514,525,552,542,540,541,538,532,540,538,538,506,500,493,492,492,501,495,503,503,551,544,547,538,540,544,554,542,546,567,551,575,571,569,560,560,572,559,536,542,541,524,542,546,537,544,547,502,487,491,490,490,494,498,503,492,474,473,470,466,471,469,469,471,470,425,439,432,440,444,422,441,449,434,557,529,535,542,531,538,537,532,546,563,568,551,565,555,556,572,564,559,528,535,518,520,526,530,525,525,515,558,566,553,563,565,556,551,566,547,511,508,511,522,504,510,504,507,512,519,538,528,529,518,533,532,532,528,570,546,555,548,548,547,538,552,553,529,527,528,522,523,526,529,528,530,557,562,565,562,558,558,560,556,564,537,552,558,551,545,547,534,544,545,486,498,510,496,516,500,499,495,500,491,491,489,482,496,488,492,489,498,533,528,523,514,522,528,518,530,522,591,592,589,588,580,591,579,583,587,544,552,550,550,556,551,553,542,551,502,506,497,491,489,492,505,495,490,511,503,502,508,517,501,511,512,499,562,567,567,561,567,559,573,565,564,527,545,534,540,532,527,533,527,535,515,504,518,517,513,517,522,519,504,563,555,562,556,556,557,544,566,564,502,514,505,513,493,507,507,510,518,514,519,522,512,514,514,513,525,510,546,548,542,546,542,543,549,543,537,509,502,500,512,509,513,502,506,516,526,544,547,543,537,546,549,551,546,466,477,472,474,484,476,482,482,488,496,497,498,499,497,482,491,494,503,546,561,561,555,561,556,558,559,558,529,530,533,523,526,527,533,534,534,507,492,503,509,514,512,502,507,505,557,569,551,554,554,545,566,563,552,511,502,515,502,508,502,511,500,501,483,479,481,484,482,482,481,483,481,450,458,462,466,467,459,467,459,463,451,449,443,456,445,447,462,462,458,543,541,549,558,545,542,556,539,537,519,522,520,514,516,525,512,514,521,536,542,538,541,539,538,540,541,535,483,481,476,480,477,487,482,471,478,444,439,422,435,443,440,435,435,433,548,543,541,538,532,539,538,544,543,584,572,570,573,576,559,573,557,564,537,545,538,532,535,553,552,542,544,492,480,500,491,488,491,495,487,487,480,479,472,463,477,473,472,475,473,503,505,503,509,504,505,505,504,505,530,537,533,519,533,546,532,530,523,499,485,487,490,495,492,482,504,494,598,602,592,597,591,592,587,596,579,551,558,550,555,562,556,546,556,545,525,540,542,546,536,545,529,540,536,477,493,495,499,500,493,496,503,502,480,462,471,457,464,458,457,459,467,503,500,506,513,509,502,514,507,504,537,544,540,544,540,532,538,535,540,477,449,462,467,456,455,446,456,451,524,529,522,524,527,531,531,538,530,534,536,537,537,542,550,542,541,536,536,534,545,546,551,541,560,547,544,476,472,476,462,472,470,461,475,486,488,485,475,474,476,477,479,471,480,564,558,560,559,565,571,569,575,571,521,508,494,492,486,491,516,489,508,470,455,463,464,451,469,452,462,451,517,498,513,499,511,501,505,500,503,551,537,542,550,542,542,544,540,543,523,524,520,527,531,526,523,528,531,536,536,532,522,538,545,552,541,548,520,507,505,517,520,513,517,513,518,538,560,555,565,565,555,551,566,549,519,525,513,512,515,514,525,515,519,472,488,489,488,483,490,484,482,486,443,460,464,458,456,459,447,460,459,476,487,480,483,471,481,488,482,484,536,535,523,530,522,529,525,522,520,568,568,569,549,554,563,561,557,565,476,486,468,482,487,471,484,485,484,536,527,533,536,524,529,536,538,526,573,567,563,574,560,568,562,570,571,545,546,543,557,553,543,543,550,550,513,517,505,526,525,523,512,505,510,471,480,478,475,475,491,481,474,474,448,444,441,443,452,442,445,462,442,548,539,562,556,549,563,555,561,553,548,547,551,534,550,554,550,547,541,509,493,503,498,504,514,504,509,505,491,483,483,477,483,478,476,480,484,471,467,472,470,470,465,466,469,465,490,501,503,493,493,492,499,496,500,546,554,542,558,546,553,554,552,546,527,534,518,513,522,522,530,520,516,514,495,499,495,502,506,497,499,505,500,484,479,482,479,480,482,481,486,491,510,505,502,505,505,510,507,508,519,540,533,537,533,549,533,544,539,501,513,505,516,503,513,517,510,510,551,551,539,549,552,547,552,540,544,498,493,499,506,504,494,497,509,495,530,530,541,538,528,527,539,534,539,521,520,518,520,530,525,522,520,522,515,514,510,516,510,518,513,521,511,529,530,535,534,532,526,525,533,538,579,572,573,565,581,570,570,576,569,542,549,546,546,545,545,537,537,531,494,493,494,503,483,502,498,496,497,496,494,496,496,494,500,508,506,493,505,508,504,511,508,505,508,509,513,549,536,534,545,548,546,545,542,545,571,575,576,555,569,557,564,563,566,533,524,533,530,520,533,522,533,539,563,563,558,572,569,562,567,558,564,511,524,522,524,523,527,531,518,531,547,541,543,542,536,547,551,539,540,576,570,576,570,570,573,570,563,582,517,510,514,515,516,513,510,517,511,484,487,493,491,491,490,482,493,489,494,493,500,503,502,499,493,500,500,561,555,567,552,550,544,564,555,558,536,536,532,533,540,534,531,543,526,535,533,525,531,537,537,531,528,537,563,562,563,565,561,549,552,558,567,504,496,514,510,520,523,506,520,517,479,475,478,483,480,480,480,484,477,460,470,462,467,452,456,464,465,468,559,538,559,531,565,554,561,551,548,508,516,498,512,512,512,508,514,508,547,563,564,551,550,555,553,550,546,525,525,519,518,526,521,520,528,528,494,496,500,501,496,507,497,485,496,584,578,577,592,573,592,586,588,602,511,509,509,517,514,496,508,520,512,533,524,530,528,537,537,530,527,536,555,537,547,549,550,540,548,542,542,553,544,567,554,556,549,569,550,551,513,527,515,538,523,524,530,516,528,497,508,501,504,497,500,508,501,507,456,455,461,460,465,450,468,457,460,475,466,466,469,466,467,482,479,474,576,585,561,572,590,578,572,574,584,479,488,486,487,499,480,497,482,471,548,539,542,537,548,537,542,552,543,537,540,540,540,534,536,546,533,530,491,484,476,455,469,475,466,472,476,507,491,502,499,501,503,501,495,500,555,536,533,530,541,533,523,527,518,469,470,476,492,482,479,483,496,484,544,561,549,563,547,547,559,540,539,502,511,517,515,516,507,507,514,513,543,543,543,546,544,550,531,530,538,513,512,519,523,523,507,529,521,514,587,593,596,585,586,585,572,592,582,545,538,532,539,543,528,539,543,538,557,563,563,559,550,570,559,557,548,484,451,471,473,485,468,476,480,476,494,486,496,489,488,476,480,494,469,552,567,582,571,583,565,576,557,561,515,506,532,527,534,527,520,521,508,499,504,510,500,501,496,499,500,502,464,458,455,450,450,461,457,449,462,496,496,492,487,484,494,491,488,499,545,539,554,547,554,539,546,540,539,527,526,528,525,511,519,525,519,519,581,582,594,603,588,586,589,586,588,529,549,540,539,541,530,545,543,531,511,512,515,517,514,514,515,509,522,586,583,593,590,584,602,577,589,589,542,542,546,548,547,550,552,546,549,541,538,533,531,534,528,527,529,536,537,523,530,527,526,532,531,526,534,529,553,549,536,547,546,559,556,546,518,504,500,496,497,497,488,509,503,448,460,465,463,457,459,467,463,465,460,457,453,460,459,453,461,452,468,458,460,456,462,447,464,457,461,455,591,590,593,583,591,576,567,585,593,521,522,531,525,516,517,518,518,525,580,589,579,589,576,597,591,592,581,555,551,553,560,542,554,559,560,551,560,550,548,556,543,549,559,550,546,514,527,521,532,531,519,521,520,533,504,498,503,505,500,500,498,503,498,482,488,483,487,487,485,476,488,475,489,500,506,490,497,491,500,501,497,557,558,555,547,550,561,559,561,556,523,531,539,532,537,531,536,534,532,523,524,532,527,524,531,530,532,526,537,536,533,527,524,528,531,531,523,495,497,489,483,488,484,490,485,480,551,547,555,550,544,550,552,552,541,520,526,527,521,521,521,524,524,525,560,535,544,542,560,559,546,544,538,488,490,483,489,489,496,494,494,488,470,467,474,470,475,474,472,481,471,495,501,494,506,499,497,500,503,501,539,539,542,538,534,537,535,533,535,527,530,519,525,516,522,521,526,526,538,530,522,532,537,530,530,524,525,477,474,480,484,472,487,480,469,473,583,572,601,584,594,588,587,582,579,549,533,539,522,528,534,537,536,516,520,504,512,513,509,512,508,518,513,555,552,532,546,544,552,548,559,549,498,496,485,494,499,488,496,497,498,468,461,455,462,458,468,457,462,462,491,498,501,502,501,498,487,507,503,533,548,553,545,553,548,551,547,551,521,529,525,526,523,531,529,520,520,554,563,555,568,560,573,568,560,568,500,499,510,518,514,512,503,509,507,567,558,560,553,575,556,556,567,565,530,515,526,517,523,518,536,515,519,506,506,508,504,515,517,510,499,511,484,481,482,480,484,482,483,483,483,512,519,516,502,514,508,509,497,509,573,552,555,563,558,561,549,554,549,495,509,504,492,494,494,512,496,505,478,467,480,472,468,464,473,468,469,491,509,508,509,499,498,496,497,502,549,561,556,552,557,544,551,568,546,523,511,502,523,529,524,504,501,522,484,478,492,474,480,485,487,485,489,504,504,505,493,511,498,502,498,504,537,543,544,545,543,548,542,543,542,554,555,550,551,562,556,561,561,549,518,505,514,497,507,498,504,491,507,467,464,473,464,466,470,463,471,468,445,448,437,436,441,456,443,453,454,555,555,556,554,559,557,542,550,542,549,554,553,557,545,547,545,539,550,501,514,502,516,508,494,486,506,502,448,439,438,441,449,439,433,445,427,476,496,487,493,504,489,483,494,491,532,534,537,532,537,544,525,527,527,462,475,480,477,485,472,478,481,478,552,581,546,557,553,548,563,558,550,490,474,477,494,483,486,503,497,496,544,568,559,566,572,570,563,573,561,463,476,467,471,454,457,469,461,465,520,524,519,516,529,524,522,526,529,518,516,514,511,515,521,507,510,514,533,528,533,531,524,521,529,537,525,564,558,566,555,564,567,559,571,561,520,525,517,522,531,523,519,534,509,577,582,590,580,579,587,577,578,578,485,527,546,513,516,556,542,518,524,471,460,454,465,462,462,451,472,462,554,547,550,549,543,553,547,541,548,539,542,557,560,558,547,545,544,540,508,512,500,514,505,510,506,520,508,487,486,484,484,487,474,478,478,477,479,485,472,469,478,476,476,476,475,501,505,504,501,502,507,503,512,502,565,563,571,573,561,570,564,567,565,549,543,549,538,541,551,546,547,545,529,510,507,516,504,512,508,510,509,485,481,490,481,488,478,481,478,477,467,465,465,465,474,463,466,469,463,440,437,445,438,435,434,435,423,431,499,495,511,501,500,502,497,504,504,559,560,565,556,568,564,569,551,562,516,517,521,516,520,526,521,512,512,493,501,494,490,502,488,488,490,496,477,471,472,470,467,474,470,464,461,481,483,478,483,484,482,480,482,488,500,521,516,507,521,519,514,508,512,580,577,574,585,579,577,572,577,584,519,523,525,513,530,523,525,518,526,571,577,584,581,569,583,580,575,581,552,544,549,548,545,549,548,550,548,528,515,524,518,520,519,530,528,519,503,491,506,504,494,497,497,499,502,584,572,591,594,575,599,580,585,590,496,512,511,519,513,520,527,521,523,543,547,543,548,538,546,548,544,547,545,543,543,549,548,537,546,550,542,516,520,528,517,521,520,517,529,520,535,546,550,544,543,549,536,541,553,511,510,500,501,511,502,502,507,508,533,525,533,520,529,536,529,531,538,529,527,531,525,527,529,536,532,530,580,555,567,564,575,564,565,588,567,542,529,530,535,530,534,539,527,549,466,482,478,473,476,495,492,489,486,469,446,461,452,463,461,452,451,458,559,553,567,561,578,575,573,570,565,518,534,529,529,530,526,533,538,536,525,514,520,521,523,523,523,520,524,526,533,543,538,533,546,530,533,536,528,523,522,521,523,515,524,517,521,562,547,552,554,549,563,545,546,548,551,547,551,550,549,545,545,539,552,549,544,543,544,540,536,545,535,540,480,484,488,492,492,509,495,496,492,446,435,448,436,450,444,441,447,445,506,484,501,495,492,489,482,490,493,562,553,549,553,563,555,556,553,545,492,504,502,497,511,512,505,512,515,481,478,486,491,483,488,492,482,490,471,469,475,468,474,473,470,462,473,508,499,500,506,499,506,506,503,506,558,557,551,552,554,560,550,548,553,539,543,530,540,534,537,536,535,534,580,572,570,568,569,573,575,560,571,511,522,510,514,516,521,519,517,517,461,451,466,467,458,457,463,466,462,473,466,469,469,473,478,479,485,474,570,563,568,582,552,557,569,551,560,495,499,492,490,497,498,500,492,503,567,549,543,552,550,551,546,558,548,503,513,509,508,508,518,504,507,511,540,534,528,532,534,534,537,532,532,552,562,555,547,558,561,559,548,567,477,482,473,470,477,479,484,481,486,463,462,473,472,478,480,478,477,485,545,566,556,577,550,563,556,556,552,480,482,478,457,484,485,470,480,477,466,471,472,451,460,462,460,462,458,577,601,587,579,583,576,597,590,597,528,541,542,533,531,545,544,531,548,496,481,481,484,485,490,496,488,494,500,486,495,487,487,480,485,491,492,520,524,517,522,522,517,522,520,517,546,543,551,548,549,555,548,551,543,528,519,529,532,527,522,523,532,526,557,538,545,547,542,550,554,546,545,493,488,495,491,501,499,494,500,498,515,508,515,505,515,509,500,512,502,547,549,541,540,547,551,543,536,545,531,522,526,530,537,524,526,521,532,544,541,545,555,547,544,543,539,533,512,488,484,490,489,497,480,481,491,438,435,441,438,439,436,432,438,440,494,488,494,497,488,485,489,489,488,546,556,553,550,546,560,556,552,554,506,502,507,509,507,518,499,504,500,487,485,489,481,485,483,485,490,490,470,469,476,467,470,475,466,472,469,524,496,511,495,498,506,506,507,506,564,562,551,556,562,550,562,552,560,524,521,524,524,523,528,528,523,527,501,496,495,495,505,506,502,501,490,554,565,577,570,567,566,569,570,560,518,514,505,521,515,506,519,516,501,497,493,491,489,493,488,492,492,487,515,502,506,506,512,507,509,512,508,539,563,548,543,548,541,531,548,546,500,489,497,488,497,496,483,491,489,498,490,497,495,500,502,496,495,496,557,544,554,553,543,547,555,542,545,532,518,524,530,521,527,523,526,519,565,559,565,562,560,564,563,547,558,533,518,512,519,517,524,529,525,527,563,545,546,534,552,539,543,552,552,515,511,506,522,504,506,512,509,509,480,487,487,486,488,486,484,484,478,479,482,484,480,478,484,487,488,485,495,491,492,486,492,484,495,489,487,467,455,464,454,458,467,460,459,459,505,485,483,486,485,481,479,486,482,570,564,567,563,554,564,554,563,566,503,510,511,504,505,505,506,516,509,469,468,462,463,454,461,462,460,457,489,500,491,493,504,503,492,497,506,533,546,551,528,550,551,550,548,546,516,489,497,500,513,496,492,498,502,474,468,465,468,478,466,469,468,466,443,453,444,435,448,446,441,449,444,555,549,551,552,547,538,553,538,552,543,546,544,544,550,542,545,538,548,525,522,512,517,514,519,515,516,516,523,515,521,524,521,521,522,524,520,565,579,583,588,591,582,575,588,578,504,525,519,536,520,513,529,535,506,461,474,484,484,471,476,472,476,481,545,553,543,556,573,547,551,558,555,478,493,480,485,480,493,500,484,491,578,576,568,572,584,571,568,569,573,549,541,535,538,542,544,536,542,533,524,524,530,525,522,513,529,525,526,549,563,555,549,571,544,549,574,558,473,499,510,491,503,498,497,503,500,592,591,591,598,578,586,577,581,579,534,544,539,542,534,547,543,548,554,491,497,499,501,500,498,495,489,494,526,515,512,517,508,517,512,507,522,559,555,531,535,536,546,535,550,541,487,476,482,486,470,488,469,482,490,485,506,496,496,495,501,506,499,511,560,550,551,554,559,548,557,554,555,495,492,494,478,506,491,486,491,484,478,483,486,482,479,476,486,481,484,560,565,564,581,581,556,558,560,552,497,488,494,493,501,491,494,491,484,467,473,467,456,465,477,468,474,467,573,567,567,572,553,563,565,564,567,560,557,557,553,562,562,561,564,557,508,498,496,492,490,496,495,490,498,459,442,453,446,447,444,443,450,443,557,555,553,542,558,555,562,555,554,551,550,558,557,536,547,544,551,547,490,491,485,483,499,487,500,500,487,567,558,567,572,567,570,568,563,565,554,552,557,554,558,567,557,567,561,502,499,504,497,497,495,491,495,481,468,460,466,473,463,462,466,476,475,566,556,561,564,559,563,557,566,561,557,539,559,563,549,553,543,552,540,507,514,509,499,509,497,507,505,507,546,560,550,563,560,558,566,565,575,530,520,516,522,524,517,516,526,529,524,523,532,533,526,525,524,523,520,548,543,556,542,549,546,557,557,558,518,515,514,513,518,521,515,522,523,526,529,527,527,528,526,525,524,514,479,476,486,473,483,485,489,492,498,574,542,567,556,560,553,556,563,543,508,499,498,494,532,491,502,504,498,459,462,467,466,470,464,462,462,469,461,458,460,465,453,446,466,458,464,547,551,570,554,557,535,540,555,549,513,519,514,511,515,513,514,521,514,528,526,532,528,530,522,517,524,537,524,518,516,516,513,516,513,516,518,544,541,548,543,546,545,549,549,547,585,575,562,569,572,570,586,569,569,538,518,508,509,537,520,512,528,513,484,493,494,492,487,493,491,492,493,511,510,501,504,506,512,500,504,502,532,539,531,534,527,538,522,538,528,500,503,492,491,486,497,492,498,494,555,537,555,555,545,542,562,550,552,526,524,524,529,520,521,523,517,522,532,542,532,529,547,544,541,528,536,493,492,491,495,489,485,486,500,497,484,499,494,493,496,495,492,495,501,575,552,551,567,559,562,560,553,554,549,540,542,532,544,540,540,541,534,502,496,497,495,489,493,492,490,504,471,472,475,474,473,475,461,474,465,465,472,472,478,468,472,469,470,469,560,530,548,545,528,534,559,540,540,485,470,476,474,473,476,468,477,469,505,489,491,495,509,497,501,507,490,554,548,558,542,548,542,553,547,544,492,498,484,498,495,500,499,505,487,496,492,494,496,497,497,499,490,495,561,559,544,557,555,564,560,547,551,528,539,533,530,527,532,537,525,530,528,528,530,525,525,523,526,523,522,544,542,541,537,538,546,541,538,545,530,531,524,529,529,532,535,529,528,548,554,547,547,564,562,553,559,547,501,500,503,514,507,503,499,508,505,452,453,450,464,455,452,453,462,457,449,446,463,444,452,458,462,446,454,532,535,531,527,540,541,543,539,539,528,522,529,528,524,522,523,524,527,541,545,551,535,545,544,539,543,545,556,552,561,562,565,562,554,564,559,524,526,511,529,525,523,520,523,524,505,502,503,502,503,504,500,506,500,487,485,484,482,479,479,479,476,471,433,432,435,442,429,444,440,454,452,536,538,543,548,536,540,536,549,542,556,549,566,570,565,575,570,570,562,545,498,515,528,538,522,521,506,505,473,450,454,450,465,454,455,443,462,519,522,524,516,530,527,529,523,527,539,542,544,548,535,547,543,552,547,540,564,562,551,558,557,557,556,551,522,512,508,516,513,516,520,519,515,483,481,491,473,487,489,477,491,493,489,489,490,493,484,492,484,497,496,466,477,472,474,476,480,479,472,483,474,468,467,456,459,457,461,471,463,513,508,512,517,503,508,505,515,504,561,565,560,555,559,563,555,548,565,507,499,515,524,505,499,497,499,502,464,453,456,449,444,443,452,445,451,454,477,462,466,473,461,456,478,473,567,585,592,586,595,575,580,600,585,544,534,531,535,535,533,535,539,526,563,556,564,555,557,558,551,562,550,532,536,533,537,531,531,529,535,532,560,562,554,554,568,562,561,554,561,526,530,519,525,523,508,529,523,517,501,510,506,499,502,504,500,503,507,489,494,482,487,482,486,482,484,489,483,486,485,480,484,482,482,478,477,445,456,446,459,454,438,449,451,455,462,472,463,470,472,476,464,472,469,585,586,574,585,603,598,591,584,580,547,562,555,541,555,549,547,552,552,501,491,507,506,504,500,497,505,494,477,491,491,490,483,483,490,491,491,495,489,495,496,492,485,496,493,492,485,479,474,485,484,483,481,483,480,444,443,442,453,459,429,447,440,446,551,548,545,551,535,550,562,544,548,551,546,549,555,546,541,556,553,540,503,497,497,483,484,496,492,500,490,439,442,433,450,438,450,449,440,442,541,531,531,540,541,546,535,533,531,553,544,550,543,543,552,546,550,555,483,493,483,490,502,489,501,496,503,444,448,441,452,433,432,452,425,442,517,515,523,515,507,506,514,520,523,538,538,536,538,534,521,530,533,526,549,550,552,547,560,541,549,537,555,471,474,477,495,471,470,478,467,470,549,542,542,540,546,546,539,543,543,538,551,538,547,552,540,543,557,541,525,520,520,525,518,523,520,524,520,535,530,539,548,550,552,542,540,543,538,532,531,528,529,533,530,529,535,560,567,562,553,576,583,562,563,561,536,509,510,514,530,496,517,514,528,481,487,478,481,487,484,474,482,482,467,469,465,477,462,469,468,463,464,477,473,475,471,476,471,476,475,473,493,492,493,484,497,499,494,495,494,470,465,466,468,465,471,475,461,468,479,471,456,464,461,471,466,462,477,525,551,542,561,555,544,530,555,551,517,510,517,508,513,511,510,508,506,571,578,583,572,568,562,583,577,563,510,525,514,521,517,530,523,507,521,483,479,488,483,493,486,483,488,491,507,505,504,495,505,496,505,499,502,545,550,551,552,553,555,554,553,557,509,509,501,512,502,500,508,500,513,531,542,533,537,534,538,529,535,538,545,547,542,548,540,544,543,541,538,555,546,556,561,564,555,557,562,562 0 233.909891 0 0 0 diff --git a/test/dna_prefix_slow5.exp b/test/dna_prefix_slow5.exp index b40c84e..30670b3 100755 --- a/test/dna_prefix_slow5.exp +++ b/test/dna_prefix_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN106 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!7468!- 0 2048 -272.365141 748.5801 4000 68695 522,519,524,518,514,517,517,519,509,521,531,525,519,517,521,524,509,519,520,514,518,520,519,520,509,521,522,524,521,528,515,520,517,515,529,518,522,518,524,520,517,520,515,519,517,517,518,525,521,512,518,515,516,517,521,528,516,526,515,521,519,526,512,518,519,524,521,525,520,511,514,520,518,521,523,518,522,516,508,514,512,516,520,520,519,515,517,511,516,523,517,523,515,524,524,515,519,519,519,525,521,519,523,525,522,514,525,519,523,523,516,523,518,519,514,516,528,516,522,527,523,532,517,523,515,516,522,526,516,523,517,522,519,519,513,521,522,517,519,525,513,523,509,516,524,520,520,516,525,520,520,548,544,537,544,536,543,552,542,543,545,544,548,538,540,541,531,569,561,555,559,552,554,553,560,512,486,502,489,488,504,495,478,492,490,495,499,481,483,466,487,487,488,478,492,492,486,478,478,475,483,486,478,482,570,601,600,603,598,585,600,595,589,565,558,557,561,546,554,558,554,549,560,521,513,518,513,529,511,508,511,515,520,516,514,506,495,497,491,489,487,492,494,492,487,464,470,469,476,471,472,469,469,501,489,491,486,489,499,499,493,527,515,516,516,519,523,520,521,473,476,568,587,595,589,588,580,588,584,576,575,597,508,522,520,553,556,549,556,545,564,566,512,510,509,513,510,515,498,518,522,504,509,511,513,495,503,502,559,550,538,537,550,549,541,543,545,547,545,546,546,547,534,543,546,552,544,550,552,543,504,515,497,502,519,514,506,512,513,449,466,464,462,455,456,465,461,463,460,439,449,450,446,450,453,462,453,460,453,455,458,549,559,564,561,573,554,560,562,542,460,468,466,481,460,520,529,529,526,518,530,520,514,515,514,525,555,547,542,544,542,549,542,557,551,549,544,512,513,511,500,501,497,501,499,490,504,496,487,490,504,499,487,490,497,506,504,511,517,515,510,514,515,514,515,511,521,510,506,507,537,556,560,553,549,553,549,556,550,548,561,548,543,486,511,508,499,506,495,502,499,508,549,529,530,533,531,539,540,526,535,533,540,537,531,513,520,514,520,512,526,519,513,517,519,517,518,517,520,517,521,517,519,521,518,523,514,518,519,525,525,518,514,520,518,522,518,527,518,514,519,517,526,522,541,543,547,550,546,536,542,540,546,536,550,535,541,547,561,558,557,557,513,500,500,506,497,491,495,511,492,503,485,491,492,485,494,489,585,563,582,584,568,573,484,505,502,504,503,544,505,513,508,512,517,511,509,507,518,512,530,517,512,497,504,504,508,507,508,499,504,499,504,550,538,542,537,544,541,540,539,545,539,541,549,546,548,538,539,551,555,569,563,569,562,571,563,566,545,498,515,528,538,522,521,506,505,538,529,537,490,519,451,440,448,452,451,447,444,436,464,454,456,448,451,535,540,540,541,535,552,535,528,534,540,541,538,521,534,538,576,562,569,575,563,567,562,564,565,564,570,564,576,560,556,544,533,501,483,486,487,475,429,444,439,433,448,459,449,444,440,460,455,555,549,551,552,547,531,549,549,545,554,553,545,554,546,526,526,526,524,520,527,522,516,541,528,527,533,480,499,482,498,480,481,499,500,488,498,477,489,491,501,534,564,572,477,474,480,474,489,471,473,486,490,479,563,539,545,551,553,547,551,544,541,552,544,552,546,544,546,560,532,546,553,559,546,544,548,513,500,512,497,507,498,513,508,554,542,537,540,542,537,536,547,525,535,529,527,537,525,525,536,529,557,555,558,554,560,489,505,514,505,512,517,512,518,516,517,515,516,511,518,507,521,512,523,542,537,538,544,550,492,508,499,501,565,522,521,521,520,520,520,517,522,525,525,519,518,523,536,533,525,529,529,538,522,532,529,523,525,529,521,547,541,544,535,541,546,529,521,566,552,559,569,549,550,520,510,509,501,501,502,508,503,503,502,505,510,495,504,518,509,520,531,533,520,527,537,528,532,535,531,527,526,532,534,531,530,528,532,525,516,528,524,515,517,516,518,517,517,515,532,525,530,528,526,525,523,520,529,527,526,531,577,572,557,561,552,545,547,548,545,546,543,542,547,539,528,519,520,518,527,521,508,507,511,510,512,516,495,507,508,499,498,532,561,547,561,552,556,554,554,544,540,546,568,523,525,527,537,524,527,529,523,531,526,530,532,530,528,541,535,532,537,530,534,540,546,538,529,534,542,535,539,538,540,530,517,523,524,515,509,540,562,568,569,563,565,569,568,562,560,575,499,506,488,494,500,502,508,504,508,503,507,498,501,510,500,513,495,507,510,495,503,505,486,503,507,506,513,551,569,574,594,560,575,569,576,565,541,524,524,540,530,526,512,499,511,505,509,512,497,484,480,481,487,480,474,482,487,483,477,482,483,482,473,476,473,498,485,490,490,489,497,592,551,572,564,566,554,571,491,485,469,476,475,483,457,482,466,460,537,555,538,527,532,528,522,528,524,525,530,572,547,570,558,554,551,562,565,570,567,500,531,531,526,513,519,521,531,521,523,509,515,509,508,517,508,511,522,529,526,520,534,513,534,525,528,522,513,505,506,503,500,496,502,507,510,513,497,507,494,504,503,499,506,505,506,500,502,490,489,487,497,487,496,485,475,490,488,492,495,491,482,492,493,489,495,490,490,486,469,487,488,482,500,493,465,448,455,462,453,458,461,458,459,476,469,475,474,471,481,476,481,473,476,477,475,460,480,476,541,577,560,569,569,576,499,498,507,501,502,501,506,494,502,499,513,510,493,532,544,551,544,552,560,542,547,549,542,540,533,523,524,523,524,526,526,523,525,518,523,522,524,534,542,539,544,538,547,532,536,534,536,536,546,539,543,528,484,479,467,474,475,534,531,536,537,553,540,542,544,542,545,528,530,541,541,586,562,567,564,566,567,571,572,566,578,570,572,572,569,551,540,525,536,542,538,536,544,526,538,540,546,540,543,560,555,568,570,572,483,498,501,497,494,508,510,491,505,506,504,518,501,510,509,522,501,581,556,560,537,531,537,536,532,536,528,529,526,528,509,503,508,523,509,529,523,554,552,542,555,561,562,552,549,552,575,561,552,567,503,504,498,488,481,496,494,493,490,536,534,531,536,537,538,550,536,539,535,536,540,533,544,541,529,546,537,539,537,543,546,559,556,557,558,554,549,547,546,562,559,563,498,517,500,517,505,510,496,501,511,500,508,500,509,496,477,480,473,471,483,481,489,477,473,468,484,482,478,607,588,604,591,595,597,596,604,596,596,564,541,536,500,502,508,496,466,466,474,480,474,481,441,453,459,446,457,459,454,457,459,455,460,450,450,450,440,453,449,480,485,490,554,549,556,557,545,550,541,543,547,516,521,538,520,525,526,516,530,481,470,474,468,477,484,473,480,467,482,491,470,530,524,536,528,545,540,535,538,537,541,538,537,541,543,536,542,540,550,539,543,543,539,547,542,535,479,506,496,488,489,498,499,493,500,489,546,539,537,544,545,533,557,566,534,560,534,548,554,557,538,526,534,551,549,536,542,542,554,520,524,524,527,531,522,533,523,528,522,524,573,559,557,566,570,557,552,560,563,563,562,558,573,557,538,508,535,529,513,516,528,511,525,519,528,505,484,496,498,494,497,491,494,492,475,461,454,458,455,460,462,457,462,452,466,461,460,462,442,457,446,458,447,453,461,450,451,455,445,461,460,577,566,565,567,560,566,571,554,569,568,568,555,566,562,556,558,562,557,570,567,568,559,578,563,564,557,564,566,568,563,575,565,501,490,493,493,500,481,477,479,474,462,466,466,463,472,461,468,477,478,467,473,577,567,560,556,564,560,556,560,563,558,557,565,539,549,554,552,554,564,553,567,537,502,491,495,489,489,490,494,484,503,489,495,484,568,555,552,567,560,541,508,491,494,489,495,497,496,495,489,502,491,504,501,505,490,519,505,511,510,513,512,512,504,511,505,511,511,507,564,558,564,558,557,535,539,540,531,536,537,536,539,527,540,530,528,523,536,530,535,527,534,533,541,540,537,529,542,532,542,548,556,508,513,514,508,517,513,503,518,511,503,521,515,508,512,517,550,581,574,553,549,570,567,560,552,508,521,514,523,522,527,525,524,497,486,489,487,491,485,482,483,493,483,495,493,506,496,490,499,498,508,507,493,495,487,494,497,493,506,580,575,564,560,562,560,547,556,499,522,522,517,506,497,502,516,510,499,508,508,501,510,500,510,507,506,500,471,479,489,476,480,479,479,494,488,485,444,462,454,458,456,461,461,457,468,459,456,461,449,461,464,461,462,459,468,465,463,468,457,460,461,464,566,559,558,554,559,555,547,557,561,558,561,559,552,556,554,547,549,545,568,553,544,559,556,556,529,514,523,507,516,517,558,547,544,547,551,543,549,552,541,553,543,546,485,505,504,501,513,492,500,509,510,494,498,490,511,503,501,504,512,575,566,521,541,508,502,505,506,504,501,479,489,477,477,479,479,482,479,500,480,487,486,489,494,489,488,479,501,490,490,484,487,488,486,488,483,485,491,489,488,571,561,580,572,570,559,578,576,574,565,570,573,569,565,577,554,571,566,495,496,497,499,502,508,502,514,504,498,506,498,501,505,533,545,555,552,532,550,537,551,550,546,547,548,545,541,502,515,537,534,526,526,525,530,520,531,525,524,560,545,528,522,564,561,556,559,555,555,557,529,525,516,524,517,522,518,535,522,527,534,518,513,522,522,530,505,500,506,507,507,510,496,477,484,482,483,483,481,478,484,484,482,486,484,491,491,501,538,560,565,571,570,573,569,570,556,501,514,489,507,506,515,518,509,497,496,495,493,492,496,485,541,543,540,537,530,542,532,537,555,557,511,525,511,515,484,520,510,499,513,502,496,505,477,488,490,488,492,505,502,510,500,506,493,496,506,504,471,482,486,477,480,481,487,478,515,514,511,510,518,516,504,516,518,517,508,520,520,518,524,520,516,584,565,498,494,491,491,494,492,480,500,499,498,496,503,488,506,492,481,456,475,473,471,461,456,466,460,462,565,548,549,548,548,551,547,559,546,544,549,555,553,541,554,542,507,522,518,516,507,533,531,533,523,529,524,525,526,529,490,506,508,509,507,501,503,498,508,509,500,506,509,515,494,496,510,508,509,502,508,500,498,544,557,569,558,555,548,552,556,546,546,558,564,552,550,558,502,476,478,482,472,478,475,447,449,429,453,454,448,457,451,455,452,447,450,450,543,553,550,558,560,538,539,545,542,535,547,542,545,541,544,552,551,553,545,509,516,527,516,514,528,524,525,548,507,495,494,501,494,481,504,483,496,491,488,499,496,484,496,493,495,492,487,493,504,498,494,495,497,494,495,505,494,494,495,502,570,559,566,562,558,562,562,559,563,564,566,566,559,562,555,547,549,555,553,560,547,549,544,556,560,556,496,487,488,489,473,499,491,481,499,480,487,482,470,485,478,468,483,476,482,474,485,468,479,625,595,550,552,561,555,553,561,553,555,553,556,561,567,540,556,548,550,549,550,544,548,554,554,545,553,553,558,544,548,536,503,523,519,509,522,510,502,529,507,510,516,517,517,523,515,473,482,487,481,486,483,489,483,483,481,457,470,477,478,545,549,547,542,544,546,533,544,543,543,547,543,544,521,521,521,520,519,526,526,526,519,535,547,533,500,514,515,508,577,565,561,554,577,559,558,509,514,518,523,517,533,520,521,525,509,529,521,526,505,495,498,497,498,489,491,483,488,500,488,489,491,495,487,493,502,475,489,487,490,484,487,489,489,505,503,506,501,505,508,506,501,505,510,508,504,500,506,505,499,499,499,505,499,495,501,484,479,476,486,471,484,479,482,491,473,483,474,514,513,503,500,496,494,504,501,507,496,489,498,556,549,550,559,562,552,543,542,538,542,540,535,541,576,563,576,566,583,575,565,579,518,493,498,493,511,504,488,509,508,515,506,515,517,487,462,482,480,484,582,562,553,489,503,505,505,501,494,490,501,493,480,485,492,484,494,487,489,483,503,500,504,498,507,499,506,497,502,506,495,511,505,506,504,501,501,501,494,505,477,485,479,479,481,476,483,479,486,484,481,477,467,484,483,479,464,467,459,462,460,468,473,470,470,453,453,493,493,600,568,577,568,551,554,576,526,519,512,512,502,521,511,513,512,518,519,516,518,551,570,565,578,570,567,556,574,562,569,565,494,512,514,505,517,509,498,494,500,506,505,499,505,506,508,503,506,519,547,533,574,549,545,569,508,516,519,569,565,552,564,554,554,555,556,558,566,569,562,560,547,560,549,559,561,545,543,552,555,552,549,558,557,554,550,566,556,553,556,502,522,516,516,517,517,523,516,529,515,525,532,528,523,525,514,515,513,501,513,516,502,506,506,485,483,480,474,478,485,476,505,501,496,503,498,513,502,511,554,565,553,550,553,556,557,561,555,549,555,564,566,562,567,552,561,543,532,536,532,532,533,532,534,527,537,508,515,514,512,511,508,512,523,520,507,512,517,512,510,512,509,508,521,518,521,521,525,519,606,581,591,529,534,532,520,538,536,531,533,527,531,515,533,522,516,568,549,563,552,550,540,559,562,546,554,554,553,553,568,558,526,533,522,527,529,529,535,521,524,525,519,520,526,560,549,549,550,542,550,554,537,551,555,508,494,495,491,502,499,505,492,496,488,499,497,494,499,497,489,507,490,506,504,505,561,553,549,548,547,547,552,557,552,543,543,558,572,569,576,559,569,565,581,563,571,539,513,504,518,514,491,491,486,488,483,487,480,501,495,493,495,497,502,502,502,501,503,553,560,559,562,569,559,564,561,584,562,560,558,551,551,529,522,535,533,519,531,531,519,518,520,513,509,511,505,502,509,513,505,506,505,491,494,501,499,490,491,491,482,490,488,488,488,481,484,486,482,490,493,489,489,492,494,497,497,510,508,505,503,516,537,544,548,551,542,542,545,540,542,546,552,556,552,534,470,483,499,481,479,441,452,449,441,437,439,449,439,455,450,450,452,454,444,577,556,566,560,560,560,562,564,559,554,563,551,559,548,568,564,564,564,509,527,520,517,532,512,529,524,518,524,525,506,515,517,510,529,517,520,518,516,526,523,513,491,496,477,479,473,472,482,479,608,595,606,587,602,601,586,584,586,584,550,547,547,554,545,555,543,549,541,557,550,543,543,548,551,554,549,546,549,547,543,532,533,532,533,527,542,529,528,537,481,481,465,470,478,483,469,479,459,466,546,530,524,540,525,529,537,523,548,551,555,543,558,564,562,554,561,550,558,563,551,527,501,509,510,507,496,501,501,504,513,499,505,499,494,489,501,493,493,495,455,459,467,448,448,457,468,460,466,461,458,451,457,451,451,458,456,451,461,455,489,481,469,478,588,555,564,567,545,560,559,574,555,573,567,569,537,505,507,525,499,537,522,512,484,481,476,489,481,476,486,467,476,473,490,493,494,492,495,486,500,488,484,493,484,491,490,483,485,492,596,507,481,516,508,486,503,499,488,502,507,474,482,473,478,475,468,488,533,565,543,562,473,495,496,481,497,507,501,499,494,491,501,450,463,463,471,468,469,463,469,519,541,538,537,529,541,540,534,535,539,532,537,539,530,531,502,500,500,511,495,504,506,497,515,496,503,496,499,524,547,540,550,541,567,558,557,547,546,549,520,517,510,509,510,513,515,505,518,504,512,589,489,500,498,511,498,502,505,501,436,455,444,448,451,442,451,452,449,449,441,523,521,520,536,530,525,516,522,531,541,527,534,538,573,559,568,576,567,560,560,540,543,533,534,540,540,543,583,578,575,570,575,578,570,582,583,557,572,576,567,541,525,536,518,528,521,533,527,529,538,527,534,528,530,508,518,505,508,509,507,508,499,506,505,506,496,504,499,503,503,503,486,481,491,490,482,485,487,477,486,485,479,485,483,494,486,484,473,477,491,481,475,499,500,496,500,488,504,461,478,483,475,476,478,474,454,434,443,439,437,444,436,442,449,436,436,436,446,453,444,439,457,472,470,471,468,479,474,482,483,585,561,575,568,583,569,569,557,562,546,570,560,570,589,557,561,568,567,557,561,562,567,558,524,510,518,517,523,517,521,479,470,471,469,474,460,457,458,456,451,459,459,455,459,457,454,463,457,463,576,546,547,543,473,558,590,590,536,566,575,567,582,570,567,565,567,563,571,572,561,575,523,537,531,531,527,527,523,524,501,512,508,515,515,507,498,508,506,507,509,508,501,504,509,513,515,505,500,496,516,501,493,501,505,497,501,492,481,490,474,497,478,490,465,458,462,461,453,459,463,450,475,624,596,592,608,581,599,592,602,593,598,599,586,556,548,550,583,571,559,571,561,569,570,556,563,570,564,566,541,525,523,528,525,533,527,521,528,493,509,493,500,496,507,503,503,514,509,508,509,566,556,561,561,553,556,557,565,534,537,537,527,525,513,515,517,512,533,537,550,550,546,536,545,546,547,548,549,550,554,541,568,564,565,577,570,569,561,571,576,570,540,528,487,496,500,490,499,495,497,498,439,468,463,458,457,477,455,449,470,485,500,506,507,495,505,503,507,520,502,503,506,504,510,519,506,507,580,568,562,557,573,540,515,507,525,523,519,525,472,486,478,475,481,476,471,494,494,509,514,510,526,550,545,549,543,540,541,546,537,546,533,550,546,548,504,517,517,513,515,525,520,526,521,525,519,520,522,514,521,519,516,516,532,539,541,532,532,542,535,538,537,544,539,560,563,544,534,536,541,535,532,528,564,554,564,557,558,561,562,562,567,565,573,547,568,558,560,576,559,538,513,506,518,509,514,519,507,532,525,512,484,496,496,502,496,495,500,494,496,492,494,493,469,466,475,459,466,491,467,464,471,475,461,485,469,466,469,533,550,522,505,510,546,578,565,570,568,582,572,568,571,569,572,566,523,516,510,533,528,526,519,489,479,485,483,492,484,483,491,476,472,452,457,454,460,464,465,455,464,510,508,509,495,506,499,493,506,506,499,505,506,582,568,569,563,538,546,545,487,488,493,482,476,493,498,486,470,476,479,466,472,469,470,473,538,548,539,537,546,544,553,537,554,544,546,537,544,553,552,532,523,524,519,525,518,526,523,525,523,528,525,566,554,473,500,500,485,487,487,480,478,484,498,491,501,487,494,502,473,492,494,488,502,492,492,502,488,481,479,478,477,470,485,475,481,479,472,483,477,581,569,555,552,516,509,511,503,511,506,515,513,518,513,519,517,526,515,469,465,471,471,418,428,447,441,447,445,436,435,436,448,443,517,533,527,521,526,524,541,519,527,539,541,548,547,539,541,546,537,536,544,545,536,548,546,544,532,534,526,520,513,521,521,526,522,528,519,520,522,524,522,525,521,519,523,528,539,558,496,492,490,513,493,487,501,492,501,500,493,496,482,504,493,497,498,490,500,490,495,502,495,498,491,499,586,556,568,563,568,585,580,575,568,562,584,508,502,488,499,502,497,507,499,501,492,473,571,541,536,555,552,538,536,557,544,548,557,545,492,466,473,482,467,477,518,513,511,496,493,514,497,507,501,504,505,499,508,499,510,553,540,474,475,546,562,541,560,555,558,557,559,556,554,557,562,546,549,544,553,560,570,562,521,506,498,497,498,504,497,506,509,498,503,501,473,489,491,485,480,480,478,486,485,481,480,485,486,484,476,489,480,565,565,563,568,549,554,554,553,551,554,556,557,530,505,513,501,515,519,500,469,490,481,473,483,481,494,480,482,481,484,480,481,478,462,474,465,472,464,471,465,468,468,466,467,422,420,445,432,441,426,432,521,538,538,543,528,541,545,545,582,564,565,560,566,570,564,566,566,570,566,564,574,543,557,559,556,557,549,554,548,555,561,557,551,547,541,512,517,504,522,508,514,518,530,509,470,491,494,490,497,500,489,491,505,483,503,554,563,566,561,572,551,568,544,562,566,569,561,565,561,525,497,497,507,501,498,509,518,506,517,498,508,492,563,551,548,547,543,550,490,488,504,494,498,500,508,500,498,560,547,535,544,545,545,547,542,546,547,544,545,546,579,562,564,564,550,570,559,565,558,555,565,533,520,525,517,507,525,598,574,577,570,592,576,581,546,531,526,527,534,531,531,536,530,535,532,575,560,544,559,558,526,512,520,506,503,507,519,519,513,507,508,514,496,496,501,575,556,555,554,553,552,546,555,561,546,545,560,554,544,561,542,550,498,489,518,521,516,514,506,513,508,509,519,507,558,567,565,571,562,562,569,543,544,539,544,549,543,549,551,551,548,551,494,495,475,504,496,497,488,471,544,553,544,553,548,544,546,530,554,545,533,525,526,528,525,516,548,563,544,558,552,541,551,550,561,564,552,482,493,492,501,495,492,498,500,491,498,485,484,479,478,484,480,486,482,480,589,561,565,575,569,565,554,557,554,502,515,503,518,497,500,515,514,498,493,485,498,493,489,486,490,483,486,486,485,481,480,488,487,483,485,480,482,483,483,483,476,479,487,499,484,467,470,504,496,493,510,504,502,500,491,499,507,497,501,499,494,499,501,493,495,498,506,485,498,515,500,498,497,496,506,487,509,537,516,526,515,523,525,526,490,494,499,484,496,498,493,501,500,500,503,492,578,559,537,531,526,509,510,518,519,519,513,522,514,522,520,518,513,520,518,514,525,527,537,537,544,544,546,552,548,542,543,544,543,550,531,539,540,540,537,532,536,531,535,549,542,531,531,578,558,525,522,524,524,519,527,488,481,488,480,482,490,484,482,484,487,477,461,463,472,462,469,462,464,472,471,466,469,470,467,459,479,468,469,585,559,566,572,574,566,562,543,551,565,563,558,558,550,559,493,447,466,462,461,457,460,464,458,454,462,473,466,525,504,494,513,502,494,490,505,516,542,529,544,533,530,539,530,478,482,478,477,490,483,477,484,479,486,492,478,481,476,543,559,560,558,551,569,550,521,535,520,533,541,527,517,523,525,531,530,538,522,525,520,520,500,509,509,508,507,506,506,505,502,489,482,473,482,513,508,508,545,542,537,533,536,539,532,544,527,518,519,527,520,517,563,543,539,547,552,552,542,547,545,545,554,548,541,524,540,541,533,544,537,540,536,542,537,530,572,518,531,521,523,522,529,494,501,504,503,503,504,493,500,503,507,501,498,505,499,511,507,503,500,485,484,491,485,509,510,511,514,563,545,541,547,543,541,545,537,535,547,539,546,545,546,501,490,505,487,501,502,497,504,502,489,504,497,491,512,500,505,497,503,494,501,489,506,526,540,545,553,484,477,491,475,486,488,454,445,453,433,446,454,438,446,438,430,443,452,454,522,535,546,551,545,543,545,550,546,547,549,551,539,544,552,543,545,476,487,487,509,506,496,486,500,488,499,493,510,501,479,498,462,461,464,466,476,489,471,470,477,471,474,481,466,478,477,471,479,556,560,567,543,568,564,518,509,500,516,507,504,505,505,520,503,473,473,463,460,464,452,462,457,460,455,458,555,568,568,564,564,566,566,564,557,565,569,566,573,505,519,515,526,530,526,529,518,513,529,522,519,511,502,512,513,511,508,503,502,512,511,508,507,500,497,496,497,476,474,482,474,479,468,454,458,471,467,458,460,461,457,468,461,459,487,498,500,496,498,501,498,497,505,494,556,554,553,555,556,550,558,556,555,557,548,548,552,563,535,538,540,538,540,536,530,542,538,532,539,535,534,590,575,568,572,577,570,514,515,500,523,477,473,474,467,472,470,476,467,478,467,479,476,468,473,474,474,471,470,471,486,497,509,503,550,561,554,561,543,548,554,545,555,546,554,542,558,504,508,520,505,506,515,511,502,513,523,511,502,523,529,524,504,501,485,482,479,471,482,484,470,480,487,481,481,484,489,482,508,517,510,505,509,500,510,504,543,548,542,544,539,542,544,545,544,542,540,537,526,519,518,504,521,515,545,562,559,551,552,560,557,557,560,558,554,553,561,561,553,540,561,555,552,561,551,557,567,554,565,557,557,547,561,576,558,555,549,557,505,503,495,493,491,496,500,504,497,577,563,566,526,512,518,514,514,503,510,498,475,486,484,483,491,485,484,490,491,487,482,491,495,482,488,481,486,479,479,488,563,562,560,553,569,570,562,559,552,504,529,524,517,529,525,519,526,520,517,513,519,517,512,517,496,505,502,505,506,497,500,502,503,504,495,480,483,472,477,478,476,482,475,488,478,475,485,488,481,502,497,507,499,496,505,514,556,559,557,554,565,567,555,536,530,529,513,526,527,517,523,523,482,480,476,464,477,477,462,472,462,468,466,553,553,566,572,547,565,552,562,560,564,560,568,553,545,571,503,514,514,517,519,588,582,555,566,570,560,582,579,580,545,564,570,517,504,509,498,503,500,515,504,491,501,498,501,500,513,502,507,500,550,558,567,576,560,581,466,483,494,494,481,498,489,486,480,468,480,502,527,544,543,538,539,546,538,536,532,537,555,547,537,549,550,539,546,554,551,542,552,542,547,540,557,551,551,536,540,546,553,546,560,554,518,495,489,508,502,503,500,512,507,503,493,503,495,497,501,502,607,596,606,593,582,597,576,605,594,590,592,590,598,597,571,555,552,556,558,546,555,563,479,483,484,489,480,477,490,490,479,486,462,442,443,432,428,436,451,516,533,549,543,541,543,550,542,539,531,540,548,543,540,548,555,504,488,491,485,494,484,489,495,494,493,503,508,486,497,489,487,486,486,482,489,490,487,503,508,504,504,504,497,509,500,504,502,484,509,509,501,503,507,507,508,506,502,503,502,493,474,474,481,481,476,473,477,467,466,463,467,459,472,456,462,564,573,555,555,552,526,509,503,511,508,506,473,461,469,474,477,471,455,461,457,465,456,472,472,466,460,455,463,456,463,466,463,463,519,545,553,533,549,549,533,540,536,543,531,542,551,546,539,471,483,473,480,479,470,496,474,475,479,479,488,489,492,489,491,481,489,486,484,484,485,482,515,506,510,507,554,542,541,545,540,543,574,570,579,560,565,565,572,571,568,570,571,556,549,550,552,514,508,518,515,522,506,508,521,513,514,477,485,483,479,478,482,478,581,589,584,589,580,580,575,579,515,492,497,500,502,501,506,499,483,466,462,476,467,468,468,467,469,468,468,469,466,463,469,561,555,568,560,567,570,562,565,570,564,566,576,576,557,558,567,561,557,557,566,572,566,572,572,571,529,511,513,519,539,510,521,494,486,487,479,483,481,482,488,484,481,486,483,495,484,492,493,496,499,490,495,489,491,542,575,566,566,565,575,567,575,564,579,563,561,556,506,500,508,503,505,512,525,513,517,513,496,497,477,474,481,483,476,479,477,477,473,478,477,481,479,480,486,476,470,478,478,484,480,478,482,483,489,476,477,514,497,540,546,543,539,539,544,549,550,541,536,544,545,542,543,529,521,520,506,568,576,585,596,596,584,598,600,579,584,593,573,603,570,546,537,537,534,531,530,542,539,537,528,533,533,570,557,560,560,553,574,573,516,504,510,507,509,499,515,509,516,521,518,462,463,457,465,469,473,460,469,465,498,508,503,505,494,498,518,511,503,500,519,510,506,510,506,503,509,555,568,564,534,535,525,510,527,518,532,502,504,501,511,498,502,482,487,483,483,475,443,457,473,446,464,462,464,467,460,460,466,457,460,535,548,535,538,535,526,538,544,550,542,547,538,551,552,555,529,522,527,519,520,517,512,522,562,561,567,562,551,565,558,558,556,559,562,562,556,563,558,557,564,555,563,561,560,554,559,554,545,561,514,488,481,474,478,476,479,483,471,483,473,475,474,472,479,487,503,503,517,497,505,502,512,505,507,549,539,542,541,530,547,539,547,539,502,517,508,515,509,509,515,533,525,519,521,521,529,532,525,530,521,512,522,597,585,586,586,571,574,578,581,576,597,575,527,517,516,507,520,514,516,509,517,530,507,507,543,560,550,558,563,558,553,553,549,550,570,555,555,558,562,502,491,507,501,503,505,514,499,495,506,516,520,513,521,511,522,515,520,510,521,580,561,551,550,561,543,547,555,539,566,557,555,565,555,554,566,554,487,495,488,500,494,502,497,491,465,477,471,473,474,473,472,477,475,551,563,554,561,582,581,572,551,543,577,549,581,546,568,567,563,459,484,483,479,498,542,545,550,552,550,550,576,571,564,570,569,567,554,567,566,521,514,513,504,510,509,525,525,527,525,531,539,534,534,519,533,542,538,541,555,549,545,549,543,548,525,543,509,510,511,497,518,511,512,510,509,529,538,578,555,550,552,562,558,555,571,554,505,517,558,565,586,580,560,569,565,571,588,574,577,574,570,574,503,500,498,499,501,500,516,496,495,510,500,487,570,542,561,565,560,566,559,558,551,565,559,561,558,472,487,489,497,504,485,504,515,496,488,473,470,460,460,451,460,459,472,470,446,461,600,584,595,585,585,581,584,590,580,593,600,523,536,536,529,536,534,550,537,520,531,535,535,532,474,496,489,487,491,486,489,487,498,501,504,504,538,522,526,535,530,525,533,512,515,507,510,512,512,508,508,514,509,505,516,514,516,509,568,546,566,557,562,551,567,568,554,566,566,559,538,554,569,577,561,545,514,514,522,515,501,506,517,470,452,462,451,461,461,463,462,459,463,490,467,474,475,473,477,470,478,467,477,470,469,467,471,467,585,564,566,526,506,514,517,507,514,521,507,514,515,509,507,520,516,500,499,502,505,497,520,530,534,533,530,531,525,524,532,535,550,547,545,548,542,547,540,552,559,558,558,548,557,499,492,483,495,496,498,497,498,490,500,508,515,491,495,496,462,451,462,455,460,463,456,535,549,546,546,552,555,538,543,562,573,576,569,574,564,569,574,577,575,566,555,579,565,572,538,543,547,546,535,535,562,568,576,556,541,525,516,527,526,526,530,522,527,473,484,485,489,486,486,486,490,482,489,481,494,483,488,483,489,487,482,484,461,460,461,456,466,459,450,465,458,450,460,464,461,460,532,533,538,542,533,544,538,534,541,533,539,536,535,542,558,535,543,546,544,534,525,488,488,496,489,490,490,494,499,495,549,534,556,546,531,551,543,556,544,512,516,513,515,515,513,508,511,505,518,512,516,512,501,499,511,504,499,496,505,503,511,500,507,504,499,503,536,542,537,542,546,542,537,542,546,537,544,543,535,534,536,542,547,539,540,544,542,571,565,567,562,559,566,536,543,530,532,540,541,542,536,538,547,489,486,504,512,508,508,495,516,506,506,501,504,513,504,515,483,574,571,579,557,570,559,562,544,518,512,535,518,508,513,514,509,515,511,498,513,519,512,513,516,483,489,495,501,500,499,498,496,498,475,485,476,488,480,479,487,480,491,487,488,472,465,475,472,469,481,474,472,549,549,556,542,546,523,523,519,526,547,535,540,538,543,535,530,540,544,547,542,533,532,547,566,562,555,557,560,559,551,556,564,561,570,544,491,501,492,493,489,493,499,495,491,490,501,495,492,499,484,496,460,457,464,464,467,457,456,467,465,470,470,567,547,559,557,543,559,552,547,565,557,564,546,556,557,553,556,557,557,548,545,558,548,545,548,553,550,551,540,552,543,552,547,552,492,500,512,493,488,492,507,503,509,500,503,569,543,567,555,549,546,564,539,550,556,554,498,497,501,505,518,506,508,516,517,514,512,511,511,551,566,576,555,556,555,557,559,546,557,550,552,553,555,552,557,499,503,492,504,506,486,490,483,486,485,509,501,502,492,500,495,502,493,568,570,576,568,580,579,563,593,561,569,508,521,528,517,498,497,502,497,503,506,501,502,482,477,481,484,486,485,489,480,486,488,484,486,480,479,482,477,483,479,485,483,488,474,563,562,559,560,573,566,563,559,569,568,526,534,520,518,521,521,512,520,511,505,505,517,506,516,509,507,502,503,508,502,509,493,496,484,487,483,484,487,487,487,476,475,477,468,471,477,475,484,497,497,501,495,497,503,496,498,494,496,501,504,554,561,571,561,572,571,571,570,568,579,583,500,519,504,524,530,517,530,517,525,490,498,504,503,495,492,496,494,499,473,475,473,470,469,469,471,479,471,463,476,479,470,472,475,475,509,494,507,501,495,491,500,528,527,527,530,520,499,514,505,512,507,504,509,514,500,513,539,551,561,552,555,545,538,564,549,566,577,550,504,518,526,515,519,515,520,520,518,513,529,587,582,562,575,512,465,463,462,469,476,464,481,473,565,570,574,570,571,554,567,560,564,566,565,565,570,561,562,550,562,555,560,551,564,555,554,562,553,552,509,489,511,506,495,504,498,460,472,470,474,475,481,472,471,485,476,554,551,550,552,537,544,530,528,522,522,526,552,565,570,558,564,551,559,561,568,561,559,564,571,559,513,530,516,483,480,485,478,484,479,479,479,482,479,479,479,487,479,477,489,474,476,508,512,517,504,506,506,534,540,541,546,539,550,544,542,540,529,528,530,531,521,531,529,533,528,531,522,526,558,546,551,533,544,492,487,470,480,483,477,483,488,480,486,477,489,476,434,434,436,450,443,434,440,436,534,522,524,515,519,522,520,526,519,525,525,518,542,543,541,540,537,542,546,559,551,564,559,563,567,507,530,519,520,522,511,522,526,512,524,518,518,486,487,486,489,495,487,485,494,508,516,510,506,517,516,511,515,516,539,539,548,546,546,541,518,524,525,516,523,522,521,523,526,522,519,518,560,561,552,520,519,495,477,468,467,487,479,480,474,477,565,563,561,551,563,562,555,563,499,504,501,507,493,502,491,490,509,511,557,551,554,565,561,546,543,555,558,544,566,544,479,496,492,498,487,505,492,497,495,496,494,486,502,493,518,507,517,509,503,507,509,506,513,508,507,507,510,544,546,542,544,542,544,551,537,547,545,541,551,551,547,541,540,539,550,544,544,581,555,553,556,559,549,564,558,552,567,571,560,564,559,553,566,567,496,502,504,509,523,519,511,559,584,578,569,572,568,555,559,568,570,567,568,578,576,570,573,579,577,576,505,501,481,475,467,507,498,500,477,489,535,549,552,566,553,554,552,559,554,546,547,550,553,554,556,557,549,494,503,503,490,504,492,506,482,481,487,479,486,484,485,480,482,482,560,563,559,562,579,558,552,555,551,568,547,547,491,479,498,494,503,486,498,509,508,480,500,495,452,441,439,453,453,524,536,541,543,545,545,541,543,548,547,544,545,527,543,535,537,540,543,540,548,523,549,541,533,540,496,500,501,499,495,491,491,488,502,496,489,544,545,546,554,546,550,518,518,519,514,517,515,510,525,520,517,518,544,545,573,549,491,506,496,510,501,495,514,522,518,529,520,516,521,521,522,513,516,526,519,532,535,520,517,549,558,548,563,557,557,558,565,549,551,495,505,500,500,499,505,504,505,509,492,495,494,505,510,517,519,509,501,505,533,521,536,540,521,528,526,525,530,530,536,528,528,529,527,519,541,528,532,526,528,532,530,531,533,540,547,545,548,498,487,480,482,480,474,476,483,496,475,497,476,491,471,493,563,545,548,550,555,552,552,558,539,572,569,554,562,551,517,516,522,516,511,510,505,509,511,505,504,512,490,480,486,496,487,495,485,493,486,488,497,492,497,491,484,485,495,494,489,482,501,500,502,505,500,497,484,507,499,496,500,499,495,503,506,477,492,494,492,492,496,484,472,471,472,479,470,472,471,469,473,484,490,484,487,486,484,509,565,553,550,554,546,554,557,557,545,551,553,555,559,542,556,546,545,543,548,551,549,551,551,544,521,508,511,513,507,506,511,499,514,492,513,511,511,504,503,504,499,517,543,538,537,523,537,530,541,526,497,513,514,509,509,515,573,574,569,557,573,579,544,569,562,564,573,564,562,560,575,494,490,495,507,493,479,472,470,473,463,468,476,467,473,467,456,465,560,540,556,552,550,554,494,501,494,512,501,505,513,506,515,502,504,494,497,501,497,498,497,490,492,500,500,487,527,545,534,537,544,540,539,536,542,543,537,538,545,555,563,549,575,552,553,554,563,550,516,521,517,518,517,519,519,520,517,520,523,521,517,518,514,584,564,566,579,574,576,514,510,505,495,480,470,485,479,470,486,471,523,549,556,547,477,492,481,485,489,495,496,496,591,591,581,589,576,594,581,583,585,548,541,548,562,557,560,550,569,553,550,543,548,528,525,516,513,518,503,515,530,527,518,517,522,517,520,520,532,491,493,495,494,497,500,490,484,500,488,491,489,492,476,486,487,493,488,504,483,481,489,456,470,455,461,467,469,461,476,467,470,469,465,469,437,437,432,437,441,436,438,433,434,442,425,428,506,490,483,500,484,497,500,487,498,539,550,535,513,523,524,555,545,536,545,535,547,535,542,543,544,542,539,592,568,552,570,560,567,494,506,494,508,501,488,500,479,567,564,574,558,555,562,560,555,568,562,558,559,552,554,558,556,564,574,566,549,559,555,560,556,551,560,558,563,564,563,552,555,561,544,559,553,512,494,495,508,498,507,524,518,518,516,522,516,510,524,518,523,515,517,513,520,514,518,515,517,521,510,520,522,549,554,554,552,557,544,545,552,547,560,553,556,558,549,555,544,544,480,493,506,502,509,502,504,501,499,492,522,509,504,517,500,507,494,505,508,506,507,502,509,506,515,505,548,540,546,540,545,549,545,537,541,533,544,556,552,488,506,496,495,504,493,500,486,490,487,493,498,492,496,486,496,495,548,540,545,543,547,542,539,551,547,545,549,568,568,575,580,576,567,525,523,524,515,523,531,511,524,526,483,486,481,486,484,480,479,483,483,503,498,508,502,503,502,500,508,501,509,504,503,507,504,499,496,505,564,550,556,546,525,527,527,520,510,508,506,504,532,557,564,555,554,557,555,553,550,550,563,479,486,507,498,503,472,465,466,472,464,466,464,469,471,466,467,474,468,467,473,484,574,544,548,551,494,511,498,502,506,500,492,493,495,495,498,490,498,486,504,498,516,503,511,517,508,509,516,507,511,568,551,559,567,561,557,570,557,552,558,555,493,517,501,502,500,495,471,484,481,484,483,482,485,489,480,442,455,438,423,436,434,426,438,434,445,448,505,513,510,514,519,516,517,513,516,517,521,521,518,520,518,516,519,510,510,521,519,512,518,512,508,514,509,525,527,525,535,531,557,577,560,569,564,553,539,534,509,524,509,497,505,525,530,512,510,526,507,512,502,526,522,463,471,474,479,498,500,503,502,508,506,508,503,501,553,562,554,553,548,547,544,547,546,537,532,540,540,540,537,544,545,542,531,589,587,580,585,571,566,584,578,571,574,570,571,576,578,596,500,497,502,488,555,563,568,567,570,571,579,572,551,560,559,570,530,518,516,516,524,506,509,515,519,533,526,528,533,516,534,520,525,517,522,526,538,582,585,569,587,595,583,573,579,576,541,545,542,537,532,542,531,537,536,532,556,550,561,548,566,552,561,559,562,560,555,552,576,572,566,573,561,565,563,556,565,564,568,564,564,567,497,505,514,515,511,498,521,513,518,516,504,518,515,506,516,510,515,521,451,458,457,464,463,468,463,492,485,488,491,476,475,475,486,482,470,483,495,481,584,575,567,566,561,564,566,571,569,498,494,501,492,501,498,497,495,504,490,502,497,491,494,500,495,467,467,456,457,465,459,552,542,546,547,557,549,544,552,555,548,549,558,587,565,561,569,577,575,578,578,567,567,583,516,530,525,534,532,483,476,486,475,473,477,486,486,486,470,560,551,560,556,550,562,564,562,553,552,566,552,556,557,560,553,553,555,557,553,565,563,556,555,567,511,509,517,504,506,515,473,473,468,464,419,439,448,451,450,522,508,519,510,514,507,512,508,511,515,510,514,534,519,538,532,524,551,570,572,575,561,571,550,562,564,559,571,564,562,561,562,559,493,508,513,507,517,503,513,556,561,553,556,553,545,555,568,556,555,549,549,555,553,555,547,559,548,557,553,568,547,499,497,488,503,508,498,489,501,502,507,503,511,500,500,500,576,564,568,587,564,556,561,509,503,506,492,492,492,506,505,508,500,484,487,562,548,567,549,553,562,568,554,573,565,512,513,503,517,524,524,514,509,515,525,519,525,517,525,501,496,500,503,476,456,461,456,466,452,454,469,469,469,456,447,453,466,456,501,494,531,550,539,541,543,538,545,544,541,538,531,542,544,584,559,575,567,572,559,568,575,561,555,570,570,569,577,529,522,527,517,521,518,478,468,462,462,447,465,454,464,462,468,461,455,471,462,461,467,462,466,456,451,561,566,553,548,558,546,561,550,538,537,548,557,545,543,548,481,482,604,574,518,531,514,532,525,533,528,534,524,533,530,549,525,537,531,536,530,532,529,532,538,533,527,539,518,518,524,515,519,517,517,508,517,514,515,511,503,553,567,566,560,532,530,517,528,529,519,513,531,503,499,492,487,494,496,488,496,496,496,493,508,500,511,516,510,512,538,558,540,537,551,533,480,496,488,493,501,497,499,494,500,500,496,500,496,503,496,492,544,553,552,547,561,553,551,557,543,562,557,545,566,558,560,558,557,519,521,527,533,530,535,525,535,530,525,526,532,466,492,475,472,479,471,475,479,473,473,485,481,477,558,565,566,552,554,561,545,546,558,557,554,546,552,561,554,556,558,553,549,549,520,511,503,510,513,511,515,520,516,523,522,509,508,505,515,510,522,513,458,462,456,463,464,453,460,454,457,461,456,456,452,455,447,456,452,461,463,464,456,465,465,473,474,469,477,461,475,482,586,589,590,589,522,531,527,530,531,526,536,562,568,566,548,574,554,545,547,553,547,551,557,541,533,557,555,548,557,560,476,506,492,503,569,514,486,491,486,496,496,498,491,501,492,554,552,496,490,501,486,495,501,497,486,503,493,489,492,492,495,491,487,543,553,553,561,540,555,553,564,552,549,547,550,506,498,514,503,497,497,502,503,505,514,511,535,558,538,550,550,553,548,551,546,545,540,541,502,510,517,521,514,518,529,528,528,529,522,526,530,526,599,592,583,594,589,590,594,583,579,581,591,585,503,504,511,518,507,508,506,514,530,548,549,534,531,534,536,542,527,550,582,568,512,533,528,532,528,535,527,525,518,528,523,525,525,529,510,521,530,527,552,555,548,510,504,506,505,503,504,507,511,514,508,503,564,493,491,499,494,474,482,485,496,488,486,485,500,468,460,464,474,460,463,471,465,528,530,543,540,536,520,522,525,528,527,527,523,521,529,520,524,525,517,524,516,526,525,524,523,525,517,526,520,521,528,526,519,526,522,520,546,545,549,542,547,552,560,553,556,553,557,563,567,562,556,558,556,559,559,558,553,562,517,513,529,513,513,535,523,514,532,512,518,524,517,495,482,485,488,491,509,549,573,565,554,568,561,562,556,558,551,558,570,495,501,489,504,494,493,494,493,565,562,563,558,552,554,553,548,551,553,553,551,557,555,552,557,554,555,541,561,548,549,554,544,568,465,481,486,483,486,489,501,490,498,489,525,537,529,530,533,537,540,534,533,531,536,547,542,541,538,531,537,537,541,545,544,542,543,536,554,541,546,542,545,528,550,539,520,510,503,509,510,510,506,506,507,504,502,510,508,510,512,514,509,503,508,519,531,527,522,570,566,513,477,504,504,489,496,508,433,449,520,515,511,523,511,517,521,518,521,521,515,518,512,526,554,541,547,551,538,544,547,540,554,546,543,548,537,543,552,550,556,554,551,557,554,560,554,553,568,553,510,516,506,499,483,484,492,483,494,489,492,489,483,485,489,484,488,469,462,476,480,538,555,552,551,562,549,522,516,510,516,520,516,517,505,516,507,504,511,508,507,515,578,568,583,579,586,581,557,576,578,573,522,505,488,497,503,497,496,499,489,495,493,486,561,576,501,489,483,496,500,480,511,496,495,481,500,498,562,573,572,578,566,583,570,586,573,566,578,577,535,518,508,523,507,530,505,521,509,521,522,531,525,516,517,518,518,525,515,590,578,595,586,573,586,579,581,580,584,588,571,577,557,535,542,540,548,545,546,539,530,528,528,528,532,536,538,531,519,533,530,560,535,541,537,530,537,535,539,530,535,536,535,532,536,533,537,531,531,562,549,556,492,501,500,489,493,492,493,498,500,502,505,498,494,496,502,497,499,498,495,493,508,500,505,507,501,548,533,542,542,546,537,545,532,539,540,541,537,534,543,537,548,562,562,567,558,555,531,537,528,540,539,528,531,537,533,542,529,530,535,530,534,539,527,549,466,483,474,483,477,478,496,472,490,494,479,464,458,471,469,474,475,476,471,469,480,532,548,553,536,543,550,546,555,547,551,551,502,499,497,508,501,508,492,489,503,453,447,543,527,532,519,529,531,517,531,532,523,522,519,510,519,514,514,518,511,510,517,520,523,517,532,531,563,554,566,559,553,558,573,540,537,538,518,523,528,527,522,526,525,525,527,526,541,531,536,535,539,530,541,541,535,540,538,540,493,491,483,486,471,487,488,470,477,480,487,482,470,485,486,485,477,482,475,482,530,544,550,542,548,542,550,544,548,542,542,553,556,566,542,547,556,556,551,548,553,546,550,516,518,525,527,544,528,538,537,542,537,531,542,542,540,538,506,537,520,525,520,512,521,514,524,525,523,598,585,589,585,584,577,595,585,574,596,579,585,595,591,537,550,560,560,550,551,538,509,516,518,523,517,517,511,516,528,520,525,507,514,501,507,497,504,506,483,490,460,473,458,458,517,508,495,504,499,503,507,505,508,520,541,529,494,480,472,475,477,472,561,586,580,587,506,504,499,498,505,514,507,497,531,528,522,522,532,520,527,520,513,518,531,526,523,526,529,531,530,525,522,521,527,525,534,534,537,534,526,550,548,561,567,565,556,555,570,565,562,559,553,566,569,522,527,529,523,529,529,539,524,524,536,523,535,537,521,535,547,553,548,562,546,555,554,556,489,489,504,502,504,501,505,496,529,544,552,531,528,549,561,552,550,535,536,543,539,554,550,516,547,538,511,498,499,503,504,501,491,508,508,508,495,513,581,568,561,562,582,567,562,566,551,574,577,574,580,502,487,511,497,507,503,501,508,505,504,492,524,485,489,497,488,499,492,483,479,459,475,463,477,474,482,471,475,528,548,567,547,544,520,511,502,506,510,520,516,511,522,522,518,514,507,514,512,473,484,468,484,476,488,492,494,483,479,480,482,486,436,443,436,438,443,439,435,428,448,443,437,435,457,441,548,534,508,519,520,522,519,520,516,517,529,529,523,531,528,526,527,524,527,535,562,569,568,569,569,566,552,577,561,563,579,568,562,561,564,564,564,564,561,562,567,566,552,545,543,538,548,548,533,539,545,545,537,543,540,541,533,524,527,533,536,533,526,532,519,519,524,517,525,528,541,536,539,543,536,541,533,538,537,543,585,566,563,553,562,563,562,552,544,557,566,532,515,519,521,529,498,505,537,535,546,546,573,559,552,562,561,573,562,568,549,494,506,499,496,515,503,506,505,497,554,541,538,532,536,547,550,564,556,568,569,558,567,581,559,568,542,545,548,535,533,541,546,544,555,537,496,495,505,478,473,482,484,483,485,476,478,478,479,475,482,481,481,474,481,448,447,453,475,498,497,486,488,499,492,481,493,488,494,524,535,533,553,555,556,571,479,498,485,486,511,510,496,502,505,485,442,435,424,434,435,442,451,436,440,439,516,511,513,510,516,523,518,520,502,515,514,517,520,531,516,519,522,527,516,519,524,520,517,523,526,525,523,519,553,538,549,546,539,543,544,551,566,558,553,540,563,519,521,507,528,460,458,456,456,446,453,452,449,460,461,452,452,452,450,461,468,458,606,597,580,588,582,601,588,581,490,514,541,537,541,549,535,552,537,536,533,544,542,538,542,541,541,545,548,565,564,555,560,565,551,559,517,527,536,523,520,540,530,525,530,523,515,518,518,518,517,516,513,514,513,511,513,518,567,559,551,549,554,552,550,544,543,549,482,505,497,492,501,493,506,495,506,502,503,458,466,466,470,467,468,479,471,507,501,500,511,502,503,503,500,501,496,497,502,503,498,505,535,552,552,546,544,543,518,522,506,519,530,501,538,520,521,514,511,527,521,511,526,526,522,520,498,499,500,495,494,498,495,497,493,502,497,495,493,460,458,460,458,468,455,453,446,455,457,462,460,451,462,456,459,460,450,455,463,450,539,565,549,549,550,504,509,494,487,495,492,496,492,613,587,591,603,585,594,589,564,552,550,544,524,536,453,454,473,485,468,478,462,476,470,553,531,541,539,541,528,543,536,537,538,539,574,550,576,559,574,571,583,534,528,535,541,532,536,529,515,533,528,527,521,527,513,526,527,525,560,565,572,561,555,564,560,528,509,518,520,517,517,514,519,526,524,510,509,512,514,510,516,513,515,525,520,542,531,526,535,530,530,525,539,524,497,507,504,511,502,508,515,512,518,500,495,509,533,526,521,515,539,533,529,526,491,474,562,579,576,577,570,588,580,591,580,535,531,536,530,536,532,504,511,520,517,581,583,592,584,588,583,590,594,582,576,589,575,592,594,597,525,530,543,536,542,533,539,532,535,540,537,540,531,557,465,480,488,484,486,472,479,491,478,491,490,493,494,495,489,488,498,483,506,504,506,497,503,502,507,504,499,502,538,539,546,531,559,565,564,570,557,564,572,559,577,569,571,574,567,578,574,532,542,547,531,539,549,543,540,535,536,542,553,543,482,496,473,492,488,469,471,464,479,480,478,479,469,475,479,475,467,465,464,469,474,547,540,546,544,544,536,519,525,525,533,532,524,533,542,539,526,534,529,527,540,484,496,494,498,498,490,495,494,603,586,597,619,542,565,555,548,556,555,561,516,528,518,502,520,510,522,524,514,520,509,504,520,471,490,481,486,478,475,479,489,506,508,504,518,510,515,512,511,555,544,554,558,553,546,550,546,554,543,549,554,565,521,511,504,490,495,495,492,494,508,469,459,459,461,455,461,467,468,541,547,541,542,548,541,545,544,544,546,551,544,548,548,542,557,546,544,539,492,478,492,484,480,480,473,476,468,463,467,476,472,478,470,602,571,578,576,560,564,588,589,568,590,566,581,556,475,476,483,475,474,469,482,467,525,523,532,531,573,577,571,574,566,570,568,559,569,576,549,538,546,543,553,547,550,549,552,550,541,502,501,488,495,504,497,490,503,507,512,503,505,506,498,505,509,497,496,497,505,511,502,506,503,501,507,497,546,537,543,535,566,552,562,550,561,563,565,504,476,508,485,481,511,512,500,500,498,485,485,500,506,508,499,488,506,434,444,439,449,443,432,441,426,444,438,426,430,444,450,518,515,520,520,521,509,516,515,524,531,515,513,521,512,533,534,543,538,534,527,527,526,551,552,546,470,470,484,495,491,488,490,476,505,492,492,499,481,482,492,572,554,532,543,555,560,554,539,540,567,549,543,552,550,551,546,558,509,514,507,506,506,504,507,504,504,506,527,521,506,519,514,516,522,515,596,577,581,577,576,572,545,561,556,545,551,559,554,560,545,548,554,556,549,550,547,551,552,558,553,554,559,560,552,556,555,558,551,524,513,529,533,524,506,513,516,534,522,527,522,500,476,489,484,495,493,486,495,494,461,457,461,466,471,460,451,460,459,452,458,514,505,498,500,499,501,503,508,571,548,562,561,570,560,560,559,555,482,496,489,491,502,497,505,494,506,496,497,499,500,525,550,551,554,553,536,540,539,547,538,545,528,528,490,490,489,493,492,488,487,478,580,538,553,554,547,547,553,556,540,542,519,500,503,503,506,499,510,512,511,503,504,494,581,549,559,559,550,565,569,553,559,546,564,548,541,554,559,518,525,529,526,526,526,530,521,531,533,545,537,539,538,537,534,535,537,540,538,531,533,535,543,540,512,528,521,532,529,527,517,549,560,559,550,561,567,561,555,560,531,552,540,546,545,517,505,513,452,472,469,460,471,465,470,474,465,464,470,572,491,494,473,487,490,489,469,479,483,469,490,474,530,543,534,544,538,543,537,532,525,537,528,538,529,543,526,526,543,556,542,544,543,535,542,543,543,544,557,545,542,552,549,555,562,491,502,487,491,489,510,444,439,425,435,442,436,440,439,435,434,430,518,516,524,516,520,512,513,526,530,547,538,541,561,545,538,555,547,556,551,537,548,543,550,538,540,545,543,554,503,513,509,512,515,506,502,507,512,559,560,562,556,559,571,576,557,565,550,552,551,555,565,554,565,522,529,523,522,528,520,523,543,535,533,481,486,501,483,486,486,479,481,476,481,484,485,563,557,553,542,544,550,555,546,551,550,551,476,492,493,496,513,507,501,491,503,482,495,489,496,494,490,475,486,486,482,479,485,478,488,487,485,484,478,490,485,485,482,490,506,491,501,499,501,504,502,496,524,535,534,539,525,537,544,541,540,541,550,536,537,536,536,543,537,533,540,533,486,494,486,482,491,480,489,496,494,497,481,490,485,478,482,577,559,569,560,559,568,558,561,567,566,559,566,570,559,554,561,480,498,494,495,511,480,493,493,506,502,504,495,496,490,499,488,488,499,503,484,453,451,542,535,540,538,540,543,533,536,545,551,534,544,535,536,539,541,540,541,538,549,549,512,518,510,516,508,518,515,513,519,510,542,521,526,523,527,534,525,529,531,530,466,471,474,483,474,472,478,479,478,478,555,546,542,547,543,547,552,554,549,543,535,550,549,551,556,547,557,556,554,547,553,482,478,469,473,480,472,475,478,472,475,479,476,548,554,555,545,552,563,550,568,545,558,549,548,545,563,551,558,558,555,494,488,511,495,500,504,497,487,514,540,547,528,539,541,534,539,536,539,542,489,505,553,557,551,540,554,549,556,556,554,555,566,551,556,536,537,509,520,517,518,517,524,517,519,521,519,557,567,564,563,554,555,551,564,550,557,567,566,562,557,545,550,556,551,557,551,550,554,556,559,561,554,554,545,550,552,556,556,555,501,523,510,513,516,522,512,524,523,514,505,484,475,483,476,478,481,486,473,492,472,479,476,482,508,570,568,552,557,558,568,557,549,481,489,504,492,492,495,495,488,503,509,496,495,498,492,507,501,560,578,553,572,568,564,576,564,556,564,563,575,574,568,563,568,560,561,523,517,515,516,506,526,522,514,526,471,474,468,469,461,472,459,465,437,438,520,508,514,513,510,520,511,517,516,526,519,534,540,543,535,531,534,544,533,545,538,537,540,534,537,544,538,538,535,540,534,536,546,555,538,520,505,509,564,558,562,560,571,565,505,498,518,504,511,516,507,505,510,516,518,511,517,555,559,551,555,557,549,553,550,549,559,569,548,557,542,512,500,495,500,497,495,484,495,494,490,524,512,513,530,527,515,528,527,520,523,519,523,526,514,517,524,519,523,560,560,566,553,495,488,474,473,462,453,473,468,452,457,454,460,464,541,553,538,525,534,530,531,542,545,547,529,562,547,545,545,551,550,557,536,549,544,543,545,547,542,556,556,559,553,537,548,560,552,551,555,514,492,506,496,485,489,489,496,488,530,531,522,515,519,518,559,582,579,577,574,586,590,581,569,566,531,544,537,490,508,501,505,501,508,499,500,532,519,536,522,535,531,534,515,532,520,523,538,533,526,534,529,529,534,528,570,573,580,565,567,563,562,564,557,549,567,559,575,577,560,509,496,520,518,514,507,511,511,516,511,503,514,502,512,549,561,560,556,556,557,554,553,564,558,558,571,555,553,557,558,551,573,557,555,552,554,569,554,548,558,526,524,525,529,522,529,533,525,539,535,523,512,522,510,518,507,510,505,503,505,502,508,498,507,504,503,507,488,505,499,501,479,483,472,498,481,483,487,486,485,488,492,480,482,484,490,484,479,482,480,472,477,474,480,476,475,480,476,446,464,444,451,458,464,460,463,449,446,459,450,463,458,455,454,562,550,503,492,491,487,494,482,498,492,501,492,504,533,535,548,559,543,548,568,518,494,504,503,496,499,498,490,515,506,509,553,546,541,542,544,549,561,546,478,504,472,469,468,473,472,464,466,594,582,563,555,573,558,464,481,469,475,483,474,472,485,480,477,467,473,464,471,491,454,477,468,472,470,480,484,476,478,526,526,526,515,522,534,517,543,540,532,541,535,543,539,551,542,537,546,535,522,511,518,526,526,519,510,516,520,519,519,512,511,512,519,556,585,512,496,499,501,509,499,502,498,502,497,506,492,503,483,483,483,484,484,482,486,491,496,481,487,615,586,582,603,592,597,595,572,550,562,478,490,493,504,497,504,495,496,498,501,512,562,575,559,543,559,558,565,510,500,518,511,503,493,497,497,494,490,505,495,502,499,498,501,566,552,561,555,556,551,549,552,550,554,556,553,560,550,528,531,531,527,531,522,529,526,527,524,532,527,531,526,517,518,522,524,524,520,524,527,531,541,556,561,562,557,547,557,562,548,535,537,531,535,534,541,535,530,527,539,533,527,532,528,529,552,529,531,537,540,530,538,534,528,531,491,493,502,496,500,505,577,598,590,583,576,600,581,586,572,571,572,590,589,539,531,511,525,519,517,520,515,521,559,563,554,564,557,558,558,567,555,563,536,532,517,533,538,527,524,531,525,475,479,469,488,470,478,474,476,480,477,490,536,527,556,555,551,555,549,551,548,558,553,549,551,560,553,561,544,554,545,556,529,511,520,518,515,511,514,504,522,516,526,526,524,489,482,480,480,474,479,482,479,485,477,479,486,487,484,470,466,456,467,462,470,461,466,455,469,459,456,453,606,577,582,596,542,553,556,528,546,541,554,540,544,545,543,549,491,517,508,500,508,511,495,498,515,503,514,498,498,488,486,492,491,483,486,462,475,474,480,486,468,476,476,479,489,478,480,473,465,467,469,463,465,466,475,490,473,481,476,481,482,471,505,505,505,507,502,508,503,505,504,503,506,507,498,504,507,507,502,471,482,483,474,473,483,476,480,488,489,486,479,491,492,561,571,578,551,569,562,558,559,575,547,560,578,562,579,514,503,510,522,514,513,512,504,514,509,514,507,503,513,507,510,513,512,546,557,549,564,565,555,548,555,498,491,511,500,505,497,507,502,506,507,512,506,511,512,501,547,526,522,529,531,524,530,524,535,541,525,528,532,533,534,548,545,538,544,544,560,558,553,557,555,557,563,500,521,529,506,506,516,485,489,490,487,491,486,490,486,494,492,484,483,489,487,534,526,518,526,521,521,528,522,529,522,525,531,574,569,580,577,579,581,566,508,532,523,529,529,534,530,529,525,585,583,581,574,585,594,583,578,579,578,578,597,577,580,576,577,571,587,583,497,526,518,513,511,537,548,552,548,549,554,547,550,547,556,545,553,553,552,542,560,545,548,547,545,547,546,544,552,490,499,494,502,497,498,500,490,486,493,504,502,471,475,474,481,477,471,478,471,469,481,482,471,480,482,481,480,475,485,486,507,507,506,500,507,506,510,554,551,545,543,547,560,548,558,548,551,559,552,514,514,505,511,502,496,472,461,464,460,458,461,455,458,464,466,465,460,461,443,430,440,435,444,443,515,516,516,516,508,509,505,517,521,519,506,530,528,532,525,555,560,565,564,567,566,562,554,518,513,515,502,513,514,559,547,538,548,546,545,540,545,518,518,514,511,517,518,519,507,528,513,524,515,527,524,517,523,518,550,574,586,572,566,508,504,491,492,496,504,506,499,510,513,504,515,513,497,504,516,511,510,501,513,565,564,564,566,564,568,565,566,561,559,564,576,559,565,549,554,547,553,555,543,550,548,551,545,550,541,478,493,487,478,484,488,492,485,488,487,494,477,486,443,439,452,455,444,457,458,449,451,556,563,549,566,569,555,556,559,550,550,555,552,543,556,554,559,556,510,505,487,498,500,499,507,512,508,499,505,505,543,559,558,556,564,561,549,545,564,558,551,507,483,505,490,495,491,506,502,440,451,438,437,438,445,441,440,514,519,523,520,524,514,520,518,548,542,543,552,542,538,566,551,559,552,565,560,560,554,558,564,550,514,516,524,523,509,517,478,478,488,474,485,478,480,481,504,474,472,618,598,594,598,610,605,589,593,587,602,588,596,593,590,588,595,527,543,532,530,532,524,532,540,527,492,492,491,495,496,498,500,498,506,503,501,497,491,496,493,568,578,590,578,590,549,553,544,543,550,547,553,568,486,494,498,491,497,501,511,513,577,560,556,557,560,558,568,558,551,551,498,513,511,519,515,522,517,506,518,479,482,479,485,481,478,475,478,475,463,465,463,465,473,456,456,464,463,459,456,468,450,454,461,536,534,537,541,530,539,536,543,539,536,546,550,551,554,548,546,541,558,540,548,541,549,547,465,490,476,466,488,478,477,474,489,469,570,569,575,550,565,577,580,581,556,515,495,486,556,562,552,550,555,558,548,565,564,565,544,503,585,590,585,602,586,590,577,581,590,583,606,583,579,594,587,584,593,555,546,540,542,537,540,546,537,536,542,524,527,526,525,523,527,528,529,543,539,533,541,540,506,501,520,505,509,513,498,512,501,498,541,540,554,546,563,553,532,539,537,533,563,518,518,527,515,525,514,516,515,523,516,480,479,484,476,471,502,494,508,497,501,493,501,501,498,502,504,498,504,499,492,501,513,512,516,516,516,514,516,517,514,560,552,559,563,552,555,549,559,556,562,556,550,557,559,559,557,552,550,554,560,570,565,566,562,561,560,548,556,563,554,554,530,518,529,513,522,515,525,514,536,530,519,525,520,524,528,524,512,509,506,511,500,515,504,474,480,481,480,479,486,481,479,484,482,484,485,475,477,478,477,484,484,485,460,575,556,565,561,564,561,556,561,570,559,566,556,556,545,564,544,556,555,550,551,556,562,545,550,549,549,492,488,509,507,499,505,498,506,515,496,516,517,498,581,581,604,598,600,589,591,598,592,607,601,601,615,554,549,547,551,543,518,494,498,502,505,496,492,501,495,503,487,474,489,478,479,490,484,478,486,486,480,482,475,480,484,475,478,479,486,486,505,490,497,488,488,495,490,491,492,522,512,514,512,508,518,510,502,511,506,511,504,509,551,535,538,542,538,532,535,541,532,536,546,533,539,540,541,555,545,545,536,549,542,555,532,504,513,514,512,536,529,525,530,523,527,529,528,520,540,520,530,518,529,521,448,456,451,447,463,444,452,462,458,467,512,517,530,530,530,524,532,523,528,524,529,522,524,526,535,537,543,535,545,542,536,533,539,534,534,550,554,550,555,553,534,552,545,546,492,492,498,508,498,502,488,520,508,492,507,455,437,438,443,441,444,458,482,482,476,466,474,472,469,489,468,480,472,468,487,468,540,561,514,510,516,509,515,500,502,520,501,509,520,498,511,514,522,573,550,559,580,566,567,554,563,573,553,558,556,513,514,498,506,490,487,491,510,498,425,435,431,441,433,445,439,439,450,538,536,531,535,531,553,539,548,533,541,531,531,540,541,546,535,533,534,552,547,553,544,548,502,491,504,486,500,483,436,447,424,420,438,443,435,432,441,439,431,427,431,433,435,444,433,439,447,457,445,441,516,529,544,528,535,536,536,536,543,532,533,550,544,511,480,494,493,519,494,494,491,506,495,508,500,487,478,462,467,469,465,526,525,536,534,542,549,537,530,539,534,517,539,538,543,539,534,543,547,526,522,530,531,530,555,549,563,545,563,556,563,561,512,518,526,534,513,539,514,524,514,515,520,511,485,499,497,488,492,487,448,462,460,452,455,456,456,457,457,469,462,460,471,461,458,464,611,600,598,599,582,591,604,587,591,546,552,555,558,503,491,494,498,487,499,488,490,491,480,479,487,498,490,494,469,474,461,459,461,467,470,464,468,457,579,562,562,555,552,551,569,549,555,546,539,540,502,501,501,497,471,500,492,501,510,438,423,435,449,430,528,534,536,512,527,521,529,534,524,525,524,558,556,514,503,490,513,506,498,505,503,505,504,501,507,503,501,498,503,520,519,525,508,526,523,520,532,515,561,588,574,574,586,564,575,563,577,581,577,580,566,568,589,587,590,562,572,529,523,538,517,523,566,555,555,554,554,551,571,522,502,511,519,504,512,499,503,503,515,502,574,570,565,557,553,548,547,548,549,501,511,485,477,475,484,487,484,481,477,472,475,493,495,497,509,568,530,514,526,517,524,514,506,511,506,508,512,506,504,513,510,509,516,485,493,482,480,479,482,476,480,460,461,464,465,463,473,457,456,461,466,467,463,466,465,463,462,462,464,565,551,547,548,549,556,558,552,541,549,492,489,491,498,492,473,495,493,487,506,597,568,581,592,577,590,572,587,577,560,580,584,565,590,591,570,503,523,521,519,526,535,524,514,523,522,519,531,529,526,534,529,531,527,531,533,529,531,525,569,555,571,559,581,568,569,572,574,570,569,561,512,514,522,507,560,561,550,549,542,552,543,551,555,548,538,540,540,557,545,550,545,548,549,544,537,533,552,517,517,513,509,512,514,522,514,515,524,519,570,585,575,561,568,566,586,563,567,578,565,581,501,503,500,502,488,500,495,502,514,498,496,507,497,500,565,588,570,567,574,586,566,566,571,567,574,563,564,570,489,503,498,504,507,457,470,459,468,467,462,559,545,554,561,556,553,555,544,548,563,551,558,553,561,545,548,550,556,547,540,548,554,557,506,479,483,476,478,495,501,560,559,577,575,592,561,550,548,547,551,550,554,548,548,536,544,551,550,544,483,498,509,494,500,500,489,498,505,501,494,490,493,504,505,494,500,519,514,517,515,515,515,518,527,507,514,516,544,564,555,556,554,558,555,554,537,559,553,550,549,552,555,551,550,550,553,554,553,516,532,516,521,511,525,515,518,527,511,514,516,520,522,514,512,511,504,520,483,491,483,486,489,496,488,482,494,487,491,484,485,483,483,476,492,454,448,454,450,431,458,456,450,453,448,451,457,456,451,440,445,446,437,581,591,575,539,548,495,491,486,485,486,484,493,497,481,490,480,489,494,492,460,460,448,466,460,457,463,469,452,465,456,464,452,463,461,465,516,530,526,531,527,539,535,527,538,539,520,530,533,538,536,525,537,531,535,526,538,528,534,529,534,539,537,535,575,567,570,561,563,561,569,574,560,525,524,525,519,527,511,557,512,548,530,547,545,540,550,545,544,542,544,542,545,524,526,528,523,524,522,527,526,531,524,525,528,520,568,570,557,567,566,563,563,510,510,516,516,507,516,526,522,509,511,521,511,509,485,482,492,477,480,487,516,514,511,516,514,517,509,524,507,519,513,556,556,559,566,557,554,565,556,563,565,497,508,503,526,517,516,500,549,538,537,546,548,534,542,540,544,548,523,524,517,523,522,528,526,524,528,525,524,565,565,563,557,562,555,557,558,561,563,558,559,543,530,528,527,528,516,522,530,519,474,493,497,489,501,497,498,583,552,561,553,545,538,542,545,549,554,547,551,553,558,548,549,544,475,485,494,494,487,502,494,483,497,491,507,498,498,482,493,463,456,469,469,465,455,460,462,465,534,533,536,536,540,538,540,528,540,547,532,536,537,543,546,536,540,542,524,532,547,536,550,535,544,546,544,540,549,545,537,544,536,539,538,541,544,539,554,544,542,537,549,512,509,515,514,517,510,510,521,570,564,567,576,563,576,578,564,577,566,503,486,489,497,493,488,489,480,489,486,487,485,495,494,491,493,491,486,492,483,481,485,481,480,483,483,487,493,477,576,562,544,556,565,557,552,564,554,561,562,562,569,557,507,500,501,494,495,491,495,491,484,501,492,506,505,505,510,503,511,509,510,545,538,541,543,540,532,533,553,558,557,555,571,558,562,491,494,497,444,457,450,432,421,438,448,510,516,517,514,520,520,522,527,515,515,517,522,514,524,526,524,521,525,520,543,540,539,529,537,536,540,537,538,541,541,544,540,560,547,541,552,539,518,505,506,513,503,510,508,505,511,506,507,509,561,559,569,555,561,574,563,570,572,502,492,499,493,497,506,453,440,445,547,533,566,539,477,476,468,466,523,533,543,544,534,525,533,552,531,535,531,544,537,534,539,539,543,553,547,549,548,531,545,537,544,533,545,550,532,500,483,491,482,502,491,489,483,500,491,487,493,480,567,543,533,562,556,540,544,498,506,510,509,498,504,511,494,551,553,561,554,565,558,555,556,497,498,502,496,514,506,496,495,496,511,507,509,505,496,512,501,529,538,541,536,542,560,553,548,556,557,549,569,502,495,457,487,473,474,532,523,523,524,523,517,522,529,513,518,524,525,515,510,516,516,517,521,520,504,528,531,531,532,531,527,529,564,567,565,575,571,569,574,558,571,569,509,512,492,506,510,520,509,505,502,494,500,525,525,528,529,532,535,525,533,530,534,534,538,532,534,536,539,537,540,533,549,552,535,552,534,537,556,544,543,490,501,506,504,500,502,506,508,568,556,554,536,516,515,518,531,525,519,508,524,529,508,510,517,517,536,512,497,496,493,494,490,485,494,492,492,490,489,493,488,494,496,493,492,493,490,497,502,494,500,499,477,482,472,485,483,480,485,483,490,496,516,508,509,509,507,509,501,515,509,537,539,544,544,496,497,501,487,493,496,491,494,481,492,499,615,588,586,600,597,575,595,586,560,546,545,551,553,548,548,548,542,535,510,511,522,518,524,529,518,487,497,507,502,499,498,494,497,497,493,575,559,565,567,571,555,574,556,559,508,487,483,479,494,492,496,483,495,499,506,498,492,501,500,558,577,553,575,569,504,531,534,526,525,524,532,511,521,465,475,477,467,477,478,479,478,481,477,486,480,457,433,425,428,438,432,434,439,443,439,433,443,431,429,441,425,433,443,433,497,488,485,561,538,539,499,502,501,502,547,537,537,542,534,532,539,544,538,529,535,536,532,539,530,527,546,499,501,506,504,484,500,498,560,558,548,553,550,541,577,482,469,473,482,471,469,482,465,484,490,537,547,541,537,548,558,554,539,555,558,537,557,565,570,569,567,546,543,544,556,549,559,547,570,571,528,492,505,507,508,513,503,512,504,514,512,497,500,501,517,505,500,491,480,486,465,468,475,469,466,474,464,463,441,441,447,445,434,432,495,484,479,480,480,475,509,514,501,509,513,507,508,503,507,501,503,529,527,521,526,537,537,530,532,536,532,523,539,529,544,530,535,535,533,539,532,533,547,543,547,554,543,551,557,535,549,539,539,547,548,559,492,496,492,505,502,497,505,506,521,493,506,502,497,506,578,560,548,554,565,569,531,516,513,520,506,518,512,524,515,522,486,483,487,490,494,486,486,485,496,488,489,490,484,479,487,482,489,480,556,566,565,563,567,565,573,581,566,566,556,561,519,516,523,528,511,511,516,512,521,514,516,523,523,503,509,504,507,504,502,488,494,486,490,509,512,507,506,495,504,517,528,551,564,555,549,558,540,531,523,519,509,523,458,464,475,478,470,468,470,465,475,483,465,482,472,604,590,580,586,585,581,584,584,571,578,580,586,588,526,533,545,531,529,539,528,536,530,542,524,579,548,569,560,498,567,575,562,573,550,558,578,550,537,535,524,531,528,528,533,525,523,524,525,531,528,526,527,547,552,547,556,551,541,563,559,555,553,545,553,551,488,498,495,495,496,496,500,489,486,497,496,495,493,496,497,491,492,485,490,495,490,588,559,563,561,565,532,532,536,533,567,560,570,559,561,554,573,574,562,565,553,561,556,547,525,523,530,526,512,536,525,528,497,500,499,497,497,503,474,487,476,475,483,485,479,477,476,482,491,442,457,453,434,435,442,439,524,525,520,515,528,526,527,525,524,522,528,526,526,528,561,563,572,554,570,567,565,564,500,544,528,533,535,538,533,537,546,547,532,560,554,565,551,549,540,559,556,549,550,515,528,520,522,516,484,498,486,486,491,487,489,483,487,498,494,481,481,481,482,482,473,475,480,480,478,476,473,476,479,480,467,478,472,474,463,447,444,447,443,452,433,532,550,547,552,546,550,559,543,531,539,536,552,540,548,525,515,515,519,514,508,575,565,565,568,562,554,524,508,505,509,515,514,498,500,589,579,583,574,575,561,574,563,569,588,561,591,572,581,562,574,469,489,478,482,487,480,487,478,477,520,526,526,522,526,520,517,536,527,530,535,533,547,550,548,536,546,552,542,551,541,520,505,515,502,522,523,507,528,521,517,515,513,580,578,565,565,590,567,567,569,562,573,499,494,494,503,482,502,500,498,494,501,503,503,501,474,469,476,477,474,477,555,545,524,544,555,550,549,541,493,492,480,471,473,472,484,498,491,489,490,562,562,553,565,558,530,532,537,535,532,537,533,529,537,525,525,527,530,547,536,542,545,535,538,542,535,535,539,538,517,515,518,519,516,525,544,538,540,533,541,534,529,528,536,533,534,552,561,560,577,471,498,497,509,495,492,502,512,502,490,484,493,482,489,464,490,469,479,475,481,474,463,469,484,488,468,476,571,552,552,562,557,556,487,501,497,483,484,494,488,492,478,504,497,502,510,477,557,555,551,559,555,550,564,551,543,550,557,549,545,529,525,513,525,524,519,516,574,562,561,563,570,561,564,562,546,545,552,548,539,552,552,551,542,538,546,547,469,484,487,493,483,488,492,490,489,486,475,485,450,468,462,468,531,557,584,503,498,483,492,491,555,547,548,538,556,540,552,538,539,538,539,505,510,516,514,516,511,511,521,524,536,524,524,525,573,578,590,578,573,585,589,581,576,583,587,544,544,546,534,537,539,506,514,521,518,551,541,542,545,541,542,540,543,545,547,545,562,576,557,568,573,566,493,500,509,498,497,504,493,503,492,504,506,509,522,521,537,530,540,537,539,537,534,538,541,529,526,527,530,525,526,523,529,522,531,530,530,520,530,529,525,531,532,541,553,567,554,560,557,559,567,552,568,559,515,523,513,522,496,486,480,482,489,480,485,482,484,477,477,477,480,483,478,476,478,570,560,556,573,548,558,576,572,560,565,568,569,564,577,563,560,557,567,559,573,570,552,580,533,513,507,511,519,516,506,516,478,482,483,485,487,481,485,589,558,565,573,572,580,565,557,559,499,504,502,497,489,494,493,495,491,498,493,502,523,538,544,539,558,533,542,536,551,547,523,568,554,565,552,561,557,563,558,556,570,553,555,534,537,525,529,528,526,533,528,525,534,536,530,532,536,516,498,501,497,496,510,498,497,498,481,503,511,509,512,500,506,487,564,578,575,547,573,552,552,553,557,567,548,554,561,554,555,553,552,557,566,562,509,510,517,503,523,516,515,516,507,522,523,508,516,505,518,513,509,555,553,554,553,555,567,558,564,544,546,553,562,563,557,518,511,516,515,518,522,523,529,525,518,520,476,463,444,431,442,427,438,437,432,432,438,545,530,550,536,543,544,539,551,543,528,536,528,561,566,576,560,566,569,561,569,562,565,555,561,532,524,528,538,532,518,527,535,532,496,500,500,504,500,498,508,583,553,575,565,567,558,531,517,523,516,521,550,534,544,532,537,533,532,536,535,555,557,561,543,565,554,559,554,554,555,518,467,472,475,473,467,472,471,475,475,476,471,473,502,504,499,511,497,507,548,550,509,502,506,513,492,501,503,501,499,497,492,499,511,461,465,461,471,462,465,477,451,467,457,458,472,461,459,451,457,463,456,457,468,463,461,463,454,459,555,469,504,501,485,489,472,482,490,505,498,497,501,497,507,491,492,470,462,451,454,458,459,546,540,542,538,542,548,528,558,501,505,507,506,507,507,514,515,511,510,516,516,502,503,512,525,530,532,534,535,530,535,522,527,550,541,549,486,488,474,484,480,490,475,480,482,474,487,485,505,504,505,515,498,509,508,516,524,541,529,533,540,533,529,538,532,543,494,488,491,490,496,505,569,593,584,604,589,615,548,528,548,532,544,549,539,525,522,535,533,537,516,515,503,509,511,523,512,514,519,512,513,513,506,511,574,569,553,530,550,495,490,503,504,490,496,502,494,508,499,507,505,498,490,510,506,517,521,517,519,525,520,511,545,572,568,577,567,567,567,561,561,566,560,558,529,534,529,514,533,517,532,526,527,528,517,514,503,512,508,507,500,497,502,503,505,500,499,498,492,501,497,497,491,493,493,484,466,463,469,464,475,473,464,463,465,466,463,460,469,467,457,457,469,473,525,542,534,475,471,473,473,471,492,488,480,479,483,469,476,483,484,474,488,487,497,482,489,532,600,574,576,570,584,591,576,592,578,544,537,544,544,541,543,541,538,534,544,535,524,530,519,523,527,521,520,522,524,589,572,568,573,565,562,547,574,561,561,573,494,469,543,535,532,544,548,543,538,550,529,525,536,538,541,555,552,552,539,538,541,554,556,552,497,501,498,487,490,492,494,500,559,549,519,520,513,519,514,519,519,518,512,546,541,544,541,544,537,546,547,541,544,553,558,566,576,561,570,570,565,568,565,561,562,563,577,568,563,513,518,520,526,515,515,515,511,509,511,464,460,461,455,493,478,475,489,491,494,477,571,567,578,571,571,580,562,590,560,554,573,560,557,470,496,476,494,478,496,483,496,480,491,536,532,531,535,533,529,542,536,531,512,524,536,516,525,520,518,530,527,532,532,528,535,537,532,543,533,541,534,546,501,504,546,556,493,517,497,506,487,491,500,503,505,499,486,491,499,496,492,491,494,511,512,513,508,509,506,503,511,507,504,508,546,539,540,546,549,536,545,558,555,542,546,539,549,545,546,556,539,546,547,549,554,458,470,481,475,470,469,463,472,490,529,523,520,530,535,521,530,529,536,531,528,538,533,533,533,538,529,530,538,534,532,549,544,544,539,538,546,554,552,545,551,544,536,541,524,521,527,521,514,513,524,520,524,565,547,549,560,561,555,558,553,535,532,538,535,534,547,534,532,531,546,537,526,527,528,522,532,526,524,554,541,540,536,537,540,516,524,527,526,523,523,525,554,523,539,539,539,524,504,489,497,567,552,536,539,552,551,561,553,538,552,551,541,552,527,536,525,527,527,528,531,530,557,554,564,565,577,562,560,562,554,554,568,562,561,554,561,560,563,564,565,564,554,566,507,517,512,522,500,510,513,522,511,517,520,517,520,496,491,500,502,494,489,498,498,473,468,473,476,466,471,472,463,558,519,537,542,541,541,534,546,540,552,538,525,502,499,507,494,496,499,497,496,504,511,483,500,492,512,501,507,497,492,497,498,505,574,594,584,610,599,586,613,554,538,535,534,540,538,537,548,554,562,573,567,552,564,562,509,486,501,502,491,492,483,505,500,496,511,472,461,466,508,497,505,498,514,514,504,503,512,517,512,507,501,508,504,530,536,541,535,546,541,537,536,531,538,544,549,547,520,521,522,540,544,547,545,549,547,546,546,544,551,549,510,528,524,539,522,531,531,519,527,533,526,532,531,530,524,529,531,529,533,539,531,528,557,568,575,567,565,563,568,570,523,497,510,507,517,508,561,558,562,558,558,559,548,562,560,555,559,553,517,516,507,515,532,520,528,504,519,512,483,484,485,484,483,483,479,479,474,459,468,465,464,467,462,467,556,549,554,552,556,557,556,550,555,557,557,555,556,556,551,557,554,547,553,536,547,486,456,451,472,525,539,533,525,549,538,555,573,568,573,565,532,539,511,539,521,522,525,546,526,541,533,526,515,522,510,508,507,512,520,518,503,578,565,570,567,575,580,554,523,528,518,532,527,518,531,517,531,530,512,509,504,514,510,518,508,502,511,509,512,510,482,489,496,486,488,491,500,489,486,487,492,489,486,486,490,488,481,485,482,488,488,491,482,481,505,495,497,491,487,505,493,496,496,492,493,491,484,498,492,498,493,488,477,479,488,483,472,475,486,479,489,481,462,467,470,463,464,458,455,453,455,567,549,542,567,578,585,582,566,565,561,561,561,558,578,501,495,483,499,499,485,489,492,491,537,545,547,550,550,553,554,545,542,518,504,502,505,509,505,506,514,512,510,517,509,512,507,535,547,543,545,540,544,557,533,532,521,531,533,539,540,536,522,539,529,526,501,496,500,495,492,505,499,504,498,498,501,504,505,581,557,565,575,555,570,556,573,557,558,573,496,503,488,498,505,538,527,543,534,546,543,532,546,543,540,546,543,528,535,541,553,537,533,535,533,534,534,537,518,514,513,516,523,516,519,519,516,519,506,559,502,503,514,524,515,513,513,520,517,515,532,522,518,550,556,561,549,552,544,547,549,549,548,549,532,542,551,543,517,499,500,501,492,498,499,499,497,500,497,491,490,494,491,491,488,500,492,494,493,491,515,496,502,512,500,500,510,511,509,500,506,532,530,538,526,535,533,538,539,535,532,563,565,550,563,558,573,564,540,524,530,531,529,530,527,558,570,563,561,562,568,562,562,553,563,562,554,571,538,539,535,534,538,540,541,528,536,537,543,536,537,532,535,508,511,524,518,520,516,511,519,521,516,526,518,549,559,545,557,546,546,539,557,544,548,548,550,533,536,541,541,545,537,539,535,535,536,537,531,535,516,506,507,514,511,511,505,512,511,514,515,577,557,570,558,559,571,561,560,562,558,563,564,549,572,553,547,555,558,552,501,518,520,514,517,518,529,503,502,507,501,493,507,502,508,507,505,502,502,502,508,504,504,506,502,481,485,454,454,463,463,455,458,454,456,460,449,450,437,531,543,526,526,535,524,527,539,541,538,543,536,539,538,540,537,544,523,538,544,488,476,487,502,581,587,567,563,566,513,526,527,516,522,521,518,555,547,558,566,553,563,565,501,516,514,508,505,505,503,504,518,501,516,509,524,523,529,525,526,537,527,530,520,527,514,526,528,523,541,561,484,486,460,491,476,462,530,536,532,541,542,541,543,534,536,546,535,543,550,542,557,543,541,543,548,559,544,546,466,497,495,491,487,482,490,492,475,493,582,578,548,546,543,540,544,543,547,545,537,535,533,534,535,529,530,529,533,537,539,531,525,540,565,568,552,563,549,562,571,560,551,567,517,514,526,519,520,519,512,516,491,440,440,446,451,434,447,438,441,441,450,453,444,525,528,520,519,521,533,529,526,528,526,517,525,535,519,520,525,516,519,547,537,536,544,533,535,548,536,531,560,538,529,528,528,524,520,523,530,522,521,528,526,525,515,544,539,542,536,520,525,526,530,521,522,527,526,521,527,548,537,534,534,527,536,541,530,529,540,534,542,532,533,544,517,524,525,520,526,567,553,563,557,557,545,560,548,567,549,544,529,540,530,538,534,536,538,532,525,531,523,524,527,528,529,523,524,532,511,541,530,535,534,538,531,531,531,538,537,548,521,537,524,441,453,449,453,454,444,447,453,527,529,535,539,529,538,535,528,577,575,566,566,573,572,570,571,581,571,562,559,542,547,558,543,554,546,558,559,551,551,548,554,540,553,514,521,528,513,498,492,490,492,495,489,457,455,452,470,458,455,451,464,458,452,483,483,486,494,480,485,530,518,520,524,520,529,529,522,519,531,576,594,592,575,582,581,570,587,577,575,578,586,574,578,580,595,589,493,507,508,502,502,509,517,534,530,535,535,525,538,525,524,521,523,529,520,523,522,517,519,521,521,519,521,522,523,518,515,515,519,522,525,523,512,523,542,534,518,525,544,542,545,539,540,535,519,526,516,523,518,512,553,548,542,548,541,544,553,563,559,556,507,530,511,509,507,503,512,499,508,508,515,503,505,506,510,507,511,506,475,491,487,483,483,480,483,477,489,486,483,481,472,460,458,455,464,465,459,461,471,452,479,474,474,466,477,474,467,479,471,483,468,470,479,471,569,584,600,582,567,590,600,596,549,537,541,564,580,566,575,560,531,514,528,530,520,528,520,512,517,526,485,487,485,481,482,489,478,484,490,486,489,488,488,487,458,455,466,463,455,555,565,565,560,554,539,546,551,544,540,546,549,547,504,508,502,503,489,496,475,481,498,494,476,493,495,508,509,497,502,492,496,489,508,501,497,496,535,521,523,522,518,512,524,522,518,525,527,529,515,499,493,504,496,504,498,501,501,566,566,569,579,559,561,564,558,566,559,575,579,578,553,566,499,552,556,543,553,543,547,531,544,538,547,536,565,550,556,537,546,540,551,525,505,514,500,510,490,509,494,500,504,478,481,484,479,482,476,484,478,479,481,483,472,476,489,470,473,475,480,472,477,473,477,520,507,510,510,507,513,573,563,562,553,515,523,515,513,527,513,522,509,521,507,525,481,492,483,480,476,478,494,487,489,483,484,487,481,486,485,479,476,483,485,490,483,565,564,546,558,490,479,487,502,500,497,497,483,492,514,502,513,525,523,523,524,528,537,536,562,579,574,578,581,535,527,541,542,533,532,532,521,526,537,529,535,518,542,530,494,475,470,484,469,543,546,542,538,545,539,543,550,550,548,552,554,556,547,558,560,558,561,550,545,560,542,548,554,560,554,545,548,468,512,514,511,511,514,514,528,528,529,532,530,528,531,526,527,531,528,520,535,558,526,517,516,517,591,581,586,581,582,566,576,586,580,582,577,590,598,582,571,529,541,544,542,532,537,543,545,559,564,555,512,514,512,504,512,513,523,526,524,524,539,536,537,534,532,539,533,537,556,490,499,488,489,503,495,596,586,576,583,599,581,588,582,583,586,586,578,582,588,575,584,587,530,543,535,536,545,540,530,546,534,535,525,527,517,521,516,530,523,523,513,520,525,523,522,519,545,549,547,558,543,553,550,547,540,550,550,544,542,553,544,543,529,545,539,537,535,541,537,542,539,538,587,576,570,564,570,562,575,506,492,505,510,500,513,505,494,504,504,496,503,503,504,504,499,495,506,500,496,507,533,529,526,530,517,524,533,573,570,579,580,585,587,599,576,580,589,584,584,578,570,571,583,573,550,538,531,541,533,543,529,534,533,533,524,516,523,521,519,516,518,511,519,557,546,546,543,546,550,544,546,556,548,550,560,547,553,553,550,524,531,542,535,558,571,576,567,562,567,570,525,525,525,519,527,528,524,518,526,522,522,532,532,528,529,535,528,533,531,527,538,528,582,542,562,545,553,545,563,549,557,565,553,552,545,515,491,492,493,507,492,495,493,579,580,564,581,573,580,580,520,518,513,501,556,548,553,553,550,547,569,480,489,488,500,472,492,501,485,477,490,491,485,483,568,567,550,554,544,553,551,544,543,549,550,556,544,554,546,543,553,550,556,543,554,558,553,550,557,520,529,529,528,533,527,525,532,528,531,544,492,482,488,488,495,486,490,487,507,495,488,481,477,472,490,483,484,555,524,511,509,510,502,492,509,478,481,465,467,471,477,480,474,478,466,475,467,499,489,481,489,485,482,488,484,486,485,480,476,477,482,491,527,542,536,560,571,569,557,567,575,559,564,566,579,565,567,519,520,517,518,523,534,527,518,526,523,526,522,530,505,495,498,507,507,500,497,498,502,500,496,442,457,467,459,461,461,467,458,490,479,481,477,487,484,487,488,594,571,571,567,563,585,566,573,569,599,560,590,521,523,485,483,489,484,485,494,488,443,460,460,461,467,456,457,460,459,454,462,467,469,454,455,528,555,553,557,544,564,548,507,507,506,517,507,514,510,521,534,533,533,535,531,526,535,524,524,527,522,530,533,531,527,564,560,553,561,567,560,562,569,561,519,530,517,521,508,509,508,510,505,502,504,511,502,504,508,510,508,513,507,500,499,504,495,504,498,500,477,479,476,480,477,480,481,478,459,445,443,449,547,553,551,548,554,559,564,551,550,550,559,543,547,544,510,500,503,510,505,501,514,512,495,501,507,506,508,513,506,516,508,512,506,509,546,547,551,489,506,494,494,487,492,491,492,488,491,487,482,486,488,494,501,504,504,499,502,502,499,499,509,506,497,500,535,549,548,537,533,544,545,540,536,556,566,561,574,565,568,566,549,560,525,527,539,529,522,537,536,541,539,524,529,521,526,527,568,561,562,560,564,530,540,544,550,535,540,537,483,492,486,494,502,489,485,499,498,501,499,491,485,480,483,498,501,490,495,489,495,564,553,547,547,552,544,550,555,547,560,556,550,553,545,531,536,532,523,505,546,545,557,546,553,546,552,543,547,546,546,541,548,554,545,541,547,552,537,540,545,548,539,504,503,509,497,504,508,520,514,517,521,518,519,521,518,517,581,588,576,573,570,584,578,576,578,571,586,533,537,528,534,522,525,529,538,533,527,529,564,545,536,557,552,560,561,560,562,506,514,507,509,500,512,505,500,512,507,555,557,563,563,553,551,557,562,553,506,492,494,493,486,498,488,492,495,485,496,488,485,493,503,485,487,491,487,500,505,503,506,506,495,501,504,502,499,573,569,571,566,572,582,560,573,559,576,583,556,586,578,563,552,577,530,515,507,521,508,528,516,516,506,514,520,511,491,493,494,498,489,492,488,492,497,492,494,488,508,504,505,503,509,516,528,534,526,527,522,523,524,478,484,493,505,502,500,482,503,604,589,590,591,584,591,603,596,583,581,609,598,510,503,517,501,512,521,518,517,518,519,510,513,556,557,550,541,546,543,545,542,541,543,542,559,532,543,536,533,555,501,507,497,517,508,505,502,497,490,499,560,562,562,563,562,517,521,501,524,508,512,508,528,522,508,515,483,481,487,490,478,474,472,472,505,501,512,503,497,503,498,502,512,514,509,500,502,511,501,540,542,559,543,558,545,550,552,546,504,519,506,500,499,499,502,492,510,500,504,493,457,472,465,467,460,457,461,450,463,454,465,464,465,535,562,530,561,541,549,548,526,504,494,518,492,506,516,489,525,506,430,442,438,443,433,437,451,455,456,446,453,440,448,573,560,560,561,551,562,569,552,556,566,555,570,568,575,561,566,570,555,562,567,568,571,569,559,571,567,515,521,517,522,514,514,518,522,512,489,480,482,484,488,486,486,494,493,483,483,491,492,493,500,497,505,507,511,501,503,507,504,503,504,510,516,505,506,509,509,515,511,503,512,550,548,543,533,539,548,542,538,572,561,553,577,573,581,570,567,583,577,555,544,550,548,547,549,537,556,533,546,547,542,549,540,538,548,547,539,504,495,510,500,499,498,492,498,495,493,502,491,498,499,497,489,492,499,493,498,490,495,495,502,489,505,496,496,498,531,531,526,586,571,584,579,586,574,571,574,551,580,565,564,552,565,553,564,585,567,560,505,490,487,502,492,496,497,500,489,497,530,533,532,531,530,540,529,533,539,540,542,538,541,536,543,540,541,549,558,554,539,546,558,556,555,560,555,550,546,552,555,540,474,475,526,546,539,534,529,547,538,528,538,537,544,564,547,544,554,557,547,545,567,542,554,552,484,514,499,493,493,472,467,453,472,465,461,464,455,460,467,460,471,462,466,465,452,464,470,459,461,461,460,462,464,465,463,460,455,457,472,455,454,470,463,456,456,456,462,453,456,459,573,560,570,567,565,567,568,568,567,573,564,474,477,479,489,477,483,548,544,551,547,551,541,545,547,545,556,563,550,564,548,556,560,552,499,508,509,511,503,495,503,508,496,498,507,490,512,495,502,488,512,523,523,522,512,521,519,522,517,527,558,482,494,491,500,491,495,488,488,498,497,504,499,478,484,489,482,484,485,476,486,480,586,586,582,558,573,569,575,559,564,562,563,568,561,563,551,554,517,522,522,530,525,524,520,524,533,526,524,524,529,520,521,523,517,527,538,540,535,553,548,486,484,487,492,468,490,484,483,488,491,465,457,572,558,549,513,498,494,493,496,487,512,489,501,498,496,491,512,507,502,501,502,506,496,509,501,552,543,553,542,554,550,551,554,554,519,517,513,521,519,519,516,493,492,496,496,498,494,499,497,497,464,449,461,479,487,481,486,509,487,479,484,502,587,561,576,577,565,561,543,563,499,491,502,500,506,511,501,502,499,511,520,558,542,557,554,555,548,557,558,552,567,550,556,508,480,484,478,490,454,445,455,451,440,447,452,444,441,447,436,439,449,441,454,461,537,535,543,541,544,545,552,554,542,532,557,544,546,483,468,491,476,464,478,528,525,552,538,531,541,543,531,544,543,484,504,507,508,494,493,498,499,506,583,587,594,601,596,596,582,588,545,531,570,558,558,544,550,559,559,546,550,557,542,544,554,544,559,554,555,552,551,562,553,500,511,514,509,517,512,515,512,519,547,536,545,545,548,553,552,556,547,543,552,546,546,550,535,520,529,526,529,521,530,523,531,534,532,529,539,536,529,530,537,527,534,528,536,539,482,480,476,481,477,475,481,470,475,541,536,535,537,522,527,547,555,552,552,552,549,544,556,563,553,544,552,553,553,553,497,498,507,493,491,493,499,495,508,499,493,495,501,495,504,504,499,501,503,499,516,494,500,505,505,504,504,494,501,495,504,493,496,497,494,499,541,570,587,559,575,554,590,562,565,551,572,525,519,523,488,491,489,484,495,488,494,487,491,493,486,470,485,483,484,477,476,467,468,479,465,476,474,454,446,441,442,463,455,555,573,551,566,552,567,557,566,557,539,561,513,522,524,510,509,522,514,520,517,526,521,521,525,518,529,524,518,494,486,488,485,483,504,503,501,505,504,501,502,507,503,512,502,495,501,502,499,496,502,503,500,565,556,558,556,558,566,562,566,564,569,575,560,553,559,527,530,528,537,530,527,532,539,490,480,486,480,489,476,483,557,563,556,542,559,572,550,560,568,560,577,563,562,556,563,554,564,561,563,565,552,499,496,503,498,497,489,500,502,497,499,507,509,513,514,552,548,546,546,550,547,535,553,546,548,553,540,544,546,547,554,536,538,544,538,546,544,546,487,497,493,495,501,489,495,502,499,503,484,541,546,555,546,541,548,562,566,539,551,555,546,548,547,530,502,508,500,512,512,507,508,467,464,459,459,456,459,463,464,467,466,464,460,457,452,465,472,470,537,556,563,550,479,480,466,485,480,480,481,487,481,475,476,496,516,520,530,536,532,525,534,531,523,527,532,529,521,537,538,528,531,530,534,536,532,531,526,523,526,537,533,537,536,533,567,547,539,546,542,538,544,541,539,549,546,535,533,531,537,527,531,530,505,495,503,507,514,507,505,510,508,512,510,507,510,509,506,508,510,504,529,536,536,526,531,537,525,525,530,530,521,522,523,523,524,523,528,510,515,523,523,523,528,523,523,525,523,522,526,524,522,523,517,520,523,524,525,523,519,520,522,521,516,521,524,525,519,543,536,547,546,545,540,547,547,545,565,553,545,547,562,549,554,560,559,549,549,493,501,501,498,504,504,471,468,468,480,550,553,548,554,578,550,569,561,548,549,560,562,551,566,569,497,491,501,496,505,531,541,548,555,462,468,475,463,472,460,458,453,449,442,449,457,455,438,528,532,536,543,534,538,523,544,534,538,535,547,547,545,561,551,557,563,490,488,501,496,502,502,495,502,485,478,485,492,481,538,557,571,565,573,566,574,577,570,565,566,573,568,565,527,515,515,511,508,529,529,531,530,532,538,535,536,538,530,529,527,534,527,547,554,536,553,525,559,534,479,486,492,503,501,501,505,506,540,526,535,550,539,483,506,505,498,498,509,507,499,489,510,504,514,559,534,558,564,563,562,506,496,500,504,500,540,549,550,546,551,539,535,539,542,538,554,508,516,523,521,511,522,518,516,523,518,514,543,544,557,546,548,552,536,533,534,536,537,532,537,532,543,545,531,536,523,526,540,545,567,557,558,533,562,574,580,562,565,515,527,526,518,517,524,523,550,557,551,554,541,545,553,553,556,563,552,545,549,552,554,549,551,567,545,552,547,508,517,505,510,513,521,500,501,523,514,512,508,526,509,507,515,478,490,479,485,484,494,493,486,489,497,491,489,482,499,486,498,488,497,494,483,490,494,500,500,497,511,501,476,482,476,476,488,481,482,488,501,499,500,505,510,511,499,503,510,510,512,501,559,547,550,552,537,546,552,546,559,555,557,567,547,569,568,547,562,564,572,569,570,535,516,516,514,517,522,512,485,489,477,474,481,480,481,474,484,482,482,481,487,454,447,439,454,449,469,607,596,586,581,584,585,606,588,580,609,542,545,544,547,549,556,555,548,558,561,489,486,499,482,481,504,444,449,452,456,450,438,443,453,446,436,540,550,536,551,550,546,546,543,544,542,545,524,499,485,493,495,492,495,487,486,546,559,551,551,550,556,565,547,490,499,481,491,488,498,480,490,489,534,565,541,554,551,555,566,542,550,551,549,509,505,484,502,500,482,492,476,482,470,467,479,470,477,471,476,472,482,469,477,477,550,546,538,555,547,488,499,486,499,503,510,506,495,512,479,484,461,475,476,479,475,538,550,560,546,544,559,546,561,547,550,511,504,526,517,527,530,529,520,520,529,516,524,524,595,578,602,554,553,549,551,555,546,559,538,528,529,530,514,527,533,522,514,513,522,517,525,503,505,510,500,497,499,495,497,501,497,504,498,498,497,500,481,481,485,482,484,482,491,483,480,486,481,492,497,501,504,553,547,545,554,505,514,523,518,525,513,519,514,518,606,606,603,537,551,551,546,544,556,550,553,550,553,555,550,560,484,495,499,496,492,500,499,487,497,499,514,511,513,544,544,547,535,539,545,548,541,542,544,550,545,537,548,518,526,526,528,525,521,537,537,531,531,549,537,538,542,522,523,499,490,495,492,489,498,502,486,494,498,495,535,553,553,560,555,560,568,561,554,558,570,507,506,513,517,514,512,515,523,513,485,484,483,481,472,474,489,485,479,482,483,482,487,484,482,476,479,482,477,481,490,488,456,465,467,463,466,466,467,471,467,465,474,464,464,468,460,463,544,569,563,570,573,553,576,558,563,568,578,565,494,483,491,489,490,486,482,477,499,483,573,593,586,589,588,580,582,581,582,516,523,523,516,529,527,529,531,523,519,513,522,529,498,485,494,492,495,504,502,588,586,581,588,605,592,589,591,583,604,585,589,593,513,539,532,533,522,522,532,538,521,528,521,543,476,479,480,483,477,492,484,559,560,561,554,557,559,560,561,557,550,558,561,554,506,518,508,509,507,514,522,524,514,517,510,516,524,498,478,470,468,475,477,465,473,475,473,460,481,484,473,491,482,477,478,471,486,573,549,559,565,561,562,560,555,559,566,552,535,522,529,520,517,527,525,524,503,510,509,508,509,504,513,509,510,507,511,483,478,475,486,481,477,484,477,481,478,479,481,476,480,488,477,481,510,508,559,538,553,542,552,550,542,546,538,547,504,524,513,512,515,512,514,519,532,517,591,572,556,574,561,573,580,555,564,563,525,540,526,530,532,529,540,524,515,525,542,527,526,543,508,509,507,507,500,507,506,505,504,512,510,507,511,480,477,479,485,480,477,481,480,474,484,476,469,487,479,484,497,489,489,492,487,482,486,488,478,486,486,490,487,548,592,575,593,568,566,576,584,592,606,588,575,486,486,478,480,480,481,474,485,476,491,531,515,524,521,516,516,526,527,533,524,520,525,514,514,517,521,522,521,524,525,520,527,524,522,518,518,524,522,520,541,528,543,545,533,535,535,535,538,544,542,537,540,544,538,521,522,525,523,520,523,542,549,543,537,500,501,496,499,506,495,502,534,539,551,545,544,548,553,574,568,558,573,573,565,555,566,511,517,531,519,540,526,521,535,534,535,515,519,542,526,539,490,500,508,507,499,501,505,580,558,555,549,557,574,554,571,559,490,518,502,509,505,513,545,565,563,570,555,558,556,555,553,556,549,551,546,558,555,552,550,558,502,507,490,497,490,440,461,454,461,459,459,448,465,459,467,462,461,450,468,468,459,561,564,559,563,557,566,561,560,560,551,548,550,539,551,543,545,545,534,538,550,535,553,549,542,544,553,498,507,508,502,583,568,558,549,562,496,518,493,504,507,509,501,496,512,501,512,518,515,485,488,481,486,487,478,449,468,434,435,434,433,449,428,440,437,434,441,441,517,517,518,513,512,516,514,517,510,518,517,522,514,519,517,525,507,516,522,527,520,520,514,542,535,538,540,540,530,546,547,559,547,543,555,552,553,536,487,475,491,500,468,482,482,479,489,480,491,520,529,524,526,536,529,531,542,532,532,541,545,543,521,524,524,533,523,523,524,527,530,525,528,531,527,524,528,527,544,545,532,539,542,546,544,542,550,554,549,545,548,559,548,507,505,489,498,508,476,497,490,488,494,480,488,488,566,565,554,568,558,556,566,556,562,551,558,559,492,496,480,493,502,521,524,522,521,515,515,527,517,524,525,517,518,519,522,512,521,550,536,520,536,532,547,529,532,539,537,548,548,538,504,480,491,497,503,491,495,507,498,496,493,584,587,601,587,583,596,601,593,584,597,586,579,578,535,548,548,546,545,542,540,550,550,545,553,542,541,545,551,512,496,489,490,499,492,492,510,503,502,508,477,494,490,485,489,519,516,520,522,510,524,529,519,518,520,587,580,572,581,576,587,579,587,592,569,551,545,550,537,527,525,526,520,530,524,530,525,523,525,486,491,496,494,494,496,490,585,602,589,592,578,589,590,574,584,578,597,558,555,555,559,548,549,555,553,549,556,552,556,553,553,553,551,556,550,556,560,553,551,545,556,524,526,513,511,507,512,516,520,504,520,479,498,503,505,504,496,497,492,493,493,501,501,504,578,564,574,567,571,569,579,580,560,574,576,562,573,574,515,524,529,534,524,529,531,518,520,541,526,528,504,490,489,488,485,481,488,463,439,448,446,442,449,442,452,534,555,555,551,553,545,535,550,558,555,555,556,553,549,552,557,478,495,455,439,443,442,442,467,485,493,488,474,578,560,568,561,573,567,556,564,562,561,566,559,524,512,515,527,529,522,519,513,484,479,476,485,485,481,481,483,482,476,476,483,480,515,501,501,505,510,531,533,533,543,534,558,561,568,547,542,555,554,562,568,544,565,562,561,554,481,469,484,484,483,479,478,467,489,487,490,467,478,528,543,526,545,541,544,533,536,531,530,539,548,545,540,533,546,544,549,546,491,484,484,490,495,481,484,486,482,481,486,580,581,534,553,558,545,545,543,546,554,543,547,528,521,531,515,516,508,511,514,513,581,505,504,505,504,506,497,547,583,567,575,573,565,556,566,556,567,510,497,500,580,587,587,585,579,578,579,587,596,545,528,530,539,472,477,479,535,554,545,556,541,546,554,542,544,534,465,484,485,482,476,476,474,470,500,498,502,500,513,502,494,495,509,490,538,529,534,532,540,537,541,537,541,533,540,546,540,541,538,542,527,533,493,492,495,505,504,592,566,556,560,549,560,556,518,494,510,581,573,588,580,593,572,589,581,579,593,581,579,577,585,581,589,544,542,544,542,552,549,548,549,540,545,549,544,542,545,537,529,539,534,532,537,523,533,524,531,531,534,542,561,553,565,558,564,554,549,490,501,507,494,498,501,497,491,500,499,500,494,496,502,502,508,500,505,498,513,511,516,509,512,520,509,515,514,517,516,524,547,542,537,544,546,534,537,542,538,541,545,552,535,547,543,518,507,515,510,512,519,508,517,506,517,519,512,543,482,479,475,477,478,531,571,553,569,564,565,556,559,550,552,581,546,557,506,491,487,493,495,492,490,476,498,482,501,500,574,548,556,557,555,552,561,568,551,561,548,540,554,576,552,553,523,507,505,499,500,502,520,523,520,520,514,461,454,467,456,474,465,463,465,474,478,476,477,472,478,472,479,465,464,462,463,471,448,436,433,443,444,445,443,438,435,445,436,442,530,543,543,542,551,555,550,545,543,547,541,549,559,542,558,563,554,552,557,553,544,559,541,560,555,493,501,492,493,482,496,496,558,600,578,590,578,581,574,577,585,584,487,486,500,476,487,485,496,477,488,474,482,478,494,545,545,541,543,525,539,548,545,552,535,538,535,540,530,517,535,551,537,545,533,547,550,505,489,490,491,492,487,482,495,497,480,489,495,492,487,492,491,490,570,575,570,579,578,531,536,536,527,530,530,529,528,526,532,526,531,578,531,523,518,537,533,536,537,530,536,529,527,532,531,553,575,564,546,574,557,546,560,561,559,560,571,586,543,547,559,555,499,483,475,476,480,487,486,487,483,551,543,542,543,544,534,544,541,541,536,538,528,542,540,533,546,542,554,552,550,547,544,498,504,499,500,495,504,511,504,516,511,511,522,500,511,511,502,504,570,560,575,568,558,566,554,506,504,524,491,483,485,488,494,484,488,475,484,509,512,507,503,530,538,547,541,544,543,541,541,534,545,542,543,520,521,520,520,524,519,520,520,528,523,551,549,532,546,544,548,542,549,547,542,547,523,509,509,508,512,518,512,512,513,498,503,502,510,518,561,559,561,566,563,555,560,559,552,565,558,565,488,495,491,504,499,496,491,501,508,505,484,505,487,505,498,505,493,496,494,567,573,567,579,560,580,584,581,565,579,582,573,558,519,488,498,488,499,502,504,501,496,478,455,454,475,452,461,458,459,584,597,579,585,574,592,584,580,576,574,585,524,528,522,529,530,531,528,537,527,546,529,532,516,514,530,510,523,524,507,519,606,583,586,572,582,594,573,586,567,578,536,534,528,524,515,510,523,508,513,519,514,520,502,502,504,500,509,498,541,537,550,532,532,540,542,548,539,542,535,536,572,564,574,564,571,558,570,553,564,513,511,518,509,519,519,530,522,513,520,597,580,574,600,582,586,543,521,543,532,526,516,538,533,524,587,587,578,592,593,591,584,573,587,575,551,553,569,551,558,547,532,521,516,519,515,525,522,505,516,503,502,500,512,509,505,506,507,503,502,500,506,509,492,490,494,481,495,488,489,486,483,491,490,485,488,493,484,486,491,496,495,494,495,502,496,500,494,496,501,501,503,507,499,501,498,504,509,501,515,499,501,504,502,496,492,481,491,482,486,477,481,471,485,485,478,475,467,478,476,478,481,479,475,475,484,484,478,477,480,454,470,469,476,473,469,462,472,463,465,461,463,463,564,559,562,557,557,571,557,576,574,562,553,554,558,560,567,494,498,477,493,489,489,498,498,477,485,488,491,490,489,593,586,581,585,597,578,570,580,595,595,569,513,507,508,516,507,504,511,499,507,513,512,502,507,508,559,562,552,556,559,555,554,548,561,545,557,560,562,554,564,557,553,553,560,553,555,559,566,555,556,553,554,536,502,500,499,500,506,497,502,507,493,501,491,502,497,457,458,453,465,466,440,452,461,445,448,450,457,449,451,533,552,543,542,552,542,540,549,548,550,541,556,560,557,550,554,553,558,507,491,478,486,482,473,501,491,603,573,580,594,583,590,588,588,587,574,593,586,580,583,582,590,594,587,568,551,554,555,561,550,539,567,555,548,549,550,512,516,520,523,524,517,529,531,519,509,498,497,499,493,500,503,502,505,502,497,496,497,498,497,499,486,463,471,472,469,457,466,460,470,457,464,459,461,462,464,458,463,474,461,543,545,535,540,550,556,495,477,466,463,480,494,477,468,476,472,478,496,566,572,505,497,508,504,510,506,507,504,518,500,510,500,508,500,512,515,503,502,508,506,513,512,504,506,510,507,503,505,499,508,504,505,508,508,507,504,504,543,547,541,530,536,542,538,533,540,567,568,564,529,533,529,533,527,533,522,520,525,529,531,526,533,532,525,531,525,520,521,519,518,522,520,557,560,550,556,554,548,550,565,567,547,556,557,557,522,523,528,532,524,528,516,530,525,522,543,494,496,491,499,496,504,500,492,592,597,580,594,588,585,599,549,549,536,535,538,537,536,538,541,545,536,529,538,545,546,571,576,557,499,526,530,510,527,509,512,505,525,474,474,474,468,469,471,476,471,477,451,447,456,455,540,542,550,562,545,549,548,491,502,523,533,499,509,517,526,534,523,506,522,500,510,501,533,471,466,465,466,464,474,448,457,453,461,457,446,456,457,456,458,439,456,479,483,472,538,562,562,570,559,575,569,564,577,579,574,564,585,569,558,575,565,566,483,507,504,499,554,562,566,539,546,495,518,502,496,506,513,472,470,473,479,483,464,471,478,468,552,545,542,546,543,539,551,549,550,540,560,557,552,549,536,549,541,555,535,551,552,546,554,511,511,514,522,515,517,511,510,509,520,475,483,483,434,448,442,450,446,439,444,434,428,444,437,435,439,437,439,441,446,439,446,439,448,435,437,442,456,450,460,447,453,464,454,555,548,538,548,546,542,553,559,550,553,555,545,552,547,520,517,520,515,524,521,518,522,523,530,516,543,539,541,553,542,549,542,545,542,572,562,564,573,573,574,561,481,494,499,496,510,506,511,499,469,468,467,474,467,466,472,473,471,473,469,468,473,462,463,545,566,575,570,560,561,576,554,575,512,494,506,506,504,577,571,562,562,549,578,543,558,561,576,564,556,559,483,493,486,494,496,500,487,503,492,492,505,496,495,489,512,511,493,502,503,504,501,490,499,505,504,494,502,499,495,507,491,496,561,498,517,514,509,508,515,511,511,505,510,513,515,521,519,504,554,559,572,553,556,567,556,554,562,551,556,522,529,526,535,547,537,532,540,547,547,537,542,519,521,511,517,511,522,510,517,515,507,505,509,510,510,506,508,506,499,506,536,526,526,538,522,530,527,532,532,528,529,531,519,534,529,523,541,545,539,537,541,542,538,545,537,549,558,540,549,540,549,561,539,544,555,543,543,553,552,505,501,501,507,506,511,503,508,503,591,579,599,590,585,579,574,584,550,532,536,537,540,545,541,525,535,538,518,513,523,516,509,523,521,522,522,516,521,524,520,516,559,545,546,550,551,517,513,525,518,519,518,565,587,594,581,594,596,599,576,531,535,540,523,526,523,524,527,519,526,575,590,584,587,573,586,587,573,526,507,520,526,530,519,521,514,510,520,515,557,555,558,556,557,551,559,559,571,567,517,523,530,523,514,521,505,511,506,505,509,506,509,509,515,516,493,494,493,489,488,482,485,493,497,484,485,492,495,494,489,489,483,492,483,481,487,489,480,487,484,479,462,472,470,455,445,460,469,459,462,462,453,460,456,455,455,453,556,539,547,550,548,551,558,554,579,575,564,566,523,524,534,523,527,536,533,526,521,529,536,532,555,551,547,546,559,562,563,555,564,564,558,560,509,514,509,508,510,576,561,576,564,547,539,573,564,563,554,559,557,529,523,522,520,521,521,518,518,527,527,527,527,534,539,542,543,543,553,547,542,548,542,533,527,542,539,545,538,546,539,569,570,521,509,508,505,501,498,498,493,501,508,492,505,497,502,503,498,441,449,459,457,451,437,446,456,456,454,451,453,532,544,541,547,543,486,492,480,496,487,488,485,490,501,490,496,553,544,549,557,553,559,502,567,505,504,511,518,510,471,457,457,453,463,462,460,446,466,460,461,457,458,453,453,453,458,551,549,548,557,547,553,552,536,536,539,556,553,482,482,490,491,488,590,582,582,570,593,579,572,571,571,587,567,582,570,582,543,545,549,555,546,550,549,548,538,548,545,546,552,539,537,543,510,522,517,509,495,483,483,481,473,474,486,479,483,480,485,478,457,460,468,464,466,460,471,465,504,488,485,496,494,492,483,497,494,491,484,501,503,479,557,559,577,573,570,570,566,562,569,566,549,580,576,555,567,580,564,549,532,517,520,520,481,477,472,477,472,470,447,435,481,484,484,490,477,477,472,485,484,484,484,475,485,566,567,565,566,562,568,568,562,565,565,541,550,556,559,557,550,554,547,546,548,545,549,551,504,497,567,596,609,605,586,595,596,596,595,523,537,534,538,532,535,524,520,523,533,538,542,535,538,550,541,538,542,544,543,535,535,551,549,528,540,544,513,512,512,512,511,521,516,504,522,514,520,511,524,519,510,571,573,570,562,571,568,568,568,572,572,572,568,561,553,530,521,515,513,514,525,517,524,515,526,490,448,453,451,467,473,454,465,470,432,451,456,502,509,502,508,506,503,503,506,510,562,566,566,546,500,510,495,500,504,511,512,509,503,512,503,510,514,555,560,550,561,553,556,568,567,554,570,561,567,498,512,515,512,512,525,520,513,517,512,489,482,476,485,484,479,481,478,480,477,472,477,463,475,467,469,477,474,562,565,558,553,553,561,539,547,555,546,547,545,546,481,492,491,502,504,508,507,504,502,492,508,490,510,512,495,505,515,502,496,508,493,489,486,455,490,481,486,474,475,475,475,470,468,546,562,570,557,571,565,570,575,563,563,559,577,486,502,502,515,507,483,508,481,427,451,439,446,446,431,444,423,437,439,437,507,520,512,504,512,526,508,513,514,520,545,536,532,532,527,525,527,531,533,538,527,527,535,529,529,527,529,572,573,579,569,570,565,563,570,573,581,567,574,572,568,572,563,546,544,552,549,488,485,494,493,494,491,491,480,494,493,486,492,488,498,483,497,497,499,497,496,495,492,500,503,499,495,505,496,566,581,574,576,575,578,583,526,524,522,503,506,511,512,502,513,505,513,511,476,477,479,474,481,490,477,474,469,468,481,483,494,493,484,484,495,495,492,480,481,487,567,575,579,578,602,596,573,563,597,576,573,580,576,501,472,476,464,470,466,490,461,474,549,527,540,525,533,528,524,535,530,540,533,532,536,537,546,533,537,576,559,560,564,549,567,574,506,501,504,502,496,504,508,501,503,515,508,502,529,531,527,542,543,535,539,536,537,538,538,575,561,561,561,535,544,544,540,535,537,545,548,538,542,542,548,557,547,485,500,499,508,505,490,486,510,517,500,505,487,507,518,499,508,504,509,495,507,457,466,472,464,469,468,459,469,472,472,463,470,448,458,458,454,457,458,456,467,454,455,452,451,451,453,452,462,454,459,448,563,560,561,545,568,555,560,562,473,460,456,476,480,474,530,515,520,526,524,521,517,520,514,525,527,530,522,530,528,520,518,518,521,514,524,522,521,519,523,522,522,546,538,539,543,552,545,551,553,527,504,523,521,521,508,523,511,516,525,523,519,509,529,496,494,490,487,492,494,484,485,481,498,494,497,499,502,507,505,497,492,484,494,486,492,488,491,488,481,486,485,496,483,485,486,487,485,485,484,481,483,482,489,483,489,487,503,501,500,499,497,501,500,503,500,502,503,498,496,499,499,483,498,486,485,482,487,481,481,474,483,476,482,477,481,474,477,481,485,478,488,480,487,492,484,561,559,560,556,554,557,563,552,557,561,565,523,516,518,513,515,523,509,513,515,524,524,516,517,506,516,498,502,489,497,508,501,504,497,500,508,501,507,505,496,464,457,460,463,453,454,459,455,456,457,460,460,459,453,494,492,492,495,482,482,480,474,489,497,481,566,577,554,580,574,568,557,578,575,570,570,582,574,549,501,509,508,500,489,502,507,506,502,506,505,512,510,510,504,515,559,562,566,558,561,567,564,572,560,569,528,533,530,541,532,528,529,527,525,528,534,525,527,529,473,481,476,467,482,479,479,480,482,484,469,486,468,480,483,487,557,548,559,515,495,500,509,509,503,560,556,562,567,578,561,561,574,538,513,524,530,529,527,520,521,520,525,528,523,524,522,526,524,525,522,537,534,525,542,529,526,539,534,530,534,536,541,528,543,545,490,500,509,502,504,495,501,506,504,502,509,506,499,523,527,525,540,528,532,527,530,533,537,543,554,551,547,507,495,506,501,510,499,503,506,507,516,501,509,516,517,555,550,558,551,546,549,535,556,558,538,545,505,503,503,499,492,496,497,498,496,503,518,528,522,525,517,519,529,523,519,533,517,518,516,524,518,534,551,540,538,547,544,550,561,550,563,543,549,552,547,500,495,497,497,496,497,501,501,493,513,500,500,498,495,505,502,507,510,501,529,522,533,537,538,534,528,527,534,526,529,511,496,498,497,506,494,488,475,496,489,491,504,502,493,598,593,575,584,592,577,597,599,584,587,588,593,603,599,600,567,550,540,550,557,514,501,505,504,465,464,468,456,462,463,457,468,452,464,466,465,462,471,466,454,539,544,551,535,553,533,547,550,535,552,487,498,499,496,498,499,505,511,472,483,480,487,479,481,482,483,478,483,470,488,481,475,504,501,504,501,495,504,508,502,503,506,500,493,479,492,496,481,487,485,503,490,490,490,482,495,487,486,472,484,482,478,486,480,478,473,465,477,473,482,479,488,509,517,513,511,517,509,525,513,540,548,538,504,513,482,488,486,482,491,487,489,480,490,494,489,488,492,476,493,485,484,485,478,489,484,485,490,482,484,482,463,481,479,476,475,481,481,478,501,503,496,500,502,499,504,496,499,500,494,537,527,534,540,540,533,539,533,537,570,561,561,547,555,572,561,562,555,576,549,551,557,545,547,554,504,548,548,545,547,547,551,557,560,549,551,538,514,493,495,506,496,490,503,495,490,493,487,502,519,533,540,535,527,536,537,532,560,555,547,559,550,548,550,545,540,541,480,494,492,482,503,491,492,494,487,497,532,530,526,529,530,533,511,505,508,513,508,511,507,509,504,510,503,509,504,505,513,534,527,534,532,532,520,529,526,527,546,544,528,538,542,523,546,539,535,536,549,528,537,547,561,519,523,504,513,501,500,496,496,490,505,497,489,479,489,484,487,491,491,488,490,485,487,493,484,483,483,487,488,483,489,493,482,465,477,467,494,478,484,486,484,478,488,482,483,477,461,445,444,445,453,445,447,459,450,445,456,446,468,567,597,599,593,588,596,574,577,578,512,533,530,531,533,526,522,531,530,534,572,580,583,586,585,582,578,590,583,575,584,583,547,538,536,537,542,537,524,539,529,542,496,508,511,493,506,501,511,552,541,557,555,550,548,547,557,546,507,514,501,511,514,562,557,570,555,563,559,536,525,526,531,521,528,521,564,556,556,543,560,559,555,562,561,534,543,538,544,543,532,474,488,486,490,485,490,504,497,499,495,494,486,495,493,493,495,484,468,463,482,472,480,466,475,475,478,498,493,510,509,536,549,540,539,532,536,548,497,501,501,497,485,492,495,495,488,490,488,486,494,495,489,485,490,495,483,487,492,502,502,506,500,504,533,526,536,539,533,544,540,534,534,565,560,566,564,563,561,556,560,565,573,563,572,565,506,501,501,503,500,497,498,507,502,504,500,515,505,497,497,502,502,499,545,537,526,535,533,532,562,563,575,570,565,562,559,574,550,556,552,551,555,554,547,560,548,552,549,553,550,546,557,549,526,507,517,515,539,510,507,530,522,513,519,521,517,518,490,481,478,476,477,475,477,481,451,469,461,449,453,467,461,450,457,461,464,460,541,537,545,537,556,549,556,550,555,553,552,545,545,544,554,556,559,568,552,556,525,513,514,508,525,519,483,490,499,497,503,499,496,486,493,555,564,558,551,563,555,557,563,558,561,559,515,533,529,527,525,528,502,496,500,498,506,498,501,490,493,489,494,504,509,498,546,548,563,552,575,550,556,571,552,545,552,589,552,497,487,492,499,488,491,506,485,493,504,483,480,497,499,494,585,569,556,565,560,561,563,550,550,493,477,481,487,477,481,471,489,494,469,472,475,496,488,466,481,472,458,540,542,541,541,538,549,543,541,545,551,547,526,524,529,524,534,532,523,524,526,528,531,523,535,535,535,538,535,532,526,535,520,510,505,509,505,510,519,512,514,514,514,521,555,543,537,559,547,551,577,553,555,505,496,504,501,518,508,495,507,498,497,496,507,503,498,495,498,499,494,502,494,495,571,565,566,573,547,554,544,506,533,512,524,500,476,477,485,480,453,470,474,472,472,472,462,469,463,464,458,539,553,537,555,556,554,568,508,503,497,496,493,499,490,497,502,486,485,499,508,510,488,495,490,526,529,533,530,520,527,466,469,477,479,475,480,470,486,469,477,475,479,489,489,544,543,545,546,546,532,547,538,542,543,546,549,550,549,538,556,553,552,535,502,501,491,504,511,509,544,551,553,556,547,571,548,542,548,492,491,494,494,498,495,504,486,500,522,525,521,509,509,530,559,566,513,508,535,531,523,523,498,500,507,504,505,509,501,505,503,504,500,500,510,496,465,482,478,486,488,472,471,471,428,434,430,434,438,423,430,527,514,519,524,540,524,535,532,527,528,529,529,523,526,525,583,563,568,568,563,567,579,564,570,536,519,522,530,529,533,527,483,474,471,473,462,477,474,474,480,474,461,479,468,477,461,472,523,531,533,525,529,533,531,531,528,533,535,528,548,552,542,555,553,547,547,545,545,544,543,549,550,554,543,545,560,539,510,519,494,510,505,506,509,511,503,500,505,452,468,452,463,457,465,452,462,457,454,449,463,451,452,446,477,477,473,481,458,456,581,593,581,588,597,597,585,583,576,585,588,529,523,524,510,517,544,504,553,530,447,556,562,561,553,570,565,561,569,558,558,556,567,514,519,514,512,521,519,504,521,516,527,488,492,484,494,497,479,484,491,484,490,486,486,476,482,461,463,473,469,463,463,465,463,554,570,554,563,563,555,536,557,562,554,556,565,564,565,561,556,578,551,559,572,575,551,502,493,482,486,486,482,504,490,474,477,494,483,486,503,547,563,576,568,554,557,547,552,564,544,568,559,566,572,452,484,456,468,469,486,481,477,540,543,537,541,534,546,532,554,540,535,546,551,545,541,544,465,476,474,485,498,482,474,476,462,476,480,475,481,482,494,480,473,494,484,488,482,475,477,573,570,573,567,563,573,552,567,582,571,583,565,576,557,561,526,534,529,541,516,516,486,484,478,488,489,483,484,487,488,483,469,475,463,471,481,474,467,488,472,480,474,471,557,560,546,562,560,542,556,560,530,548,545,528,534,559,540,486,472,484,474,475,478,489,480,475,476,504,495,487,494,496,501,497,495,552,550,539,498,496,495,501,509,499,503,506,508,551,538,535,541,537,541,548,546,575,560,534,528,530,526,531,530,530,547,546,541,549,554,555,556,549,551,559,554,553,491,479,496,476,482,486,495,490,486,490,484,481,486,495,495,481,491,498,503,449,443,438,441,458,439,448,446,540,536,537,547,547,544,540,546,547,543,549,530,547,549,545,483,465,466,467,475,476,461,468,475,476,459,466,475,524,525,522,513,518,514,519,521,510,512,523,523,521,525,522,523,519,519,524,520,520,518,532,533,536,536,534,530,528,537,538,533,535,535,552,541,522,516,512,524,519,515,519,516,521,517,508,517,517,517,533,528,527,541,531,527,533,532,566,556,555,568,549,551,557,563,553,557,557,567,560,556,552,558,563,552,492,502,493,489,477,469,472,466,458,456,461,454,466,467,468,572,557,534,552,550,553,545,511,560,564,546,566,561,562,568,550,567,559,560,571,573,524,523,524,514,524,518,538,520,513,523,520,513,518,522,507,505,516,513,508,515,509,512,510,516,514,518,513,512,523,491,501,502,497,499,502,500,484,483,480,485,485,483,483,488,486,484,481,480,488,472,477,563,575,572,528,523,504,507,505,505,508,486,472,481,472,480,475,472,473,481,482,474,483,474,480,477,474,474,464,476,480,486,472,486,486,480,474,480,472,481,472,471,602,590,598,588,584,587,597,532,544,543,543,541,544,531,531,542,543,541,550,569,564,546,556,554,569,562,565,567,557,544,560,555,524,501,499,501,517,509,511,515,508,514,510,508,502,503,499,503,503,503,505,498,535,522,537,539,529,535,524,518,557,544,559,555,557,567,562,546,560,532,527,537,528,532,526,536,534,522,506,529,517,516,514,523,528,516,518,515,552,575,572,578,559,567,562,564,580,564,580,557,567,554,569,577,580,582,578,564,571,496,493,501,506,495,492,497,490,508,482,473,491,479,478,479,479,482,477,477,487,603,596,611,547,541,545,556,546,553,560,553,548,552,553,562,547,549,479,502,505,493,494,494,494,505,492,500,491,553,563,557,556,563,547,563,545,543,535,534,535,535,530,536,536,533,539,543,534,540,525,531,527,526,524,524,530,529,527,524,532,537,545,543,526,533,543,538,533,546,530,533,536,513,520,522,525,519,519,519,515,521,517,521,522,552,555,550,544,551,556,555,550,549,535,527,522,522,509,526,518,522,526,521,517,581,577,582,580,584,579,583,580,514,510,507,514,513,525,503,516,519,505,512,550,538,553,544,544,550,553,548,547,538,555,546,545,540,542,549,553,542,545,547,550,555,544,540,542,529,555,546,546,540,526,541,507,486,503,487,492,490,501,547,553,549,554,556,488,542,531,531,537,541,539,524,529,525,528,528,526,527,525,521,526,524,528,542,543,551,557,554,552,560,550,554,488,492,504,497,498,493,492,496,492,507,504,489,495,491,509,503,493,496,489,494,499,490,504,496,504,490,502,498,500,485,499,590,564,554,549,569,532,521,523,519,518,521,520,515,527,522,543,548,554,551,546,539,539,536,535,529,537,510,509,511,514,526,509,515,542,563,557,554,549,552,555,557,557,562,552,533,555,547,502,503,523,517,515,512,545,562,576,564,577,570,563,559,572,572,560,574,565,577,582,577,471,496,491,482,487,485,491,481,489,481,492,479,483,482,486,526,534,536,548,541,541,533,538,541,542,542,542,560,512,526,518,520,535,535,532,530,533,531,530,541,542,497,506,501,502,503,506,497,503,501,505,507,508,502,506,510,500,507,498,497,508,499,497,500,502,528,530,527,536,532,533,533,526,561,569,557,558,557,541,560,506,508,499,506,508,494,538,526,542,553,564,554,533,569,511,576,499,497,495,501,510,485,505,505,499,504,451,461,453,449,453,451,455,451,444,455,567,552,548,549,543,537,541,545,543,515,512,498,484,523,516,500,506,507,516,505,518,501,504,514,516,511,508,506,500,497,485,479,482,484,486,477,484,477,469,483,478,473,466,472,480,472,480,478,479,477,506,497,507,499,496,508,542,540,539,541,543,548,543,549,550,563,559,561,495,517,509,500,518,509,524,510,512,511,512,512,506,574,553,568,555,565,561,555,562,555,521,499,509,485,506,504,499,509,507,484,487,490,498,507,508,496,499,502,500,496,499,501,502,509,505,495,532,543,539,548,536,536,540,539,545,545,532,542,539,537,537,545,559,548,538,545,556,552,554,556,502,503,485,497,499,484,436,443,449,450,441,447,440,454,449,445,443,518,528,516,527,517,527,523,520,521,539,519,529,529,516,520,531,573,567,549,569,572,568,565,539,539,545,554,536,541,542,543,540,544,543,540,546,539,538,543,541,536,531,533,538,530,527,534,534,528,530,532,538,532,536,534,528,524,525,525,527,527,529,528,521,542,539,537,546,536,539,542,546,536,550,535,531,530,529,532,532,526,528,532,526,531,530,532,532,532,525,535,549,557,558,554,548,557,561,560,513,513,490,503,499,490,500,463,451,452,449,454,461,464,458,462,453,443,515,490,501,500,499,504,495,500,510,495,499,507,505,502,500,500,504,501,500,552,550,561,553,545,509,496,502,495,493,504,469,467,463,467,459,462,468,469,459,468,463,493,510,495,497,493,485,498,493,499,498,492,497,500,500,496,496,500,502,502,527,518,526,518,536,526,529,525,533,530,495,473,479,468,472,478,480,478,482,483,481,476,483,471,560,564,561,564,569,568,567,562,495,503,494,473,461,467,465,465,457,475,544,527,527,536,536,540,542,547,538,531,534,527,549,540,538,510,525,532,522,515,526,525,526,522,474,480,488,481,471,546,564,578,561,578,547,561,566,565,566,563,542,455,473,481,466,527,514,512,521,523,514,517,520,516,531,537,530,537,521,535,533,526,535,528,561,565,562,567,577,558,570,559,493,505,499,502,504,504,504,493,506,492,488,541,540,539,538,567,569,562,562,561,562,556,563,571,567,566,559,574,570,563,557,531,525,519,567,558,542,543,539,559,551,545,558,546,551,557,554,526,522,522,531,521,530,531,526,523,533,532,507,497,491,494,504,493,499,501,511,503,497,499,562,555,565,545,564,558,559,546,562,581,575,544,472,490,503,492,489,490,500,482,488,495,499,492,490,497,527,556,555,536,563,535,552,547,537,549,545,548,552,511,527,520,527,518,526,544,561,556,548,556,554,495,506,508,514,513,519,515,509,518,504,517,514,502,513,503,476,485,484,487,486,488,485,490,491,489,486,487,489,488,492,486,507,504,511,509,504,503,515,507,507,507,509,504,511,548,526,529,537,529,520,533,530,527,456,484,468,466,470,488,478,471,476,474,473,474,475,470,461,537,527,525,515,514,528,525,532,526,509,538,535,532,532,530,531,573,552,522,524,528,514,512,514,524,526,507,520,525,517,522,531,561,571,566,577,573,579,572,574,576,554,536,526,548,532,534,516,532,527,530,544,533,522,548,561,561,569,556,515,523,506,517,516,507,528,510,512,479,473,474,479,481,482,483,480,477,482,477,478,477,476,477,454,458,466,455,466,454,465,457,450,464,460,453,462,454,531,545,553,550,555,545,537,540,554,536,587,578,571,580,577,559,579,564,562,558,568,569,547,548,552,554,547,542,553,551,558,550,553,528,525,510,507,522,536,529,521,514,523,528,528,511,526,506,508,506,491,494,483,486,485,485,485,483,484,481,483,482,481,476,489,481,480,473,477,475,479,477,469,479,510,513,507,523,507,510,502,545,553,556,555,564,542,561,484,488,476,477,488,478,432,442,441,448,438,433,444,527,550,564,565,563,567,562,564,555,550,550,552,554,543,548,551,547,551,545,549,556,548,549,547,548,555,553,554,555,547,551,526,531,530,511,529,520,510,513,528,516,510,504,502,505,506,506,494,475,482,485,485,475,487,493,485,483,480,481,481,485,493,464,452,461,458,455,465,453,455,465,463,460,464,460,460,460,449,533,528,529,526,531,533,535,532,564,568,514,500,502,514,512,499,513,502,500,518,497,516,506,511,531,545,532,548,537,531,533,544,541,553,542,551,541,537,545,548,540,544,551,536,555,505,507,507,503,507,506,505,504,506,508,508,513,502,500,509,502,505,509,492,495,494,496,500,498,500,497,532,531,530,533,538,537,542,534,567,563,505,523,511,520,520,518,579,588,584,586,597,588,541,540,474,460,484,487,490,479,478,491,485,477,477,482,479,481,481,484,477,560,552,558,558,555,560,545,562,551,559,548,556,563,559,548,565,551,558,569,569,512,516,508,508,525,515,517,506,518,521,516,506,518,498,488,484,486,485,489,492,489,486,480,490,489,493,478,488,494,481,485,483,480,483,482,485,487,479,485,478,489,488,486,465,466,449,453,453,458,452,439,458,449,451,451,486,493,505,480,488,488,480,497,501,585,576,579,512,502,507,500,509,503,497,509,508,504,504,491,506,506,491,508,495,509,513,502,498,493,580,585,560,576,569,563,571,584,555,561,557,567,570,514,516,513,516,520,508,514,514,515,523,517,517,513,520,508,510,512,521,522,525,516,511,468,456,465,457,456,455,457,477,480,474,559,548,551,576,558,561,565,558,493,500,512,467,463,473,473,559,543,548,547,509,517,525,525,521,515,515,527,509,515,521,490,485,490,482,453,458,458,461,460,459,461,466,465,463,475,457,490,481,487,485,479,482,488,480,479,482,479,483,482,489,485,477,488,548,561,564,581,568,509,514,577,553,556,555,551,546,553,564,553,562,558,516,527,516,523,518,519,520,528,525,525,513,517,509,507,515,513,511,508,521,510,509,507,508,516,492,499,494,501,503,502,491,493,489,496,495,495,496,491,488,499,503,493,493,491,474,479,497,500,494,538,530,528,536,526,535,535,537,526,529,531,510,511,513,511,515,515,510,510,516,510,516,503,506,503,512,507,503,503,510,505,506,504,500,508,505,498,512,527,528,534,534,531,533,530,529,520,521,515,524,520,523,536,532,534,530,531,538,537,539,539,525,541,535,535,538,540,537,549,543,540,528,524,525,528,532,536,545,541,537,533,539,534,540,547,554,539,541,539,548,540,533,517,519,516,513,518,507,513,515,507,511,508,509,515,507,506,506,506,503,526,528,533,531,537,532,531,533,530,525,534,526,535,525,531,526,525,523,520,523,525,518,524,519,525,521,529,542,537,545,539,541,548,540,544,548,542,553,560,558,547,564,556,513,502,510,511,515,515,518,508,497,490,493,491,490,492,494,492,489,498,511,502,505,504,504,504,509,497,501,504,511,510,497,502,493,510,496,508,503,543,541,543,531,539,536,539,532,535,538,539,535,521,520,512,515,505,516,513,545,525,528,524,534,529,565,546,547,547,559,549,545,538,554,558,576,548,562,499,502,498,491,589,582,586,569,577,506,514,506,503,508,536,535,530,528,531,530,524,524,528,525,529,528,526,533,532,529,532,528,531,529,531,538,544,547,541,543,536,544,537,521,517,513,514,510,509,519,505,510,513,507,508,509,502,513,505,507,509,541,547,535,546,539,533,542,538,535,543,543,543,546,544,550,531,530,538,502,524,512,516,520,519,592,594,571,580,585,551,550,541,535,543,532,540,541,534,548,524,528,522,512,507,579,598,589,587,583,583,590,590,591,604,530,537,530,538,530,535,536,555,558,553,565,531,536,537,531,535,531,545,552,554,544,551,547,553,548,554,549,547,556,545,543,550,502,490,483,484,489,470,557,561,564,565,551,568,555,551,509,512,506,499,500,504,563,566,558,540,543,559,562,557,554,499,493,493,496,510,514,508,517,506,519,562,565,560,557,564,561,563,569,566,532,536,524,531,538,540,531,534,531,537,527,526,530,527,536,528,530,479,484,477,474,479,485,481,476,487,468,475,469,487,527,524,529,524,531,532,534,524,533,536,535,543,555,546,544,554,543,542,553,553,545,557,557,545,553,553,556,553,564,560,560,556,560,562,557,555,554,560,556,575,567,567,558,566,557,553,555,559,524,517,523,524,526,520,523,516,485,486,482,485,478,482,517,504,502,512,538,551,554,554,554,553,564,546,546,532,531,535,537,531,533,527,536,536,530,536,527,536,572,554,555,552,543,555,563,554,550,550,554,555,468,472,476,472,481,473,471,479,482,482,494,479,495,560,554,547,548,546,556,557,561,551,552,552,547,558,558,562,551,549,554,557,555,553,539,552,550,542,546,548,553,549,547,551,547,551,550,527,548,540,533,532,538,545,518,512,505,497,504,500,501,504,502,504,503,465,464,462,489,465,468,476,471,467,537,548,555,553,563,514,511,513,509,521,503,514,512,522,515,508,506,505,523,492,485,495,495,488,489,481,487,485,487,480,460,467,472,460,478,465,461,466,468,477,466,458,469,465,463,476,470,462,463,466,541,573,562,564,570,469,492,510,440,442,455,440,444,445,433,550,546,544,538,544,532,557,534,545,544,553,543,550,550,515,514,524,511,512,509,521,589,584,558,550,587,568,557,571,565,575,542,585,563,524,512,519,521,519,521,523,522,515,519,568,576,566,572,582,591,503,489,507,499,509,495,500,494,498,495,458,463,477,452,471,474,472,553,561,562,559,549,550,550,550,557,533,557,555,547,551,543,546,548,543,490,489,490,489,495,480,485,474,486,488,496,485,578,572,571,572,572,568,586,591,562,573,576,574,568,573,523,520,550,560,560,562,567,558,558,567,478,478,472,487,481,481,490,491,480,474,474,484,476,478,484,543,544,543,549,548,544,537,545,544,537,532,526,548,539,547,546,537,541,495,493,510,475,491,503,505,501,506,494,534,535,522,536,534,527,523,526,523,525,528,508,519,513,515,503,513,517,513,509,508,513,504,510,511,505,505,509,507,507,536,531,524,527,534,535,532,528,531,538,535,522,512,523,524,512,513,518,507,513,526,526,550,562,566,555,556,526,528,517,510,521,521,531,519,511,534,524,524,528,591,598,587,596,594,590,594,594,581,590,586,575,594,590,581,586,575,592,554,561,550,561,553,554,512,534,523,508,530,522,517,511,498,496,502,493,502,498,486,483,487,488,482,488,482,489,493,495,489,489,492,512,502,507,498,507,501,507,522,524,533,531,524,531,535,531,524,542,528,565,565,561,564,569,565,533,541,519,522,517,522,523,531,516,520,524,491,495,504,502,496,503,499,507,501,552,545,539,546,547,536,546,537,542,536,550,548,558,542,543,543,545,552,554,558,552,548,551,556,557,553,569,557,549,509,520,505,510,515,503,495,511,512,512,514,516,510,509,510,496,510,508,506,499,511,504,498,508,504,511,514,498,498,508,506,508,506,506,534,525,537,537,540,542,535,541,533,537,534,530,538,540,535,530,479,468,473,522,528,518,523,528,530,520,520,522,529,523,526,528,519,524,519,535,531,537,534,540,579,570,579,574,565,572,578,546,537,549,497,487,485,494,479,478,485,483,484,499,492,470,490,478,476,478,492,477,564,566,562,557,559,560,553,555,567,562,568,556,548,563,503,490,500,497,513,478,504,491,497,502,489,501,471,450,464,462,464,466,464,459,465,469,531,548,540,551,532,544,547,525,518,514,516,507,522,510,508,514,514,512,513,553,539,547,548,543,533,534,533,528,529,527,523,534,532,525,527,522,526,530,522,523,529,521,527,563,562,538,550,542,551,551,546,538,538,542,501,499,491,492,491,493,491,492,497,555,552,542,540,544,515,498,498,510,509,503,505,504,501,497,504,506,500,526,535,533,543,536,536,539,536,543,531,542,533,517,532,524,527,515,516,524,525,546,541,546,532,547,538,545,536,547,541,529,542,543,551,550,557,555,550,496,514,499,484,491,505,489,496,501,518,497,504,503,504,503,507,495,501,505,486,487,486,488,492,483,547,554,556,553,561,566,506,516,510,510,505,516,516,507,517,509,511,505,512,512,508,478,468,470,473,477,470,471,475,474,469,469,468,469,473,475,462,470,471,472,480,563,527,547,533,537,540,550,555,509,515,560,571,577,570,563,578,571,577,564,575,559,584,502,506,508,503,500,512,514,513,509,511,508,565,567,563,559,552,553,552,560,567,539,541,536,535,539,537,529,531,536,538,532,524,535,530,543,546,543,547,542,556,544,545,547,555,544,535,549,551,553,507,505,499,498,502,501,505,494,501,505,499,500,505,506,508,499,510,508,546,553,556,552,548,550,548,551,547,550,483,441,456,434,443,559,553,551,556,562,556,555,565,549,555,567,561,563,528,521,515,519,526,517,525,537,524,542,524,503,509,504,483,485,476,473,487,480,482,474,480,483,486,489,481,487,485,523,543,540,518,522,512,519,513,520,519,518,548,550,553,553,549,551,549,554,556,544,552,552,548,531,533,532,538,538,538,533,520,523,520,521,531,517,518,530,517,522,523,588,592,587,587,519,519,498,518,499,512,503,514,504,514,504,506,558,544,552,552,550,552,547,551,551,548,551,555,545,542,548,554,503,500,495,502,496,505,497,509,455,458,462,466,461,455,469,462,457,460,471,501,518,518,564,558,566,555,559,553,562,564,559,577,557,572,549,565,563,550,555,558,554,564,558,545,508,494,510,510,508,513,506,520,532,555,540,538,535,492,493,506,497,497,488,577,580,578,597,596,591,585,592,530,535,532,530,524,537,537,540,534,540,552,540,511,511,514,518,517,520,518,509,518,521,515,563,552,554,559,547,560,550,534,552,556,543,540,543,538,535,536,521,520,525,540,538,536,544,547,545,538,538,544,542,543,541,548,567,566,572,554,577,562,548,503,517,574,568,559,539,548,564,565,567,562,517,526,521,523,518,515,511,513,515,508,513,518,515,560,560,571,567,561,554,581,509,511,507,501,515,503,516,514,506,564,573,563,560,576,487,525,531,520,518,494,517,518,516,514,508,515,508,516,519,452,470,465,463,470,463,462,452,467,459,470,455,512,505,503,504,499,496,506,504,505,526,529,523,536,536,528,537,534,531,495,493,495,494,492,571,595,604,593,591,584,599,595,592,591,585,600,582,592,527,514,509,504,505,517,508,518,516,501,508,519,517,509,515,522,530,525,525,523,522,521,525,521,530,532,528,535,528,535,530,532,542,532,565,572,562,570,562,567,495,500,505,502,495,495,499,499,508,502,511,502,510,510,505,520,539,540,527,543,540,540,562,559,557,562,570,558,561,553,558,564,545,551,560,519,521,523,523,531,520,517,513,505,524,523,518,522,522,521,524,531,525,527,509,510,513,512,514,509,516,506,510,487,479,497,484,491,495,496,482,482,487,490,482,487,486,490,496,495,489,495,496,492,485,496,493,492,481,482,481,486,483,482,478,479,484,483,481,478,479,479,485,466,473,469,467,471,472,470,473,475,489,475,469,479,542,543,568,552,552,552,553,564,553,549,477,476,481,474,474,484,471,475,461,463,461,475,479,472,461,560,555,566,498,505,500,501,496,497,494,498,501,520,487,592,582,594,567,581,583,581,597,585,579,589,584,579,542,551,541,564,547,543,550,492,494,509,484,492,481,491,495,493,489,498,492,474,491,483,486,488,490,483,487,483,482,578,557,565,562,574,580,493,598,583,577,572,581,544,523,529,529,529,538,534,533,533,541,528,534,533,516,514,520,517,522,509,511,508,546,538,552,547,553,544,548,542,544,554,559,551,560,564,562,553,545,509,513,511,502,502,507,504,501,503,505,501,511,523,524,524,521,511,529,523,521,517,519,562,558,563,559,566,560,562,569,519,516,529,529,498,507,502,498,503,505,498,504,480,485,484,482,478,485,480,482,478,485,479,479,493,485,474,457,464,474,471,466,464,480,468,461,463,473,473,463,469,468,549,563,565,558,564,541,550,565,554,507,497,491,496,499,499,492,496,507,486,503,515,483,486,504,502,498,501,501,503,502,536,540,541,542,551,542,548,544,544,494,513,506,508,504,519,511,512,519,515,517,487,488,479,487,461,462,459,457,458,452,451,456,448,457,459,464,470,482,471,461,469,474,482,479,473,476,580,593,540,529,538,536,538,536,537,540,535,529,535,538,532,533,535,545,560,557,553,558,556,499,507,501,521,505,441,432,445,446,437,446,450,443,438,441,471,468,479,460,474,468,465,470,561,551,567,549,571,580,564,558,560,505,512,506,509,505,512,513,504,478,478,480,479,483,479,480,483,482,481,483,489,492,495,485,495,496,495,465,453,453,456,464,459,462,466,463,450,444,460,462,463,462,461,457,469,457,455,451,458,452,458,453,550,550,543,544,543,556,544,546,537,543,544,541,544,546,542,509,503,505,516,508,515,515,520,510,508,506,539,550,559,558,548,554,526,531,526,530,520,534,526,533,530,524,475,485,483,488,559,555,558,553,550,549,559,547,567,559,557,565,565,546,552,560,573,554,552,557,554,558,567,557,567,501,490,496,490,488,484,487,496,495,490,494,577,587,560,556,562,570,596,566,570,586,496,515,490,504,496,489,503,510,489,501,491,504,501,503,494,500,498,501,505,595,579,591,585,599,587,578,600,578,582,580,593,576,549,540,544,544,556,549,552,550,546,542,541,545,544,492,503,497,498,507,497,487,492,502,478,480,487,489,554,561,566,563,513,514,524,516,517,513,525,552,554,583,566,575,588,588,565,523,520,504,507,509,498,508,480,479,485,485,487,488,487,481,489,478,489,474,480,480,561,559,558,562,574,561,563,582,551,559,548,572,501,520,524,520,519,518,567,565,567,573,561,556,567,556,568,563,565,573,562,572,568,566,566,560,575,532,525,512,506,505,516,517,504,507,510,518,528,473,477,478,486,482,481,482,479,472,480,474,485,483,478,481,483,485,484,475,478,449,438,440,457,450,446,441,444,517,523,511,530,515,530,530,530,528,522,518,515,506,512,512,512,519,515,513,530,526,527,537,530,525,533,531,534,532,523,529,557,576,575,529,531,527,521,518,524,524,520,515,540,563,564,570,551,562,566,546,561,556,543,550,548,548,556,552,535,537,535,493,502,503,502,506,504,513,497,500,492,498,497,507,505,547,559,542,560,492,498,513,524,513,510,505,500,500,499,493,489,510,497,514,500,500,490,486,492,484,488,470,488,482,481,482,475,479,491,488,482,490,476,492,473,465,471,474,458,461,468,469,460,456,455,449,450,450,454,452,451,487,501,489,499,498,494,502,498,498,502,491,518,520,514,507,515,513,516,516,557,551,553,555,563,555,560,551,555,539,544,561,557,552,554,560,553,550,547,557,557,554,555,547,541,554,502,494,504,470,487,489,482,433,521,522,532,513,513,519,524,525,527,536,526,530,527,520,529,529,568,558,568,542,561,557,558,567,565,501,501,533,542,531,541,525,523,536,539,539,540,525,538,525,535,534,559,568,578,561,558,570,574,567,569,567,559,546,558,549,548,545,548,546,546,537,549,550,546,548,542,543,541,540,541,548,531,515,517,489,481,484,478,481,471,477,469,485,469,471,468,472,464,469,470,472,469,466,467,463,476,469,467,476,423,445,442,451,442,447,436,447,442,437,557,554,546,549,556,552,547,536,553,547,563,555,539,541,547,548,560,542,544,469,476,485,466,471,461,478,481,470,466,473,487,488,472,471,531,539,548,537,541,536,535,538,557,545,553,546,540,542,548,548,540,546,543,549,544,553,546,504,505,522,497,499,507,512,501,499,511,501,536,558,557,502,498,506,498,494,500,501,503,507,511,513,501,509,505,505,507,513,503,502,508,502,503,541,540,541,543,540,539,531,542,558,557,567,573,567,561,563,567,568,567,574,571,563,503,509,507,501,497,489,544,537,540,538,540,540,544,539,545,541,545,538,565,569,569,574,573,571,571,546,538,543,549,542,541,547,542,539,553,541,540,505,507,498,491,504,488,515,518,507,499,506,515,508,506,512,504,511,515,561,539,547,549,542,548,539,541,537,531,534,533,530,529,536,532,531,534,538,525,529,535,567,559,563,565,563,567,541,515,515,506,510,526,521,525,497,487,488,482,483,494,491,488,498,508,513,510,507,499,505,507,504,507,508,505,514,508,509,511,509,505,515,524,523,528,532,538,542,545,543,537,533,538,537,547,535,552,536,537,549,545,550,547,547,494,475,471,467,456,451,448,449,449,441,528,540,523,534,531,525,520,528,533,526,532,535,535,528,528,527,522,531,567,558,559,563,562,562,557,501,508,515,518,509,514,509,511,545,555,543,539,547,536,551,558,545,503,503,484,503,505,505,616,597,602,587,589,595,590,586,590,578,580,580,589,522,544,538,532,533,532,505,494,596,594,587,584,573,597,577,591,595,505,513,504,516,510,514,525,515,503,536,546,545,546,543,544,543,550,539,555,557,546,548,553,548,548,552,476,465,474,465,520,524,519,519,512,514,522,520,514,515,517,507,525,562,555,561,556,554,565,564,568,568,563,559,570,569,529,519,530,511,521,525,585,574,575,580,590,585,588,592,573,538,539,544,526,529,523,531,529,553,537,553,563,575,567,568,537,554,469,483,478,461,464,457,473,476,474,472,479,483,463,487,476,469,489,531,535,569,570,572,560,567,564,571,571,543,547,554,489,487,499,492,505,489,482,508,498,494,502,495,501,488,488,488,507,498,503,499,498,498,506,504,496,508,508,501,498,503,557,536,536,544,549,546,544,547,549,547,557,528,527,514,495,493,510,502,500,507,487,482,482,470,481,477,477,478,477,477,481,497,489,496,494,486,487,489,493,499,496,491,484,488,497,497,487,489,491,476,466,463,458,461,438,434,428,438,446,427,439,526,529,521,526,512,517,532,536,536,538,535,539,536,531,535,534,530,534,536,530,537,537,551,540,542,548,553,547,542,554,549,512,519,517,509,521,517,507,506,504,510,512,501,516,505,508,539,530,522,524,522,528,521,529,531,529,524,542,529,537,532,534,538,527,532,527,537,536,529,528,537,571,570,570,576,569,565,575,558,566,567,567,569,574,567,573,560,573,572,565,562,560,566,541,538,544,536,535,545,545,529,546,545,546,541,540,538,538,482,479,486,482,487,489,487,477,477,483,507,447,447,459,456,440,462,452,444,555,548,553,542,548,546,558,553,558,556,557,555,553,542,558,555,562,555,554,556,548,553,540,542,531,541,539,553,543,519,511,583,575,567,503,532,533,532,516,539,520,533,536,477,490,476,483,485,485,486,490,485,484,483,493,484,487,491,488,567,559,562,577,561,556,570,571,568,558,560,561,553,571,572,499,505,512,509,519,499,487,497,503,518,488,485,482,490,484,495,483,485,478,488,501,508,504,503,502,557,557,556,560,556,550,555,555,549,555,549,548,549,565,553,553,564,503,499,508,496,504,499,497,501,504,502,507,502,503,507,502,511,503,501,501,512,507,503,552,537,542,538,540,575,573,518,529,530,525,539,529,547,536,530,539,533,502,526,522,523,516,517,523,518,579,583,581,578,594,596,591,592,505,517,512,504,505,507,509,504,510,507,535,528,534,529,529,530,526,531,528,532,532,531,543,536,542,542,538,546,539,541,540,556,550,551,545,558,558,552,541,556,551,549,502,526,520,516,492,496,492,497,490,492,488,493,495,489,498,487,496,493,461,462,476,468,471,464,464,470,473,467,464,467,464,471,436,447,443,440,454,460,451,444,451,451,449,463,444,478,467,473,472,473,466,475,473,476,481,475,474,477,472,464,602,596,582,590,587,587,588,589,593,602,586,531,519,527,567,592,591,577,528,547,535,546,551,547,508,495,497,496,504,503,494,478,500,498,493,499,503,509,507,502,510,507,500,500,502,505,501,501,509,504,500,502,508,522,540,557,538,547,467,473,459,456,467,455,450,470,457,469,478,476,472,466,586,603,585,607,595,590,604,588,598,498,516,510,509,504,518,525,527,532,529,534,522,537,528,523,545,517,531,536,534,520,526,522,522,517,531,521,524,519,529,521,523,523,521,540,531,532,521,534,534,537,534,528,534,549,545,537,536,542,555,538,545,547,554,547,543,541,549,551,547,542,471,468,465,530,546,530,527,533,541,572,567,556,569,574,565,575,561,573,570,568,563,559,576,541,546,543,553,543,551,544,490,497,495,500,511,494,498,496,503,501,497,504,494,502,495,493,502,500,505,496,492,503,494,494,496,504,497,515,514,519,511,518,511,514,512,513,508,509,510,519,553,544,547,532,545,533,545,542,538,544,546,540,544,549,542,547,536,553,544,545,541,543,508,504,507,498,517,498,506,510,512,510,511,518,505,499,502,496,507,500,503,502,498,526,532,525,532,527,526,513,516,514,514,522,533,527,537,525,531,526,530,526,527,537,532,536,526,529,521,535,563,570,564,562,564,566,560,567,568,519,533,523,530,525,542,533,537,537,530,527,541,527,535,507,514,509,510,507,511,515,510,512,506,511,508,505,512,509,527,529,526,528,528,524,521,509,523,587,590,587,584,587,576,579,573,581,592,587,508,510,508,502,506,509,510,537,537,544,549,542,575,565,559,572,558,569,558,568,527,523,526,532,532,525,530,531,521,531,530,548,526,486,472,475,476,476,467,473,482,469,473,467,476,481,459,523,527,525,523,526,524,524,534,535,529,529,533,529,535,526,524,531,534,531,529,525,525,573,573,560,554,570,561,575,562,547,568,563,554,564,566,558,544,557,558,553,555,549,557,552,562,559,540,551,550,546,560,550,548,556,543,549,559,550,546,559,550,535,529,529,521,535,519,524,521,526,525,512,511,494,511,508,491,501,503,514,509,498,510,499,518,508,512,506,502,512,511,505,508,513,505,507,509,505,506,492,494,497,492,497,501,491,498,502,496,499,498,496,490,486,484,484,488,489,489,491,482,487,492,487,486,482,493,488,501,514,509,509,555,560,559,556,548,559,548,546,545,547,548,545,549,546,557,559,542,551,552,543,539,531,506,504,515,504,499,512,499,507,515,498,504,495,516,505,480,476,478,471,483,484,478,474,478,478,480,475,473,475,507,509,527,514,515,567,571,564,565,569,555,551,558,574,569,557,525,513,502,500,512,502,514,505,518,523,498,513,505,508,515,476,483,472,482,481,478,471,478,482,480,484,475,478,492,444,438,438,447,539,528,531,522,539,518,519,523,530,522,539,534,534,527,530,539,543,526,540,536,533,525,535,534,528,537,549,540,538,545,550,558,542,496,491,483,487,492,485,484,493,497,577,582,582,580,594,577,571,512,531,520,544,541,526,531,524,496,512,516,512,507,513,512,514,514,561,561,578,559,562,575,564,566,574,547,550,551,563,556,556,543,554,505,518,484,483,483,481,491,473,487,489,477,491,493,486,480,484,500,486,486,479,483,486,485,480,484,482,482,478,477,483,477,479,488,482,443,445,453,460,458,446,451,458,457,444,442,437,454,446,453,450,458,444,454,455,457,455,467,445,454,458,534,542,533,531,540,533,528,540,531,534,535,534,537,520,518,525,516,522,527,522,520,522,519,518,518,527,526,525,513,520,513,522,526,520,524,516,521,514,529,547,540,534,534,544,534,537,540,540,542,547,544,549,541,546,541,552,538,546,547,534,548,551,502,504,507,491,496,511,513,496,507,505,578,606,577,590,559,547,555,562,515,516,517,500,501,511,505,514,508,505,501,508,512,503,497,506,492,490,488,485,494,493,496,493,491,498,491,489,487,459,465,458,452,470,459,456,463,457,463,513,500,507,500,503,560,547,543,544,541,549,541,556,542,551,546,545,552,539,552,544,547,546,505,489,488,493,503,500,506,504,504,501,502,495,491,492,498,498,494,490,490,545,534,543,543,544,543,538,552,545,541,550,567,568,564,565,562,565,565,572,557,563,556,572,558,570,578,569,565,556,567,515,509,535,519,524,524,510,513,524,493,487,490,486,489,494,493,493,489,485,492,493,461,488,483,473,478,552,516,508,512,504,504,503,493,498,507,498,502,449,473,453,456,465,473,457,470,475,501,493,513,497,505,513,492,502,497,496,495,501,504,499,493,510,538,495,477,526,526,530,522,541,541,485,493,478,478,489,487,496,473,488,490,485,489,481,556,547,543,554,553,530,560,548,540,554,554,545,549,506,518,521,515,521,521,513,517,521,512,524,515,512,507,549,540,555,552,537,548,542,545,539,551,504,487,499,490,503,494,499,491,494,491,485,457,464,522,513,502,512,521,507,505,515,517,513,541,553,558,552,553,551,556,557,501,499,495,492,494,478,506,471,480,477,473,475,477,471,477,480,475,560,568,558,547,549,570,560,493,499,510,490,508,495,500,508,509,511,498,497,490,499,498,494,505,503,607,587,606,591,598,590,601,588,584,601,589,603,551,529,537,535,527,541,533,538,535,544,534,531,535,535,533,549,562,554,550,560,552,531,542,536,546,535,531,529,531,532,529,533,565,568,564,567,572,550,572,562,511,524,527,517,519,521,514,512,504,496,518,516,530,479,484,482,478,487,483,476,493,479,513,496,496,492,502,492,522,529,520,529,520,531,542,517,524,578,586,574,583,520,513,520,520,518,518,518,522,512,563,567,527,532,520,530,517,519,531,530,532,530,521,531,535,510,502,515,507,510,505,502,507,510,506,507,502,504,506,507,498,507,498,500,507,501,496,503,495,498,501,486,484,482,479,485,477,486,479,460,456,452,459,469,463,456,452,464,464,458,483,488,483,487,484,485,474,489,557,579,575,562,579,550,565,581,579,573,571,579,500,509,493,500,507,500,506,509,503,501,510,543,567,527,538,556,531,558,543,560,549,545,541,553,508,510,516,517,507,503,518,512,508,508,511,507,512,499,557,570,557,573,566,558,578,566,572,559,566,509,522,505,487,452,448,450,449,451,460,457,450,462,456,458,447,443,443,556,581,576,584,588,575,579,581,574,579,581,578,581,581,583,585,564,570,553,536,543,543,541,492,495,503,506,501,499,503,516,494,506,501,500,502,494,503,511,504,496,494,488,507,500,504,491,512,530,527,540,532,529,529,522,517,522,518,519,514,523,516,520,519,554,565,551,547,544,551,559,561,561,552,557,509,533,523,532,530,519,514,509,508,507,502,503,505,502,498,503,511,504,500,502,503,507,501,504,491,474,473,495,497,499,492,502,491,487,487,486,490,485,487,490,495,562,566,567,556,561,568,527,530,525,519,524,526,524,531,528,524,528,527,525,529,525,520,516,527,527,525,559,564,562,552,556,568,560,559,543,542,533,545,540,563,551,545,543,486,491,508,508,500,491,496,500,483,490,498,495,534,570,547,550,562,550,561,529,554,541,552,565,559,478,473,480,480,481,491,473,494,475,470,492,567,563,563,568,570,567,567,574,580,565,594,570,492,518,498,501,504,497,508,498,495,501,509,503,511,503,506,575,570,564,565,581,567,586,585,584,559,580,506,501,508,494,500,488,494,521,500,496,483,486,490,492,493,486,498,570,566,573,559,561,578,577,573,570,577,569,565,566,554,572,570,527,488,486,505,490,501,491,486,498,508,493,488,501,494,456,464,558,549,542,535,549,539,536,535,539,534,519,516,524,528,515,550,547,550,558,552,545,549,565,550,555,548,557,547,558,556,508,525,507,511,521,512,516,514,520,521,483,478,481,488,492,475,483,478,484,486,487,487,485,482,482,472,552,546,567,564,563,565,553,568,557,563,565,556,544,518,511,504,507,509,519,515,506,525,510,488,487,484,485,487,487,481,491,486,488,487,494,446,459,472,494,509,501,490,493,497,496,496,502,496,506,500,508,506,510,499,512,511,509,505,533,539,544,542,557,557,566,582,568,559,515,541,530,529,533,476,470,463,465,459,475,456,472,481,481,467,469,468,534,559,558,557,555,546,567,547,550,558,560,499,508,504,503,513,509,508,508,518,504,507,531,536,537,555,551,542,553,555,556,466,482,486,475,464,470,483,470,487,469,468,473,487,497,436,454,454,444,468,452,455,452,461,448,451,448,446,441,457,455,458,437,572,556,562,568,562,555,565,562,561,558,565,559,561,567,558,557,528,520,523,528,537,523,523,516,517,524,523,534,526,522,508,510,509,504,508,507,503,506,505,508,508,510,516,503,482,473,483,487,475,475,482,476,486,486,481,477,479,482,463,476,460,451,462,460,465,464,466,453,469,546,539,533,540,544,537,538,540,532,530,546,518,522,521,538,530,522,537,532,536,523,535,531,535,526,530,532,571,569,572,572,565,569,562,564,574,535,530,519,519,528,534,533,534,531,532,524,535,523,504,512,510,511,510,563,563,553,563,576,557,569,513,526,515,521,516,505,512,524,526,493,497,492,491,497,504,507,502,517,506,498,498,513,504,505,513,498,507,501,535,539,535,540,535,535,536,534,539,548,531,535,541,541,534,537,538,536,522,505,515,507,505,506,508,509,515,512,515,507,511,510,509,514,511,528,521,525,528,527,526,518,520,523,518,522,531,512,515,584,575,584,575,586,585,572,578,578,577,591,580,584,568,582,586,567,583,525,527,514,513,519,512,520,512,515,517,521,509,515,520,557,562,564,554,563,560,556,559,551,569,559,557,558,559,554,554,551,560,550,556,547,556,557,561,527,539,533,519,504,509,502,502,517,506,505,514,516,513,504,507,510,512,502,487,489,492,490,487,494,486,485,479,486,481,480,481,474,484,491,476,479,480,474,475,476,475,478,488,473,480,469,474,466,478,472,479,435,448,449,445,442,452,454,443,569,545,548,550,550,547,555,554,555,543,554,550,554,558,555,559,546,556,550,563,546,550,551,549,478,500,495,495,487,509,496,512,495,496,444,453,462,456,459,449,451,450,454,453,453,453,449,454,482,480,468,475,481,481,480,483,477,485,478,476,480,583,578,577,573,566,559,576,569,491,488,477,491,498,491,507,500,584,570,573,575,573,578,553,572,577,565,583,589,520,501,506,503,507,509,500,494,497,490,534,528,554,538,551,543,544,543,536,545,549,579,573,566,571,534,535,535,537,526,521,520,524,519,519,517,520,517,513,520,516,543,551,548,552,553,540,545,550,503,501,504,508,502,535,535,531,541,536,535,543,536,533,557,541,547,540,552,540,546,545,465,483,473,478,476,480,486,488,477,567,574,549,550,544,561,549,549,539,549,556,563,557,485,503,515,494,502,498,513,517,502,511,529,527,520,540,484,478,484,477,479,462,471,472,477,476,473,533,522,528,537,537,526,534,534,528,532,545,545,561,559,546,544,483,505,515,504,506,507,494,514,513,514,521,510,521,506,459,466,463,460,466,464,455,457,463,459,476,482,481,482,491,489,486,488,490,488,488,483,485,537,556,559,549,557,553,541,527,532,516,531,522,529,524,517,478,486,480,480,478,478,470,504,505,516,505,505,503,504,494,517,510,498,553,558,567,559,549,552,553,553,565,563,548,563,551,550,488,502,499,510,487,508,509,513,522,519,514,541,552,541,519,502,504,504,503,495,552,562,548,563,549,558,499,506,503,504,499,488,511,506,518,496,494,513,468,481,481,496,495,494,488,495,484,498,492,495,492,468,456,458,468,466,466,501,492,513,497,496,504,510,491,501,506,508,505,503,538,552,557,479,483,476,483,487,494,495,483,490,462,474,469,462,470,465,464,461,459,471,467,453,470,466,573,571,567,573,556,566,568,577,473,487,476,468,480,477,463,476,467,533,520,528,527,524,532,522,518,522,522,522,521,547,539,551,554,552,550,551,551,547,539,547,543,549,551,562,557,501,501,496,503,506,506,503,507,513,507,511,511,517,512,508,558,557,555,560,543,558,565,561,557,518,527,530,503,523,505,502,493,494,500,489,499,496,493,500,499,493,504,495,459,453,455,454,458,457,456,550,550,549,559,549,547,546,551,556,545,548,544,552,551,553,543,549,543,551,541,549,527,489,471,497,488,500,491,489,552,558,565,550,542,556,556,541,538,542,559,569,574,473,497,474,487,488,487,478,498,500,478,574,572,580,586,585,541,543,539,542,544,536,538,539,536,542,542,544,541,539,540,516,533,521,530,531,521,525,531,521,491,493,500,499,510,509,503,502,507,502,510,507,503,499,500,500,501,502,499,516,511,505,505,512,505,513,512,514,511,505,565,556,551,552,565,553,557,576,565,557,563,566,554,555,567,561,562,531,525,538,529,527,519,517,524,503,500,499,508,510,503,490,479,483,480,485,486,480,479,495,474,484,508,505,511,512,509,502,506,517,510,499,540,542,546,540,550,542,542,543,543,546,546,548,547,546,549,527,534,527,533,524,534,550,557,543,556,550,557,504,495,502,506,514,500,500,492,508,491,504,506,500,505,503,511,501,496,499,558,538,544,535,535,541,544,533,553,560,554,560,552,563,554,546,551,515,524,528,527,523,524,524,525,528,529,527,528,522,554,559,559,551,558,543,544,565,554,555,554,554,565,562,542,526,529,520,522,523,525,525,519,522,519,523,527,522,519,523,518,546,546,559,552,558,545,550,543,546,556,545,543,553,538,557,536,540,532,533,531,542,527,541,542,516,516,514,508,512,509,507,538,534,535,546,537,534,528,536,528,533,536,543,531,539,542,546,543,536,536,572,553,549,553,551,554,559,549,551,555,567,550,561,564,556,524,522,521,485,477,480,480,481,488,484,483,474,484,487,491,465,473,471,472,472,477,468,476,466,556,565,560,561,565,557,568,562,564,545,562,548,552,564,558,565,552,552,561,482,480,489,493,440,452,445,442,465,462,456,459,461,453,444,469,447,447,450,442,575,581,580,565,580,569,583,583,565,566,569,586,580,565,568,564,571,544,545,548,544,540,545,541,549,543,533,542,528,520,516,528,492,484,484,483,472,482,555,556,566,555,550,554,559,555,563,555,560,554,564,550,562,565,557,562,552,562,569,561,507,503,511,492,492,507,493,497,495,499,502,485,485,491,488,487,474,486,480,480,483,538,556,491,500,494,505,499,497,501,498,490,510,487,499,506,506,505,502,493,489,494,499,498,495,537,535,537,540,545,547,533,549,542,534,536,547,546,535,535,539,548,548,556,542,561,554,557,566,547,557,541,552,559,557,551,558,563,558,549,547,559,550,527,509,513,518,511,518,518,503,507,558,566,560,569,554,567,563,572,566,578,577,571,578,577,565,575,560,544,577,511,509,523,508,516,506,515,562,556,565,563,541,573,564,566,567,560,581,561,566,561,551,490,500,488,496,494,500,494,501,493,484,478,479,488,485,483,603,579,586,537,541,529,542,540,532,527,519,522,533,494,496,478,496,492,499,497,496,496,490,598,600,582,578,580,602,594,597,592,539,553,564,560,563,558,557,552,546,556,483,444,452,454,455,453,453,450,452,456,457,457,454,447,455,456,428,448,447,534,544,551,544,546,554,545,541,545,545,547,539,546,543,556,583,580,574,576,569,575,564,544,543,551,554,551,548,548,497,495,496,504,506,500,496,498,492,483,503,496,504,503,512,501,494,493,494,496,504,494,500,496,500,515,516,511,515,509,512,510,509,541,538,541,540,547,540,551,554,538,555,545,541,548,528,535,545,547,535,553,539,514,516,522,516,524,511,516,522,517,523,526,528,529,515,527,525,525,531,528,528,536,531,531,519,510,504,500,508,497,495,500,499,503,519,506,499,507,504,529,562,540,568,558,544,542,544,548,563,501,506,500,502,509,501,504,506,510,500,505,512,498,509,508,512,504,505,503,501,490,502,526,518,537,519,537,529,540,523,528,529,484,479,475,483,477,545,546,552,547,552,547,462,471,482,481,490,468,464,463,477,461,481,555,551,544,553,542,552,548,553,539,555,546,558,549,552,549,552,548,494,495,507,498,501,519,500,506,513,502,495,515,500,507,504,490,548,557,539,552,483,505,503,487,493,491,494,498,505,499,504,495,498,496,500,494,486,491,485,497,498,487,544,542,494,515,515,517,498,505,515,506,505,503,562,563,548,556,551,557,558,558,548,558,550,546,563,553,549,543,550,550,553,558,494,485,487,543,536,527,535,539,532,542,557,553,553,547,558,551,550,546,546,543,553,563,573,557,552,554,563,568,560,552,549,561,564,521,514,512,519,528,520,519,514,519,519,524,528,525,499,491,492,499,497,493,495,500,504,489,494,471,464,470,461,474,471,472,480,473,490,479,481,484,481,482,483,483,483,481,510,510,508,512,519,526,504,501,505,514,570,574,584,581,588,576,570,579,584,573,585,564,580,543,539,539,546,541,540,532,540,538,531,525,520,512,539,570,558,559,544,562,561,557,556,565,559,565,562,560,564,563,547,558,520,530,526,528,523,526,525,525,523,522,523,521,547,551,494,502,487,491,499,493,499,503,498,508,513,530,544,537,545,520,544,536,546,539,544,546,545,556,547,555,547,551,546,541,544,535,525,513,526,523,506,518,522,519,532,527,526,528,593,586,587,571,595,582,538,539,538,536,513,512,514,508,519,522,521,510,512,511,512,515,517,514,514,574,591,597,578,577,582,585,592,571,592,583,542,543,544,551,548,540,544,543,548,543,549,544,536,508,503,507,511,498,513,497,511,502,493,500,504,509,512,492,560,576,578,575,570,583,569,576,566,482,479,482,474,478,483,487,481,481,479,485,490,535,531,529,520,524,521,525,543,533,547,549,563,565,559,548,544,558,556,558,547,549,554,559,563,521,519,519,527,509,518,515,520,523,519,522,509,516,516,522,512,509,504,500,499,498,501,501,498,507,472,463,463,462,471,470,476,478,493,465,479,481,473,481,547,550,558,547,549,521,525,513,509,492,489,482,491,484,491,485,487,492,492,490,484,509,514,519,511,520,507,515,510,536,541,544,537,543,535,538,539,502,473,480,460,482,476,494,495,465,475,545,551,554,548,548,549,555,559,554,546,552,550,546,547,548,554,551,563,543,556,551,546,503,496,487,480,486,479,495,483,489,481,482,490,490,523,525,521,519,558,551,544,538,545,546,547,549,531,546,543,528,525,540,524,529,533,525,532,517,527,519,538,527,523,520,477,554,548,556,552,565,562,555,560,562,551,549,503,495,502,495,503,502,496,516,510,500,504,532,524,524,528,525,519,517,550,563,558,560,567,568,477,498,493,503,498,503,501,500,500,504,507,497,506,506,511,503,513,508,502,503,562,555,563,570,551,555,563,558,562,555,565,568,549,558,539,539,526,532,538,539,533,543,506,517,523,522,514,521,515,509,520,515,514,521,520,517,530,536,534,530,525,537,536,529,536,542,524,536,563,566,563,555,559,564,558,566,471,490,550,556,549,542,548,547,537,542,540,558,558,546,551,548,553,476,501,501,481,478,496,490,497,494,503,493,497,488,499,491,497,495,493,502,482,443,423,430,444,441,520,515,519,519,516,517,513,519,508,519,518,513,520,509,521,525,523,525,519,524,528,526,525,525,523,518,522,517,520,518,516,524,523,533,536,535,545,531,542,541,530,541,536,532,555,541,538,545,554,554,541,543,537,544,544,538,519,522,521,520,519,522,525,521,517,524,515,519,522,557,543,539,551,538,545,543,543,543,540,543,502,503,502,512,503,500,496,536,533,534,536,539,539,548,534,531,533,545,530,530,541,538,528,527,522,518,520,526,533,521,517,523,515,519,522,527,522,518,523,520,525,521,513,521,516,545,532,552,545,540,539,545,546,546,539,559,554,559,546,554,548,546,539,549,551,548,548,546,542,495,498,510,505,497,498,488,493,494,485,491,485,486,498,491,493,501,497,509,497,506,540,540,530,533,540,536,529,539,536,547,558,565,565,583,564,565,566,570,556,563,553,566,560,561,563,560,502,500,504,504,505,496,496,532,536,541,535,530,532,547,536,530,558,548,573,562,548,549,548,545,539,546,549,536,546,546,538,545,535,534,538,537,566,556,553,562,555,562,569,563,553,554,562,555,498,496,500,490,503,502,503,502,495,497,493,496,495,481,481,489,488,487,487,481,487,489,493,489,564,565,569,562,586,578,567,561,563,486,497,501,497,582,570,595,577,586,566,576,566,584,568,568,574,523,518,534,525,531,520,511,520,521,520,523,517,513,561,539,550,557,561,553,548,538,547,520,521,530,519,531,538,522,527,535,533,535,523,532,540,517,529,522,529,528,523,538,522,481,478,474,485,478,480,470,473,491,473,465,456,518,538,529,538,524,531,529,536,537,526,536,532,518,533,523,522,529,535,530,525,524,524,526,525,512,517,527,529,525,519,524,518,517,522,527,522,525,523,522,538,545,561,543,559,550,570,498,499,495,490,495,497,498,489,496,505,504,495,497,495,505,482,487,489,493,493,496,492,496,496,569,553,560,579,582,554,565,574,587,577,571,514,494,515,505,505,510,508,510,540,549,525,527,510,509,499,504,514,504,551,554,548,573,555,563,562,540,570,558,527,525,527,524,533,530,529,527,528,531,531,529,526,531,526,529,528,528,529,526,529,527,540,490,480,481,471,477,485,483,478,478,544,550,546,554,535,544,540,549,555,551,546,544,548,555,552,539,492,485,492,495,490,489,591,575,587,581,584,587,585,584,588,574,579,597,578,565,529,534,545,541,549,552,557,496,499,493,487,489,496,496,493,495,493,483,484,474,486,477,485,474,491,485,478,483,486,482,560,541,563,572,574,562,566,557,552,552,554,561,518,518,504,530,509,510,515,515,524,507,502,512,511,499,502,517,497,484,486,479,485,489,495,485,485,492,487,443,448,431,444,444,432,446,439,451,445,523,532,523,523,525,532,528,525,522,523,526,517,524,525,516,524,516,524,521,546,541,545,550,548,541,545,551,535,545,544,539,543,565,559,566,562,560,557,554,559,560,565,552,563,543,563,553,556,531,531,522,522,516,504,518,528,525,512,525,521,526,514,516,513,511,523,514,514,523,507,489,496,482,483,482,497,492,500,485,493,501,499,498,487,498,502,537,577,556,563,565,569,508,500,506,499,504,518,511,507,511,513,506,512,507,509,514,506,553,568,562,558,562,555,565,536,537,523,519,523,517,525,520,523,520,521,522,550,549,540,544,541,548,543,546,545,549,549,547,558,553,594,582,567,577,561,574,556,584,562,586,566,573,569,563,574,540,526,519,531,530,526,531,529,532,533,523,526,507,508,504,505,514,471,475,478,483,482,477,488,475,480,492,499,494,503,504,498,501,507,504,505,511,502,497,502,500,543,547,543,542,543,535,554,562,573,560,571,553,563,546,555,561,553,564,502,486,493,478,496,509,494,502,486,491,542,543,545,551,540,558,544,556,537,547,551,547,549,561,549,549,558,568,578,586,575,583,571,578,561,568,564,586,566,540,530,507,510,513,504,520,516,503,506,505,504,505,509,512,506,500,501,501,541,541,538,542,573,560,560,560,563,563,568,562,559,570,571,574,552,554,550,551,550,554,551,549,541,548,545,543,492,489,496,489,502,489,492,499,494,502,495,491,506,513,502,492,511,583,561,563,571,572,580,568,558,556,586,571,563,569,564,562,484,502,490,502,496,498,473,493,503,497,493,502,499,503,459,456,469,454,461,465,458,459,473,458,470,458,458,573,593,592,593,525,541,536,537,536,524,526,530,524,527,542,555,548,568,563,563,492,500,503,496,507,501,504,501,502,494,502,495,475,503,504,444,447,457,462,519,515,511,511,516,514,548,555,564,559,557,559,567,548,560,488,489,498,496,500,491,504,498,502,490,495,503,493,491,501,492,495,501,502,501,507,504,503,496,501,500,510,542,532,538,538,542,535,541,540,542,537,547,540,536,539,560,557,558,557,558,567,558,556,489,505,510,506,477,507,499,482,494,495,494,457,456,457,458,470,541,534,562,557,538,553,566,552,562,511,511,488,499,504,504,514,511,512,507,506,551,558,570,515,507,495,518,511,506,507,515,512,511,508,489,488,492,482,482,486,484,483,480,485,483,485,488,489,483,487,490,494,430,440,443,440,442,440,443,530,536,528,530,532,534,562,563,556,565,560,544,552,554,542,548,539,552,545,551,535,522,524,524,529,523,535,523,521,518,531,514,522,522,527,523,528,494,492,491,499,503,493,497,492,491,488,486,509,490,488,502,607,577,534,527,515,530,539,528,526,522,528,587,572,590,569,570,587,539,539,540,522,543,540,543,552,541,550,568,562,567,571,561,574,564,509,501,508,488,511,508,491,476,469,465,469,473,463,466,561,564,555,565,559,556,558,567,571,556,566,551,561,549,555,555,550,563,551,546,549,556,552,549,552,483,510,501,505,503,501,490,498,494,509,493,503,480,483,484,473,480,481,482,480,488,483,485,485,483,479,481,484,464,455,437,438,449,441,435,528,550,549,551,532,541,543,533,542,546,535,554,556,553,557,548,552,555,548,547,551,550,541,542,553,554,487,486,459,451,462,458,451,514,505,503,505,502,499,499,542,543,557,545,543,553,553,543,542,549,540,525,519,523,516,601,593,578,583,592,583,553,551,554,552,553,544,552,550,550,556,499,506,503,493,502,503,498,497,496,497,531,510,521,515,564,563,556,490,498,483,486,487,492,481,503,493,495,466,470,458,469,455,459,466,547,563,555,550,557,546,554,542,556,549,555,550,553,554,551,549,553,466,467,473,472,468,468,481,464,475,457,536,523,515,525,522,531,520,514,517,521,518,546,539,541,538,545,545,541,537,531,544,543,553,540,540,547,546,550,546,547,547,550,554,550,509,496,501,491,508,494,489,499,495,466,457,451,464,463,453,495,494,490,505,491,497,487,491,486,495,499,571,563,565,563,571,563,569,567,573,564,567,580,563,492,505,512,498,515,498,499,511,523,503,505,504,497,477,482,483,477,484,483,547,490,496,503,509,497,494,497,502,493,497,493,495,503,497,503,444,447,453,452,455,443,444,451,441,440,449,459,443,541,548,541,537,545,544,544,549,543,539,541,530,534,535,541,541,482,481,490,490,483,570,564,566,580,566,583,583,573,531,523,521,529,555,557,549,565,556,560,558,544,550,552,559,549,555,545,545,544,557,557,557,563,468,471,490,461,474,476,481,461,476,479,455,451,450,460,457,443,443,449,443,541,541,550,546,543,551,553,552,557,540,558,548,546,554,541,550,547,546,553,548,542,551,550,554,553,495,589,585,586,574,583,579,572,587,577,578,576,568,572,536,533,533,534,528,509,517,519,509,521,508,520,582,582,590,577,587,582,583,591,592,582,534,544,536,541,544,545,537,528,544,547,520,507,510,510,512,513,520,514,518,512,519,511,521,527,526,532,530,572,561,549,555,550,542,553,550,551,541,552,556,504,521,508,535,554,554,547,559,546,553,552,546,547,545,546,500,523,505,518,514,519,515,512,507,513,519,473,458,480,594,586,520,509,505,514,511,503,507,515,500,505,510,506,540,547,543,546,549,555,543,540,538,538,552,548,537,549,539,539,556,556,553,547,549,546,552,478,488,474,480,474,480,480,459,490,473,490,551,544,542,547,544,537,558,546,550,541,545,550,475,475,485,478,489,486,489,488,493,503,499,494,486,488,494,492,502,491,569,564,560,568,566,563,561,567,568,575,540,547,545,542,553,517,498,496,495,502,496,496,497,519,505,510,525,518,513,517,509,529,513,511,505,508,554,555,561,555,565,549,552,552,550,554,560,560,552,472,487,487,483,474,487,489,491,458,435,441,447,433,443,445,441,444,525,527,524,535,521,531,519,520,527,531,529,522,530,526,521,525,524,532,528,541,533,537,532,531,536,533,537,532,551,556,544,541,550,558,544,541,551,477,474,472,462,546,543,548,544,545,549,546,541,547,543,535,536,545,542,537,535,536,540,536,553,541,547,532,534,497,469,491,506,493,491,499,488,498,494,492,482,533,532,542,544,541,543,544,541,538,539,544,536,564,575,569,556,562,575,564,559,542,572,559,571,557,568,574,566,501,512,510,504,498,505,511,506,511,571,590,603,597,605,602,595,590,608,592,585,598,536,520,533,526,496,494,489,587,579,599,597,583,575,579,591,597,578,594,577,583,581,533,536,535,536,496,491,498,492,494,490,504,581,582,592,596,579,600,597,594,601,595,533,538,545,546,547,543,545,555,544,543,547,546,538,567,555,567,574,503,495,502,502,498,500,506,509,504,505,513,509,514,509,506,573,566,571,564,578,570,574,562,557,565,564,565,554,553,553,544,549,553,545,493,502,487,491,486,491,493,492,487,499,471,601,602,594,606,507,519,499,504,509,502,522,507,518,509,514,498,509,503,535,534,539,541,546,538,534,548,542,539,533,539,547,536,543,533,546,548,562,561,572,547,563,560,576,568,558,569,505,503,499,502,497,506,496,503,495,499,498,501,496,506,510,499,516,545,532,536,538,538,541,544,541,540,537,543,540,543,528,577,563,568,554,553,563,558,563,570,560,573,567,500,501,505,521,506,506,512,504,504,504,508,511,498,537,539,533,542,540,546,537,538,544,547,546,536,535,537,541,554,540,551,544,533,547,545,541,545,549,543,511,501,511,505,510,508,501,509,513,507,494,508,504,509,505,500,505,518,508,513,518,558,565,574,580,588,586,573,591,508,516,503,510,507,503,522,502,513,523,504,505,538,532,540,540,529,539,571,558,562,560,572,576,559,565,567,564,570,558,569,555,508,501,499,491,500,505,505,501,506,532,549,537,540,543,543,545,533,574,563,552,579,558,566,566,565,547,547,548,541,543,497,509,508,495,509,504,503,504,502,512,502,499,495,462,456,460,465,469,461,457,440,440,443,440,426,457,458,442,443,439,448,459,428,534,546,540,540,542,541,546,546,551,553,540,537,533,541,538,554,545,561,550,551,547,544,486,498,499,500,487,500,498,502,501,495,491,509,505,507,493,504,500,491,479,479,481,478,508,495,499,497,497,499,498,493,509,497,493,498,493,500,492,493,499,495,494,502,494,491,478,482,470,472,474,479,473,472,469,479,473,470,499,502,499,503,508,500,503,503,509,510,509,509,501,552,543,539,546,544,550,541,546,535,511,495,487,498,511,513,501,512,511,509,510,508,502,499,506,572,547,558,558,555,559,555,560,547,502,502,511,496,483,489,489,478,480,486,478,482,481,469,468,466,470,468,474,471,461,466,462,466,543,566,483,491,515,496,494,491,491,502,506,507,508,487,496,501,485,508,495,511,499,493,490,502,497,495,492,491,494,487,506,492,537,525,530,521,525,529,530,528,525,527,525,539,527,526,532,517,529,525,524,564,568,564,566,567,566,559,552,560,555,551,557,552,560,513,518,519,474,472,479,481,479,477,483,478,474,482,473,481,479,452,458,456,461,451,453,454,464,549,546,536,548,536,581,559,578,566,562,582,547,546,553,554,553,553,552,555,552,548,535,550,555,547,558,553,559,552,556,551,552,547,559,554,562,551,529,523,518,504,505,499,504,501,507,504,501,503,499,490,495,499,496,497,496,498,495,498,499,494,490,461,473,467,430,513,525,518,514,519,525,520,520,518,538,537,538,533,527,533,528,533,528,535,538,534,540,548,545,547,519,544,541,546,542,541,544,540,543,545,494,503,515,521,516,509,543,556,555,547,572,556,563,557,556,546,545,550,554,556,552,548,552,554,547,543,545,555,548,538,505,504,489,479,496,488,514,508,500,491,491,489,497,500,497,491,503,471,473,474,478,487,479,482,479,469,481,480,478,473,478,487,479,555,552,560,558,545,552,560,549,499,483,494,492,481,483,503,488,502,486,480,482,488,484,482,476,481,483,579,593,593,582,593,591,594,532,528,538,539,543,495,497,482,498,500,495,492,484,493,586,584,578,577,592,573,592,586,588,602,584,572,591,594,575,599,580,585,590,591,501,492,507,506,541,546,538,537,537,542,545,549,540,546,544,534,567,564,545,541,527,544,545,553,547,556,538,539,541,488,487,495,489,490,496,491,495,490,489,469,528,541,535,556,538,549,545,548,538,520,520,523,517,518,523,519,564,559,561,557,561,568,529,535,524,535,535,532,526,530,539,523,527,509,504,499,505,515,505,513,516,508,517,503,549,550,548,562,534,559,564,550,556,516,524,503,510,519,516,517,520,527,531,523,519,526,590,585,598,572,581,575,577,566,600,586,579,584,526,540,540,537,528,527,534,531,535,540,532,504,514,509,593,568,564,562,559,575,557,559,558,555,576,482,492,496,501,489,486,566,561,550,554,546,548,540,550,541,549,551,554,550,480,506,492,495,511,484,489,493,501,509,493,507,497,466,469,466,465,469,465,458,472,470,467,463,462,469,478,466,440,442,444,444,450,431,441,454,435,444,454,443,441,449,554,547,561,553,550,545,555,533,541,545,549,543,537,556,542,548,540,549,545,477,471,478,476,464,477,477,485,472,476,482,477,475,471,478,476,473,482,471,473,468,474,467,571,552,557,566,575,510,496,509,508,515,490,508,500,510,506,485,483,481,479,482,478,480,489,485,485,489,483,484,491,485,526,516,520,514,518,510,509,526,511,566,581,584,595,595,583,592,590,580,591,592,589,588,580,548,552,557,559,557,511,522,505,522,522,499,518,521,500,516,515,507,510,505,509,482,473,474,478,481,482,478,489,477,498,500,497,501,492,500,498,527,514,528,518,524,587,580,588,577,587,595,592,583,584,571,583,581,591,560,578,588,593,577,571,580,577,498,504,509,501,516,499,515,503,509,505,513,511,507,503,536,557,568,568,565,570,511,497,540,542,532,545,538,544,542,537,554,555,580,568,568,564,561,565,576,564,572,562,568,503,501,488,489,501,489,501,508,506,489,501,544,532,538,544,542,538,535,534,538,573,569,562,553,571,566,556,568,564,559,554,559,532,532,524,539,532,539,532,532,541,534,537,544,538,531,523,531,524,527,527,530,529,526,529,551,561,563,559,561,562,556,552,564,557,471,502,495,491,487,493,488,500,502,499,488,496,470,571,589,596,589,591,600,592,593,590,601,594,587,588,587,542,539,537,543,527,541,545,531,538,532,534,545,544,540,541,518,519,517,511,519,521,520,523,555,543,546,496,507,494,496,499,498,503,501,502,506,493,504,495,496,503,500,508,498,497,547,541,544,532,541,546,546,542,551,550,571,564,558,556,558,552,563,581,574,564,561,512,491,506,502,505,546,536,536,542,537,540,535,535,530,540,563,568,558,552,567,555,560,552,567,560,570,568,566,560,566,500,501,494,506,520,495,507,511,507,505,509,516,538,542,540,538,544,533,569,569,577,581,565,564,571,561,557,573,566,514,534,533,529,532,532,501,494,486,502,496,480,498,486,494,495,489,490,494,608,588,580,591,600,596,596,594,574,596,582,587,526,533,538,541,537,538,541,529,534,534,541,543,540,523,509,530,517,513,520,513,589,586,588,598,582,602,586,551,531,521,530,539,527,530,492,491,494,615,603,602,582,572,586,601,582,587,579,583,543,534,531,539,518,523,535,535,534,535,533,537,527,537,546,521,534,542,541,572,559,558,570,555,558,550,553,569,562,567,567,556,525,502,519,511,500,504,502,501,476,469,478,479,481,483,483,489,479,490,487,475,474,479,488,478,472,474,486,482,470,460,460,466,457,459,455,461,464,468,466,464,472,464,461,472,476,478,474,456,467,470,459,462,546,553,538,542,549,542,552,563,557,546,557,540,508,519,495,490,493,491,488,486,479,486,497,488,484,488,488,482,481,479,489,479,495,500,496,501,503,493,504,495,489,502,503,499,496,504,497,481,480,487,464,483,488,488,487,480,478,479,481,482,466,464,471,463,453,466,465,516,517,507,519,511,526,516,514,518,520,507,523,509,547,567,564,564,571,563,496,501,495,500,497,491,485,496,494,492,487,499,490,485,498,498,494,495,495,498,503,491,495,488,494,486,486,486,491,500,558,564,556,547,566,558,555,564,569,531,528,534,534,525,537,531,525,535,524,531,527,526,528,532,526,524,538,539,526,533,544,530,535,545,542,549,536,530,492,510,500,516,518,522,510,515,508,501,505,504,509,504,521,511,508,537,547,551,539,535,549,559,502,512,505,509,507,502,502,510,511,507,506,503,506,513,508,539,560,566,564,567,567,551,580,547,560,578,556,560,573,556,550,566,507,505,501,501,501,501,555,560,548,552,500,476,477,474,477,482,484,474,481,482,480,477,480,483,477,481,483,474,506,498,501,498,489,498,564,561,563,569,553,556,562,561,562,561,565,567,557,555,557,550,556,545,549,550,546,549,558,544,542,550,495,481,492,492,485,484,489,496,488,486,499,491,462,458,457,467,457,470,466,530,539,538,540,544,545,547,537,542,553,556,546,551,546,552,555,552,556,541,542,560,552,561,562,565,562,554,564,559,563,552,570,557,561,553,560,560,521,489,496,486,494,501,501,494,502,496,500,491,493,498,495,503,496,531,524,520,514,528,530,532,519,526,530,532,578,581,585,577,582,576,576,590,587,577,576,583,576,584,575,537,531,540,528,531,539,532,538,534,535,535,536,521,520,516,556,560,557,551,559,562,553,555,563,565,558,560,560,548,555,558,547,545,558,546,550,547,561,510,496,494,503,501,496,495,510,441,463,474,450,457,453,458,440,462,452,488,489,490,489,489,485,484,485,494,494,487,489,491,527,527,531,524,521,517,532,526,577,598,588,586,573,586,590,584,578,577,530,518,532,531,539,525,532,532,495,491,490,490,499,496,585,589,587,564,561,557,564,566,553,549,559,555,554,557,554,569,548,511,525,517,517,481,479,481,482,476,485,484,469,482,476,472,482,487,498,502,486,497,505,504,564,572,571,517,526,516,518,513,529,525,522,514,524,519,522,510,516,523,497,489,485,484,473,477,487,473,478,479,480,473,474,487,485,486,472,560,569,559,547,561,558,548,557,541,498,504,515,494,508,509,492,499,500,499,477,485,477,475,481,475,467,479,521,552,528,555,563,542,558,558,539,559,555,563,559,496,511,499,493,503,502,498,497,507,501,504,503,571,562,572,563,557,554,560,560,566,584,491,505,504,513,514,517,508,504,507,504,502,512,518,549,548,553,538,546,501,492,482,498,499,494,502,504,490,503,488,491,492,500,503,499,498,496,494,492,502,560,560,555,561,547,563,561,565,551,560,560,561,557,555,535,540,527,519,523,529,528,531,522,500,502,501,500,503,515,498,516,570,569,557,564,567,549,564,522,515,514,524,518,518,527,516,517,509,526,514,510,519,527,519,520,519,522,521,575,534,532,544,550,534,544,548,542,543,546,553,537,523,527,535,532,534,531,523,537,536,534,530,530,535,539,537,515,520,516,508,516,516,514,519,511,518,517,516,519,518,514,525,525,528,522,527,521,527,526,526,519,530,595,588,579,590,581,585,576,576,585,580,581,527,532,534,514,536,530,533,540,521,533,525,537,528,528,531,488,497,497,494,490,492,488,489,584,589,551,540,542,544,538,535,550,546,542,546,534,543,546,576,563,556,571,568,573,562,567,580,574,562,524,501,512,526,521,527,511,479,476,479,486,483,483,487,460,471,487,483,474,471,470,476,483,478,488,589,595,579,605,619,600,608,593,605,594,587,557,543,559,564,559,547,553,556,559,551,548,553,548,489,501,498,505,490,493,483,487,483,487,479,480,483,483,487,479,482,489,562,557,557,566,577,548,580,569,564,552,586,573,566,549,562,559,573,549,573,566,515,519,525,546,545,544,546,542,561,551,548,544,554,553,546,547,543,544,548,552,537,552,553,544,538,541,550,546,488,488,471,487,498,484,488,493,490,487,481,500,490,500,490,475,470,474,476,475,465,468,559,493,492,478,490,494,490,486,501,465,551,556,546,552,551,560,546,542,546,551,569,549,550,532,559,539,545,498,506,509,496,506,506,557,556,564,559,564,565,549,556,553,509,500,509,514,522,508,510,519,486,485,486,489,485,491,485,485,490,489,485,466,488,483,479,477,489,482,489,484,475,495,478,582,564,497,488,494,493,501,491,454,457,461,462,460,457,464,458,465,462,459,460,464,452,557,551,550,548,576,577,569,561,587,565,577,565,559,565,570,577,543,549,558,548,547,532,505,491,498,497,496,499,505,506,505,457,453,460,459,462,459,454,463,459,459,462,466,459,460,460,462,455,500,480,488,470,478,486,457,473,473,472,554,570,564,568,570,525,519,520,529,522,534,534,529,534,531,535,531,533,533,534,534,536,535,555,561,562,499,506,496,468,503,510,505,512,501,448,431,451,448,459,436,444,435,435,526,541,535,530,533,526,541,550,548,542,555,524,522,517,555,560,562,552,557,557,555,543,556,559,554,523,528,519,538,537,510,520,526,524,526,505,516,523,521,520,499,499,505,499,494,506,476,482,482,474,474,489,483,482,487,485,484,482,479,479,479,476,471,485,450,447,441,441,445,435,436,525,523,531,522,526,528,529,524,521,519,522,527,520,515,514,515,521,518,543,540,538,526,542,537,541,536,542,545,540,549,539,537,546,539,540,538,536,534,543,533,500,514,509,511,518,500,509,563,554,568,568,546,560,461,483,479,477,492,490,486,482,488,484,485,517,554,548,558,542,548,542,553,547,544,543,552,538,543,554,549,543,536,552,549,536,547,546,505,490,498,498,495,495,499,508,497,493,511,497,501,502,520,530,529,531,520,516,520,526,535,537,521,493,495,495,502,485,505,494,501,500,487,498,499,491,590,536,530,533,527,530,524,534,520,530,538,541,540,540,554,552,553,511,517,526,513,517,519,518,518,520,516,523,524,517,516,522,515,520,519,551,549,550,551,555,548,540,526,527,536,534,524,535,535,532,531,533,533,530,537,530,531,529,533,537,536,530,537,532,528,536,528,529,553,558,554,557,499,502,496,490,506,505,494,493,489,526,510,517,510,512,507,547,547,551,541,549,529,530,526,530,531,534,560,547,557,553,556,563,499,503,495,511,497,501,515,508,503,509,509,505,495,461,469,470,457,482,502,491,490,493,487,501,524,538,542,541,539,543,543,528,532,538,542,543,551,533,550,492,488,492,492,477,466,468,465,464,475,449,489,503,505,530,515,530,534,531,525,530,575,574,579,586,576,576,531,544,544,529,533,539,538,541,532,524,531,529,521,526,535,533,541,545,471,481,470,475,477,484,473,472,478,459,475,524,539,535,534,524,528,532,522,529,523,542,539,544,544,550,549,546,548,551,550,551,533,542,541,548,517,520,531,518,507,502,503,502,495,502,503,508,504,497,497,536,539,539,567,566,567,577,561,563,560,560,577,563,567,525,521,526,530,533,529,531,526,531,526,520,537,520,525,524,528,523,526,526,532,525,529,562,493,496,496,494,500,517,490,505,496,507,509,501,548,557,546,532,543,538,542,563,549,508,524,515,517,514,516,523,519,558,556,563,556,551,558,561,565,568,560,557,553,562,564,566,539,541,539,538,543,536,546,542,499,494,501,499,494,488,496,496,510,502,496,497,495,489,493,492,462,467,470,467,457,470,470,473,472,474,473,430,438,424,445,430,435,543,534,549,536,533,532,539,540,529,544,541,534,541,535,563,566,579,563,564,560,565,568,578,573,567,563,574,560,568,562,551,560,541,538,546,503,483,502,498,496,497,491,484,500,496,507,495,497,502,502,500,510,508,505,504,500,500,497,535,537,544,556,557,561,549,543,562,560,560,550,539,569,549,503,514,498,502,499,494,493,493,501,499,500,541,550,548,541,557,526,542,537,547,540,547,539,532,558,507,507,505,505,510,519,502,507,516,507,554,563,563,571,561,563,568,568,571,563,571,566,569,573,494,473,470,468,474,475,472,466,477,491,498,495,485,502,497,499,506,505,502,552,544,548,544,547,546,547,561,546,542,553,497,509,516,519,507,526,512,525,485,491,466,479,482,472,479,466,479,474,487,480,476,477,468,480,474,470,462,467,468,474,488,500,498,492,499,495,506,505,505,495,532,534,528,543,541,533,510,502,517,515,520,517,511,506,512,499,506,505,511,497,498,498,506,499,506,495,502,501,543,538,542,554,567,573,566,561,559,566,575,564,559,517,528,580,580,584,591,579,583,590,587,585,579,541,531,528,534,537,531,535,524,481,481,495,489,479,480,485,481,471,466,471,487,472,490,485,569,552,552,566,557,554,561,572,563,572,566,560,569,521,529,525,516,489,484,491,485,494,489,489,491,488,488,487,480,489,490,493,475,468,479,467,470,460,470,481,475,563,541,555,543,551,520,515,509,507,517,508,514,512,520,525,505,513,512,510,517,507,505,509,501,510,518,509,535,532,533,528,522,533,524,528,540,527,529,536,533,538,531,548,540,543,549,546,543,547,530,548,545,552,538,508,516,503,597,601,588,608,597,597,596,598,606,591,595,598,596,614,599,594,598,549,558,555,544,555,551,556,557,550,546,556,477,495,491,492,490,495,478,490,487,487,482,471,477,480,475,481,480,488,569,608,589,584,531,541,544,497,526,528,525,529,526,532,531,523,522,538,533,575,564,562,559,566,572,559,568,574,566,565,521,491,487,486,493,490,491,493,500,488,500,507,494,596,584,588,595,595,590,591,590,596,585,591,582,550,559,562,560,548,545,502,518,508,500,516,515,503,515,480,471,480,478,475,475,491,481,474,474,478,480,482,481,478,478,437,437,542,542,538,523,546,545,543,548,529,544,534,543,533,532,540,535,570,571,567,559,557,573,578,567,575,579,573,561,555,552,557,553,553,541,545,552,534,522,507,500,503,517,502,517,507,514,504,516,502,503,495,499,498,498,505,499,471,488,468,475,468,477,481,489,471,470,476,471,467,476,471,556,551,569,571,559,563,565,561,555,549,560,550,559,551,560,473,486,477,472,477,489,490,577,573,554,572,576,563,579,558,495,478,483,466,485,493,482,478,470,472,493,542,548,555,567,569,561,564,572,570,566,575,570,579,569,571,570,573,527,531,541,534,535,535,535,529,519,520,518,521,528,540,533,539,538,513,515,507,517,508,519,512,519,503,516,512,507,516,509,514,516,526,530,517,520,526,527,521,526,522,529,526,524,523,526,530,523,583,584,586,582,589,571,587,578,585,584,579,578,585,589,569,585,579,509,515,521,515,523,537,542,538,552,549,543,544,552,544,543,534,533,541,550,533,539,546,499,502,498,501,500,506,502,508,508,564,555,562,553,544,554,549,541,553,492,494,493,493,504,488,496,488,493,495,499,491,485,498,494,502,498,488,487,506,511,510,515,510,512,517,513,551,550,554,542,546,507,511,519,504,509,503,511,498,547,537,548,542,549,548,542,546,539,549,539,541,541,541,536,546,549,553,530,537,529,547,537,537,543,533,511,516,516,520,514,512,518,509,512,510,507,515,514,511,523,519,518,540,532,515,516,512,510,509,517,521,513,514,505,506,507,498,504,503,506,543,545,537,541,544,545,539,541,539,538,542,540,560,558,564,526,535,536,532,533,530,529,531,540,532,526,535,572,567,560,569,561,549,562,562,560,559,504,517,505,513,502,506,508,498,495,498,516,510,518,598,591,574,596,544,540,550,527,535,531,529,524,524,526,528,528,526,524,544,539,561,551,557,549,565,549,541,546,541,548,548,546,472,492,482,471,468,470,468,469,570,562,558,553,559,560,570,559,570,557,554,555,490,476,491,492,484,486,490,486,512,504,487,492,494,467,574,574,586,576,590,590,585,589,571,587,583,513,525,528,520,535,529,521,494,493,508,481,500,490,502,490,492,497,592,544,527,519,524,515,521,518,516,521,521,519,513,518,524,529,519,559,567,569,566,563,559,565,564,549,561,570,561,550,557,550,561,554,562,553,553,560,553,517,534,513,525,524,520,518,521,511,511,508,504,505,508,509,516,509,499,498,501,502,501,505,503,491,486,484,476,475,484,485,491,478,490,479,479,491,486,492,478,478,482,492,482,486,470,488,480,484,481,480,557,562,554,558,555,557,561,556,551,563,551,501,493,504,520,515,515,521,517,502,515,508,513,509,507,548,559,549,547,556,555,558,554,548,556,552,496,505,503,503,503,495,503,509,503,495,509,500,504,504,505,536,527,524,539,538,532,535,529,537,539,529,533,535,537,532,529,532,533,535,550,552,550,539,552,560,543,543,554,552,533,546,556,471,479,488,472,472,475,473,479,549,548,542,548,539,549,559,549,545,553,548,548,552,551,556,556,553,551,546,509,485,508,489,495,485,497,491,499,483,479,490,468,465,459,534,551,542,546,534,544,543,541,537,568,543,551,541,537,516,519,516,520,516,520,522,511,511,519,528,518,517,537,556,558,552,553,546,548,558,548,542,563,542,558,539,528,524,529,520,533,523,520,526,533,530,528,525,528,528,502,512,508,514,507,512,508,505,519,541,538,544,551,543,547,539,539,541,500,501,501,495,502,498,493,499,534,533,535,531,532,543,539,534,530,535,532,523,543,534,536,527,533,529,534,536,538,545,545,543,540,536,540,542,555,543,542,541,545,544,551,548,554,555,530,546,552,554,492,506,508,498,504,509,480,459,464,464,458,462,469,458,457,463,463,567,556,564,552,571,571,550,498,498,491,510,492,501,498,493,497,496,495,491,499,556,538,548,570,558,552,558,505,513,509,507,521,500,504,510,497,509,484,478,481,480,482,475,486,477,476,478,478,476,475,483,474,478,475,488,490,489,494,493,494,496,488,496,490,494,489,488,484,472,470,468,472,470,470,472,470,472,462,482,471,472,473,473,548,541,549,546,564,559,533,530,559,558,549,539,537,548,548,546,545,553,558,484,554,547,553,544,553,548,563,551,550,555,554,553,551,548,549,566,554,537,544,554,538,470,533,527,512,529,538,538,536,538,534,521,530,533,526,525,540,533,540,531,535,531,560,550,553,478,467,488,479,468,480,468,473,542,539,540,536,537,541,533,546,550,544,541,543,531,529,522,518,518,517,520,520,519,524,523,517,559,563,563,555,551,563,557,556,553,555,565,562,557,563,530,522,526,526,528,513,530,527,487,489,504,501,503,488,501,505,496,507,489,495,495,494,494,592,596,592,580,596,607,604,605,598,602,589,588,580,587,585,600,587,581,590,590,535,530,528,505,511,521,508,520,508,497,506,504,510,508,505,561,569,553,572,575,549,559,575,566,493,502,490,491,501,485,489,485,487,497,503,492,497,572,559,548,561,556,564,562,548,560,553,566,558,565,561,557,553,559,512,511,507,514,507,520,502,508,500,518,511,519,508,508,522,469,464,473,475,468,475,462,460,456,457,549,539,541,543,541,549,558,545,542,556,523,522,522,522,525,514,526,521,523,520,521,523,517,523,553,542,552,552,539,549,548,557,562,550,551,523,512,518,510,521,515,518,514,522,524,517,516,514,499,499,498,497,499,498,492,499,507,500,495,469,486,481,480,473,453,459,505,496,487,500,490,488,487,489,497,496,533,530,525,518,522,525,532,524,525,525,521,532,526,525,522,530,530,530,524,526,525,549,543,552,556,554,560,553,550,556,491,486,491,484,494,484,492,501,488,484,487,486,484,475,476,474,466,467,473,475,467,472,461,472,477,475,467,460,471,475,545,552,546,542,556,548,545,551,556,549,554,550,512,516,516,510,506,514,510,510,524,504,502,512,510,507,505,514,504,507,507,509,505,509,505,514,506,505,509,507,529,532,527,534,532,537,527,528,539,521,539,537,532,531,529,518,511,512,513,513,523,517,517,515,514,524,522,516,517,510,530,524,528,528,527,578,560,567,577,570,566,570,560,562,566,568,574,554,526,524,523,524,518,551,565,546,552,552,562,562,565,567,564,487,485,552,557,566,537,540,557,551,548,541,488,481,486,490,506,480,491,497,492,491,493,487,586,587,586,583,555,503,506,505,498,511,499,498,511,520,531,519,528,522,538,541,540,542,533,541,543,546,543,542,552,541,534,541,541,539,541,535,549,540,549,552,480,473,475,475,473,473,485,481,472,455,445,453,439,446,449,442,449,451,533,532,535,529,527,528,527,520,529,532,541,521,533,535,538,533,537,539,559,568,565,570,571,568,568,571,569,571,569,570,568,552,532,532,508,472,493,512,510,507,508,520,510,501,509,504,572,556,550,544,552,553,492,497,495,495,504,503,499,481,501,514,512,528,510,512,519,517,521,522,551,538,533,535,558,538,537,542,543,549,534,548,534,547,543,511,518,519,516,516,514,506,522,522,520,517,568,566,571,571,575,569,556,575,563,571,568,585,575,573,567,555,563,571,553,512,534,521,502,512,521,516,516,515,483,490,487,492,494,483,488,488,492,491,492,496,495,500,495,499,496,556,552,558,546,554,555,551,549,542,556,544,551,550,550,549,539,521,526,532,464,462,458,461,551,553,554,550,556,561,557,558,557,564,548,554,498,494,505,497,505,494,498,493,500,505,491,483,499,496,485,483,487,507,508,498,489,564,569,558,548,570,576,555,552,534,531,534,528,528,529,529,530,532,531,533,532,532,528,536,530,568,557,567,566,565,563,561,567,558,554,569,509,482,479,491,501,496,498,496,496,500,496,541,530,536,562,559,566,561,561,558,558,555,561,484,491,502,485,492,501,504,496,483,492,494,462,466,465,471,462,459,464,466,464,553,550,540,551,558,554,550,543,540,556,566,545,553,546,503,493,508,503,497,496,494,490,500,491,502,499,550,536,544,547,550,545,545,534,538,558,523,516,515,517,522,519,517,516,562,568,560,555,566,561,576,566,561,549,553,542,540,544,553,486,503,502,506,490,497,506,500,500,505,498,499,514,495,506,506,505,508,494,506,506,504,574,568,567,572,563,566,560,554,573,570,546,559,543,549,547,553,562,558,554,549,485,502,493,496,490,491,496,505,507,488,475,487,489,488,488,481,552,581,585,570,571,580,576,560,572,506,519,502,463,455,466,465,472,465,470,467,473,456,458,467,463,451,464,464,461,461,456,465,472,464,478,486,482,490,488,490,486,479,490,484,486,484,505,506,507,533,530,535,540,542,535,542,539,566,568,559,572,575,577,571,574,545,552,544,551,540,545,546,548,546,542,497,506,503,503,489,496,492,486,499,496,498,504,507,508,505,496,498,515,512,520,509,511,553,548,551,552,495,499,500,496,493,499,496,488,494,483,506,503,509,501,511,504,534,543,538,534,534,538,548,530,538,537,535,545,535,540,541,539,537,579,565,577,563,574,563,560,572,560,568,531,538,535,533,532,542,530,534,533,537,520,517,520,516,511,524,516,514,545,546,546,543,546,546,548,540,547,549,553,547,542,560,565,580,568,556,568,555,561,568,572,584,568,571,556,510,509,517,489,509,508,511,499,507,503,488,509,505,509,503,479,478,477,482,483,475,479,489,482,486,477,494,478,486,487,474,479,485,490,556,558,552,552,561,564,553,563,559,550,512,519,504,511,498,516,471,471,470,467,465,475,477,440,545,534,525,532,536,557,553,549,548,554,551,552,537,546,541,560,544,546,464,474,457,464,463,448,466,471,463,466,470,463,535,525,539,537,540,528,536,526,528,523,538,547,568,582,563,555,559,570,561,542,535,538,547,536,537,579,555,574,574,571,493,502,497,495,508,499,493,504,505,501,510,497,510,492,506,500,491,491,496,495,491,488,485,563,557,570,578,571,572,574,580,507,511,509,488,507,488,506,499,506,494,444,431,439,435,428,428,443,437,439,452,442,442,455,533,532,515,537,535,531,539,521,534,539,542,547,547,537,531,543,538,550,541,487,501,505,511,507,503,503,582,561,557,555,574,552,562,570,574,554,561,564,566,563,567,558,560,515,505,513,518,527,525,508,485,479,485,472,477,466,486,475,492,488,484,486,485,477,474,592,607,609,600,595,589,532,540,534,536,542,533,533,536,536,544,540,540,538,542,529,538,544,520,567,555,564,566,557,555,562,558,541,545,475,489,487,493,492,473,493,493,440,453,446,526,525,529,523,532,515,510,512,517,509,514,515,511,521,533,530,529,571,571,572,566,565,542,546,547,548,553,544,556,545,555,515,514,529,530,485,488,497,491,489,485,485,495,497,485,492,491,491,458,462,455,452,455,449,460,458,462,460,460,515,504,510,514,498,499,505,504,493,503,496,496,502,510,554,549,563,558,562,551,569,548,548,555,557,560,561,502,504,498,488,488,503,498,504,494,482,495,488,495,500,505,502,496,497,499,509,491,494,496,494,496,496,494,507,509,510,536,530,539,538,531,537,540,561,567,574,577,558,558,558,525,535,528,526,523,531,531,531,532,530,519,526,514,521,515,514,516,519,520,522,522,524,520,576,583,582,591,594,538,532,530,532,527,534,537,532,534,529,533,525,568,570,537,560,571,556,555,577,556,568,564,562,577,564,463,480,485,491,555,550,549,573,561,545,549,541,542,556,543,548,568,547,552,551,551,566,552,539,508,497,510,486,502,508,501,490,507,505,504,504,500,501,516,507,547,547,535,540,540,553,533,520,517,524,524,519,516,509,497,544,549,532,537,535,538,541,534,580,563,571,556,570,561,568,526,528,519,517,517,519,557,553,549,557,555,545,555,558,555,547,557,489,492,493,482,498,499,490,497,499,496,507,494,499,498,491,491,556,557,551,536,550,553,546,557,539,548,547,540,565,498,522,502,504,519,507,516,517,524,503,527,472,480,478,465,465,466,464,466,467,474,471,479,477,477,467,473,478,469,473,470,474,469,482,480,475,472,475,472,473,477,477,471,476,472,478,469,478,471,467,568,567,572,573,471,454,457,469,461,465,464,476,464,521,518,527,520,527,513,523,508,522,514,522,527,530,531,534,533,528,528,523,534,532,536,532,527,538,537,534,523,540,569,505,514,514,593,569,563,572,572,580,568,581,577,579,573,568,568,580,539,542,540,542,544,542,550,545,539,541,544,544,540,541,530,532,534,529,528,532,532,531,532,535,525,517,529,530,527,526,522,525,521,522,516,530,525,599,596,586,600,580,594,588,590,540,551,544,542,545,532,536,538,550,542,544,545,533,547,553,570,567,566,522,518,527,503,512,511,515,511,510,510,514,513,502,508,511,480,488,480,487,478,487,492,477,489,484,484,481,489,493,497,496,492,491,452,460,455,455,451,463,463,476,500,482,472,483,486,482,480,482,572,597,580,563,569,584,586,581,549,502,489,500,499,462,457,468,469,468,470,473,466,453,474,537,530,535,530,538,531,534,542,527,537,532,523,538,538,529,527,531,558,562,567,574,570,566,567,563,567,564,554,501,504,512,519,504,507,500,505,516,496,507,495,503,509,529,530,531,535,532,524,521,531,529,530,520,514,520,513,519,545,532,537,537,544,539,532,540,533,532,555,544,555,544,546,542,491,504,508,514,515,498,494,501,509,512,503,519,506,479,477,489,472,481,479,477,473,480,463,459,453,463,462,465,455,459,459,456,454,457,449,458,458,455,484,475,474,480,479,485,488,483,486,482,486,502,509,504,508,497,503,500,502,497,503,519,530,522,519,519,522,517,521,525,521,525,522,524,525,519,520,518,523,519,527,525,518,545,546,550,540,541,547,549,539,533,545,546,557,556,539,553,555,556,562,550,556,524,474,482,487,489,481,490,485,479,489,484,482,485,478,477,475,453,461,459,462,464,508,497,531,528,535,529,526,524,525,508,503,510,513,561,559,574,559,550,547,552,554,561,565,536,494,497,514,516,473,469,472,471,472,464,482,473,476,475,481,476,476,479,481,477,470,471,483,479,475,462,554,562,550,558,541,535,561,559,552,511,520,512,511,511,517,511,510,504,499,512,514,513,519,515,506,496,507,504,505,480,473,479,473,465,472,473,474,477,465,470,470,470,467,455,474,468,472,503,492,488,487,495,486,493,493,493,491,490,545,556,550,554,547,556,557,537,544,543,540,481,443,445,447,435,448,440,517,521,518,519,519,521,522,531,523,520,530,533,516,524,521,519,527,532,531,530,537,573,568,549,565,571,558,506,510,532,541,540,548,572,562,559,516,517,579,576,589,575,593,588,587,578,577,545,532,529,544,535,529,535,527,575,563,557,568,549,573,523,443,439,445,442,441,456,445,456,451,435,453,439,442,454,544,522,533,556,550,542,559,552,548,548,553,551,548,564,545,542,547,547,543,547,558,546,541,555,560,550,542,551,548,554,543,550,548,501,499,495,500,511,497,491,507,494,512,520,530,517,517,516,511,525,517,516,507,546,547,549,554,529,523,527,525,527,526,527,524,527,537,544,539,546,532,514,513,518,520,507,513,514,518,515,518,515,510,517,516,502,518,520,515,512,509,510,506,502,517,523,521,516,522,525,518,524,521,524,525,531,535,532,524,532,532,533,540,535,532,532,530,531,525,524,556,560,568,568,559,521,526,530,522,521,532,526,515,550,561,565,541,549,566,502,496,491,484,490,506,498,529,550,525,523,529,524,527,530,524,531,526,521,527,522,522,529,575,562,556,555,559,569,549,558,562,560,492,489,488,494,494,489,493,488,491,471,476,475,486,471,467,473,473,484,482,470,477,471,480,480,470,602,606,592,597,534,543,536,551,550,540,540,543,541,547,550,538,552,526,528,533,526,511,507,503,511,513,506,506,510,507,508,534,540,547,542,543,547,535,537,540,534,536,529,541,543,551,546,550,551,558,543,549,556,554,561,551,547,545,554,542,503,504,487,489,494,472,469,470,472,460,463,468,465,467,447,463,551,555,552,551,547,524,516,531,521,536,532,526,537,523,522,527,532,528,521,472,481,500,481,481,489,495,473,489,550,554,549,549,550,548,560,540,539,548,553,542,544,484,482,473,481,473,479,485,466,478,475,478,482,473,494,501,495,495,509,502,492,495,502,563,565,571,571,563,563,550,557,562,556,563,527,519,527,506,526,525,537,518,472,469,473,477,480,476,488,481,492,483,481,489,492,586,575,561,585,584,587,580,591,586,579,577,586,585,584,576,579,581,463,475,492,473,475,489,483,479,520,519,512,509,511,520,518,539,530,530,533,533,528,528,530,565,558,554,561,562,569,561,576,558,569,564,526,527,531,528,535,538,539,535,524,532,540,527,527,529,530,536,518,519,515,522,520,519,517,516,520,515,547,542,552,544,557,557,552,544,550,545,556,549,554,531,541,540,543,536,532,540,540,543,538,538,542,552,536,588,579,580,596,577,573,572,575,569,582,579,580,576,583,565,578,580,532,525,530,522,481,485,483,485,486,484,482,480,452,459,464,458,459,458,461,463,459,465,460,453,461,458,466,461,452,462,467,451,459,459,459,465,543,542,549,546,548,537,551,550,553,553,544,569,544,550,544,499,512,523,504,521,509,527,515,513,512,535,519,494,493,501,494,490,477,466,475,464,472,464,469,470,471,477,471,472,485,504,500,533,521,526,531,534,544,536,545,545,549,537,553,548,541,540,544,533,547,545,546,564,565,551,548,545,547,550,517,527,527,516,507,478,489,488,485,487,487,490,486,431,443,450,444,537,522,528,533,524,524,529,533,533,523,529,534,547,538,543,546,547,538,539,538,542,539,550,556,547,548,543,551,546,552,547,540,545,554,547,509,494,503,508,508,503,503,505,501,507,510,510,483,492,490,493,488,487,524,519,512,522,523,511,519,516,521,573,583,587,572,584,581,583,581,571,569,587,589,574,572,595,588,575,577,574,588,588,544,543,540,551,546,540,525,535,530,535,537,526,524,518,521,521,525,525,523,527,522,530,533,525,527,524,528,527,560,563,558,563,562,564,564,564,564,568,568,559,558,543,547,556,546,560,545,513,497,499,497,488,494,494,506,500,492,494,510,497,497,492,509,494,503,503,495,497,503,494,499,501,490,494,498,578,568,570,585,580,579,588,562,591,506,502,505,510,499,502,496,503,512,499,499,512,500,493,502,498,510,484,500,504,565,564,564,550,571,565,565,566,565,565,566,550,562,575,459,484,492,485,475,485,471,492,483,486,470,471,497,477,470,487,486,474,482,477,491,578,555,553,567,571,572,567,563,563,561,564,559,587,564,521,522,512,521,520,518,520,518,508,483,485,488,484,482,483,486,487,490,456,470,469,468,457,466,465,464,465,466,466,468,474,471,465,462,451,463,458,445,457,467,590,575,592,594,575,580,582,585,592,588,549,548,546,542,549,543,554,546,491,494,500,495,495,496,495,512,497,491,498,511,515,493,506,497,506,502,505,539,542,533,537,531,514,526,536,544,542,540,537,541,542,540,540,526,532,533,535,532,558,563,570,580,562,567,560,563,563,519,497,499,502,501,512,499,504,506,503,503,491,504,498,503,487,483,488,484,483,484,487,494,492,499,501,496,495,490,559,570,560,557,562,573,560,561,562,559,552,562,557,554,549,545,564,558,552,545,558,552,529,525,515,522,524,523,518,521,534,509,502,505,507,507,515,497,502,489,498,508,504,512,496,503,498,504,503,503,508,498,500,498,508,480,474,475,455,459,467,470,536,528,545,536,533,549,541,541,541,546,540,539,542,540,548,549,548,538,545,546,554,542,552,540,561,561,549,549,556,548,553,555,537,485,494,537,544,539,551,535,542,543,537,543,531,540,542,532,536,542,537,545,537,553,540,543,552,547,538,548,546,552,543,547,541,550,544,531,535,529,528,532,526,533,536,539,522,534,530,528,529,528,530,553,566,573,561,564,560,573,564,560,569,565,565,563,553,565,523,515,506,507,523,523,507,514,511,512,518,518,480,487,484,489,486,488,489,489,490,495,493,487,492,483,492,490,495,491,496,493,514,514,505,510,508,515,517,502,515,505,509,508,504,507,511,509,512,513,549,548,556,548,555,545,555,562,558,559,554,562,572,558,556,528,518,528,521,523,528,536,519,521,513,522,524,526,508,513,510,504,506,505,502,508,497,505,507,503,506,508,497,475,489,480,492,487,495,486,486,461,465,481,488,482,484,481,483,477,485,480,479,487,493,479,557,570,552,576,567,587,489,499,494,475,588,578,590,574,576,580,527,529,535,520,537,532,527,526,523,532,540,525,556,551,568,554,562,554,572,565,556,559,551,557,480,509,494,491,497,505,489,492,499,494,459,460,454,460,465,459,458,457,506,516,511,507,509,515,494,514,508,503,535,541,538,544,535,541,541,549,513,507,502,510,511,508,512,513,511,521,525,531,530,527,522,524,595,579,574,569,579,575,564,525,535,525,521,523,530,536,522,523,519,523,525,513,530,523,525,579,592,583,584,581,538,537,532,539,541,529,540,533,539,542,535,543,544,535,511,505,511,512,502,498,501,512,501,507,502,508,503,512,508,512,514,503,511,494,506,503,511,569,562,561,564,561,566,563,563,565,562,563,561,548,549,554,556,553,553,559,558,554,544,562,490,498,501,500,506,483,493,487,498,497,504,460,464,461,465,457,468,458,474,470,466,468,458,459,463,537,541,537,532,531,535,525,540,532,525,536,532,536,529,529,536,532,535,535,533,533,527,529,538,532,538,548,563,566,560,572,564,565,561,566,573,532,534,534,544,538,528,538,514,499,497,509,505,500,509,515,500,506,491,501,497,503,500,532,534,528,533,526,527,524,527,531,522,527,534,535,528,530,523,529,529,524,525,537,538,541,553,538,548,509,519,516,512,519,515,512,504,516,516,512,522,508,539,531,526,528,528,529,524,525,529,555,546,544,483,501,504,498,502,513,498,467,458,458,460,471,472,453,460,457,463,452,453,458,468,460,452,472,457,460,467,535,471,469,468,470,483,489,481,473,485,479,468,479,480,476,473,501,512,500,486,504,523,550,555,555,552,562,565,564,566,556,550,561,562,490,492,490,488,497,504,504,492,481,490,504,486,461,462,460,459,451,454,476,466,468,470,540,541,532,547,534,534,534,542,539,539,541,542,526,537,540,535,537,539,542,546,484,491,479,494,570,538,548,543,533,532,531,527,525,523,534,527,536,529,526,515,521,522,519,530,525,547,559,559,553,555,562,557,554,559,557,556,554,556,563,545,526,524,528,534,532,530,528,529,527,532,525,524,466,475,482,472,490,476,476,472,473,484,479,488,513,501,503,523,505,506,507,505,497,512,518,566,557,557,563,551,552,554,573,490,493,495,499,486,492,492,502,476,457,466,467,463,458,466,461,537,538,538,528,536,534,535,531,537,528,533,542,537,531,535,537,532,541,555,557,563,564,566,563,562,562,565,576,572,536,528,548,526,525,527,525,520,529,535,531,538,526,534,532,528,531,559,558,562,559,569,510,504,508,503,522,518,523,512,516,518,516,484,487,481,484,479,486,492,495,535,531,536,540,535,537,529,529,528,527,523,528,526,524,531,530,526,552,543,554,544,543,548,556,520,470,473,464,463,461,463,469,440,440,444,447,441,436,431,442,430,442,454,431,543,545,533,544,550,547,539,542,548,548,547,499,496,490,498,495,502,503,494,504,515,494,523,520,477,495,514,500,504,479,478,475,473,480,444,445,456,448,457,444,487,503,480,490,578,580,572,568,566,585,558,523,527,522,526,524,518,519,519,515,532,538,518,521,524,530,530,525,488,484,492,470,468,462,454,459,458,452,457,452,459,461,457,463,461,466,464,456,463,469,460,457,464,524,540,535,535,552,553,545,545,553,547,549,556,542,563,552,557,550,548,560,544,553,548,563,555,567,540,560,564,549,556,511,506,502,498,513,504,493,497,496,499,519,524,520,519,517,522,525,515,559,550,558,559,575,493,486,487,492,492,495,499,461,459,468,458,449,459,463,457,464,447,466,536,532,533,531,541,531,526,541,532,530,534,531,526,535,538,527,526,536,526,529,533,530,533,528,534,529,526,529,531,532,532,529,561,555,560,565,562,560,564,558,562,570,537,541,532,536,536,538,538,542,542,539,536,543,543,539,541,531,537,536,548,543,536,544,550,548,548,552,550,550,557,552,566,547,551,553,558,558,548,554,549,563,552,551,553,554,553,559,509,497,488,502,508,505,506,499,508,510,504,509,512,515,575,561,568,551,565,561,562,559,558,564,562,551,556,525,512,523,521,510,516,513,522,516,512,529,509,524,522,517,464,470,467,478,470,477,472,477,486,465,462,583,578,590,576,588,592,583,583,578,562,581,579,577,527,515,529,529,521,523,516,522,515,521,518,522,578,594,584,583,570,579,599,583,586,574,581,587,542,548,551,536,582,583,572,576,576,564,565,521,527,521,526,532,519,537,517,533,536,519,531,517,520,522,515,507,516,484,485,491,497,495,496,494,484,491,492,482,492,478,479,471,480,476,476,477,474,469,469,476,481,472,496,499,500,499,521,527,528,530,523,525,528,524,526,569,585,582,581,579,580,595,591,588,590,574,532,530,531,538,529,532,528,531,552,562,572,567,559,556,556,556,558,565,562,559,560,527,529,530,533,521,529,531,530,532,536,529,525,530,537,529,547,543,535,544,526,526,519,521,523,522,525,519,518,525,521,520,519,518,539,542,547,539,550,549,545,503,493,502,505,499,506,499,497,506,500,503,538,550,552,544,538,535,541,538,540,564,572,561,575,568,572,561,556,575,569,547,539,532,543,540,537,540,534,539,548,540,542,535,538,531,536,540,537,532,533,517,511,503,506,512,505,511,567,566,562,557,554,562,551,555,564,565,525,517,526,518,542,520,518,512,528,518,514,520,515,517,523,487,486,485,489,491,496,505,497,495,501,497,499,495,497,507,499,499,498,503,508,502,508,509,508,507,509,506,506,502,502,536,545,539,543,538,538,541,540,540,542,532,559,549,561,572,565,552,561,568,568,561,568,563,566,564,519,567,566,499,498,500,507,540,544,538,539,548,538,534,540,541,544,544,546,547,570,566,572,551,542,552,538,552,545,550,554,547,545,545,552,552,549,542,530,525,519,530,521,517,479,488,481,484,480,479,482,481,485,491,480,487,480,507,493,505,495,495,498,502,497,491,497,563,560,565,561,563,561,564,561,560,562,573,566,555,554,561,565,553,553,564,557,550,547,549,549,548,551,558,551,543,547,554,505,495,491,493,491,489,486,487,495,483,481,483,476,466,479,473,582,548,561,548,562,548,522,518,523,514,516,511,498,503,509,496,503,501,502,502,503,498,506,504,466,471,465,478,462,479,455,439,436,440,439,451,486,531,540,555,556,547,543,543,494,498,497,489,505,464,460,465,460,459,459,461,462,465,453,459,465,462,453,451,463,459,467,469,438,432,515,525,523,521,514,523,514,522,517,519,518,519,545,544,541,544,539,552,554,552,544,544,552,546,505,514,491,509,493,508,509,507,503,498,465,461,470,466,471,434,539,520,530,525,528,525,523,528,528,530,526,516,514,517,514,520,505,515,509,515,509,506,515,514,512,514,511,530,534,529,529,529,532,529,530,532,557,565,564,537,526,521,532,532,533,537,524,532,526,527,536,511,505,574,565,567,569,560,564,569,563,565,554,569,573,517,524,512,520,518,531,518,530,525,510,525,498,484,483,485,489,488,494,491,489,497,492,494,511,511,500,514,509,509,505,563,562,564,557,545,570,557,559,490,484,487,487,496,496,488,488,483,484,471,471,467,460,464,558,551,544,547,512,516,566,561,559,553,558,555,561,555,551,545,555,559,559,547,566,552,548,554,553,562,524,527,529,516,521,520,509,522,531,525,531,517,520,517,520,520,518,523,514,521,528,514,527,521,532,531,498,502,503,508,507,511,496,497,495,494,494,489,501,450,463,456,451,470,453,463,456,455,461,460,465,450,468,457,460,461,479,481,475,473,478,483,482,470,483,474,582,572,581,566,594,486,479,485,493,502,472,547,532,553,544,550,552,552,551,555,554,551,557,547,555,558,553,555,553,560,556,545,498,497,492,508,498,496,492,490,496,495,490,466,440,459,451,461,452,449,444,455,459,442,453,446,562,563,557,547,543,549,557,553,550,548,549,555,549,543,551,546,549,515,496,513,497,502,499,509,506,505,500,497,499,498,495,497,493,505,497,499,500,488,498,492,543,555,556,521,532,532,535,538,537,535,517,518,519,512,515,525,520,514,516,531,528,522,535,532,523,533,527,530,523,524,520,525,575,552,547,551,555,558,557,571,553,548,543,556,542,549,546,529,525,527,518,529,522,522,522,528,525,524,520,524,547,558,539,549,551,541,540,544,540,550,544,553,533,531,539,535,552,549,496,502,506,507,515,501,473,486,485,484,486,486,476,485,483,477,463,468,470,469,474,469,466,475,478,476,480,471,472,473,472,481,471,471,477,458,471,466,455,452,468,468,465,459,463,468,471,457,462,602,559,549,553,540,547,555,544,536,550,534,544,491,500,490,497,492,501,546,536,542,548,546,543,542,540,553,555,553,555,564,555,561,558,565,557,549,539,548,557,557,565,494,492,499,496,518,502,506,501,501,500,492,453,452,454,451,458,460,469,452,456,518,519,516,509,505,514,510,518,550,565,550,573,553,561,560,561,565,496,493,495,514,502,508,494,499,495,499,503,503,509,516,509,509,509,503,514,510,512,511,513,504,507,539,539,544,547,549,542,549,539,542,524,526,520,524,526,521,553,567,554,558,552,551,554,554,557,530,531,527,512,527,520,523,524,519,554,549,558,545,557,550,547,548,537,552,542,525,528,529,530,524,529,525,537,524,531,524,527,525,517,526,530,526,521,529,525,536,563,569,567,570,567,552,544,553,554,508,514,504,511,500,499,510,518,514,512,503,509,507,505,510,515,492,504,508,558,553,571,558,558,562,560,567,562,563,566,568,556,566,478,479,500,500,503,486,498,493,485,496,570,567,575,555,563,576,577,508,510,513,515,516,503,566,561,555,562,549,564,556,562,557,553,560,511,500,514,514,509,508,505,508,520,506,469,470,468,496,486,489,488,550,552,559,554,561,553,551,549,557,555,559,557,554,553,558,560,555,529,525,522,526,530,529,523,528,521,531,532,527,529,480,476,475,494,474,490,470,473,553,547,555,556,545,555,549,548,551,543,551,557,546,547,553,547,554,554,544,550,553,545,547,526,527,531,530,528,536,525,530,534,526,526,528,526,563,555,566,552,545,561,551,556,561,559,500,500,499,501,504,503,505,497,497,505,505,511,500,509,496,495,501,497,503,492,495,495,511,497,500,504,504,502,554,553,543,560,550,541,548,545,544,538,547,550,548,553,559,568,567,560,563,563,562,567,581,587,564,559,565,558,571,522,510,514,516,521,519,517,517,507,523,502,529,452,452,455,468,464,462,460,461,463,451,463,462,452,456,445,460,546,554,541,552,547,553,542,538,558,562,551,484,485,472,473,553,547,551,550,548,551,554,553,546,550,550,558,553,540,543,540,551,543,554,557,551,561,552,550,552,557,539,554,555,552,508,498,474,487,470,486,477,479,483,543,549,555,559,541,554,561,548,500,490,499,504,495,488,502,495,504,502,499,504,493,498,499,491,504,500,574,552,556,556,559,563,549,545,550,553,554,553,561,554,552,560,553,559,550,516,511,514,523,522,529,516,508,529,515,525,519,503,461,480,472,473,476,480,478,477,478,474,478,476,480,487,476,483,480,487,484,485,489,476,475,470,598,598,600,597,599,594,593,598,542,544,558,563,553,561,559,570,564,554,552,550,556,499,512,495,504,505,512,500,507,490,439,455,451,455,456,458,453,458,463,461,446,458,460,460,453,474,475,475,466,466,469,466,467,482,579,587,567,557,560,585,578,552,563,570,563,568,582,552,557,569,551,560,510,507,505,499,506,508,555,551,538,549,567,564,551,556,574,548,550,554,551,553,545,562,473,506,505,504,484,498,510,486,490,452,456,466,459,457,473,460,448,449,471,457,525,505,511,517,514,517,503,505,512,510,546,537,542,539,553,538,540,545,546,540,535,501,494,489,491,492,506,594,596,594,600,591,547,539,514,507,520,501,507,508,509,508,518,514,506,514,508,505,503,561,550,568,554,566,563,546,556,539,558,550,557,554,561,553,524,511,508,505,502,507,507,500,510,505,523,538,534,522,539,530,530,537,533,519,492,591,585,609,584,596,604,611,608,593,595,584,603,588,602,604,601,553,558,558,550,558,559,554,558,493,486,496,491,490,492,485,486,583,571,563,570,571,581,569,565,564,574,569,566,550,560,569,498,488,507,492,505,501,513,515,453,465,464,463,441,556,576,577,579,589,581,579,586,577,591,590,593,583,591,529,525,525,524,515,519,597,587,582,576,585,543,548,559,550,550,546,537,544,503,498,501,489,481,496,483,486,500,472,498,487,483,489,466,470,555,563,561,548,550,555,557,562,556,554,563,500,505,491,496,511,494,511,492,456,453,453,448,455,458,454,503,488,485,487,498,487,480,484,495,488,489,492,479,489,491,555,568,567,547,555,557,564,579,554,561,524,515,519,516,529,515,520,526,523,519,516,522,529,528,532,533,530,536,533,529,524,524,531,576,577,549,567,492,486,507,500,501,494,501,496,492,552,553,558,544,547,557,560,516,501,515,496,512,506,507,523,504,506,502,493,513,498,496,482,481,486,485,479,486,485,480,478,478,477,479,469,473,480,480,471,471,470,473,474,475,478,463,454,542,541,544,549,547,543,542,551,539,536,538,575,561,576,571,565,574,574,568,565,548,543,539,547,546,541,536,543,544,543,537,515,524,518,520,519,530,528,519,499,504,496,495,494,496,500,501,496,507,497,593,538,542,540,548,536,537,537,539,567,559,563,557,556,564,505,513,495,502,485,501,503,509,475,475,475,484,482,479,490,476,491,480,475,489,471,561,559,551,571,555,546,549,567,563,482,498,480,482,480,479,497,480,553,546,548,552,549,553,556,551,544,564,559,548,555,555,552,551,557,549,566,551,481,481,544,549,540,555,538,544,543,533,549,558,544,557,542,554,534,540,541,545,533,554,546,549,516,517,512,528,513,528,520,518,512,509,550,559,572,545,572,555,566,564,566,570,558,563,569,579,562,552,552,520,511,508,509,505,512,514,496,510,516,509,515,509,488,505,493,498,499,502,495,497,535,497,490,486,487,483,493,479,476,489,496,480,486,470,489,507,495,488,499,494,494,491,499,496,497,493,486,487,497,487,490,503,498,494,493,529,540,526,540,530,534,544,539,533,531,541,495,503,508,490,505,501,507,497,496,506,550,547,554,552,544,540,537,551,543,560,570,578,573,554,565,558,563,562,565,565,557,560,571,569,563,569,529,531,528,525,527,519,515,526,519,529,530,514,521,529,526,529,522,549,560,531,555,555,546,556,519,509,505,517,506,515,504,504,515,506,509,529,511,506,506,553,575,556,556,567,565,562,558,558,547,552,554,567,564,571,568,554,568,556,548,531,518,525,527,513,505,511,509,505,481,482,480,484,482,483,483,483,485,485,476,485,510,510,513,506,505,545,551,550,542,547,544,533,518,551,548,531,534,525,530,537,544,522,510,520,514,512,547,539,527,531,539,533,532,538,531,535,535,532,534,527,525,522,528,529,526,527,528,545,552,554,550,565,553,557,559,557,562,559,557,516,521,516,527,521,513,511,485,479,474,478,483,469,456,458,456,465,463,466,456,464,466,460,459,457,466,474,461,463,456,449,462,467,442,443,459,463,451,457,463,467,454,461,542,543,535,532,528,549,527,527,519,516,526,528,533,522,523,519,547,536,537,544,543,546,537,544,533,538,535,549,553,540,546,497,492,510,481,501,498,489,502,494,510,504,471,478,477,476,475,464,473,474,472,510,499,510,506,506,501,501,502,500,510,508,507,510,498,505,496,541,480,457,440,440,437,439,428,447,441,440,440,446,519,524,526,518,525,517,508,525,520,526,530,527,534,526,536,529,534,525,534,524,529,536,533,534,564,573,568,574,552,547,552,544,549,549,558,554,547,543,520,527,504,518,512,521,512,516,510,535,515,515,510,521,503,503,503,505,504,499,497,483,476,472,485,485,489,487,473,478,471,469,469,470,464,461,474,474,448,462,455,458,454,460,455,458,454,462,462,450,458,466,457,461,556,549,547,519,514,513,518,524,518,515,515,516,524,541,543,537,548,543,529,546,530,499,504,497,509,501,495,503,515,509,500,498,511,464,478,486,476,463,465,459,464,470,467,463,454,490,480,481,481,478,484,479,477,487,478,482,476,477,477,474,481,482,488,484,483,482,487,484,479,485,475,491,475,478,482,488,497,495,495,491,494,493,485,492,509,501,496,503,500,499,506,502,501,500,475,475,482,466,465,468,472,470,562,558,562,561,555,561,568,552,554,552,555,549,545,541,546,547,478,471,481,475,476,468,455,471,466,454,463,469,466,458,476,466,592,607,599,588,587,583,582,587,585,580,591,596,583,593,499,532,557,513,529,507,525,523,531,512,492,496,483,487,547,530,519,520,526,524,528,525,547,552,555,560,561,558,551,562,548,547,558,567,556,564,566,553,543,545,548,494,499,505,496,499,499,490,506,515,518,516,511,512,509,515,513,508,514,505,500,543,548,542,555,542,545,543,547,549,541,540,547,551,543,536,545,544,542,542,533,541,552,553,543,543,543,550,555,542,551,545,507,495,496,489,496,468,480,470,479,474,471,472,477,472,510,489,508,503,509,503,503,500,505,501,516,504,503,507,505,507,510,505,559,537,554,541,546,534,542,541,553,489,497,488,497,496,483,491,489,493,496,491,498,503,494,495,498,491,505,489,493,498,538,539,540,518,525,523,526,518,528,520,589,540,538,533,542,540,563,559,550,570,559,557,548,561,570,457,462,477,463,472,493,481,487,483,477,482,473,470,477,461,468,545,564,559,557,558,566,546,568,563,546,564,526,528,536,540,520,525,526,526,530,527,524,526,527,547,561,569,557,546,566,562,554,542,557,556,551,551,520,519,514,483,475,484,472,475,478,472,482,484,482,486,490,492,483,483,490,488,493,475,490,480,485,484,488,487,576,568,565,562,573,554,554,557,574,556,574,573,553,574,548,577,566,510,529,512,528,526,524,519,523,526,524,527,522,518,530,520,524,517,519,526,521,529,524,520,515,535,523,524,531,511,519,529,534,527,528,524,532,507,510,520,511,520,511,564,565,571,564,557,523,517,534,520,523,517,525,528,522,524,515,515,502,511,511,500,503,503,499,500,498,504,497,497,506,496,500,497,498,480,489,486,485,487,486,491,479,490,488,491,491,487,478,468,470,469,432,439,442,436,446,444,474,492,482,479,484,478,470,485,487,489,479,483,518,522,526,516,525,523,565,586,585,543,554,550,558,545,543,554,549,542,487,486,492,483,484,489,469,479,469,478,485,470,477,481,467,481,476,565,577,567,488,484,490,483,491,470,479,476,475,479,478,475,473,488,486,480,562,547,559,553,548,551,548,543,478,465,470,481,472,466,464,462,464,469,471,438,452,449,454,443,446,452,436,452,458,531,531,527,532,524,528,523,528,536,531,530,527,517,526,528,535,534,528,535,536,526,532,533,540,565,559,555,566,574,565,574,563,561,523,526,521,521,534,520,533,522,511,533,526,530,533,530,554,548,559,566,553,552,571,557,576,558,553,561,560,472,476,486,468,482,487,471,484,485,484,494,482,495,536,528,534,537,531,538,535,522,579,569,553,564,558,563,558,566,533,527,536,514,520,516,523,516,519,518,524,568,563,555,555,565,565,562,555,548,552,549,546,560,500,502,491,493,494,481,490,492,517,490,489,503,504,494,498,498,500,492,500,504,497,501,493,576,583,484,477,484,496,478,481,482,527,546,537,530,541,536,539,534,539,544,540,546,538,539,565,561,567,576,576,567,582,567,575,546,551,548,549,548,551,551,546,547,554,549,545,545,548,539,547,549,547,550,534,545,555,548,544,533,541,542,544,518,500,492,490,492,501,464,469,469,496,496,495,486,500,503,498,496,494,494,492,494,495,523,528,528,523,528,526,525,523,532,527,527,523,531,527,521,518,518,539,550,552,541,496,503,500,504,500,539,534,539,524,526,532,532,538,532,542,544,535,533,529,535,531,535,532,534,531,532,529,534,527,519,520,523,520,523,518,521,521,519,526,523,520,513,518,521,519,520,517,527,521,516,513,524,520,526,527,518,519,524,511,519,527,535,543,536,537,539,545,549,538,536,548,545,549,543,542,555,544,545,543,552,550,491,511,497,511,511,500,494,513,495,501,503,487,494,494,488,486,497,487,496,492,491,490,494,489,491,487,486,487,498,496,508,505,506,513,505,500,506,524,531,530,530,536,534,529,522,514,528,529,528,525,525,527,555,566,566,559,573,554,536,525,535,530,535,531,532,538,533,538,535,545,537,526,526,534,539,535,502,518,506,497,500,499,498,495,503,499,532,529,530,518,520,518,530,523,527,519,519,517,518,522,536,531,529,529,531,535,535,532,530,538,529,539,541,536,542,547,532,545,552,523,541,545,540,544,499,556,556,571,543,556,552,564,548,550,564,485,505,491,499,511,502,501,509,507,497,502,514,515,504,509,510,506,514,517,510,510,510,506,508,510,511,515,520,529,531,530,535,531,544,550,548,545,538,550,544,542,544,539,546,545,538,543,542,546,546,539,542,561,563,564,565,563,557,561,560,564,561,550,537,520,521,528,522,525,513,536,526,510,507,503,505,509,508,507,510,506,511,516,512,507,482,477,484,486,479,479,475,484,475,472,476,486,481,465,461,549,555,556,547,558,556,552,564,561,567,565,547,541,541,541,549,556,547,547,547,552,560,544,555,552,548,550,514,528,525,525,524,523,522,520,522,525,522,523,555,549,545,556,557,561,557,560,554,556,558,558,531,536,535,534,538,536,541,533,541,541,536,533,537,538,533,530,534,534,533,535,535,526,525,552,549,540,555,562,565,549,548,561,559,556,534,514,524,511,508,512,512,511,474,479,446,436,437,445,440,441,435,445,441,444,441,438,457,433,445,547,544,548,544,541,545,553,572,577,582,576,577,581,570,569,570,587,584,543,544,548,552,546,546,546,550,558,550,549,545,545,542,531,499,490,508,498,492,498,492,495,492,494,502,526,513,529,511,520,506,520,506,565,560,558,551,569,570,573,565,548,561,559,553,568,568,556,561,564,565,552,565,499,491,497,490,498,484,489,496,499,481,461,455,529,548,525,530,541,534,542,541,536,527,541,530,536,527,540,535,537,537,540,541,537,530,538,535,543,540,553,541,529,544,537,554,533,549,550,552,547,560,541,549,537,555,492,461,465,473,469,478,471,483,459,532,526,524,525,525,517,530,528,546,545,534,549,530,540,531,541,540,538,537,539,537,534,536,541,545,551,508,494,494,498,504,486,490,447,461,458,451,454,458,492,485,489,475,564,576,572,572,562,568,513,514,522,508,512,507,507,522,517,503,512,507,515,505,500,504,496,503,504,525,527,536,537,545,535,536,540,531,539,539,541,543,555,546,561,548,544,543,542,542,510,516,518,517,510,522,560,570,580,555,575,574,579,587,502,499,496,490,500,498,506,481,489,492,487,480,473,491,485,480,486,488,497,589,559,557,552,554,562,551,545,549,557,552,554,547,555,556,553,511,512,520,522,519,509,510,512,509,518,477,492,476,469,484,479,468,475,477,509,503,504,497,496,499,508,499,500,506,499,554,548,547,547,549,551,559,550,548,553,560,507,504,509,497,500,495,490,500,496,522,530,526,523,531,522,531,528,520,535,534,537,532,519,523,530,533,531,566,559,564,565,560,569,564,559,565,568,567,562,577,524,528,530,522,526,531,529,530,525,526,530,526,525,527,553,552,539,488,490,490,484,484,481,488,488,491,488,490,444,444,452,422,437,448,439,523,521,527,529,528,520,531,524,524,528,529,523,528,531,523,521,526,524,535,523,560,561,567,579,577,559,572,568,567,564,562,569,552,543,533,533,531,535,530,538,531,527,534,533,528,530,534,532,531,530,534,534,527,537,562,559,560,575,553,554,570,565,559,559,566,564,559,564,556,562,521,518,534,526,516,528,519,519,521,532,533,521,533,524,533,508,508,498,520,513,498,511,501,491,508,501,500,501,498,505,492,492,489,486,491,488,503,496,507,509,504,502,512,496,510,499,535,537,536,538,538,544,530,535,540,543,536,514,507,510,512,510,514,513,513,507,520,499,512,516,503,510,512,547,551,545,545,539,549,542,546,542,543,533,543,544,540,545,496,501,488,489,490,495,497,499,494,492,494,491,491,481,558,561,556,550,553,507,519,518,501,522,462,478,461,473,465,466,457,472,463,466,468,458,464,468,475,484,472,471,471,474,476,475,469,473,473,474,473,486,478,488,514,508,506,504,513,511,508,509,497,502,511,561,554,551,553,549,556,558,554,559,539,552,555,505,510,519,521,509,496,495,488,490,498,492,478,481,509,505,505,501,501,497,508,509,501,506,505,505,500,507,496,504,507,502,510,505,505,506,504,502,490,496,493,495,498,451,464,457,453,461,447,458,458,457,463,453,452,469,477,477,545,564,514,524,521,514,561,550,563,545,554,552,558,555,554,558,550,550,547,561,548,559,519,518,532,525,524,523,521,526,522,527,519,539,504,505,500,504,500,498,500,504,501,502,497,499,504,485,483,477,481,485,481,497,499,492,505,497,504,492,489,496,562,580,577,581,570,576,580,569,571,504,502,510,500,504,499,498,502,511,507,490,491,491,548,570,567,582,558,566,558,572,567,566,565,558,580,566,565,568,559,529,509,487,501,497,500,502,505,500,494,499,498,489,511,503,496,495,496,495,495,495,548,538,524,537,534,527,543,546,525,536,538,540,532,530,462,465,470,468,460,465,469,480,478,465,458,465,465,473,586,595,589,592,583,584,523,530,587,591,582,575,579,590,573,591,579,590,581,578,573,497,497,503,517,506,500,511,504,533,543,542,546,537,542,539,545,549,540,549,539,568,557,569,564,576,571,569,570,565,567,564,553,567,565,527,518,526,534,516,527,526,524,480,480,474,478,489,473,485,477,476,488,554,560,548,553,562,550,562,564,546,552,559,555,556,553,574,560,562,563,569,562,566,554,524,512,525,530,515,520,502,525,514,483,482,484,479,479,482,492,490,479,481,488,444,435,442,439,451,442,446,454,442,437,440,457,448,447,445,429,442,440,434,439,439,432,528,521,534,527,537,527,518,528,527,523,531,543,545,541,537,541,540,543,568,558,564,567,558,560,547,556,567,563,553,548,511,529,525,523,520,523,524,527,502,502,500,500,502,505,502,505,502,507,503,512,503,506,503,500,504,505,509,501,505,493,480,482,479,484,481,472,474,476,481,471,480,478,473,446,468,459,461,456,451,457,455,451,465,471,458,460,459,606,587,588,584,588,586,584,575,520,529,537,533,524,535,533,530,532,537,535,532,529,534,528,521,524,522,522,521,525,569,560,563,559,558,568,559,565,546,547,545,550,541,548,545,546,544,505,503,492,497,506,497,506,495,509,500,501,492,493,513,515,528,562,565,567,568,562,569,564,558,562,498,494,500,503,484,489,499,501,565,580,577,562,545,594,580,559,581,570,568,594,564,489,494,485,483,489,494,500,482,488,483,475,491,485,484,564,560,562,553,548,560,541,559,539,547,548,556,547,473,467,475,476,477,476,492,476,472,476,478,478,465,468,462,471,478,474,469,477,569,584,590,570,572,580,572,582,601,576,480,483,476,483,477,476,537,546,549,546,527,547,546,543,547,548,539,529,547,469,487,477,480,476,485,472,479,476,474,491,497,496,492,482,504,502,515,509,505,505,507,511,512,511,506,509,511,504,527,527,521,563,561,562,525,528,516,529,520,533,522,518,522,516,527,595,572,585,592,584,587,587,574,590,569,559,513,513,509,506,531,539,525,524,523,529,528,529,534,521,524,522,520,526,518,522,519,520,525,513,523,518,524,517,525,518,521,514,535,532,535,540,534,542,538,539,528,531,534,543,533,530,534,534,535,538,534,549,550,548,552,545,557,509,497,485,510,501,516,499,502,495,459,465,457,464,461,459,466,472,466,467,468,465,467,464,459,459,488,478,483,470,466,473,481,479,478,481,554,552,559,557,552,555,571,549,571,549,571,544,558,555,487,481,475,481,474,491,482,523,533,533,534,532,528,535,536,541,540,533,535,534,528,540,562,568,549,537,544,552,554,551,542,551,524,522,505,500,508,503,500,505,512,506,507,497,509,506,508,505,489,485,488,492,486,485,493,501,491,491,485,486,490,483,473,489,474,474,478,483,483,484,493,491,488,460,467,470,466,466,474,459,448,437,439,443,439,435,522,537,535,527,534,543,540,540,543,547,539,485,493,507,476,482,478,487,487,584,584,583,579,589,572,581,578,584,585,574,579,572,536,529,534,532,526,519,541,522,536,492,471,491,466,486,561,566,570,550,561,558,550,556,567,567,544,567,564,561,571,573,562,574,563,562,557,560,570,522,523,511,520,521,522,506,511,532,524,526,524,528,508,526,536,526,536,493,501,505,494,491,491,497,497,500,501,498,499,487,499,441,447,452,465,456,450,451,467,458,464,458,455,450,473,503,489,500,506,488,485,544,553,540,550,544,545,542,536,549,546,556,494,504,555,544,543,544,545,549,546,549,546,551,544,547,538,540,544,552,566,560,552,571,572,562,568,571,567,557,539,543,546,538,544,531,540,537,539,518,503,506,489,512,475,468,453,436,454,446,451,508,500,507,502,508,499,504,501,507,497,507,512,498,496,504,556,555,544,548,550,545,550,551,552,553,555,554,553,557,555,553,500,507,512,495,507,497,512,510,502,493,499,500,503,497,496,491,501,546,542,542,556,542,542,557,554,568,528,511,519,518,511,509,511,517,511,506,517,514,520,520,522,518,524,521,519,515,508,586,589,579,587,557,553,552,556,556,550,544,558,555,554,552,550,543,548,548,505,491,503,501,501,499,505,488,503,497,507,500,499,500,494,499,501,511,508,512,511,514,521,516,511,561,552,559,560,561,501,505,504,497,495,497,494,502,502,505,502,508,509,512,501,508,541,534,538,550,540,544,546,539,538,539,542,539,543,518,515,524,526,526,518,523,522,520,527,522,522,520,524,518,539,555,546,548,544,552,551,547,546,549,526,523,531,529,520,520,526,529,532,526,528,526,518,567,551,556,571,556,561,578,509,505,499,507,501,504,511,507,506,502,495,511,507,504,506,530,572,551,554,540,554,539,550,551,544,558,539,537,528,508,512,504,499,498,579,565,573,557,563,575,563,558,551,560,554,561,490,493,493,493,480,496,504,493,501,497,439,456,447,520,544,532,538,545,530,543,537,530,557,548,537,545,540,540,544,542,541,533,527,529,526,532,533,531,526,530,532,529,532,531,531,531,528,527,531,522,547,557,560,551,552,548,550,550,555,489,504,498,502,491,497,494,493,508,504,511,505,502,505,508,504,511,501,550,563,547,557,550,560,553,558,557,551,552,554,550,527,526,529,534,536,541,543,521,517,513,572,566,575,582,591,576,580,583,562,591,560,584,580,580,472,493,494,478,482,494,476,480,548,549,553,547,547,546,538,532,548,544,554,548,546,549,543,558,507,506,502,488,551,528,541,535,535,543,534,534,534,501,503,509,502,503,503,515,500,507,499,507,505,504,540,551,547,549,545,556,561,568,563,551,549,550,555,558,561,561,552,559,561,556,545,559,549,509,510,499,502,513,515,505,506,506,504,501,508,508,500,500,497,508,530,531,521,514,518,524,519,521,520,521,529,527,518,522,523,526,525,520,523,523,524,520,548,518,531,531,529,539,481,482,477,478,493,472,492,493,483,483,550,555,554,570,552,511,504,513,513,513,507,508,506,509,528,514,498,453,460,467,465,464,472,459,464,462,466,464,462,449,445,448,439,456,496,490,499,499,502,500,489,494,506,496,492,564,564,550,556,553,559,560,561,550,548,551,556,555,556,561,549,543,549,548,552,550,548,550,555,560,560,559,556,548,565,553,557,556,556,554,501,495,492,489,494,489,494,493,490,495,491,491,493,501,485,495,504,494,495,499,569,573,568,566,574,573,497,509,524,522,513,528,523,514,518,475,473,483,478,472,477,472,473,471,476,471,502,493,486,489,493,497,498,498,491,500,528,527,520,532,524,529,528,523,533,527,530,524,532,528,536,522,516,520,519,526,522,529,525,524,520,519,520,519,523,523,523,525,522,520,542,534,534,535,539,512,525,510,507,512,514,504,510,507,508,511,508,503,511,504,505,542,541,562,549,551,483,468,479,472,482,482,550,550,544,530,530,549,545,535,546,521,541,542,497,503,509,511,516,508,508,494,518,568,546,575,570,572,568,564,566,509,503,514,506,494,502,503,507,505,496,499,531,536,560,543,542,559,548,554,547,542,536,543,542,548,503,486,495,496,500,495,498,488,495,489,486,491,512,512,503,507,501,509,510,512,498,511,503,502,562,561,563,566,556,565,571,546,546,547,554,547,551,545,547,553,546,492,498,503,495,504,508,503,495,486,505,496,502,498,511,525,519,513,513,510,509,515,517,516,547,547,545,548,533,546,539,544,516,523,525,515,518,563,565,569,556,563,552,572,560,559,526,526,527,523,536,522,519,513,503,511,505,508,511,509,505,508,513,504,504,489,485,492,461,479,463,452,465,469,455,468,448,467,457,513,516,517,498,513,499,511,501,505,500,503,514,544,550,525,516,528,518,522,532,522,521,529,519,525,537,553,538,531,547,551,542,538,544,542,541,537,536,529,530,528,526,530,531,556,539,542,555,553,551,551,542,551,485,501,491,492,496,494,499,494,494,492,498,500,495,492,491,499,488,493,497,498,495,498,490,497,495,500,542,547,546,535,538,515,523,512,520,508,509,517,517,515,520,521,520,526,521,515,596,552,559,558,564,551,555,559,555,551,553,560,542,554,559,562,549,553,554,550,550,549,547,553,554,563,555,552,553,551,519,521,520,533,536,512,514,519,530,516,524,504,505,501,502,492,489,498,495,490,499,492,501,491,486,471,474,469,477,480,472,474,467,465,477,485,472,466,511,542,546,537,554,541,552,551,555,549,545,555,550,549,543,547,491,507,497,479,494,501,575,583,572,506,495,466,552,551,551,550,547,561,571,549,524,522,526,513,520,516,521,517,521,516,517,516,519,516,524,531,467,476,474,477,475,472,472,466,474,476,502,502,502,506,494,495,498,496,498,498,491,491,490,503,554,555,556,551,552,560,532,530,529,532,538,526,532,524,516,552,553,552,556,540,548,548,546,547,556,535,538,539,532,532,537,538,537,533,543,533,511,508,499,503,516,517,516,511,556,564,552,552,550,548,549,554,558,549,549,520,525,526,528,524,521,559,543,556,543,555,559,541,544,547,556,536,542,553,522,487,481,483,488,490,498,497,494,500,500,502,494,501,491,500,493,487,483,489,489,475,484,486,489,480,487,471,487,473,485,461,467,461,467,470,464,469,491,476,481,477,478,474,485,487,485,485,488,483,484,569,581,567,572,567,499,503,508,486,477,476,510,496,489,487,503,489,495,506,503,502,444,513,521,517,517,516,513,514,533,520,511,515,512,519,518,508,521,520,518,509,519,519,515,513,522,518,518,518,518,516,514,525,537,529,524,531,533,529,531,528,530,534,532,529,525,528,537,531,561,577,571,572,567,571,565,569,577,565,546,547,545,546,543,557,553,543,543,550,550,553,560,539,550,541,540,536,507,518,507,515,504,519,518,512,504,513,495,500,516,480,482,481,481,481,488,496,492,558,565,560,541,551,541,546,548,545,552,557,546,553,541,520,494,512,501,505,497,495,512,511,510,506,488,496,485,504,454,449,451,452,453,450,464,455,452,453,462,457,449,446,454,453,445,438,446,457,450,454,439,439,450,462,444,446,444,441,449,443,454,448,453,445,533,545,540,543,540,539,547,543,577,564,578,574,584,561,567,571,582,582,569,572,593,568,577,523,538,531,535,524,525,489,489,486,487,486,478,482,483,476,473,472,483,541,549,554,556,546,556,551,554,553,557,554,554,556,558,544,554,547,554,544,551,552,541,556,545,545,550,552,505,500,503,499,505,516,508,510,520,579,555,562,568,573,580,575,559,568,558,558,537,567,553,503,504,508,493,498,485,486,464,478,473,474,479,554,542,567,559,546,543,525,568,535,554,557,547,475,469,472,483,465,478,480,484,479,481,533,547,546,580,570,574,579,551,537,545,536,532,526,533,535,527,534,543,488,495,479,495,497,484,494,488,486,489,477,517,515,511,511,506,509,508,503,514,502,502,517,549,548,550,553,551,552,558,557,557,516,517,523,507,524,513,526,520,517,507,487,486,496,497,498,491,491,494,496,469,453,458,469,460,448,452,483,491,489,498,490,490,498,495,489,488,495,492,485,488,540,553,535,540,568,561,554,550,571,559,554,568,548,560,554,553,557,572,561,561,569,504,513,520,545,557,551,575,514,508,509,505,496,519,515,503,513,524,511,515,506,514,512,525,515,515,589,572,581,576,582,578,585,585,580,590,582,531,546,550,544,558,511,504,506,502,495,505,509,502,512,504,496,496,500,505,448,453,458,460,461,461,456,444,447,455,455,446,436,456,438,447,438,446,449,445,585,574,573,564,571,579,578,529,541,541,522,527,531,582,559,576,565,574,574,572,568,579,568,517,524,523,528,526,519,526,525,521,524,501,507,508,508,502,503,507,500,501,499,498,505,533,539,542,533,562,563,571,569,562,564,570,563,570,562,562,569,573,531,529,539,529,520,538,534,524,531,529,529,552,559,553,554,563,549,550,566,555,568,572,562,524,497,499,509,501,499,496,505,507,496,460,452,449,458,453,560,551,553,551,555,555,555,548,558,551,559,555,552,547,556,550,550,540,541,549,560,550,544,479,507,493,487,506,492,501,510,507,555,540,544,531,551,559,544,548,535,541,475,480,485,470,476,474,473,476,468,477,469,473,468,480,468,504,504,505,510,494,486,510,538,537,500,496,494,507,490,500,494,497,501,497,505,509,493,496,570,560,555,563,565,565,556,568,539,560,506,520,518,519,519,502,511,506,516,517,510,520,511,515,510,520,511,511,516,535,524,531,521,527,529,531,533,526,530,524,523,530,553,556,551,555,553,557,554,561,552,552,550,546,559,567,565,554,554,556,527,505,456,443,448,439,441,437,436,445,437,429,441,514,507,495,484,493,485,503,500,499,495,563,568,561,565,545,561,555,554,552,560,550,565,559,570,498,496,500,493,507,500,493,504,480,494,496,501,507,498,487,489,494,493,497,491,494,498,497,507,498,503,492,575,571,568,567,524,514,530,523,514,488,489,491,485,479,479,483,490,483,483,486,482,482,460,457,458,458,464,461,469,461,458,533,532,536,534,522,529,528,524,522,545,549,550,547,539,542,549,551,553,558,549,558,543,550,481,495,503,499,496,506,506,484,494,495,518,511,523,524,522,516,560,562,557,559,553,562,545,567,575,551,554,556,551,565,554,495,491,506,498,503,494,505,496,495,501,516,518,515,513,515,513,516,512,513,511,513,517,514,513,549,555,549,544,557,548,565,548,552,550,550,546,498,498,506,504,501,503,498,508,499,506,507,511,500,537,535,531,521,541,532,538,524,534,528,529,549,540,471,468,474,481,468,471,486,477,465,480,481,474,531,524,520,518,535,527,527,524,526,521,521,531,523,522,525,522,523,532,528,519,521,537,538,541,541,538,535,531,532,544,540,535,548,546,541,553,511,500,514,503,498,488,445,464,473,473,479,469,457,472,472,475,476,479,467,469,478,563,554,548,560,561,568,549,549,543,502,506,497,503,519,521,520,497,484,483,486,494,487,483,489,490,491,490,493,495,493,487,486,479,486,492,490,490,477,476,481,485,553,496,494,497,493,492,503,507,498,494,494,492,489,492,514,513,509,521,504,511,510,507,515,507,561,560,554,555,562,528,536,531,536,526,534,567,568,542,568,569,560,556,516,519,527,504,496,514,510,479,488,476,481,477,484,483,470,482,483,475,482,479,486,475,480,482,480,475,555,565,556,553,555,565,563,561,568,554,555,548,549,501,503,494,485,506,507,496,505,465,471,464,464,473,472,466,469,479,571,558,568,545,550,564,559,553,560,551,569,534,551,575,546,553,540,553,539,495,494,502,502,498,494,493,495,502,502,503,496,500,509,526,524,529,524,523,517,524,523,515,523,519,514,521,549,555,553,534,541,547,550,546,546,551,545,561,500,498,542,549,543,553,549,544,544,552,544,567,553,571,565,565,559,564,568,571,567,549,558,560,514,503,499,500,504,506,510,505,498,507,505,503,525,530,521,533,529,528,539,541,532,520,524,536,528,531,537,528,523,528,541,541,538,544,540,539,548,553,551,560,552,549,545,553,544,505,489,501,498,495,482,485,489,508,494,478,466,462,455,460,460,451,466,475,454,478,464,587,599,585,593,580,602,596,585,592,601,592,603,577,586,578,591,585,556,554,557,557,552,549,554,542,552,520,521,517,528,521,533,519,480,487,476,463,465,454,457,458,460,458,451,458,551,545,547,546,545,555,556,545,550,537,550,570,581,568,573,563,568,568,565,561,570,575,576,564,528,510,523,531,508,523,526,534,582,577,588,587,586,573,579,589,563,552,537,540,547,550,545,549,544,535,561,549,553,544,555,547,496,486,478,488,489,448,466,467,458,464,473,465,460,463,535,556,555,550,542,553,537,551,519,521,512,514,513,514,513,512,510,515,518,509,527,559,547,549,538,552,560,547,559,545,555,553,543,547,553,549,551,539,552,560,544,546,562,531,532,536,532,533,539,530,531,535,539,536,527,532,523,531,526,532,528,532,532,533,529,534,557,568,559,562,573,563,560,557,552,565,555,567,573,570,516,529,531,527,541,529,514,523,525,537,523,525,526,499,506,505,503,503,506,505,502,506,506,501,499,497,472,484,482,479,474,478,478,476,461,457,462,457,455,455,462,456,459,450,529,548,555,547,552,548,540,560,569,574,561,563,574,574,566,515,521,538,527,538,524,534,540,528,542,522,511,515,519,518,518,515,571,562,576,561,559,557,546,564,499,513,510,516,511,499,509,499,517,511,497,516,529,518,519,508,507,510,485,474,483,479,479,481,482,472,475,469,474,465,546,550,550,562,560,552,558,556,555,557,559,567,489,487,488,501,486,496,485,485,484,489,486,483,490,475,480,481,481,498,499,499,496,500,508,497,501,501,495,498,498,502,504,530,532,535,527,529,529,523,530,537,529,531,534,522,528,548,548,541,552,544,543,548,550,533,555,555,551,555,547,552,549,551,552,550,548,550,546,515,511,514,500,490,509,506,495,502,495,498,498,497,497,514,522,524,516,523,517,509,527,567,566,554,556,579,565,573,567,577,569,566,553,564,571,525,528,503,503,502,505,503,498,506,502,501,507,471,474,478,474,578,598,589,605,593,513,543,525,531,534,538,535,537,532,537,521,524,522,551,536,534,491,502,501,505,505,499,502,502,503,497,492,507,501,501,502,510,504,495,504,500,539,548,551,556,559,560,557,553,546,546,550,555,541,529,511,516,514,522,534,534,518,519,522,513,518,510,524,515,512,476,482,468,470,480,480,479,484,569,592,585,580,523,527,522,521,525,520,532,522,522,522,521,570,541,564,550,556,553,544,553,540,553,549,547,559,545,517,553,564,553,556,560,557,554,521,527,524,527,526,529,525,504,512,510,506,504,510,515,499,560,553,548,554,560,564,561,558,560,508,494,500,497,489,493,510,489,475,475,471,483,472,477,483,474,468,474,479,478,446,429,436,447,452,447,437,517,521,523,523,516,531,528,526,521,530,506,529,521,525,531,524,526,527,532,531,526,566,567,568,569,556,551,565,528,529,538,531,535,534,532,523,534,537,521,518,519,519,525,525,524,512,560,560,562,562,565,552,552,548,559,554,555,553,561,553,551,555,553,557,536,534,536,533,531,546,538,540,542,538,535,537,534,532,529,535,527,526,532,536,539,534,539,532,554,564,562,556,565,560,561,547,560,555,553,550,490,487,502,495,488,493,493,501,485,485,488,564,555,558,548,569,557,567,471,473,478,479,466,478,448,476,611,577,587,598,583,589,599,594,580,593,587,540,549,542,539,539,545,542,537,537,545,535,539,521,521,523,522,524,523,527,525,523,522,525,522,525,531,518,517,520,511,513,512,516,513,511,503,503,502,508,504,507,502,503,505,503,502,505,509,501,506,543,534,534,544,566,566,566,573,561,563,564,562,566,563,555,535,536,525,521,529,505,501,509,516,513,508,510,507,509,574,557,570,553,564,535,513,517,502,513,526,503,489,487,486,488,490,481,484,478,465,477,472,479,463,467,475,477,473,470,475,465,465,466,473,468,473,469,472,470,467,470,467,446,434,433,445,554,554,545,563,551,550,549,550,556,541,551,538,556,541,549,543,553,508,512,491,488,475,488,485,488,489,488,480,485,480,481,501,493,496,496,491,491,496,490,496,491,499,496,502,490,495,491,494,497,491,493,490,493,495,495,499,490,486,496,492,469,474,475,468,472,468,471,488,489,500,522,532,526,531,532,528,538,527,530,527,521,530,536,543,545,537,476,466,485,477,483,484,487,462,486,476,519,528,528,521,537,526,531,537,520,535,536,526,526,549,549,540,540,541,539,532,543,545,547,543,548,546,553,547,544,555,496,492,492,486,496,489,488,488,494,495,437,442,446,436,432,441,436,430,526,517,535,518,531,526,544,538,537,542,531,547,541,540,541,538,543,533,542,542,513,516,522,533,525,523,520,526,527,532,523,521,518,474,473,477,474,459,479,475,469,471,478,474,464,557,544,549,537,552,545,546,543,542,544,537,540,539,543,542,543,543,529,544,557,578,570,562,566,571,574,532,513,475,536,530,536,525,526,530,535,535,542,543,539,544,538,552,553,550,546,547,554,550,549,538,545,482,476,489,492,485,500,515,505,496,490,494,514,493,469,466,468,462,473,464,467,461,474,551,531,547,525,542,464,473,494,474,478,477,484,467,478,482,456,496,492,495,502,497,495,530,535,535,546,536,539,536,536,520,520,521,520,522,519,525,516,527,551,554,555,545,546,561,546,549,548,563,497,495,498,497,490,489,495,504,487,502,483,491,501,509,506,506,504,504,503,512,497,506,506,501,502,506,501,506,536,545,539,550,558,567,582,572,568,568,573,561,557,566,496,513,511,505,501,443,449,435,460,484,472,479,464,480,575,572,567,570,570,564,567,563,554,564,554,489,509,501,504,506,503,508,510,514,503,510,511,504,505,505,506,516,509,503,469,494,497,511,495,494,498,503,504,499,493,502,504,483,492,499,495,487,573,557,555,558,551,552,552,547,552,557,551,545,482,509,510,504,513,503,509,500,503,442,456,450,450,460,447,452,448,458,464,461,462,476,463,465,468,469,464,475,472,476,472,469,481,471,470,615,600,600,588,601,586,588,596,579,548,554,554,546,553,564,554,509,504,489,499,505,497,487,496,488,495,497,495,498,485,503,462,461,447,454,466,457,461,465,459,461,471,462,463,460,463,456,453,462,471,466,440,455,466,448,458,465,463,453,456,472,457,456,546,546,557,556,569,578,579,571,568,564,523,525,525,563,560,564,555,555,524,529,524,526,526,525,524,528,520,531,518,527,523,554,552,556,551,550,557,547,519,529,535,535,532,538,538,536,531,532,540,528,542,532,512,514,524,518,519,519,517,558,550,565,570,567,571,564,568,556,518,533,528,520,518,533,536,527,515,508,481,481,484,474,479,489,475,482,488,483,487,487,485,476,488,475,502,497,499,497,497,502,491,498,503,503,560,556,554,557,566,561,553,553,565,556,557,555,519,522,514,536,515,525,521,525,504,496,586,593,585,594,592,587,599,595,588,584,590,597,597,578,601,563,550,494,512,507,507,517,511,507,507,516,511,513,516,521,519,518,515,510,510,485,489,482,486,489,490,479,486,489,491,493,492,497,496,488,490,483,492,490,487,490,491,491,488,507,509,528,524,526,522,526,524,514,529,528,529,536,527,527,533,532,525,518,514,520,521,520,518,520,518,516,519,512,514,514,517,529,521,521,528,568,557,567,568,576,570,563,574,569,568,573,565,557,490,507,499,511,509,500,522,532,518,536,532,531,534,535,531,527,513,522,519,519,516,521,521,516,526,513,520,527,528,537,528,532,533,531,532,573,565,571,570,576,552,545,545,542,494,500,497,498,495,504,495,488,502,506,497,491,489,492,505,495,490,489,502,510,510,500,498,507,504,515,513,499,503,551,549,557,551,556,533,536,541,540,541,538,535,532,532,544,541,514,514,512,512,503,507,513,558,553,553,559,550,552,549,553,541,558,542,548,554,536,551,553,547,547,545,548,550,547,550,498,493,492,503,497,497,483,484,496,492,500,490,483,493,435,441,448,435,448,454,446,443,446,435,441,452,545,547,548,529,535,544,554,557,545,539,542,557,560,509,478,489,459,460,452,455,455,459,460,458,460,451,492,503,480,496,497,495,489,493,487,494,491,574,579,577,574,566,581,573,565,572,565,578,571,560,574,506,497,499,499,488,490,492,493,493,510,502,506,495,468,470,459,457,463,594,569,594,579,587,581,576,507,501,499,516,504,517,510,509,497,510,557,545,557,553,548,542,558,545,550,553,560,551,540,536,542,539,554,546,548,545,540,551,543,471,474,477,468,474,473,490,479,481,453,447,446,466,456,453,449,450,458,459,556,564,559,555,555,556,562,550,557,558,542,550,556,563,557,547,540,561,536,514,561,565,526,520,515,514,507,503,519,524,523,465,465,467,465,474,463,460,445,459,452,452,454,457,448,453,454,457,455,449,449,451,451,450,459,451,460,457,469,462,461,455,460,466,536,545,528,542,535,543,550,559,552,550,547,551,549,560,558,559,553,544,567,554,556,531,504,522,504,512,501,501,499,506,499,495,482,489,488,492,484,486,485,479,478,481,481,483,480,478,477,484,482,469,476,475,466,467,467,468,472,475,462,464,474,482,464,472,472,477,473,482,478,476,480,483,477,496,484,489,494,491,497,486,488,492,494,557,559,568,562,525,535,533,530,531,529,539,527,533,532,532,571,568,565,566,567,562,561,559,562,562,563,533,513,534,522,533,505,509,500,497,505,498,503,499,499,501,506,502,510,502,486,484,475,483,487,469,460,457,456,469,469,459,462,465,476,528,538,532,543,539,541,535,537,536,546,535,540,541,547,535,542,546,547,538,542,541,544,550,538,535,544,535,545,542,545,543,542,534,539,546,549,560,552,556,558,543,554,545,545,550,547,553,553,545,554,547,496,504,492,497,492,431,432,438,436,446,435,459,435,480,490,500,484,486,530,547,536,533,545,549,545,530,532,536,541,540,534,474,484,449,465,473,469,523,538,532,528,548,535,538,569,552,561,564,562,563,571,559,563,561,563,526,533,533,536,534,536,535,534,536,530,534,550,539,539,545,545,541,549,543,551,552,561,558,533,531,531,531,533,528,468,484,486,476,476,464,478,476,474,479,476,478,474,551,553,542,547,542,559,559,556,550,568,551,490,513,500,500,507,489,478,479,488,479,480,484,490,483,476,481,482,473,491,487,492,491,492,492,497,485,493,493,492,493,461,452,463,457,460,462,466,458,551,541,549,559,501,491,496,496,487,487,502,498,488,497,500,584,592,591,591,598,578,586,577,552,526,528,524,514,516,526,523,501,524,511,514,520,516,474,476,474,475,478,476,477,477,454,458,455,459,464,473,470,455,468,456,463,458,463,463,463,534,518,544,534,531,538,524,535,534,530,541,539,533,540,541,531,527,537,538,537,536,533,530,540,543,531,527,526,528,564,575,570,563,572,569,573,566,574,560,572,572,565,498,502,503,505,511,507,509,500,497,497,495,509,537,523,527,531,522,526,533,527,531,538,533,527,529,530,536,532,529,528,528,522,532,546,545,548,538,506,518,565,552,563,559,561,550,551,568,556,564,553,555,546,553,548,546,548,542,545,545,554,548,554,557,495,489,484,498,481,495,491,485,453,460,455,456,458,461,458,465,464,447,459,457,536,534,535,540,535,542,536,539,539,542,534,533,545,540,540,552,555,554,548,549,556,549,548,545,562,557,556,552,552,553,551,491,496,492,501,503,504,483,491,494,497,495,502,499,504,497,497,470,534,536,529,531,535,528,529,536,529,528,529,531,531,527,520,541,531,565,555,568,573,573,559,574,565,569,573,571,580,566,570,562,550,545,555,557,555,548,517,529,519,538,526,531,528,526,525,524,518,527,522,521,502,509,507,507,510,500,499,510,512,501,503,501,501,501,505,502,505,493,500,497,499,503,503,502,511,503,489,496,498,495,499,495,504,497,466,464,464,472,474,470,464,469,464,459,470,468,475,458,465,470,468,456,459,463,449,456,459,464,459,446,464,547,558,484,498,487,487,493,492,493,490,475,582,591,572,575,568,573,588,576,582,577,579,592,576,520,513,527,516,527,528,518,521,521,522,518,534,564,564,550,561,558,552,553,544,547,552,558,554,552,544,551,550,523,525,522,525,535,529,525,527,527,528,519,529,532,544,547,548,544,553,549,550,500,509,508,468,462,459,458,462,463,451,457,456,451,462,453,458,459,454,458,554,559,552,545,553,554,551,559,553,552,550,549,548,549,548,550,575,571,567,565,578,582,575,578,569,574,577,574,574,572,580,527,528,535,532,533,510,537,512,522,542,540,529,527,536,506,510,516,509,511,505,548,550,555,555,566,561,551,547,553,555,560,511,515,508,507,497,494,491,493,488,490,490,498,488,485,490,483,526,520,572,590,584,580,592,501,504,508,507,516,511,514,509,497,510,510,501,502,524,541,526,534,525,513,515,521,521,514,519,517,521,520,512,517,518,514,519,521,516,520,523,518,526,529,563,571,563,571,558,547,539,551,545,546,550,539,551,541,540,545,543,542,552,548,539,527,504,518,504,497,512,513,509,515,508,512,514,513,518,484,479,478,473,478,475,481,479,484,483,476,479,485,472,485,467,449,471,466,471,462,457,466,451,459,464,512,536,534,533,551,533,540,551,539,548,537,544,540,444,462,449,459,462,441,452,474,461,517,529,535,532,527,525,529,541,532,540,533,538,535,531,523,558,569,562,560,566,559,565,549,559,554,558,570,567,545,531,544,541,542,541,548,543,542,544,538,539,549,543,545,548,541,536,543,511,518,482,481,484,469,499,477,558,553,550,552,560,541,562,559,567,580,566,495,491,500,495,490,491,500,490,494,498,490,490,545,541,548,532,540,540,545,535,516,520,563,557,556,562,563,566,565,560,539,560,552,553,559,554,557,560,551,552,504,510,501,513,514,519,511,512,518,514,521,483,492,491,484,483,481,487,486,484,527,505,546,554,555,559,563,567,558,562,564,561,553,548,549,503,489,496,492,504,500,497,488,453,453,469,452,468,455,461,467,453,528,523,529,537,528,539,533,540,534,531,535,536,540,527,535,537,539,565,563,572,564,569,574,571,571,577,561,578,518,517,535,533,527,529,526,526,534,521,530,526,484,504,495,490,505,496,501,481,503,492,491,487,501,500,497,499,495,489,500,552,555,544,571,550,554,559,551,562,550,552,557,519,514,506,517,514,520,522,522,527,513,598,594,587,590,575,582,586,549,537,531,544,534,537,531,550,529,542,547,534,490,502,482,501,496,499,493,494,494,503,502,497,562,571,557,548,566,488,478,467,478,458,475,483,532,527,563,519,535,530,534,529,530,534,526,536,528,537,540,520,525,520,522,532,522,526,527,525,524,526,526,537,524,547,540,546,539,477,501,494,492,490,488,488,497,491,492,507,498,493,510,506,505,502,521,503,500,504,507,507,490,495,498,493,500,493,504,510,512,511,505,510,509,508,508,496,499,553,546,557,555,544,547,543,536,544,507,487,485,484,484,492,489,488,495,495,490,483,489,506,499,477,480,473,477,553,555,533,555,538,562,554,553,551,542,570,547,545,512,512,520,513,502,498,505,507,510,506,557,557,555,561,565,531,532,527,530,525,531,521,527,525,534,532,523,532,522,537,534,533,540,549,516,519,515,521,528,523,522,521,523,515,524,563,551,554,540,534,544,543,555,547,550,545,549,554,554,543,537,541,545,539,538,538,535,540,532,540,536,533,542,533,525,523,525,531,522,591,577,597,588,584,519,516,517,512,536,520,520,509,510,508,504,552,559,559,555,560,555,496,502,503,502,492,489,506,500,497,493,483,470,471,458,452,466,478,462,468,463,464,551,566,559,571,578,553,561,576,548,489,488,497,503,486,490,581,579,584,584,577,597,586,548,543,543,550,551,552,555,493,494,497,507,493,491,493,483,497,492,490,496,497,502,569,562,575,580,567,565,570,573,577,589,565,593,570,594,581,572,566,575,572,525,536,526,538,526,534,542,530,538,530,502,484,477,480,481,479,480,479,479,480,451,459,451,463,567,579,584,547,550,556,546,538,548,542,542,539,548,539,547,540,543,543,532,544,543,538,475,489,474,483,490,496,498,478,495,483,497,440,445,444,546,534,542,542,535,547,541,545,543,551,554,547,551,555,555,550,538,553,543,544,542,466,464,480,475,461,466,468,478,473,461,483,469,465,548,570,541,534,540,540,546,550,541,544,546,504,481,492,488,492,488,479,483,494,485,497,489,422,427,429,447,445,452,439,450,447,496,495,501,495,513,496,491,497,494,492,502,578,565,565,559,560,571,558,570,570,564,575,570,566,565,562,567,564,570,558,534,532,509,520,519,519,523,530,527,519,522,534,502,492,498,492,499,503,495,495,500,495,498,493,502,507,501,491,483,483,463,463,464,460,470,462,467,452,456,464,465,545,550,536,562,543,530,538,541,555,558,555,547,551,526,514,526,521,513,515,517,523,521,522,514,519,522,519,513,515,525,530,536,526,526,523,526,529,531,513,502,511,507,505,559,557,570,559,556,499,502,519,515,509,477,478,480,479,470,473,473,478,487,478,485,482,482,474,485,479,493,481,481,491,495,495,495,490,485,484,491,490,500,494,509,512,508,509,510,507,513,524,524,539,520,525,524,528,533,533,528,523,531,528,531,526,535,522,537,532,536,537,523,531,532,530,537,534,544,544,545,556,545,545,547,549,516,522,529,526,519,524,560,554,559,558,567,561,558,560,565,561,556,543,549,545,557,539,491,493,500,500,495,495,506,502,496,500,494,497,502,505,507,501,497,500,499,502,509,496,501,501,510,507,502,500,508,500,533,537,547,538,539,539,528,541,531,529,538,536,537,533,529,518,518,527,530,519,525,516,522,526,538,539,533,538,540,532,521,512,527,533,489,476,478,480,483,470,474,480,472,469,470,476,492,482,479,483,496,484,473,461,474,484,568,539,561,553,547,522,503,512,509,513,511,511,510,515,509,511,525,536,541,547,533,535,540,535,532,537,532,535,538,542,536,542,565,554,557,555,565,555,563,533,523,533,517,523,526,526,513,519,519,526,523,528,524,487,492,498,494,492,492,485,490,486,490,485,484,480,488,481,473,481,482,477,473,485,482,479,481,487,481,484,497,499,494,495,494,496,488,486,485,498,496,487,476,465,466,469,457,460,468,467,461,460,458,431,454,449,448,448,450,463,447,444,449,461,451,581,580,562,576,580,581,574,572,499,506,499,496,507,502,504,501,505,505,543,542,531,527,526,524,522,525,536,526,533,524,530,544,541,539,546,544,545,547,541,545,555,537,547,555,550,555,559,498,485,504,501,494,510,489,489,495,491,490,564,581,571,563,556,554,555,561,559,566,515,516,527,530,530,540,518,525,532,527,534,527,525,520,506,507,509,508,508,516,506,510,509,520,533,528,520,526,525,529,519,535,521,579,585,590,589,580,553,551,551,553,550,552,539,552,545,561,553,556,560,512,522,531,525,513,517,521,517,526,523,522,527,530,522,503,499,504,503,504,505,504,501,510,506,499,502,479,490,481,470,482,483,486,480,489,489,474,458,459,457,455,462,471,480,469,463,469,459,474,471,466,459,537,545,503,497,490,495,563,566,563,563,561,558,553,562,573,559,558,555,563,560,561,560,554,556,549,556,523,526,530,524,528,517,525,518,486,494,511,496,498,502,496,496,579,602,582,591,599,597,591,600,558,556,537,547,545,554,547,554,551,556,543,562,549,546,560,549,562,505,494,504,503,512,497,511,502,509,493,518,500,513,503,491,472,469,470,488,479,461,462,446,454,454,462,448,492,493,488,481,489,492,490,533,548,542,540,543,545,544,539,543,547,548,551,551,529,536,536,532,533,540,534,531,527,533,534,530,526,529,526,530,529,526,531,535,528,532,569,551,555,552,555,558,552,548,554,547,547,507,523,512,521,506,511,512,517,510,505,523,512,524,484,486,484,490,484,484,478,472,480,481,482,484,479,477,478,474,477,477,479,476,479,472,458,444,443,448,548,545,541,536,545,543,537,545,540,542,554,543,548,541,541,537,552,552,546,550,529,531,572,553,553,561,541,549,552,547,488,477,476,479,470,484,469,468,484,483,480,543,540,541,550,538,545,534,546,557,514,508,502,510,485,504,516,513,500,506,513,507,502,596,599,610,608,595,600,589,589,557,541,530,542,527,544,544,476,468,477,473,490,474,475,472,474,466,478,496,502,505,501,505,507,521,535,536,537,509,514,551,554,553,545,562,506,512,513,507,522,502,511,516,519,506,513,506,504,508,501,500,505,533,476,500,504,496,486,485,491,490,499,485,485,472,478,466,467,466,471,470,467,472,471,462,459,458,463,460,464,457,450,582,559,559,548,571,569,577,556,553,560,568,513,502,510,500,493,537,547,542,540,541,540,556,547,543,562,514,502,496,508,562,568,544,554,557,557,518,519,520,515,514,524,514,508,518,540,541,533,536,534,540,544,549,540,533,545,540,543,535,538,539,544,536,542,544,540,543,537,536,534,524,524,525,519,528,518,516,578,587,585,598,585,580,586,592,580,552,550,504,521,521,519,518,523,526,521,516,522,509,516,465,471,463,467,461,466,559,554,552,553,566,568,551,552,554,564,561,558,554,560,563,550,571,549,554,559,556,558,522,506,521,519,517,513,509,528,498,491,489,493,498,494,492,490,487,493,498,490,489,492,492,493,483,487,491,485,488,498,489,487,490,487,484,493,521,514,521,528,531,521,523,525,570,584,568,572,579,582,591,573,553,533,543,537,534,534,527,540,533,529,534,524,517,518,522,525,524,528,527,537,531,534,535,531,534,523,527,533,539,524,513,509,514,511,518,532,528,533,521,539,542,526,531,543,540,528,540,539,531,544,532,537,504,507,509,516,495,501,552,516,509,504,512,520,513,500,504,505,501,462,468,473,466,471,468,463,432,434,439,437,428,438,434,439,445,429,442,432,539,546,538,546,534,528,537,522,540,536,540,562,568,553,556,564,565,537,528,532,542,528,516,525,527,521,528,524,525,547,496,502,500,498,490,506,503,488,507,513,502,497,485,500,493,496,463,459,458,469,460,461,462,459,464,451,453,472,473,482,467,463,468,467,470,549,552,563,542,553,534,552,553,492,500,498,494,496,490,499,505,493,492,498,506,512,516,515,515,514,522,522,525,507,515,510,518,511,504,516,547,538,542,536,541,541,543,539,523,523,516,526,525,519,520,525,521,525,522,522,522,557,553,554,555,554,548,557,556,550,552,553,560,553,555,556,555,558,560,552,538,533,535,533,531,539,524,521,517,515,518,519,517,502,518,514,520,516,530,536,526,565,558,557,556,562,543,562,541,556,545,559,565,558,559,565,567,564,562,560,555,549,503,516,513,516,512,509,509,506,524,511,508,511,522,504,539,538,530,535,539,537,526,532,538,528,532,552,532,557,547,503,507,511,505,575,574,562,565,564,595,564,579,580,561,594,561,486,484,481,481,482,522,525,524,529,517,517,515,539,549,542,549,550,557,506,506,511,504,497,475,468,466,471,465,464,464,561,556,581,565,570,561,576,573,450,465,472,463,467,465,472,467,475,477,466,476,477,533,528,523,539,532,526,524,529,578,563,576,562,564,548,544,549,543,545,547,542,550,557,543,555,548,553,549,538,536,540,544,537,540,478,492,487,484,452,434,436,446,442,441,449,452,449,445,445,445,529,526,528,511,515,521,507,510,524,526,527,530,529,526,533,530,532,570,559,564,572,554,570,573,574,578,497,527,508,503,498,492,512,504,516,517,501,507,506,507,510,500,506,512,514,512,510,554,563,549,550,552,553,541,549,535,543,552,541,550,545,500,514,505,510,506,520,508,491,511,490,498,498,498,500,501,499,495,493,503,496,499,500,476,468,485,474,478,475,479,480,477,472,475,473,484,483,487,472,471,480,473,474,479,588,611,596,593,593,590,597,607,597,504,491,515,512,509,546,535,543,540,543,542,547,568,582,561,575,557,560,560,522,531,523,529,532,537,532,528,536,515,508,514,569,526,533,523,508,516,523,521,530,518,521,505,514,522,516,496,508,503,480,477,480,473,473,474,478,486,485,480,441,435,436,432,436,439,436,445,427,431,432,426,429,442,433,435,446,432,435,426,461,443,460,453,464,464,457,456,459,472,455,465,454,464,454,443,454,452,448,468,458,578,599,588,595,599,597,594,588,591,591,576,598,595,589,549,546,549,552,549,545,544,551,496,491,490,485,485,490,493,485,489,494,486,481,455,462,457,465,462,472,464,456,470,454,463,469,459,562,510,508,510,519,516,509,522,508,518,557,551,556,557,558,558,559,554,551,541,550,556,547,541,545,554,544,552,551,552,549,553,550,513,513,506,506,514,514,506,515,511,485,484,484,482,481,482,484,485,489,488,481,487,480,483,479,481,485,485,487,488,488,489,541,520,528,520,524,598,570,576,574,583,581,579,582,539,503,498,527,531,539,484,474,476,462,469,471,469,577,570,591,581,573,589,576,587,568,583,572,536,525,533,537,516,505,509,516,501,504,501,503,498,506,500,549,552,550,554,547,554,549,559,543,555,539,539,537,596,567,579,515,533,513,513,478,476,488,474,477,488,476,488,478,476,481,480,485,485,482,482,474,578,581,575,598,584,596,584,582,591,608,590,584,540,555,551,547,568,549,556,530,514,504,517,519,470,474,471,480,491,499,493,501,499,497,477,495,552,553,545,549,557,500,470,488,479,496,476,481,487,487,475,486,488,480,490,493,484,486,505,509,506,506,508,510,508,508,500,501,529,529,520,534,532,539,534,529,537,542,538,544,548,542,542,541,537,533,539,536,535,542,545,539,540,537,551,553,556,549,547,546,565,560,544,553,559,558,550,509,516,516,513,460,452,462,459,464,454,457,461,473,471,462,599,592,587,599,594,581,562,547,536,534,546,553,543,546,540,528,485,491,487,483,488,490,495,500,493,486,498,489,496,502,531,529,529,529,528,522,536,519,521,507,504,506,511,516,502,511,514,510,509,504,566,552,549,559,556,551,556,549,552,561,561,510,522,520,529,514,519,513,533,517,521,527,530,490,490,536,544,560,548,573,550,561,551,551,502,488,484,487,495,493,497,484,501,500,491,494,511,498,507,509,511,506,515,516,509,549,548,541,532,546,548,548,546,533,541,548,542,571,561,551,503,525,521,514,505,524,566,556,564,557,546,559,568,561,544,569,553,554,516,497,493,504,511,510,490,483,490,547,536,546,542,549,541,529,529,525,526,527,528,535,532,526,525,523,528,524,530,519,525,518,566,557,561,563,565,570,581,557,543,549,547,499,500,486,501,496,502,488,503,494,498,486,494,493,494,494,496,489,490,492,492,490,489,520,519,524,511,520,519,526,519,520,506,572,578,583,579,570,593,569,573,593,582,574,583,582,538,507,496,505,504,514,504,525,530,535,542,543,539,536,539,540,540,542,552,549,548,554,554,561,548,499,487,500,500,487,495,487,561,551,555,558,554,558,553,555,541,542,541,544,556,549,540,547,550,553,541,549,553,522,524,559,556,555,556,548,547,546,564,550,543,556,559,556,555,506,525,510,526,523,530,522,527,523,512,440,454,462,465,460,448,456,449,450,452,527,536,531,538,533,529,533,562,556,566,567,556,504,513,507,507,513,507,513,504,516,495,530,510,507,534,541,545,544,552,541,541,548,529,543,547,542,552,525,527,527,526,525,531,523,524,529,549,558,546,545,552,553,550,549,540,546,546,560,565,553,495,502,501,503,512,498,509,508,509,505,505,480,483,482,487,485,497,484,491,482,484,481,483,491,482,503,491,501,494,498,502,498,500,495,502,493,491,486,488,497,488,493,485,485,488,489,490,500,480,488,484,476,483,481,485,489,484,490,483,481,481,490,488,487,479,482,484,480,478,498,499,494,494,503,500,499,501,501,501,500,500,498,502,483,478,492,481,486,482,460,459,454,457,468,444,449,459,476,458,455,458,493,507,502,506,542,551,544,546,548,552,499,511,509,506,504,512,505,503,510,508,511,549,546,555,546,543,547,541,544,550,554,542,544,540,543,556,542,545,536,552,503,513,514,516,517,524,518,517,515,518,513,516,520,510,528,535,492,490,480,477,485,482,468,472,482,482,481,477,478,472,479,472,465,478,558,556,556,553,557,509,518,513,510,506,515,509,526,512,485,485,492,489,487,489,496,500,502,502,499,500,498,498,500,495,564,553,559,552,546,563,545,555,556,552,561,555,522,531,532,532,531,537,531,537,534,533,533,533,535,531,542,514,525,522,516,535,530,539,533,535,523,527,531,538,541,536,567,563,561,562,548,564,554,491,505,504,496,497,476,476,484,463,481,474,472,465,472,480,471,466,480,546,535,542,553,562,546,476,478,475,472,481,476,482,486,496,481,488,486,535,538,535,527,530,527,517,537,529,530,538,539,538,532,536,534,533,534,537,539,558,560,563,562,573,559,562,554,551,576,509,533,535,534,522,522,525,531,523,518,526,528,531,499,505,502,505,505,500,503,506,510,498,501,557,551,559,547,561,559,555,552,545,539,547,547,541,542,549,542,543,541,552,546,546,550,537,546,526,527,534,527,527,529,535,528,534,524,521,553,543,531,538,547,555,541,537,528,537,530,536,540,536,534,533,514,510,497,525,514,510,512,507,498,563,556,559,559,568,553,555,545,559,562,547,548,559,555,514,518,502,526,503,493,481,487,485,486,486,473,487,475,490,487,464,459,464,467,466,467,465,465,440,441,431,429,437,444,487,494,499,492,503,490,499,495,511,501,500,502,497,566,573,564,563,564,549,566,514,512,511,516,500,502,501,497,500,499,505,494,499,499,502,502,502,502,499,509,469,475,473,478,473,472,466,475,467,467,450,443,439,445,447,448,438,434,441,446,448,441,442,440,437,488,480,487,483,496,487,496,487,494,494,493,495,503,486,525,531,537,539,535,520,524,524,525,526,521,529,526,521,567,569,569,568,570,562,559,555,546,556,555,548,558,552,557,551,563,552,551,511,519,531,520,516,520,524,515,514,517,521,515,515,512,513,475,473,479,477,479,473,482,479,480,468,463,463,468,460,464,459,460,467,462,464,475,467,576,560,563,561,561,563,565,477,483,489,483,497,484,485,490,487,497,498,500,567,586,575,583,574,576,581,573,564,575,572,587,580,577,514,520,517,530,521,531,519,528,567,529,530,532,526,522,518,512,525,511,518,560,563,549,558,558,558,531,531,538,535,535,541,534,533,531,532,538,537,532,539,532,530,530,532,542,534,528,519,516,524,526,522,518,513,518,516,535,572,556,551,565,555,554,556,569,548,550,556,557,558,554,542,530,536,527,528,531,532,524,535,528,534,526,527,554,546,540,550,546,469,478,472,475,473,470,462,472,479,480,477,478,457,478,466,513,497,492,491,503,497,502,499,541,555,546,556,556,545,522,532,528,526,524,490,485,487,488,488,482,481,486,538,551,553,544,542,549,558,546,540,557,551,551,511,513,514,514,511,520,516,512,514,516,519,537,531,546,541,535,542,544,537,525,572,565,559,556,494,510,511,504,512,459,454,453,464,451,452,452,455,455,475,483,484,475,481,480,475,473,476,482,477,483,483,479,486,568,561,562,549,558,572,564,560,559,579,582,558,560,573,564,553,520,524,519,521,526,515,509,520,519,520,516,521,516,513,552,542,540,541,538,500,493,492,492,501,495,503,503,554,542,546,558,567,551,575,571,569,560,560,572,559,549,539,546,545,532,536,536,542,541,524,542,546,537,544,502,487,491,490,490,494,498,503,492,496,494,494,470,466,471,469,469,471,440,436,425,439,432,440,444,422,441,449,434,445,557,529,535,542,531,538,537,563,568,551,565,555,556,572,564,559,571,567,561,560,563,573,518,522,529,531,521,510,528,535,518,520,526,556,551,566,547,561,544,562,562,557,549,553,555,510,504,507,512,513,518,519,511,511,509,507,514,519,538,528,529,570,546,555,548,548,547,538,552,523,526,529,528,530,525,524,525,557,562,565,562,558,558,560,556,564,568,557,564,566,557,542,545,538,498,510,496,516,500,499,495,500,501,507,509,509,503,506,499,494,498,491,491,489,482,496,488,492,489,498,490,498,486,529,533,528,523,514,522,528,518,591,579,583,587,587,591,586,591,578,551,553,542,551,545,551,541,547,551,554,544,552,549,552,497,498,508,517,501,511,512,499,562,557,566,564,565,562,562,567,567,545,534,540,515,504,518,517,513,517,522,519,504,514,563,535,568,556,563,563,557,580,560,547,502,514,505,513,493,507,507,510,518,495,511,502,500,506,519,510,517,527,511,514,516,524,519,514,519,522,512,547,507,516,508,509,502,500,512,509,513,526,544,547,543,537,546,549,551,466,477,472,474,484,476,496,497,498,499,497,482,491,494,503,492,495,490,496,500,493,499,496,500,546,561,561,529,530,533,523,526,527,533,534,508,497,520,505,515,507,492,541,532,546,557,569,551,554,554,545,566,563,552,549,567,553,550,511,502,515,502,508,502,511,500,501,510,512,482,482,481,483,481,487,450,458,462,466,467,459,467,459,463,456,445,450,539,537,540,539,519,533,541,546,536,542,538,541,539,538,540,541,535,487,489,485,483,476,477,494,486,478,477,494,485,442,437,444,439,422,435,548,543,541,538,584,572,570,573,576,547,537,545,492,499,508,488,490,499,503,488,492,468,476,471,470,472,469,462,480,479,472,503,505,503,509,533,546,532,530,523,537,526,521,532,522,535,499,485,487,490,495,492,482,504,494,480,581,598,602,592,597,591,592,587,596,579,592,588,576,580,551,558,550,555,562,556,546,556,545,552,550,550,545,550,558,556,552,525,540,542,546,536,545,477,480,462,471,457,464,458,457,459,506,505,503,509,504,504,504,544,540,532,538,535,540,538,540,545,537,540,477,449,462,467,456,455,446,527,531,531,538,530,523,524,525,524,526,516,520,522,523,537,537,542,550,542,541,536,544,535,544,536,534,462,472,470,488,485,475,474,476,477,479,471,480,463,559,565,571,569,575,571,556,561,560,567,569,567,565,555,574,569,558,567,563,521,508,494,492,486,491,516,489,508,515,461,459,459,462,453,462,456,456,470,455,463,501,495,508,516,506,505,504,508,510,499,510,539,523,524,520,527,531,526,523,528,531,525,522,529,539,533,548,546,529,541,537,536,516,519,512,513,508,512,518,510,514,520,507,505,517,520,513,517,513,518,538,560,555,565,565,555,507,521,519,521,510,519,519,525,513,512,472,488,489,488,483,490,484,482,486,480,443,460,464,458,456,459,447,460,459,476,487,480,483,536,535,523,530,522,529,525,522,520,515,522,523,522,525,569,564,568,550,558,531,547,568,568,569,549,554,563,561,557,565,497,469,484,480,480,467,545,534,528,528,536,541,535,531,531,522,533,542,536,528,536,577,569,567,568,564,577,566,570,571,565,560,572,545,541,560,550,555,552,550,511,513,517,505,526,480,480,472,478,483,482,477,485,482,476,484,481,440,460,453,452,438,447,438,448,444,441,549,559,553,558,551,554,558,558,543,548,551,534,550,554,550,547,541,543,541,546,498,504,514,491,483,483,477,483,478,476,480,467,473,471,467,472,470,470,493,504,501,546,553,554,552,546,549,561,556,552,557,544,551,520,516,510,531,524,516,517,522,529,525,513,527,530,517,534,514,495,499,495,502,506,497,499,500,484,479,482,479,480,482,481,486,478,483,473,482,478,484,479,481,480,481,481,485,491,510,505,502,505,505,510,507,508,506,508,519,540,533,537,533,549,501,513,505,516,503,551,551,539,549,552,547,552,540,544,542,549,538,541,542,549,550,547,540,547,506,504,494,497,509,495,507,510,500,514,507,499,498,535,527,526,539,533,528,534,536,527,532,531,535,534,539,541,534,530,537,539,529,530,525,522,520,522,524,527,516,519,529,522,523,519,522,522,516,515,514,510,516,510,518,513,521,511,515,519,522,535,533,523,528,525,531,573,577,569,574,567,574,549,546,546,545,545,537,537,531,544,497,492,500,493,500,501,500,508,506,493,496,496,505,508,540,542,545,536,549,536,534,545,548,546,558,566,563,565,573,562,564,573,565,566,562,571,575,576,525,532,525,525,526,528,527,532,533,524,533,530,520,564,553,562,554,560,567,562,511,524,522,524,523,527,531,546,546,541,547,540,576,570,570,573,570,563,582,585,575,562,535,517,510,526,517,510,514,515,516,513,510,517,511,485,485,491,484,488,485,491,499,494,493,500,503,502,499,493,500,567,552,550,544,564,555,558,557,543,526,528,539,533,530,532,535,535,532,533,536,529,532,536,536,559,562,567,565,551,553,563,562,563,565,561,549,552,520,523,506,520,517,512,523,515,505,524,512,507,483,485,490,474,479,475,478,483,480,480,468,465,468,461,563,565,508,516,498,512,512,512,508,546,556,552,557,555,547,563,564,551,550,555,553,550,533,529,525,525,519,518,526,521,520,485,496,503,491,506,504,494,497,497,499,502,496,495,496,495,500,498,496,495,505,599,579,593,578,513,509,519,514,503,511,528,537,537,530,527,549,550,540,548,542,542,545,547,542,549,569,550,515,520,523,513,527,515,538,523,524,530,516,528,520,524,524,515,506,498,501,499,499,497,494,498,503,501,498,498,510,500,456,453,457,458,455,455,456,458,453,449,463,459,479,474,473,466,585,561,572,590,578,572,574,584,576,562,573,577,588,482,461,481,477,473,495,468,479,488,486,487,499,542,537,548,537,542,552,543,542,546,537,546,538,542,539,534,540,539,537,540,540,540,534,536,546,533,530,491,484,476,455,469,475,466,472,476,474,486,466,471,476,480,479,474,479,479,481,507,491,502,499,501,503,501,495,500,494,495,496,555,536,533,530,541,533,523,527,518,532,534,537,477,487,481,478,463,473,478,477,544,561,549,563,547,547,559,540,502,511,517,515,516,507,540,535,540,538,533,547,547,545,542,531,532,516,518,522,517,515,530,514,513,512,519,523,523,507,529,521,514,584,588,585,591,606,592,587,545,545,538,532,539,543,528,539,543,538,527,537,541,546,557,552,548,549,555,563,545,551,566,556,485,489,488,484,451,471,473,485,468,476,481,476,491,484,486,565,557,577,560,552,592,568,566,557,567,571,566,553,572,520,527,527,520,515,506,532,527,534,500,499,504,510,500,501,496,499,500,502,496,493,494,497,492,450,461,457,449,462,454,460,450,460,456,451,450,461,458,452,498,496,496,496,492,487,484,494,491,488,499,481,498,488,496,503,495,545,539,554,547,554,539,546,540,539,548,552,525,511,519,525,519,519,523,515,511,519,601,587,588,598,588,595,600,581,582,594,603,588,532,535,515,509,522,505,528,522,525,504,514,519,515,512,520,513,513,510,507,516,510,517,587,586,600,603,549,551,542,542,546,548,541,538,533,531,534,528,537,523,530,527,526,532,531,526,534,522,525,529,553,549,536,547,546,559,556,518,504,500,496,497,497,488,509,503,507,501,448,460,465,463,457,459,467,463,465,468,467,454,469,460,457,453,460,459,453,461,452,468,460,457,457,461,460,454,455,454,460,458,456,460,454,466,458,460,456,462,447,464,457,461,455,576,567,585,593,585,587,586,592,573,576,574,577,524,520,513,519,518,507,518,514,505,518,517,518,523,517,520,516,583,583,575,578,582,580,589,579,589,576,597,591,592,581,571,577,560,551,553,560,556,548,556,550,556,557,555,559,553,552,563,548,510,515,516,505,500,500,498,503,498,501,503,492,496,500,483,479,500,489,500,506,490,497,491,500,501,497,502,494,500,558,523,531,539,532,527,524,531,530,532,526,523,531,530,522,533,529,528,530,516,527,530,534,533,537,536,533,527,524,528,531,531,481,485,480,492,495,482,495,497,489,483,488,484,490,485,551,547,555,550,544,550,552,552,541,559,536,545,549,539,541,538,540,531,542,552,545,520,526,527,521,521,521,524,560,535,544,542,560,559,546,544,538,551,547,542,488,490,492,505,488,490,483,489,489,496,494,494,488,463,477,473,472,475,473,470,467,474,470,475,474,472,481,471,474,501,494,506,499,497,500,503,501,486,493,497,504,494,504,530,539,539,542,521,526,526,521,538,530,522,532,537,530,530,524,525,528,530,529,519,516,530,477,601,584,594,588,587,582,579,582,586,572,575,576,583,570,592,589,597,571,549,533,539,522,528,534,537,536,516,540,528,542,532,520,504,512,513,555,552,532,546,544,552,548,497,491,500,498,496,468,461,455,462,458,468,491,498,501,502,501,498,487,507,533,548,553,545,553,548,551,547,551,548,552,535,534,527,520,531,524,524,518,527,568,554,563,555,568,560,514,562,561,557,553,564,556,571,569,539,561,563,562,544,557,512,529,524,532,525,534,515,514,512,511,505,504,505,507,513,500,487,486,483,493,477,484,474,480,486,479,518,508,516,512,512,573,552,555,563,558,561,549,554,549,561,547,509,504,492,494,494,512,496,505,490,500,504,498,505,507,512,510,490,499,465,481,475,476,472,478,467,480,472,468,501,499,504,494,490,568,546,566,546,559,550,544,553,556,551,547,555,522,513,503,514,514,477,494,501,494,504,504,505,493,511,498,502,498,504,498,495,492,503,537,543,544,545,543,548,542,543,542,545,540,536,550,551,562,556,561,561,549,553,551,548,569,562,551,558,518,505,467,464,473,464,466,448,437,436,441,456,554,559,557,542,550,542,551,548,555,548,552,549,554,553,557,545,547,545,539,550,547,557,544,548,549,500,499,487,492,483,500,520,448,439,438,441,449,439,433,445,427,439,446,439,476,496,487,493,504,489,483,494,491,498,485,498,488,532,537,544,525,527,527,537,535,462,475,480,477,485,472,478,481,478,475,553,548,563,558,550,555,538,497,496,495,483,502,484,489,494,483,475,505,570,563,573,561,560,553,556,557,575,477,480,470,479,480,516,529,524,522,526,529,526,514,523,521,521,514,518,516,509,516,517,505,515,517,510,516,538,535,535,530,534,525,529,528,556,562,558,561,574,560,523,519,534,509,517,516,536,503,522,516,521,577,582,590,580,579,587,577,485,527,546,513,516,556,542,518,471,460,454,465,462,462,451,472,462,460,458,460,554,547,550,549,543,553,547,541,558,547,545,544,497,527,491,502,515,504,504,508,505,516,505,483,487,486,484,484,487,479,485,472,469,478,476,476,476,475,508,507,502,502,500,510,508,504,510,507,499,504,503,505,505,557,571,549,536,545,538,549,543,549,538,541,551,546,529,510,507,516,504,512,508,510,509,498,500,520,514,513,504,501,512,508,508,501,488,487,485,481,490,481,465,474,463,466,469,463,466,466,466,468,465,465,468,440,437,445,438,435,434,435,423,431,429,426,504,504,509,504,498,499,505,497,491,486,499,493,555,560,559,560,565,556,568,564,569,517,521,516,520,526,521,502,488,488,490,496,490,488,488,498,488,497,493,492,497,470,467,474,470,464,461,465,470,461,469,480,468,470,473,470,462,470,475,465,472,464,483,478,483,484,482,480,482,488,482,481,479,481,480,481,478,485,483,478,500,521,516,507,521,519,514,594,565,580,577,574,585,579,577,518,526,523,525,522,532,528,584,581,569,583,552,555,550,552,544,549,548,545,549,548,550,548,549,521,530,523,512,494,498,500,496,496,499,477,495,480,496,506,495,503,590,586,596,596,581,588,590,586,597,595,589,584,605,496,512,511,519,543,548,538,546,548,544,547,541,545,545,543,544,544,551,539,543,545,543,518,527,524,544,537,552,535,546,550,502,505,503,501,509,502,512,496,511,510,500,501,537,533,533,529,530,533,529,527,531,525,580,555,567,564,575,564,565,588,535,533,546,537,549,540,543,550,535,531,542,543,466,482,478,473,476,495,492,469,446,461,452,559,553,567,561,578,575,573,570,565,583,566,569,569,569,569,571,572,573,572,587,518,534,529,529,530,526,533,538,536,540,514,520,521,523,523,523,520,524,527,543,544,536,540,539,531,535,535,536,534,517,521,520,518,521,523,517,523,517,521,522,516,523,562,547,552,554,549,563,545,546,548,553,556,551,544,544,562,555,552,551,551,562,549,545,545,539,552,543,548,550,545,549,555,544,549,544,543,480,484,488,492,492,509,495,496,492,486,480,485,495,495,491,494,481,446,435,448,436,450,444,506,484,501,562,553,549,553,563,555,556,553,492,504,502,497,511,512,505,512,515,506,502,507,509,481,478,486,491,483,488,492,471,469,475,468,474,473,470,462,473,470,469,476,467,470,475,466,506,506,503,506,507,505,504,495,505,496,505,560,543,580,572,570,568,569,573,575,560,571,577,581,584,563,561,558,520,494,519,518,507,524,514,508,512,509,507,532,541,459,461,469,469,473,478,479,485,474,476,471,484,472,464,470,484,571,555,568,574,569,562,574,565,498,500,492,503,488,485,491,492,490,502,487,495,494,548,536,555,546,554,542,563,548,554,563,550,543,558,551,538,573,511,505,501,508,514,508,500,511,503,510,501,534,530,540,534,528,532,534,534,537,532,532,530,532,525,552,562,555,547,558,561,479,484,481,486,470,484,480,478,474,489,472,462,473,472,478,480,478,477,545,566,556,577,550,563,556,465,485,484,480,482,478,457,484,485,470,471,472,451,460,462,460,462,458,588,599,582,577,601,541,542,533,531,545,544,531,548,543,536,541,534,532,542,532,496,481,481,484,485,490,496,488,494,484,500,486,495,487,522,525,520,517,513,520,524,517,522,522,517,522,551,548,549,555,548,551,543,559,541,552,550,559,553,546,557,544,552,551,534,558,527,522,523,532,526,523,546,549,543,553,547,552,557,538,545,493,488,495,491,501,499,494,500,514,513,507,499,519,515,502,515,545,544,534,546,541,542,544,530,537,524,526,521,532,536,523,529,528,522,525,520,528,529,530,530,531,529,525,529,546,544,541,545,555,547,544,543,539,533,557,544,512,488,484,490,489,497,480,481,491,499,496,500,489,485,492,483,492,491,441,447,445,438,435,441,438,439,436,432,438,440,453,423,495,492,489,482,490,493,494,488,494,497,488,485,489,489,545,546,556,553,550,507,518,499,504,500,508,502,482,490,487,485,489,481,485,483,485,490,490,486,492,487,472,469,524,496,511,495,498,506,506,507,562,550,562,552,519,522,526,524,521,524,524,497,497,489,488,501,497,501,496,495,495,554,565,577,570,567,566,569,570,560,561,565,555,568,518,514,505,521,515,493,491,489,493,488,492,492,487,484,502,505,507,502,508,503,509,502,501,506,515,502,545,549,539,563,548,543,548,541,531,548,546,534,558,544,492,491,495,489,485,486,500,497,483,503,490,502,496,495,496,494,496,500,496,491,493,490,499,502,557,544,554,553,543,547,555,542,532,518,524,530,554,557,557,563,554,574,533,518,512,519,517,524,529,525,527,518,563,545,546,534,552,539,543,552,552,515,512,507,515,497,519,500,504,515,511,506,522,504,477,481,487,479,487,490,480,487,487,486,488,486,484,484,484,487,488,485,482,486,485,482,488,489,489,486,490,484,493,492,488,454,461,456,462,467,455,464,454,458,467,460,505,485,563,566,566,574,568,563,550,569,575,573,584,574,556,558,570,573,513,522,511,507,502,514,512,469,468,489,500,491,493,533,546,551,528,550,516,489,497,500,513,496,492,498,502,493,507,470,474,468,465,468,478,466,469,468,466,469,472,476,443,453,444,435,448,446,441,449,444,437,442,437,443,538,553,538,552,535,548,532,540,555,544,543,547,525,536,535,543,546,544,544,550,542,545,538,548,540,543,549,549,548,548,548,550,525,522,512,517,514,519,515,516,523,515,521,524,521,521,522,524,520,523,515,531,515,521,565,579,583,588,591,582,575,588,578,585,504,525,519,536,520,513,461,474,484,484,471,476,472,476,545,553,543,556,573,547,551,558,555,493,480,485,480,493,500,484,584,571,568,569,573,563,576,575,577,578,549,541,535,538,542,544,524,530,525,522,513,529,525,526,526,549,563,555,549,571,544,549,574,473,499,510,491,503,498,584,570,576,584,595,572,585,539,542,534,547,543,548,554,555,555,546,548,541,545,546,491,497,499,501,500,498,495,489,494,503,491,508,498,500,490,500,496,496,496,526,515,512,517,508,559,555,531,535,536,546,535,550,541,535,540,543,540,557,540,538,538,547,541,545,539,487,476,482,486,485,506,496,496,495,501,506,499,553,550,551,550,557,547,560,550,551,493,497,495,490,493,480,505,490,486,497,486,492,480,485,494,501,486,497,499,485,479,476,486,481,484,488,489,481,487,488,481,486,473,579,556,565,564,552,569,494,491,484,483,479,499,503,487,496,501,501,485,489,495,468,474,467,468,460,466,473,571,573,573,566,555,571,555,555,560,498,504,493,503,501,512,496,494,492,492,500,447,444,443,450,443,440,446,455,447,456,454,456,549,555,548,542,551,545,556,557,557,550,552,551,550,558,557,536,547,544,551,547,554,551,538,544,534,547,490,488,482,477,483,495,501,486,492,490,491,500,494,555,563,560,575,566,564,559,567,558,567,572,561,574,562,560,495,491,495,481,499,493,493,504,485,499,498,489,502,502,489,463,462,466,476,475,464,471,470,469,469,557,557,566,547,553,564,555,545,548,539,545,534,531,565,551,544,547,549,549,518,508,512,507,514,509,499,509,497,507,505,507,507,546,560,550,563,560,558,566,565,575,561,581,525,525,524,523,532,533,526,525,524,523,520,533,557,557,558,543,559,543,555,518,515,514,513,518,521,515,522,523,517,520,510,510,521,522,517,509,515,510,515,525,519,517,529,519,528,527,526,529,527,527,479,476,486,473,483,485,489,492,574,542,567,556,560,553,556,563,543,556,559,548,560,565,508,499,498,494,532,491,502,504,498,487,513,480,466,463,466,466,472,462,466,468,459,462,467,466,470,464,462,458,570,554,557,535,540,555,549,543,558,558,560,516,513,519,514,529,528,522,525,540,528,526,532,528,530,522,517,524,524,518,516,516,513,516,513,516,518,520,515,513,511,511,519,516,515,516,515,510,514,514,548,546,539,548,569,572,570,586,569,569,571,566,561,563,559,555,576,579,569,577,538,518,508,509,537,520,512,528,513,528,493,494,492,487,493,491,492,493,493,486,510,501,504,506,512,500,504,502,500,532,539,531,534,527,538,522,538,528,527,536,543,522,525,491,486,497,492,498,494,490,499,497,552,549,552,562,559,522,526,524,535,522,516,523,523,529,520,523,520,523,523,529,538,542,536,542,543,534,535,547,532,542,532,529,547,544,541,528,497,484,499,494,493,496,495,575,552,551,567,559,562,560,553,554,562,559,559,557,567,546,549,540,542,532,544,490,504,502,497,496,472,475,474,473,475,461,474,465,467,469,464,470,476,465,472,472,478,468,472,469,470,469,467,459,462,463,469,467,540,489,483,477,480,466,492,492,507,508,498,496,554,552,554,543,544,484,498,495,500,499,505,487,494,488,498,494,496,497,555,547,550,561,559,561,556,561,559,544,557,555,564,560,547,551,560,527,532,537,525,530,531,527,526,525,525,528,528,530,538,546,541,538,545,541,531,540,544,543,533,541,524,529,529,532,535,529,528,564,562,553,559,547,553,542,565,562,542,556,549,556,556,501,500,503,514,507,503,499,508,505,507,499,515,524,505,461,457,454,453,451,450,442,449,452,458,450,454,456,447,449,446,532,523,529,526,528,532,532,535,531,527,523,524,527,527,526,527,522,533,532,526,523,526,526,531,525,527,546,560,564,551,559,551,558,555,521,528,529,522,524,521,526,501,505,502,479,474,485,431,439,446,441,456,443,440,441,433,432,532,539,538,544,543,536,538,543,556,549,566,570,557,528,500,524,509,531,548,523,524,506,520,473,450,454,450,465,454,455,443,462,454,448,463,457,457,459,465,519,522,524,516,530,527,529,523,527,524,524,522,524,530,542,539,548,551,533,536,546,539,542,544,548,535,545,547,560,550,564,548,551,557,516,508,534,524,522,512,508,516,513,516,520,519,515,519,488,492,493,487,494,484,481,470,476,473,475,473,476,466,477,472,474,476,480,460,474,468,467,456,459,508,512,517,503,508,505,515,504,505,514,563,552,561,560,554,558,559,561,565,560,555,559,563,555,548,565,562,555,499,497,499,502,501,516,500,497,506,504,498,453,456,449,444,443,485,486,455,463,466,479,477,466,567,585,535,539,563,556,569,573,559,563,570,562,529,535,532,535,539,532,532,535,532,537,531,566,558,559,566,559,507,523,526,530,519,525,523,508,529,523,517,523,504,500,503,507,501,499,502,487,492,482,485,478,486,485,482,482,484,480,459,454,438,449,451,455,442,454,451,451,449,440,448,449,452,472,463,470,472,476,464,585,586,574,585,603,598,591,551,545,546,501,491,507,506,504,500,497,505,494,510,508,489,493,501,477,491,491,490,483,483,502,496,493,491,494,484,483,481,483,480,478,479,476,478,482,478,478,443,452,442,445,462,442,444,443,442,453,459,429,447,440,446,545,551,535,550,562,544,548,561,558,549,555,546,541,556,553,540,553,544,550,483,490,502,430,531,536,542,546,534,534,544,538,543,538,541,543,543,552,546,550,555,489,448,441,452,433,432,452,425,442,443,433,526,513,516,530,517,515,523,515,507,531,538,535,533,529,534,527,529,547,550,535,553,537,550,483,475,465,489,471,465,471,474,546,549,542,542,540,546,546,539,543,543,548,533,540,537,534,544,548,548,540,538,547,546,547,540,545,532,544,538,518,520,524,521,516,520,528,517,535,530,539,548,550,552,542,540,543,544,538,532,531,528,529,533,560,567,562,553,576,583,562,536,509,510,514,530,496,517,514,528,518,515,513,490,477,481,484,481,481,485,481,487,478,481,487,484,474,464,474,462,477,473,475,471,476,490,498,499,490,495,489,497,465,475,459,465,459,471,466,461,467,471,464,464,473,466,464,463,471,470,469,467,478,475,479,471,456,464,461,471,466,462,535,551,556,546,516,542,526,525,551,542,561,555,511,517,510,517,508,513,511,510,508,506,521,593,569,588,563,561,578,569,571,514,521,517,530,523,507,521,509,516,511,529,527,523,522,528,515,487,483,490,483,476,485,481,499,502,500,500,500,504,509,503,554,563,543,543,545,553,551,554,550,552,551,551,558,511,502,502,507,508,509,509,501,512,502,500,508,500,541,533,531,540,535,537,536,536,531,542,533,537,548,540,544,543,541,538,539,548,541,546,548,551,567,560,566 0 233.909891 0 0 0 diff --git a/test/dna_r10_amp_noise.exp b/test/dna_r10_amp_noise.exp old mode 100644 new mode 100755 index 1bc6d3c..f3564a7 --- a/test/dna_r10_amp_noise.exp +++ b/test/dna_r10_amp_noise.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO114M +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!10720!- 0 2048 -106.458412 281.345551 5000 139496 860,863,841,860,874,864,566,558,553,558,561,572,565,565,554,562,549,567,558,569,567,568,563,558,565,575,558,575,571,566,570,564,567,555,564,556,565,570,566,563,560,568,569,567,545,533,542,545,541,543,536,531,542,535,547,627,624,629,622,620,624,618,628,633,629,633,618,632,666,667,665,657,672,673,676,668,657,653,648,667,654,668,662,661,662,939,938,983,949,947,944,950,961,955,960,956,958,961,956,960,952,972,791,792,786,775,775,777,780,789,786,787,785,784,790,796,783,786,783,793,662,646,660,648,643,645,642,648,633,653,644,641,651,639,643,655,757,752,771,783,774,778,781,772,777,774,772,774,763,730,712,719,725,710,715,712,720,720,715,718,724,710,1048,1039,1027,1036,1029,1019,1034,1045,1029,1024,1034,1037,890,895,895,899,899,877,894,893,886,896,890,893,885,890,890,909,892,976,967,976,979,974,985,975,975,977,829,838,846,829,852,854,833,843,853,817,831,827,832,836,986,978,977,996,983,977,973,977,985,981,983,979,970,978,981,984,986,901,889,901,894,901,894,897,902,904,896,905,897,891,901,908,896,898,771,772,762,760,778,773,767,765,774,774,768,767,597,621,609,600,611,596,609,614,611,607,612,605,611,597,610,602,588,969,948,959,966,971,967,979,966,955,977,974,972,937,929,931,946,943,948,941,942,937,940,933,944,945,942,985,999,993,997,980,991,992,1000,999,984,995,996,989,986,988,821,812,825,815,825,833,828,821,826,824,829,822,991,1005,1008,999,977,991,1008,1007,1011,844,855,856,847,861,864,867,848,868,858,868,853,857,625,610,607,621,614,607,627,628,598,611,617,596,611,604,606,598,616,612,608,606,600,884,892,871,898,892,892,880,912,886,891,889,916,884,896,683,682,694,693,687,696,683,694,688,696,604,590,589,603,599,601,593,588,592,603,605,590,791,805,801,808,786,812,794,808,797,804,812,800,805,696,683,676,685,684,675,685,669,678,685,686,679,672,676,671,665,675,605,615,613,619,619,609,607,618,621,619,620,997,1015,1030,1027,1017,1012,1005,1002,993,1019,992,1014,1001,1004,674,677,680,678,685,668,678,985,989,986,996,1025,999,992,998,997,998,1013,996,844,804,787,803,797,798,805,798,811,613,622,636,646,639,612,620,600,624,623,616,630,615,632,643,641,628,621,585,584,587,575,581,598,582,594,580,589,591,568,586,589,923,902,913,917,919,903,933,914,896,906,912,915,907,925,923,910,919,926,899,929,921,918,762,753,768,751,755,751,744,622,629,618,603,628,617,620,626,618,629,615,623,629,576,577,569,573,575,585,575,576,627,621,623,614,620,614,611,617,616,621,611,622,602,621,854,849,876,859,869,861,850,878,877,859,845,854,864,983,975,978,966,985,976,978,963,970,967,974,979,981,830,821,811,826,832,837,823,806,819,803,832,813,838,817,826,813,821,828,525,553,529,547,550,550,546,540,557,546,572,570,559,554,563,558,553,539,548,559,614,605,605,599,610,607,612,599,978,980,968,992,978,980,980,975,987,969,995,979,980,970,986,983,976,968,682,651,679,673,678,658,678,675,675,677,665,868,862,845,855,856,854,868,822,842,853,848,863,888,905,912,902,909,902,912,904,909,902,902,915,919,915,907,917,919,906,781,800,800,803,796,801,807,803,816,808,787,811,802,810,799,817,808,798,799,803,802,601,623,616,608,604,606,610,607,613,606,612,607,607,612,614,604,892,878,890,893,894,873,892,1020,1015,1015,1010,1011,1022,1004,1025,1025,1015,885,880,866,888,893,883,875,890,881,890,876,884,885,890,896,943,953,947,936,941,943,950,953,947,948,957,824,809,808,800,803,803,803,790,803,790,806,821,797,820,807,813,818,789,583,574,579,586,582,578,1123,1124,1123,1118,1168,1111,1125,1109,1147,1117,1131,1119,1141,1118,1133,1170,1116,963,959,953,953,959,955,966,967,977,974,963,958,957,956,957,972,640,630,634,622,640,636,648,634,637,643,665,644,640,926,922,933,931,940,931,935,928,926,944,966,952,963,955,948,955,951,954,943,946,943,955,876,884,875,890,875,880,901,867,891,1081,1064,1087,1067,1080,1078,1071,1076,1067,1065,1088,1082,1089,925,926,920,935,940,922,937,937,931,1049,1050,1046,1038,1043,1040,1043,1045,1055,1042,1032,1035,1041,1035,1035,944,932,929,926,953,917,928,799,795,793,806,797,804,796,794,804,807,806,798,625,619,619,622,612,624,622,620,622,621,625,624,610,1036,1008,1036,1025,1026,1053,1031,1030,1027,1050,1033,1024,1021,1032,1000,1036,1029,1029,1033,1033,1026,1044,1015,1030,1016,887,898,860,890,885,899,881,883,886,881,874,873,887,896,835,849,844,850,840,847,839,844,851,831,848,845,833,841,775,773,784,773,781,782,768,651,667,644,652,662,657,662,668,657,653,640,655,640,647,643,641,641,642,653,650,649,644,645,852,852,845,838,842,854,842,856,858,826,850,858,840,996,1004,1006,1014,1025,1003,1017,1008,998,1008,1016,1020,1017,1006,1008,931,936,931,942,926,927,855,850,859,854,843,853,836,849,838,843,931,936,926,930,943,934,936,941,928,936,930,1021,1018,1022,1015,1017,1025,1030,1026,1013,868,883,853,862,860,855,860,869,862,857,1076,1081,1068,1067,1064,1080,1078,936,947,806,813,828,826,823,824,821,815,813,821,809,828,808,840,824,834,1084,1069,1070,1079,1083,1064,1079,1071,1044,1060,1065,1074,1086,1064,1064,904,895,909,912,891,911,913,899,914,894,911,919,1028,992,1030,1005,1011,1005,1010,1002,1018,1022,1020,1025,1021,1026,1012,1018,941,948,936,944,950,944,934,947,947,933,938,1005,1001,1011,905,908,913,896,908,903,908,925,901,895,894,912,908,896,909,863,860,873,864,863,862,866,855,866,862,856,863,749,747,763,758,754,742,756,762,747,773,750,759,759,752,762,760,765,767,751,1025,1050,1053,1033,1069,1060,1049,1046,1049,1050,888,892,886,887,895,890,891,891,880,887,879,878,1046,1035,1045,1051,1040,1022,1048,1045,1032,1042,1050,1029,1041,1038,908,885,886,911,899,898,888,905,906,890,894,885,897,894,609,608,609,599,603,599,595,611,596,608,586,619,621,603,603,602,576,576,573,575,572,567,567,569,569,567,571,586,578,573,577,585,570,575,572,577,896,893,890,862,878,875,902,880,890,907,655,644,663,665,655,667,646,510,517,520,523,515,511,507,510,511,521,514,507,503,516,517,515,509,499,517,521,517,504,512,519,503,511,508,506,500,504,519,519,547,572,552,561,557,560,566,566,548,545,558,560,547,558,556,565,701,690,687,690,699,680,690,678,677,695,691,694,693,688,595,597,604,604,594,595,600,608,601,599,594,606,605,595,603,602,610,888,922,928,924,902,933,933,934,912,907,913,911,926,893,869,872,880,881,878,890,865,871,867,889,880,871,893,876,749,741,741,737,731,750,736,757,726,727,730,736,741,620,605,614,604,612,609,620,615,605,610,609,617,1081,1114,1106,1115,1096,1085,1112,1074,861,875,861,865,879,840,546,546,561,569,545,553,557,533,564,565,560,566,543,539,559,560,548,537,536,547,551,540,539,529,536,543,552,540,548,618,638,638,625,621,626,628,623,627,625,623,616,612,632,614,626,618,625,623,632,636,635,632,636,632,638,632,631,628,634,623,623,895,894,902,906,896,914,900,922,909,891,889,916,900,868,874,872,869,875,880,883,884,878,868,865,870,878,874,865,866,807,832,831,825,838,836,826,838,827,824,820,824,820,868,863,861,865,846,852,856,849,861,733,726,741,744,724,752,745,748,744,728,732,740,752,745,752,760,750,752,745,737,732,731,742,753,755,732,738,970,958,972,956,958,965,966,953,972,960,964,955,971,959,969,966,960,961,963,976,969,970,971,969,967,972,966,976,966,963,833,822,835,830,833,831,819,826,806,836,827,828,971,954,965,952,958,951,958,955,962,960,955,955,849,855,850,856,853,846,855,852,850,853,851,850,605,620,630,634,623,632,628,625,618,634,646,656,647,1036,1021,1022,1033,1021,1036,1036,1037,1028,1026,1035,1039,1062,1035,869,872,882,868,888,880,860,982,985,991,982,984,989,986,988,987,978,982,979,985,986,897,882,895,868,893,882,867,881,875,885,874,894,881,891,900,871,887,1050,1041,1043,1039,1042,1043,1050,1037,1050,1045,1039,1050,1050,1049,1036,958,955,963,954,943,941,954,967,951,950,958,945,952,957,934,962,952,949,950,829,827,823,827,829,823,831,833,835,809,830,818,815,819,836,763,762,766,771,756,769,784,754,765,762,758,765,763,763,762,756,658,647,640,657,656,657,667,654,652,653,664,649,653,650,653,664,664,644,676,661,667,670,652,666,659,661,668,658,659,940,967,934,943,952,937,944,931,939,672,682,672,681,682,686,689,677,679,671,677,671,1050,1055,1047,1080,1054,1035,1056,1053,1054,831,839,849,859,827,850,858,853,848,840,854,841,848,826,550,554,547,561,556,548,544,555,548,553,542,560,602,604,608,620,593,607,618,606,614,602,608,924,904,916,909,926,928,916,920,930,945,930,905,932,940,975,975,992,975,983,985,979,992,976,995,984,979,992,988,976,985,896,904,909,888,893,903,899,898,877,893,720,718,732,725,712,725,724,721,617,624,616,629,634,632,619,623,627,604,618,628,610,591,595,599,586,591,600,594,590,603,591,973,988,999,979,985,996,973,993,978,983,975,962,947,976,980,979,976,983,977,968,987,1000,1009,996,1005,996,1005,992,1000,1012,887,897,879,887,880,874,880,884,888,883,897,900,880,874,882,604,586,591,592,600,582,595,610,586,587,988,984,1011,1009,1007,1010,1002,1009,1013,1015,1009,1015,837,847,841,838,824,860,842,852,839,841,813,832,851,841,648,607,617,622,637,620,616,640,628,635,640,632,623,1125,1112,1144,1135,1122,1167,1126,1111,1149,1153,1133,1148,1129,1132,1121,1130,1057,1040,1049,1045,1040,1060,1038,1054,1044,906,923,914,911,923,912,913,920,927,918,914,724,723,718,586,602,588,602,598,593,583,608,602,604,599,593,591,586,1039,1032,1023,1008,1011,1020,1033,1028,1027,1043,1027,881,871,896,887,893,885,876,877,894,879,1087,1088,1081,1077,1074,1095,1088,1096,1067,1098,1085,1097,1088,1076,1082,1092,1083,1056,942,935,931,947,944,932,926,942,947,952,941,940,623,624,642,618,618,608,619,595,600,619,612,606,617,617,605,621,612,609,622,638,607,1011,1027,1035,1014,1023,1048,1010,1015,1005,1008,1034,1006,1016,942,952,934,949,936,956,938,959,942,938,946,931,937,875,868,870,862,864,862,873,864,867,871,858,866,861,871,874,863,661,673,669,665,671,659,668,1136,1174,1145,1128,1169,1168,1174,1162,1179,927,926,921,917,917,925,917,910,929,910,920,920,1032,1035,1042,1042,1036,1025,1024,1029,1022,1038,1039,838,826,817,829,821,827,798,828,825,828,835,819,847,809,815,838,817,808,822,593,583,589,585,586,587,602,588,590,583,577,593,585,593,587,586,588,589,579,875,899,867,859,884,648,639,657,672,645,648,663,637,653,654,524,531,523,525,522,519,516,520,516,524,526,527,523,508,520,528,507,518,519,529,491,500,495,494,506,487,480,494,492,494,489,497,503,521,526,527,526,529,519,528,530,522,553,529,529,517,546,572,588,575,579,578,578,583,588,583,584,591,578,569,580,581,579,586,590,577,597,592,592,592,594,595,605,591,596,602,601,590,596,596,593,561,552,554,552,556,553,554,558,557,554,554,549,553,590,581,576,574,575,578,580,575,578,572,572,584,576,573,571,577,580,571,576,559,548,548,546,540,545,540,548,549,550,546,549,547,904,932,941,924,919,937,914,911,933,936,923,928,907,938,917,920,940,927,931,929,926,740,707,716,746,731,729,754,750,724,736,733,739,719,720,731,745,805,818,789,803,826,798,803,786,806,804,801,806,790,672,668,671,649,673,664,662,654,658,663,585,600,593,587,599,604,594,606,606,601,601,604,586,605,602,597,603,600,594,600,604,1038,1020,1017,1040,1038,1028,1048,1020,1024,1039,1030,1015,1023,1026,1057,1054,851,860,858,862,865,840,847,869,843,860,857,858,864,862,854,871,847,850,627,628,629,625,633,618,612,616,615,615,613,635,630,623,616,615,1072,1075,1092,1064,1073,1094,1076,1100,1069,1091,1076,1081,1070,1108,1111,1102,871,885,864,875,865,880,873,890,863,613,598,608,617,598,593,591,606,609,600,602,594,620,602,597,1087,1100,1064,1095,1078,1077,1078,1062,1075,1103,1093,1092,1062,1064,1102,1094,1089,1072,1082,912,905,913,900,916,900,952,942,964,951,952,961,965,941,955,951,956,952,957,836,852,834,844,1049,1038,1033,1041,1032,1050,1040,1005,1039,1035,1030,1032,1032,1043,1027,1035,1038,1032,1022,1034,946,938,936,939,942,937,929,937,936,934,931,927,927,953,957,964,966,958,947,944,938,939,946,941,944,951,948,950,942,946,942,944,945,945,940,934,813,815,820,792,821,805,830,815,816,816,818,827,814,816,811,812,834,825,823,553,564,554,564,562,556,549,556,557,557,563,548,550,553,566,589,579,592,588,594,589,594,588,598,595,603,645,662,656,654,661,644,656,648,678,942,961,946,944,943,946,949,945,955,939,938,940,749,764,746,756,744,767,753,743,751,751,739,739,547,593,576,577,589,580,585,592,573,574,582,564,584,581,566,588,576,586,573,529,520,507,525,525,529,512,520,529,532,519,510,510,528,518,520,525,523,518,521,513,895,894,872,869,869,871,865,877,849,859,866,865,881,862,867,889,878,702,717,719,718,718,702,714,724,722,723,719,718,733,736,699,714,704,814,815,812,812,803,821,823,807,816,820,814,801,811,828,818,811,821,816,805,959,959,969,958,951,982,966,961,960,957,957,972,973,965,964,863,872,868,860,876,821,816,816,835,820,822,824,820,828,817,829,832,829,754,755,748,742,751,753,747,751,632,651,629,635,638,641,628,637,867,860,876,868,866,838,869,860,866,863,869,857,886,859,851,847,638,643,643,643,634,640,653,644,633,641,1050,1057,1061,1032,1063,1040,1065,1030,1047,1050,1041,1014,1066,1023,1020,895,893,894,889,862,888,874,892,884,527,548,530,559,544,545,533,579,581,589,591,592,589,586,594,596,597,591,589,582,595,910,889,896,903,896,901,918,913,908,898,911,899,892,905,792,787,776,779,774,772,777,791,603,606,599,603,608,595,594,603,595,591,597,594,592,595,591,601,910,933,936,941,922,962,943,932,930,942,935,939,936,949,916,918,923,931,936,930,933,920,925,924,922,826,827,827,827,827,828,822,840,847,830,837,827,605,603,598,593,599,602,603,598,605,610,611,601,605,623,631,639,634,630,625,630,640,636,631,578,571,567,556,588,577,567,563,573,562,569,570,575,568,570,576,576,569,570,567,564,582,571,570,572,574,575,575,576,579,575,569,578,575,569,581,578,578,575,575,1074,1125,1124,1133,1086,1139,1141,1123,1108,1098,1088,1091,1107,1153,1115,1128,945,985,980,963,965,963,987,967,970,985,953,980,986,962,968,979,979,953,552,557,577,541,559,573,556,563,572,554,567,574,565,574,582,570,591,560,581,566,588,576,578,579,569,914,914,953,919,912,910,907,925,882,917,906,930,926,903,899,898,901,926,905,929,809,812,806,816,819,812,812,814,825,821,808,816,818,811,738,734,730,741,751,742,734,725,926,930,913,907,914,914,921,907,911,893,905,901,902,901,895,900,894,875,892,895,893,892,890,751,763,773,749,754,771,772,780,796,773,781,572,582,576,571,579,583,577,577,580,579,573,569,1084,1070,1076,1078,1054,1099,1095,1081,1074,933,924,927,926,937,946,960,937,943,949,918,937,926,948,639,648,643,636,644,629,628,630,641,631,626,633,1009,993,974,1009,991,986,1001,1017,996,991,982,989,1000,1004,1010,980,881,890,901,903,894,907,889,907,896,893,912,917,901,901,896,894,897,544,535,523,531,534,526,542,527,546,524,515,544,545,612,604,605,613,606,603,590,605,609,609,612,605,608,598,602,605,620,620,611,618,610,597,619,629,617,616,609,627,1103,1087,1098,1098,1112,1085,1117,1119,1130,1074,1113,1090,1083,1091,1087,1025,1038,1032,1021,1019,1020,1024,1038,1023,1026,1025,1024,931,899,906,905,898,894,912,906,906,905,908,902,897,920,895,916,595,611,615,623,624,603,599,607,617,619,609,629,574,572,589,573,564,577,572,581,568,582,586,575,570,849,865,870,869,859,867,866,868,874,875,860,859,882,867,851,747,774,766,769,770,779,763,1059,1052,1064,1058,1070,1058,1070,1058,906,894,904,907,892,621,597,592,606,601,613,606,1023,1030,1051,1057,1055,1051,1033,1041,1042,1072,1054,1030,902,902,898,897,897,894,891,923,896,917,908,905,640,648,638,623,662,669,625,649,638,638,653,648,626,652,633,641,641,619,923,921,903,926,926,904,920,917,912,924,925,904,919,911,922,683,691,685,699,685,686,685,686,672,701,701,695,682,851,857,839,852,852,855,843,833,620,620,624,618,630,621,619,641,641,630,631,609,622,630,615,616,977,951,966,977,961,984,953,961,964,960,970,956,961,959,975,950,986,1028,1024,1019,1033,1017,1027,1032,1012,1027,1006,1025,877,882,871,904,895,897,889,874,886,873,883,886,882,898,605,588,587,585,602,600,600,597,610,590,594,596,588,591,600,590,957,958,979,976,979,975,947,970,977,952,995,949,979,946,959,959,952,963,866,844,864,858,853,847,855,852,859,857,614,602,583,594,601,606,597,587,590,606,588,606,609,590,724,714,711,737,1025,1019,1026,1020,1001,1010,1017,1028,1017,1023,1018,1006,1019,1022,999,1025,745,754,757,761,749,763,759,755,762,755,753,769,750,754,776,771,778,777,769,773,768,762,765,762,782,779,776,758,719,724,713,724,716,717,718,727,636,640,643,623,636,638,633,623,636,629,627,633,635,585,590,594,588,603,595,594,594,590,594,590,560,553,555,553,556,555,554,558,564,553,539,561,551,545,555,1117,987,1064,1044,1099,1082,1094,1082,1148,1094,963,952,948,962,965,950,966,950,628,620,629,626,615,628,620,627,636,625,621,604,625,609,621,631,624,631,619,618,1042,1038,1017,1024,1037,1011,1030,1035,1025,1023,928,940,940,922,923,920,916,914,939,931,937,922,557,552,565,557,558,572,738,722,752,734,733,744,738,749,735,728,733,760,737,726,741,762,738,982,969,998,974,970,993,976,975,984,983,965,990,973,983,982,987,988,826,828,831,816,800,809,821,825,825,823,813,819,808,811,825,826,822,803,834,599,595,594,611,583,593,607,598,585,600,597,601,594,596,591,935,929,940,930,939,948,958,945,939,955,940,969,966,960,963,972,972,969,980,957,979,983,969,972,952,878,872,853,880,880,877,883,880,864,885,895,871,869,877,1017,999,1014,1011,1005,1004,1020,1004,1000,1011,1014,825,820,817,817,818,822,825,825,821,814,814,806,826,819,818,609,604,603,607,603,602,599,597,600,588,596,602,593,606,605,923,917,922,925,921,933,924,927,926,925,914,925,931,922,912,932,917,685,680,677,673,685,674,683,668,694,686,689,679,672,685,685,593,600,602,611,598,605,604,606,592,587,597,598,605,596,589,603,606,594,598,624,630,628,631,624,806,840,816,843,832,818,832,822,828,815,942,956,947,944,963,958,966,963,974,964,971,958,973,967,808,802,807,794,804,792,809,812,802,796,795,612,603,585,596,581,610,586,590,600,595,599,599,609,591,922,923,925,939,925,931,925,941,753,745,721,744,744,716,739,814,816,824,831,815,808,832,817,828,815,812,824,967,963,965,964,961,953,962,955,956,961,969,953,961,883,867,849,880,879,879,870,880,873,888,888,859,871,534,537,516,511,498,503,523,513,538,511,527,535,524,528,535,524,518,525,517,518,530,535,525,524,521,556,543,551,556,540,544,549,538,582,581,575,569,582,590,575,578,658,658,662,668,658,648,648,653,670,637,628,628,633,632,625,634,628,624,626,634,637,625,630,623,624,624,628,628,629,633,910,932,917,921,935,931,922,842,813,842,825,833,827,822,839,829,836,961,959,953,939,953,946,947,956,946,943,950,937,947,874,873,874,876,878,877,863,874,856,882,875,879,883,865,1005,1011,1015,1008,1009,1007,1022,1006,1014,1006,913,902,907,900,902,908,903,736,726,730,714,702,721,740,725,730,741,734,735,742,740,739,728,1014,1023,1005,1006,1011,1024,1005,1019,1006,1012,888,897,891,904,890,896,891,897,898,893,899,888,898,883,894,898,610,600,599,605,611,590,597,597,606,616,607,605,609,617,614,606,971,950,969,964,986,956,960,959,961,971,954,970,978,979,1002,993,984,982,988,978,987,992,980,829,842,835,834,817,847,825,832,821,843,833,809,594,596,583,587,592,589,583,588,632,622,633,635,617,616,619,631,615,617,1144,1179,1131,1157,1147,1140,1131,1141,1149,1144,1159,1111,1123,1180,1169,1012,1005,1015,1010,1026,1002,1003,1004,1012,1014,1001,1022,840,839,845,841,843,831,842,850,845,833,825,828,607,612,598,605,603,595,606,610,591,606,603,609,607,610,607,608,617,608,601,519,528,529,535,518,522,540,531,523,543,525,532,620,630,613,610,610,618,627,638,615,626,614,616,619,615,617,925,915,922,916,915,918,925,906,925,924,927,654,657,669,656,657,650,654,656,654,654,664,660,665,535,539,533,538,540,536,528,540,535,538,531,528,533,537,571,577,556,562,559,558,569,573,578,570,567,564,569,584,567,567,563,892,873,879,889,869,867,873,878,877,893,870,874,871,881,920,918,927,932,928,918,929,921,932,912,921,899,914,929,917,934,915,930,923,914,920,911,921,916,916,926,922,915,924,913,920,921,926,910,918,913,797,776,769,783,764,789,801,780,781,757,795,792,951,969,974,973,960,949,970,967,958,976,967,955,957,973,928,912,909,914,917,916,905,915,823,852,859,848,851,846,841,839,847,855,852,847,847,851,863,841,940,941,938,946,940,943,949,946,923,949,935,936,953,937,950,940,940,935,934,947,942,955,920,921,930,924,928,925,926,930,926,921,923,922,926,939,849,847,839,826,836,849,835,848,840,841,849,842,836,836,830,856,839,670,668,660,667,673,676,677,671,672,670,679,681,672,650,595,601,600,596,590,601,591,607,597,595,602,587,594,605,605,594,606,600,597,1076,1094,1105,1062,1080,1057,1102,1067,1092,1081,1095,1071,1062,1068,1090,1097,1094,924,913,918,933,913,918,922,921,905,922,917,913,931,914,922,1005,1014,1014,1008,1013,1008,1014,1009,1005,1017,1028,1006,1003,1016,1019,1001,865,856,848,876,858,860,860,867,854,840,962,958,988,971,966,984,979,963,968,959,1009,1007,1010,1036,1016,1012,1003,1015,1022,1026,1023,1007,858,859,845,863,860,879,875,862,861,865,870,873,839,874,871,864,865,855,869,847,644,655,644,647,650,649,637,643,651,652,602,601,613,577,585,574,572,575,575,573,579,575,577,578,575,575,1003,989,1006,1015,1001,995,998,986,1004,1012,1011,1004,1005,997,1013,994,987,1016,1000,993,1004,901,898,631,652,653,645,642,633,649,638,648,641,650,652,630,635,822,822,825,821,837,824,819,835,817,823,1015,1023,1008,1010,1010,875,906,889,890,899,891,883,899,885,887,898,1130,1121,1129,1148,1130,1121,1118,1144,1137,1125,1136,1123,1139,1121,1135,1124,1127,1126,1129,1115,922,928,934,927,940,934,945,933,941,927,1063,1079,1058,1067,1063,1048,1060,1048,1059,1045,1065,913,913,911,925,910,903,906,917,914,922,908,910,898,910,603,606,593,620,610,608,597,604,611,604,601,618,599,597,616,602,611,591,574,593,581,582,571,595,583,590,573,578,584,575,582,587,580,576,577,899,898,897,901,906,912,903,930,906,908,879,893,912,912,758,748,743,758,756,750,750,752,744,746,754,933,942,935,948,941,944,936,930,939,944,932,927,937,932,923,935,929,931,812,801,822,818,813,824,811,811,821,812,815,817,611,617,618,617,625,624,629,626,621,621,666,667,666,671,669,672,663,671,670,673,660,673,670,919,910,924,927,926,932,911,932,927,937,938,923,941,921,937,935,935,918,923,915,910,922,920,926,931,929,810,811,800,792,798,778,806,781,780,773,773,794,792,804,794,800,793,621,617,613,613,619,631,613,618,605,611,615,609,625,611,609,610,609,613,618,615,621,628,623,629,625,619,627,624,627,626,624,621,618,622,628,626,1018,1018,1020,1022,1022,1003,1034,1023,1019,1010,889,864,898,891,887,880,910,888,875,877,891,878,891,842,834,847,846,846,847,849,850,836,845,849,852,843,840,673,653,660,663,669,671,671,662,664,658,668,655,784,787,783,804,787,805,799,790,810,809,787,789,791,622,629,617,610,610,622,592,604,613,606,598,621,617,549,550,543,544,543,542,544,537,546,543,529,541,531,541,982,1006,1017,1008,1009,997,1009,974,995,1010,1006,975,930,918,927,925,924,918,926,926,926,918,927,919,917,909,913,922,935,918,920,923,908,958,957,962,961,969,953,967,956,976,977,972,873,868,876,883,877,870,876,882,884,876,880,823,834,826,816,832,836,837,828,825,822,830,817,825,631,626,634,623,624,619,633,636,628,630,628,613,619,642,618,642,639,1078,1037,1050,1055,1046,1057,1041,1057,1042,878,874,868,875,889,868,899,887,870,871,875,883,867,877,874,881,891,606,604,592,594,602,602,596,610,564,568,564,568,573,574,565,576,579,568,575,568,566,591,597,597,579,600,587,592,594,593,593,594,1094,1117,1120,1089,1087,1097,1103,1112,1084,1071,1086,1107,1111,1064,1090,1097,1107,943,955,960,950,934,946,940,952,944,948,951,952,965,960,932,968,974,980,966,982,976,972,978,966,978,970,968,970,971,959,960,967,881,907,914,897,908,900,900,895,901,915,913,914,682,706,704,699,698,701,718,703,713,583,592,585,591,590,592,590,572,573,601,583,571,592,576,597,559,556,568,555,563,556,553,559,552,559,563,563,1095,1118,1102,1093,1084,1102,1101,1105,1116,1106,1081,1096,1078,878,885,884,869,878,861,879,880,862,865,881,881,864,853,873,860,616,629,631,622,614,629,631,601,619,615,610,614,620,927,935,926,941,943,955,937,804,783,805,782,784,790,790,792,786,784,792,711,726,708,714,721,718,702,716,724,724,730,714,955,948,963,965,942,942,944,955,946,936,960,950,957,950,881,867,876,865,874,874,869,862,879,863,865,873,871,859,857,615,604,602,596,603,601,614,613,595,613,593,611,623,602,616,607,603,609,614,619,610,619,617,614,606,964,982,981,984,972,954,969,953,937,976,979,994,989,987,998,994,995,985,1001,1001,985,836,817,846,809,826,834,844,846,844,562,554,550,559,551,550,568,545,540,560,583,564,579,590,599,575,585,582,573,574,580,593,589,574,586,588,1006,994,1001,1006,985,987,1028,996,1009,1007,1011,683,680,690,686,686,697,671,667,662,693,698,670,964,981,961,973,962,978,930,939,945,943,940,953,944,958,945,945,945,950,944,950,945,941,940,947,940,941,943,936,873,860,849,867,850,859,868,861,874,821,813,820,810,816,819,817,809,821,811,805,806,814,812,759,751,750,748,745,753,749,761,749,647,644,642,646,649,653,639,653,638,647,641,638,642,639,639,641,645,651,641,640,637,887,877,874,886,875,875,859,874,887,764,767,755,768,763,746,764,752,749,748,754,765,757,1051,1041,1056,1030,1043,1044,1057,1040,1042,864,855,870,870,878,868,863,870,867,983,983,981,984,987,975,979,994,998,985,991,982,984,992,984,994,983,887,896,908,892,890,888,897,907,899,902,905,895,888,888,887,904,910,897,841,844,842,846,840,838,843,838,848,750,748,749,762,758,758,750,750,619,627,609,632,614,618,629,637,634,623,622,609,609,612,621,623,627,572,564,568,558,567,565,564,578,558,568,571,575,568,575,565,564,569,550,544,542,538,548,542,534,544,539,536,538,541,547,541,539,545,542,600,603,601,596,602,606,611,610,600,603,596,599,598,609,607,599,605,591,586,589,594,590,596,595,584,578,578,578,578,1014,1018,1017,1009,1027,1020,1015,1035,1009,1019,1018,1030,1019,991,1012,1025,1025,1022,1013,983,963,970,963,964,981,967,971,977,978,971,967,971,966,983,966,966,984,986,849,869,863,855,854,866,866,866,854,844,879,956,963,951,960,954,956,959,959,974,949,969,864,898,873,888,892,888,886,870,893,905,896,873,881,588,589,587,586,599,591,579,579,601,593,581,999,1011,999,1018,1011,992,992,992,1009,1013,1001,984,1007,996,1005,1001,965,959,947,973,974,945,964,959,964,962,841,850,847,847,848,852,855,860,862,857,838,625,622,618,639,637,616,638,629,617,647,606,628,621,628,616,614,590,604,589,588,601,593,598,594,595,600,591,600,594,597,894,886,906,881,918,915,914,896,910,907,898,908,898,908,938,951,925,937,943,952,932,938,935,933,938,929,920,940,935,932,931,928,940,926,933,935,931,945,848,847,850,842,859,857,847,840,835,801,803,799,798,808,794,796,798,796,796,799,606,619,630,619,602,619,625,617,625,557,562,557,555,561,553,557,556,555,555,562,574,554,548,587,582,586,582,587,590,590,587,591,593,592,586,589,602,1073,1077,1079,1038,1095,1084,1037,1050,1065,1064,1051,1076,1039,1060,1058,940,932,957,945,962,938,932,939,968,967,946,947,965,958,943,940,948,942,952,608,613,598,612,598,617,619,621,609,604,566,585,579,559,586,572,584,575,591,961,948,957,952,957,953,946,948,941,948,951,934,852,847,832,854,869,863,861,862,864,857,865,863,851,862,857,833,586,593,587,583,595,608,581,590,584,586,587,580,608,617,624,625,614,619,618,616,624,628,623,613,625,632,1096,1089,1086,1061,1087,1072,1064,1071,1073,1040,1051,1080,1061,1077,1078,1099,916,923,921,895,900,914,905,921,919,908,895,887,905,891,867,882,905,878,852,874,879,894,882,868,880,877,876,877,890,875,888,866,864,819,802,802,815,793,815,806,820,811,796,820,804,796,797,808,816,795,801,594,604,617,614,600,614,602,610,606,612,626,599,1034,1053,1032,1045,1044,1028,1032,1036,1030,1061,1043,1030,1022,1035,1037,1019,1032,832,817,850,830,835,826,849,842,844,840,836,592,586,599,587,587,603,593,586,584,587,579,586,607,604,599,598,584,603,1023,1025,1025,1019,1013,1018,1044,1040,1026,1009,1012,1001,1035,1056,978,978,969,969,965,976,977,969,983,973,982,872,866,877,849,846,869,879,865,629,629,623,648,622,639,627,626,615,628,623,621,617,622,618,610,618,624,620,614,593,576,594,598,578,599,610,596,595,602,938,949,940,929,938,953,923,944,959,961,961,962,975,970,967,968,967,963,964,960,964,978,956,859,845,849,853,832,846,849,850,836,848,845,851,851,848,844,837,852,726,728,729,728,721,718,723,727,678,675,690,679,681,693,682,679,689,683,982,987,988,979,981,978,976,977,988,991,973,982,970,672,672,690,671,651,674,677,671,674,672,681,683,679,676,1012,1047,1038,1023,1017,1028,1031,1036,1021,1027,1024,1022,890,884,896,894,891,919,902,893,990,998,993,987,997,997,991,995,1000,998,991,993,866,851,865,839,850,843,851,856,843,861,843,844,860,869,925,915,897,923,909,909,912,913,915,903,889,908,897,973,965,947,967,955,968,969,962,981,966,968,957,958,879,880,876,873,882,890,887,886,885,876,881,878,880,885,647,631,635,628,647,647,637,627,655,644,660,641,649,640,569,567,567,567,584,564,568,572,577,576,566,571,572,565,576,579,581,573,578,580,567,583,584,582,569,583,586,586,579,585,571,702,712,703,695,702,700,699,705,701,708,703,694,707,707,702,698,629,629,611,621,629,624,611,628,626,615,620,629,620,628,621,626,633,1107,1111,1069,1106,1092,1088,1112,1095,1106,1105,1070,1084,1091,1095,1078,1107,1083,1072,1080,1098,984,979,982,987,986,973,977,983,981,983,981,976,950,1001,1000,983,981,817,838,835,810,825,821,834,829,839,833,822,829,671,668,640,646,664,655,641,667,651,635,648,635,635,640,640,649,652,649,642,636,655,636,642,642,640,647,640,646,626,630,635,631,640,623,629,634,623,637,621,631,630,631,633,632,624,1119,1091,1115,1132,1096,917,913,894,911,905,886,911,935,891,905,911,634,630,647,634,629,866,882,868,847,860,866,865,868,870,870,873,644,655,659,647,656,674,653,650,663,659,667,657,1088,1080,1069,1077,1088,1060,1088,1071,1064,1070,1094,1088,917,936,941,928,916,908,922,933,909,921,911,967,976,974,970,969,840,826,814,829,829,811,835,830,820,829,929,915,928,904,913,918,908,917,918,913,915,898,940,914,917,918,909,919,916,963,962,967,968,960,968,958,943,976,955,962,864,857,880,854,865,860,871,854,881,570,577,595,586,590,596,580,577,580,582,546,557,544,535,545,538,551,541,545,542,534,549,832,880,845,871,870,864,878,875,857,696,687,676,672,676,668,700,701,685,657,657,658,647,646,649,652,655,659,656,648,657,649,653,1102,1091,1100,1110,1089,1099,1116,1106,1096,1105,1098,1108,1083,1127,1117,1094,880,888,916,924,895,905,893,877,912,918,891,912,926,895,892,907,908,590,571,571,575,583,568,592,579,584,651,641,664,661,661,659,645,652,650,657,649,907,916,936,915,915,913,921,934,932,916,925,916,933,968,961,980,976,970,986,973,966,974,975,862,860,882,870,866,867,879,874,880,872,873,850,860,870,859,871,807,826,824,827,826,832,837,818,838,823,817,822,822,618,617,643,626,630,640,631,630,647,632,639,1020,995,1005,999,1016,1002,985,980,1020,1003,1035,1027,1004,974,994,985,984,1015,845,849,848,849,850,841,824,841,837,848,842,843,860,830,622,614,618,621,600,612,619,611,610,633,616,631,618,616,611,616,614,620,609,606,1045,1095,1053,1063,1077,922,939,917,924,925,924,934,924,926,923,931,929,644,634,612,639,594,595,588,585,598,601,602,635,632,648,630,644,643,637,632,639,647,629,636,643,639,864,863,865,879,853,861,860,863,881,856,855,837,865,864,861,865,751,755,750,771,750,761,760,749,757,744,768,758,748,764,748,600,610,587,605,597,580,592,602,598,611,602,601,594,501,520,519,518,525,528,506,509,518,506,565,558,559,553,557,556,556,543,632,641,638,651,640,643,639,635,649,639,646,653,626,619,625,628,629,626,629,625,902,904,891,905,903,896,750,769,765,759,768,777,778,771,761,766,761,764,608,590,576,596,602,593,598,596,937,952,952,962,961,956,948,963,946,938,952,949,979,960,927,937,932,945,939,959,932,937,943,844,826,833,843,839,841,841,831,836,831,827,837,657,661,641,642,635,657,644,648,658,647,656,653,653,650,649,647,650,647,652,656,1108,1124,1121,1144,1126,1156,1136,1129,1096,1111,1129,1151,1119,904,917,897,909,916,896,895,902,895,928,932,942,944,925,929,933,933,923,853,837,822,826,826,839,836,829,837,838,835,825,836,830,853,842,829,834,628,650,638,646,630,643,637,638,652,643,644,627,654,618,639,635,1074,1043,1054,1061,1045,1038,1027,1043,1044,1045,1027,1042,1053,1052,903,886,883,907,879,883,889,881,999,1008,1006,1007,1004,1013,1001,1000,914,932,909,870,863,859,867,865,876,858,869,873,859,868,866,860,873,859,857,783,792,799,793,791,775,785,781,787,785,794,786,795,790,797,784,645,643,653,632,642,637,652,651,650,646,650,639,640,648,648,815,805,806,810,797,784,796,805,795,798,801,799,806,643,642,651,644,638,649,631,632,586,573,591,589,592,581,585,588,587,631,632,634,639,635,633,633,631,636,629,629,632,631,630,945,948,947,941,949,942,952,943,942,950,949,955,949,928,945,940,952,938,940,938,840,857,842,848,849,831,858,841,842,845,842,847,832,851,839,857,845,837,847,843,815,823,815,830,824,830,836,832,820,931,934,950,937,927,950,934,941,939,927,950,944,934,936,1027,1039,1033,1039,1030,1034,1037,1034,1037,1045,1028,1035,1034,845,855,855,858,839,845,841,831,824,850,840,852,841,843,856,857,963,961,966,963,965,956,959,962,966,973,961,961,957,961,964,955,971,883,862,873,870,867,870,875,862,880,870,875,822,842,845,848,841,837,841,825,836,844,837,836,838,844,835,847,826,835,835,773,796,785,795,806,791,796,790,793,794,784,783,618,614,612,621,619,614,613,609,620,613,611,617,613,626,611,1045,1054,1062,1049,1059,1047,1053,1050,1045,1023,1064,1045,1047,1053,1049,1066,907,891,892,891,903,890,910,901,891,904,899,897,887,801,800,800,802,804,809,806,801,802,798,812,797,800,803,797,806,796,804,806,801,809,610,608,610,609,634,633,608,620,623,560,563,572,558,557,561,932,920,904,913,892,924,908,803,796,794,794,797,801,809,803,796,782,710,695,712,717,731,710,701,707,716,706,718,718,718,703,708,703,707,725,700,735,727,952,956,964,961,956,948,963,969,957,968,932,963,946,950,856,858,868,857,856,842,857,859,871,850,848,837,848,586,605,597,604,607,603,601,617,581,583,578,578,574,571,590,582,589,574,907,897,914,908,880,904,895,921,882,896,894,905,915,877,917,902,930,922,935,940,942,926,940,934,924,920,936,935,917,919,922,933,925,915,922,936,915,931,929,935,927,942,927,937,929,934,928,939,942,936,857,844,842,835,838,836,841,843,837,842,795,804,794,807,801,803,805,803,794,795,797,806,813,803,792,799,805,756,767,746,779,748,758,770,773,763,757,767,754,756,760,757,614,638,635,631,645,635,628,642,646,621,647,631,635,633,637,606,608,605,607,609,607,612,602,610,608,603,596,613,599,559,553,557,557,556,552,560,553,565,555,559,559,560,566,557,550,557,555,1092,1028,1108,1059,1055,1098,1090,1084,1122,1114,1066,1001,992,993,1003,1001,1005,1000,998,994,975,993,971,981,985,998,630,614,643,647,642,639,635,633,646,651,609,651,637,629,666,634,655,552,548,548,544,535,553,536,522,549,530,546,543,554,567,560,569,563,564,565,563,562,547,569,570,629,627,642,626,633,618,618,621,627,635,623,630,616,1231,1257,1240,1263,1201,1247,1259,1263,1090,1068,1050,1071,1087,1079,1062,1075,1092,1058,1058,1077,1065,1099,873,859,862,861,869,883,877,855,856,864,858,868,862,861,734,770,751,754,735,746,747,746,749,747,742,760,758,747,760,747,739,743,615,602,605,612,602,592,601,600,607,603,607,598,1008,999,989,1035,1009,1018,1015,991,1009,1017,1008,990,1010,1012,1007,996,985,1001,1006,962,951,955,954,962,946,964,929,935,944,936,924,940,943,949,934,929,934,937,936,939,933,946,943,945,941,934,934,935,933,927,929,931,932,936,934,927,932,933,930,938,925,938,937,930,932,935,930,936,930,924,932,833,812,820,833,821,829,817,816,822,818,840,803,980,971,970,975,954,978,978,954,801,821,816,807,807,814,824,813,806,567,546,550,533,541,548,545,542,545,538,538,543,548,538,573,581,564,585,576,566,570,562,577,567,581,573,569,569,578,634,650,629,627,638,635,630,621,630,631,649,634,637,625,643,630,642,930,932,934,921,917,932,934,940,942,922,930,924,938,756,755,756,748,755,749,768,758,767,757,764,749,610,620,625,610,606,624,608,613,610,627,623,618,608,621,613,732,751,762,760,747,758,749,738,756,749,746,758,757,751,752,754,909,928,912,932,922,924,931,932,919,920,911,920,921,925,936,924,925,871,854,853,875,866,870,843,849,849,867,857,859,851,862,867,851,870,860,846,1020,1037,1019,1025,1030,1025,1025,1024,1023,1025,1024,1028,1034,927,922,918,937,929,934,922,927,918,932,930,919,929,756,761,753,780,774,764,764,612,609,618,616,614,614,616,609,604,614,608,618,621,619,604,626,611,527,519,533,529,533,529,534,518,535,516,526,524,522,571,577,567,582,579,570,572,564,580,573,580,566,625,620,629,627,624,620,631,615,903,921,916,913,914,898,900,928,909,906,893,676,654,691,691,691,679,677,686,687,668,686,691,679,681,689,661,684,602,586,594,583,581,584,584,583,583,586,797,807,799,800,792,820,803,806,805,800,808,790,802,799,928,895,917,927,934,919,907,913,909,922,911,922,879,881,874,869,867,869,880,876,865,867,602,580,582,607,603,603,596,600,582,594,597,598,596,578,606,601,605,598,608,667,679,670,675,669,673,686,678,674,670,633,623,617,621,619,632,621,610,628,620,1067,1087,1047,1065,1039,1051,1046,1063,1057,1067,1094,864,846,869,854,879,869,846,875,872,863,862,874,856,900,885,869,858,856,886,582,603,604,592,602,588,607,610,1231,1205,1189,1151,1190,1216,1203,1156,1191,1212,1032,1062,1044,1038,1040,1031,1052,1059,1055,1050,632,645,625,644,632,660,641,665,640,646,649,610,601,605,612,599,608,614,614,595,606,617,605,602,667,674,696,687,687,689,663,696,687,681,682,679,689,695,683,683,617,614,609,626,608,620,612,606,605,612,606,613,616,956,966,963,963,965,955,959,968,969,955,961,916,916,922,920,936,930,927,930,936,914,927,915,926,1034,1034,1034,1043,1020,1049,1027,1031,1025,1031,857,861,875,874,860,867,876,869,869,849,871,877,879,1080,1080,1092,1073,1071,1103,1076,1079,1093,1095,1087,1084,910,916,913,897,921,891,906,898,903,899,608,637,630,628,624,612,618,630,618,617,628,629,611,1068,1125,1122,1112,1115,1128,1128,1090,1141,931,957,936,940,943,946,916,947,934,918,947,643,656,656,658,647,663,641,636,629,660,645,667,658,660,666,646,1097,1084,1068,1097,1065,1098,1095,1105,1098,1123,1082,1033,1055,1030,1055,1053,1038,1039,1031,1031,1041,1043,1037,1029,1040,1044,1040,887,896,906,888,893,901,877,904,910,900,893,896,634,626,630,616,637,623,644,642,631,640,647,628,625,1063,1065,1058,1080,1084,1082,1082,1075,1088,1073,1058,1080,1073,1058,874,871,863,873,866,864,867,850,870,894,862,849,865,873,591,571,579,579,600,578,591,591,580,588,593,593,583,687,696,681,694,694,685,691,685,675,689,691,678,675,681,662,654,652,658,647,648,652,657,666,663,654,645,658,652,661,653,645,596,607,597,600,597,600,603,612,595,602,606,555,565,553,564,561,552,563,559,560,556,561,562,557,919,915,917,883,910,892,880,910,910,894,708,677,698,703,694,689,691,697,676,697,679,679,1004,988,986,966,988,987,979,975,976,997,996,1006,987,972,1000,998,1000,894,925,930,919,910,929,924,907,906,918,911,922,621,651,645,646,631,649,641,644,663,657,642,631,544,539,535,553,543,546,545,545,559,553,557,549,550,551,549,543,540,540,544,546,548,546,537,543,545,543,537,544,538,546,536,535,538,604,613,614,603,608,607,617,605,618,985,969,972,990,981,980,981,989,976,968,983,975,986,992,771,772,752,753,777,770,776,771,775,764,961,937,935,941,947,940,962,928,950,941,857,871,851,874,846,863,851,860,861,876,855,860,863,855,871,594,578,591,581,575,561,572,565,566,583,555,573,581,566,557,573,606,603,605,597,605,602,596,599,600,606,965,992,966,972,956,954,958,946,958,965,961,979,975,966,970,973,958,967,978,963,962,968,974,969,953,969,965,962,850,866,845,851,862,853,852,842,867,846,858,875,842,856,859,839,842,848,849,862,849,872,863,859,858,835,864,863,967,973,975,972,989,972,986,980,969,974,972,955,968,960,874,859,864,868,878,862,866,869,860,864,879,860,880,853,848,854,522,516,519,537,514,531,527,519,520,520,512,523,541,608,609,607,609,609,609,620,608,609,619,607,615,614,607,622,647,634,634,630,635,644,631,635,642,629,640,635,654,641,620,1063,1048,1048,1048,1070,1052,1044,1090,1063,1064,1056,882,882,874,632,617,610,615,616,606,603,598,604,612,610,605,623,618,619,616,612,966,972,958,971,966,980,963,985,973,964,949,972,969,985,965,961,1005,998,989,1002,997,993,998,1003,994,1001,1005,884,873,860,849,859,884,873,886,864,896,878,872,862,864,880,839,879,879,898,565,562,557,563,564,567,572,573,563,566,568,570,574,566,573,561,573,567,564,579,582,570,563,562,572,568,569,628,629,630,639,630,644,632,633,637,639,630,635,645,639,630,632,711,714,712,712,712,721,707,969,967,972,955,957,975,973,958,964,975,966,961,960,963,962,954,754,772,764,779,766,767,769,771,772,762,797,774,774,762,923,942,922,920,927,932,929,928,940,931,927,922,922,914,918,934,950,972,957,964,963,968,963,964,965,992,990,1003,984,1001,996,1001,1011,920,942,929,925,929,924,932,935,934,932,930,932,932,930,801,800,802,804,799,801,810,789,623,628,629,622,630,635,627,618,632,614,625,576,579,576,574,580,579,575,571,577,652,632,639,670,639,661,664,648,662,661,636,655,646,643,650,648,642,665,652,615,615,619,619,612,615,612,616,617,613,611,1126,1125,1148,1181,1173,1159,1159,948,912,933,930,937,926,942,935,938,951,955,933,625,619,602,607,617,603,620,620,624,857,853,835,832,848,843,830,846,850,848,844,863,826,849,841,850,640,665,672,663,650,661,653,669,669,669,659,566,580,567,564,578,552,565,576,560,554,572,570,571,568,575,572,572,571,572,570,905,908,920,905,926,913,921,897,909,905,912,905,923,903,915,917,906,918,895,903,905,684,722,706,716,708,702,689,695,707,689,683,584,590,594,584,581,585,578,594,587,594,576,578,589,575,579,580,576,576,598,612,610,609,621,607,614,604,615,605,605,607,795,788,792,801,796,786,793,798,788,787,791,795,790,796,801,796,678,686,693,696,680,696,684,674,675,684,628,616,624,629,629,616,623,610,615,620,626,630,855,877,879,871,870,856,877,891,881,878,880,874,887,880,881,891,900,949,938,930,926,939,933,932,937,933,941,939,943,933,940,938,936,943,939,935,978,968,973,977,968,975,978,973,974,975,976,974,977,971,976,964,979,974,836,823,820,828,825,833,823,838,832,838,829,832,835,829,824,833,984,969,985,970,980,978,964,981,973,975,971,976,977,975,984,974,867,875,879,885,869,869,866,889,893,1017,1025,1022,1027,1018,1026,1027,1020,1023,1016,1028,1022,1022,878,901,882,879,879,1007,1009,1014,1006,1010,1001,1000,997,991,1008,999,994,996,997,1012,1018,1005,1017,869,873,874,878,870,859,856,873,860,876,863,859,873,855,665,678,667,885,876,899,880,901,875,903,861,888,874,900,882,905,883,890,888,885,874,906,890,1000,1002,1015,994,990,995,991,1012,1007,999,994,998,997,998,878,857,896,890,881,870,875,877,877,879,640,651,642,632,640,631,643,636,634,628,629,955,963,960,957,960,976,963,969,968,964,1042,1018,1031,1043,1017,1038,1036,1017,1022,1030,1033,874,869,870,892,871,888,868,885,868,889,886,863,870,874,869,1024,1023,1021,1022,1012,1030,1007,1018,1007,1031,1017,1018,1023,1032,1017,1034,1016,896,887,878,894,902,898,894,894,902,901,1081,1070,1087,1076,1082,1085,1084,1072,1094,1083,1079,1057,1088,920,942,940,944,937,933,941,952,940,930,953,931,951,943,944,779,759,768,778,779,774,769,772,793,772,787,774,778,755,774,791,599,598,607,605,935,935,947,936,954,956,926,949,932,960,960,959,924,996,995,985,990,991,996,997,993,989,990,998,993,915,895,902,911,910,917,912,911,918,903,893,920,904,900,813,818,818,804,824,816,813,814,810,824,818,823,819,825,808,817,822,809,953,940,951,951,948,943,934,953,944,943,938,945,956,955,961,947,933,892,876,889,888,893,895,799,789,774,788,776,778,771,778,769,793,791,782,772,789,776,783,778,782,782,643,648,628,642,641,640,647,639,628,647,656,642,648,643,660,650,662,644,643,643,640,640,795,786,800,806,813,810,815,792,807,803,794,778,811,799,788,807,972,973,983,976,973,960,996,969,977,974,977,978,958,804,814,831,813,813,817,812,815,805,810,824,810,534,535,558,529,546,533,546,537,534,532,531,534,532,544,539,536,540,563,565,557,552,556,558,556,567,556,561,556,559,577,586,582,587,571,595,579,588,584,574,582,1030,1051,1048,1036,1035,1031,1039,1033,1029,1028,917,909,921,910,921,916,922,913,927,917,913,912,905,920,758,765,770,775,768,788,772,773,779,758,783,773,780,776,766,759,788,781,906,890,889,886,896,899,881,905,887,893,890,887,893,881,895,908,894,886,882,932,931,940,920,935,941,932,924,930,931,931,837,837,849,843,839,848,834,859,854,848,841,818,845,849,842,858,963,957,962,957,960,957,970,941,955,961,869,869,875,876,872,870,879,861,879,866,865,878,865,847,841,841,841,849,840,844,846,848,846,851,840,859,862,997,979,967,985,974,984,978,972,963,966,970,977,977,977,984,999,1008,997,996,1000,994,1000,1001,998,999,995,1001,993,996,1000,996,997,1002,999,998,821,816,841,841,828,829,842,816,841,833,843,939,933,938,957,958,950,943,962,977,939,966,977,955,970,970,968,970,984,967,974,959,969,973,970,969,837,838,844,839,841,830,813,847,849,816,827,834,818,843,830,840,1043,1050,1052,1038,1056,1041,1055,1041,1052,1049,1049,1020,1046,1061,1047,872,881,877,869,874,867,888,875,875,863,884,874,875,876,577,569,583,569,585,586,583,581,571,580,585,584,573,594,575,571,581,593,574,583,574,573,591,585,565,574,575,598,599,591,591,604,603,606,602,598,626,629,631,635,644,621,644,620,626,632,630,639,637,625,629,627,626,622,629,829,818,831,811,826,831,815,813,827,811,959,942,945,945,959,946,951,953,955,942,955,881,864,868,873,868,870,676,658,660,663,665,649,672,661,673,649,656,662,630,625,613,623,629,621,624,618,625,620,622,623,621,1059,1033,1058,1038,1051,1043,1074,1048,1059,1050,1061,1076,1068,1065,887,874,871,890,899,889,901,895,878,895,886,909,889,896,885,903,890,858,894,974,978,976,970,970,867,859,868,840,865,859,865,870,849,854,852,856,846,991,988,983,981,981,975,981,995,977,984,987,987,979,981,976,991,974,975,982,862,878,875,874,885,866,895,874,860,877,937,940,942,949,937,990,956,933,940,960,932,940,951,935,959,963,966,982,974,968,961,952,960,970,963,972,966,968,839,825,826,848,843,837,847,833,831,825,1041,1043,1025,1032,1042,1055,1034,1033,1044,1040,1040,906,927,910,902,898,911,902,912,900,907,906,986,1004,990,974,983,989,980,951,969,950,972,981,988,979,949,963,971,981,1014,1019,1022,1004,1021,1014,1009,1010,1010,1012,1009,1024,1017,1015,1009,1007,931,934,928,939,929,924,921,940,934,939,855,850,834,856,851,844,847,856,850,839,848,849,611,601,615,626,611,616,615,628,609,629,629,607,619,991,987,979,968,982,996,986,969,1000,980,993,976,979,988,971,986,996,979,982,848,796,800,823,835,801,804,828,809,798,820,612,623,606,604,617,613,605,618,624,628,631,634,617,622,635,628,622,625,623,639,626,629,624,627,632,624,624,627,628,624,623,616,619,621,627,616,621,620,619,615,612,616,624,697,708,699,708,705,703,711,705,699,710,698,706,580,570,577,582,589,579,586,582,580,1000,1009,1020,1008,1025,992,1022,1014,885,866,860,863,909,871,885,856,860,866,855,873,888,844,876,891,877,854,612,613,620,609,614,627,598,616,623,630,612,594,601,622,640,1204,1248,1189,1222,1265,1249,1247,1207,1207,1199,1201,1192,1235,1182,1210,1039,1034,1028,1044,1016,1037,1035,1029,1019,1016,1029,1035,1043,1040,1025,1038,654,638,660,668,626,673,648,641,639,648,643,671,668,673,640,875,867,885,866,876,856,860,857,870,876,872,867,707,696,700,704,682,698,702,693,699,692,846,855,849,851,843,850,850,843,641,625,628,632,646,624,622,636,640,643,627,625,636,1030,1030,1000,1032,1022,1030,1034,1043,1036,1034,1037,1039,1043,867,889,884,901,872,871,865,876,882,890,895,874,873,893,641,630,634,628,620,640,629,628,632,626,645,634,635,621,642,792,778,784,789,783,778,942,944,945,948,953,943,954,945,948,953,945,956,949,943,952,941,961,884,868,882,878,877,877,871,891,870,877,872,882,880,880,877,908,915,913,903,903,903,900,896,902,904,666,657,658,648,667,655,683,658,658,664,673,650,642,669,759,769,774,764,766,764,773,754,767,759,767,763,776,772,761,608,623,631,612,596,605,604,598,611,613,567,573,569,575,568,568,570,575,575,910,903,903,913,930,921,924,921,910,899,929,929,939,953,935,939,949,945,932,936,941,942,951,941,936,934,943,935,925,920,942,927,936,921,922,935,922,931,933,935,941,923,936,944,960,937,943,938,930,929,927,928,928,938,815,816,838,829,817,836,608,608,641,611,616,612,617,626,583,564,569,566,567,574,577,564,570,571,576,566,574,569,571,565,566,1093,1074,1066,1083,1077,1068,1065,1064,1073,1077,1083,1073,1040,1049,1034,1067,1079,1074,1085,1046,1066,1071,933,940,935,918,923,927,942,934,938,889,879,878,892,887,889,884,877,661,656,648,642,669,653,659,639,634,654,637,649,653,637,628,654,656,640,674,636,648,915,927,932,946,933,934,932,941,944,944,936,940,910,919,918,922,911,915,909,913,919,935,910,922,901,947,938,938,942,945,945,951,825,830,808,839,815,912,887,896,899,897,896,904,904,891,904,908,903,898,902,900,890,885,913,904,892,900,896,903,906,902,903,897,899,892,895,998,988,986,974,978,970,979,987,982,978,980,980,980,824,820,832,827,826,802,842,802,807,803,831,799,846,818,828,850,965,973,990,971,961,970,967,967,968,978,994,989,981,973,969,971,990,972,922,939,939,915,932,952,939,950,949,934,943,935,988,980,978,969,969,984,979,979,973,977,988,987,981,984,976,971,980,973,979,769,758,569,574,574,583,570,573,585,566,572,577,570,588,582,848,831,826,844,838,853,858,833,840,835,823,639,654,632,635,638,630,634,657,663,643,639,632,512,517,522,518,511,515,508,515,517,503,498,517,525,524,488,499,494,489,494,491,491,489,493,497,496,494,502,503,493,487,487,502,494,480,503,534,540,513,528,527,538,524,528,542,526,524,526,531,580,587,594,580,586,583,589,591,587,592,579,582,580,583,584,671,676,668,668,679,682,676,675,681,672,677,683,668,669,678,675,677,678,686,675,665,591,581,578,574,576,576,588,582,575,582,585,581,581,588,574,586,576,582,586,579,980,936,963,946,947,971,953,950,937,946,956,945,945,964,955,953,956,941,949,927,892,912,917,907,905,893,914,894,897,908,916,829,834,814,833,826,835,828,837,838,816,850,852,834,830,835,831,828,673,685,681,687,671,684,678,699,677,689,681,676,856,864,848,853,854,857,841,863,852,860,866,851,837,859,854,673,688,691,687,679,684,690,684,684,663,680,679,690,675,691,638,639,639,644,639,646,647,645,632,633,637,956,931,948,954,957,938,936,958,946,945,919,934,968,944,922,693,671,689,672,675,692,680,675,682,669,758,773,762,780,777,670,664,670,675,667,661,653,668,669,670,664,665,661,657,665,664,666,667,666,663,659,634,645,648,638,638,644,634,654,650,647,638,632,638,640,645,647,650,897,907,923,899,905,908,919,903,906,927,947,955,949,942,961,956,951,953,954,948,944,952,955,953,966,958,951,967,977,961,975,967,974,971,983,963,971,971,974,984,975,982,972,982,973,817,808,834,812,816,827,816,830,836,828,812,844,944,952,929,935,920,934,918,938,932,938,924,928,943,953,932,930,961,971,977,975,974,974,970,961,970,965,969,977,979,834,857,866,851,860,853,867,851,862,861,848,592,596,572,610,584,603,603,595,576,607,601,589,560,596,518,518,516,516,517,517,515,516,522,518,522,518,520,504,513,538,523,527,524,526,650,641,663,650,652,659,642,645,642,651,651,651,651,629,638,630,642,635,628,638,633,642,644,631,630,636,620,634,635,633,629,639,639,976,968,970,957,964,960,969,965,864,865,862,867,847,853,853,851,849,852,855,856,855,859,866,840,754,764,775,772,777,767,765,955,954,964,975,985,974,962,977,957,957,978,955,961,963,974,964,979,957,953,976,961,962,968,859,853,878,853,874,850,859,852,852,857,854,856,850,553,550,575,581,566,572,568,580,564,554,559,573,561,570,554,573,577,566,566,651,633,639,641,639,633,634,644,648,633,644,633,638,633,663,577,584,566,564,564,585,568,587,579,579,580,574,507,503,501,509,508,507,502,498,494,501,514,500,502,491,505,500,556,536,546,549,530,543,539,529,541,540,601,601,597,589,615,613,606,601,609,609,599,603,607,615,593,587,595,606,1016,1023,1017,1021,1020,1025,1017,1014,994,1020,1018,1014,760,787,784,760,757,796,778,776,748,768,770,780,778,770,783,782,776,769,765,780,790,770,763,768,735,722,724,729,716,731,720,715,715,730,722,729,718,723,615,603,597,594,590,586,600,601,957,977,970,967,958,973,975,961,964,979,969,988,967,965,968,972,970,961,970,963,970,975,968,975,969,955,974,966,972,970,971,791,802,818,810,803,797,805,816,815,811,810,803,799,559,554,562,560,567,544,576,566,563,570,576,573,574,570,577,625,623,623,630,627,629,624,624,626,631,625,619,632,628,630,636,633,648,634,627,638,631,629,627,633,632,632,858,869,870,865,859,873,867,861,857,874,864,856,869,866,861,887,921,901,906,910,901,912,910,906,900,888,908,910,907,908,895,907,849,849,862,845,842,856,860,855,846,874,856,839,853,855,845,855,856,858,859,863,872,861,858,865,857,871,854,860,872,860,707,714,700,712,708,704,707,883,883,857,879,879,867,880,848,878,859,881,868,866,843,854,886,863,865,858,877,636,635,627,636,648,626,634,616,627,641,642,653,625,638,646,650,987,989,970,982,989,993,993,972,968,1001,996,816,830,830,826,837,832,948,956,949,953,954,945,961,957,951,948,948,959,952,955,953,859,835,856,846,847,838,827,849,836,849,845,843,849,847,845,852,850,935,947,937,953,944,939,942,948,946,944,954,948,939,942,962,952,972,965,963,957,966,962,965,962,954,968,959,852,862,852,846,847,858,850,862,852,865,856,852,853,851,860,854,862,849,850,860,850,689,674,688,688,688,699,683,608,590,589,602,586,587,596,592,586,589,598,593,593,592,585,1053,1040,1061,1056,1031,1039,1052,1026,1041,807,804,818,795,819,812,811,785,831,793,804,807,810,817,811,820,599,613,617,601,616,613,604,607,601,602,604,605,611,608,601,1146,1118,1124,1137,1117,1142,1106,1101,1107,1108,1012,1019,1029,1034,1020,1030,1008,1023,1022,876,882,883,861,880,875,881,882,883,869,870,868,881,866,885,884,878,878,876,776,783,767,774,783,778,795,784,781,775,786,787,780,782,782,794,883,906,907,897,887,885,909,886,906,832,832,823,833,830,823,819,829,814,831,814,823,558,550,553,569,557,548,547,550,554,557,552,560,551,547,569,552,559,550,557,559,566,574,557,565,558,558,563,558,561,573,562,551,564,561,555,605,604,589,587,594,592,590,590,614,596,586,605,610,593,591,584,582,581,578,573,587,577,578,585,582,575,583,571,579,586,586,584,587,586,591,587,591,595,594,591,585,585,586,828,813,835,835,845,838,810,824,854,740,753,742,761,745,741,760,749,745,760,743,738,755,747,749,749,608,605,599,592,595,608,608,585,595,606,592,619,586,602,587,583,594,594,597,601,581,605,589,589,538,523,527,516,522,532,530,524,535,519,525,531,972,991,969,1013,993,971,994,974,1003,977,1020,996,925,946,934,942,935,933,967,942,944,936,948,938,953,609,581,600,610,596,614,616,609,603,598,513,516,521,519,524,510,515,514,566,580,575,579,573,577,571,604,602,602,598,600,591,596,610,598,584,599,601,1126,1116,1134,1111,1132,1139,1119,1155,1134,1135,1119,1123,1138,1136,1141,1149,1122,1047,1041,1038,1037,1038,1034,1042,1023,1044,817,797,801,800,793,789,783,800,805,799,854,877,883,865,857,867,863,871,868,872,884,868,865,878,888,887,882,878,872,874,872,1042,1037,1037,1038,1032,1033,1040,1026,1038,1035,1036,1035,1039,1032,1041,891,887,888,883,894,882,883,885,887,872,888,895,1029,1026,1018,1033,1020,1028,1029,1033,1025,1030,1031,1022,1029,1017,1012,1020,1020,1019,1031,1026,893,903,901,893,907,901,912,899,915,897,906,899,912,902,571,559,586,563,582,578,568,561,555,555,558,579,574,576,575,553,543,535,522,513,524,520,535,535,525,517,540,529,534,520,521,625,624,631,621,629,618,623,629,636,668,659,668,659,637,653,660,660,651,673,662,651,1197,1232,1203,1199,1192,1198,1234,1201,1189,1201,1188,1141,1179,1039,1035,1016,1015,1041,1038,1036,1041,1044,1029,1038,1044,1026,1025,1041,1015,1051,781,785,781,788,788,790,780,792,798,784,784,775,614,613,616,611,619,622,604,614,623,612,628,609,600,621,607,614,620,617,602,514,510,519,528,513,524,522,521,512,522,514,533,514,534,561,545,561,544,564,549,555,552,546,564,545,552,551,1071,1059,1060,1068,1070,1080,1070,1051,1044,1050,1082,907,900,900,918,927,928,901,924,911,896,899,900,917,898,543,533,554,538,526,549,543,520,516,525,531,541,531,533,531,557,538,542,961,1006,981,1013,976,994,986,972,991,999,992,1013,975,983,988,910,892,910,919,897,899,902,911,906,1044,1067,1061,1067,1044,1052,1058,1046,1055,1049,1061,1077,1057,1057,1048,1076,899,914,883,909,899,917,929,633,623,626,638,630,642,641,632,631,618,633,641,646,638,643,628,628,609,624,617,619,624,616,617,623,613,611,621,603,611,624,615,628,608,848,851,836,841,851,853,630,638,610,636,638,633,620,623,637,627,628,621,538,543,539,547,536,547,530,539,529,547,557,544,529,533,548,1029,1039,1076,1055,1053,1048,1055,1023,1023,1036,1045,1034,1027,1029,1035,1018,1039,1034,1031,1038,1028,1042,1034,1048,1043,1021,1036,1020,902,899,903,896,904,906,901,915,913,901,897,901,887,891,888,918,915,909,903,911,927,879,914,914,907,900,891,899,903,904,904,899,900,835,847,840,835,846,843,833,850,839,848,830,837,831,1090,1099,1120,1110,1109,1113,1107,1105,1113,1117,1106,1108,1118,968,961,978,974,974,971,964,977,956,757,758,774,768,771,753,767,770,746,766,766,765,775,756,774,755,764,759,630,635,625,628,633,636,630,633,632,622,626,623,624,546,553,532,556,524,572,572,562,564,574,574,577,574,571,572,563,568,572,610,611,617,619,607,610,611,617,604,607,619,625,603,624,621,612,619,746,752,736,744,743,753,732,716,744,741,734,745,748,728,747,725,735,738,618,618,618,614,608,606,615,604,597,617,610,600,618,607,954,948,938,944,962,952,938,956,939,943,946,955,941,939,958,934,953,954,866,849,854,854,853,860,844,848,856,849,859,871,864,853,865,846,864,856,850,852,835,807,823,813,831,810,805,827,835,824,805,828,818,836,1055,1045,1052,1050,1061,1058,1049,1058,1052,1053,877,865,882,858,887,853,874,865,874,890,891,871,899,571,552,558,560,561,556,566,565,570,570,566,561,551,574,565,577,573,570,576,571,574,568,572,559,564,578,576,680,696,695,691,679,708,691,679,700,681,692,685,694,688,701,696,694,705,623,619,617,624,617,621,636,618,621,622,610,616,986,997,990,1005,988,982,992,986,1000,982,988,982,998,1004,997,880,891,895,892,905,885,892,893,874,895,892,892,877,900,886,892,893,912,901,893,994,1019,1015,1012,1029,1008,1015,1001,1012,1010,865,849,848,851,856,845,853,841,837,833,850,838,582,577,584,571,594,566,592,582,556,577,580,663,646,642,657,651,660,666,650,659,668,646,635,1018,1015,1011,1012,1010,1033,1008,1001,1008,999,1024,1037,1020,1010,704,701,679,702,710,698,692,686,1032,1026,1051,1042,1040,1018,1022,1013,1030,1019,831,833,826,830,827,838,818,823,810,824,840,823,850,816,835,851,848,804,589,599,578,592,596,609,587,597,579,586,591,594,589,593,891,866,888,888,889,876,864,858,883,893,881,897,783,784,783,769,787,778,769,763,776,769,776,770,754,777,790,787,783,606,615,603,628,620,608,615,613,626,620,608,608,622,599,617,627,628,999,978,973,961,988,992,982,968,992,1001,995,979,991,982,988,987,984,975,899,902,916,914,906,905,754,742,740,752,762,743,736,757,750,749,737,753,753,640,613,640,633,645,638,635,627,640,643,642,637,784,789,771,787,793,784,801,786,795,788,775,803,803,974,971,978,967,962,976,956,965,965,970,963,969,967,964,837,815,860,831,849,831,854,847,843,846,540,530,534,527,533,530,533,535,527,529,518,531,548,557,550,1073,1089,1072,1059,1062,1081,1082,933,932,934,941,918,944,929,933,922,929,923,1097,1084,1093,1104,1111,1101,1095,1089,1102,1087,1088,1108,949,967,958,948,967,966,975,985,978,968,977,974,968,976,972,988,974,976,972,975,974,906,916,930,916,915,922,915,913,917,799,798,801,804,784,791,794,788,804,802,785,781,781,973,984,973,977,969,979,974,989,989,982,993,974,829,855,820,846,817,833,841,824,817,827,839,834,564,565,562,568,563,563,564,561,560,570,584,556,569,568,549,556,564,548,545,551,547,544,548,548,552,531,551,545,542,562,551,555,562,566,555,556,558,548,557,559,559,552,558,571,550,567,559,558,567,557,561,564,567,556,566,560,556,562,567,561,567,561,558,560,559,553,558,570,557,562,540,558,551,567,565,555,566,566,562,560,556,552,566,563,568,564,561,570,561,558,534,512,510,519,511,516,505,520,527,518,517,524,500,541,544,542,536,540,537,542,543,546,537,555,565,547,542,554,551,552,552,550,545,542,551,946,962,952,941,939,965,964,935,959,957,949,948,950,945,964,968,962,959,951,942,955,695,706,714,700,713,708,701,736,722,682,689,733,938,944,939,941,953,962,949,950,944,949,929,943,967,811,812,827,816,818,806,816,817,803,811,807,823,818,820,811,825,814,589,614,606,612,619,597,620,980,950,958,972,949,974,951,954,962,959,960,946,955,952,967,962,961,960,957,970,966,956,962,970,972,961,850,833,847,840,858,840,835,846,831,841,831,842,821,848,841,847,831,848,834,863,609,622,604,613,608,626,627,609,605,605,619,617,612,603,618,620,624,613,615,624,989,989,1001,988,988,1006,1000,1006,998,1006,977,994,996,993,988,881,882,886,884,876,876,873,602,608,608,604,597,597,611,609,665,645,646,660,664,655,668,647,659,666,662,665,660,653,598,600,582,594,598,592,596,592,603,601,598,601,607,600,591,600,595,591,1086,1071,1079,1083,1062,1081,1083,1058,1076,1096,1090,1088,870,852,881,873,863,888,866,878,879,855,874,862,877,878,569,551,554,567,556,561,568,567,563,575,564,546,550,577,563,550,575,575,559,566,574,576,584,588,576,606,589,594,596,589,593,587,592,592,611,592,1072,1072,1064,1113,1112,1110,1067,1118,1101,951,954,937,936,934,930,924,952,941,940,949,935,938,915,894,908,900,904,885,899,895,892,883,888,901,891,896,903,898,852,836,830,824,833,818,835,829,834,825,829,839,837,835,826,832,837,828,624,617,647,630,638,622,619,617,633,642,627,628,596,602,600,604,608,602,614,607,604,637,651,640,629,637,638,641,638,634,651,651,632,630,624,641,635,1030,1027,1043,1050,1055,1046,1024,1050,1037,1040,1050,1033,888,869,895,882,880,874,884,887,884,878,879,889,881,792,796,792,800,799,774,787,781,788,805,787,801,622,630,639,652,644,643,639,633,639,634,636,635,642,642,652,639,650,602,592,591,584,606,583,601,587,597,587,600,602,600,600,636,624,635,630,630,633,625,620,623,630,629,985,984,1011,991,1010,988,998,997,990,982,993,1003,986,873,844,853,852,868,864,862,843,848,846,858,858,852,843,555,568,555,567,567,564,565,562,565,575,561,569,563,574,562,560,551,564,560,568,552,582,573,570,573,575,558,558,562,578,574,574,1097,1099,1082,1084,1082,1090,1068,1072,1084,1105,1054,1080,919,909,889,912,902,878,900,919,926,892,914,892,917,885,923,928,889,895,920,907,903,901,921,576,571,565,569,567,788,803,809,806,806,801,805,802,800,789,789,811,793,694,681,681,685,674,683,671,681,682,677,544,547,556,552,557,567,550,543,552,554,544,545,530,542,531,534,524,530,536,536,533,573,563,564,555,560,556,558,554,543,568,556,546,555,544,1074,1053,1053,1051,1059,1053,1055,1078,1044,1031,1051,1040,1046,1047,1034,1064,863,872,892,886,872,869,868,873,884,880,863,872,559,561,564,564,567,565,562,550,573,576,558,577,555,559,546,544,557,549,567,549,548,561,920,895,908,909,906,901,900,744,763,757,750,724,752,749,739,751,752,754,763,755,754,747,746,745,759,775,777,764,762,777,759,768,769,715,723,725,725,723,717,722,714,717,717,721,723,717,719,717,720,710,716,714,707,709,725,727,706,625,646,628,654,644,657,650,637,646,648,650,644,641,652,647,662,645,646,651,646,647,650,659,658,647,650,649,579,579,578,587,574,576,576,573,576,568,581,580,561,579,571,993,990,1000,1003,997,1017,1018,1007,1029,1013,1031,1001,1023,1001,879,866,862,860,892,882,865,875,881,891,884,859,622,614,625,626,618,616,618,619,615,651,627,616,612,633,633,620,638,653,644,658,648,636,633,646,646,637,641,636,646,624,639,637,632,622,638,628,633,630,643,630,626,636,639,621,633,621,627,615,619,628,617,617,630,615,623,1018,1036,1029,1046,1019,1022,1047,1038,1029,997,1017,1030,1047,1037,1025,1015,899,932,919,944,930,899,930,941,612,619,636,618,601,592,603,603,606,580,573,574,573,580,579,565,577,581,585,582,573,575,582,583,572,571,956,953,951,927,961,845,862,844,858,861,846,842,851,578,582,583,593,598,594,582,582,573,568,589,579,656,649,656,665,934,926,920,921,914,919,934,939,937,934,934,925,933,940,930,983,990,998,1001,999,991,995,988,986,1001,998,861,852,862,868,888,851,866,847,853,856,856,594,567,588,588,577,582,591,569,583,573,574,593,592,582,586,589,574,588,567,1037,1015,1028,1033,1024,1007,1016,1012,991,1037,1014,1000,996,928,931,914,924,968,949,972,947,968,968,972,984,985,955,980,973,982,969,982,980,987,983,948,979,963,976,989,1062,1059,1061,1073,1064,1082,1046,1054,1062,1060,1068,1067,1058,1069,1067,1066,1060,1066,1079,846,854,865,845,868,596,598,608,603,603,594,617,626,607,614,607,634,616,625,625,935,941,930,938,930,932,677,684,670,698,676,682,691,678,668,554,554,555,539,560,558,552,558,554,553,551,569,564,572,570,574,570,566,574,570,571,574,577,570,572,571,573,567,563,597,587,597,590,597,590,597,592,594,597,592,1019,1008,1013,989,982,1007,975,997,865,879,885,870,867,865,861,876,896,866,806,809,810,807,809,803,812,799,813,664,671,671,676,664,667,655,676,666,677,663,672,602,603,620,610,609,610,613,616,614,615,622,609,598,611,615,606,1079,1094,1076,1107,1112,1101,1077,1088,1091,1083,1120,1104,1101,903,893,893,908,896,900,899,912,901,919,916,913,891,579,578,560,547,554,572,541,556,567,559,547,566,612,610,617,619,626,611,616,610,618,1077,1106,1075,1089,1103,1096,1097,1095,1112,1085,1080,1100,932,945,944,948,936,938,940,569,588,557,556,577,583,579,560,569,923,897,905,898,897,900,908,881,906,917,896,896,690,685,683,682,664,675,666,679,674,661,676,667,676,663,687,665,671,673,675,677,665,679,1041,1037,1065,1008,1048,1029,1053,1038,1035,1027,1005,1025,1019,1024,872,875,867,848,838,851,872,865,873,843,877,602,586,617,606,608,599,630,595,597,618,600,626,616,625,628,627,615,625,620,640,636,642,626,622,625,635,639,633,622,577,570,572,576,578,573,576,575,565,565,561,554,559,564,557,567,562,561,557,567,559,566,562,560,563,562,563,561,565,557,1102,1077,1059,1118,1111,1126,1105,1076,1095,1131,1091,1106,1101,970,964,955,959,957,971,975,977,975,954,977,953,984,962,959,643,630,626,645,645,658,634,640,629,642,645,651,646,632,642,643,641,645,961,987,997,963,873,863,871,874,862,862,868,874,871,848,872,882,885,868,568,584,570,600,578,580,571,561,572,574,579,562,569,561,568,649,630,645,650,645,656,661,649,648,640,649,652,642,662,667,638,651,640,645,638,642,642,635,646,642,646,630,640,646,649,639,643,1052,1040,1036,1018,1037,1036,1056,1031,1042,1028,1041,1026,1032,1039,1035,1032,1043,858,862,868,852,861,874,865,859,870,877,866,870,850,863,857,858,863,853,911,908,898,941,905,876,886,905,881,876,906,868,909,922,889,947,962,951,973,961,956,860,855,853,853,573,567,557,563,571,574,553,570,581,556,569,559,563,561,559,566,565,569,569,552,568,573,568,571,575,560,687,693,690,686,690,691,682,691,688,688,698,709,694,701,691,694,691,696,686,624,626,626,620,625,636,626,631,630,626,626,792,797,784,796,797,784,796,792,780,781,788,760,784,793,595,616,617,609,607,606,616,605,617,604,618,579,579,577,563,593,941,950,950,961,957,956,936,965,947,953,971,945,951,955,958,974,1009,987,991,1001,1007,994,1004,990,888,895,887,896,881,869,855,858,868,861,866,858,863,851,862,852,863,868,863,637,650,662,651,647,651,648,651,655,652,652,654,662,1029,1026,1029,1016,1061,1037,1045,1039,1032,1016,1035,1006,1027,1016,1022,1043,1035,1039,1023,1022,875,857,889,892,876,873,878,893,863,873,878,890,871,874,872,590,592,592,588,574,597,604,582,593,607,584,586,583,590,580,591,587,863,883,868,861,864,850,848,879,864,870,854,861,849,1000,996,1009,1010,1001,1005,899,887,899,893,894,893,883,897,892,893,885,881,885,881,1043,1040,1052,1038,1039,1036,1044,1032,1045,1043,1041,1028,1037,880,885,893,890,896,889,895,884,892,887,976,982,946,976,944,967,964,952,975,987,941,964,1008,1007,1010,1006,1005,1003,1018,1011,1002,1001,1006,855,856,865,858,853,855,854,869,860,860,843,868,649,640,670,652,645,650,657,642,632,666,656,665,655,650,649,777,774,785,773,785,789,789,783,789,795,729,724,733,725,723,720,722,723,721,723,735,736,724,595,596,595,602,577,589,599,593,598,581,590,594,605,599,591,599,592,603,515,513,510,518,506,505,519,518,508,493,503,506,515,509,518,511,506,505,525,527,511,523,526,512,507,616,627,622,622,625,617,614,630,623,619,620,618,622,689,674,692,681,681,691,680,684,696,886,901,878,900,886,905,895,884,890,895,886,897,890,894,888,885,894,895,892,887,896,897,899,918,896,901,895,896,902,890,909,904,885,796,958,929,938,943,926,937,928,936,955,960,964,966,966,959,967,953,960,963,845,841,839,849,856,965,969,962,952,961,974,959,963,971,972,974,970,968,964,966,965,965,823,845,813,815,808,795,824,800,809,809,827,815,813,825,823,804,565,575,564,566,562,566,575,577,563,563,551,566,569,568,572,568,576,593,564,569,575,561,615,606,607,608,612,601,602,614,989,988,966,973,989,987,982,1000,968,994,979,998,980,758,760,762,762,764,764,758,750,752,754,766,757,751,765,904,914,919,913,905,901,922,784,800,806,788,787,792,794,801,781,801,793,805,796,796,598,597,594,603,593,598,597,598,612,599,596,602,591,596,596,597,600,598,597,591,601,588,596,1021,997,1026,1007,1027,1019,1027,1005,1008,1015,1034,1013,1011,869,872,858,853,875,875,871,868,844,856,894,868,858,552,542,539,563,549,545,552,552,545,550,534,542,542,546,577,580,575,575,579,578,580,579,574,577,577,577,577,571,573,586,584,581,587,591,579,583,580,580,587,577,591,571,582,1036,1019,1016,1035,1005,1022,1036,1016,1033,1041,1031,1044,1038,992,1021,1035,1016,1001,898,904,918,904,901,921,906,908,909,887,908,923,619,583,595,583,595,599,601,598,593,578,599,586,599,593,595,936,914,945,933,914,948,917,928,945,929,889,904,896,911,905,887,902,908,911,906,905,890,909,679,693,688,684,688,680,698,690,676,684,689,703,627,619,625,614,618,611,619,625,616,620,624,627,624,635,621,628,612,631,840,827,824,820,813,681,672,677,672,663,662,663,669,651,671,671,674,576,581,586,580,587,573,571,577,791,781,785,773,780,772,784,781,772,785,790,779,783,782,796,799,787,779,781,793,657,661,646,647,656,663,655,647,662,939,923,918,906,933,909,918,914,923,909,920,911,928,912,922,650,667,652,650,647,651,656,655,659,658,644,634,663,647,1052,1078,1054,1075,1052,1059,1090,1092,1070,1066,1071,1066,1073,1066,1061,1049,1083,914,893,885,920,893,898,912,895,924,900,923,902,894,905,909,914,917,898,888,897,915,892,916,990,972,990,979,999,965,1001,980,984,973,975,980,984,949,967,960,953,958,963,959,956,953,965,964,960,955,960,959,948,857,860,867,872,834,864,869,857,833,827,821,830,822,819,823,832,825,820,826,824,814,833,824,828,998,1001,992,996,988,994,1002,987,1002,992,1000,994,1000,900,909,920,914,911,907,839,834,831,846,835,842,836,839,840,833,840,834,845,843,832,831,609,623,620,633,617,636,612,616,616,612,624,551,556,552,542,535,540,560,538,550,550,538,549,1060,1077,1047,1046,1057,1040,1087,1037,1079,1093,1071,1053,1067,1089,1053,947,944,711,708,694,712,698,684,679,679,680,704,696,708,699,695,693,877,875,883,887,888,874,883,869,875,883,886,897,885,891,875,949,945,949,949,948,953,961,847,871,862,873,849,866,858,862,851,855,852,857,834,827,836,829,834,823,832,826,818,827,637,630,617,657,618,630,637,626,644,641,624,652,631,560,544,541,555,554,556,1055,1047,1045,1017,1067,1061,1072,1050,1066,943,952,939,958,942,945,941,943,945,952,943,933,939,943,945,958,948,949,845,836,829,834,824,823,833,844,835,837,831,745,759,742,758,759,753,753,745,753,740,758,745,750,744,743,754,742,751,632,641,642,646,645,637,644,644,645,641,636,638,773,782,772,774,801,772,780,769,768,778,778,784,778,755,758,747,760,751,742,754,639,652,650,659,652,637,639,644,652,659,641,645,635,630,628,628,639,637,641,639,641,640,636,620,641,644,641,648,641,628,633,836,845,829,846,834,851,838,840,842,827,841,843,848,957,965,952,967,963,963,963,959,964,969,965,965,980,965,975,963,970,975,951,887,881,880,885,876,880,882,889,886,884,884,889,888,853,858,851,858,861,863,866,869,847,874,848,842,853,973,979,986,973,983,987,982,992,979,983,980,985,990,976,884,867,868,878,867,868,873,879,872,867,881,869,1035,1024,1038,1023,1033,1028,1038,1039,1048,1037,1048,1032,1046,1033,1046,1028,1048,930,922,930,907,928,925,934,926,926,919,924,914,934,931,920,919,925,625,634,635,642,646,642,649,641,647,634,576,573,579,577,579,574,579,576,568,584,575,576,582,1076,1089,1064,1070,1058,1035,1067,1064,1055,1070,1073,1068,1084,1055,1062,972,981,980,988,994,986,994,987,995,993,982,984,976,1004,971,987,981,832,831,840,811,809,804,818,828,821,817,816,824,838,817,816,812,824,966,970,964,972,976,971,976,969,971,975,964,969,974,980,854,879,850,863,878,876,885,864,873,568,574,560,570,569,584,569,555,565,568,564,561,1095,1102,1095,1105,1113,1089,1078,1081,1086,1112,1107,1102,1082,963,943,941,966,952,939,947,946,965,939,955,948,929,962,955,1114,1125,1119,1113,1133,1108,1119,1113,1108,1118,1122,1111,1121,1113,1112,1116,1117,953,958,974,957,957,976,983,986,975,982,977,989,971,994,996,986,902,882,909,910,899,901,888,890,886,892,891,885,899,902,907,721,711,715,709,713,585,588,598,598,579,585,598,603,579,593,594,598,537,538,534,539,536,542,537,530,535,540,543,534,534,534,541,622,627,624,621,620,606,623,612,621,602,619,623,626,625,621,620,619,623,615,616,617,651,657,651,655,654,655,639,651,650,655,656,665,656,652,649,662,654,948,956,936,935,935,945,941,951,942,934,936,948,927,948,709,696,684,709,716,700,709,702,710,677,757,740,732,746,752,747,732,746,750,731,720,737,727,744,728,736,739,735,608,607,620,605,604,591,606,622,545,547,550,546,537,545,534,551,550,547,530,1047,1047,1048,1055,1043,1055,1038,1073,1038,1041,1038,1037,954,956,963,943,960,946,963,954,960,948,961,964,976,948,947,950,957,963,948,952,963,680,678,696,671,704,700,689,590,586,594,586,592,598,588,578,566,586,584,591,588,588,580,589,916,896,893,902,963,949,947,957,946,961,946,953,966,953,962,948,833,824,836,818,808,817,810,834,853,819,828,828,852,833,837,824,574,575,578,579,578,586,578,597,587,563,583,580,626,620,620,618,613,625,617,616,1056,1030,1042,1052,1058,1049,1016,1042,1047,1076,1050,1038,1057,1066,1057,1027,1026,1036,1061,1058,1067,1035,1013,1018,1003,1011,1017,1008,1029,1011,1019,1020,1023,1015,837,840,858,847,827,859,827,849,842,604,606,612,601,616,605,624,606,624,619,615,611,977,983,945,978,949,968,950,963,944,957,913,923,918,917,906,918,914,904,909,919,618,626,615,629,617,1098,1104,1105,1112,1094,1100,1098,1104,1086,947,958,980,945,964,970,933,956,944,1074,1082,1082,1074,1064,1062,1061,1096,1073,1079,787,768,801,775,770,792,795,792,600,612,615,605,657,661,656,654,676,671,658,653,673,666,674,672,660,654,664,660,669,672,671,665,1018,1027,1022,1017,1019,1024,1014,1015,1012,1020,1008,670,663,686,676,701,695,677,707,699,689,673,676,681,699,960,960,952,955,973,967,959,961,956,937,954,952,952,951,859,840,853,877,839,844,842,851,838,843,850,851,950,902,897,923,906,895,907,907,943,913,930,903,899,965,961,961,966,956,968,985,978,965,971,962,965,961,970,957,965,861,859,854,858,869,854,863,861,852,888,854,852,850,865,857,598,611,609,597,608,612,604,608,605,611,614,593,607,601,607,600,606,616,990,991,983,974,969,999,987,990,995,979,990,968,991,988,990,881,869,885,874,878,869,878,869,885,879,898,865,878,875,873,635,621,645,631,627,637,633,632,628,633,641,630,631,644,633,640,635,640,633,632,638,633,636,638,636,621,629,632,631,644,622,638,630,1048,1002,1011,1034,1046,1026,1033,1010,895,875,882,893,910,916,893,880,899,886,887,894,885,865,877,867,885,551,564,564,552,566,555,555,554,559,556,555,591,581,592,579,578,568,595,565,587,590,573,579,578,586,582,573,574,582,1022,1010,1009,1019,1007,1009,1011,993,1007,1035,1021,1013,1004,953,957,955,962,941,958,956,958,894,900,896,896,901,890,903,905,897,895,893,899,902,905,818,821,811,803,803,796,794,808,820,816,806,815,803,791,799,804,800,792,797,804,794,763,751,752,750,744,748,751,745,750,747,759,751,754,737,755,755,739,659,671,669,670,671,652,672,665,667,669,652,676,665,619,615,613,619,616,625,611,623,621,625,621,624,624,619,633,621,625,619,610,617,627,614,622,624,927,926,923,927,914,938,930,910,927,921,937,916,932,932,925,933,908,926,919,926,944,915,675,677,659,672,670,686,674,677,996,999,998,1002,1010,997,1017,1007,1002,1025,998,1019,1002,1003,1007,1002,1003,1005,866,861,858,863,853,856,864,857,861,843,865,855,868,859,874,970,962,973,968,970,951,972,949,961,968,961,970,975,955,888,885,891,879,884,878,881,883,879,885,879,883,849,840,845,839,844,842,845,841,845,852,848,840,850,847,680,689,684,692,688,674,688,687,694,685,693,690,704,690,694,693,689,679,689,693,818,824,827,814,816,821,827,829,809,826,835,759,754,758,765,762,763,760,757,757,767,763,636,621,622,634,629,628,631,623,618,625,640,629,627,781,770,778,771,774,765,764,771,774,781,644,647,655,655,651,642,645,645,639,648,644,650,644,646,650,567,558,558,568,556,555,567,562,560,554,555,518,528,525,530,520,533,525,518,509,522,529,525,526,520,520,521,533,520,524,551,544,553,548,550,558,550,542,554,546,547,543,556,549,547,552,536,591,583,575,589,585,579,580,588,587,583,577,578,594,590,580,666,647,659,661,653,667,664,648,659,664,651,656,667,677,661,668,926,930,920,960,951,925,938,924,930,946,935,948,943,945,934,949,949,949,938,854,858,849,859,858,845,839,839,844,675,693,683,685,684,677,928,927,910,935,929,906,934,920,919,887,916,924,914,918,912,891,879,882,878,866,873,871,880,869,880,887,885,875,884,878,885,588,598,583,593,596,583,571,1025,1030,1025,1017,1029,1030,1018,1008,1029,852,824,845,859,847,836,859,850,847,853,859,864,874,842,860,849,579,576,582,577,587,570,577,573,678,697,685,676,694,691,690,702,699,715,707,707,710,712,687,694,716,704,625,616,624,622,620,612,984,982,979,961,992,989,990,977,997,982,984,978,983,985,976,883,874,855,863,857,877,864,855,861,879,860,884,871,866,881,863,874,866,1003,992,990,981,986,1000,997,987,997,989,884,873,883,897,894,871,896,895,885,873,889,883,957,957,959,967,979,969,959,964,970,969,962,967,959,979,980,968,978,784,789,815,801,789,799,781,796,799,803,803,802,591,581,588,591,590,592,587,598,590,585,586,592,1123,1127,1117,1116,1127,1077,1135,894,875,885,908,891,867,872,899,896,869,876,885,880,879,869,919,603,607,609,602,615,613,606,600,597,607,601,599,609,615,598,1014,1049,1017,1014,1035,1035,1028,1039,1011,1013,1038,1027,1010,1031,1009,1044,1023,1013,860,867,875,854,868,874,873,621,632,611,621,601,605,598,594,624,616,607,610,624,600,611,912,945,929,926,908,920,902,936,919,958,959,964,967,968,972,980,954,951,959,974,957,966,956,953,965,971,961,878,876,883,877,866,879,873,879,868,941,951,972,941,969,953,958,935,939,951,953,952,955,932,929,935,924,924,926,931,939,919,926,932,928,927,925,830,835,821,830,835,815,824,824,825,826,827,817,811,814,824,680,658,663,657,634,664,675,655,655,659,658,667,674,637,653,646,654,645,641,643,647,650,644,637,650,636,645,631,645,640,636,649,1062,1053,1038,1073,1069,1064,1052,1040,1042,897,902,903,880,895,911,901,896,858,847,855,853,853,864,853,859,852,787,763,772,772,772,766,762,775,764,767,777,766,770,775,762,753,754,773,755,760,763,751,760,622,627,612,611,610,617,610,608,620,1016,1017,871,858,870,885,874,868,874,866,867,871,873,858,975,981,979,974,988,980,977,976,991,972,988,988,967,875,879,873,885,880,867,888,877,882,875,880,892,872,869,879,804,812,802,803,813,807,809,809,810,812,810,811,795,810,802,820,819,820,752,747,752,754,738,744,749,744,748,750,754,735,741,760,747,747,755,739,749,749,748,737,745,756,644,633,648,646,647,648,642,646,802,792,800,817,776,798,795,805,800,789,798,802,796,797,950,945,938,943,945,951,949,944,948,937,965,955,936,935,944,947,933,948,845,846,860,871,847,862,872,851,861,859,857,858,852,858,611,614,608,609,623,613,614,612,618,602,613,606,603,1008,996,982,991,1000,1009,997,990,1021,995,995,999,983,997,988,1003,987,1008,1000,992,883,905,891,901,897,885,899,896,895,896,879,896,632,631,628,620,627,625,620,624,634,621,636,624,627,626,579,576,567,579,583,583,573,585,577,583,579,1048,1066,1057,1085,1064,1064,1070,1057,1076,1058,1082,959,974,938,947,948,970,951,948,959,961,955,962,872,872,888,879,877,878,874,861,875,887,873,877,878,879,871,667,686,685,694,686,682,766,771,780,784,762,772,770,774,770,774,783,763,779,783,773,750,756,615,601,628,610,624,614,627,624,617,615,623,628,528,526,525,523,524,522,525,530,539,531,537,524,532,548,577,569,562,561,571,572,562,572,567,545,554,940,932,940,934,938,953,953,947,948,929,927,727,755,753,741,741,756,753,747,742,760,749,740,739,746,758,759,753,785,769,770,781,786,780,770,774,765,785,776,777,775,784,781,715,717,717,717,702,718,714,717,727,722,704,720,712,713,719,719,715,629,622,633,631,644,632,642,642,647,644,630,645,636,647,639,636,632,623,621,623,623,623,631,620,622,616,621,621,622,864,857,858,862,861,845,853,857,860,844,953,939,941,946,941,924,949,936,914,930,942,944,942,949,929,966,960,975,970,966,966,960,961,965,963,970,970,969,963,967,974,959,983,835,842,834,844,825,831,826,822,841,841,851,844,824,826,979,979,973,968,972,970,856,878,856,853,855,860,850,843,867,840,854,860,861,854,872,852,863,861,846,554,569,565,570,566,558,564,567,559,562,557,557,576,558,566,562,560,582,554,1062,1053,1058,1071,1073,1050,1088,1047,1044,1061,1073,1071,1072,1055,888,889,888,881,887,886,894,894,885,893,892,877,887,886,890,932,926,949,952,912,937,936,927,939,900,945,937,940,938,949,941,945,936,937,932,938,946,945,934,935,949,943,938,942,943,940,931,943,825,819,827,816,837,827,824,814,826,826,811,821,809,823,630,641,627,641,627,631,625,777,780,784,783,794,775,758,766,780,791,631,630,647,652,635,631,647,618,643,625,634,606,607,608,619,620,612,599,604,595,608,632,635,636,631,639,637,635,637,639,630,635,642,634,629,1051,1030,1022,1036,1039,1051,1050,1052,1041,1050,1047,1049,1034,1049,1032,1053,1065,1059,1054,957,943,953,953,935,961,950,951,951,950,939,938,944,939,820,814,810,820,817,822,811,807,810,782,778,783,629,651,628,646,635,635,637,638,631,641,632,634,627,1152,1159,1131,1150,1144,1136,1129,1168,1147,1158,962,955,959,952,965,969,957,970,969,972,959,975,964,960,852,861,860,864,856,858,863,860,854,854,862,869,853,861,856,855,858,870,858,845,755,753,754,746,757,756,734,734,767,755,726,737,748,760,744,747,745,764,985,977,986,987,982,984,997,862,864,874,855,849,867,873,877,868,873,880,834,838,830,838,834,833,834,840,834,840,832,836,840,833,835,837,834,834,688,670,675,677,677,674,596,608,600,588,603,602,593,604,590,598,603,588,608,603,586,595,604,588,595,600,1014,1005,1007,1001,995,1005,999,1002,1021,998,1011,1015,1003,1008,912,909,913,910,908,902,895,889,899,909,901,902,893,892,899,891,909,826,832,840,838,845,849,845,830,841,829,835,839,833,830,824,842,841,1009,1008,1021,1020,920,902,918,909,923,919,915,917,904,919,909,916,639,628,640,628,644,637,643,646,642,636,618,644,631,552,564,561,560,566,558,561,558,561,551,558,555,561,560,553,556,552,553,608,623,607,609,611,1090,1099,1090,1071,1085,1076,1077,1065,1090,1064,1073,1069,915,921,916,934,919,911,924,928,927,923,903,916,927,914,631,611,593,618,609,605,609,629,615,627,629,523,501,504,506,501,497,496,507,503,505,504,498,504,478,489,488,497,488,489,484,491,471,505,510,622,623,623,624,610,615,610,613,631,629,648,643,642,651,645,649,643,648,652,650,644,651,635,636,643,925,935,927,910,920,929,922,930,943,910,931,925,933,929,932,928,927,935,913,932,941,909,936,917,924,930,919,919,925,931,867,851,842,845,841,855,841,844,839,837,832,914,900,943,933,939,921,899,949,939,958,929,935,936,931,950,949,945,935,946,931,939,954,938,941,936,941,875,860,863,866,870,890,874,867,873,858,868,868,875,874,867,869,866,866,865,870,872,880,874,873,878,868,871,866,785,781,778,790,777,788,793,778,776,782,789,777,784,783,783,779,660,647,649,668,664,654,665,660,638,664,663,652,647,833,843,817,834,819,828,832,825,842,832,825,848,838,956,966,953,957,960,952,951,944,958,970,945,951,958,969,944,964,954,852,848,856,848,848,859,839,840,848,855,844,855,848,855,986,991,982,980,982,980,995,982,986,996,977,988,985,973,995,995,812,804,828,812,815,835,829,819,820,822,829,827,805,811,808,809,817,840,820,605,604,590,603,605,585,586,595,591,591,598,581,587,865,846,874,861,863,859,857,865,872,846,875,881,879,881,860,855,867,872,863,671,672,670,682,680,670,689,682,683,684,694,664,658,677,691,564,560,552,545,571,550,566,563,568,553,561,559,562,528,535,536,528,528,527,539,534,525,537,532,593,571,572,591,576,580,575,573,568,570,572,590,580,582,581,954,942,941,954,943,959,965,945,771,775,764,778,763,790,763,774,765,763,774,753,754,756,755,768,778,782,780,779,771,903,908,912,921,924,917,922,923,916,919,918,925,915,918,915,899,917,932,924,942,919,922,851,842,839,838,839,833,843,854,844,826,842,639,617,642,632,622,619,630,621,624,569,566,577,579,553,572,553,574,578,566,568,571,689,694,677,688,688,683,688,678,685,692,688,687,679,695,695,675,683,688,675,691,678,609,611,608,605,610,604,619,997,1010,1013,997,1014,1025,1006,1002,1012,1013,899,891,916,873,886,900,889,878,702,679,691,685,694,690,692,687,700,688,695,688,691,687,685,679,673,668,668,677,666,661,677,662,686,675,1134,1138,1135,1152,1152,1162,1135,1131,1141,1108,1134,1161,1140,1164,1149,1135,938,933,948,944,949,946,930,937,959,944,950,956,978,969,958,974,953,965,955,962,928,955,970,955,938,944,940,977,938,943,970,1022,1046,1026,1048,1038,1017,1015,1029,1029,1025,1032,1012,1041,1026,1031,929,930,943,930,925,924,925,929,945,668,665,661,673,666,676,678,675,673,663,684,696,668,674,672,573,562,571,563,565,578,571,568,572,569,574,587,546,548,546,538,539,540,540,539,549,545,549,531,536,547,541,532,543,601,599,606,606,594,608,604,601,622,623,632,627,629,641,629,619,618,624,630,628,636,639,630,635,628,632,632,1137,1127,1104,1129,1141,1118,1125,1103,1141,1149,1133,1134,1072,1069,1064,1066,1058,1062,1076,1047,1059,1063,1043,1049,1057,1047,844,866,873,860,861,859,865,848,842,840,854,867,854,844,497,524,526,521,513,512,510,505,508,504,510,495,512,532,522,520,523,542,529,525,523,524,537,541,534,537,549,544,539,537,1039,1046,1050,1041,1020,1048,1045,1057,1062,1068,1063,1068,1061,1043,1050,1046,1053,1034,1055,852,832,850,856,577,589,584,586,590,590,592,581,585,580,582,577,593,578,577,1046,1051,1008,1050,1036,1016,1008,1018,1041,1036,1031,1041,1027,1022,1045,1044,955,930,944,948,935,936,941,946,944,942,942,947,935,932,943,942,950,935,932,957,948,920,945,957,942,946,934,637,610,622,610,620,643,632,622,621,626,620,628,624,633,620,623,640,623,625,636,619,612,639,595,606,601,604,586,593,598,598,595,591,595,599,585,585,597,589,589,581,628,613,625,644,614,624,626,627,624,625,608,625,846,854,850,858,854,866,856,874,856,851,861,863,862,778,774,780,786,792,773,790,787,792,788,795,797,773,796,766,622,636,619,627,624,634,626,615,621,619,626,628,632,631,622,631,1136,1107,1090,1100,1123,1064,1109,1101,1103,1115,978,950,972,978,965,975,969,969,963,972,951,954,978,954,784,751,759,766,780,766,782,775,770,778,768,770,754,766,780,772,777,622,615,617,624,597,619,624,618,621,604,628,616,619,609,621,620,1018,1005,1015,1010,1023,1023,1017,1031,1005,1013,1006,917,904,912,915,610,602,625,624,606,621,604,628,624,615,621,614,615,611,611,603,603,616,606,604,604,615,615,901,909,918,919,913,914,888,912,917,904,913,899,702,715,694,730,717,711,705,708,713,719,728,691,729,728,722,727,892,893,903,888,616,640,622,622,644,625,631,642,623,625,1005,1013,1006,998,992,1004,1009,1028,1014,994,1005,998,1037,833,853,850,853,834,852,857,856,827,851,857,834,853,844,840,850,590,589,576,582,596,601,598,605,606,595,973,956,953,952,935,960,947,957,969,951,956,940,958,953,953,947,958,949,954,946,965,971,954,943,948,672,678,684,693,683,682,665,679,689,1031,1015,1017,1009,1045,1007,1012,1007,1020,1028,1038,1028,1034,882,890,883,876,880,879,857,875,877,862,870,870,872,885,881,1018,1007,1008,989,1001,993,995,996,999,997,1003,1012,880,897,898,915,887,910,898,908,893,894,886,882,894,1025,1039,1010,1027,1028,1000,1037,1023,1023,1017,1015,1026,1035,1021,1028,1037,1008,1033,922,926,904,924,917,922,920,915,915,929,921,926,658,656,662,640,661,655,664,652,654,656,654,663,647,663,648,648,640,653,658,655,659,642,659,646,646,653,648,649,654,658,676,671,677,663,663,676,680,667,668,674,685,682,664,681,621,629,627,638,630,632,632,621,632,630,926,925,914,921,915,634,639,645,647,631,629,634,644,640,621,650,625,629,635,623,627,634,618,633,641,1093,1076,1111,1095,1096,1066,1101,794,814,799,809,802,812,786,592,596,588,577,580,596,587,597,577,584,596,590,591,601,593,668,668,662,646,673,655,647,659,662,663,658,955,960,950,947,940,945,952,938,932,938,946,941,936,944,935,945,942,940,942,935,931,947,865,865,876,875,869,873,876,879,901,884,884,824,799,806,819,812,806,808,802,807,806,792,815,818,811,810,817,810,612,596,610,611,599,609,603,617,611,600,610,612,601,610,610,617,614,993,1043,1031,1025,1065,1058,1018,1022,989,1031,1024,1037,1023,1028,1049,1023,1029,1013,844,867,883,889,879,879,642,642,648,638,640,658,640,629,631,651,638,654,645,647,640,626,639,643,650,635,631,639,631,634,635,640,625,648,649,645,648,638,635,639,646,646,634,641,636,855,856,846,865,853,852,834,843,847,844,839,853,840,856,851,839,629,657,659,634,644,642,638,633,642,645,641,629,545,545,545,529,545,543,546,551,542,552,537,530,541,544,540,554,892,878,867,886,872,855,868,868,879,858,877,862,866,857,879,707,701,719,714,706,710,724,714,706,717,727,700,705,708,694,718,708,572,565,559,559,573,565,569,571,561,559,569,530,542,532,539,534,526,534,536,531,536,529,535,531,565,588,583,581,583,563,576,573,578,584,576,574,559,573,577,576,575,575,960,946,949,956,940,938,964,954,969,949,958,757,782,757,775,758,777,764,751,777,747,757,772,757,761,767,760,905,912,914,911,905,910,906,923,905,909,904,913,915,915,941,913,930,934,929,931,927,930,931,923,928,929,927,926,926,809,812,825,824,827,805,818,808,823,809,819,825,956,955,949,956,964,943,960,957,968,946,862,872,863,878,873,637,609,621,613,613,625,616,619,611,620,635,617,622,1032,1030,1051,1015,1027,1056,1009,1037,1019,1032,1042,1056,1025,1027,1031,889,879,869,882,888,895,893,894,883,879,889,885,878,899,895,896,881,877,889,891,890,884,888,875,896,900,886,885,902,631,629,637,655,637,639,630,634,641,646,624,645,632,624,630,633,965,970,968,980,968,983,975,972,964,981,982,958,984,975,978,965,975,990,1033,1036,1036,1032,1026,1032,1032,874,889,883,890,897,886,597,589,592,600,610,598,589,592,599,593,577,582,592,576,592,585,998,997,987,1001,977,983,986,987,1001,874,864,878,886,885,885,881,872,879,880,873,869,875,883,869,1109,1082,1089,914,914,923,910,907,922,917,631,636,632,623,626,631,620,636,629,625,644,638,1039,1061,1038,1064,1029,1058,1046,1063,1037,1047,1063,1071,846,833,826,833,852,842,849,611,605,589,594,603,608,595,584,604,605,606,608,601,617,891,891,892,873,881,879,876,874,870,870,887,869,889,640,624,629,638,645,649,645,647,629,543,531,530,547,528,530,536,1042,1030,1054,1007,1031,1035,1018,1033,1039,1027,1025,1027,940,942,910,931,932,920,930,935,932,922,930,925,930,1041,1021,1024,1019,1044,1026,1033,1029,1018,1011,1023,1019,1008,915,918,917,910,937,921,922,920,935,917,600,607,605,590,619,605,593,612,966,967,975,984,973,1003,963,977,969,987,957,982,900,877,894,881,893,897,886,894,886,888,894,875,903,869,907,888,841,859,841,851,863,849,859,850,1104,1099,1090,1112,1092,1110,1107,1108,1100,1111,1115,1098,1098,1112,1100,1115,961,945,948,949,943,953,962,960,947,943,953,952,940,635,633,647,638,641,822,815,827,824,831,825,823,814,825,822,829,823,822,836,921,911,927,928,929,923,966,975,960,973,965,971,966,965,956,970,978,972,978,970,968,968,964,960,966,840,838,827,837,843,843,849,823,838,832,829,830,833,847,826,829,869,865,861,852,858,860,851,856,849,851,866,874,759,780,765,776,760,776,772,771,780,762,768,777,767,636,649,640,622,644,642,637,638,646,625,635,643,641,555,549,559,560,554,555,558,558,564,573,556,555,554,548,563,524,527,528,518,526,520,522,522,531,524,526,525,527,534,520,521,524,631,636,636,639,629,633,638,634,630,637,633,643,647,634,642,660,651,659,652,656,661,655,666,654,661,663,656,660,969,974,990,966,971,977,989,971,974,983,973,979,988,704,701,687,688,680,692,683,686,690,692,692,947,977,965,983,977,969,985,960,974,983,977,973,966,958,992,966,968,968,973,972,848,842,837,845,820,838,820,841,829,841,840,947,942,935,918,934,923,904,938,923,951,931,939,926,942,931,939,930,933,938,933,934,929,940,929,932,930,928,938,934,932,935,931,934,923,927,931,927,931,790,782,788,789,800,792,781,787,796,794,787,789,771,791,778,790,793,803,546,547,540,545,543,543,545,555,551,546,543,537,553,547,547,514,523,525,523,532,535,540,525,530,534,533,529,545,537,532,535,608,621,621,629,608,614,599,610,598,614,611,621,608,611,609,594,607,600,606,601,612,604,615,608,616,604,611,606,612,605,954,940,960,943,960,937,942,941,958,941,945,941,929,945,953,831,830,847,862,842,840,848,853,846,847,848,860,862,854,837,891,900,916,892,886,891,909,905,912,901,905,888,901,908,905,901,858,844,848,837,840,856,845,849,849,857,852,855,852,848,863,874,861,875,867,869,861,870,861,872,670,641,621,628,643,627,634,627,641,620,639,645,649,646,632,1006,988,990,1000,1007,1003,1011,992,1005,988,994,1008,1016,1005,1008,1011,1015,1015,1018,1000,1007,1011,1002,1017,1005,998,998,893,878,878,895,874,664,664,645,650,639,645,651,639,649,651,653,657,584,592,587,596,587,584,601,586,596,596,595,601,584,587,589,815,812,799,818,830,807,799,796,841,818,680,676,682,681,675,684,675,676,687,683,671,674,674,678,643,636,638,640,652,637,642,655,644,641,647,636,915,930,910,921,918,914,922,914,915,917,918,914,934,932,908,927,931,899,922,777,777,772,781,768,767,781,763,768,617,611,616,606,610,622,619,616,608,612,603,593,610,517,519,522,518,514,515,520,524,518,528,522,530,521,512,516,510,518,549,539,527,545,529,589,623,621,602,605,601,598,599,599,595,614,619,601,587,627,982,969,970,967,975,967,978,982,977,982,961,992,996,963,693,705,708,687,695,714,711,684,714,699,689,703,728,697,707,709,716,699,699,709,708,604,629,624,615,618,621,620,610,617,627,623,635,600,629,569,562,555,565,561,560,561,566,549,555,553,553,561,653,656,642,647,635,648,650,649,648,644,874,890,872,870,887,887,881,885,876,890,877,955,970,971,978,960,826,843,831,822,811,839,832,845,846,839,838,852,825,565,563,559,553,559,552,575,565,572,574,554,548,1086,1102,1117,1123,1095,1142,1094,1102,1124,1110,1107,1123,1097,1093,1098,1138,1112,1107,1095,1106,1133,973,988,985,982,999,987,991,998,979,988,995,981,990,975,998,991,998,990,974,995,977,983,977,960,965,968,928,941,1013,1009,1006,1008,1006,1008,1002,1012,1007,1007,1018,1013,1003,942,939,940,934,918,918,918,925,940,786,797,784,785,780,789,777,778,789,618,546,546,540,534,548,542,540,546,544,547,549,538,542,537,544,539,669,668,672,674,655,664,647,666,659,677,671,664,655,670,679,664,673,667,661,681,663,1057,1046,1032,1037,1037,1024,1050,1037,1015,1027,1035,1039,1032,886,897,892,874,890,885,890,902,902,909,881,888,882,885,905,890,600,631,613,651,647,623,631,620,628,616,633,629,626,635,616,640,582,590,605,600,1121,1093,1120,1089,1092,1123,1096,1095,1111,1096,1097,1083,1072,1119,1094,1113,1117,1114,1089,923,924,930,917,917,921,927,913,924,920,946,930,922,928,908,981,983,984,1003,974,989,990,975,984,990,993,990,988,997,994,862,847,860,860,863,843,857,854,854,860,858,866,857,857,846,855,857,846,852,842,837,844,852,847,849,852,842,845,844,842,1038,1030,1034,1024,1026,1040,1031,1032,1045,1032,1042,866,859,867,859,853,862,859,858,873,857,861,864,857,864,863,866,866,861,864,997,1000,1000,999,995,1007,1001,1011,860,853,853,866,857,841,858,854,848,846,1023,1024,1021,1031,1028,1007,1042,1022,1033,1017,1031,1011,1023,1017,1028,897,910,888,902,908,906,899,920,883,901,901,896,897,634,645,644,642,631,642,636,631,640,628,626,633,655,625,637,624,619,628,627,637,616,634,623,633,628,641,617,619,627,626,641,941,932,940,940,946,934,929,918,932,935,928,885,894,889,889,900,896,900,897,892,899,887,890,898,895,905,890,892,896,895,902,884,891,891,890,888,896,883,880,897,899,892,927,950,942,945,955,929,940,944,926,958,950,939,942,843,847,826,842,842,834,827,823,847,828,839,835,837,840,842,851,827,811,567,581,566,577,554,572,570,572,564,573,581,1067,1105,1102,1069,1085,1114,1097,1091,1077,1107,1109,1102,936,957,952,965,940,956,952,947,965,953,637,643,644,646,634,648,636,620,639,645,629,631,647,632,633,640,1108,1106,1122,1086,1094,1074,1088,1116,1104,1101,1086,1088,1103,1083,944,957,1086,1102,1083,1088,1082,1081,1078,868,850,852,878,845,874,856,850,862,873,867,889,851,846,840,881,849,1056,1056,1050,1055,1064,1067,1049,1077,1068,1075,1064,1056,1043,824,813,826,807,809,816,801,810,802,813,622,617,606,625,616,624,612,619,626,626,617,617,944,962,939,969,960,950,962,963,955,964,952,964,963,949,942,964,687,695,690,680,691,677,686,685,703,682,705,705,687,701,685,692,694,688,693,690,616,617,618,606,620,607,619,617,611,622,553,552,551,552,550,552,529,1091,1060,1058,1055,1080,1076,1056,1074,1082,1093,1039,1068,1068,969,958,957,956,956,979,958,975,965,970,970,967,960,956,977,963,972,959,959,979,979,967,979,968,957,947,966,930,934,938,942,939,945,942,931,935,946,934,934,943,888,885,883,886,871,867,873,886,884,888,875,875,882,845,843,834,832,846,834,853,844,843,844,835,838,841,839,844,850,843,844,845,759,759,770,754,757,745,765,764,752,764,751,745,610,607,617,606,586,598,599,601,585,580,586,578,585,587,580,591,585,583,578,575,878,867,873,866,862,851,865,861,877,1023,1002,1010,1000,999,995,917,914,911,918,919,928,933,916,920,926,928,911,936,930,922,810,810,815,809,811,813,665,669,651,658,654,669,667,659,654,659,653,777,804,794,798,805,797,796,798,789,775,800,796,806,782,800,789,788,1013,1017,1016,1000,1011,1028,1004,1002,1009,1004,1014,1016,1009,1009,835,835,839,834,843,852,853,834,843,852,841,830,564,531,544,538,550,554,555,549,568,550,551,545,557,516,510,516,514,522,520,512,521,520,525,585,579,572,561,577,579,578,589,579,577,581,579,578,588,576,586,582,631,630,632,628,617,621,623,631,632,623,903,902,917,911,926,902,914,911,914,915,905,917,912,916,906,925,894,895,907,913,908,906,910,914,911,909,894,904,913,909,905,903,900,896,904,840,820,814,807,820,815,801,821,815,832,816,818,826,816,821,913,894,890,888,875,895,899,875,885,880,883,888,881,884,893,888,883,859,864,868,866,871,874,867,865,867,871,866,865,863,874,864,870,869,869,691,685,681,666,672,688,679,665,691,677,679,672,590,598,587,594,586,589,595,591,584,593,595,594,596,591,590,600,602,579,592,1009,1026,1020,1025,1005,1013,1014,1010,1006,1008,1032,1013,1029,1031,871,869,860,856,886,859,872,879,610,610,605,622,606,598,637,592,604,622,616,616,625,603,604,644,642,635,637,640,662,632,662,651,668,670,641,651,584,591,589,591,597,589,584,602,596,578,595,593,587,585,582,616,619,619,616,615,620,613,613,611,619,620,626,609,620,587,588,584,576,579,570,576,575,577,582,578,578,588,1101,1109,1112,1105,1124,1110,1118,1082,1102,1099,1104,1135,1113,1106,1094,1153,1104,1017,1022,1040,1042,1050,1033,1043,1057,1047,1034,1049,1010,1030,1046,784,754,761,755,760,765,774,786,782,768,755,759,770,781,754,757,754,762,615,601,602,603,592,603,607,586,605,609,598,497,494,493,499,507,501,491,493,500,497,503,505,505,500,509,535,524,525,529,537,520,538,523,529,528,535,523,532,529,526,520,520,543,523,531,587,585,582,581,580,584,584,581,641,637,639,634,644,644,639,640,642,643,622,623,629,630,631,630,621,621,625,624,624,969,915,931,917,938,921,924,921,910,835,805,809,824,818,802,820,822,802,808,810,813,820,816,820,828,812,809,636,643,647,639,620,621,636,636,637,639,633,641,636,642,635,619,795,789,792,788,792,801,825,797,798,776,789,792,795,778,798,789,799,784,786,789,758,760,766,767,771,772,773,755,762,768,602,614,601,620,605,616,617,619,599,617,604,1004,992,977,999,978,984,1016,995,1016,964,994,998,995,1012,1001,1003,976,966,972,960,967,961,973,968,971,978,971,977,969,975,960,971,969,973,953,961,975,975,860,820,843,842,851,861,845,846,629,622,618,623,630,622,949,990,988,990,995,986,991,979,1002,996,1004,991,997,989,1001,980,983,884,877,860,875,879,893,894,898,878,882,900,879,883,871,872,896,894,887,893,1050,1050,1044,1052,1061,1058,1032,1051,1043,1047,1051,1053,965,975,982,962,971,980,972,969,975,971,982,972,977,906,911,911,914,900,911,904,640,626,642,632,653,625,628,641,629,624,631,1042,1019,1048,1054,1033,1034,1043,1053,1032,1045,786,792,801,769,796,769,797,795,789,811,792,766,792,816,591,610,592,598,599,601,589,597,596,597,594,1121,1138,1154,1120,1145,1135,1146,1163,1136,1136,1159,1145,1159,1130,1153,961,974,942,951,973,964,944,961,968,979,958,1052,1056,1064,1067,1055,1054,1059,1066,1057,1053,1071,1048,1054,1054,883,881,895,890,912,898,897,874,899,899,887,900,884,895,889,903,894,886,896,880,894,641,619,625,622,627,624,626,627,620,628,615,634,614,626,1016,1019,1037,1022,1008,1025,1026,1019,935,918,922,927,932,933,937,932,929,934,803,797,803,802,805,791,801,794,804,793,804,799,805,799,804,806,764,762,765,780,758,772,760,769,777,765,770,762,777,775,776,769,755,774,756,659,649,656,655,662,656,655,655,651,653,666,656,660,649,665,661,659,656,659,721,718,721,726,710,706,713,718,709,714,708,616,613,604,613,625,611,613,605,603,606,600,619,810,829,825,833,816,819,826,816,822,832,818,822,835,825,632,635,633,620,617,615,629,626,624,624,628,620,543,542,548,534,543,553,547,550,548,538,550,688,704,695,703,695,704,695,697,700,704,699,708,699,698,694,685,708,705,682,971,968,975,966,974,975,958,955,969,962,984,965,974,978,954,809,798,798,796,789,796,798,803,800,808,794,791,805,799,793,795,646,628,628,632,636,647,647,636,652,639,637,646,629,614,611,618,609,615,612,613,613,604,606,622,617,615,609,606,615,612,612,569,565,566,569,575,568,574,579,572,572,573,572,572,566,573,575,855,865,855,860,862,877,874,862,870,898,865,858,871,880,865,702,701,691,695,703,699,704,704,719,694,714,698,823,838,819,848,835,834,822,604,604,606,613,614,614,625,613,618,629,597,613,616,628,619,597,611,625,587,585,580,583,593,584,576,585,587,585,585,838,850,867,842,856,860,839,846,861,863,871,850,849,849,835,862,652,652,652,662,649,662,645,661,650,650,656,662,675,673,645,653,511,524,517,529,559,565,551,558,568,562,563,554,558,546,592,606,606,593,607,976,979,940,966,943,983,964,967,958,958,797,780,778,775,789,807,791,812,804,789,781,800,809,791,786,818,679,685,698,698,703,714,696,685,691,696,699,692,694,692,692,692,698,696,690,698,701,627,603,611,606,603,611,612,607,599,607,612,613,613,611,610,749,779,766,779,770,758,776,778,761,766,770,769,771,930,944,930,927,932,925,938,945,927,977,979,969,985,967,975,976,978,983,975,975,975,966,975,818,826,821,816,817,827,832,813,826,823,823,827,827,952,943,954,948,957,941,951,954,950,956,945,947,952,953,951,842,849,848,816,825,842,842,833,843,846,923,943,949,942,942,934,943,936,934,933,935,1026,1039,1026,1023,1028,1024,1035,1016,1048,1026,1019,1038,1028,865,868,864,866,867,890,859,864,867,876,864,856,865,864,863,858,864,867,940,938,941,953,916,924,971,933,924,947,930,929,946,927,960,913,939,943,944,934,951,935,951,957,962,957,969,959,965,962,967,960,962,963,959,966,961,864,841,845,843,854,855,841,868,848,829,834,1163,1136,1108,1128,1119,1095,1116,1139,1136,1129,1125,1141,1110,913,903,923,908,915,911,915,929,910,916,918,616,621,609,637,611,627,625,634,629,605,618,624,885,884,895,881,906,906,881,861,887,893,983,994,992,993,993,981,996,985,990,989,993,977,984,915,910,908,910,909,912,909,905,914,908,922,916,909,918,918,914,915,912,912,905,816,820,816,813,803,810,821,820,814,810,803,687,680,660,670,664,680,660,668,668,659,660,668,674,659,671,661,664,672,673,591,594,604,596,597,602,603,611,601,611,599,595,609,595,601,603,606,603,599,860,854,866,863,855,849,852,859,884,862,632,622,636,628,623,635,628,634,632,622,631,622,629,626,630,628,630,576,563,556,578,561,550,569,571,574,561,564,566,565,561,569,567,568,1170,1164,1128,1181,1146,1131,1173,1163,1212,1166,1157,1162,979,1007,988,993,997,993,624,606,617,621,603,612,614,609,600,609,590,613,538,548,559,544,540,536,540,542,542,547,549,536,542,1044,1011,1040,1014,1000,981,1000,1011,1024,1026,989,977,987,968,991,968,995,970,982,992,979,977,982,985,671,648,669,666,664,661,678,656,668,653,680,665,550,557,557,557,557,549,541,559,540,554,551,747,758,761,758,752,759,743,746,737,750,744,766,751,752,744,741,744,646,661,640,661,649,644,649,659,673,673,671,684,680,678,796,817,798,780,777,775,789,772,790,800,790,795,939,930,924,944,936,926,925,936,944,952,916,918,932,939,944,947,941,949,949,948,908,905,905,913,911,906,907,897,907,899,890,907,905,989,1006,1000,996,1000,1002,1008,992,1004,1001,998,888,894,909,900,906,893,886,895,901,897,884,905,907,890,1004,1011,1024,1022,1018,1013,1013,1021,1011,1005,1032,825,849,852,851,837,839,848,832,623,600,608,598,582,611,598,603,615,615,1044,1034,1019,1021,1031,1019,1044,1036,1037,1031,1022,1020,1049,1039,1016,1018,1021,1023,1018,871,853,842,877,865,863,881,858,847,848,867,850,861,851,601,607,630,606,617,608,613,612,1005,1028,989,1001,1023,1005,1030,996,1014,995,996,1023,1012,1013,1007,1006,1008,1009,994,882,875,880,885,870,879,890,890,861,877,858,882,886,871,1033,1024,1039,823,840,836,820,828,809,823,836,826,817,826,627,623,615,614,628,610,619,626,628,611,630,623,909,892,930,902,904,908,922,914,909,932,906,915,912,906,948,948,953,946,952,943,947,952,951,946,957,937,955,944,936,947,871,867,868,863,866,864,873,876,872,807,799,798,798,794,793,803,801,796,813,803,802,799,803,733,729,724,718,724,729,726,734,733,724,733,725,731,727,726,640,648,647,642,653,639,639,653,652,648,650,651,651,655,655,661,648,645,653,809,809,812,797,814,815,813,829,813,818,807,799,750,744,743,741,746,751,751,744,741,742,747,748,663,648,655,653,655,655,649,660,656,659,643,645,645,652,644,653,645,659,651,883,899,888,902,890,885,889,885,890,902,913,886,891,663,650,666,666,666,662,661,786,814,793,779,793,797,794,785,806,797,800,1014,1017,1000,1005,1000,1015,987,999,999,1004,996,1012,1004,995,991,997,1011,903,902,890,894,900,903,908,912,894,910,911,881,908,915,889,896,893,639,654,629,662,661,651,638,646,647,653,655,659,656,661,638,635,644,644,659,668,658,656,833,846,836,846,837,841,823,826,850,837,987,979,977,978,978,968,980,985,973,969,976,968,974,977,982,971,991,977,974,964,830,818,820,824,833,822,822,828,834,823,626,629,626,632,635,639,625,623,621,619,633,639,627,628,634,628,620,634,621,631,620,622,618,629,616,621,623,930,922,935,909,941,942,899,946,937,938,956,943,787,774,774,778,780,790,794,783,779,599,603,602,599,611,613,606,605,608,609,606,612,598,984,1027,1000,995,1007,993,1000,1006,996,996,1016,1009,1003,1024,1009,1017,1008,1023,1001,1012,954,919,927,929,955,941,932,936,932,930,938,935,927,936,928,923,927,927,931,1064,1064,1063,1065,1078,1059,1069,1069,1071,1071,1057,1062,1063,1070,1057,1062,1048,889,902,901,902,894,893,892,899,909,896,907,979,983,974,979,975,974,980,973,978,972,967,975,973,980,973,974,976,969,883,887,872,862,874,881,870,877,870,864,885,878,872,872,866,873,877,867,609,620,588,599,591,606,589,610,601,612,594,600,601,604,604,537,528,532,528,527,534,542,581,587,584,580,576,580,577,578,580,587,584,576,586,573,593,587,580,583,580,626,617,621,616,607,615,618,617,627,616,618,638,607,623,629,618,1065,1064,1071,1064,1058,1062,1067,1065,1086,1049,1080,1079,927,928,942,954,938,923,947,933,938,933,938,920,926,940,947,666,638,620,637,649,560,564,573,571,564,557,544,562,575,568,553,565,550,567,563,851,879,856,870,890,875,858,863,855,867,861,851,687,675,677,680,684,671,666,687,669,680,682,673,1084,1088,1075,1091,1082,1100,1081,1082,1100,1113,1088,1114,1094,1113,1088,884,874,888,915,882,891,888,898,889,889,899,913,921,933,944,930,932,922,938,944,927,926,930,925,928,924,974,971,978,975,986,982,974,984,978,984,983,983,980,971,855,840,844,857,852,863,839,860,867,861,879,862,853,861,978,963,984,987,942,946,986,986,957,972,981,973,971,976,966,978,980,974,970,978,987,981,979,969,977,984,983,968,971,969,982,985,983,855,841,849,849,843,842,843,642,659,658,655,659,666,657,640,662,674,650,654,671,871,881,882,871,859,869,881,877,879,861,870,875,634,642,653,647,649,651,622,643,627,635,654,652,636,644,652,644,661,641,636,520,517,515,518,509,515,524,504,513,516,532,511,526,527,509,578,572,572,568,578,583,581,570,568,580,571,581,573,574,575,578,570,598,583,609,595,600,599,593,609,890,929,911,912,917,898,900,927,902,901,920,911,904,921,889,899,908,911,914,651,659,653,661,651,664,669,645,682,668,667,650,658,655,675,531,539,553,542,542,544,544,538,570,571,568,565,573,572,581,572,572,562,573,562,574,568,959,976,972,963,975,965,998,972,992,985,976,957,970,881,882,890,881,914,867,879,875,883,890,897,887,888,892,985,993,992,980,989,990,997,989,986,979,986,991,986,1000,990,993,1002,877,873,852,865,862,869,871,867,846,867,849,1035,1016,1039,1029,1026,1022,1009,1029,1025,1022,1011,1024,1030,1031,1031,1027,1034,1037,1021,1038,1030,1033,1030,894,896,887,888,899,894,913,893,903,900,962,956,950,964,959,955,972,961,956,969,951,869,856,866,853,863,858,865,875,873,862,860,857,870,852,859,866,867,857,641,637,639,623,635,648,645,648,640,642,621,632,641,618,632,618,639,646,639,641,641,632,641,600,605,604,610,607,595,594,609,599,590,599,598,593,593,599,1151,1179,1133,1146,1128,1151,1134,1171,1144,1126,1130,1139,1114,1181,1159,1163,1114,1148,1172,1014,1025,1024,1020,1020,1039,1006,1044,1038,1034,1004,1012,1024,995,1019,1038,813,813,798,823,812,802,802,822,813,817,820,819,823,820,816,821,809,985,961,976,968,970,972,978,970,974,890,898,901,891,885,892,903,889,900,890,1141,1147,1147,1150,1166,1165,1140,1145,1142,1166,983,969,984,970,974,985,988,984,980,989,986,1014,1014,1012,1015,1016,1026,1007,1018,1025,1024,1019,1001,1019,1027,1024,1011,1019,1019,1011,1019,1025,1020,844,841,845,842,844,850,844,829,845,834,841,846,849,838,843,832,840,643,650,657,644,667,657,656,662,645,659,644,644,656,643,674,818,812,802,805,810,799,802,805,805,632,631,626,632,635,637,627,634,654,624,635,635,647,624,612,612,627,622,635,633,618,631,633,621,625,622,633,631,630,617,621,636,624,625,621,621,618,611,623,617,1031,1008,1018,1018,1007,1013,996,992,1020,1014,995,1020,877,861,898,861,864,879,866,855,879,879,859,868,867,886,846,571,584,567,574,564,591,948,988,970,952,968,959,968,750,758,741,739,758,745,760,734,761,858,850,866,859,883,867,850,866,862,864,882,869,864,788,797,785,787,791,784,786,787,785,791,781,790,796,789,783,785,787,653,659,665,659,660,654,653,656,666,658,656,647,773,784,776,766,813,780,776,786,790,798,787,785,786,791,787,788,780,762,750,751,756,767,766,752,755,753,746,766,630,619,613,608,613,614,613,617,618,616,619,625,620,613,1075,1043,1070,1067,1085,1038,1062,1061,1069,1069,1050,1054,1072,1054,904,912,915,909,939,929,931,913,906,924,919,909,908,902,621,618,599,595,607,580,609,591,604,613,611,548,538,549,537,548,534,544,543,541,549,542,552,549,533,548,541,555,549,561,542,551,1035,1016,1060,1034,1040,1066,1040,1024,1032,1054,1032,1018,1035,1054,1064,1021,1059,938,931,930,942,930,928,935,942,923,933,924,668,681,672,655,669,669,663,656,688,887,714,732,741,726,728,744,928,943,931,922,929,1024,1024,1021,1031,1041,1029,1025,1028,1021,1031,1039,1030,1034,1039,1030,1021,894,881,885,883,890,883,877,889,876,883,879,876,879,1027,1024,1037,1032,1041,1032,1024,1041,1025,1037,1027,1030,1033,1036,1024,1019,864,870,872,883,883,869,877,885,868,857,886,881,859,861,1048,1033,1047,1035,1050,1039,1052,1047,1038,1042,1034,948,923,927,931,926,932,921,922,925,916,936,926,926,930,945,738,737,739,734,728,758,735,746,760,758,742,760,752,996,1009,1009,999,1010,1001,1008,992,858,857,858,864,848,872,861,856,848,856,1033,1041,1048,1063,1044,1050,1051,1037,1046,1053,1048,1049,1041,1031,865,852,883,864,887,868,869,886,870,870,883,579,573,565,572,583,559,561,564,573,576,566,977,971,1000,985,976,982,978,985,983,991,917,907,923,916,921,922,908,929,928,941,919,920,923,923,920,917,916,920,956,963,969,961,961,965,950,958,958,959,955,951,951,955,961,953,968,967,951,833,835,850,832,824,840,843,833,848,839,651,638,638,626,658,645,630,626,634,641,645,641,629,634,627,802,802,800,807,819,795,795,810,810,793,790,803,788,790,810,802,800,804,805,937,957,956,954,948,953,965,951,952,943,943,958,992,986,997,1003,968,998,975,992,984,990,814,798,788,796,799,803,801,809,501,489,514,514,509,520,503,515,508,507,514,516,521,510,524,506,535,535,537,531,525,516,529,535,526,532,538,541,524,533,539,543,538,595,569,575,555,560,572,573,583,568,561,581,566,560,584,574,575,572,560,584,579,569,686,694,697,689,683,672,697,681,693,673,685,682,680,666,672,663,670,674,674,661,658,672,669,662,661,656,668,665,665,992,966,974,973,981,957,973,972,953,973,971,870,885,861,848,866,874,875,860,864,861,869,860,859,859,859,622,618,624,651,620,619,628,613,626,641,571,579,578,579,577,574,581,571,586,585,581,568,1061,1020,1041,1063,1046,1039,1032,903,891,907,915,876,908,903,901,891,887,894,918,909,911,899,907,910,893,1107,1096,1096,1107,1104,1113,1108,1105,1104,1105,1114,925,927,924,912,919,915,912,918,942,917,917,923,928,906,900,901,920,913,910,931,954,932,946,933,938,948,948,941,935,938,938,933,925,934,920,925,940,936,930,926,917,923,918,925,920,926,929,920,918,921,819,825,837,828,838,833,828,830,814,832,828,828,832,817,825,827,627,620,646,630,623,636,633,632,632,622,610,622,627,627,616,621,620,597,605,599,607,601,606,597,605,591,601,601,604,587,597,989,981,972,971,985,981,975,962,968,998,975,982,978,990,967,984,965,981,967,685,695,681,681,695,697,703,682,686,671,685,704,683,1044,1025,1016,1036,1026,1033,1045,902,900,901,894,898,913,906,904,903,910,560,557,574,581,570,590,574,569,559,574,579,551,573,911,925,920,925,906,913,937,923,926,936,936,892,924,925,685,703,688,676,670,682,697,676,680,689,690,686,693,691,685,1060,1062,1055,1071,1048,1051,1049,1039,1073,1058,1072,883,861,873,882,857,888,878,866,862,862,857,886,845,577,550,572,567,552,545,550,543,527,570,572,541,557,577,556,561,552,576,559,567,567,577,563,551,576,564,883,871,885,888,862,881,892,887,893,882,723,713,708,704,729,720,730,710,726,721,694,704,715,723,710,708,698,716,670,660,676,658,664,675,663,671,674,672,671,674,595,587,598,595,593,594,600,587,1050,1026,1012,1008,1016,1011,1032,1034,1032,1006,1008,1012,1006,901,925,918,931,961,986,959,979,969,984,987,994,973,1009,981,985,968,977,985,1025,1032,1055,1028,1064,1042,1020,1037,1042,1039,885,893,898,885,897,907,895,891,903,919,892,892,906,889,887,903,882,905,1080,1066,1073,1080,1071,1081,1076,1078,1052,1078,1072,1069,1085,1063,1056,1054,1015,1015,1017,1016,1015,1006,1002,1015,1016,1020,1014,1002,1024,1013,1012,1013,1014,825,818,826,814,819,806,824,819,813,816,811,815,835,813,833,800,820,819,818,571,571,569,582,579,592,562,579,560,579,580,566,583,570,569,566,567,579,577,571,558,550,549,540,559,560,561,551,556,559,546,546,556,542,557,556,553,1029,1046,1053,1053,1073,1082,1066,1042,1031,1053,1101,1029,1072,1062,1038,1075,1047,1060,938,920,931,957,960,938,935,948,922,934,949,945,935,941,941,940,926,591,601,581,573,582,603,587,587,579,571,584,577,589,587,596,569,588,582,511,495,505,502,515,504,501,514,491,509,508,503,504,545,525,538,537,541,525,516,533,516,575,583,584,581,589,579,581,579,586,579,584,588,580,594,603,608,611,610,605,601,607,607,600,602,601,597,599,1071,1051,1049,1019,1034,1048,1033,1049,1029,1049,1053,1073,1057,1029,1078,933,946,970,958,955,939,950,938,935,951,962,956,942,954,956,643,597,597,613,603,597,615,631,611,630,598,618,602,630,619,743,776,773,773,761,760,761,753,658,681,682,669,675,666,679,682,595,600,609,595,606,608,601,867,876,886,863,859,863,863,854,854,840,852,874,861,850,864,869,860,856,869,664,658,643,655,655,644,651,650,657,659,658,645,663,652,650,675,580,571,566,574,572,577,570,575,579,569,574,571,588,576,564,563,935,924,895,922,926,926,942,918,920,926,939,676,692,692,668,685,689,681,688,678,671,674,686,678,684,687,700,690,534,528,511,526,520,526,522,533,529,514,527,501,519,528,517,511,519,521,493,497,489,492,510,495,502,506,486,502,505,527,523,526,510,533,523,543,525,532,516,528,515,536,548,518,532,591,586,584,589,597,591,590,585,579,578,591,580,592,640,622,636,619,631,630,640,631,635,627,633,634,634,631,537,543,536,551,532,553,541,547,545,551,545,544,536,548,538,538,543,506,522,521,512,523,525,521,515,525,525,515,520,524,511,524,526,517,518,538,543,540,522,542,533,538,535,531,535,525,543,924,944,943,936,950,940,943,950,758,733,753,750,732,731,731,734,753,732,740,746,756,739,839,843,833,836,841,815,836,835,816,834,847,827,830,834,623,649,636,635,644,653,646,642,638,648,638,646,649,633,653,649,648,643,566,568,558,558,568,558,567,563,553,559,559,628,621,620,619,624,627,611,610,615,1081,1048,1088,1081,1079,1077,1075,1073,1051,1086,1081,1075,1063,1066,1077,1057,1080,1068,1062,1062,916,903,906,902,936,912,909,935,923,912,922,922,900,914,951,951,951,951,939,945,955,949,949,950,942,955,948,962,945,942,777,776,793,783,791,793,797,791,797,792,785,631,617,635,625,635,630,621,622,617,616,622,627,634,623,624,631,621,630,623,627,618,971,981,966,986,966,976,967,964,959,964,959,980,978,975,962,947,962,958,964,960,957,961,951,972,966,969,955,968,965,967,950,924,926,921,934,929,929,924,919,917,931,918,923,914,918,921,916,926,919,922,920,784,782,778,780,581,564,569,581,575,580,571,566,574,573,587,580,576,574,595,574,588,975,1012,1007,1006,1021,1002,1006,1002,986,1017,1032,1012,1000,991,1015,997,1008,1013,1003,1004,984,997,988,994,988,778,761,781,780,784,790,780,785,781,582,579,588,590,585,582,829,828,846,862,846,847,856,847,828,849,845,842,825,852,1002,1004,997,1009,986,1000,991,919,929,906,917,923,918,910,919,914,920,924,775,783,776,790,771,781,770,780,759,775,774,772,770,900,875,875,894,892,910,894,878,890,891,877,898,883,886,952,952,934,939,944,945,936,940,940,858,864,876,879,857,858,851,868,597,604,596,601,591,585,596,597,594,580,573,564,570,571,581,571,578,564,557,574,568,586,877,874,879,876,882,881,889,879,763,771,765,775,764,768,767,768,769,751,758,757,587,595,584,578,595,581,597,601,543,545,534,525,533,540,534,515,534,536,540,546,537,530,533,544,539,542,542,527,919,937,935,945,918,991,978,987,981,972,994,976,982,974,977,975,858,847,856,853,851,868,860,843,859,883,837,839,853,948,951,972,965,952,953,940,941,928,940,966,922,923,925,921,930,931,917,911,931,934,929,916,924,918,931,923,917,791,814,795,801,786,804,792,813,793,807,792,803,812,794,791,586,591,584,586,597,578,585,581,584,588,565,571,577,589,846,836,838,844,847,864,851,862,855,836,847,635,642,636,633,640,636,629,629,627,626,629,637,638,641,627,638,619,551,556,556,557,550,543,555,552,556,551,553,557,554,548,559,554,559,948,956,945,946,961,971,960,966,969,936,962,951,956,879,881,906,900,895,906,882,897,887,918,884,897,893,884,895,900,895,905,909,905,906,917,907,913,923,902,911,909,905,910,909,913,912,919,926,924,932,924,925,926,926,929,910,924,926,925,928,928,920,921,828,835,847,846,839,830,826,836,837,830,849,840,798,802,797,804,798,809,798,789,781,769,769,755,758,769,670,652,649,647,652,656,648,650,665,641,656,650,655,650,657,665,647,640,653,646,648,876,851,868,872,907,855,866,867,892,874,885,859,864,883,873,884,871,762,768,765,760,775,779,768,760,761,772,764,775,770,784,770,716,728,711,725,717,729,722,722,711,716,714,724,710,724,946,945,967,974,958,960,955,956,939,951,966,935,959,935,946,965,930,939,940,944,940,932,943,932,937,942,934,934,946,942,800,816,799,813,808,813,815,808,825,817,796,831,821,813,809,831,808,632,622,622,633,635,627,649,624,633,642,614,625,617,634,634,629,642,631,637,636,640,631,635,626,638,633,639,632,628,636,625,630,641,633,1071,1056,1050,1052,1060,1051,1062,1069,1087,1084,1079,1098,1085,1067,943,933,938,937,941,942,950,944,939,949,955,944,932,774,777,779,787,790,791,788,781,772,777,775,771,775,964,974,987,975,975,975,979,975,974,896,887,892,885,875,906,882,890,893,1148,1151,1137,1138,1130,1138,1143,1134,1132,1137,1138,1129,894,892,890,895,886,886,886,873,886,891,883,879,875,889,892,894,931,962,951,926,949,924,936,923,929,929,952,921,920,921,917,925,917,923,917,912,976,985,970,866,874,851,841,868,852,868,858,850,862,877,948,966,950,947,941,932,951,928,941,943,947,944,967,930,931,954,1009,997,997,989,1002,983,982,994,1013,1000,880,877,860,879,878,873,886,855,881,873,871,976,986,982,1002,1011,1004,1017,1010,1008,1008,1001,1005,970,963,965,977,967,978,974,966,864,865,856,852,857,849,855,864,861,850,866,841,854,860,862,840,834,842,844,842,839,850,841,831,832,849,846,830,629,637,645,633,622,622,623,630,614,633,633,617,626,620,622,616,612,623,621,585,585,575,577,573,589,573,563,590,572,585,587,579,956,967,956,956,961,936,941,948,984,960,964,943,944,675,687,669,674,667,683,658,680,668,689,669,668,664,684,956,924,952,932,938,934,932,942,928,933,969,962,964,956,956,967,949,971,962,963,804,798,802,806,808,803,797,606,587,587,585,598,851,855,859,845,636,657,644,657,654,647,632,646,635,647,641,637,654,638,580,579,569,578,583,571,574,579,588,584,582,581,576,577,573,583,582,585,853,868,851,868,879,859,875,887,899,884,898,894,891,886,888,886,900,893,890,896,898,876,998,994,998,990,986,976,993,987,990,994,980,990,975,980,845,851,844,857,834,837,857,940,933,940,952,932,940,937,932,927,939,935,950,939,933,856,852,832,845,859,832,853,831,852,972,958,959,973,980,964,970,876,832,850,840,847,871,858,858,855,857,847,846,852,849,860,623,626,628,633,606,632,619,646,610,626,617,1068,1079,1043,1086,1062,1085,1062,1068,1070,1058,1056,1070,1084,1090,1060,1074,883,869,883,876,879,866,882,869,880,883,870,880,872,878,887,629,628,626,618,643,636,640,636,638,623,633,629,640,635,1008,995,1001,1004,1028,1011,1010,997,1004,1008,1006,1006,1014,1019,998,1008,1011,996,1005,998,1003,1021,996,998,997,1000,995,995,1004,1003,1000,930,922,912,916,924,910,943,922,925,924,924,925,922,919,925,930,847,854,853,857,850,844,852,839,849,854,852,856,855,854,842,862,855,860,849,856,679,681,657,666,683,677,688,669,683,687,673,656,673,669,688,672,892,906,897,923,902,889,906,906,906,896,900,890,903,651,644,658,627,660,651,655,653,644,641,639,632,650,1138,1113,1130,1145,1167,1138,1115,1141,1130,961,957,945,963,940,972,938,945,958,948,964,929,943,954,933,983,968,976,975,966,971,986,978,971,987,878,865,878,879,871,873,859,869,865,870,864,864,869,871,613,602,579,608,603,588,606,595,600,594,586,603,609,613,594,587,587,591,597,586,593,588,603,606,598,930,942,932,923,914,922,919,913,898,954,931,924,919,951,962,961,968,952,956,953,962,962,960,951,955,971,957,961,944,951,947,960,957,948,958,953,955,956,952,949,960,966,766,773,758,767,763,778,760,543,532,546,536,520,541,518,532,538,540,529,518,523,522,521,522,539,524,534,524,525,608,612,614,601,609,600,608,607,605,614,705,699,707,704,710,711,716,721,707,712,714,716,705,698,710,579,585,583,576,579,582,587,572,587,575,576,591,586,566,901,883,909,886,908,890,909,893,889,908,818,852,829,849,859,838,838,624,633,636,632,631,624,648,637,635,628,645,623,695,700,702,705,705,688,705,698,698,689,690,693,696,697,702,1011,1025,1013,1033,1035,1010,1018,1018,1022,1002,1013,1020,1040,1016,1006,988,995,979,975,981,977,986,980,985,827,827,825,832,827,823,827,823,833,841,827,838,825,835,1004,959,977,1006,999,971,987,977,989,964,965,972,984,990,974,983,977,979,975,983,975,978,972,851,860,843,846,849,844,851,835,844,847,858,852,842,931,930,913,934,964,923,916,924,914,891,947,944,916,910,910,944,927,891,888,891,901,886,895,901,894,891,891,895,899,898,895,894,897,899,906,903,897,897,894,892,900,895,902,900,895,896,935,935,932,934,934,936,931,932,941,929,939,961,960,954,963,967,952,952,963,954,959,966,947,947,950,863,848,846,846,838,828,833,846,834,839,842,853,842,849,842,833,645,630,642,629,628,626,630,635,629,633,628,623,835,843,875,841,845,856,844,850,850,850,681,686,671,690,683,684,679,705,691,684,675,683,687,616,627,617,615,618,616,606,615,622,937,923,928,922,918,924,932,935,916,917,925,946,933,916,933,925,730,724,719,718,715,711,714,715,715,721,727,724,834,823,831,822,815,814,805,825,826,817,1018,1014,1017,1000,1012,1018,1013,1022,1013,1012,936,931,922,926,924,917,926,914,922,910,902,920,911,917,919,927,921,919,920,926,903,914,907,923,904,912,906,919,910,636,639,632,640,632,636,632,628,613,657,631,636,635,1025,1010,1001,1021,1018,1002,1000,1026,1019,855,873,866,857,868,862,853,849,959,947,955,942,934,932,928,951,949,960,944,953,967,968,968,957,966,960,963,965,965,961,966,956,974,978,959,956,969,972,1023,1021,1023,1028,1032,1022,1022,1008,1025,1013,1025,1028,882,869,872,877,868,884,880,863,879,867,870,882,869,866,878,904,925,901,934,901,905,886,880,917,884,905,927,881,899,910,914,891,871,895,906,894,891,892,900,882,896,896,876,877,882,888,887,881,945,930,926,921,940,925,927,931,932,933,925,930,937,1028,1017,1011,1009,1013,1010,1019,1015,1001,1016,1016,886,889,883,904,869,867,884,880,874,885,884,615,608,616,618,609,603,625,626,601,619,610,603,603,612,604,998,1017,1037,1030,999,1008,1023,1023,1004,1035,1022,1025,1003,1023,1008,874,852,860,845,859,847,844,851,865,865,867,636,626,629,627,628,620,645,634,629,625,644,640,651,646,632,624,1027,1058,1049,1050,1046,1056,1025,1047,1050,1030,1036,1025,1048,1042,1046,1040,1022,1007,1027,1031,1022,1026,1020,1024,1032,1034,1029,1015,1030,1024,1031,1026,1019,1036,1027,886,905,910,905,877,898,879,904,897,898,882,886,963,952,940,974,972,959,955,964,952,954,926,970,955,954,963,964,949,961,966,966,958,957,951,958,956,956,955,961,898,876,890,896,896,892,892,889,889,884,880,884,887,890,655,637,644,648,627,645,645,636,645,635,632,657,645,629,642,644,630,604,602,611,608,606,612,606,608,604,610,609,613,605,605,596,612,614,599,595,600,592,601,591,582,596,599,588,593,586,590,590,589,596,585,594,884,882,878,886,640,632,654,638,635,636,634,627,647,617,632,629,646,639,615,621,570,571,572,578,567,572,564,573,560,566,569,565,567,576,569,565,563,560,560,1074,1091,1106,1081,1081,1102,1098,1092,1081,1088,1101,1100,1088,1131,1096,1080,1080,1098,952,994,1006,984,976,963,985,977,971,985,966,964,968,969,970,593,594,605,603,605,578,572,574,603,583,582,565,585,586,592,587,583,907,899,934,907,900,921,909,926,913,906,920,908,909,687,691,1074,1043,1046,1055,1064,1051,871,879,870,859,867,880,873,866,854,874,856,892,866,873,541,524,540,516,548,540,548,537,522,537,523,532,540,578,570,574,580,569,572,570,572,603,606,612,589,600,596,606,601,613,601,601,601,600,596,602,599,601,594,1073,1110,1067,1068,1081,1113,1062,1085,1102,1098,1058,1100,902,894,901,910,886,891,903,899,892,908,896,905,896,888,904,893,909,873,888,896,858,894,874,855,852,845,846,856,844,851,843,898,890,897,887,887,894,897,786,785,770,773,796,774,763,782,789,792,773,782,779,753,604,591,598,609,598,607,591,603,609,589,602,615,604,1001,974,964,966,977,976,984,980,957,964,963,959,969,976,972,965,994,969,964,690,657,661,644,663,679,666,671,655,665,673,656,646,931,944,929,934,943,938,943,941,930,943,934,951,919,923,923,926,907,911,912,909,922,917,917,926,910,918,920,905,923,918,909,914,856,860,862,855,860,862,859,863,868,859,884,860,868,770,767,750,757,756,768,754,764,752,764,758,753,766,751,753,612,611,616,609,614,602,614,1090,1095,1089,1056,1052,1075,1064,1073,1075,1099,1061,1051,883,892,886,896,1063,1066,1058,1060,1078,1072,1063,1074,1053,1054,1061,1065,1082,914,933,916,906,913,909,913,893,928,921,909,917,902,919,917,604,600,625,622,634,614,597,624,597,610,619,509,519,518,500,504,520,505,516,522,523,506,519,509,514,587,585,580,584,593,582,584,573,597,583,592,576,641,624,614,638,635,625,635,629,635,869,875,869,873,867,868,860,873,875,862,858,860,856,615,595,609,595,628,607,608,610,620,594,605,601,633,614,536,546,544,539,526,532,528,541,536,533,525,521,515,1149,1169,1152,1169,1164,1146,1155,1162,1128,1163,1178,1153,1153,1125,1190,1200,1150,1021,1026,1010,1023,1028,1030,1025,1016,1024,1029,1023,1026,1015,932,947,964,924,930,939,955,955,923,907,954,935,973,975,973,974,966,964,965,973,975,975,863,845,869,865,885,879,858,868,882,859,872,860,873,868,886,1042,1046,1049,1069,1062,1043,1047,1051,1042,1065,1053,1060,1042,1057,1056,1063,859,871,887,851,857,857,634,636,633,622,625,622,619,627,622,619,629,626,642,624,627,629,618,956,940,941,912,936,914,928,916,960,959,963,971,951,970,969,951,965,968,954,955,951,951,952,954,950,955,950,952,948,946,951,949,957,953,940,939,934,936,934,939,944,943,933,939,934,937,927,938,942,937,927,934,897,905,917,905,917,926,907,915,912,910,910,907,912,905,963,974,975,967,971,970,973,967,975,978,972,979,974,963,982,977,979,985,971,965,972,977,917,896,898,890,890,910,895,897,907,823,788,793,802,797,818,782,806,796,800,811,802,793,815,802,804,806,960,970,982,973,976,969,975,964,982,972,970,975,978,969,965,977,968,967,868,874,891,880,879,870,875,881,875,904,902,916,903,907,907,899,911,917,910,909,909,916,909,910,906,915,910,767,775,738,754,761,761,768,762,760,751,766,750,759,755,762,1028,1021,1016,1028,1027,1017,1028,1030,1021,1033,1039,1025,1021,1019,1025,1015,1029,1030,936,943,944,943,932,938,934,943,929,940,940,934,843,852,842,839,832,844,845,841,855,840,844,654,655,651,651,656,656,637,654,655,652,653,668,865,863,873,870,864,868,872,866,873,884,630,621,629,626,617,629,634,633,614,619,632,624,642,640,634,1001,1017,1014,1011,1011,1020,988,989,993,1009,1030,1001,1016,1014,995,1046,1025,1038,1036,1025,1036,1046,1035,1043,1026,1037,1031,1028,1045,1027,1022,1042,795,786,798,806,787,791,792,775,798,806,800,790,831,799,794,787,589,572,571,587,568,581,584,586,579,582,572,566,1052,1043,1042,1025,1027,1047,1038,1041,1049,1055,1017,1070,1033,1059,1040,1052,1051,1048,1037,1050,938,935,913,921,941,945,926,934,909,927,937,916,937,1042,1042,1043,1036,1044,1048,1054,1042,1042,1042,1030,1036,1044,1043,1045,1037,1055,1053,1044,1042,869,869,869,878,861,881,876,876,885,875,867,875,874,887,890,872,855,872,874,874,871,579,576,565,572,566,589,595,584,908,916,928,932,917,923,927,908,917,920,917,900,905,729,728,734,733,739,730,723,728,726,740,734,728,884,874,876,883,876,886,872,878,864,653,634,640,646,648,630,639,655,643,630,852,846,843,835,824,828,841,843,837,840,863,839,834,671,676,669,680,685,698,676,677,661,676,679,666,826,831,826,835,840,824,842,820,830,827,830,829,824,826,1012,1011,1025,1024,1022,1022,1015,1037,1033,1032,1034,1021,1022,1027,1012,893,912,898,897,901,897,903,892,894,896,884,897,890,892,817,826,815,827,824,825,818,822,835,821,829,818,821,652,666,671,657,663,655,663,661,659,666,680,670,596,595,598,610,599,601,598,614,606,600,600,594,600,1033,1045,1050,1026,1033,1038,1036,1043,1047,1029,1050,1044,1045,1033,1039,1042,1043,1028,909,912,918,932,900,917,898,895,900,903,910,916,918,899,923,887,586,603,608,617,590,597,607,610,595,634,592,602,598,586,554,562,562,562,560,552,552,568,556,555,553,1088,1075,1078,1057,1058,1073,1080,1042,1073,1040,1023,1101,964,956,969,954,947,942,964,955,936,937,961,953,968,827,820,820,813,824,825,823,822,822,818,831,630,640,641,639,653,629,638,637,638,629,645,635,632,634,657,636,633,546,556,563,563,566,559,564,551,554,561,553,555,554,620,612,616,603,607,623,625,608,601,609,608,615,615,893,891,906,901,917,901,912,905,913,897,915,911,908,900,732,738,737,720,735,730,724,706,715,736,714,722,722,739,739,729,713,777,788,792,791,792,776,786,762,778,795,786,782,777,785,788,782,793,784,769,730,726,740,727,733,730,736,730,740,732,742,729,743,634,641,638,636,638,650,641,626,641,641,581,570,570,571,570,577,564,575,580,566,579,560,566,574,567,680,691,668,665,675,676,673,674,676,677,670,623,603,609,619,617,607,619,623,620,1023,1026,1039,1015,1013,1025,1026,1011,1032,1026,1035,1024,1010,1023,1024,1018,1018,1016,845,852,830,838,842,837,633,659,667,655,643,659,666,660,646,639,643,650,643,648,893,876,873,885,896,874,912,897,896,896,907,895,885,902,904,884,885,910,918,668,673,673,660,667,612,614,616,623,613,623,624,619,618,626,620,615,622,618,603,615,629,625,630,635,625,632,625,587,579,577,588,587,589,590,581,586,584,579,1096,1094,1107,1117,1088,1125,1087,1108,1082,1090,911,918,919,908,915,911,903,1184,1158,1152,1162,1164,1154,1173,1155,1154,1154,1175,1166,1163,1159,1157,1155,925,931,916,923,939,912,919,907,909,921,902,915,913,935,637,640,665,664,635,668,648,651,650,642,656,645,661,649,652,647,645,1162,1173,1155,1164,1184,1169,1205,1202,1168,1157,1172,1168,1135,1207,1190,1145,1193,1216,943,936,937,955,951,943,937,934,952,951,956,956,943,948,932,958,934,939,959,941,949,962,939,957,943,964,965,954,959,965,934,945,947,947,972,961,963,910,899,905,910,910,909,907,901,912,897,893,894,897,901,899,897,900,897,899,891,962,970,965,966,972,967,968,954,972,976,955,866,868,862,859,873,872,871,868,863,876,860,867,871,887,865,588,586,600,612,592,601,589,602,611,601,586,581,590,585,583,584,580,589,574,591,589,584,578,586,593,929,885,898,907,888,895,912,926,893,909,907,906,942,944,940,954,945,943,941,951,933,931,929,924,925,921,923,917,925,933,916,930,926,929,913,978,992,983,979,978,982,978,985,985,985,989,988,982,843,852,849,864,866,858,856,849,859,845,858,866,853,859,853,852,899,923,909,924,912,944,900,921,922,935,929,930,907,904,900,904,926,940,962,957,963,962,949,957,960,945,962,956,954,957,960,962,958,800,825,819,825,823,829,823,833,824,808,824,844,822,812,825,837,1120,1123,1113,1123,1128,1108,1119,1124,967,965,983,978,698,696,705,704,707,714,701,706,709,611,605,601,609,620,616,607,602,615,609,617,996,1000,999,1024,1020,998,1019,1025,1001,1005,995,1009,1017,989,1005,1012,1004,1021,924,909,913,914,921,893,907,909,919,915,929,921,622,632,642,621,639,622,612,630,624,632,622,631,638,643,699,684,693,704,684,686,691,706,701,981,996,998,979,1000,1017,996,995,994,987,992,1005,986,999,1000,995,664,672,661,667,655,681,668,664,691,670,682,692,1048,1046,1059,1048,1057,1071,1030,1058,1063,1029,1065,862,839,855,854,864,871,869,856,852,874,849,1037,1030,1027,1025,1036,1026,1035,1029,1035,1034,1022,1027,1028,1026,1022,1023,943,925,921,920,940,932,930,924,918,921,926,911,913,623,622,630,618,628,623,625,631,621,610,615,618,627,632,929,935,928,949,952,940,960,936,931,926,919,950,945,945,936,962,950,949,952,947,954,942,958,948,949,951,945,843,861,831,850,834,842,854,1011,1013,1010,991,1005,1009,962,962,967,964,978,965,967,969,960,970,976,974,970,966,966,966,979,986,964,970,862,860,868,853,863,857,875,862,859,856,856,889,871,880,873,847,808,805,812,814,810,800,808,807,806,814,815,804,813,819,613,623,633,635,612,614,612,626,615,627,624,625,618,617,630,616,565,577,884,886,891,880,885,887,890,867,909,875,896,886,882,876,879,889,905,891,879,958,957,962,963,966,963,969,976,968,964,963,966,955,961,968,960,882,869,867,869,866,860,850,869,862,874,875,874,870,852,876,864,857,1028,1033,1035,1022,1032,1034,1032,1032,889,900,890,896,894,897,889,897,898,896,896,898,891,887,686,674,667,668,661,674,658,681,663,666,666,798,801,797,796,804,797,799,788,789,792,802,820,812,814,800,800,742,747,724,744,741,730,747,735,735,731,638,641,631,625,648,638,642,634,642,629,631,641,632,643,635,636,612,617,604,618,606,609,1036,1062,1036,1043,1057,1032,1042,1053,1028,1055,1060,1063,854,839,835,846,845,851,634,628,626,626,628,634,637,622,623,621,625,633,620,951,948,954,962,959,956,958,951,948,959,962,960,949,956,950,938,943,942,944,941,941,947,933,943,942,964,964,966,958,972,966,970,973,965,963,967,975,966,971,955,803,812,818,785,790,803,806,813,831,802,808,810,797,800,813,803,926,925,926,932,937,935,924,925,934,927,855,868,866,874,861,863,860,863,875,876,857,860,861,845,1121,1097,1100,1094,1082,1113,1110,1101,1101,1105,1102,1105,1100,1100,941,950,941,949,932,955,915,935,943,940,1018,1011,1018,1014,1007,1012,1017,1022,1005,1014,1014,1010,1024,1026,1013,896,889,900,878,897,890,895,905,649,640,635,656,652,654,648,654,628,644,648,617,653,647,640,656,594,607,603,607,600,602,609,596,599,606,599,587,586,581,588,587,1047,1023,1033,1026,1066,1101,1041,1032,1035,1066,1023,1059,1010,1012,1007,1012,1015,1018,1018,1012,1005,1000,1006,1006,995,1013,1004,1007,1002,990,820,805,808,821,827,797,808,816,553,546,560,554,560,547,549,550,570,545,554,541,551,557,1089,1103,1112,1086,1092,1100,962,978,977,961,981,965,970,966,946,967,963,977,976,975,963,967,1068,1063,1077,1067,1071,1067,1056,1069,1058,1066,1061,1072,1060,852,847,833,829,850,853,849,851,859,846,830,844,868,821,837,846,575,586,592,573,583,585,579,577,577,576,577,587,586,587,581,586,570,856,877,849,877,864,857,890,873,863,861,882,632,643,647,585,586,589,584,585,589,573,581,579,578,568,591,1041,1040,1016,1013,1066,1033,1027,1016,1044,1037,1041,1050,1031,1026,957,940,951,944,950,937,944,947,933,955,941,940,946,947,941,939,802,809,800,810,776,826,808,804,572,570,566,558,579,570,585,569,573,569,578,569,563,585,575,568,580,605,597,612,607,605,610,602,606,603,610,608,602,617,616,615,612,604,594,604,618,596,612,610,611,604,614,971,962,974,964,968,965,972,952,984,971,967,976,971,961,965,979,976,971,959,962,969,967,982,653,663,660,651,676,662,663,669,678,668,665,914,935,925,944,944,938,939,933,918,951,951,980,972,991,985,985,987,983,987,989,985,976,984,979,991,985,979,974,977,884,890,880,895,893,882,902,887,908,892,882,898,896,888,617,596,609,604,604,588,577,602,602,596,592,538,548,539,536,545,545,544,538,543,544,550,533,530,829,823,846,836,822,831,840,828,634,640,642,645,636,637,626,635,644,624,632,629,628,568,566,567,557,568,556,559,562,558,561,939,927,911,914,933,929,936,940,923,914,939,922,921,696,691,693,685,675,670,679,671,699,691,681,684,691,688,680,690,988,1005,1002,1004,977,987,992,985,975,839,855,841,843,834,842,856,849,844,849,843,841,851,843,848,835,881,887,876,873,886,871,852,879,852,877,906,901,907,910,911,898,907,916,905,899,913,914,905,926,932,933,931,926,925,932,934,930,936,927,928,928,938,934,936,924,932,936,938,829,822,828,829,823,827,825,827,840,808,823,812,820,828,619,614,620,623,618,626,628,627,626,624,627,627,622,631,632,629,937,965,939,978,950,955,956,957,945,948,965,963,957,968,960,938,968,934,952,966,953,971,953,936,948,934,923,936,938,933,930,937,942,937,941,939,934,935,932,961,955,956,957,962,960,959,957,956,968,960,968,967,952,960,965,821,807,821,827,829,805,828,822,827,964,963,955,964,962,965,955,969,960,968,954,955,959,963,968,966,959,973,952,958,963,960,956,866,880,870,871,872,872,868,867,872,883,891,873,885,893,890,880,879,883,877,891,645,640,645,636,647,650,663,653,640,639,642,657,636,649,648,635,650,640,644,644,1048,1038,1033,1042,1046,1034,1040,1032,1033,1043,1043,1075,1023,882,883,878,889,875,885,882,871,866,871,875,886,894,878,880,879,882,961,966,964,963,944,961,953,954,965,971,960,948,954,965,961,948,958,966,966,971,960,986,972,827,827,831,843,848,854,840,845,829,839,847,870,847,848,833,842,544,539,535,535,542,538,542,545,545,509,512,521,536,517,534,563,575,578,563,570,572,571,582,569,576,576,565,565,571,563,562,574,584,569,1076,1090,1071,1056,1075,1100,1097,1075,937,935,928,926,928,950,923,937,928,927,943,916,930,936,591,595,602,615,586,588,612,605,600,518,535,522,519,532,536,777,799,792,791,768,802,797,800,784,797,784,789,805,793,804,801,790,792,814,657,640,651,672,659,666,662,639,530,530,534,527,538,546,524,540,529,538,545,532,538,575,577,563,575,567,575,566,564,560,564,565,563,572,922,920,923,913,944,902,905,923,909,905,812,795,816,807,811,799,795,805,806,826,808,817,808,808,803,709,719,711,700,716,705,710,694,703,704,702,685,890,884,878,890,893,882,883,888,884,886,888,895,892,881,882,943,935,936,939,922,933,928,929,929,939,919,919,910,906,897,890,887,895,909,906,897,911,891,893,816,824,829,821,827,814,822,821,824,817,834,820,822,827,822,831,822,818,828,813,760,746,763,755,755,755,765,759,748,753,754,770,762,762,761,738,766,760,760,595,614,615,601,599,614,617,605,618,617,636,641,640,634,631,642,635,642,662,660,665,657,659,659,664,649,660,663,661,665,665,670,666,677,652,891,897,900,892,883,874,898,886,889,890,1036,1041,1055,1053,1025,1032,1036,1036,1035,1039,1032,1037,1044,926,930,935,914,928,924,928,914,927,842,841,830,833,834,847,846,846,857,845,840,839,843,843,839,838,956,965,973,960,949,967,957,971,965,972,961,970,967,945,885,899,865,894,865,879,890,865,882,878,520,495,506,511,508,521,509,506,519,544,501,600,608,600,599,603,598,601,603,610,602,608,605,602,599,611,598,602,608,596,615,605,617,1108,1115,1083,1120,1106,1108,1120,1144,1092,1126,1121,1097,1089,1103,1097,920,905,894,950,882,900,911,909,912,924,893,906,929,564,547,581,567,557,564,578,554,566,541,533,472,502,488,499,505,494,480,487,489,483,475,505,499,490,503,602,592,583,588,579,584,588,592,587,590,597,582,589,614,616,613,621,634,620,962,964,935,946,944,960,930,946,968,952,940,951,951,944,959,937,943,881,842,847,851,835,858,848,859,836,599,596,603,608,593,618,599,604,609,602,560,560,561,569,577,555,565,565,569,557,564,562,570,564,1055,1068,1066,1044,1089,1075,1079,1083,1085,1080,1079,1073,1058,1052,1107,1118,1078,1064,1088,943,965,960,977,951,961,953,942,948,934,964,969,947,955,964,957,613,610,620,606,611,606,613,612,605,613,612,613,629,613,605,643,642,643,632,637,646,632,636,637,651,644,626,622,600,588,590,597,592,598,596,594,590,588,592,922,952,946,924,936,940,932,945,911,965,933,934,670,663,667,650,675,683,661,663,660,669,656,658,680,672,668,668,673,630,651,645,653,648,670,659,661,930,954,946,931,961,943,942,954,939,955,949,956,1026,1022,1007,1029,1018,1013,1035,1014,1032,1017,1027,1021,925,911,916,905,920,904,919,929,913,915,912,976,977,987,1000,991,988,977,979,994,993,983,986,995,989,977,986,985,993,841,832,845,847,852,864,855,830,846,841,849,831,952,940,934,932,949,954,934,948,941,938,937,947,940,945,942,835,810,822,819,834,823,814,841,827,821,814,836,814,816,823,821,837,811,615,611,610,617,616,614,617,627,614,623,618,613,613,610,607,615,617,606,651,646,651,653,658,653,670,660,666,603,602,606,603,609,605,612,606,602,610,611,563,564,554,564,564,561,560,561,568,886,898,901,903,880,904,889,890,881,904,896,901,885,904,903,915,712,693,694,721,695,702,685,704,693,717,689,704,698,715,699,699,927,922,926,923,939,929,919,629,656,645,639,651,647,633,630,644,640,640,922,943,957,934,936,943,972,921,968,958,967,979,970,978,967,962,973,979,971,967,970,976,971,981,976,983,971,979,972,844,842,846,842,831,838,835,844,835,836,836,931,928,908,935,926,916,916,946,920,913,941,929,897,924,919,931,932,910,927,906,908,912,909,895,899,896,911,905,894,907,913,907,906,964,955,973,965,975,974,970,974,969,965,962,887,887,876,882,897,879,886,878,887,900,877,896,891,777,779,781,770,772,773,778,774,779,767,768,765,780,768,778,779,781,781,776,616,624,640,636,651,630,646,633,634,632,637,641,627,616,598,607,605,601,612,602,603,606,595,604,610,612,602,603,606,665,666,668,658,673,993,967,999,989,1009,985,1001,981,984,977,987,984,974,868,876,866,864,865,867,858,862,870,876,874,860,863,865,860,623,652,653,649,634,624,632,652,643,639,629,639,640,644,628,630,635,630,633,632,636,622,625,639,633,621,621,631,882,900,892,906,895,879,881,885,900,901,896,953,944,958,957,964,958,959,955,950,951,968,970,961,978,968,968,974,971,969,961,955,971,979,843,844,841,833,822,836,830,1002,999,995,1010,1002,1007,1000,1009,999,1009,930,935,936,947,940,938,935,947,951,931,932,949,933,775,780,778,779,792,790,788,791,781,792,790,788,776,780,656,651,661,655,641,664,652,665,651,648,650,647,649,610,616,608,615,622,610,612,612,609,597,616,619,607,602,621,599,1024,1016,1050,995,1023,990,1024,1016,1024,1040,1031,1042,1036,1037,1031,1023,1046,1027,1033,1033,1032,1031,1032,1028,923,929,930,914,934,805,795,811,804,808,816,808,812,808,804,813,813,808,807,808,803,803,806,631,613,632,615,635,630,631,628,633,609,601,603,608,602,604,601,608,607,603,599,603,611,606,920,915,924,911,917,915,936,916,938,927,926,928,929,919,998,1006,1002,991,1010,993,995,1000,1004,990,1005,1002,1002,870,880,880,872,888,867,879,875,873,883,868,872,608,622,611,618,623,617,609,631,611,597,623,618,610,605,1021,1026,1037,1002,1012,1016,1016,1047,1018,1027,1011,1031,1009,1037,1018,1003,909,925,929,912,916,928,920,907,914,912,916,933,894,890,917,945,933,918,917,924,923,915,907,919,919,921,925,920,920,928,938,916,1041,1045,1041,1027,1045,1039,1035,1031,1050,1033,1044,861,870,856,860,862,858,850,853,613,596,636,615,612,608,615,609,602,624,637,629,609,628,621,614,625,620,608,619,614,622,986,965,966,991,969,962,971,980,972,941,945,920,950,954,941,942,942,944,954,934,940,945,929,927,933,920,923,929,927,924,907,921,919,943,932,931,933,933,929,925,952,941,943,937,937,950,945,941,936,931,951,932,949,963,952,956,955,953,954,972,968,904,910,902,898,903,892,897,905,903,744,767,749,756,751,767,763,760,580,596,593,612,603,609,603,600,598,594,591,610,601,1015,998,996,998,1015,981,996,1010,1002,995,989,998,1000,1012,1012,1011,1007,1008,1019,1013,1011,1012,1013,999,1010,1009,1024,873,868,875,868,888,899,888,889,579,577,590,580,591,582,598,585,577,595,595,966,972,965,949,966,960,963,961,985,957,963,896,895,900,906,896,893,895,897,898,895,927,959,964,945,942,936,956,943,956,948,953,944,646,630,656,639,649,658,636,663,632,631,612,639,636,1011,997,997,1007,981,993,998,1003,1000,990,1009,1006,1024,984,978,984,977,989,984,982,964,985,970,989,830,807,841,821,840,814,828,818,822,814,822,828,824,809,567,559,544,557,564,556,544,566,555,551,550,559,553,563,554,564,552,559,551,559,555,559,568,563,560,666,667,687,658,670,665,678,663,687,675,678,668,646,643,646,646,653,647,647,651,644,633,648,643,648,647,652,653,901,897,914,896,898,920,909,925,927,892,920,917,901,909,905,891,909,901,908,905,907,910,898,902,914,921,899,912,783,803,806,817,815,803,805,813,800,797,544,545,559,560,564,550,562,556,557,564,565,568,560,562,553,539,564,550,580,555,1067,1072,1094,1082,1073,1072,1063,1073,947,937,955,943,963,957,958,955,936,991,946,966,941,949,955,941,930,532,560,533,526,525,532,530,539,542,532,547,549,564,556,547,565,549,564,561,540,546,563,604,591,602,585,579,596,594,590,582,586,583,587,590,641,618,630,630,600,621,632,617,623,621,632,629,618,617,1019,1018,1019,1041,1025,1021,1035,1035,1052,1036,1037,638,660,649,673,677,677,666,681,672,643,874,890,903,900,900,914,920,892,895,908,914,895,904,906,899,910,790,811,825,802,831,805,806,810,800,803,808,812,807,827,814,828,818,896,905,932,890,898,902,938,922,910,919,901,986,997,998,981,990,993,999,987,994,998,1003,805,804,813,807,804,795,801,600,605,608,615,610,609,608,613,613,940,923,938,944,953,943,955,952,957,945,947,947,677,680,676,678,666,680,674,680,678,681,986,994,966,967,987,986,977,989,985,990,981,993,980,1000,994,976,818,811,799,821,824,821,824,814,819,806,797,816,822,812,591,605,610,605,608,605,600,616,601,603,591,596,657,659,667,665,682,650,665,654,663,646,969,965,973,975,973,968,969,961,966,974,976,967,963,963,957,967,702,691,701,701,685,687,688,687,693,702,691,692,681,681,688,954,965,954,980,968,966,961,952,962,959,885,874,876,883,856,876,878,876,861,889,618,624,615,628,640,637,620,539,526,538,540,519,536,539,543,536,548,528,532,536,549,543,552,553,549,558,552,558,556,551,552,541,960,957,949,922,957,951,943,945,961,935,941,933,962,945,949,944,942,946,671,691,660,665,669,662,650,673,664,663,665,692,896,898,910,914,909,903,901,895,851,870,864,864,865,865,870,864,876,863,873,879,875,878,867,871,870,874,871,877,880,873,960,946,948,944,939,943,940,955,942,948,936,947,952,783,778,792,801,802,808,792,789,616,610,606,602,612,612,610,602,604,612,605,896,907,900,916,920,901,897,910,885,919,925,904,893,1030,1034,1044,1032,1023,1029,1014,1030,1018,1028,1030,1027,1028,1034,1030,1020,1034,1028,912,914,917,912,896,915,914,744,752,741,752,739,751,749,751,728,746,760,744,732,758,727,741,747,733,746,630,615,609,616,620,612,616,598,604,617,599,569,571,568,568,572,575,574,573,917,917,928,907,923,942,921,914,937,922,916,919,937,920,910,904,911,966,964,961,968,962,966,969,956,962,961,953,972,968,964,970,962,972,970,969,964,967,976,973,970,968,960,878,889,876,884,890,874,887,747,730,733,739,739,733,727,749,741,733,737,735,732,618,618,630,637,621,622,630,615,635,628,629,634,620,636,619,640,623,633,626,636,856,839,842,837,832,833,844,845,828,837,832,845,839,843,848,834,831,836,832,822,829,661,649,650,656,649,670,657,665,663,653,655,665,666,659,669,820,834,817,828,826,817,839,829,824,819,832,823,823,828,1034,1036,1029,1031,1028,1031,1038,1031,1023,1028,1036,1035,1038,1047,1032,1038,1031,1028,1030,1032,1023,1035,1039,882,889,891,899,882,883,888,873,892,875,1082,1064,1087,1076,1060,1079,1070,1072,1071,1070,1063,1084,1062,1065,1078,1070,1067,1082,882,872,869,863,877,875,877,887,873,876,876,877,670,666,661,677,663,655,664,671,670,663,658,675,669,665,798,812,795,812,800,805,806,801,794,809,799,807,798,798,806,796,793,808,729,722,734,734,723,717,729,738,724,741,725,718,731,726,591,594,600,587,592,594,604,597,587,599,608,585,615,603,590,597,597,601,560,560,568,564,569,551,568,567,558,566,561,567,563,551,562,563,561,556,567,569,563,925,933,919,930,926,930,910,920,934,931,938,908,928,935,685,681,674,692,684,684,689,703,687,1021,1031,1040,1039,1030,1016,1038,1028,1037,1012,1025,1030,1018,1028,1035,1019,910,915,899,909,900,884,885,905,902,657,662,628,642,643,647,645,651,646,654,659,633,653,566,581,580,577,567,594,573,584,590,587,574,575,577,594,574,588,577,573,581,557,560,560,557,561,549,545,554,557,552,551,552,554,555,931,917,909,901,920,912,917,917,925,915,919,927,908,923,904,917,700,700,728,706,699,713,720,697,712,703,818,812,837,821,817,832,832,824,825,822,825,819,835,827,829,819,982,979,995,957,966,836,838,828,834,847,841,837,830,844,845,843,840,841,850,599,586,581,590,591,587,589,583,1095,1083,1089,1085,1094,1079,1067,1048,1087,1071,1072,1075,1093,1092,1079,1087,1078,1076,1077,1087,1074,1077,1091,1094,1061,995,978,980,988,981,983,988,1000,973,991,989,975,990,991,979,998,992,989,854,855,848,854,855,854,860,856,854,841,862,864,849,853,861,862,850,712,725,723,711,720,723,712,715,729,717,715,720,702,727,726,728,707,712,723,723,723,729,897,914,917,922,932,914,914,925,914,906,918,900,917,917,904,802,821,809,814,802,816,809,566,558,548,556,562,562,1065,1063,1077,1068,1077,1068,1036,1067,1062,1047,1063,1071,1050,1051,1086,1073,1071,888,887,895,889,890,895,891,891,890,901,880,887,906,898,889,893,895,890,903,904,889,895,977,974,977,987,974,983,979,981,979,969,978,964,978,976,981,977,968,847,849,836,844,838,849,858,857,857,851,834,622,617,604,610,601,610,611,602,988,1007,999,994,998,1023,998,1013,1009,979,993,1011,991,1004,1014,989,826,825,835,812,803,815,832,816,812,819,819,799,831,825,836,828,599,610,603,586,597,588,591,607,592,587,903,903,925,891,916,879,906,893,901,933,908,905,706,710,707,715,702,714,709,714,709,712,720,699,610,601,606,602,598,609,604,596,602,1000,1002,1008,988,983,988,994,979,874,881,877,881,856,853,857,883,874,872,875,880,863,878,861,873,859,878,864,1003,1017,1010,1007,1013,1019,1008,1018,1015,1020,1014,1014,1004,1014,1012,926,925,917,916,926,928,922,925,923,925,680,693,682,693,684,694,693,697,693,695,685,693,608,624,621,609,620,621,619,612,610,613,614,623,615,926,937,951,944,922,917,924,938,926,935,905,917,952,959,952,945,949,950,942,952,952,956,964,822,822,822,818,795,835,806,810,828,813,828,817,814,803,600,622,608,614,602,599,603,598,619,600,600,960,966,970,982,968,973,964,963,960,965,961,725,732,733,707,719,752,722,706,720,704,708,728,729,900,903,901,914,905,897,901,906,906,901,880,617,623,620,618,624,627,632,622,621,620,634,631,618,1009,986,979,966,948,973,850,873,861,864,859,872,855,876,862,863,877,855,869,617,623,624,609,618,615,619,617,633,612,614,630,610,644,649,662,658,651,665,662,645,661,655,658,652,649,638,657,647,640,646,653,664,655,656,894,877,884,883,901,901,917,900,887,956,951,967,972,949,945,960,952,956,959,955,955,950,966,830,841,830,821,838,848,828,848,860,856,834,839,838,585,598,602,593,603,599,600,603,595,582,594,862,874,858,858,869,891,859,870,857,873,866,878,877,866,875,1050,1046,1050,1045,1043,1042,1050,1036,1038,1053,1053,1035,1045,1041,1042,1050,896,875,903,897,901,881,894,898,898,889,900,892,897,881,893,894,1051,1048,1047,1053,1045,1055,1051,1057,1062,1050,1039,1041,1064,1048,914,893,904,915,899,884,909,893,897,903,904,892,892,885,884,640,640,621,624,626,626,630,624,629,630,618,624,638,1074,1057,1071,1076,1078,1102,1062,867,895,871,844,835,882,866,851,871,850,889,882,863,857,856,880,875,882,868,596,580,599,569,597,572,590,591,599,595,589,603,582,582,592,590,610,606,610,616,612,608,609,617,604,614,622,605,906,909,911,891,902,903,894,902,910,907,912,896,905,915,909,907,886,891,908,940,891,713,694,704,723,699,699,697,720,704,678,700,708,705,696,699,705,700,564,569,575,573,573,555,572,560,569,576,574,572,569,574,568,582,567,574,565,513,536,548,523,529,526,531,513,536,525,524,526,530,524,887,910,910,874,896,888,900,904,896,908,909,895,899,915,920,710,726,720,734,701,716,724,823,829,815,824,828,815,817,828,825,826,840,820,813,828,828,820,827,809,821,974,969,996,972,979,970,982,970,981,988,986,984,995,980,986,973,995,899,876,891,872,887,889,878,884,887,884,880,892,865,881,564,582,577,577,563,577,570,588,590,582,574,574,568,570,988,979,983,1020,995,966,980,1000,988,989,992,1004,992,987,979,989,989,1002,937,951,953,943,956,958,937,940,933,944,953,942,940,933,940,956,941,940,937,952,946,944,948,941,932,1017,1016,1017,1008,1027,1005,1016,1010,1016,1015,1019,1019,1002,1013,903,915,917,920,916,908,928,913,923,913,916,914,923,763,759,766,765,782,760,773,764,763,755,769,758,780,752,742,770,650,637,657,651,647,643,646,644,644,662,639,649,645,641,649,630,604,608,616,613,611,617,617,611,625,618,598,606,611,611,613,618,616,626,619,599,615,620,617,1124,1113,1127,1145,1125,1131,1126,1154,1121,918,966,933,917,921,940,936,937,930,937,924,959,922,584,591,569,584,565,576,555,569,564,581,568,575,569,583,568,579,578,576,1014,995,988,1012,1003,975,1007,961,962,986,965,962,970,972,955,972,989,974,967,822,834,811,847,844,840,849,840,840,823,834,850,949,961,944,949,980,961,957,957,941,963,943,961,969,941,932,936,935,937,942,946,946,948,944,937,940,940,940,944,940,824,821,810,820,818,815,817,820,626,626,615,628,623,626,626,630,622,624,620,633,872,873,855,608,631,625,632,634,981,976,961,975,974,995,989,983,998,976,980,986,970,970,982,968,973,977,972,978,949,941,949,937,940,953,949,935,932,937,944,939,917,902,914,913,908,915,911,904,916,973,951,965,974,964,957,968,968,949,943,969,962,956,835,826,826,824,829,807,829,824,814,846,839,828,569,567,554,563,563,566,566,560,562,565,580,565,560,561,559,565,563,561,569,1020,988,1005,1003,992,990,976,1002,988,987,962,947,953,936,949,955,953,945,952,942,949,961,957,956,960,949,945,951,942,957,979,983,977,975,986,983,973,984,980,978,974,987,855,855,850,853,851,839,849,804,800,792,815,798,802,806,799,803,797,818,803,795,804,800,757,747,760,749,745,749,750,758,748,753,741,739,754,629,610,616,622,616,610,622,609,622,628,608,623,604,604,1052,1046,1038,1038,1080,1036,1038,1049,1052,1047,1033,897,916,908,890,914,914,897,904,898,924,892,900,921,605,618,629,616,630,621,510,522,513,516,499,515,514,520,513,511,511,512,512,498,512,512,507,516,522,516,508,501,513,500,501,520,514,513,521,499,512,511,503,563,567,573,572,565,568,575,573,578,562,567,568,560,635,645,636,644,633,642,646,633,637,635,638,887,912,894,886,902,904,897,889,895,874,900,902,891,888,905,902,902,905,911,924,924,918,913,908,913,894,831,844,837,822,830,845,831,949,959,951,948,952,957,953,953,962,967,983,959,949,839,869,862,848,865,853,848,863,856,870,859,862,608,602,605,618,618,609,618,596,606,611,606,591,623,949,951,952,950,968,940,955,946,949,951,952,951,956,668,665,654,689,668,695,677,685,675,649,674,929,916,923,907,922,916,921,921,926,918,905,919,925,914,932,932,932,922,915,919,949,949,942,943,933,957,951,948,791,800,806,795,793,798,808,801,805,794,797,803,582,571,566,580,567,580,562,572,571,570,583,572,575,583,570,559,1032,1039,1028,1033,1021,1032,1032,1042,1051,1034,1045,1053,1043,949,967,955,979,961,965,969,963,947,947,950,691,700,697,691,698,706,691,688,696,683,695,688,683,689,693,578,575,588,575,576,578,594,563,572,590,581,588,566,585,584,581,784,763,761,752,755,767,629,623,636,616,619,637,629,611,618,627,624,628,633,603,620,613,575,569,572,566,567,568,563,568,561,558,566,574,554,568,566,564,1267,1196,1215,1246,1236,1225,1208,1226,1221,1250,1237,1224,1257,1271,1209,1229,1031,1013,1024,1043,1047,1057,1041,1020,1035,1041,1064,559,573,561,586,540,582,572,555,583,556,579,576,586,588,592,600,573,576,595,573,588,925,895,879,908,914,896,891,911,889,919,903,920,904,911,909,923,888,764,766,770,763,766,771,776,765,773,763,925,930,922,913,929,922,921,917,925,887,892,888,884,895,891,891,884,895,887,896,888,877,883,891,896,883,900,902,896,895,905,888,886,898,894,892,846,822,848,836,830,829,840,845,834,829,836,839,844,826,829,839,839,842,625,628,639,631,619,617,620,617,637,636,1119,1089,1052,1086,1075,1090,1072,1077,1074,1084,1093,1087,1071,1066,1102,1075,936,926,922,928,908,910,915,921,912,924,911,923,915,924,927,940,931,920,906,940,953,933,922,965,946,930,958,953,967,970,973,975,975,970,972,976,984,974,971,858,861,871,868,887,888,870,859,1069,1068,1067,1075,1091,1078,1073,1077,1074,1065,1057,1062,1049,1055,1082,1074,1053,1015,1022,1007,1013,1028,1007,1010,1029,1023,1025,1009,1010,868,878,881,875,878,874,878,655,667,657,642,648,651,638,665,656,642,649,659,657,668,662,662,672,652,864,879,874,854,850,867,859,864,870,872,971,964,954,969,963,961,971,970,970,967,970,971,977,847,846,842,843,853,841,846,843,841,859,1001,988,1008,1003,992,994,995,991,996,1002,1000,903,907,911,913,904,889,917,927,925,907,899,896,918,915,926,914,910,683,666,661,669,660,679,669,689,674,660,668,667,677,675,674,666,661,657,651,665,660,656,663,656,655,661,664,657,673,663,602,591,605,605,602,603,603,615,594,592,606,607,597,964,966,980,969,955,968,977,975,1005,1023,1007,1004,1005,1008,1017,1024,1008,1030,1021,1022,1026,1022,1006,1015,1019,998,1017,1016,1011,1018,1014,883,869,871,875,866,871,852,880,881,874,872,874,1095,1091,1100,1092,1102,1098,1094,1092,1091,1095,1086,1087,1097,1074,1099,907,899,900,901,908,889,898,907,903,902,899,901,887,899,909,895,885,1000,971,999,988,992,993,996,988,987,994,993,988,1000,993,997,989,982,992,808,836,830,831,832,827,808,795,837,807,833,833,811,820,828,817,815,639,650,644,638,642,643,643,630,639,638,650,653,658,645,982,987,974,963,979,985,986,977,971,986,971,966,965,957,948,959,952,958,944,963,768,775,767,778,766,767,778,779,773,804,794,780,780,570,585,590,590,590,584,591,578,580,580,581,572,592,597,590,580,578,585,881,874,877,846,865,876,858,870,855,869,857,869,857,861,859,871,871,874,653,658,653,650,653,667,660,647,646,649,503,504,523,504,507,528,533,521,525,520,529,530,523,530,539,538,528,529,527,517,528,526,527,525,530,516,529,532,528,524,525,537,574,577,557,551,549,561,562,563,557,565,566,564,559,572,558,1068,1080,1078,1084,1070,1070,1058,1047,1033,1102,1091,933,940,942,950,957,954,936,947,944,947,957,948,962,582,554,559,576,573,554,563,578,592,551,570,577,547,530,529,521,517,532,547,525,542,538,546,544,517,537,534,542,544,574,557,566,565,563,568,556,567,553,556,560,566,617,612,610,612,609,614,598,588,602,605,600,617,618,601,600,617,620,612,615,610,620,615,611,612,619,613,615,611,615,629,635,620,627,621,626,622,626,610,605,601,616,609,608,604,612,616,607,606,597,609,614,606,612,621,611,622,609,610,607,610,613,616,613,613,619,611,612,616,620,606,597,597,595,597,611,600,594,600,601,604,604,597,604,648,631,635,640,626,635,643,640,641,643,630,626,628,634,640,638,638,627,1104,1106,1105,1120,1117,1111,1121,1110,1106,1118,1107,1125,1115,1008,1005,981,987,985,995,1006,992,1002,987,996,978,955,968,956,974,966,966,965,969,961,977,956,965,958,969,966,851,835,819,843,827,820,840,830,826,833,830,834,831,833,830,834,836,874,860,869,887,884,879,861,896,931,931,926,932,936,922,920,939,942,919,941,927,932,923,922,916,934,996,1000,996,992,991,997,993,999,1001,984,1002,846,839,843,842,856,852,831,843,848,839,824,851,601,595,613,592,599,601,604,601,587,612,1028,1020,1017,1037,1050,1045,1034,1027,1028,1035,1039,1028,1006,1028,1031,991,1020,864,871,882,887,876,866,873,872,869,848,882,864,877,860,639,636,636,627,635,643,645,629,635,648,633,643,642,637,637,644,640,639,646,636,627,639,649,641,638,650,1006,1014,1001,994,982,1005,1005,990,990,997,990,988,1002,978,848,841,843,870,859,856,853,855,853,895,914,914,888,896,896,907,893,896,885,881,869,905,892,893,910,906,900,901,895,890,898,899,896,891,900,905,894,899,894,896,890,929,922,926,922,923,917,919,930,920,916,922,920,919,1008,999,1005,1005,989,1001,999,1002,991,1000,1005,825,829,816,814,832,804,835,832,804,837,822,833,817,820,610,586,599,598,598,592,590,591,596,596,579,577,860,867,871,873,887,876,893,886,880,863,883,859,884,878,878,761,770,781,793,770,778,785,773,783,793,770,780,775,772,778,774,770,782,653,659,647,653,644,653,661,650,653,653,664,655,653,648,652,662,839,847,855,856,863,863,935,941,926,929,925,929,933,936,921,934,928,931,931,921,937,942,933,939,938,931,923,941,927,928,935,926,938,1015,1003,850,863,871,867,859,865,851,841,870,854,851,866,862,845,855,854,865,854,1046,1052,1060,1070,1057,1057,1054,1069,1056,1069,1065,1058,1039,930,921,610,607,602,628,613,601,609,617,618,607,616,527,535,541,526,514,514,522,528,522,528,591,589,587,595,590,584,593,579,593,582,586,584,586,590,587,629,620,627,612,614,626,615,632,623,623,630,623,1033,1009,1023,1013,1013,1046,1024,1030,1029,1025,1017,1037,1011,823,836,826,818,833,831,835,816,847,831,837,831,833,833,828,571,544,537,542,553,548,535,548,590,576,563,562,571,579,574,576,575,566,570,572,567,572,573,575,576,565,655,672,648,674,671,676,670,665,674,672,660,667,668,617,620,616,608,612,620,613,618,613,616,619,620,620,620,614,617,994,990,982,984,1005,1000,1014,1002,1026,1011,1009,987,1015,1004,951,929,935,945,956,932,950,938,929,936,940,938,936,939,949,592,600,614,584,547,560,557,556,549,548,555,567,565,543,549,557,556,547,550,561,554,556,1076,1053,1042,1045,1040,1041,1065,1038,1057,972,953,957,983,969,959,583,598,587,606,584,590,581,577,595,588,598,589,568,580,561,586,593,595,568,576,586,585,587,580,584,573,583,580,585,587,581,582,580,573,571,585,584,589,578,578,576,582,622,593,624,600,614,616,621,598,603,613,603,610,613,592,601,929,925,924,944,928,842,841,843,846,841,851,850,851,838,845,841,862,849,847,606,627,634,626,623,621,629,606,627,639,908,943,919,946,916,920,948,935,923,937,951,935,932,930,932,925,922,932,920,929,923,946,925,934,927,917,943,933,926,930,937,924,932,926,925,812,814,826,830,826,828,821,832,828,824,840,830,831,826,828,825,834,940,955,947,940,955,952,941,941,963,957,953,936,943,954,949,954,933,953,954,941,937,942,937,941,928,938,931,814,810,826,815,828,812,811,825,818,825,827,632,637,636,635,640,632,625,628,628,608,820,819,820,808,824,816,815,812,826,825,818,828,828,824,823,825,815,811,814,825,1022,1024,1031,1019,1023,1030,1017,879,887,868,883,878,887,893,1013,1012,1022,1021,1014,1019,1017,1007,1020,1013,1024,1010,816,829,823,828,820,833,822,825,826,825,809,819,819,831,596,600,604,606,604,582,607,599,590,611,605,609,614,592,600,599,606,591,594,965,953,947,962,966,948,973,970,963,970,945,966,720,723,714,723,741,731,834,837,824,840,822,828,820,831,815,823,821,838,833,833,842,812,950,948,970,965,947,970,952,957,952,863,875,871,879,870,880,863,875,875,870,881,879,870,873,869,879,1061,1049,1038,1044,1038,1059,1046,1039,1036,1039,937,944,935,928,934,928,936,911,923,928,923,933,608,605,620,611,613,612,625,621,619,607,606,556,557,547,553,563,550,556,555,552,572,856,852,838,857,862,844,850,827,857,850,625,629,636,636,643,629,622,657,629,642,628,646,650,651,644,628,640,653,567,561,569,562,571,560,555,565,562,560,566,562,555,1083,1066,1081,1104,1098,1114,1125,1075,1108,1096,1125,1111,942,972,948,948,965,970,953,948,970,960,972,966,970,960,1023,1009,1011,1019,1016,1008,1011,1022,997,1020,1019,1010,1012,1007,1016,857,862,856,853,858,863,851,861,858,841,842,842,874,841,849,855,840,833,837,854,847,830,623,607,608,593,614,600,616,606,601,579,598,610,601,607,606,600,605,606,590,590,600,594,599,596,599,594,596,591,584,575,577,576,578,587,579,567,574,569,579,582,581,620,615,619,623,624,607,614,612,614,617,613,624,611,618,612,609,605,627,617,619,623,622,633,627,637,618,627,613,621,618,620,903,891,910,888,891,904,889,896,885,890,937,949,974,946,955,962,936,945,952,950,947,960,959,954,942,950,944,953,960,955,962,962,955,847,855,853,870,864,866,862,851,864,860,859,869,613,601,593,588,589,603,606,601,591,600,611,596,606,608,604,1010,1002,996,966,974,974,987,978,972,978,987,985,978,960,908,900,907,899,891,892,900,652,653,655,653,663,635,653,676,653,664,639,654,648,646,657,657,651,667,656,661,672,636,676,661,659,664,671,664,660,656,660,656,647,658,651,659,1115,1072,1088,1085,940,942,930,936,946,938,948,928,933,940,937,939,942,933,934,955,929,646,645,650,661,636,656,650,655,648,664,663,651,638,635,645,636,635,622,641,639,628,613,626,628,639,643,599,590,589,597,586,605,588,591,599,577,584,593,587,590,989,999,998,999,996,1001,983,1008,1000,1019,999,996,995,993,1023,1010,1009,999,1013,1007,947,940,960,949,949,958,956,973,944,957,964,947,953,964,961,947,1029,1036,1017,1027,1029,1015,1031,1022,1029,861,859,865,875,853,859,860,866,852,876,848,869,841,863,864,858,861,882,885,852,964,949,965,957,954,942,962,959,945,939,969,969,955,954,966,951,962,976,966,974,986,961,972,965,953,973,958,958,975,977,969,874,873,877,894,881,867,894,865,876,604,597,600,596,612,604,962,974,974,972,961,966,968,966,972,993,962,970,963,967,967,979,860,850,846,859,844,834,841,859,838,853,875,841,873,861,859,855,825,851,829,858,938,962,975,952,964,943,943,938,944,940,960,947,948,963,997,1002,993,997,1006,999,999,999,992,998,997,989,960,956,972,979,969,953,972,969,960,962,988,976,977,973,985,986,975,973,979,983,975,987,975,976,978,975,977,990,792,803,797,800,809,785,800,793,798,806,786,807,802,800,805,792,554,571,583,558,563,556,560,569,581,568,580,568,565,614,631,623,624,623,620,627,635,946,941,960,936,943,966,1018,1025,1018,1012,1021,1014,1017,1012,1022,1003,1023,1011,1021,1020,1017,1028,1021,1023,866,883,870,864,878,900,874,887,871,873,871,890,890,911,908,911,906,912,899,913,916,869,859,857,862,873,858,850,858,854,873,862,647,647,651,637,627,634,639,639,642,651,645,641,642,656,640,639,1102,1104,1124,1079,1091,1117,1114,1092,1119,1086,1106,1082,1099,1124,1104,1124,897,894,883,899,884,920,883,912,905,587,594,577,582,580,583,587,589,607,592,600,594,587,601,603,605,878,872,872,881,885,870,884,869,877,712,687,700,685,696,710,708,705,709,711,691,683,635,626,628,627,617,645,633,624,629,653,655,651,652,658,659,663,662,665,656,655,656,660,649,1033,1001,1010,1000,1001,989,999,988,1031,1004,1008,1002,994,1015,1008,1010,1001,1003,861,846,849,844,861,869,864,871,859,855,858,861,846,844,852,862,853,944,946,945,950,944,949,942,945,947,947,938,943,938,946,939,950,944,944,941,947,946,938,950,940,813,843,826,834,826,813,849,824,813,835,826,834,823,827,982,982,991,980,968,983,975,975,968,964,970,973,975,973,968,976,973,964,978,977,888,896,896,892,902,897,896,896,894,636,626,632,617,640,636,635,645,633,774,773,756,771,772,781,773,791,606,633,612,613,613,608,610,617,598,602,618,609,610,619,610,610,621,586,589,583,584,581,585,578,597,587,940,942,931,917,944,929,927,946,936,941,945,939,954,954,954,962,951,955,943,941,951,958,952,966,950,950,978,970,967,960,964,971,967,956,969,971,817,809,812,817,824,828,828,809,831,599,612,614,614,595,605,611,594,598,1002,986,989,1011,994,1005,1018,1027,1015,965,1026,1022,1031,1011,1032,992,1000,845,870,874,873,877,878,863,858,873,881,872,871,870,864,863,874,856,867,642,641,627,639,638,644,647,640,654,650,646,636,631,628,636,641,815,828,819,798,815,811,807,805,795,812,809,830,828,806,803,809,819,936,957,933,937,944,952,948,947,951,955,951,799,809,793,799,806,807,794,799,791,795,792,580,580,584,577,578,567,580,566,567,572,563,592,574,571,572,563,572,577,566,1051,1027,1043,1048,1032,1026,1038,1045,1048,1074,1031,1057,1056,1042,919,887,894,902,907,880,910,892,903,891,885,569,574,574,568,558,568,571,572,579,568,559,578,571,583,578,546,545,552,547,548,550,560,569,552,558,554,542,1048,1073,1098,1068,1055,1069,1085,1067,1110,1060,1087,1095,1093,1070,954,959,951,916,906,906,912,910,908,917,915,911,915,904,903,904,922,909,918,912,849,837,835,816,841,843,843,845,843,848,821,831,829,850,843,842,775,784,781,783,775,783,782,762,765,774,770,783,777,776,784,786,780,776,991,976,985,979,991,985,978,980,995,898,905,904,906,904,885,890,882,911,899,896,892,858,854,856,855,851,852,846,842,851,858,853,857,859,862,753,749,757,749,745,756,759,752,659,648,644,654,653,644,645,653,646,639,638,634,638,639,640,604,605,594,598,609,598,601,600,610,608,603,603,608,596,600,880,882,866,884,878,881,877,878,672,697,685,689,675,702,692,662,693,694,696,703,690,802,791,812,801,803,802,799,807,793,811,797,801,796,803,810,791,791,804,639,650,649,645,637,649,580,573,576,571,569,570,569,565,577,566,562,569,569,556,571,570,559,570,560,563,570,558,570,567,559,566,570,586,597,589,592,596,588,582,589,592,584,593,583,582,1080,1122,1118,1113,1108,1080,1090,1112,1101,1127,1095,1108,1081,938,921,933,949,936,954,952,947,928,950,946,934,946,944,983,973,969,972,977,977,971,979,963,973,981,968,964,843,883,854,864,862,882,852,866,871,855,867,846,980,972,977,972,975,963,976,974,965,972,981,963,976,993,966,963,956,963,873,860,882,861,869,869,876,881,872,864,876,870,879,644,637,659,653,647,619,644,636,651,628,643,636,795,795,793,597,599,618,608,605,602,605,607,603,617,602,597,605,607,600,608,618,554,542,556,543,544,543,539,555,553,542,547,551,546,534,541,538,543,543,551,544,550,541,1022,1042,1023,1051,1035,1015,1041,1031,1048,1022,1041,1033,1035,1023,982,971,965,989,972,972,972,972,977,968,963,967,959,976,983,801,799,794,793,802,791,794,792,781,772,774,795,786,779,780,805,790,801,781,562,578,572,589,569,578,558,560,573,557,554,556,902,874,876,884,882,888,879,883,877,895,729,707,725,728,731,715,712,728,707,796,788,792,798,798,802,800,795,803,785,790,806,792,793,597,589,583,592,590,595,598,591,595,593,585,519,530,521,531,523,521,532,524,518,536,524,534,526,1026,1026,1002,999,1006,1000,1013,977,992,1008,999,982,973,976,967,967,968,972,985,977,984,977,981,987,973,976,967,888,894,874,891,895,892,885,892,886,704,713,706,702,716,700,704,719,707,707,713,708,590,588,576,586,579,594,582,578,539,536,546,548,549,537,550,546,1032,1020,1023,1034,1013,1050,1048,1045,1035,1048,1030,1054,1039,1047,1050,1044,1036,1034,898,899,902,905,896,906,909,906,876,898,888,895,896,898,893,874,899,1018,1030,1026,1025,1033,1027,1038,1012,1017,1031,1020,1029,1026,1029,1024,1022,898,886,879,879,891,887,887,870,897,885,889,877,885,877,885,974,960,979,968,983,981,966,973,987,978,985,850,872,861,859,857,874,858,846,866,864,846,853,649,647,664,653,640,640,662,651,638,658,1037,1018,1034,1028,1056,1041,1050,966,960,962,948,949,971,957,962,959,958,962,958,960,972,1005,1002,1008,1009,1008,1003,1008,1005,1014,1002,1007,999,1006,998,1010,875,877,896,862,875,858,883,868,879,865,880,876,874,884,778,779,772,781,776,773,759,768,764,779,769,765,618,617,612,608,622,620,619,637,645,628,619,619,615,645,513,522,535,530,531,530,535,523,524,522,535,529,526,518,566,559,567,574,567,569,569,572,571,559,565,564,565,566,561,567,557,573,556,571,664,663,663,654,672,671,672,671,661,648,663,675,692,672,682,689,683,684,689,693,677,689,897,906,907,920,921,911,922,901,899,912,735,707,708,707,715,710,732,706,711,711,714,709,724,716,726,719,894,880,870,867,877,871,876,873,871,869,877,872,878,878,888,905,924,909,909,916,915,914,915,919,926,905,905,950,962,950,953,952,954,955,955,939,959,954,959,968,955,881,876,875,871,874,863,875,859,871,889,862,863,869,873,876,874,881,869,869,858,862,871,859,863,858,853,857,864,856,866,858,850,862,865,862,865,732,742,740,726,736,720,731,738,745,741,734,742,743,975,991,1002,991,995,996,993,895,903,890,896,889,896,902,887,886,913,889,897,895,900,746,743,748,748,747,749,736,743,724,745,744,598,600,599,599,606,598,604,615,971,1006,974,954,986,980,973,991,963,983,986,979,989,985,998,967,972,986,855,851,856,839,851,832,849,853,840,835,857,856,626,628,629,630,632,634,632,630,616,641,628,610,620,899,900,890,901,911,910,915,902,919,666,683,678,684,675,662,663,664,657,671,661,683,663,661,675,678,669,657,1019,1014,1017,1026,870,875,866,869,875,865,867,879,884,868,869,876,880,860,858,861,884,874,616,637,619,632,644,633,626,627,641,625,620,625,629,636,625,621,628,625,623,580,592,582,583,577,576,579,578,583,570,571,573,587,580,582,579,952,942,968,949,943,962,947,940,948,930,941,947,925,958,948,916,693,679,684,686,682,670,684,692,680,674,678,689,685,677,675,692,1020,1033,1020,1019,1021,1004,1018,1008,1023,1015,1017,859,860,866,881,864,883,897,873,870,575,565,564,537,551,545,551,546,547,549,538,548,545,528,522,538,528,543,532,532,542,534,531,520,528,541,530,536,527,524,516,584,578,595,592,589,586,607,588,591,588,583,582,641,640,633,584,591,586,595,577,593,582,577,582,558,546,545,547,546,555,544,546,880,835,869,857,850,844,831,846,853,855,842,855,740,752,735,734,749,749,740,737,739,756,750,757,749,738,749,746,744,749,754,733,740,730,741,979,974,959,972,989,975,969,962,972,964,973,992,981,991,969,1007,1003,1020,1011,1009,1002,1010,1012,826,830,840,849,855,833,836,840,849,834,847,842,844,970,969,965,954,958,967,961,950,949,950,971,968,809,801,816,818,798,833,815,816,800,803,826,797,580,597,594,605,598,587,600,587,946,953,949,946,944,947,958,947,946,939,949,948,956,952,950,943,952,949,730,725,722,732,747,737,730,717,731,748,731,804,808,816,801,807,807,803,795,816,802,800,796,814,745,761,757,751,742,742,744,744,751,748,736,749,746,759,741,742,609,598,595,599,612,603,590,604,593,616,605,589,592,595,603,616,598,601,591,605,960,957,959,968,960,968,971,957,965,973,965,967,964,978,980,979,960,971,969,969,963,977,970,964,971,970,970,968,778,802,808,801,781,803,789,786,807,584,580,591,586,598,590,598,590,591,597,591,597,581,601,588,587,850,858,846,854,860,843,839,845,856,855,862,843,629,637,629,627,644,642,620,637,639,635,626,650,635,630,627,647,547,544,542,554,537,565,548,554,550,548,542,546,545,542,555,538,1044,1040,1030,1031,1049,1024,1023,1031,1037,1015,1052,930,928,930,935,937,943,930,931,938,910,626,642,634,650,636,633,636,635,631,641,953,955,940,956,956,951,939,938,936,950,972,959,945,938,972,944,940,961,947,937,948,954,953,948,953,957,945,960,881,865,878,880,858,858,878,844,889,861,861,857,999,1012,1013,1008,1004,999,1011,995,992,1001,1006,1000,1009,911,889,889,895,892,901,895,899,909,889,890,896,911,910,901,903,916,918,908,902,914,910,908,910,920,912,910,915,919,906,926,908,917,916,663,640,634,651,634,638,632,648,633,621,643,642,644,662,1000,1003,1025,981,1016,991,1000,978,995,1000,1006,1016,1011,1008,1023,1020,1018,1025,1034,1016,999,1018,1008,996,1013,1013,905,913,903,901,903,600,612,611,576,600,603,591,610,591,562,570,580,569,567,571,563,569,570,560,583,567,553,563,871,874,891,870,872,878,865,873,889,862,855,877,871,995,992,997,1001,1001,1007,1012,992,1001,1004,997,994,996,1002,983,1001,843,840,842,828,842,845,843,857,834,842,821,950,950,977,950,946,974,960,939,932,955,969,984,985,984,988,984,978,989,982,874,867,870,950,928,938,937,947,928,955,943,938,941,944,934,985,981,987,991,986,998,912,914,915,905,898,909,907,905,919,910,901,913,910,908,902,846,851,852,858,865,858,861,849,853,861,852,867,855,861,856,852,995,984,998,990,991,993,1006,999,873,869,864,859,862,876,871,858,860,868,868,863,871,874,870,1010,1026,1033,1030,1019,1019,1023,1023,1026,1021,1022,1017,1014,1020,1018,1027,864,872,865,869,858,860,882,867,855,996,1017,975,1005,990,979,1000,972,1015,972,1001,987,990,1017,969,970,968,967,977,972,973,974,975,967,970,966,960,972,965,871,861,876,869,860,875,877,861,863,892,896,898,896,886,890,893,888,889,888,892,893,907,887,898,895,627,638,634,626,627,626,632,623,618,643,626,634,925,918,932,925,926,931,919,919,919,931,922,922,924,926,924,936,918,912,919,921,935,933,915,922,940,930,990,984,994,983,991,996,993,971,980,983,985,990,987,988,984,983,990,985,871,867,860,867,853,854,849,861,840,853,859,855,841,1006,1012,1018,1008,1018,1004,1009,1022,1007,1013,1027,1006,1005,1000,1003,1006,1015,1020,820,833,822,837,827,826,834,806,833,800,822,822,822,820,821,819,836,810,810,608,615,610,601,600,618,611,616,610,614,603,621,616,611,604,601,1003,993,1003,976,984,980,980,985,987,979,989,990,977,985,990,716,707,716,706,741,702,713,701,723,725,709,720,699,686,697,719,888,895,878,892,898,896,886,888,876,894,895,891,892,897,882,887,620,633,627,642,639,625,628,626,637,620,620,613,622,638,635,638,628,916,961,949,972,951,940,940,961,979,930,967,914,936,964,864,863,856,857,858,853,860,868,850,864,851,859,597,605,610,614,603,596,600,607,593,616,600,605,618,614,996,1006,1009,1009,1014,1020,1016,1004,1019,1032,1013,895,894,914,896,903,907,906,902,895,895,897,900,889,899,896,899,907,893,905,790,796,799,802,803,807,807,801,802,799,806,638,657,665,642,654,625,656,650,648,646,627,652,587,581,588,582,593,585,588,586,591,595,588,583,581,581,589,582,582,586,607,612,616,619,620,612,608,619,611,623,620,619,939,973,956,956,953,935,940,938,930,944,961,978,969,973,971,978,971,971,979,988,959,969,968,974,965,963,980,974,829,809,809,820,820,820,831,808,840,840,807,816,817,794,555,568,561,559,557,560,556,549,560,549,574,547,551,558,559,554,1096,1100,1071,1082,1072,1065,1062,1073,1078,1076,1071,1082,1087,1115,936,961,963,959,962,953,939,963,935,974,949,956,982,959,959,566,555,553,562,563,570,576,563,577,575,575,553,551,569,556,564,562,603,610,596,611,1000,995,1004,980,995,962,996,963,1008,977,997,979,989,971,998,1009,976,977,967,974,974,975,968,975,975,841,837,835,856,854,761,772,779,775,780,775,779,767,771,785,774,776,764,618,611,640,619,607,628,609,614,616,617,621,625,621,566,577,559,571,564,558,571,571,569,565,578,566,915,905,933,919,916,931,917,919,948,928,925,930,920,910,916,906,909,922,929,916,794,790,790,809,794,800,810,604,622,616,605,617,614,620,622,623,611,622,614,602,617,988,997,980,965,977,961,976,981,985,967,981,994,984,984,970,855,847,836,950,954,969,970,980,974,958,965,964,970,967,955,968,866,871,872,845,861,870,860,880,871,874,869,862,850,855,871,858,852,814,814,800,812,806,804,823,805,636,648,645,624,611,624,627,565,569,558,559,563,567,560,564,565,943,955,946,953,955,939,957,947,962,947,942,685,680,671,692,686,669,679,682,679,694,700,691,1010,1042,1026,1027,1023,1032,1027,1026,1021,1039,1024,1023,1046,1038,1039,1051,1027,924,934,931,920,944,942,949,930,945,923,929,938,923,934,924,937,943,934,932,807,794,798,798,797,798,797,796,786,806,782,789,786,798,794,662,658,655,668,658,669,662,670,662,659,655,665,655,663,853,843,855,854,858,855,879,863,862,852,872,855,864,863,859,847,860,849,846,851,856,857,856,856,870,858,643,636,634,644,650,642,631,642,638,629,645,634,649,639,639,631,646,655,644,1055,1058,1071,1059,1051,1073,1065,1060,1058,854,849,843,847,842,854,838,858,828,850,853,840,852,838,865,851,881,842,845,598,615,604,611,609,606,610,598,609,605,612,617,600,609,619,601,625,603,615,608,872,890,885,887,892,911,893,889,918,886,877,889,914,917,908,902,923,927,926,911,926,904,925,910,891,894,885,890,879,889,890,878,885,886,881,891,890,892,884,881,887,883,888,880,882,891,878,883,878,887,892,914,903,905,898,894,908,895,925,912,911,904,912,912,912,917,898,913,870,873,868,866,873,866,863,879,888,867,870,869,872,876,873,868,865,731,749,754,760,749,752,736,746,744,747,750,755,733,620,620,605,623,607,592,617,605,604,609,596,599,601,604,610,602,1061,1045,1029,1039,1034,1034,1039,1045,1039,1036,1015,1030,1039,1045,893,898,903,898,899,896,887,915,896,881,883,904,892,902,901,913,907,888,883,898,893,906,897,894,913,897,898,892,895,643,628,642,655,633,636,650,635,642,634,993,975,978,979,968,1015,995,979,977,968,962,991,1013,975,1013,966,971,836,802,805,814,818,802,803,796,823,829,832,831,825,830,577,566,573,569,564,577,570,572,580,570,1071,1058,1094,1079,1082,1064,1060,1061,1076,1069,1073,1079,1063,1061,1050,909,920,914,906,924,925,914,915,907,550,558,565,557,559,553,571,558,552,548,524,547,556,549,538,530,546,545,533,544,544,543,551,542,532,545,550,566,579,566,548,572,556,561,1066,1057,1064,1077,1050,1021,1045,1040,1058,1046,1062,1051,1051,1040,1031,863,866,875,869,885,867,572,540,543,548,535,543,539,550,564,552,541,528,1025,1020,1010,1027,1022,1016,1034,1010,1014,1004,1018,1003,1003,1018,986,966,963,964,970,977,967,966,972,967,955,969,971,807,819,802,798,794,811,809,799,795,818,608,603,612,615,609,607,612,611,619,614,624,613,612,620,604,620,598,536,523,520,530,531,527,544,524,527,530,532,536,594,592,585,588,586,573,587,588,580,600,587,598,594,631,619,626,641,624,638,631,632,620,632,620,621,645,638,631,558,565,565,564,565,560,560,559,568,570,564,565,578,570,579,569,575,568,574,578,570,569,577,574,580,561,574,605,604,601,592,611,613,612,598,616,600,614,626,599,601,616,614,618,602,619,605,594,606,578,587,588,596,584,589,589,1085,1115,1105,1123,1088,1120,1092,1103,1100,1089,1097,1090,1086,1095,1098,1058,1085,1098,964,967,988,988,983,971,977,982,967,992,968,986,991,974,978,984,978,962,969,969,975,972,979,974,964,979,960,967,957,972,970,967,969,966,971,878,876,890,871,896,866,877,859,875,887,864,864,882,881,864,874,876,880,872,879,872,874,859,883,885,882,642,653,645,645,1004,1032,996,995,1012,994,1013,1007,1008,1009,994,1007,975,997,989,993,1005,1009,991,998,1012,1001,997,1002,831,860,838,847,865,849,846,836,836,834,849,817,834,832,847,840,832,848,826,961,967,962,959,823,826,809,818,814,827,816,818,821,814,832,610,608,614,611,632,606,610,612,615,901,889,901,905,878,899,912,892,902,903,915,911,900,907,917,912,910,905,907,793,788,787,782,794,788,606,614,608,597,607,602,597,612,604,601,622,966,979,977,945,979,974,981,988,979,976,981,954,973,974,974,971,897,874,885,879,885,895,901,881,897,889,883,884,896,891,664,676,653,665,666,678,682,674,685,680,669,677,879,895,887,880,892,880,891,893,873,881,887,871,963,962,964,945,969,956,956,962,981,859,867,851,862,854,833,851,880,859,843,853,855,850,853,858,865,869,856,859,845,510,525,506,507,499,513,512,506,498,510,521,505,511,593,586,570,595,589,589,570,590,568,594,591,588,585,595,584,615,620,622,628,618,619,637,619,612,607,607,621,1116,1087,1146,1136,1114,1149,1128,1121,1099,1109,1154,1132,1092,1122,1091,1088,1123,1119,1156,997,1004,1014,992,1004,1014,992,1014,986,678,670,660,667,550,561,559,568,556,572,571,574,578,564,559,554,562,561,562,558,566,597,591,584,588,593,591,593,595,589,587,622,635,619,611,614,616,623,625,623,614,622,871,894,870,877,891,882,856,877,863,866,877,891,884,827,818,821,833,820,822,826,829,826,827,829,826,818,817,821,631,633,645,630,640,656,653,640,641,628,647,652,640,629,630,639,631,631,644,641,636,1087,1091,1087,1084,1102,1113,1125,1122,1099,1117,1087,1090,1098,1087,1097,982,993,981,986,990,980,989,985,978,988,996,985,986,983,983,989,986,981,1046,1034,1036,1031,1045,1051,1036,1040,1024,1034,1052,1033,1046,1028,1036,873,875,868,872,860,866,874,870,876,863,867,861,868,863,946,945,950,947,958,951,947,952,955,949,942,951,949,950,862,871,871,866,841,854,865,860,862,845,853,868,854,869,834,822,817,814,815,822,826,826,824,836,821,831,826,825,831,636,641,637,642,650,647,646,641,653,632,646,647,647,639,629,657,644,584,582,584,581,581,577,589,580,572,584,588,652,646,654,656,652,638,642,647,639,640,646,651,646,586,581,585,585,597,585,587,586,965,985,990,985,969,981,980,976,966,979,980,979,972,989,956,954,967,958,958,969,974,944,967,955,970,752,792,788,772,793,774,758,765,768,780,777,794,564,589,568,555,582,570,578,571,577,962,975,993,979,993,980,974,993,985,1014,1007,978,1001,992,990,974,986,977,974,964,970,959,973,955,964,972,970,963,989,965,837,844,829,846,832,838,838,921,952,930,913,935,922,923,923,923,925,918,926,928,922,930,913,910,792,804,801,796,800,801,789,802,795,796,807,614,612,613,609,625,618,609,621,865,868,876,866,843,877,882,877,871,880,874,762,755,776,771,775,779,628,628,632,645,635,637,630,634,623,641,635,628,631,627,633,629,617,820,847,840,820,832,833,835,820,819,824,814,829,849,625,633,633,626,626,635,624,625,633,626,635,620,636,643,629,630,625,634,631,636,623,636,1025,978,1006,1016,1005,1000,1001,1001,1025,882,886,871,879,867,870,867,872,887,871,871,861,630,616,626,628,615,614,621,611,649,650,647,641,658,666,663,643,672,662,654,666,636,659,868,879,878,882,877,894,876,882,876,889,857,880,876,875,864,868,888,876,869,893,739,757,739,751,749,752,753,741,748,754,751,737,741,610,618,597,613,619,604,620,615,618,613,625,615,553,557,555,566,553,559,557,551,556,554,558,548,593,600,586,600,583,586,592,588,596,590,590,593,595,597,595,603,593,596,590,593,601,600,595,596,594,608,605,614,605,599,601,599,605,604,612,604,601,605,611,602,989,982,973,959,977,960,968,988,976,965,958,974,970,1004,975,968,977,976,933,948,952,950,952,949,940,952,962,955,957,952,944,951,947,954,946,947,868,869,875,883,872,859,865,865,871,885,869,881,890,872,881,872,869,864,885,866,810,792,792,781,786,798,792,795,795,792,897,909,893,895,896,900,897,883,911,894,897,905,888,897,901,802,805,814,811,811,805,804,803,792,810,793,793,805,805,807,802,798,572,578,583,575,575,581,576,573,574,577,563,565,564,580,583,569,565,570,567,560,1046,1057,1033,1039,1036,1030,1034,1037,1049,1052,1050,1046,1042,915,894,910,883,887,902,903,892,912,556,556,537,546,555,554,545,560,557,533,547,535,540,549,540,542,549,549,542,547,528,546,538,547,565,558,571,570,559,569,557,573,579,1047,1094,1065,1086,1083,1081,1100,1109,1078,1091,933,933,939,941,931,943,925,932,923,933,925,935,942,936,932,918,940,932,927,930,861,877,877,887,888,892,828,823,844,841,854,822,835,830,841,838,833,835,828,836,823,820,805,791,789,782,783,793,786,1032,1028,1013,1032,1024,1031,1032,1017,1033,1019,941,942,947,942,945,928,929,944,942,949,799,791,798,793,795,803,794,796,795,613,617,621,613,615,620,631,604,625,606,615,609,518,528,529,523,525,504,522,528,513,511,518,525,518,519,512,514,510,525,519,508,512,510,514,583,589,588,575,584,578,586,578,588,580,580,577,584,575,589,584,608,599,612,598,604,598,611,601,606,1098,1070,1080,1096,1072,1091,1058,1119,1071,1079,1061,1083,1083,1075,917,914,917,918,914,932,911,922,919,920,911,919,914,607,644,648,637,635,634,645,616,631,645,625,629,629,642,630,820,792,802,822,813,804,803,810,816,819,796,808,809,789,915,915,908,916,921,924,916,918,908,916,910,922,857,860,845,834,838,852,850,842,843,857,851,849,848,851,837,852,866,838,844,848,861,491,491,522,516,511,503,492,510,510,512,503,520,501,504,509,537,530,547,542,536,535,532,534,539,541,550,572,567,561,563,559,554,553,561,561,559,561,565,566,608,604,599,609,609,606,605,612,611,610,608,619,632,620,616,621,624,624,618,626,618,621,618,630,855,846,854,844,865,652,611,627,630,617,628,612,615,609,613,617,624,614,631,616,617,619,535,516,515,511,518,515,510,508,524,514,512,518,528,498,507,521,520,975,972,945,923,972,959,920,933,926,966,961,962,969,963,974,958,953,952,955,957,952,950,956,970,958,959,963,891,904,912,910,908,882,908,904,905,909,897,909,921,895,907,889,906,898,830,821,830,830,811,825,823,824,827,826,636,633,643,640,643,639,632,641,644,639,636,636,624,632,624,632,644,642,640,655,637,1008,1027,1032,1033,1017,1027,1022,1023,1026,840,847,832,821,836,832,854,847,830,826,846,848,862,834,566,569,571,568,575,557,573,572,564,1035,1020,1004,1024,1027,1027,1040,1027,1021,1027,1025,1015,1039,1021,1012,1030,989,978,986,983,978,991,997,992,990,979,908,895,897,900,910,907,920,906,914,900,903,885,810,796,810,802,804,814,814,825,795,801,819,807,809,814,802,655,666,671,679,662,684,669,673,670,678,662,672,661,661,666,661,672,625,624,625,626,613,622,626,621,623,613,919,910,923,935,901,909,920,916,929,766,764,774,774,775,769,773,772,778,763,776,762,607,608,600,596,610,597,606,586,595,605,592,597,604,624,572,575,580,569,573,579,574,575,571,576,576,579,576,583,570,1088,1059,1075,1089,1081,1070,1002,969,983,980,969,985,995,977,982,977,985,979,994,725,721,731,729,719,740,701,726,741,719,737,733,743,734,615,607,610,608,611,605,622,608,607,605,601,617,611,621,605,546,558,553,554,561,558,548,563,553,609,605,600,596,593,596,610,604,608,603,619,588,1035,1006,1024,1047,1040,1048,1018,1020,1020,1021,1035,1044,1033,895,886,878,874,879,882,883,894,903,890,861,861,868,873,866,878,646,650,624,628,629,633,635,1036,1025,1030,1047,1006,1027,1015,1008,1026,1021,1019,909,932,928,939,937,933,929,930,935,915,586,592,586,589,594,522,534,521,526,531,523,533,522,528,529,528,520,544,548,550,555,553,552,545,542,555,545,536,540,548,543,543,541,546,548,547,539,546,536,548,596,606,591,596,600,605,589,602,593,594,603,602,594,594,600,592,605,596,627,620,613,621,617,628,622,631,619,620,635,625,632,625,610,945,933,952,947,932,941,932,945,941,942,949,919,939,944,701,742,706,728,727,734,724,730,893,856,855,859,867,870,879,872,873,873,856,809,834,828,823,826,816,820,812,814,820,821,818,613,597,607,607,602,607,608,604,606,607,602,618,609,606,606,602,607,600,616,605,600,612,1020,1031,1041,1055,1044,1059,1037,1080,1045,1041,1028,1037,1048,1041,1047,898,899,881,879,880,887,882,892,892,882,884,889,523,528,537,543,547,561,556,552,556,543,566,594,576,592,565,565,565,585,571,578,574,659,648,642,654,638,647,651,651,652,657,660,625,628,611,617,565,582,574,572,569,586,582,576,589,546,540,544,543,536,541,544,534,552,543,541,538,977,990,1017,997,1005,997,995,1014,1012,987,1020,1008,1007,1015,874,888,896,906,880,897,881,886,1019,1002,1007,1007,1014,1013,1018,1022,1007,896,892,901,917,915,901,914,910,910,1024,1014,1005,1012,1011,1017,963,948,949,963,956,966,948,950,964,963,953,964,965,951,971,801,809,802,805,806,814,805,807,810,806,799,802,813,803,801,814,806,716,732,731,724,712,720,727,723,720,713,729,727,723,721,713,726,595,605,597,605,608,604,607,597,589,595,601,597,610,612,601,597,595,600,506,519,508,525,511,510,518,516,512,509,527,527,526,526,525,535,533,526,532,522,532,526,529,527,534,594,591,588,590,589,594,590,590,626,637,623,625,627,635,626,632,891,900,878,920,885,907,884,904,890,902,887,878,872,878,762,741,742,734,615,607,627,623,620,614,617,622,618,609,620,756,743,747,765,756,747,749,763,759,752,748,753,755,924,920,923,919,919,932,924,926,928,928,923,921,912,842,857,856,852,839,868,856,862,870,864,833,859,865,1025,1022,1029,1028,1017,1021,1029,1032,1016,1015,1013,1020,1017,925,927,925,929,923,925,939,930,933,932,924,933,929,921,923,914,926,934,936,933,770,762,773,772,760,761,748,759,766,768,764,762,770,766,765,765,771,758,758,773,767,612,615,610,612,616,611,618,616,597,616,615,623,601,605,611,608,593,582,578,599,577,581,587,596,591,591,587,590,587,584,595,594,583,905,892,900,891,903,900,899,908,918,992,995,996,995,1003,990,991,992,1002,988,991,1002,848,889,871,851,854,880,854,877,856,850,871,881,872,875,863,869,863,853,874,852,892,856,869,866,608,621,590,617,611,622,625,595,607,619,599,605,628,615,637,614,627,606,618,618,623,611,619,619,617,618,612,622,606,624,628,619,877,875,877,870,868,858,849,875,874,863,874,882,881,870,869,885,883,860,756,758,761,760,752,751,743,764,745,752,746,745,749,604,597,600,601,589,589,602,595,598,606,593,589,598,597,591,594,508,503,497,499,502,511,497,498,509,502,494,504,507,504,526,529,527,518,522,524,527,520,521,642,640,646,644,649,642,646,647,644,645,639,643,648,649,648,655,646,648,649,646,643,655,664,652,644,650,663,851,859,852,819,837,838,850,845,836,825,860,844,843,850,852,843,629,664,658,657,638,656,647,662,642,650,650,656,646,661,673,666,660,649,556,574,575,570,569,577,568,570,581,571,582,572,584,570,576,572,571,562,999,1019,975,985,995,982,1010,993,991,995,1000,982,966,980,971,976,970,964,976,967,965,978,851,831,845,842,799,801,857,846,823,800,845,834,842,821,827,594,597,588,583,608,588,598,580,600,596,599,592,586,591,582,576,586,571,580,591,582,572,580,573,587,577,597,600,1125,1126,1105,1142,1154,1105,1095,1115,1088,1090,1118,1100,1123,956,929,941,952,955,949,957,967,950,945,736,750,748,748,731,757,730,734,746,745,730,744,723,705,704,714,713,708,721,712,706,711,710,697,706,585,600,588,598,589,585,595,596,599,588,964,957,940,949,947,937,946,959,947,955,957,933,944,941,958,945,942,950,952,957,953,944,936,962,952,951,946,941,980,968,983,989,971,978,975,976,986,992,990,984,971,988,980,985,972,988,963,996,975,968,793,797,779,797,775,801,785,801,789,776,798,790,781,798,795,799,791,544,550,538,542,532,530,535,540,524,526,598,609,611,600,613,606,602,603,603,613,612,600,614,619,611,608,599,648,654,644,658,646,657,650,650,654,644,649,645,569,570,564,581,571,572,578,568,571,570,578,572,568,576,569,577,571,571,571,575,1019,964,979,983,978,987,971,989,963,986,971,968,962,973,962,968,987,986,982,936,931,924,914,906,927,907,904,896,919,912,920,916,935,912,519,544,529,542,527,498,531,536,542,514,533,528,535,535,540,526,522,531,534,579,588,582,574,575,583,592,581,585,585,591,590,569,576,587,584,572,579,603,602,616,605,608,596,595,608,591,599,604,606,605,600,614,1132,1114,1128,1099,1151,1101,1108,1132,1142,1148,1091,1128,1138,1082,1162,1136,1116,976,982,988,989,962,975,978,988,965,986,994,619,603,598,593,590,603,633,608,599,619,601,586,609,590,924,897,904,909,902,916,930,905,847,808,826,819,797,820,829,818,831,818,803,809,819,828,818,612,629,617,649,645,646,593,623,621,618,640,1117,1112,1103,1121,1114,1121,1106,1094,1165,1112,1111,1111,1101,1094,1009,998,1009,1006,1017,1003,1005,1001,1014,1011,1003,1016,1007,1011,1006,986,1012,1002,1011,1024,1018,1022,1006,1016,1028,1013,1018,1024,1026,848,837,849,832,848,834,860,810,860,838,839,946,955,949,937,951,950,952,948,941,955,942,939,940,946,944,942,954,849,846,842,841,857,840,849,837,859,859,850,843,835,849,1049,1063,1068,1054,1051,1063,1043,1058,1050,1061,1064,1059,1064,1074,1060,1050,1058,889,910,893,897,908,908,915,903,910,904,910,903,898,923,885,899,903,897,903,643,649,643,649,645,644,657,647,645,670,641,650,648,652,644,637,978,979,976,984,987,984,951,984,969,983,981,897,908,897,904,892,893,896,899,912,894,905,927,931,930,934,938,929,935,932,944,822,821,949,942,954,957,950,946,949,943,949,965,953,834,841,815,813,810,824,821,826,843,819,830,831,553,551,561,570,551,560,589,598,600,584,586,595,583,585,594,607,607,606,608,608,611,597,613,599,559,559,563,558,555,568,569,574,570,579,565,570,570,556,570,572,628,594,600,613,600,599,607,613,613,603,601,605,605,602,596,613,619,618,612,614,614,621,613,612,605,612,607,606,616,618,611,609,621,577,579,585,583,575,582,572,575,575,582,574,580,973,1011,996,989,975,989,1003,1001,1007,1003,982,995,1007,983,1019,931,933,933,939,936,930,935,932,918,937,918,913,928,917,738,741,728,742,752,720,741,746,736,743,732,748,737,743,635,652,622,649,656,645,634,639,640,629,641,645,633,1036,1044,1060,1081,1070,1055,1051,1069,1079,1048,1071,1051,1071,912,918,926,916,925,927,932,912,926,918,1008,1002,1009,1007,1010,1013,1011,1017,1006,850,873,867,862,850,864,861,848,1020,1026,1002,1015,1012,1003,1011,1018,1006,1007,1020,1013,1013,818,796,793,817,814,807,565,570,567,557,560,572,568,566,570,555,558,575,568,568,573,563,563,583,592,586,582,587,583,595,593,587,588,586,586,582,589,578,588,600,590,593,593,606,600,605,599,610,616,622,600,610,616,615,604,603,615,586,583,588,590,582,595,573,581,566,583,571,577,571,567,566,578,583,573,1013,968,997,1020,977,967,987,998,986,974,978,974,993,969,995,961,998,999,874,880,869,878,864,869,878,877,876,855,866,870,865,932,920,939,937,924,930,932,931,944,932,939,938,937,832,820,809,827,842,812,825,813,830,811,530,555,545,538,545,552,555,548,542,543,552,542,547,558,554,568,531,591,584,579,581,579,589,582,575,581,592,588,581,577,580,585,581,571,573,581,571,586,583,592,935,940,947,921,939,929,946,906,922,930,935,939,953,936,778,778,785,789,773,781,783,779,770,615,621,622,615,613,617,614,612,631,617,627,611,620,624,614,622,613,726,737,737,732,731,725,733,752,747,724,734,741,734,729,879,898,915,911,909,892,918,898,902,907,885,910,909,838,835,847,853,868,838,844,839,853,852,842,855,846,594,603,596,604,589,592,585,596,597,604,604,610,594,592,608,599,606,589,601,604,622,617,618,618,611,619,616,619,621,625,620,622,616,611,623,613,595,587,585,578,586,582,869,874,888,861,856,885,865,882,886,861,870,882,870,877,876,887,876,869,886,862,627,647,649,634,657,622,639,668,644,658,643,641,636,649,655,630,511,528,514,527,526,521,525,518,525,530,532,528,559,560,555,559,562,563,560,563,566,567,549,573,948,914,925,938,929,935,938,928,938,943,940,942,947,934,723,728,720,744,728,744,746,726,785,776,775,778,773,781,773,779,774,772,777,780,767,777,777,765,781,787,935,919,921,926,920,921,918,923,926,929,925,925,927,851,884,868,878,872,868,868,877,875,874,872,798,792,794,794,799,794,801,791,797,797,797,792,805,786,790,651,655,659,647,646,666,670,647,653,652,658,648,560,558,559,559,566,568,551,552,566,551,567,563,557,557,548,568,557,571,557,684,693,694,684,687,701,703,679,695,670,687,674,685,684,686,688,684,681,600,594,602,603,595,590,595,601,587,597,591,596,993,987,1010,1013,996,1021,984,995,976,985,1012,1000,995,843,843,831,853,833,847,840,836,848,822,866,838,845,860,1038,1030,1026,1031,1023,1030,1023,1017,1033,1029,1027,1017,1035,917,941,918,932,930,934,930,930,921,630,633,607,608,618,604,622,619,629,611,615,624,603,568,578,578,582,582,580,568,571,577,573,569,579,614,610,602,603,606,593,613,610,611,607,602,602,884,906,879,898,897,886,900,889,890,899,792,793,786,778,783,792,784,793,785,789,784,781,782,770,655,644,644,654,641,646,638,636,645,632,652,637,644,631,643,566,571,574,571,568,573,572,574,574,575,570,581,572,573,575,984,953,954,950,966,940,961,969,960,959,961,954,958,968,944,962,947,951,883,891,887,890,895,877,873,884,892,880,885,898,821,817,835,832,830,818,830,824,823,825,665,660,672,671,654,669,669,664,665,661,683,667,662,663,659,595,593,588,601,600,597,599,599,598,598,1056,1071,1065,1089,1049,1049,1057,1051,1057,1087,1071,917,913,922,929,925,676,690,703,691,701,696,689,695,699,687,700,691,691,689,688,621,615,628,974,972,953,971,955,940,969,979,965,959,962,968,965,958,1019,1023,1015,1014,986,1000,1014,1003,1014,999,1000,997,996,1014,880,878,889,877,897,877,884,893,894,896,893,856,837,844,847,845,846,853,850,856,847,843,835,844,856,845,847,646,617,625,639,642,635,622,646,635,636,618,632,559,568,572,567,1173,1156,1169,1156,1184,1169,1187,1147,1172,1162,1169,1159,1145,1161,960,978,963,984,965,958,961,965,982,949,971,643,678,644,647,659,665,661,655,648,660,663,653,658,661,679,641,649,671,646,634,656,1039,1010,1045,1033,1026,1025,1018,1029,1003,1021,1034,1001,1007,1023,1022,1020,857,885,867,872,877,872,876,867,872,877,869,880,868,576,576,588,589,579,574,584,574,597,579,585,580,586,969,966,968,967,959,970,977,967,960,962,975,956,691,688,694,702,692,696,697,710,1031,1048,1055,1041,1031,1033,1051,1013,1046,1029,1034,1043,1029,1038,1020,1034,1042,1014,1022,1012,1025,1015,1017,1026,1021,1011,1019,1025,1016,1029,1004,1013,1002,870,884,874,876,900,888,874,891,882,889,610,620,608,606,614,605,613,619,625,616,619,977,973,982,974,994,991,1006,1003,1005,887,899,898,909,896,901,897,900,887,611,618,619,613,619,619,611,639,646,640,643,643,639,638,639,642,652,640,648,649,642,645,650,639,644,643,646,648,646,653,642,645,649,637,642,979,964,991,975,985,976,985,968,973,974,979,968,973,966,977,960,983,967,970,875,893,871,875,870,898,866,884,857,874,596,625,586,611,603,599,593,607,605,601,598,593,592,590,589,549,539,543,534,545,550,546,539,530,528,540,541,529,527,544,547,540,549,583,577,563,577,580,582,568,569,580,571,584,588,585,583,572,571,578,577,578,574,570,581,1098,1096,1095,1099,1103,1092,1106,1093,1110,1088,1137,1097,1099,928,939,940,917,931,933,917,918,927,911,921,920,639,652,636,670,643,642,642,654,644,645,632,842,839,846,832,831,840,831,834,841,827,842,729,720,727,731,724,738,734,715,728,736,730,933,917,921,930,925,938,983,982,971,972,977,974,979,972,973,973,983,979,976,961,982,850,848,847,820,849,826,850,840,835,838,848,833,821,836,831,826,835,994,996,999,985,995,996,987,989,993,996,867,862,854,869,846,871,865,854,857,858,870,854,853,869,852,1017,1015,1024,1027,1026,1028,875,878,875,896,879,873,886,873,876,887,879,1009,1005,995,1008,1018,1002,1001,996,1000,1014,1009,1004,997,1020,1001,996,1001,1005,1002,1007,998,1010,1009,1004,804,788,802,804,806,808,805,797,782,797,819,812,627,620,625,644,624,623,631,626,925,936,929,922,935,941,936,919,928,916,912,929,914,930,931,931,922,944,806,803,812,804,808,805,802,815,823,804,812,804,817,793,660,645,646,652,646,650,650,653,656,655,633,652,574,571,568,568,569,578,580,571,571,571,569,578,579,572,959,968,930,971,964,983,932,945,955,952,877,881,890,894,889,885,883,868,887,875,889,899,881,902,885,886,880,876,833,835,822,819,833,834,833,830,825,820,844,822,813,826,821,814,830,822,826,827,823,658,671,661,653,665,656,664,668,654,681,660,675,651,664,679,670,663,647,662,592,597,591,589,595,599,605,608,597,605,587,596,602,593,598,1052,1077,1069,1057,1036,1049,1061,1049,1061,1074,1056,1055,886,887,898,873,880,887,890,896,877,895,627,609,621,625,604,638,621,617,622,629,621,611,616,611,626,611,621,621,617,613,622,603,617,604,621,624,620,616,615,578,561,568,567,582,567,571,624,632,614,609,627,608,626,620,618,615,622,610,620,612,626,621,673,672,689,679,672,672,678,683,676,670,695,684,681,689,684,608,611,618,624,900,897,888,893,903,872,888,881,889,874,685,686,660,666,662,676,667,673,670,662,675,657,672,677,657,681,1035,1069,1067,1043,1053,1049,1060,1073,1054,1051,1064,1055,1053,1062,1060,1070,1076,974,969,962,965,975,970,951,965,974,966,978,960,965,970,966,894,884,888,890,885,901,886,880,894,888,881,886,879,887,894,873,883,748,735,747,720,745,725,758,739,731,751,737,731,746,722,740,948,956,942,941,932,945,952,945,941,925,947,950,950,805,815,801,779,802,808,794,811,804,794,794,790,580,585,577,586,579,567,580,584,584,584,576,582,584,586,575,589,586,587,574,589,593,581,575,571,577,583,580,585,579,584,584,582,574,584,572,573,581,583,1026,1022,1016,1012,996,1010,1038,1021,1011,1020,1033,1017,994,1031,1019,1013,1000,1006,1020,989,982,969,959,979,982,974,972,971,980,977,984,990,986,846,835,810,834,835,834,829,839,850,822,846,835,580,585,575,575,598,584,587,571,589,592,586,573,588,553,536,535,539,553,541,540,545,540,537,545,543,541,542,541,533,948,965,924,941,939,946,929,961,964,931,940,954,936,937,951,939,944,933,957,953,669,661,651,673,686,666,686,675,665,658,654,674,969,955,949,962,966,957,966,971,974,956,963,967,947,959,980,976,991,965,972,985,968,983,983,991,975,967,970,977,856,865,863,529,542,541,543,553,543,544,542,542,547,535,552,540,554,539,548,556,545,548,553,551,544,550,552,553,560,554,555,551,556,549,571,583,594,599,586,607,601,589,622,976,972,975,972,980,971,980,978,987,966,970,975,998,953,979,974,978,985,981,960,976,982,727,735,719,721,713,728,718,736,731,722,731,791,772,757,765,761,769,762,776,768,765,776,755,769,764,767,766,761,764,758,759,772,757,748,715,697,698,703,705,695,685,697,688,695,698,876,894,910,907,896,898,883,895,889,885,829,802,819,820,810,810,801,805,798,799,802,810,815,805,813,805,807,808,542,540,554,562,551,554,538,591,607,598,608,607,610,590,599,594,611,592,613,658,658,666,652,655,660,650,659,640,646,645,658,657,653,644,664,646,654,650,871,864,867,882,865,870,877,863,892,875,873,865,861,867,879,659,658,655,667,667,664,653,669,680,675,677,573,592,581,581,590,579,585,574,592,579,583,587,587,862,846,880,856,874,880,866,841,879,843,849,678,678,680,683,694,679,689,693,662,671,678,678,691,691,688,695,689,698,693,679,592,593,609,607,608,600,596,600,602,611,597,608,606,1025,1034,1034,1023,1031,1043,1021,1076,1046,1007,1036,1039,1048,980,985,1013,987,999,980,984,979,976,995,888,881,876,864,871,873,868,874,856,872,868,874,869,867,868,871,658,647,664,667,663,638,646,649,645,645,646,646,651,632,634,636,638,634,645,641,623,644,629,632,642,630,641,650,637,1057,1050,1086,1076,1084,1079,1042,1075,1072,891,889,882,891,881,889,885,886,886,646,649,628,658,646,629,633,642,641,638,630,636,648,603,617,600,610,614,614,613,612,619,610,614,1029,1017,1031,1000,1032,1035,1006,1014,1009,1034,1004,1030,1011,1002,994,1015,1014,1002,1032,991,1010,1010,997,985,1003,1006,999,1018,998,988,998,1011,999,1008,781,793,773,791,789,806,774,800,823,778,791,757,794,790,788,780,787,800,790,795,772,822,564,567,548,546,566,559,556,546,565,556,556,560,559,551,559,560,569,562,563,563,569,555,561,554,560,568,599,609,592,576,588,587,593,596,586,589,588,584,582,586,586,581,588,589,586,595,587,586,579,582,587,595,596,593,587,591,585,593,599,597,595,591,589,586,584,592,870,886,895,881,869,883,878,889,899,877,878,884,873,764,745,744,752,752,752,735,748,751,748,736,939,929,931,915,931,919,929,931,935,938,926,928,930,936,918,933,939,929,883,879,864,854,872,870,869,875,866,668,655,653,643,654,651,666,608,602,601,601,610,600,607,581,594,600,605,611,600,821,823,830,829,811,842,825,820,823,847,816,829,819,821,838,823,828,630,647,651,629,628,636,631,630,642,605,632,535,533,544,533,525,540,544,532,537,525,530,676,677,682,665,678,674,671,682,678,675,984,989,995,994,987,979,990,1001,1000,987,1000,987,721,740,742,738,734,747,725,751,736,781,786,800,789,794,772,787,774,789,799,799,801,792,899,899,903,896,912,892,901,906,904,903,905,894,907,903,894,903,899,901,892,761,764,773,765,769,764,767,769,736,772,773,776,761,562,553,557,572,562,568,550,553,555,565,563,566,566,570,554,562,566,1025,1050,1058,1053,1040,1041,1047,1042,1050,1031,1029,1070,1050,1088,1085,1060,1051,945,941,911,937,942,945,931,924,932,936,933,924,622,624,615,620,627,614,612,617,622,609,617,609,628,607,616,981,979,973,956,977,970,949,976,962,981,977,866,875,867,875,870,870,866,879,861,876,866,863,873,855,871,567,561,555,553,577,563,553,545,563,560,551,560,543,561,563,546,555,548,548,539,535,548,536,531,548,531,549,540,541,543,538,606,596,599,602,593,589,599,597,604,603,595,592,604,601,604,607,596,609,651,655,649,645,641,649,653,641,884,879,912,892,873,901,892,904,878,896,897,884,892,906,734,726,733,726,724,720,735,719,716,569,581,577,573,593,586,592,573,569,576,593,580,581,579,525,503,500,500,507,500,501,502,511,509,496,502,513,502,521,532,527,522,518,526,520,532,520,521,532,1033,997,1027,1009,979,1012,1013,1028,1015,1033,1007,1018,1010,991,999,989,997,998,993,980,991,987,997,986,984,806,824,833,816,784,810,807,811,839,816,817,814,829,824,826,821,929,946,939,945,949,933,928,936,944,949,915,924,939,938,928,955,936,945,936,947,834,844,835,848,850,826,851,836,845,848,848,846,838,579,595,590,581,574,1078,1083,1072,1078,1089,1083,1068,1069,1116,1096,1076,1071,1066,934,936,920,945,944,919,939,949,931,950,929,924,948,923,953,941,954,938,962,914,910,905,897,908,912,919,912,909,910,909,906,911,903,904,907,909,908,912,915,901,911,916,912,912,911,914,903,922,827,831,825,839,832,829,836,811,1010,1010,999,998,1000,995,990,1017,1007,989,1000,993,1005,991,998,913,915,921,919,922,916,912,913,917,914,913,915,927,917,926,911,935,655,647,657,644,628,646,628,646,654,658,638,645,653,671,607,603,614,602,602,609,609,614,615,617,594,607,934,925,938,929,953,936,940,933,915,923,943,935,924,950,919,900,915,918,904,913,908,913,916,908,903,970,961,957,977,963,973,961,966,968,960,960,961,980,953,959,959,967,963,826,831,816,826,833,832,821,831,824,823,827,597,590,584,592,588,596,577,545,544,532,540,541,548,544,544,539,547,547,543,557,561,557,563,572,558,576,558,560,567,557,563,556,562,555,546,557,552,554,565,555,561,563,549,558,555,560,555,560,556,566,604,611,616,610,610,619,605,609,605,603,598,617,602,587,598,592,589,598,604,587,595,592,588,599,592,592,983,949,963,958,939,927,918,914,924,918,914,919,923,916,916,925,911,911,926,852,840,839,841,823,841,831,838,824,844,831,829,841,827,825,659,645,637,636,636,643,635,644,648,636,642,639,648,628,650,645,569,569,580,581,575,573,582,575,579,576,576,579,571,579,579,576,1011,1020,1016,1021,1053,995,1028,1027,1023,1016,1023,1020,1019,1031,866,878,862,869,885,855,868,861,854,861,610,628,614,619,615,613,606,617,610,613,617,623,622,951,966,946,966,966,981,968,946,969,957,964,972,975,965,1001,951,973,960,944,962,977,950,972,971,977,979,969,972,971,976,985,977,985,963,971,993,977,977,979,1006,1000,996,1002,997,1008,998,1004,996,859,843,849,841,843,850,856,858,859,855,870,839,852,845,870,863,853,861,853,846,841,589,601,588,601,597,602,615,590,600,626,610,536,539,533,535,532,531,517,544,522,528,533,523,527,527,520,532,533,536,535,525,524,533,529,537,548,548,565,565,563,554,558,566,552,561,541,1101,1079,1100,1091,1083,1096,1102,1097,1108,1097,841,857,841,833,852,863,842,851,857,852,837,861,837,565,573,561,587,568,570,933,909,932,917,928,934,920,941,941,920,922,937,945,942,932,942,936,936,938,940,931,926,937,936,931,930,945,933,937,940,939,820,813,829,802,815,816,809,794,810,808,560,558,560,541,583,540,563,563,557,554,547,558,548,562,555,561,546,525,545,540,543,543,535,538,531,536,542,547,528,1072,1110,1045,1096,1080,1097,1092,1068,926,911,948,935,919,946,931,935,919,931,920,907,950,529,552,531,530,520,535,525,554,510,587,578,578,555,575,569,568,569,569,568,575,581,570,575,573,578,565,647,641,630,633,639,635,652,630,635,642,631,646,948,960,926,935,947,948,943,938,921,938,925,932,946,763,767,778,762,760,771,773,783,766,751,776,761,960,929,942,936,939,935,944,944,941,945,957,938,940,949,949,954,838,828,820,842,840,827,832,836,815,830,811,821,831,833,822,826,835,832,967,959,947,976,962,962,944,952,952,953,951,960,963,888,875,873,877,886,888,873,882,888,613,602,611,612,614,617,617,613,610,617,615,599,605,616,618,609,576,575,581,576,580,570,569,878,889,894,867,890,877,883,870,877,872,893,890,886,876,889,896,897,877,906,900,883,654,651,662,651,669,656,662,664,656,648,635,656,650,660,641,519,516,509,542,561,552,549,555,548,540,550,552,559,553,556,549,539,555,563,557,546,543,597,581,596,584,581,584,577,576,582,598,583,589,594,594,967,977,972,975,980,993,974,994,973,972,976,917,903,910,897,909,907,901,922,909,909,889,869,866,867,875,874,883,855,872,813,813,814,836,818,819,809,814,821,824,826,821,816,821,771,789,775,787,783,775,745,750,753,764,755,739,735,750,749,757,759,766,743,738,748,744,596,588,593,590,582,594,592,600,597,595,600,559,559,569,557,561,561,554,565,561,556,557,559,565,561,567,883,888,883,868,892,881,869,871,919,871,901,889,890,894,894,877,894,878,724,723,706,726,719,708,708,713,720,710,713,716,723,714,689,698,712,699,704,723,858,852,851,852,852,851,851,851,991,989,991,987,991,990,995,995,982,985,997,1004,985,989,991,886,852,858,864,870,865,864,860,867,870,876,913,935,923,902,929,926,928,918,941,920,927,937,936,950,933,929,925,925,935,940,939,937,937,935,932,937,942,930,940,788,781,800,775,781,782,791,801,788,773,587,588,600,595,577,592,579,607,606,596,599,875,894,894,878,875,893,876,874,889,893,870,877,883,885,686,689,679,692,678,670,678,698,696,667,681,686,592,592,591,596,582,589,595,597,596,587,591,598,599,584,591,603,596,599,601,600,594,999,990,973,975,987,988,973,984,1000,1003,1001,990,994,982,993,865,879,880,890,867,896,875,873,885,886,892,899,883,883,879,976,990,970,990,988,947,973,959,961,956,954,983,967,1011,1001,997,1010,1015,999,1007,1015,1013,1010,1009,1011,1002,1008,1016,860,850,862,867,852,850,874,857,847,935,958,944,958,953,955,944,963,979,905,917,895,909,900,897,907,900,990,984,970,969,968,975,969,972,976,971,891,876,907,890,879,900,900,892,894,896,886,896,879,899,883,893,792,787,787,792,786,793,779,786,798,787,801,994,987,984,983,982,977,980,969,981,976,973,852,873,842,845,844,856,855,844,854,843,857,844,838,854,849,851,1158,1140,1142,1141,1130,1122,1125,1142,1144,1157,1131,1141,1132,1148,1135,1139,1137,1143,1138,1143,934,946,925,933,934,937,955,941,936,948,940,948,952,625,648,626,645,629,626,646,632,650,648,643,642,635,1012,1025,1029,1011,1008,1037,989,1027,1032,995,1035,900,899,890,904,894,867,893,907,885,895,879,875,648,636,640,651,646,634,637,635,634,642,630,634,642,631,626,637,644,648,636,642,1086,1107,1087,1089,1072,1082,1105,1070,1076,1090,1092,1109,1073,1085,1109,993,980,980,998,983,991,1001,988,974,979,990,995,1000,981,990,665,660,663,690,673,647,666,682,590,614,608,582,607,592,606,593,587,605,594,591,605,593,886,884,870,885,882,897,898,666,652,665,661,655,662,648,649,657,653,649,652,649,650,660,662,661,1081,1049,1077,1055,1071,1055,1071,1075,1077,861,864,866,863,888,858,876,867,867,855,854,859,871,858,858,856,871,886,891,880,865,664,667,651,653,677,664,658,670,671,662,650,661,634,673,643,670,661,642,593,583,596,591,585,568,593,594,590,583,1085,1082,1062,1040,1071,1062,1068,1090,1059,1078,1061,1062,1047,1088,1085,984,970,957,978,975,971,983,832,825,827,832,826,836,821,825,827,917,934,925,918,915,927,925,933,930,915,929,923,938,922,933,907,906,916,904,902,910,907,913,907,898,969,976,973,971,981,984,985,968,984,986,981,966,984,972,974,983,976,990,980,774,752,785,766,816,800,783,768,753,772,776,582,581,595,592,582,594,589,575,579,572,580,577,589,587,961,986,1006,1003,1001,1001,1001,1001,995,1010,993,1018,1001,999,998,980,991,985,989,995,993,989,1000,988,995,999,989,984,839,844,842,847,821,855,831,826,814,832,840,836,831,820,836,829,846,840,833,917,914,916,921,917,918,922,919,927,923,922,925,924,914,910,909,914,842,861,839,596,607,577,602,585,575,565,580,605,605,614,609,617,616,606,619,606,604,596,618,607,610,613,611,617,979,983,974,985,992,970,991,963,982,980,979,1003,988,970,941,956,959,946,943,937,949,949,934,941,963,935,953,949,939,946,953,928,936,957,949,949,969,973,974,982,976,968,983,987,985,969,974,977,969,849,839,855,934,921,915,919,931,923,920,921,910,930,920,912,912,863,862,867,879,863,873,876,865,875,873,871,866,881,877,875,867,877,873,874,873,879,866,881,863,843,859,857,847,860,857,857,852,857,860,867,863,845,996,976,973,978,980,977,979,984,975,985,992,990,991,983,979,983,991,986,992,996,989,990,997,980,986,986,992,990,985,989,985,986,982,986,991,991,842,799,831,852,827,828,828,828,840,838,843,840,829,846,932,932,945,925,939,939,929,930,929,943,944,859,859,850,862,855,856,845,860,863,853,841,854,854,849,860,851,626,621,620,623,621,617,616,619,618,623,612,620,605,621,1050,1065,1058,1046,1047,1039,1032,1043,1043,1052,1042,1061,1051,1050,1043,1057,1032,1057,842,826,844,857,831,856,849,850,838,835,846,835,839,837,843,545,559,561,539,560,543,539,567,532,544,564,558,547,540,558,549,548,551,552,558,558,555,567,556,559,545,542,559,568,642,651,642,644,639,631,647,651,659,632,646,647,645,639,649,633,647,646,639,630,640,643,646,646,649,649,646,641,651,646,641,636,646,640,956,936,943,947,940,935,938,954,956,940,952,948,946,828,843,836,861,841,852,819,805,807,800,809,798,811,805,809,806,813,666,653,663,664,671,665,670,798,809,789,793,800,803,797,809,782,802,799,606,611,602,622,594,626,613,622,612,615,593,611,618,608,606,608,608,609,619,609,601,617,603,547,542,540,536,546,541,555,547,547,546,539,546,1021,1012,1007,1020,1030,1018,1031,1047,995,1043,1011,1004,991,1016,1024,1039,1004,1012,1020,1006,1018,997,1029,1022,1022,1008,1028,1005,1003,1013,854,873,869,852,870,860,874,863,881,864,891,867,870,956,958,968,965,942,952,954,959,948,955,959,953,957,962,968,842,859,858,856,859,853,856,865,856,847,867,857,846,856,848,852,859,851,854,857,656,645,649,655,653,646,652,636,652,637,645,641,642,653,641,860,910,884,877,893,879,896,892,884,898,882,626,626,631,616,621,640,644,630,634,632,629,565,565,561,559,558,558,570,561,561,554,564,561,561,558,1139,1149,1142,1109,1157,1116,1098,1107,1155,1160,956,963,979,963,982,966,975,959,971,984,956,986,989,999,571,593,616,592,586,600,574,597,607,603,590,597,605,593,591,597,599,608,585,594,589,604,591,605,591,586,588,595,600,586,593,605,982,989,981,814,825,810,801,824,826,790,813,835,830,819,824,802,811,811,546,533,544,550,563,560,537,533,559,543,568,574,574,571,567,560,580,580,582,571,576,573,576,592,574,582,581,629,610,625,631,618,607,565,564,572,574,567,574,570,555,564,569,561,561,563,565,561,567,575,567,558,564,566,561,566,565,565,564,548,545,541,553,544,550,545,547,548,549,548,540,543,542,548,539,553,548,545,543,553,537,551,1110,1089,1063,1088,1083,1094,1094,1088,1068,1114,1079,1070,1118,1081,1087,1004,993,988,991,988,993,982,1003,985,980,991,1012,971,987,1024,991,589,645,624,618,628,632,608,652,636,615,610,639,639,649,636,618,649,637,650,649,644,638,638,637,651,602,606,609,593,594,601,592,599,601,580,604,588,586,604,884,888,895,885,892,883,891,908,885,872,892,892,904,876,873,884,882,882,896,629,641,636,647,645,626,630,620,639,660,634,637,624,636,622,642,642,628,637,635,639,648,629,1008,1025,1032,1017,1030,1021,1024,1027,1027,1033,1028,1035,852,864,876,864,862,867,855,876,867,880,873,869,1067,1091,1081,1082,1081,1071,1083,1085,1094,1083,1073,885,875,851,869,860,880,878,899,863,868,868,877,856,878,877,856,881,867,878,851,586,588,585,589,579,582,576,582,585,578,568,579,575,589,588,574,588,583,574,966,997,960,990,975,985,977,1001,971,1002,972,971,977,970,969,961,968,957,967,980,963,957,962,838,847,842,858,837,843,858,845,852,837,834,851,838,841,845,846,849,843,866,839,583,582,598,586,589,593,583,589,980,972,946,979,960,960,959,965,954,952,901,896,889,888,899,892,887,897,890,893,898,890,884,899,903,819,820,826,815,839,824,821,819,820,818,815,835,812,820,821,827,813,828,610,618,621,614,617,606,621,615,612,620,622,619,599,612,622,532,536,543,537,530,533,530,534,544,544,544,536,540,533,521,548,546,543,536,587,591,588,605,593,584,584,584,583,581,579,582,600,566,928,924,940,934,925,937,929,936,940,936,957,730,731,754,732,743,743,760,747,742,759,776,771,777,779,760,789,757,775,766,763,770,642,612,627,627,628,613,625,625,619,620,637,625,627,568,571,568,557,570,566,563,580,573,568,566,576,560,564,916,920,969,933,957,943,897,897,902,916,903,894,891,974,957,960,962,960,956,960,961,961,971,961,960,760,732,748,762,747,768,755,758,773,760,765,763,599,587,587,596,585,598,596,597,602,606,611,598,597,614,613,599,952,973,987,971,979,983,988,986,972,981,969,994,988,999,985,740,719,745,765,714,731,758,734,721,747,737,742,712,730,727,756,736,741,784,779,773,778,786,783,790,780,776,779,781,784,798,760,740,736,744,749,618,596,602,592,603,611,607,606,599,606,612,600,614,618,1056,1068,1082,1071,1083,1077,1074,1069,1040,1057,891,895,906,915,897,887,897,901,893,916,889,900,909,899,901,979,971,991,977,987,984,965,983,980,994,976,989,985,987,803,810,794,795,801,787,821,630,631,631,634,638,628,639,642,637,636,625,631,630,622,642,633,631,957,951,943,952,939,942,953,954,1012,1030,1014,1006,1015,1022,1018,993,1011,1016,1002,1020,1003,1018,1008,1025,1027,1016,1013,1034,1024,1019,880,879,882,881,886,879,885,880,892,877,878,877,880,883,1055,1056,1054,1053,1053,1058,1052,1057,1050,1036,1045,1048,1055,1043,1056,1039,1053,925,947,939,938,942,934,944,926,947,941,936,936,951,947,950,945,936,914,932,930,929,939,923,922,951,944,920,943,938,947,941,950,950,941,956,943,946,940,936,936,949,942,941,943,950,851,845,850,854,840,849,638,633,637,636,630,632,643,620,623,629,635,616,1071,1073,1054,1074,1073,1066,1072,918,903,907,901,910,906,904,895,898,925,898,903,910,921,897,910,898,899,890,632,643,632,634,653,646,628,633,643,630,641,636,627,629,629,1010,994,1006,1013,1017,1007,1011,1005,1006,989,1010,1012,1021,1016,1009,1016,1008,1010,1009,1019,1018,1018,1015,996,1020,1020,1010,1015,1017,895,890,891,881,886,909,895,896,893,899,1017,1008,999,1024,999,1005,1011,999,1007,1010,1009,1003,1005,1008,1010,897,915,908,901,902,910,893,920,914,901,902,860,860,842,847,852,860,857,858,860,857,840,854,852,847,853,843,842,855,864,1000,1012,1015,1018,1019,1015,1018,1038,991,1013,1010,1004,1009,1009,1015,1032,1023,1008,819,832,818,810,822,808,801,815,828,810,830,803,602,596,592,595,599,602,602,612,601,601,600,606,600,596,615,834,846,836,830,846,854,836,839,852,848,646,655,640,667,656,637,631,658,649,576,580,588,575,578,573,578,573,582,576,569,572,585,582,860,866,858,859,874,859,855,874,868,869,868,854,870,856,863,884,888,887,886,903,873,889,889,877,882,882,893,882,895,904,902,911,899,914,908,912,913,900,907,902,970,989,993,984,975,995,995,984,972,990,979,1000,979,871,861,866,854,850,863,852,858,856,932,920,914,923,926,918,895,923,934,931,939,933,944,942,951,944,946,949,948,952,952,948,821,826,804,811,840,834,817,813,816,611,624,624,612,617,611,618,618,612,627,613,609,609,614,607,609,614,608,614,611,609,618,602,616,562,563,563,566,575,560,567,562,569,563,552,552,556,553,545,553,555,539,535,535,540,552,540,545,541,538,546,597,587,585,585,587,584,579,583,595,582,584,712,705,703,704,706,690,701,717,690,710,699,645,635,635,644,642,636,636,632,634,635,636,635,635,642,767,789,788,800,809,777,793,792,797,864,882,891,862,866,884,875,875,870,868,867,874,870,851,863,911,927,912,929,909,910,912,931,908,918,841,830,821,835,837,827,854,837,832,840,831,650,634,640,638,638,658,648,647,638,629,947,948,928,937,935,929,948,922,660,665,660,673,678,664,660,659,665,662,675,671,666,664,1014,1000,1033,1024,1014,999,1026,1027,1028,1010,1036,1010,1012,1010,1021,1032,1004,999,1029,1006,783,783,800,778,783,788,779,781,799,801,789,782,777,802,804,799,791,803,787,782,583,583,573,573,584,575,568,582,592,572,1021,1033,1038,1026,1009,1035,1030,1017,1022,1026,1041,1023,1030,968,972,977,963,972,962,966,861,864,853,847,840,846,857,854,865,848,856,848,850,842,853,634,626,630,631,623,628,624,636,616,633,622,627,617,820,809,819,797,802,809,811,822,810,814,809,807,819,795,825,966,980,964,953,962,970,982,984,977,980,973,973,852,866,868,849,850,828,851,847,851,857,863,834,845,831,834,860,1088,1094,1081,1093,1094,1097,1129,1090,1100,1087,1097,1110,1091,1098,976,960,964,959,955,977,964,953,973,969,963,952,962,973,955,950,961,951,970,978,645,640,652,639,635,639,640,631,637,635,1024,1021,1023,1039,1021,1014,1019,1013,1054,1011,1020,1014,1017,1035,1037,1007,1028,1022,1037,1022,887,906,911,892,885,883,893,900,888,895,899,876,896,892,1018,1006,1020,999,990,1006,997,998,995,919,926,919,930,917,923,936,920,928,926,912,921,772,761,755,762,764,758,766,755,757,763,764,763,762,751,760,760,774,765,740,737,729,736,734,719,731,745,734,724,739,739,755,737,731,733,745,742,736,727,733,736,735,622,608,624,616,615,625,608,615,602,617,617,562,557,567,556,558,565,554,558,560,551,553,560,556,556,561,556,554,644,643,644,634,647,646,653,644,637,651,634,623,625,626,621,622,620,621,624,620,631,626,620,627,619,627,625,625,572,579,579,579,584,579,570,571,579,582,587,537,534,531,537,540,536,537,530,535,530,522,533,534,537,535,536,924,925,907,926,911,913,908,913,921,925,919,918,896,911,910,903,745,756,762,746,734,751,736,761,737,739,747,748,735,738,751,900,901,896,900,906,911,894,917,887,916,902,922,904,924,908,899,921,897,925,898,1038,1030,1043,1038,1013,1040,1036,1024,1040,1033,1026,915,921,906,897,909,911,911,909,920,907,906,908,916,912,891,905,903,902,903,913,903,1007,991,978,986,1016,998,964,972,974,993,971,971,964,970,961,968,811,810,805,809,795,817,789,790,806,806,779,782,778,582,581,596,574,587,566,589,565,565,839,840,845,850,844,854,854,863,857,848,822,846,833,686,709,694,694,694,710,695,689,690,698,699,697,607,607,610,603,615,597,806,787,785,798,808,811,795,805,799,806,795,791,804,689,677,691,677,689,665,680,674,679,671,678,676,674,622,636,640,620,636,636,621,632,633,633,620,633,634,632,890,887,901,901,912,881,903,903,897,905,903,916,901,919,904,899,887,904,899,943,953,953,947,948,960,954,938,942,831,822,849,833,862,836,847,841,837,845,842,839,865,846,841,834,840,859,847,875,838,591,581,573,588,589,596,587,579,576,590,589,603,601,600,604,577,604,602,595,585,595,592,929,938,921,923,938,781,799,791,789,785,784,784,778,773,779,795,784,603,604,600,610,605,596,605,602,611,611,606,995,957,964,955,952,983,956,956,956,921,967,984,980,986,961,900,921,933,912,919,921,941,921,925,910,924,924,932,922,925,921,601,629,614,622,628,623,609,621,610,618,613,605,585,610,604,604,606,592,604,597,594,598,601,601,601,603,602,598,597,609,599,993,992,1007,944,1020,972,968,974,984,1000,901,892,888,894,884,893,895,893,905,893,888,654,642,656,649,645,655,640,646,648,649,649,646,642,893,877,891,919,900,873,899,890,896,893,891,882,898,885,695,692,675,685,679,696,686,681,683,678,675,678,591,596,587,591,586,583,586,580,585,579,580,587,575,657,661,661,661,657,664,676,683,666,681,678,673,669,663,681,672,682,674,680,679,683,670,596,599,600,595,607,603,598,590,595,595,607,599,605,605,607,604,593,893,903,884,912,903,913,897,885,896,910,898,884,890,899,914,891,908,909,974,983,987,983,958,973,975,975,985,984,972,987,977,971,977,968,990,1090,1080,1084,1083,1086,1079,1086,1085,1088,1093,1090,1078,1078,1091,1085,1086,1082,907,898,902,892,917,897,910,900,917,883,901,594,609,581,602,579,601,594,599,608,609,595,593,539,528,531,543,539,528,534,532,541,538,549,525,543,596,598,605,595,602,614,611,607,599,603,602,597,613,598,606,975,987,973,966,991,973,985,999,966,962,764,762,769,749,769,756,769,758,751,765,752,767,767,919,914,912,912,917,904,906,905,910,910,909,904,914,921,911,906,771,754,772,771,763,781,788,774,766,774,770,776,775,779,769,777,783,781,542,557,548,548,540,544,560,549,538,548,539,539,565,547,541,545,1044,1039,1058,1054,1038,1055,1074,1046,1045,1049,1058,1064,1077,1042,1056,1064,1050,1050,946,949,945,961,943,929,958,935,952,945,938,943,953,957,852,854,855,868,851,854,844,833,869,841,843,842,838,853,842,862,935,940,939,943,929,950,935,936,947,942,948,947,940,937,929,955,850,859,847,840,845,850,837,938,936,956,949,939,936,941,858,877,877,865,874,851,869,867,866,857,863,867,868,855,878,866,869,863,865,636,619,617,625,636,617,606,614,623,621,620,621,623,632,634,565,559,561,571,564,566,564,560,567,565,571,565,1076,1057,1086,1082,1086,1082,1079,1069,870,856,841,856,846,891,853,853,873,870,596,579,593,587,602,596,568,590,584,993,1019,1006,1002,1006,1003,1008,1014,993,1011,1007,978,1005,1003,1013,1013,980,997,994,993,973,986,991,997,975,995,987,989,994,988,821,824,843,820,845,844,832,815,836,836,592,583,580,591,594,599,585,587,586,587,598,583,555,585,589,589,597,581,587,886,883,891,887,910,877,892,874,880,905,889,885,893,890,884,885,891,902,944,961,947,953,951,946,965,944,952,941,956,861,862,865,860,868,873,856,858,881,873,870,680,682,687,689,682,681,696,688,683,668,691,685,685,704,692,594,598,585,580,588,588,594,585,601,596,591,589,589,926,943,936,944,930,940,922,938,927,946,927,938,958,940,921,936,928,921,925,920,922,916,933,920,920,917,917,962,957,963,958,960,952,955,961,961,961,963,960,965,827,837,837,854,827,838,828,841,832,827,854,980,974,974,959,955,974,973,983,970,978,982,991,979,971,976,985,974,965,746,775,735,774,756,748,767,733,762,738,754,766,768,771,736,576,581,583,577,587,584,574,577,585,568,584,588,596,579,588,576,1084,1059,1099,1059,1047,1087,1075,1078,944,924,935,932,931,942,914,921,923,921,935,930,931,918,940,912,624,602,629,630,643,614,635,612,623,617,622,977,989,977,966,970,981,973,971,978,964,978,984,978,855,869,869,861,871,873,869,879,887,871,871,886,879,865,867,863,618,607,622,621,598,609,612,609,627,601,625,640,639,655,644,648,643,646,633,639,649,651,630,641,630,652,631,645,634,637,647,640,635,640,634,626,918,925,918,918,926,936,916,934,928,943,940,948,930,938,926,942,929,937,927,938,932,930,938,955,926,857,851,862,853,854,864,856,860,842,855,840,850,862,843,848,865,838,571,572,579,577,584,582,596,573,581,581,586,562,564,569,573,562,566,569,573,568,567,571,607,605,601,593,609,592,581,599,600,994,992,977,991,1004,1015,1008,1018,1011,1000,1016,1014,1024,1009,1023,1022,1017,1032,1024,1015,1008,1025,1024,1025,1013,894,907,891,898,899,898,897,894,919,896,900,892,913,913,897,901,909,912,943,952,951,947,953,951,950,958,962,956,848,820,841,816,838,806,819,841,837,828,852,827,814,838,849,831,831,819,824,828,954,954,949,956,953,947,938,948,946,951,953,871,849,854,852,854,849,840,860,862,838,858,860,842,852,904,906,900,915,908,908,904,908,902,903,899,913,917,907,908,634,650,641,643,647,659,644,651,647,645,638,652,1045,1040,1043,1029,1032,1047,1061,1058,1033,1028,1037,1032,1038,1039,1040,1041,1033,1046,875,878,877,880,872,873,881,866,874,873,874,897,875,865,869,612,621,609,616,617,603,614,611,634,612,627,627,619,626,633,622,627,635,631,633,631,630,635,617,631,621,621,848,865,848,832,865,861,835,852,850,853,866,858,844,843,677,692,691,689,684,687,678,688,696,684,679,702,694,610,623,621,619,621,605,621,608,613,615,624,615,621,898,870,871,870,860,874,775,780,784,794,772,791,619,613,628,620,615,626,616,620,612,616,616,614,610,1029,1051,1039,1032,1033,1028,1034,1026,1057,1059,1050,1049,1031,989,986,981,983,986,982,983,980,976,991,993,983,996,987,987,993,990,988,860,876,882,880,876,865,887,896,890,888,881,880,878,884,622,632,635,616,634,620,635,627,620,632,651,623,637,626,569,565,572,564,566,577,569,567,577,574,568,564,573,575,574,572,1030,1028,1028,1041,1034,1032,1048,1056,1033,1054,1050,1038,1043,1052,1052,1063,1047,1034,1044,896,911,909,904,899,904,900,886,891,912,896,920,903,906,894,892,898,895,1004,1013,1004,1008,1011,1007,1009,1005,1005,1012,1008,1008,1004,1003,1021,890,896,909,904,906,900,903,906,902,1048,1038,1042,1047,1043,1035,1041,1048,1046,1057,1042,1034,1039,904,900,882,898,1038,1024,1042,1041,1024,1022,1031,1042,1027,1040,1034,1033,1023,1034,1032,1027,1028,1028,1021,897,887,913,888,889,886,897,888,896,904,881,893,892,660,655,661,665,664,657,679,647,658,662,668,648,645,661,662,647,675,646,644,676,919,900,925,914,908,910,909,915,911,757,762,769,758,769,757,761,599,595,586,594,602,612,611,606,600,598,601,608,606,602,681,696,669,685,695,688,682,677,685,680,691,666,672,689,691,981,972,973,975,973,952,974,958,982,964,969,976,980,757,776,753,768,753,766,764,750,974,953,965,964,955,957,972,970,963,973,969,819,821,827,827,826,830,826,816,833,830,832,897,888,900,886,889,886,907,896,887,907,909,878,944,953,949,949,957,951,951,967,955,958,951,934,847,848,842,846,848,835,839,850,842,844,856,839,845,838,832,842,844,1032,1033,1037,1036,1029,1035,1026,896,893,899,891,891,891,887,894,891,880,893,891,890,892,890,904,902,993,1004,1006,1005,783,773,590,602,583,600,587,592,594,584,597,1034,1025,1022,1014,1034,1029,1027,1036,1051,1032,1052,1045,1050,1054,964,968,967,952,973,962,963,956,931,928,929,921,927,922,928,923,922,929,926,922,924,887,889,876,881,881,887,880,885,897,876,877,879,878,886,881,878,883,887,896,883,900,900,890,891,892,893,890,792,789,804,812,809,794,787,784,801,789,796,788,798,790,796,803,793,801,551,562,568,562,566,564,579,566,571,557,566,577,578,626,621,623,628,619,626,967,917,927,957,932,950,937,955,938,918,941,976,972,987,977,964,964,962,975,843,841,873,864,852,856,853,848,861,853,842,862,845,853,850,847,863,940,906,921,891,927,953,922,938,907,918,903,914,919,899,934,919,945,942,938,928,937,930,867,849,876,849,849,857,866,870,852,853,869,842,880,860,850,835,850,954,954,980,936,970,969,974,957,975,981,954,959,978,965,917,916,922,923,920,915,928,926,922,899,918,924,926,919,906,974,980,989,978,988,978,970,964,980,889,906,892,896,897,886,891,884,891,889,886,786,783,756,773,934,956,944,942,939,957,941,948,919,939,954,952,879,888,877,879,879,887,891,892,896,882,874,880,613,622,618,618,605,606,617,617,628,610,609,619,621,613,617,969,966,974,982,980,979,970,972,960,968,919,930,924,937,936,928,946,937,925,929,925,933,918,931,942,928,968,961,968,973,962,969,982,966,957,976,971,966,785,775,771,760,771,790,781,775,794,650,651,652,654,664,670,653,672,637,636,634,646,633,640,630,634,636,638,633,634,634,641,643,638,641,631,631,625,638,632,1073,1051,1046,1031,1061,1037,1032,1066,1066,1025,1048,1046,1047,1072,1048,1036,1048,1040,858,868,846,859,857,855,968,975,967,982,975,979,974,962,970,971,971,980,964,977,969,970,796,815,793,799,804,830,817,822,819,829,821,814,819,594,595,611,602,597,603,599,592,1135,1148,1147,1148,1138,1144,1181,1154,1146,1159,1149,1155,1169,1134,983,982,992,974,987,983,979,983,984,986,980,983,979,969,957,979,962,978,983,986,955,955,967,946,961,952,958,954,957,968,957,822,810,813,810,799,821,816,823,822,822,805,809,806,825,907,926,921,910,920,935,918,916,920,913,918,920,907,918,920,923,909,916,922,912,881,879,880,873,874,878,884,888,878,883,887,873,884,874,880,872,885,885,737,734,722,726,725,736,742,724,743,729,726,739,731,755,742,729,745,727,736,735,743,1007,992,996,992,998,1002,992,1012,978,865,858,865,871,868,871,845,865,858,874,868,878,858,862,852,799,793,803,808,792,787,802,794,796,801,796,812,795,798,789,622,624,618,613,610,609,612,617,610,586,594,584,580,586,588,588,582,584,587,574,591,583,581,581,896,883,875,900,914,902,872,897,913,886,890,878,887,901,892,876,924,920,922,937,917,928,940,946,938,945,951,951,939,956,952,945,945,946,929,940,890,889,883,888,872,878,880,888,888,885,891,893,887,900,886,630,629,607,615,624,622,639,608,638,577,566,571,570,570,567,565,556,566,553,570,571,563,570,575,574,1045,999,1013,992,972,1014,1024,1029,1010,1030,1033,1014,1009,1034,881,877,874,869,890,872,871,872,879,881,882,882,663,664,655,671,665,654,659,664,659,661,656,651,661,664,672,1058,1060,1073,1068,1070,1051,1052,1017,1095,1045,1067,961,973,968,979,962,971,964,959,970,973,987,956,975,964,950,949,961,964,967,964,970,961,938,936,941,922,931,922,940,929,945,943,949,964,962,963,968,968,973,958,977,974,959,969,970,976,958,832,848,834,853,853,847,839,851,854,832,836,844,845,855,835,840,847,644,646,625,644,637,641,636,639,644,634,635,637,632,860,883,881,887,906,895,888,891,880,877,877,616,624,647,637,628,632,619,629,645,989,987,1001,986,1002,973,995,993,1008,995,981,1001,993,972,980,998,987,985,987,993,996,987,977,980,980,990,979,973,985,977,984,857,862,870,846,858,860,858,861,854,869,852,849,851,854,855,843,861,852,862,861,670,670,684,694,679,673,676,676,672,681,674,673,688,684,672,672,683,679,683,688,685,660,676,807,829,811,816,818,828,817,825,825,835,802,823,815,810,993,984,980,999,984,999,1010,995,985,975,977,985,871,869,885,880,889,896,888,880,869,875,886,888,878,885,871,869,633,618,628,634,608,631,628,639,618,605,620,642,550,550,538,552,544,556,551,554,552,549,553,557,556,548,564,565,565,568,565,571,573,578,577,571,571,577,566,582,567,583,580,570,584,587,575,587,616,609,600,612,612,603,596,607,606,608,613,606,959,963,964,971,952,963,941,959,952,961,966,955,966,940,963,953,677,668,675,658,665,661,675,668,674,676,663,652,671,655,688,652,680,661,966,963,957,951,966,962,974,970,954,965,980,975,967,988,967,808,835,845,815,828,823,824,822,822,835,830,823,897,869,874,897,884,886,875,870,885,874,869,882,887,882,907,873,883,889,948,947,932,940,947,938,925,941,938,939,938,938,940,936,943,968,978,980,968,970,970,981,970,975,966,970,976,964,976,973,965,973,835,841,839,843,846,842,847,855,844,855,850,839,855,848,1024,1028,1024,1025,1023,1026,1021,1031,902,906,891,889,894,888,899,897,909,896,893,909,891,905,901,1005,1012,1022,1022,1019,1020,1010,1022,1016,1008,1012,1026,1007,1015,1016,1011,854,852,840,851,875,866,860,843,848,846,841,1070,1066,1081,1076,1068,1081,1069,931,916,932,931,938,927,926,924,925,932,940,939,930,930,922,942,609,605,610,600,616,603,595,591,604,605,610,594,620,600,610,1020,1047,1038,1044,1029,1025,1039,1012,1020,1035,1048,1040,1019,1033,904,914,913,896,909,896,890,902,677,669,673,688,648,679,669,682,662,683,680,677,673,673,672,681,655,665,686,683,663,690,682,694,623,610,612,619,612,624,621,627,627,998,996,990,1003,995,1002,995,993,985,1005,997,1008,1008,987,1008,1007,943,938,933,936,933,937,954,926,934,931,947,961,960,956,969,967,963,959,960,968,967,968,947,972,965,1010,1010,1022,1007,1015,1019,1004,1016,1009,1007,1005,998,887,896,895,911,903,901,899,901,903,726,728,734,727,726,725,727,731,733,741,713,737,714,741,730,717,620,628,632,632,626,648,648,629,633,642,650,633,647,622,790,795,813,821,810,811,797,816,806,811,822,812,981,993,980,981,983,995,969,988,986,991,978,869,888,869,865,875,872,885,865,869,879,875,875,872,877,865,869,834,831,838,833,843,829,839,838,835,929,929,924,915,920,920,936,918,919,925,953,955,939,946,942,954,942,949,936,945,947,942,947,937,942,941,822,820,813,831,812,810,819,811,810,824,822,811,820,814,932,904,874,929,893,906,932,912,909,899,893,904,926,917,880,929,903,932,914,927,929,931,925,942,944,941,936,937,932,932,945,933,936,928,943,921,874,874,869,879,872,869,877,874,878,874,883,871,874,869,869,871,632,631,631,622,655,629,619,635,624,621,628,639,631,636,644,651,639,643,562,572,568,567,572,571,573,578,575,563,573,574,570,571,576,585,573,563,570,573,593,572,580,569,574,585,584,574,572,586,574,574,567,582,580,628,628,637,631,633,618,640,628,628,639,637,647,636,631,628,639,631,630,646,629,926,943,927,922,927,944,934,940,973,961,957,954,964,953,964,960,963,951,962,956,976,973,885,878,897,899,903,912,889,891,899,882,892,904,902,895,893,887,595,599,598,591,588,899,925,916,925,923,916,911,924,915,913,913,906,925,922,941,911,929,915,911,887,903,900,888,912,890,897,894,901,901,886,896,898,901,909,936,943,950,946,928,922,927,936,927,938,945,930,934,937,1061,1062,1073,1072,1055,1080,1056,888,895,888,907,877,881,899,898,629,643,642,618,627,633,628,634,645,646,632,628,605,590,599,594,585,592,587,597,592,585,590,590,1106,1066,1057,1087,1055,1095,1081,1036,1081,1060,1073,1063,1068,1058,1077,885,872,889,890,884,873,890,895,873,891,882,893,884,873,878,885,919,948,931,933,922,916,919,922,895,935,924,940,949,948,945,939,947,941,931,949,945,958,948,943,955,958,945,878,862,875,876,876,890,878,881,881,883,881,861,883,887,878,625,638,631,630,634,623,633,622,631,629,609,794,804,789,782,772,777,774,795,801,779,676,670,656,672,663,664,652,677,679,680,676,673,671,677,687,674,679,683,680,680,675,671,673,674,669,685,634,638,640,642,635,637,649,631,645,642,626,839,817,830,820,830,836,841,838,824,817,820,840,836,827,827,829,829,843,840,846,662,679,665,665,656,674,664,659,662,675,664,664,650,667,575,578,584,581,592,570,589,571,575,582,573,580,578,576,587,691,708,705,694,697,686,698,689,687,699,707,705,633,624,634,625,628,632,631,624,631,628,620,625,625,623,628,630,631,632,627,621,631,628,982,1023,991,985,987,1006,1002,999,986,986,1018,983,1001,995,1005,964,958,960,957,957,950,965,968,962,960,962,952,963,844,827,838,846,825,825,847,838,824,836,822,828,1029,1034,1038,1041,1028,1032,1033,1025,1041,1030,1047,1034,1045,1035,950,969,951,967,983,956,970,755,746,742,739,752,757,738,738,744,753,754,740,760,742,597,587,605,614,587,591,594,596,600,608,587,931,942,938,943,946,919,925,932,931,940,932,960,966,961,969,955,978,969,963,960,968,888,892,884,889,890,890,898,894,894,891,896,895,756,760,754,718,707,727,706,723,710,725,721,708,717,718,726,997,1007,1003,1006,1018,990,984,1004,1000,994,1010,974,997,997,1004,928,930,926,935,937,921,922,926,938,939,927,933,941,923,932,932,941,921,917,869,854,873,880,868,867,865,875,663,670,657,684,667,669,670,671,664,674,669,881,887,865,890,889,879,897,867,894,874,885,882,877,880,873,893,873,901,876,896,640,632,636,651,632,630,642,649,628,634,638,628,643,622,647,639,630,657,629,635,1044,1046,1035,1051,1058,1059,1043,1042,1042,1067,1054,1062,1042,1054,1051,912,930,890,911,903,900,903,903,903,934,904,898,914,892,912,904,727,737,735,740,721,730,733,730,728,731,730,732,725,732,740,733,717,1015,1023,1016,1012,1029,997,1009,1014,1017,1005,864,868,844,870,856,842,858,861,875,861,852,1016,1012,1005,1008,997,1029,979,1017,1010,1006,996,1021,1031,1013,998,1015,843,861,842,837,836,817,844,583,586,593,592,578,590,581,588,597,596,586,579,585,591,876,878,885,875,872,898,877,881,876,867,874,869,871,873,871,883,951,945,942,951,937,952,936,961,958,943,956,941,944,949,942,947,965,974,964,963,966,959,955,955,969,971,958,977,871,868,871,867,871,864,869,873,873,877,867,861,874,871,867,657,632,643,652,640,652,634,635,638,640,644,578,589,581,584,581,580,589,581,577,581,577,987,1011,1026,1021,1027,1014,1000,1005,1014,1015,1017,1002,1017,1013,1028,1021,1018,881,901,877,873,879,888,872,884,893,876,884,879,896,907,899,896,901,902,894,895,891,887,892,904,889,634,628,637,636,642,646,647,651,649,643,639,646,1025,1042,1030,1019,1035,1038,1024,917,927,932,919,921,928,917,915,938,933,619,596,608,628,629,624,594,610,591,613,617,606,616,599,604,523,523,525,527,514,523,517,525,525,529,523,518,550,549,557,552,562,565,559,562,571,563,564,546,546,556,573,567,860,891,880,885,878,867,876,875,880,899,890,895,867,887,875,867,871,856,896,887,624,631,645,629,627,619,645,639,616,609,613,625,631,625,626,634,532,527,541,541,533,529,541,529,530,532,532,546,538,534,541,533,535,546,534,534,532,533,523,547,540,527,543,936,942,938,962,933,961,934,944,947,951,951,963,961,947,955,968,950,968,983,965,974,959,960,974,974,970,977,967,976,971,959,970,975,971,982,973,832,801,811,808,814,812,827,819,813,831,825,821,532,550,553,535,539,552,535,542,543,542,548,1109,1097,1127,1103,1045,1103,1113,1079,1109,1082,1067,1079,1103,1089,1122,972,938,970,949,959,956,938,936,978,944,962,972,944,945,953,974,968,935,956,974,929,936,924,926,923,929,931,943,926,925,931,931,930,930,953,934,940,942,941,953,947,943,842,843,849,850,599,599,612,591,587,595,597,605,591,590,586,598,578,593,587,596,595,599,590,596,597,593,592,599,593,600,591,926,912,905,886,892,901,900,878,890,909,883,906,887,911,893,891,1007,996,991,994,996,1005,1002,994,1003,1009,990,994,1003,876,892,875,868,889,878,875,895,868,885,880,571,586,584,580,576,583,582,577,578,583,570,582,575,584,593,585,582,862,886,889,877,892,871,888,879,879,881,886,868,876,873,863,882,875,888,890,899,887,902,874,895,901,890,941,963,933,935,937,938,937,944,936,944,932,939,1111,1121,1128,1117,1118,1111,1114,1120,1110,1118,1121,1116,1120,1112,1110,1096,1111,1104,1129,928,907,924,926,927,939,926,926,921,1068,1068,1077,1059,1061,1058,1072,1070,1088,1081,1063,1073,1074,1065,1066,935,916,923,933,921,929,924,929,930,913,923,923,926,831,848,840,845,846,843,861,853,838,1004,1010,1031,1027,1014,1020,1014,1024,1017,1018,1009,1014,1025,1006,1017,1022,923,931,931,913,922,929,925,921,922,757,745,762,772,759,762,761,753,782,748,774,606,594,613,616,617,610,613,616,595,595,614,605,589,609,607,528,523,522,530,529,524,534,526,527,524,528,566,555,567,569,570,560,564,563,564,579,567,588,552,566,567,647,632,659,648,641,643,638,647,641,652,645,647,636,646,629,642,638,600,603,595,591,598,599,600,602,851,848,846,864,833,847,857,846,829,854,841,849,640,650,637,636,638,617,640,625,631,630,631,638,625,642,638,645,619,634,641,549,547,537,548,553,553,548,561,561,554,545,553,549,546,551,555,545,542,554,964,982,958,983,966,972,689,675,670,653,671,664,685,680,669,674,972,1013,995,995,976,992,980,1002,975,981,992,1002,974,985,987,999,982,990,807,827,825,804,816,812,826,821,827,831,814,834,814,805,814,823,810,838,988,963,968,981,973,970,906,895,908,889,895,902,896,908,899,900,910,908,892,901,883,894,899,906,885,888,893,898,904,899,704,702,712,699,714,713,701,688,701,705,690,706,696,717,711,787,788,770,795,773,783,778,783,787,753,746,748,746,742,749,738,746,747,739,747,746,738,651,649,643,647,662,643,647,649,638,644,653,651,647,648,649,652,654,653,652,649,644,652,648,646,647,640,645,651,654,560,582,579,572,587,580,582,568,578,591,576,572,575,592,578,572,578,1039,1032,1036,994,1016,1012,1049,1014,1037,1016,1032,1028,1013,996,1015,1038,885,873,872,868,883,891,890,884,885,1015,999,1003,1021,1019,1012,987,1006,1003,997,1025,1005,1003,1008,1010,1005,1009,1017,1014,1008,1014,1009,1012,1014,1000,1011,1009,1025,1031,1032,1026,1030,1024,1027,1027,1029,1040,1026,1047,1026,1021,1021,1034,1030,1038,1025,868,876,871,867,892,884,876,875,881,882,894,878,867,593,574,586,595,585,579,595,594,598,574,595,593,910,927,933,898,930,925,913,912,940,923,923,920,936,926,935,945,936,946,920,922,936,925,941,924,929,920,1021,1012,994,1017,1006,1004,1000,1008,989,1001,993,1002,1000,997,1012,1007,790,791,770,795,802,792,798,817,816,804,804,757,1089,1092,1099,1089,1077,1096,1086,1109,1097,1107,1101,1093,1100,1099,964,949,952,960,964,948,952,956,960,950,969,943,955,964,973,940,925,914,926,920,923,931,927,923,928,922,929,937,923,923,927,644,651,633,644,650,639,642,646,639,672,656,633,648,653,651,645,667,994,992,998,969,982,974,978,879,886,897,885,879,883,869,891,885,885,875,875,632,639,626,628,622,617,639,637,636,638,642,622,627,641,633,623,635,628,860,853,871,874,850,848,941,938,950,929,951,950,936,954,950,947,965,968,962,957,970,971,964,973,977,975,968,973,967,1079,1079,1075,1066,1080,1077,1071,1078,1071,1075,1078,1076,862,882,875,874,880,880,884,866,885,881,971,987,995,974,988,974,962,983,989,968,982,991,990,990,1002,976,972,969,968,970,972,978,978,964,974,983,976,988,974,972,968,968,973,861,848,844,842,858,840,848,833,846,834,833,622,607,628,629,627,623,628,628,626,632,625,613,623,623,618,946,942,934,939,926,932,942,942,938,937,935,923,939,921,926,946,963,989,976,985,968,975,979,970,989,985,981,977,896,913,894,897,906,906,898,891,898,899,911,900,910,861,875,864,856,859,849,863,855,863,866,858,641,651,649,666,663,639,639,640,665,639,647,650,629,640,646,653,1025,1012,1014,1029,1031,1017,1002,1025,1015,1020,1012,1005,1042,1010,1017,1023,1018,1011,1011,1084,1089,1083,1103,1082,1088,1088,1086,1086,1090,1080,1081,1069,1102,1094,1099,895,889,891,906,887,890,881,886,896,891,896,888,967,962,950,936,955,929,922,918,921,929,936,928,917,929,926,931,793,784,802,773,804,810,796,792,802,804,799,777,806,792,785,776,802,810,632,630,623,646,635,605,613,616,621,624,610,608,629,634,618,625,622,992,995,994,1000,983,992,992,1001,995,998,981,1002,974,992,988,986,988,977,991,996,1002,1005,708,694,702,711,683,688,694,715,674,699,711,687,700,692,694,1050,1042,1041,1039,1042,1035,1044,1060,1036,1058,1043,1056,1061,1062,1020,1063,1059,1049,923,940,934,934,936,931,920,947,762,775,785,780,777,776,774,792,768,783,768,782,784,778,721,730,728,728,725,724,729,724,723,730,729,727,733,730,730,597,628,606,609,605,612,595,607,596,600,609,595,596,590,603,531,534,540,539,535,537,546,534,531,535,533,534,534,533,533,529,534,527,539,533,590,586,586,600,580,599,590,587,587,903,875,887,882,892,909,907,883,904,892,905,894,884,871,864,884,910,891,915,885,623,627,629,610,622,625,537,538,534,527,526,528,537,516,524,518,531,526,533,939,945,966,973,987,1000,999,1006,982,1004,1016,996,1008,945,966,957,970,961,942,953,960,963,955,971,966,963,966,964,950,968,709,677,691,669,696,675,673,692,687,683,682,589,579,581,590,585,576,585,586,577,588,576,592,583,589,913,892,909,873,869,893,895,883,910,883,893,889,901,895,904,900,918,897,888,902,892,908,905,897,881,904,895,892,913,895,905,969,971,980,969,977,963,977,980,976,983,973,964,987,974,981,974,835,849,841,828,831,842,856,835,815,829,1153,1163,1180,1157,1181,1181,1173,1156,1181,1161,1180,1159,963,957,963,947,940,963,967,956,948,960,955,962,954,953,949,957,938,931,957,952,961,1001,1011,1024,1027,1022,1018,1035,1024,1020,1018,1028,1010,1009,1027,1024,1017,1023,1017,800,800,811,801,797,794,814,804,803,799,593,576,580,596,873,877,887,885,867,869,901,867,889,883,875,859,867,887,894,872,876,881,868,640,641,627,654,647,655,637,649,638,654,620,642,563,567,555,568,963,954,955,940,971,962,943,956,958,958,969,956,960,955,909,904,893,908,904,889,897,904,893,902,942,937,958,931,954,941,933,931,949,941,826,815,839,826,834,820,821,833,825,831,841,834,832,833,635,637,622,623,636,625,632,627,624,630,619,630,634,629,862,862,863,875,860,873,873,868,870,867,864,867,880,856,1013,1002,999,1004,991,998,1005,992,988,993,994,993,892,899,892,895,884,895,890,885,890,891,890,730,749,721,743,736,733,732,738,747,732,733,738,729,747,730,749,724,938,940,936,935,940,928,951,947,931,944,933,931,927,922,927,928,936,933,924,966,950,964,970,964,959,829,830,799,845,830,812,820,826,813,814,831,823,832,831,812,808,924,923,936,939,912,933,949,934,932,948,959,950,956,943,949,950,950,953,958,939,950,945,944,940,954,767,758,781,791,794,785,791,781,777,774,775,777,758,775,773,762,768,543,537,541,533,540,547,550,552,553,542,549,544,528,545,550,548,563,549,551,550,554,545,601,607,602,595,611,596,602,599,596,609,618,618,617,621,621,612,620,622,621,608,627,610,627,618,621,621,618,578,574,577,576,584,581,580,571,571,583,598,598,586,577,585,589,589,582,585,592,593,584,593,577,592,589,585,578,583,597,584,589,579,628,612,614,618,622,614,619,613,622,611,606,597,594,594,604,590,596,595,593,591,587,593,596,597,585,593,1064,1060,1057,1054,1039,1060,1069,1048,1033,1064,1060,1049,1073,1055,1067,1061,1058,941,930,941,938,939,933,922,936,925,944,1172,1139,1136,1154,1160,1163,1171,1156,1135,1156,1165,1148,901,897,924,916,913,901,908,925,915,895,913,919,1051,1062,1068,1067,1074,1072,1060,1075,1063,1064,1055,1056,1056,878,887,886,882,865,852,883,885,865,865,878,861,652,656,648,648,653,654,661,649,649,655,668,656,659,653,653,654,1185,1166,1150,1183,1199,1193,1179,1166,1174,1186,1158,1177,1194,1186,1201,1193,1205,1187,1149,1228,945,931,935,933,939,932,954,925,953,936,934,938,924,959,949,932,923,932,949,945,940,935,923,922,923,930,909,933,923,913,927,927,927,920,918,918,930,916,925,925,928,910,970,972,961,972,964,967,961,960,963,967,957,969,969,957,969,966,972,833,817,814,811,826,830,828,829,814,1079,1078,1075,1082,1078,1082,1079,1089,1076,1070,1084,1073,1073,1069,846,878,866,862,869,866,839,857,866,844,863,860,618,612,595,601,599,612,597,1087,1072,1099,1093,1103,1062,1070,1091,1095,1091,1097,1058,1094,1082,1065,1058,935,931,938,935,942,948,941,922,939,584,596,586,600,588,604,603,605,611,590,608,585,580,600,606,533,535,529,533,532,521,522,518,525,527,528,526,510,1013,984,993,982,993,957,1034,1007,933,940,926,927,932,945,919,946,932,929,930,942,922,926,933,946,953,929,675,664,666,678,680,683,677,685,679,844,848,855,839,828,851,854,848,844,850,854,851,839,853,830,733,746,747,750,739,740,737,747,748,749,741,746,733,740,735,739,732,652,663,651,663,665,658,642,656,647,657,650,643,661,646,842,837,852,838,853,839,832,838,825,836,840,847,847,860,843,836,816,760,756,771,771,768,767,766,767,640,646,649,631,641,650,643,646,645,649,642,647,654,650,632,648,645,873,869,889,883,883,868,881,884,871,869,884,886,634,633,649,631,617,657,626,633,632,641,641,626,635,653,636,646,1018,1012,1043,1003,1029,1009,1031,1014,1055,1016,877,881,856,870,866,885,871,871,876,869,851,858,871,861,640,633,646,645,647,649,786,803,793,782,787,797,785,806,794,797,786,785,772,780,751,747,756,758,756,755,758,755,752,765,761,757,760,757,766,747,744,743,754,599,608,615,610,593,609,597,612,600,606,607,598,603,607,604,602,602,605,972,973,988,986,978,985,989,976,1000,982,983,992,921,926,919,925,928,931,920,927,934,930,928,925,953,952,942,805,813,821,806,804,829,808,826,809,808,815,795,806,814,804,802,605,614,614,604,613,602,610,607,611,598,584,610,620,617,615,622,630,635,624,629,626,630,632,630,628,623,619,628,628,616,627,623,1099,1061,1068,1062,1060,1069,1036,1042,1065,1052,1053,1047,1065,918,922,923,913,919,923,907,906,905,909,906,911,906,910,913,655,648,639,640,653,645,659,656,656,664,659,657,649,653,648,623,659,651,662,655,610,605,606,614,607,604,611,619,606,614,609,610,606,601,610,611,606,610,611,615,615,559,553,564,562,557,566,557,552,566,556,565,567,559,518,515,513,524,506,521,513,522,518,519,511,517,522,576,563,569,560,570,570,564,574,571,569,584,585,562,554,574,608,610,607,624,620,622,619,609,625,619,627,618,617,623,707,723,725,725,719,723,714,731,709,712,706,710,718,716,715,717,711,703,639,634,641,644,642,629,642,625,637,638,642,633,634,639,639,638,636,643,635,1099,1073,1071,1045,1088,1063,1066,1074,1062,1071,1049,1086,1069,919,932,934,916,922,920,930,935,933,941,918,915,855,881,877,879,878,873,872,883,876,877,876,882,868,877,873,891,887,798,778,764,771,783,787,768,775,789,774,774,782,776,782,783,766,773,770,609,589,600,596,608,600,587,595,588,599,599,592,582,595,911,928,929,915,917,922,934,922,908,895,916,942,916,917,916,919,929,904,917,906,925,959,960,958,962,965,966,963,961,965,925,933,925,923,930,916,940,920,939,930,918,943,936,937,929,938,920,917,910,922,923,915,919,922,917,928,916,908,919,914,919,917,810,819,810,811,836,825,825,813,815,816,819,816,839,817,822,631,615,622,615,624,626,612,613,615,623,622,608,617,617,655,666,672,668,667,662,660,670,656,657,659,660,968,937,946,930,972,971,984,961,970,958,961,963,971,967,976,975,963,977,959,969,976,831,827,822,827,836,837,816,841,842,823,810,973,963,962,976,977,965,966,960,968,848,856,854,851,839,856,966,953,956,964,951,962,970,973,967,971,973,985,979,970,975,985,980,979,981,978,983,979,978,818,819,824,799,824,813,824,822,821,829,829,806,839,804,821,842,528,542,515,520,529,511,527,530,533,523,628,619,626,633,630,616,625,639,637,634,652,646,650,649,659,668,655,650,656,653,661,652,663,658,654,911,925,892,886,894,909,913,915,928,698,718,690,682,690,700,681,708,686,690,699,659,639,645,647,640,656,638,647,652,648,652,645,594,613,603,604,602,613,606,596,602,611,611,599,594,606,605,604,939,955,950,938,927,946,946,935,943,943,932,924,943,963,924,932,931,925,930,931,929,924,933,918,946,919,936,935,924,929,974,980,967,977,979,961,979,970,975,978,958,982,966,962,967,961,978,848,849,838,851,857,843,840,833,832,839,844,977,967,994,970,985,973,968,990,977,987,971,987,991,989,996,994,995,998,992,983,995,997,988,997,993,1006,984,1008,997,828,822,806,815,817,819,797,796,814,816,795,1065,1060,1074,1068,1058,1073,1046,1061,1056,1081,1070,1053,844,862,836,846,849,867,844,841,835,840,861,844,855,854,864,870,855,865,627,638,627,627,632,633,903,915,915,909,913,918,885,923,901,915,919,914,890,775,772,780,780,782,767,785,774,775,770,775,767,773,779,777,643,634,638,622,638,635,641,639,641,634,647,633,644,639,633,586,588,589,581,583,582,587,582,584,573,583,587,582,584,579,587,594,583,875,885,902,903,907,914,972,968,956,962,958,957,964,952,947,955,963,968,789,783,783,789,782,777,796,630,630,635,630,630,633,637,622,634,621,634,613,617,642,632,634,910,898,922,908,903,912,917,1021,1007,998,1015,1010,1009,1015,1009,1022,1014,1016,996,998,878,901,875,876,887,886,874,879,878,893,890,883,886,872,876,571,574,576,578,569,581,578,575,575,573,575,574,588,575,575,883,876,879,887,881,880,898,896,907,909,904,905,904,901,913,902,895,905,904,913,904,965,969,956,969,965,972,974,980,963,975,971,969,970,966,970,957,749,750,759,771,741,754,746,738,771,748,740,597,592,597,595,577,614,607,596,592,600,585,594,609,598,593,598,596,604,602,607,599,602,610,603,1123,1073,1109,1087,1110,1088,1107,1093,1101,1118,1097,1060,1084,1107,1091,1109,1094,1125,888,878,901,882,890,873,896,907,879,885,873,888,888,884,897,897,902,889,608,606,596,607,607,597,591,619,611,598,603,598,949,937,921,950,940,909,944,921,936,937,926,906,894,897,905,894,885,891,882,898,904,671,665,656,648,651,657,665,664,640,607,598,598,611,604,612,808,800,799,812,820,813,825,822,816,817,815,818,815,807,817,815,798,644,633,636,625,639,647,644,633,629,642,548,550,553,546,542,552,541,556,534,548,554,556,545,535,561,611,606,599,612,614,605,612,611,594,604,597,609,619,613,603,606,611,980,987,1006,1000,994,980,993,990,957,962,972,944,953,964,933,944,935,948,935,938,950,931,935,935,929,795,791,797,787,789,779,783,785,789,811,784,544,534,519,540,520,539,528,534,533,520,535,535,543,1064,1036,1052,1034,1065,1074,1056,1041,1069,1062,947,927,922,924,923,916,918,909,930,900,915,920,926,918,914,945,921,1025,1030,1036,1000,1040,1042,1004,1053,1021,1032,1024,1015,1053,1026,1025,1017,1042,1034,1013,1005,1009,1012,1004,1002,1009,1000,1009,1008,1014,1014,1003,1007,1017,1015,863,881,880,899,896,889,896,1004,1009,1027,1022,1013,1027,1023,1011,1010,1012,1012,1018,1008,858,872,845,867,868,865,855,864,654,650,643,644,651,648,650,642,642,650,653,644,654,647,646,647,877,891,871,871,872,875,877,883,872,892,876,887,875,889,890,627,625,650,632,628,625,647,635,614,630,642,994,1023,999,998,1000,1001,993,1027,1006,1008,1019,998,1002,995,1008,990,1018,1004,882,878,793,800,794,797,800,798,795,793,799,805,802,791,797,635,624,617,627,636,630,638,626,621,640,631,651,623,628,614,615,618,534,531,544,532,525,530,520,523,537,531,529,528,535,533,537,529,536,523,533,529,524,579,566,575,579,569,594,578,580,574,571,895,909,911,905,902,927,916,899,902,904,904,920,934,905,916,892,927,906,904,925,932,939,934,913,932,923,924,935,922,945,923,926,916,946,919,928,931,942,932,918,906,912,916,906,919,913,913,909,916,906,905,913,915,901,924,911,906,914,913,769,773,780,768,760,758,759,784,766,767,784,771,755,763,750,524,509,536,532,540,545,524,533,508,528,536,531,538,560,554,556,555,555,561,549,547,548,564,553,548,554,607,603,606,615,604,608,603,609,600,594,605,609,606,609,601,611,604,597,1005,999,1007,1010,1036,1019,993,1027,990,928,927,934,930,939,930,921,946,929,939,932,934,926,939,928,819,822,806,930,957,960,961,944,942,949,949,958,947,948,933,923,929,918,910,907,916,918,933,920,913,912,913,920,926,601,607,601,600,630,612,633,610,605,601,617,528,527,539,522,533,536,539,531,523,523,523,523,529,523,607,605,596,601,597,598,677,668,664,664,679,673,680,679,679,679,678,658,664,684,672,670,660,662,659,936,944,923,928,932,938,920,925,944,941,932,914,941,935,933,934,937,945,933,935,933,934,943,942,925,932,933,973,967,966,951,959,967,957,956,954,962,950,945,961,956,961,957,888,871,888,881,886,880,889,869,877,884,902,863,866,869,871,857,869,853,869,624,631,652,619,633,633,625,630,635,631,636,627,632,633,627,917,946,941,924,931,927,948,946,940,942,923,933,949,996,978,951,962,971,963,963,965,971,959,978,959,1006,1005,998,1001,1002,1002,999,1001,1008,1011,1005,994,1001,1012,996,997,865,875,874,866,891,883,892,881,868,883,879,886,890,882,866,886,889,592,608,599,601,604,573,602,600,592,603,597,590,572,557,552,567,560,558,559,557,554,550,563,563,564,546,558,558,1078,1076,1084,1061,1107,1039,1052,1082,1059,1082,1088,1047,1076,950,931,934,908,927,913,921,910,919,905,1218,1197,1226,1195,1226,1216,1217,1181,1216,1221,1213,1205,1209,1194,1226,1000,1023,1019,1001,1023,1016,1004,606,613,623,616,624,612,631,617,633,619,620,613,605,622,619,626,939,917,940,928,920,925,933,936,916,932,917,935,925,917,946,956,939,956,959,945,958,952,952,963,949,960,961,861,884,862,861,865,876,877,871,883,888,876,861,874,871,878,863,869,638,646,642,629,644,992,979,1003,1002,1002,993,994,990,1014,996,1000,999,1003,995,991,997,960,952,958,947,948,944,955,949,945,954,957,948,968,1015,1000,1004,1004,1001,994,999,993,995,1003,872,862,868,874,882,867,880,870,595,612,604,610,600,603,609,604,606,615,600,601,618,1019,1016,1031,1035,1033,1024,1024,1047,1036,1025,1020,1016,894,878,884,891,872,888,876,900,881,866,851,840,856,851,848,840,838,848,850,643,642,643,653,659,631,647,649,664,628,636,630,658,635,646,646,649,637,656,649,583,598,593,587,592,598,587,600,595,582,577,589,595,580,647,644,655,644,655,651,638,642,654,653,650,655,631,595,579,589,594,590,592,590,589,594,593,591,584,600,589,599,594,592,592,591,591,1018,1059,1033,1047,1079,1063,1054,1021,1043,1053,1052,1069,904,913,924,928,900,907,917,902,918,577,601,609,583,583,596,596,587,584,585,602,597,573,593,618,606,582,544,544,542,544,536,540,537,548,553,549,538,546,978,1003,999,986,957,981,1008,1005,1016,996,1027,989,1003,989,984,985,978,985,994,986,980,997,990,990,980,978,984,977,984,870,873,865,886,859,858,863,873,870,879,870,860,585,571,578,595,574,586,566,580,570,585,588,569,569,590,603,908,889,879,886,903,897,881,893,880,888,883,873,882,873,897,961,968,967,969,979,981,966,970,952,967,971,957,964,974,973,885,886,897,905,902,887,901,891,880,884,896,904,899,906,916,914,915,912,921,920,911,921,910,920,913,915,1020,1012,1026,1014,1014,1019,1016,1006,1013,1012,1013,1019,878,881,873,874,871,885,1054,1076,1081,1066,1080,1066,1087,1085,1075,1085,1080,1079,1076,1075,1086,910,904,924,919,902,899,931,916,913,909,907,900,914,921,912,902,915,908,1030,1052,1028,1032,1030,1047,1051,1043,1049,1045,1041,1050,863,863,886,862,862,850,855,886,863,849,867,524,533,534,522,531,520,528,519,534,536,514,530,605,611,600,603,605,617,603,600,601,596,592,600,608,631,636,642,630,643,628,632,629,629,633,620,627,630,641,626,625,626,1152,1178,1157,1195,1185,1152,1163,1155,940,948,960,935,940,930,951,937,941,958,953,954,965,606,619,610,605,607,616,604,612,635,617,620,619,586,610,620,611,613,534,549,557,538,554,547,551,552,559,550,557,562,570,571,563,568,568,562,560,555,560,565,561,569,573,601,597,600,589,581,597,584,610,585,595,582,596,589,592,599,594,966,966,949,970,965,950,968,966,962,974,954,953,957,964,948,1010,997,1011,1012,995,995,1009,998,1005,999,1003,998,1004,998,988,1002,1006,901,894,895,896,921,910,964,953,946,941,952,950,950,945,809,823,819,815,821,836,799,813,831,827,836,822,828,932,921,906,915,921,908,927,915,913,899,921,945,957,954,955,965,969,955,983,984,973,983,984,980,980,983,991,987,830,833,821,841,842,830,839,818,832,837,821,828,926,931,925,944,933,949,919,931,939,929,937,943,927,930,951,946,955,929,941,982,965,978,973,970,967,964,973,972,971,958,958,980,800,804,831,808,791,813,829,785,818,805,809,804,784,1075,1061,1058,1060,1076,1068,1071,1065,1069,1081,1064,1069,849,852,858,845,855,873,829,834,834,843,854,830,857,832,829,841,861,586,587,589,577,578,578,593,1076,1081,1105,1083,1080,1072,1065,1087,1126,1090,1072,1089,1089,865,865,876,880,872,867,880,861,865,874,862,873,883,889,886,872,846,860,886,873,853,580,584,592,576,591,592,586,585,576,596,589,591,977,960,974,971,964,962,954,959,955,967,966,978,973,958,984,977,968,984,977,957,977,966,968,971,961,970,972,958,967,885,869,884,884,880,863,891,882,892,880,885,882,881,885,900,886,882,896,884,944,946,956,948,948,958,950,947,941,939,955,949,950,933,942,944,957,953,948,888,880,883,878,865,868,879,877,883,878,872,887,880,885,874,875,873,883,725,708,707,720,718,720,716,723,716,705,707,712,712,604,592,574,593,588,592,600,592,600,589,595,601,583,594,597,594,602,601,587,600,594,600,598,921,912,917,911,906,917,914,911,918,923,920,902,956,954,961,957,947,929,940,949,963,964,955,960,955,968,954,956,947,967,946,968,963,951,944,964,963,955,848,830,839,859,833,840,838,836,615,628,620,618,625,632,634,629,618,618,615,636,637,639,629,636,627,604,602,610,607,599,604,598,614,605,604,598,602,600,604,608,1008,996,1014,1012,1024,1041,1012,994,1014,999,991,1008,1025,1018,1010,1010,1036,875,879,871,899,881,877,885,895,888,869,869,877,874,601,593,602,607,598,607,607,596,628,629,618,630,629,1046,1027,1044,1030,1042,1025,1050,1061,1048,1040,1052,1053,1046,1039,1066,952,958,953,948,974,960,966,954,968,958,968,956,969,969,958,959,959,960,957,960,958,952,835,844,815,840,806,819,828,827,825,826,804,819,825,825,832,839,817,837,972,956,959,953,952,977,965,960,970,954,968,954,963,964,947,970,953,962,886,889,878,884,880,887,882,882,881,892,878,904,883,994,1000,995,999,1002,1003,997,1011,998,1000,1009,1006,994,997,1003,1005,999,1006,1011,858,868,841,866,849,856,860,859,855,856,850,861,866,855,845,855,863,851,843,813,804,813,810,799,824,814,826,823,812,623,624,626,626,628,628,619,623,625,615,620,621,608,608,614,555,561,552,563,550,552,554,549,548,546,557,553,580,576,591,587,577,594,589,587,579,584,585,590,594,597,855,870,885,870,858,861,845,862,870,865,858,875,871,878,853,877,876,869,664,646,655,650,632,647,646,655,632,639,665,634,631,643,644,653,651,649,643,650,669,548,539,560,549,550,533,540,541,527,541,539,546,551,524,542,549,543,543,536,872,843,853,885,870,860,869,852,894,859,855,844,850,865,857,874,851,855,747,732,710,740,735,710,737,729,736,721,731,739,729,741,736,777,787,783,784,790,780,792,787,783,782,799,792,782,774,784,753,755,747,764,752,749,760,757,760,755,764,763,758,735,761,753,754,761,766,761,618,607,611,617,608,600,616,612,612,610,612,610,1034,1045,1037,1044,1047,1018,1033,1040,1015,1032,1054,1014,1026,1043,949,934,930,954,938,946,947,944,929,724,748,726,732,740,739,720,716,731,728,730,729,723,735,718,722,714,729,730,581,586,604,585,591,601,579,573,590,588,534,544,537,529,541,538,536,537,553,531,540,545,542,537,546,543,533,967,970,976,959,974,961,956,976,972,989,980,953,960,961,957,962,971,962,963,957,947,943,965,955,959,963,954,972,963,976,974,974,972,984,974,977,970,966,970,980,978,976,971,981,969,961,966,969,970,799,809,781,807,808,812,790,803,803,813,819,792,806,971,969,946,945,946,963,950,950,949,951,940,945,946,958,968,962,955,959,955,883,889,882,907,895,886,651,654,653,652,637,656,644,646,640,639,640,659,634,650,636,656,648,623,628,632,614,620,618,622,621,629,618,612,626,630,636,633,620,625,621,1001,1000,990,1001,1013,978,1006,980,989,1012,988,1002,1004,981,992,998,975,994,827,840,851,824,852,810,832,830,838,832,840,830,607,606,595,611,588,599,601,593,598,594,605,599,910,910,886,886,894,887,888,893,912,919,899,903,978,975,961,977,963,971,993,977,973,976,952,972,910,906,889,895,910,892,902,906,907,893,895,894,908,899,917,908,896,890,582,567,577,575,585,587,581,577,561,576,564,581,571,588,575,569,572,885,881,891,881,889,893,881,887,874,904,894,886,901,898,913,905,907,904,905,895,898,905,911,948,938,937,942,939,926,938,943,937,942,940,1062,1069,1068,1062,1054,1056,1054,1057,1062,1060,1063,1065,1069,1058,1068,1060,1072,1067,1078,1070,1066,899,886,888,897,887,883,913,1090,1097,1100,1109,1101,1088,1091,1087,1106,926,929,925,944,930,937,930,940,943,930,937,947,927,932,945,601,621,618,620,639,620,631,606,617,615,954,955,959,962,952,965,963,955,960,927,949,978,972,973,979,991,982,979,886,888,868,882,859,873,881,855,896,869,874,871,889,869,1068,1083,1063,1072,1082,1093,1061,1060,1078,1087,1070,1066,1058,1063,1063,1062,1062,1056,1056,1046,1049,1055,1059,1067,1055,1049,1057,893,897,889,902,907,901,904,891,889,901,900,899,888,893,887,893,1114,1120,1113,1117,1123,1102,1127,1099,1120,1117,908,913,905,910,916,897,922,929,1024,1038,1038,1038,1039,1034,1037,1015,1037,1048,780,798,791,795,796,796,797,805,836,791,783,795,811,640,657,649,648,650,626,640,648,649,645,639,631,641,655,634,654,640,971,957,972,963,958,951,962,963,955,957,961,964,958,942,1057,1043,1071,1064,1050,1064,1067,1056,1056,1059,1067,1054,1056,1047,1068,1066,1050,906,910,900,913,903,908,914,918,912,915,912,904,923,912,914,917,914,915,878,889,891,893,877,884,892,891,895,882,873,854,863,863,854,855,851,859,860,898,914,900,907,907,908,898,903,900,977,973,979,978,982,977,974,975,968,978,979,973,976,972,963,971,828,818,820,831,834,825,820,823,828,844,844,832,827,839,845,840,940,975,942,965,941,940,947,971,920,948,955,956,936,936,945,938,972,954,943,977,918,927,934,933,929,942,940,923,945,938,933,1037,1018,1021,1022,1030,1009,1031,1020,1021,1022,1022,1026,1006,1020,848,850,850,855,843,830,860,853,851,831,851,830,854,993,986,992,992,1002,1005,989,996,999,1007,1004,1005,889,885,869,874,870,884,874,872,872,863,877,875,875,876,616,600,601,593,579,596,601,593,531,548,550,550,553,562,540,546,546,549,542,544,555,558,552,548,548,578,581,586,589,585,581,575,579,578,580,581,580,564,581,583,576,586,583,613,605,609,617,609,604,601,610,608,601,598,605,617,609,599,616,614,619,596,617,609,611,619,610,615,621,620,626,615,632,983,962,962,964,959,972,957,965,954,964,964,969,964,959,957,684,682,698,700,714,711,701,695,695,681,709,696,700,714,937,905,914,913,900,890,906,905,900,911,901,893,921,899,920,928,908,890,883,893,901,897,897,896,877,897,885,889,880,902,764,739,745,755,745,746,736,743,749,743,743,593,596,603,593,579,604,598,599,594,617,603,605,602,603,603,965,972,968,973,972,969,983,969,963,971,969,984,980,992,810,801,775,790,788,814,803,782,797,582,576,602,586,590,610,600,577,592,597,585,587,596,1161,1142,1177,1126,1156,1136,1141,1161,1147,1177,1161,1152,1143,1153,1010,986,1011,992,1008,1006,997,999,678,670,674,664,676,677,672,672,668,669,678,668,675,665,657,674,671,576,579,565,565,573,568,549,560,564,569,563,559,566,559,553,556,552,566,569,556,565,563,567,560,570,896,909,904,903,908,922,900,908,902,907,894,911,901,906,895,914,900,769,758,752,758,763,758,745,765,783,956,969,971,956,969,964,957,956,963,956,963,972,967,962,963,973,953,969,966,971,978,975,973,988,976,990,971,972,994,979,986,990,995,1000,998,987,853,841,860,846,864,868,863,855,877,854,859,1012,1010,1017,1014,1016,1011,1013,1017,1014,1014,1021,1014,1006,1013,1010,1013,1005,1015,1003,1014,1018,895,873,882,870,874,856,882,860,868,876,858,872,884,864,878,877,878,999,999,983,1013,989,998,1003,1009,996,1012,977,1002,1005,1034,1018,1018,1009,1019,1021,1017,1008,1013,1017,1022,1021,1016,1014,1011,1021,1011,1019,1023,1021,857,864,861,854,866,843,865,865,871,852,851,867,993,1003,1003,999,999,1002,997,998,1009,997,1015,992,1013,999,873,883,876,883,877,885,593,575,597,603,581,575,592,590,601,627,618,629,630,633,627,624,620,621,628,615,630,645,625,632,626,598,601,600,594,601,629,617,635,619,627,637,623,620,639,632,625,635,645,641,628,609,630,620,620,633,620,933,913,935,931,937,925,926,949,935,931,943,922,944,966,933,966,965,963,952,966,959,965,955,968,959,961,964,969,968,961,975,958,963,963,960,962,980,963,978,965,961,964,1068,1065,1075,1062,1050,1055,1068,1060,1069,1065,1061,1055,1056,1059,1077,1064,1053,1064,1068,1066,904,897,891,890,888,878,897,879,893,868,879,880,886,981,967,971,971,979,967,975,974,966,972,962,975,964,838,853,854,845,847,858,845,841,848,857,849,861,863,854,861,857,851,838,649,639,636,643,645,642,647,639,640,632,644,632,636,659,660,656,650,653,644,666,666,660,647,1073,1095,1062,1095,1094,1075,1096,1078,1076,1074,1065,1063,1066,1080,1064,1069,1097,868,874,882,889,883,903,895,898,890,895,889,896,912,882,547,549,545,534,557,561,631,616,618,621,609,617,622,615,622,605,609,652,654,662,660,674,655,670,660,665,664,655,671,654,669,645,951,966,965,950,948,956,968,957,956,944,970,961,959,966,946,951,961,965,718,702,708,715,728,709,705,723,717,698,752,747,747,742,757,749,740,754,756,742,749,780,790,790,790,796,792,794,796,789,792,795,788,792,786,787,788,621,626,632,627,620,613,627,623,618,622,625,636,630,626,1027,1020,1014,1029,1018,1041,1008,1016,1012,1031,1039,836,854,831,852,845,856,853,843,834,861,842,860,841,844,862,843,836,843,858,829,844,852,977,981,976,981,991,984,973,986,982,984,976,869,867,876,866,874,864,858,863,874,858,874,859,871,1094,1108,1095,1094,1090,1096,1087,1108,1082,1109,1101,1110,980,997,983,996,990,998,976,980,981,1001,983,805,809,799,809,804,802,811,806,799,604,620,614,591,596,604,601,538,538,542,541,542,560,547,545,553,546,545,545,541,547,1100,1121,1097,1083,1115,1112,1090,1073,1107,1118,1071,1122,1089,1103,1129,1139,1125,1138,1107,964,972,972,968,963,973,961,983,816,832,838,829,829,822,832,835,833,835,827,831,839,829,836,830,830,840,832,819,831,837,617,610,621,612,641,609,618,609,611,613,606,619,613,494,515,495,500,504,500,509,506,502,507,503,514,586,592,578,573,583,593,593,595,580,586,576,581,597,580,593,600,590,586,579,599,588,589,602,629,623,632,638,630,626,630,637,626,634,631,921,948,937,935,933,930,943,948,933,944,934,946,943,951,923,952,882,888,877,887,894,892,887,885,877,890,892,886,894,888,906,909,897,888,890,886,896,896,891,885,877,896,894,891,895,804,800,809,811,786,795,805,790,795,803,808,791,794,820,801,805,806,815,798,910,915,916,911,915,904,945,918,899,925,943,914,914,912,934,922,931,914,949,941,936,934,937,980,964,970,972,961,972,965,960,973,959,960,962,967,972,963,964,968,954,966,826,820,822,817,825,827,828,827,815,833,583,586,583,578,580,576,576,590,596,595,586,588,525,544,543,531,537,532,528,678,649,675,671,660,674,652,666,649,661,669,664,661,665,676,668,675,650,643,640,646,656,657,658,655,665,648,995,982,983,977,985,998,996,987,990,1000,974,993,991,989,994,961,957,942,969,949,955,971,961,967,973,969,964,956,948,949,954,957,970,951,965,819,842,844,835,837,829,850,837,836,845,851,856,844,837,1038,1052,1057,1058,1051,1055,1055,1033,1055,1052,1042,1047,1053,1041,1059,954,943,941,943,941,942,952,932,950,948,949,940,937,950,944,1130,1143,1137,1130,1131,1128,1138,1137,1131,1135,1128,1123,1142,1131,1141,1145,1138,1140,1137,1152,934,934,937,942,911,926,907,894,916,909,905,900,890,899,918,900,895,892,893,894,885,892,888,893,893,891,899,900,895,891,897,895,893,892,894,891,942,947,948,949,943,946,945,942,943,943,823,804,822,791,822,830,1088,1081,1084,1077,1069,1091,1075,1091,917,913,924,924,917,935,926,906,925,934,905,926,935,929,905,628,672,638,635,640,648,621,641,649,656,644,641,660,1063,1075,1065,1060,1044,1068,1079,1067,1082,1078,1065,1056,1063,1059,1079,1082,886,889,868,884,869,885,864,873,883,863,870,897,873,870,600,621,605,621,607,615,608,619,613,603,906,899,903,893,897,887,926,905,901,898,897,892,919,890,904,898,913,912,787,778,786,778,779,777,777,786,780,790,780,763,786,773,785,786,656,650,661,656,660,658,663,654,675,665,667,652,648,665,665,660,655,885,901,875,909,889,882,894,879,893,896,698,687,667,667,689,676,688,806,803,797,790,800,803,814,808,811,806,813,801,802,800,798,1010,1022,1013,1020,1022,1021,1021,1018,996,910,905,889,880,898,919,894,902,908,893,916,593,597,606,602,583,593,585,617,595,589,595,590,605,589,985,978,974,969,985,983,971,978,991,981,840,830,819,837,816,617,614,622,628,627,604,624,617,617,627,615,638,620,1137,1161,1179,1158,1081,1130,1095,1169,1146,1153,1130,1155,1033,1025,1033,1034,1021,1017,1013,1011,1032,1034,1030,1016,1031,1022,1014,1016,873,883,876,892,894,869,889,888,891,788,783,792,808,797,788,790,800,716,725,717,725,717,733,739,728,739,727,724,723,740,632,648,642,625,644,654,632,645,638,646,651,643,652,639,636,640,609,627,614,606,610,607,607,607,612,617,610,606,612,603,612,619,1065,1068,1059,1054,1055,1084,1056,1059,1054,899,923,907,914,904,918,929,915,906,920,922,917,910,912,914,896,982,986,990,989,980,988,984,982,985,992,986,989,993,976,982,990,976,996,981,987,862,852,851,841,849,861,868,854,846,843,860,848,866,844,866,852,832,842,840,841,850,850,855,851,857,1038,1053,1054,1028,1048,1043,1047,1046,1059,1042,1047,1048,1045,1052,1046,1046,1038,859,854,866,863,867,864,872,866,881,629,645,656,642,635,647,640,633,790,796,784,760,781,793,790,780,800,793,789,935,945,944,944,964,950,944,943,933,944,967,953,949,942,954,941,964,869,869,863,870,857,867,861,869,870,632,635,630,642,626,636,634,630,629,637,641,880,891,712,689,687,680,677,698,680,787,781,774,793,780,793,784,788,788,789,784,778,788,791,781,789,790,786,772,623,616,637,635,631,619,641,640,641,627,650,582,591,581,588,596,583,589,582,590,595,594,593,584,590,585,588,583,621,606,622,626,622,626,620,619,612,623,992,995,986,979,1009,982,990,984,996,999,992,844,866,860,842,859,848,853,862,856,846,850,838,555,574,577,553,566,567,561,571,566,581,570,586,575,576,584,593,599,585,584,585,578,581,584,573,573,574,556,1123,1156,1145,1133,1133,1123,1147,1099,1131,1140,980,1013,998,990,975,1001,1000,992,992,989,982,988,990,974,991,995,986,994,982,992,1012,908,909,901,909,913,905,907,910,909,911,907,820,843,831,836,840,840,837,843,837,841,845,844,774,773,789,776,792,782,795,783,779,790,785,784,777,790,774,771,770,781,778,773,764,765,770,787,762,632,626,635,630,628,631,623,625,644,633,637,623,631,624,633,636,624,628,626,1090,1108,1112,1102,1086,1108,1121,1118,1103,1133,1059,1117,953,957,966,969,950,970,965,966,959,934,828,817,809,822,826,821,825,812,819,825,818,940,947,942,948,945,938,939,945,948,944,940,943,954,947,961,950,932,934,934,933,932,919,929,939,931,944,942,940,933,786,788,791,782,805,799,796,796,795,800,783,785,795,790,638,649,636,633,658,630,639,641,646,629,645,642,640,637,638,637,629,627,638,637,638,633,637,634,634,632,635,970,986,958,976,994,965,955,960,1000,976,978,978,966,958,964,962,965,956,820,811,805,812,815,815,824,817,824,609,595,591,600,603,603,594,590,596,582,597,588,607,601,590,1043,1023,1022,1030,1031,1030,1016,1042,1043,1015,1028,1014,1033,1006,1028,923,916,916,927,919,928,929,913,914,926,848,831,839,829,844,855,846,840,843,841,999,1003,1007,1012,994,999,1019,1004,1004,994,999,999,997,1009,994,997,1007,999,890,902,898,896,910,885,896,899,905,897,902,892,898,906,908,902,597,605,614,588,613,597,619,603,586,593,599,589,593,590,594,823,807,836,836,839,827,838,833,810,825,828,826,691,679,686,700,686,688,685,697,683,698,678,696,697,697,677,678,677,687,680,681,681,681,689,681,678,675,665,635,645,645,653,639,637,644,643,637,652,643,649,640,645,1047,1024,1034,1046,1037,1020,1014,1011,1043,951,933,934,926,923,944,913,941,928,935,929,943,922,927,953,924,930,940,940,625,618,629,618,627,623,627,625,626,639,636,645,637,628,627,636,621,644,1170,1161,1156,1150,1158,1183,1151,1185,1138,1177,1179,1145,1167,1143,1202,1174,1167,1159,1179,1199,1034,1030,1010,1034,1029,1013,875,882,887,877,877,885,884,866,872,883,880,885,885,884,877,865,1098,1099,1103,1094,1109,1091,1093,1104,1098,1097,1092,1105,1105,888,907,908,898,895,881,890,896,896,908,906,900,886,885,925,870,909,616,603,612,602,608,611,603,611,610,624,605,612,603,611,956,953,963,965,965,956,961,960,982,962,976,966,958,966,705,702,703,679,691,692,700,700,704,699,693,690,1054,1077,1042,1044,1058,1061,1063,1053,1049,1051,1028,1022,873,871,889,898,871,882,879,876,874,873,874,876,860,880,873,877,898,898,636,617,610,621,613,622,985,1017,1018,1005,991,1004,1009,1019,1020,1032,1023,1003,1008,852,859,850,834,854,848,845,851,836,832,832,598,590,611,606,605,599,596,603,593,592,606,609,621,614,604,886,882,883,885,860,881,894,875,881,893,882,879,643,651,650,654,654,651,654,641,648,644,506,514,510,506,515,505,508,501,502,505,507,498,504,504,508,511,501,502,505,495,499,513,504,516,509,496,505,500,511,514,509,502,573,556,557,564,557,560,551,555,561,554,557,563,553,565,549,693,691,689,674,694,691,685,693,690,696,691,685,679,678,687,595,602,600,594,598,603,602,940,935,928,929,906,916,824,846,846,866,863,841,843,846,835,843,857,854,831,831,849,627,603,609,622,614,623,970,964,992,951,983,985,990,956,982,967,985,977,977,961,1015,1030,1021,1025,1035,1020,1025,1026,1017,1015,1028,1027,1025,1021,1025,918,918,914,921,912,920,907,900,915,910,913,913,917,921,912,914,745,739,737,747,742,735,737,734,737,1030,1009,1011,1025,1021,1026,1002,1011,1023,1014,1024,1024,1007,1026,882,897,900,906,896,894,902,897,874,901,894,895,884,948,952,950,961,970,958,961,959,947,938,954,964,956,937,941,959,954,960,1022,1014,1010,1020,1024,1028,1027,1037,1015,1027,1015,1014,1016,876,881,860,880,886,866,870,879,880,882,887,895,883,874,881,887,874,879,1018,1018,1016,1017,1005,1004,1020,1009,1026,1021,894,894,887,882,885,894,890,880,890,892,888,891,896,893,885,892,896,893,860,870,859,853,849,836,851,852,841,843,849,841,848,1003,1017,1023,1017,1032,1019,1027,1033,1008,1023,1019,1010,1008,1019,877,874,880,884,874,885,875,889,643,624,638,630,634,633,643,630,629,637,645,636,652,645,638,561,563,556,555,555,556,559,553,558,552,555,556,556,1063,1047,1056,1079,1049,1069,1061,1080,1078,1060,1078,1063,1069,1053,1056,1033,1056,1052,926,935,932,956,954,974,979,969,981,976,983,993,979,978,932,982,939,924,914,918,916,913,910,909,916,906,925,922,917,916,907,978,984,968,981,977,976,980,984,986,981,873,854,861,854,865,869,893,866,855,862,867,869,874,959,969,971,960,975,989,970,973,978,957,974,961,970,946,876,868,877,867,867,861,872,885,864,865,877,874,857,875,691,688,667,681,681,895,936,930,931,928,924,917,933,929,926,910,921,974,972,968,960,977,963,984,969,967,980,972,961,978,1018,1014,1020,1021,1032,1022,1030,1029,1034,1009,1034,1029,1014,1034,836,863,848,832,840,837,828,832,842,855,842,907,927,931,927,947,900,931,941,930,920,922,927,922,926,925,928,919,912,919,921,934,940,945,954,953,949,945,948,953,954,946,948,831,842,835,866,843,849,848,855,857,848,853,850,856,854,860,858,851,860,860,853,856,852,861,860,848,850,847,771,771,779,764,774,774,772,781,777,780,778,775,775,772,784,653,636,629,650,633,636,633,637,643,635,638,628,634,631,629,642,623,862,851,866,860,861,855,857,870,874,880,858,864,845,858,852,867,673,665,687,683,700,678,674,669,674,678,676,685,678,682,677,672,856,882,868,866,877,864,870,872,877,622,620,614,611,635,614,622,620,618,609,623,618,614,606,618,618,627,627,635,960,971,976,987,983,977,960,966,961,964,972,856,861,857,845,852,854,843,858,847,858,876,840,855,847,861,836,869,864,797,786,796,781,788,794,789,790,795,792,643,657,640,644,657,656,653,650,642,642,631,664,582,590,585,590,586,568,581,579,717,711,709,705,708,697,703,722,704,717,589,598,596,597,583,599,596,590,594,1011,1000,1009,992,995,999,999,1007,1002,996,1006,974,999,984,975,993,857,875,858,851,865,862,857,874,870,854,859,1015,1035,1033,1025,1023,1025,1023,1035,1035,902,927,908,922,909,905,923,908,904,913,914,1022,1029,1030,1031,1025,1037,1036,1025,1030,1030,1038,1042,1036,1023,1025,859,862,862,852,867,852,840,860,859,522,528,527,523,536,532,512,531,547,515,526,522,508,523,523,528,508,549,561,568,570,566,571,558,578,573,561,571,572,575,557,550,566,569,967,967,962,975,968,968,976,968,971,958,964,989,744,731,745,761,868,877,867,887,874,870,869,870,886,876,877,872,883,882,866,878,707,718,733,722,730,725,723,714,713,725,715,724,718,705,707,864,884,889,888,881,873,890,875,872,865,930,911,911,916,918,916,901,944,948,931,945,946,948,948,946,945,947,952,947,938,942,802,803,812,816,831,838,794,799,830,814,826,805,798,802,815,938,934,921,928,938,924,938,936,954,937,932,937,945,946,947,945,948,952,943,957,958,951,953,957,953,947,943,947,947,945,955,791,763,761,762,787,776,787,777,573,578,577,567,561,570,579,562,584,576,580,572,567,579,574,565,575,587,580,577,580,593,584,586,585,590,581,581,597,1017,1046,1008,1034,1011,1000,1027,1026,1027,998,1002,1009,1055,1035,1018,999,1049,1024,1020,1022,1019,1008,1011,1021,1021,1025,1023,1029,1018,1013,1007,1008,1030,1012,1020,863,866,860,858,859,847,860,857,854,862,868,861,858,851,860,855,861,850,842,868,867,853,850,863,864,855,867,882,849,859,841,870,874,857,849,861,884,906,893,902,906,895,906,898,895,902,895,883,899,904,903,900,902,908,830,820,825,823,822,823,827,824,595,609,613,613,606,612,621,610,615,599,620,602,619,608,612,616,1068,1035,1076,1065,1096,1082,1055,1075,1062,1072,1077,1109,1061,1051,1082,1061,1083,1070,1048,1065,1074,904,895,874,904,905,885,892,906,878,889,902,889,904,905,907,903,607,602,600,605,608,600,619,614,602,606,594,614,604,598,590,591,589,592,601,595,594,578,584,593,587,592,585,597,585,599,548,539,544,545,546,539,555,544,547,542,553,552,551,555,547,549,557,557,548,558,548,603,602,602,603,598,610,598,618,645,633,639,638,641,650,644,634,625,637,649,638,642,634,636,1080,1062,1065,1055,1058,1041,1044,1061,1056,1082,1090,1059,1088,1065,956,946,953,938,953,937,927,946,946,932,949,953,956,947,943,962,969,943,947,943,952,952,954,947,956,949,946,955,938,948,945,954,885,904,899,899,903,892,904,899,888,890,901,896,898,886,897,893,873,868,881,876,868,870,868,870,866,873,870,863,804,810,827,806,802,804,814,825,777,780,772,784,770,779,771,782,778,781,781,779,631,634,636,633,630,634,644,1134,1137,1117,1131,1148,1126,1153,1111,1120,1129,1150,1111,1132,956,961,964,970,968,958,964,942,928,935,941,948,965,960,948,1006,997,992,1010,999,1008,991,996,990,1001,1002,990,997,1001,997,867,860,861,864,878,864,869,856,860,850,863,858,868,864,858,870,862,856,868,879,874,866,877,872,869,649,641,646,649,644,640,639,641,645,1073,1063,1060,1085,1059,1071,1061,1045,1066,1082,1048,1069,1114,1072,1086,1089,1081,837,861,845,849,837,841,854,834,853,875,854,853,822,866,865,832,865,851,594,589,581,582,598,600,571,597,590,585,573,580,562,584,578,591,595,865,844,835,838,857,868,852,837,870,861,852,687,689,684,697,685,704,701,699,690,699,698,612,621,618,624,615,617,612,838,840,832,832,834,857,850,850,834,841,841,901,890,892,886,892,888,889,902,888,882,895,887,899,888,895,902,963,946,930,948,949,954,949,959,951,951,947,946,946,949,945,950,958,952,831,842,818,808,806,811,820,808,838,823,806,965,953,958,955,966,977,968,886,883,877,881,878,888,876,884,886,875,879,872,877,872,852,866,867,866,860,872,857,853,855,861,859,866,855,862,863,864,688,698,678,699,678,690,684,682,675,693,690,676,675,700,675,679,674,688,875,876,884,894,871,894,888,877,876,885,882,880,871,877,889,866,890,883,779,780,777,779,769,780,771,779,710,719,715,709,705,715,726,954,926,937,941,940,928,942,924,944,939,929,933,950,942,941,928,919,936,919,935,935,942,815,831,805,823,808,824,806,809,809,803,815,609,609,599,605,624,610,615,610,605,608,648,643,665,650,651,646,645,632,647,642,670,676,666,675,669,669,673,674,670,672,667,674,660,676,669,668,675,662,595,602,596,585,597,593,595,601,599,598,577,598,597,594,595,600,589,893,888,897,894,892,902,895,921,897,896,934,906,894,896,894,904,890,969,976,975,993,984,992,980,979,987,978,997,979,999,972,970,1006,979,989,982,893,898,894,901,887,904,899,901,904,919,898,903,903,901,1144,1127,1132,1144,1137,1149,1128,1122,905,1037,1032,1035,1035,1028,1031,1046,1022,1031,1033,1021,1034,1035,1039,1028,1025,906,904,919,906,907,908,915,821,813,831,820,829,832,818,805,817,831,828,826,821,835,822,818,827,832,1060,1044,1048,1051,1043,1046,1043,1064,1042,1049,1055,1058,890,902,890,894,889,909,889,900,901,891,903,892,894,900,895,896,993,998,1004,996,985,986,998,981,1035,1033,1039,1029,1042,1035,1031,1031,1034,1032,1027,1039,1046,1039,905,904,902,899,908,898,900,899,903,907,913,906,1036,1043,1033,1051,1035,1030,1037,1029,1040,1030,1026,1038,1044,923,930,934,919,918,938,932,925,921,926,924,929,930,926,915,772,763,772,752,764,760,765,764,764,763,774,756,760,766,641,628,645,642,642,645,643,636,648,652,660,648,653,809,799,812,801,821,800,803,829,807,819,804,810,805,642,647,640,642,645,650,649,648,638,643,649,657,655,636,654,602,609,602,611,608,605,593,613,604,643,639,633,635,633,624,634,632,627,624,644,629,630,638,931,939,944,938,944,939,958,938,907,939,941,937,942,949,905,906,908,904,906,896,912,921,915,901,909,907,898,903,900,910,908,892,903,909,896,889,900,901,890,896,895,891,883,920,947,930,940,925,936,920,943,920,857,866,853,862,863,860,857,865,869,849,842,867,865,890,887,890,883,878,886,895,889,885,891,889,888,883,886,878,660,677,682,669,663,670,676,667,669,661,681,671,661,683,882,892,889,874,877,884,881,879,868,897,886,890,886,876,870,878,681,683,689,691,674,667,680,691,675,668,678,686,692,681,671,667,789,775,794,778,780,779,779,791,791,796,803,796,794,751,752,754,755,751,755,750,764,745,757,747,752,744,750,641,653,640,639,651,643,641,652,640,645,639,644,650,648,643,635,638,645,638,860,869,882,874,860,881,860,871,869,862,876,868,882,871,874,853,869,625,625,612,611,619,605,617,616,625,621,626,934,948,953,931,937,948,930,950,961,945,950,943,979,978,970,969,968,974,973,977,967,976,972,966,976,969,868,865,872,883,879,869,881,879,864,621,627,631,629,629,632,624,630,620,639,632,569,578,577,571,559,573,568,567,579,564,577,560,571,636,624,636,623,619,633,632,626,638,628,628,638,632,638,636,635,636,642,629,633,651,634,625,635,944,948,927,932,931,921,927,934,939,950,960,934,936,946,969,947,945,953,936,953,952,838,838,836,836,819,844,830,835,829,826,944,944,895,927,895,946,921,926,940,915,896,962,915,931,911,947,904,911,905,898,897,892,907,903,905,892,906,911,915,917,911,907,910,912,902,920,906,907,997,984,994,992,993,997,1001,1010,1005,999,1000,897,880,891,890,898,753,771,766,755,771,776,615,631,621,637,634,630,624,563,577,571,571,574,574,575,577,574,576,569,572,576,569,570,574,579,574,602,601,603,602,611,601,604,608,606,611,616,618,610,619,608,610,608,608,608,607,608,607,609,614,610,609,614,617,608,614,613,612,1017,1019,1021,1044,1007,878,879,880,863,874,850,881,877,872,869,881,882,864,880,878,880,928,941,942,935,943,935,927,934,926,937,926,932,929,922,943,939,936,935,921,801,828,822,820,853,822,814,812,818,548,559,575,556,555,561,569,566,537,541,558,555,557,541,551,549,556,572,557,568,567,558,559,564,562,562,564,1026,1054,1031,1047,1008,1022,1001,999,996,1002,994,988,995,994,996,998,999,994,995,999,856,859,860,867,851,848,863,852,861,862,599,573,584,563,563,578,569,823,845,846,842,829,817,839,831,830,841,838,835,846,824,682,670,679,670,682,676,665,1103,1145,1160,1116,1125,1138,1122,1153,1138,1139,1126,1133,1138,1109,874,884,873,878,864,881,884,893,870,893,897,908,893,862,985,985,970,969,992,978,988,980,985,967,985,988,991,976,977,979,988,981,978,984,970,982,980,980,984,990,985,991,867,860,853,872,859,869,856,856,839,857,846,850,843,860,840,886,536,518,525,537,527,501,527,530,532,521,528,601,599,605,600,592,593,608,593,615,610,599,588,604,599,640,636,650,652,637,640,631,636,640,640,632,637,627,628,646,643,649,640,937,923,942,938,942,950,936,947,943,958,669,654,688,655,670,693,656,663,670,663,683,694,673,677,687,677,660,668,563,567,563,569,560,565,568,565,569,558,572,572,569,577,567,578,572,569,960,948,964,924,962,975,950,962,961,946,948,942,961,966,951,849,839,834,806,836,611,604,603,617,594,607,598,607,603,598,598,587,600,915,909,924,921,913,921,911,924,927,927,927,916,912,926,926,939,928,899,914,986,982,976,989,980,985,978,970,977,968,976,968,972,983,968,973,986,869,864,847,865,839,872,866,871,859,867,864,856,582,576,583,582,584,582,586,569,592,587,573,589,929,899,885,891,914,893,915,886,893,866,878,917,885,890,999,1017,1008,1010,1021,1021,1004,1028,999,1013,1018,1003,1016,1014,1017,875,889,877,876,874,871,951,918,933,934,936,932,962,946,932,931,943,952,886,886,892,888,890,888,884,889,877,882,897,940,937,949,939,921,940,944,932,927,928,935,936,934,948,929,925,932,935,827,824,831,828,832,833,837,828,831,830,996,999,995,999,1003,990,994,988,1002,998,993,986,852,866,851,854,861,866,859,865,859,863,876,981,984,977,971,980,976,981,975,979,986,973,795,789,779,812,781,798,804,813,776,783,797,807,792,589,585,594,592,595,595,589,591,601,582,595,588,595,946,953,969,959,940,968,939,948,950,938,950,952,933,943,957,681,691,677,680,671,685,687,675,686,663,667,682,689,662,995,1010,1010,1019,1002,1000,997,997,998,995,977,990,999,994,979,999,995,998,993,1002,998,990,997,842,836,827,832,821,849,842,817,851,837,656,639,629,648,639,833,816,812,825,838,822,821,819,834,823,728,724,729,728,705,725,729,716,723,720,727,723,729,722,721,959,973,958,949,950,964,784,788,792,805,796,788,785,796,809,758,797,818,603,598,610,593,610,592,589,600,609,597,912,885,889,886,897,875,889,900,884,880,899,886,873,888,985,982,986,983,996,978,997,986,993,1007,985,987,845,848,845,840,835,834,847,837,831,622,630,635,631,623,649,621,636,635,630,626,627,638,642,636,634,624,800,780,800,798,771,796,786,789,784,808,791,797,807,812,794,789,766,811,780,778,716,731,732,721,716,721,735,729,724,969,957,974,976,967,984,965,959,970,968,964,863,868,873,868,860,866,867,851,875,873,868,856,868,866,857,876,876,860,862,864,849,810,804,814,812,803,801,801,806,811,805,810,806,807,1008,1012,1019,1018,1021,1026,1016,1021,1022,1009,1021,1038,1029,1029,1030,1015,1031,920,899,920,903,916,914,993,988,997,992,1002,990,988,980,995,997,981,991,999,980,987,994,980,991,989,992,838,851,840,825,836,819,818,825,829,843,848,825,838,859,821,824,852,841,835,902,923,925,908,907,992,989,1012,990,990,993,992,997,989,979,982,989,991,1005,987,834,843,828,810,839,806,853,824,833,833,822,832,847,837,820,849,820,837,1004,1024,1024,1008,1011,996,1010,1011,1040,1019,1006,995,989,1018,986,992,1022,976,977,975,983,976,978,980,979,973,973,977,982,971,968,968,970,977,971,858,844,861,849,841,861,852,851,816,818,811,819,819,817,822,818,666,646,661,665,669,654,670,656,656,648,658,651,582,594,600,583,593,592,581,588,584,592,587,594,578,587,1051,1064,1065,1058,1037,1061,1060,1067,1051,1042,1073,1033,1038,1013,1050,1032,1063,923,898,926,918,916,924,914,925,916,926,927,917,931,929,703,702,673,683,693,700,693,702,698,696,688,689,693,657,668,668,659,657,666,669,657,654,856,861,871,863,862,875,865,870,863,839,992,984,987,993,979,982,983,999,985,980,974,989,984,966,974,976,990,978,993,980,978,978,990,984,836,835,835,827,843,836,839,839,841,818,839,829,828,823,650,649,654,640,636,643,687,683,688,676,671,669,675,672,600,591,577,595,591,587,588,589,595,594,586,593,583,589,585,1038,1025,1055,1042,1035,1038,1030,1054,1039,1028,1018,1044,1029,1041,1040,1031,891,892,896,899,889,924,900,906,907,902,906,914,904,915,912,884,625,607,628,612,645,627,634,638,645,632,650,641,646,639,644,638,643,638,647,643,1068,1058,1074,1077,1052,1048,1052,1067,1067,1075,1057,954,955,943,940,938,943,957,950,953,959,954,946,936,936,944,821,816,819,815,814,814,811,819,815,817,828,820,814,816,813,812,798,822,809,825,812,654,651,653,655,647,651,642,654,652,650,641,669,655,645,802,808,796,790,795,798,800,792,789,796,797,618,621,622,627,620,613,613,607,618,624,599,613,619,612,525,525,524,532,527,528,520,530,526,532,529,532,538,520,535,532,516,542,531,544,529,628,619,619,617,622,636,633,635,633,621,639,627,632,628,632,636,646,638,627,910,921,917,944,912,934,915,927,924,919,867,890,885,892,885,889,900,881,895,887,893,880,887,836,810,829,796,821,823,813,824,819,821,811,836,619,638,631,630,626,625,626,616,849,842,835,853,840,838,848,841,701,703,698,708,696,697,701,686,682,704,709,693,695,707,703,645,639,651,642,648,646,640,643,651,651,644,657,640,643,649,651,646,639,645,640,898,907,887,905,894,903,888,937,932,940,941,944,937,935,944,929,939,926,948,960,971,976,972,965,966,977,974,973,972,981,989,958,833,845,840,844,841,840,842,839,844,849,847,843,849,636,642,654,643,656,650,643,643,659,641,647,823,814,825,807,813,805,794,821,794,800,794,769,756,756,754,761,761,761,760,762,750,749,762,760,747,755,650,647,648,650,662,650,643,656,652,655,644,639,637,643,644,636,900,884,902,881,898,893,915,884,917,906,895,889,803,791,799,793,789,793,793,774,788,794,803,777,797,789,792,797,786,779,795,785,793,780,788,728,741,741,730,735,731,738,736,736,735,731,725,739,982,991,980,983,988,984,972,977,972,983,997,997,1002,984,998,989,994,987,981,985,995,985,991,993,987,988,988,981,918,918,916,913,905,897,896,912,808,809,800,817,809,812,821,821,819,816,812,812,807,801,806,812,807,820,812,822,971,974,975,967,969,968,981,964,971,970,852,864,868,859,855,845,863,859,869,860,867,862,861,865,869,857,865,857,866,866,864,854,1079,1074,1084,1084,1080,1081,1069,1086,1081,1088,1077,1086,1082,1072,1064,1077,1067,1071,1075,894,883,887,897,896,890,908,908,899,910,901,900,995,1007,1006,1011,1011,1011,1008,1014,1016,1003,1007,1002,1007,1019,804,793,800,829,799,801,792,798,787,785,795,805,815,584,573,581,597,595,580,590,581,571,602,584,575,588,576,592,589,581,583,1115,1152,1120,1117,1139,1132,1131,1110,1093,956,964,931,961,962,964,942,952,973,952,970,953,962,963,968,961,957,956,954,964,951,652,660,652,634,655,681,642,649,631,644,671,657,650,652,635,594,602,614,595,609,607,600,596,595,582,914,896,904,916,897,905,903,898,894,890,882,906,889,897,893,886,695,670,680,686,670,680,683,694,686,698,970,974,976,973,963,961,963,976,959,954,953,982,958,944,961,835,834,825,847,847,840,951,928,954,954,960,955,915,925,931,946,915,935,948,951,963,927,935,949,953,942,1035,1029,1029,1018,1022,1045,1017,1018,1019,875,888,872,878,880,857,871,865,871,862,869,885,868,983,1000,969,977,977,984,979,980,982,864,867,865,867,856,852,860,856,853,859,860,854,605,606,632,606,608,615,602,617,610,658,671,673,678,666,665,665,666,667,663,666,681,665,668,667,671,676,663,663,653,669,661,660,669,668,667,902,904,879,887,885,905,887,903,885,681,684,682,677,679,688,678,694,700,681,689,676,688,691,661,654,663,654,657,655,676,651,657,657,657,643,634,651,657,639,653,654,638,641,639,643,642,1035,1044,1046,1005,1032,1009,1032,1036,1033,933,954,939,939,938,944,940,941,940,967,937,957,960,947,614,599,624,614,593,628,619,606,587,595,604,610,611,594,603,599,618,583,581,607,584,612,618,611,625,623,603,624,644,623,1046,1055,1084,1080,1045,1059,1062,1077,1063,1073,1050,1045,1029,1036,1027,1030,1042,1050,1046,1048,780,787,780,770,778,774,758,764,782,799,785,794,771,777,800,788,585,583,598,594,588,593,600,597,596,593,591,589,604,603,587,930,907,924,920,909,941,919,918,920,927,938,916,929,910,917,904,920,901,932,941,936,941,941,933,938,928,937,933,925,935,943,935,901,899,910,908,902,913,901,907,899,904,907,901,908,801,815,809,827,814,818,816,793,807,817,818,812,832,824,815,823,824,584,574,588,601,584,604,584,593,579,601,592,589,596,591,580,601,599,594,564,596,578,555,930,895,892,897,899,884,894,907,896,916,906,896,901,990,994,992,976,990,995,993,1000,989,839,866,846,845,855,852,859,855,952,956,956,960,950,967,956,955,960,962,951,956,957,871,860,851,856,836,850,858,859,854,856,858,861,859,852,858,859,850,846,853,956,966,954,984,963,961,946,967,977,945,942,959,950,946,939,944,942,936,940,947,956,943,945,953,945,951,933,939,935,947,932,951,1026,1035,1020,1024,1031,1020,1019,1019,1027,866,861,857,876,858,856,871,876,921,892,874,898,902,903,901,928,919,904,921,924,920,938,941,939,936,944,931,937,938,937,940,940,947,942,942,943,940,938,942,925,940,944,948,934,943,876,863,880,879,874,870,874,873,883,863,883,883,886,595,568,577,573,566,564,580,568,579,564,588,562,566,570,628,623,630,634,624,635,623,624,630,625,620,631,613,616,621,647,653,649,658,650,649,651,657,656,650,1083,1147,1172,1126,1165,1141,1170,908,918,896,905,918,912,906,893,959,989,949,995,980,970,983,974,985,986,990,986,988,984,990,988,981,984,981,990,988,985,980,990,983,988,988,983,814,830,820,837,828,824,828,829,841,830,635,652,633,640,641,641,653,639,646,639,635,903,894,909,915,912,907,895,907,913,638,638,639,639,652,640,661,646,633,633,639,637,634,637,654,651,644,637,639,643,556,549,562,552,555,562,566,561,568,555,561,566,552,1070,1081,1061,1043,1005,987,983,983,974,1005,976,968,978,986,1004,985,972,985,977,979,976,995,983,967,782,793,798,791,796,800,799,795,796,782,798,782,798,650,642,639,630,653,655,637,634,637,637,577,571,576,576,582,580,585,582,1105,1110,1105,1104,1127,1150,1059,1137,1121,1154,1100,950,934,938,962,965,959,949,959,958,951,958,964,952,954,638,635,646,660,642,661,651,653,656,628,640,657,651,846,856,863,850,848,864,854,677,675,684,692,685,679,670,680,695,675,688,683,685,603,598,606,604,612,599,617,600,600,603,608,605,607,609,607,609,606,720,722,727,726,723,723,729,725,727,703,731,610,620,617,617,614,608,616,619,621,615,609,628,624,610,614,615,615,1090,1037,1086,1069,1041,1088,1060,1075,1037,1074,1060,1046,847,871,867,861,832,845,856,849,861,847,860,877,855,877,890,870,866,856,587,600,602,598,592,608,610,597,609,597,588,598,594,608,603,602,586,891,887,895,900,885,874,877,895,888,891,864,688,696,708,701,687,689,717,692,704,701,699,725,710,710,698,585,592,607,589,595,594,601,582,591,596,592,579,592,600,596,598,582,585,931,941,922,935,928,940,937,935,945,942,941,932,946,939,942,956,953,962,941,965,965,958,949,881,872,880,881,866,886,883,889,874,876,864,867,892,880,986,974,980,990,983,980,977,954,962,967,983,985,995,945,985,960,962,860,866,862,861,865,874,864,866,858,874,872,866,1114,1075,1086,1085,1092,1103,1088,1083,1110,905,922,909,903,902,909,911,907,908,905,914,907,891,914,901,920,915,908,1040,1034,1035,1032,1036,1035,922,923,921,931,918,914,913,910,917,925,909,905,916,828,822,839,832,827,831,832,825,762,748,752,751,764,765,756,753,760,744,764,759,762,755,757,766,773,758,759,763,764,756,760,601,610,600,604,606,605,602,588,592,600,601,591,606,598,593,603,611,992,996,990,1000,997,996,999,987,986,990,1000,991,1002,968,942,951,960,959,950,951,963,964,972,981,980,985,970,973,976,971,981,982,984,761,774,791,772,756,760,766,756,769,753,559,553,564,556,563,563,560,1030,1044,1060,1051,1007,1027,1064,917,918,943,945,922,935,938,950,953,962,946,941,931,596,591,615,596,595,581,601,605,599,596,613,592,525,528,515,513,526,512,525,508,523,535,515,515,516,592,600,594,601,603,601,613,621,597,597,595,599,640,626,633,637,645,625,639,634,632,632,633,644,627,995,986,985,977,987,998,969,991,991,992,987,949,967,969,976,961,964,966,948,971,958,961,965,956,845,825,816,822,814,822,815,828,839,817,839,581,569,567,575,577,569,571,575,557,555,596,616,601,609,602,607,610,612,600,599,607,596,602,601,610,596,601,946,956,961,949,961,950,789,790,802,780,780,803,781,794,781,789,783,788,788,782,790,782,792,786,785,583,589,589,598,601,581,588,593,591,585,580,594,595,602,586,597,589,591,856,859,891,911,883,899,873,895,885,886,879,880,917,941,913,919,927,937,913,929,934,927,918,922,924,926,937,923,927,929,792,776,787,809,830,784,807,797,620,625,619,614,612,619,620,623,615,631,620,613,618,622,612,628,628,605,611,614,893,902,900,900,892,898,904,899,903,880,920,937,937,924,931,921,926,922,941,921,931,942,996,992,1008,994,1002,1001,1019,997,1002,1001,999,994,998,846,851,856,850,842,855,849,846,861,843,917,941,939,945,924,932,936,930,922,937,928,936,934,916,924,918,894,902,904,913,911,905,923,908,909,906,907,914,917,646,640,677,645,651,662,663,637,652,662,584,596,607,599,596,601,586,605,601,612,602,601,1047,1044,1052,1057,1039,1061,1027,1037,1030,1042,1047,1048,1070,1063,1032,914,917,894,900,899,895,887,897,902,902,881,885,912,1086,1094,1065,1078,1104,1088,1086,1088,1102,1085,1091,1075,1080,1035,1029,1032,1045,1041,1036,1029,1039,1053,1033,1040,1031,1024,1011,1017,1020,1014,1021,1017,1013,1013,1011,1021,891,906,893,905,895,900,905,904,887,885,907,909,727,715,727,727,717,724,718,727,723,724,727,719,719,725,725,729,643,629,622,634,625,629,632,633,635,647,647,631,626,636,829,835,802,836,826,819,808,821,824,823,835,835,947,944,944,950,942,950,951,935,943,933,932,932,931,937,925,935,933,925,930,923,930,935,936,922,927,924,928,931,928,902,898,906,910,904,888,905,899,891,922,922,930,929,934,929,915,841,840,836,831,821,831,834,840,830,835,829,833,835,845,833,851,838,615,645,632,638,630,650,630,625,621,625,625,638,627,635,645,637,631,626,636,1144,1087,1112,1074,1090,1112,1116,1057,1085,1099,1111,1096,1108,956,924,917,937,925,944,1018,1019,1018,1020,1033,1025,1021,1018,1029,1024,1027,1021,1029,1024,1016,1031,1013,1024,807,799,816,845,844,833,827,814,833,827,809,833,825,848,594,587,584,587,587,587,593,571,579,576,585,585,1076,1057,1066,1078,1079,1065,1087,1090,1050,1081,1088,971,996,957,982,968,980,960,974,978,973,975,980,971,984,968,962,970,999,1003,1002,997,1010,1015,1009,1024,756,781,768,765,750,746,563,568,574,575,575,570,567,1068,1056,1065,1102,1097,1091,1070,1082,1098,1105,1071,1090,1083,1096,1069,978,976,993,989,973,974,980,965,979,986,980,995,982,988,827,820,816,829,813,829,811,821,836,836,945,951,936,945,947,937,940,931,947,845,845,846,857,848,847,838,837,850,841,844,857,836,842,852,864,838,846,597,599,592,592,964,946,961,966,937,946,976,950,975,955,974,965,966,973,949,948,963,959,941,958,966,959,698,691,688,707,684,716,700,699,712,713,699,697,709,706,707,689,704,1107,1094,1118,906,923,906,931,908,925,899,963,971,960,961,963,959,966,966,969,966,978,960,984,967,960,868,860,870,867,881,886,874,856,870,882,876,873,864,864,879,870,849,857,852,852,861,853,855,854,738,752,746,752,743,751,752,746,751,737,730,745,736,741,992,990,995,1002,986,995,989,1000,993,1005,1005,993,999,991,987,889,889,875,885,871,876,887,896,886,880,880,889,868,896,875,859,848,848,861,861,850,844,853,860,854,850,855,765,768,769,785,767,780,771,774,775,781,775,762,763,767,768,745,747,756,747,741,749,746,752,750,751,755,753,756,746,749,742,744,759,633,630,621,636,629,638,632,559,550,551,556,556,544,554,564,558,514,514,520,514,519,522,527,513,561,562,549,558,562,562,550,569,560,557,545,552,595,597,598,605,606,609,598,589,587,599,602,597,597,599,597,592,594,601,590,671,673,660,679,663,665,651,662,662,644,666,663,653,670,674,913,911,899,904,916,915,933,916,893,902,907,891,909,908,904,938,922,933,935,922,931,924,927,935,937,923,935,820,854,843,845,855,856,857,842,840,846,863,849,836,850,835,619,620,601,630,618,608,616,597,620,604,610,604,614,615,620,624,629,619,617,626,567,581,578,582,590,590,573,577,575,585,588,583,584,585,585,584,588,587,582,592,566,575,567,577,572,574,576,570,573,571,578,575,573,1032,999,1028,1043,1031,1022,1031,1058,1064,1034,1038,1063,1046,1049,1051,1025,1026,1029,1026,932,937,928,928,912,929,923,929,947,917,935,935,940,916,925,927,941,938,677,679,650,671,664,668,660,665,669,659,627,679,662,672,662,662,663,665,662,678,651,625,644,630,630,629,632,638,635,631,962,961,958,948,959,968,955,971,976,959,964,959,957,961,997,1006,990,974,993,999,996,995,999,991,993,992,1022,1006,987,879,863,882,884,878,890,888,880,892,898,906,1104,1096,1088,1077,1113,1096,1098,1114,1089,1084,1089,1114,1088,1097,1092,935,945,943,951,950,951,950,944,943,944,939,943,943,1061,1058,1070,1063,1051,1062,1043,904,879,888,890,873,874,885,883,873,611,607,611,618,606,608,611,610,602,614,608,620,613,617,614,1133,1099,1095,1124,1113,1100,1123,1123,1102,901,899,911,907,911,878,878,913,895,905,908,902,664,663,674,673,671,676,675,690,647,664,662,680,680,664,661,664,676,681,1155,1131,1128,1119,1160,1142,1128,1166,1167,984,1009,1008,996,998,990,987,981,981,976,872,864,882,865,876,885,876,872,872,880,993,993,994,1003,999,993,994,994,1005,992,1001,988,1008,995,905,894,890,896,900,901,901,905,880,899,897,892,597,621,589,605,603,599,609,512,511,513,504,514,503,511,526,530,515,505,506,520,522,507,520,525,526,521,641,632,638,638,647,649,645,638,628,681,682,687,685,674,686,694,684,691,676,691,690,688,892,892,902,902,896,929,919,898,914,905,906,908,901,894,729,709,723,722,707,713,725,705,709,709,880,915,897,904,910,908,902,913,896,910,891,892,905,905,901,831,843,858,847,846,862,845,840,831,852,839,838,845,847,852,842,589,600,607,602,617,596,605,588,610,588,619,605,604,600,608,593,609,610,596,610,599,610,552,554,556,555,563,553,559,564,556,563,936,945,939,904,921,726,716,716,729,730,723,736,738,741,711,730,735,707,727,717,731,705,718,727,896,876,889,890,598,608,611,612,610,588,612,613,605,597,607,609,603,606,600,604,939,902,909,899,929,950,914,900,925,927,885,914,853,845,861,848,840,859,849,856,846,850,853,848,870,851,862,597,607,621,604,600,599,610,608,612,613,623,604,611,603,614,607,597,602,640,637,636,654,645,657,643,648,651,639,643,657,650,661,652,657,662,659,652,652,649,647,655,1079,1099,1073,1093,1129,1101,1107,1088,1087,1113,1098,1081,1115,1085,1110,1067,1081,899,915,900,890,924,884,897,882,892,888,905,976,987,985,985,987,976,975,985,981,981,990,996,1001,997,987,987,983,982,873,865,845,871,862,861,864,847,622,627,626,629,626,618,630,624,637,637,625,615,629,633,631,1126,1142,1148,1167,1136,1141,1148,1125,1098,1141,1132,1146,881,870,877,899,887,884,872,882,888,906,885,910,606,610,607,604,613,611,599,619,588,614,619,624,612,587,609,593,624,612,976,974,992,992,950,963,964,957,967,952,964,956,963,961,954,962,976,960,955,970,872,865,869,868,871,862,859,858,857,864,869,860,688,707,674,692,674,670,677,695,674,680,703,691,677,696,581,581,589,578,574,587,581,584,592,586,577,571,584,582,566,576,988,1007,1006,1004,991,999,1005,998,997,1009,1006,1022,1014,1008,852,862,827,833,847,849,841,851,874,548,570,570,541,571,556,559,552,553,554,548,543,564,549,556,643,637,649,646,645,638,640,638,657,640,645,645,653,658,660,662,659,659,650,657,665,658,663,1023,991,1007,1021,1008,1014,995,1017,995,1017,1005,987,1007,996,655,665,665,677,690,676,675,646,671,677,653,671,641,657,649,656,658,885,875,913,884,891,899,871,898,877,871,890,882,886,902,871,887,828,813,821,831,810,811,837,831,814,790,811,820,825,796,829,818,565,547,535,543,547,528,547,529,540,545,550,543,556,555,559,550,563,568,561,566,554,564,553,563,551,564,562,558,562,549,564,563,563,558,560,598,588,594,593,584,589,600,598,594,607,582,593,1081,1087,1106,1110,1098,1092,1073,1102,1079,1084,1078,1098,1064,1100,1087,1067,947,946,944,942,933,904,929,943,921,938,929,925,920,933,813,843,840,827,842,848,843,842,836,849,836,847,855,842,833,838,840,871,870,866,871,870,866,866,873,866,859,861,861,858,870,972,958,975,962,956,968,962,966,969,977,963,977,961,963,971,955,961,864,861,871,883,871,867,857,869,854,858,869,874,888,879,873,876,885,881,885,886,882,766,747,749,751,742,733,753,738,753,742,742,750,746,746,763,760,728,932,948,956,949,942,950,938,966,947,959,944,948,951,959,968,970,967,970,962,965,975,960,968,976,969,975,979,977,967,976,969,969,969,831,825,831,835,820,817,837,839,805,820,839,827,827,824,606,624,613,618,615,619,612,616,628,629,1097,1108,1102,1112,1105,1087,1110,1109,1089,1079,1122,1110,1090,1083,923,947,939,923,951,962,947,948,952,958,1048,1058,1053,1059,1040,1053,1057,1052,1046,1043,1038,1049,1064,1040,1042,844,849,860,852,848,816,849,861,863,832,551,545,566,555,557,556,545,541,555,560,550,559,546,565,598,596,598,593,611,611,621,595,614,603,602,593,603,611,623,611,1046,1057,1044,1031,1056,1054,1054,1062,1045,1044,1041,1056,1036,1040,1060,1066,1034,1065,1044,1022,1044,1030,1039,1030,1028,1035,1029,1024,1035,1036,1040,1049,1031,1055,1031,1036,1042,850,862,843,847,832,833,844,842,841,844,835,846,858,828,996,1027,1014,1002,999,998,1011,1003,908,912,926,930,926,911,937,933,926,929,917,620,622,609,624,611,600,581,610,617,591,622,618,617,604,680,676,691,669,692,676,684,673,685,676,668,669,678,685,598,597,608,593,601,600,609,603,602,606,610,599,601,606,611,605,602,607,608,956,972,958,960,976,961,970,952,971,967,955,973,932,922,931,923,932,935,920,925,915,926,934,936,939,935,929,937,923,938,932,940,934,937,952,946,939,946,943,1043,1045,1044,1025,1037,1040,1036,886,876,862,879,879,887,879,877,883,865,865,873,1002,998,997,983,983,1010,991,1011,1032,1025,1015,962,1005,1009,1004,992,1017,956,935,951,932,940,932,931,932,954,958,919,930,936,932,942,936,926,927,931,938,939,940,928,937,933,933,932,961,967,957,959,950,964,957,948,957,968,968,969,964,959,960,952,958,956,958,958,957,952,972,836,824,833,838,816,846,837,846,833,831,838,845,833,616,612,610,599,611,606,605,614,618,590,616,608,1014,1027,1013,1053,1036,1025,1033,1029,1041,1042,852,834,829,806,809,803,821,812,841,825,832,833,820,829,820,603,602,596,590,603,594,622,608,595,603,987,999,994,988,987,998,984,730,724,714,704,701,725,709,718,703,1047,1046,1024,1044,1046,1026,1022,1041,1037,899,891,890,886,885,883,897,910,894,885,902,888,883,897,889,887,884,895,889,895,633,644,633,656,624,630,645,653,651,650,647,621,620,627,613,637,633,636,632,634,856,846,858,867,860,850,845,868,865,873,871,877,880,865,868,870,976,959,968,963,967,965,967,967,969,955,965,978,963,967,962,904,902,910,910,899,899,899,902,914,907,792,787,784,783,775,781,793,788,797,776,770,783,628,622,618,615,625,604,622,620,626,1071,1070,1043,1050,1029,1074,1065,1031,1081,1066,1032,1048,932,946,940,931,932,928,919,930,942,921,738,728,718,728,740,726,729,736,604,596,595,593,590,580,595,608,598,591,592,597,594,593,591,605,594,613,594,586,596,531,523,526,527,524,522,532,537,530,531,531,535,531,535,520,528,542,547,543,550,547,553,549,543,1101,1082,1063,1079,1072,1101,1120,1110,1056,1126,1058,913,903,928,907,921,912,930,937,934,925,937,917,918,618,610,612,613,619,620,610,624,604,615,610,615,605,620,618,572,578,584,586,592,589,592,588,592,583,585,595,584,598,579,592,594,579,587,892,963,963,951,961,962,959,955,950,956,950,970,862,873,883,870,872,861,866,885,882,845,864,873,868,594,575,581,574,546,573,565,573,582,580,581,569,604,561,598,591,580,579,582,578,581,576,577,570,581,588,570,919,936,911,898,927,920,923,905,930,744,771,752,780,776,769,765,765,760,772,773,779,590,593,594,601,598,605,587,593,591,599,590,587,600,596,596,590,560,551,556,557,551,539,549,551,558,554,558,547,557,558,548,550,559,563,564,580,575,582,573,570,561,579,587,564,573,568,577,577,570,580,587,920,904,896,904,894,900,908,905,912,913,915,922,894,909,903,906,1039,1039,1029,1027,1035,1023,1024,1032,1025,1042,1031,1028,1036,889,888,872,876,883,881,897,880,873,889,913,900,834,886,861,864,860,902,869,862,850,924,928,948,929,943,930,939,950,950,939,941,945,944,933,927,875,866,890,875,895,869,890,882,879,876,879,886,1036,1040,1039,1026,1037,1037,1031,1036,1040,1042,1046,1042,1030,1027,918,925,940,931,927,926,926,913,936,923,936,929,774,777,762,789,779,767,777,764,764,777,764,603,607,613,609,607,621,604,606,613,598,600,610,608,610,1076,1070,1070,1088,1076,1072,1105,1039,1063,1070,1075,1075,1109,911,881,891,897,906,901,915,905,885,899,915,898,1119,1114,1144,1125,1106,1117,1129,1115,1117,1128,1108,1145,1121,1129,1114,1133,1121,1125,1120,1118,1120,1124,1120,1122,956,950,960,947,956,941,932,956,955,954,948,968,976,972,973,978,973,975,970,969,965,966,983,980,975,978,974,971,983,970,968,976,967,837,842,829,834,852,815,828,839,828,835,843,831,829,827,830,827,836,831,837,606,607,615,607,594,605,610,606,600,604,601,619,1016,987,995,982,992,999,1004,1024,997,999,1010,1031,1027,1018,1020,1034,1028,1046,1046,1030,1034,1017,1037,1027,1050,1032,1042,854,841,834,852,836,836,840,827,818,848,556,548,551,538,543,553,568,565,555,539,549,924,899,909,914,925,898,919,929,932,930,917,908,912,924,687,683,696,703,686,694,693,705,690,697,696,714,701,686,692,684,696,700,686,703,695,687,689,1128,1086,1103,1126,1092,1115,1118,1120,927,907,922,920,915,921,913,912,909,917,916,929,916,929,934,916,929,912,928,924,987,994,978,978,970,980,993,982,991,970,984,985,992,986,977,883,881,899,893,896,891,887,886,878,904,882,893,741,733,743,743,737,741,738,743,726,734,733,643,637,647,809,800,818,828,808,829,801,795,825,823,814,798,801,826,817,801,608,620,615,626,606,591,600,582,586,583,585,585,600,589,900,903,896,913,909,903,896,928,908,901,903,913,921,907,902,914,897,933,906,921,921,928,908,925,932,936,940,925,925,917,918,940,926,977,975,970,894,891,901,906,905,898,889,893,901,902,889,894,890,796,819,816,816,804,807,817,815,809,812,630,631,640,634,648,625,648,635,644,629,625,640,1115,1093,1067,1083,1075,1069,1099,1075,1058,1094,921,882,901,886,903,881,910,893,882,867,894,1055,1060,1054,1061,1048,1038,1048,1051,1054,918,923,898,927,912,912,919,919,904,919,917,919,585,584,571,583,604,592,567,586,577,566,585,563,576,610,636,616,627,631,606,612,602,619,622,609,616,621,629,716,721,726,712,700,716,732,707,717,710,718,651,650,651,653,660,669,668,658,653,662,661,651,660,660,1078,1054,1070,1105,1085,1065,1054,1074,1086,1066,1075,1101,1074,1084,1010,1006,1016,1007,1023,1005,1016,1012,1016,803,783,804,804,790,809,646,644,641,646,639,645,629,638,648,624,1169,1213,1209,1227,1223,1197,1175,1174,1202,1200,1186,1216,1196,1201,1211,1149,987,998,1003,992,999,1008,1008,990,1005,1002,983,966,938,935,920,926,900,924,927,914,933,926,958,959,952,956,947,942,954,954,959,955,954,949,953,874,879,855,870,877,853,859,872,875,862,873,865,865,1019,1028,1020,1024,855,865,870,880,863,869,838,841,846,860,871,859,861,848,858,858,869,842,864,995,995,997,987,993,990,997,993,984,993,995,989,984,845,858,869,866,863,869,862,864,872,856,870,863,867,848,847,855,842,837,838,859,838,1046,1053,1052,1052,1058,1043,1065,1055,1052,1057,1049,1046,1060,1056,1056,1061,901,892,906,906,904,899,896,906,913,890,893,905,883,904,945,943,913,935,937,942,929,952,955,939,948,968,946,955,938,947,946,943,966,981,978,980,974,979,980,971,967,972,987,977,975,974,978,978,977,970,976,876,877,867,865,879,871,876,868,870,861,855,873,864,1033,1034,1014,1028,1026,1039,1036,1045,1040,1037,1047,1030,1033,1049,1028,1029,836,852,835,841,837,820,824,828,812,847,841,585,579,589,586,585,595,603,596,588,590,594,600,652,646,652,634,645,629,659,646,632,625,642,644,623,639,651,638,642,994,1001,997,1002,989,1001,982,992,986,983,995,995,763,740,755,762,768,755,762,750,767,755,762,745,751,749,766,748,800,808,793,811,804,798,806,816,803,795,813,800,802,677,707,685,702,699,696,697,697,690,700,713,708,906,886,874,890,877,895,890,894,940,943,944,946,939,946,958,951,951,953,941,935,950,952,787,797,793,793,776,784,788,778,771,776,775,785,578,572,577,567,572,559,571,571,569,555,584,572,1090,1090,1079,1109,1080,1071,1077,1092,1070,1081,1087,1069,1076,1070,943,927,909,931,926,935,935,924,934,935,922,935,934,640,631,649,657,645,656,628,643,640,633,645,635,629,650,656,974,988,990,995,967,987,977,951,981,981,983,988,973,987,988,988,976,991,960,980,980,1005,892,890,897,892,898,890,896,892,892,892,888,884,897,904,876,883,896,884,896,881,893,886,892,717,711,712,715,729,707,725,719,722,723,989,993,981,990,993,982,971,1002,999,983,984,977,851,858,859,858,862,854,855,863,854,853,856,631,639,649,612,639,626,642,638,637,651,639,634,638,645,640,647,824,840,815,832,841,833,821,836,843,826,822,833,836,831,830,943,940,943,954,931,954,946,937,956,968,972,958,968,961,963,979,959,964,957,960,970,968,962,961,815,834,823,820,811,827,823,822,825,943,957,952,948,947,956,825,840,826,840,835,841,850,831,846,840,961,972,975,978,976,960,976,980,975,976,964,867,868,884,867,861,880,862,869,861,856,874,599,604,606,608,594,600,594,616,588,585,600,596,590,603,614,606,622,580,584,594,526,517,517,525,527,530,529,530,539,512,530,528,517,534,514,577,588,569,572,583,576,582,563,576,570,574,576,569,577,575,582,606,610,601,601,600,606,605,614,601,609,607,590,601,596,614,546,540,556,557,539,553,550,550,547,543,545,547,552,546,552,552,537,540,537,535,539,529,538,540,536,546,539,544,536,543,559,542,550,547,556,554,558,552,536,540,553,541,548,558,542,628,603,603,592,595,591,581,590,590,595,574,594,578,605,638,606,589,636,597,590,565,568,569,574,572,572,576,571,575,573,578,577,569,576,627,621,610,612,615,611,601,603,608,608,607,604,601,605,607,608,595,1056,1097,1111,1064,1072,1090,1086,1056,1079,1092,1089,970,937,953,958,968,951,963,957,969,947,962,953,960,952,956,972,943,943,946,944,958,948,957,946,963,950,948,948,961,963,949,799,816,817,828,818,804,829,827,808,824,834,825,815,814,831,823,812,823,914,928,924,951,926,950,923,901,924,925,1006,1008,1019,1011,1025,1004,1010,1019,1027,1016,1015,1017,1029,1014,1018,1012,1002,1007,806,818,814,810,811,824,796,782,808,810,794,806,592,604,596,609,606,594,595,599,588,597,610,600,645,642,655,645,639,652,653,637,651,647,636,638,642,649,645,635,635,603,610,602,610,605,601,608,614,595,612,603,996,1009,992,1004,979,1017,995,1003,991,985,1005,1024,992,980,997,982,991,966,981,1003,984,886,870,867,870,866,870,887,864,867,882,857,866,866,864,866,995,996,988,992,990,988,1008,995,998,1000,989,997,994,992,999,895,905,900,898,906,903,897,883,907,915,897,619,611,624,647,614,625,617,612,622,597,608,599,631,608,621,523,533,536,542,526,537,547,536,539,534,534,530,602,594,596,596,732,736,717,731,718,726,725,621,621,625,624,617,630,619,628,628,622,628,623,621,622,620,624,983,985,970,987,974,989,995,985,988,987,982,854,843,835,826,844,831,828,826,831,560,571,561,566,579,550,557,581,578,566,569,559,571,575,569,552,573,576,575,1202,1218,1190,1191,1185,1199,1181,1147,1184,1198,1221,956,992,992,974,978,976,959,994,980,967,963,985,976,974,684,660,667,663,661,677,952,943,955,948,941,944,942,947,942,942,939,948,953,945,944,934,936,939,924,930,926,925,920,924,939,918,939,931,920,925,930,926,916,921,921,934,926,920,928,932,925,927,933,923,926,927,940,930,939,931,812,816,805,815,806,810,804,804,814,802,799,818,635,619,633,629,645,638,635,626,629,793,780,761,768,777,779,797,782,767,771,783,785,765,758,760,767,761,769,760,776,760,763,778,759,766,774,769,613,618,609,621,614,613,604,615,621,609,608,617,619,612,606,626,617,614,1040,1071,1042,1020,1048,1059,1048,1060,1055,1050,884,879,869,867,887,879,863,890,873,967,955,971,958,962,966,955,945,950,972,883,878,859,869,663,657,664,678,660,672,679,665,670,667,682,594,604,595,602,593,609,604,1059,1050,1040,1067,1066,1047,1036,1034,1034,1074,925,944,928,924,910,936,917,927,925,928,908,909,919,923,925,913,929,917,920,562,551,581,571,563,563,561,587,544,559,567,569,616,629,610,616,618,625,602,611,621,640,640,650,654,644,647,647,640,640,648,654,643,643,652,1214,1205,1221,1200,1207,1218,1224,1223,1207,1239,1195,1199,1218,1231,990,989,990,979,968,986,970,1001,987,977,1003,991,1003,991,990,993,1066,1054,1052,1058,1048,1055,1052,1042,1051,1049,1036,1056,862,884,895,887,871,880,872,891,872,865,887,881,887,897,882,887,583,592,593,591,594,584,596,593,589,594,1063,1050,1056,1053,1048,1004,1033,1049,1029,934,957,938,913,955,945,925,928,933,946,922,936,941,943,934,691,696,694,697,684,692,690,695,679,696,692,689,692,687,686,687,679,684,691,681,683,693,689,684,686,682,671,676,679,695,689,684,611,624,618,621,634,624,622,620,624,636,609,1019,1002,1017,1009,1018,1013,1004,993,1009,1028,1004,984,1019,996,1017,1020,1006,1006,1001,1006,975,970,966,978,963,972,968,982,977,974,970,982,979,872,871,871,878,871,865,864,855,858,858,854,875,882,871,868,856,928,939,941,938,934,931,928,933,944,935,852,860,857,843,843,845,862,866,851,852,860,867,849,856,851,858,632,632,627,642,637,615,652,633,639,636,1074,1034,1071,1054,1057,1067,1056,1058,1065,1046,1052,1051,1081,1053,1053,1062,1082,930,908,922,901,903,916,921,919,908,914,920,916,916,973,984,962,981,973,985,969,979,986,985,977,974,982,969,969,771,772,770,771,780,760,594,592,603,593,588,591,582,592,585,594,591,594,582,585,591,584,593,599,581,1180,1153,1155,1158,1205,1134,1170,1148,1143,1175,1175,1159,1144,1149,1162,1169,946,937,934,950,948,942,951,935,946,947,938,938,940,1046,1024,1041,1033,1034,1034,877,891,895,898,876,894,889,882,887,883,887,889,832,829,827,831,828,819,828,833,820,835,820,822,694,686,697,669,669,707,682,681,664,674,690,689,682,693,687,670,681,679,702,806,805,811,798,806,810,818,801,931,918,922,921,919,923,925,914,922,917,927,916,927,914,919,918,896,901,898,908,901,890,891,896,905,901,894,892,911,898,888,915,919,912,897,908,916,918,907,923,923,917,919,914,914,948,952,972,954,953,955,945,965,942,945,955,959,951,960,948,964,962,845,833,848,844,842,843,848,840,1028,1022,1048,1050,1042,1046,1031,1049,1029,1037,1054,1045,1045,1034,1045,890,857,878,863,876,873,877,887,877,885,634,644,651,655,669,659,653,645,660,644,648,665,663,662,659,857,852,844,867,862,848,848,857,728,715,719,724,713,724,715,728,721,735,712,720,727,728,707,741,961,974,961,969,976,960,973,966,969,957,967,840,842,836,842,844,841,835,850,840,835,957,956,950,950,946,950,946,951,954,954,961,960,965,949,951,951,959,834,833,833,838,824,838,839,832,840,826,836,835,938,940,932,917,929,924,933,961,940,932,931,937,959,954,947,963,953,949,960,967,961,951,947,954,805,804,806,810,812,807,813,826,802,826,791,798,818,814,815,594,595,597,592,594,596,597,595,589,595,597,601,597,595,587,551,551,552,551,554,556,549,557,541,556,551,556,551,557,601,610,596,603,594,600,600,609,605,600,597,607,596,584,574,578,584,579,585,573,584,572,579,1035,1027,1018,1037,1029,1021,1010,1011,1002,1025,1013,1020,1027,1038,1006,990,978,971,989,979,964,977,989,983,989,985,981,858,841,847,842,825,854,839,839,830,836,816,836,839,855,835,835,889,910,896,907,907,904,913,917,903,894,845,840,831,851,837,840,848,842,1025,1018,1006,1006,1020,1020,1019,1031,1023,1024,1023,1023,918,916,912,930,930,916,921,885,882,884,888,885,889,884,890,881,883,884,880,880,880,883,882,736,736,738,748,734,731,726,734,735,720,747,728,931,942,945,934,922,936,941,934,954,943,926,934,837,838,836,836,848,838,837,829,842,834,850,821,849,837,842,839,837,842,610,610,621,610,604,616,610,619,613,611,609,969,977,998,997,956,973,978,972,969,973,966,965,955,961,1016,1009,1024,1022,1017,1010,1010,1024,1035,1026,1024,1019,1046,1013,891,890,902,891,871,901,882,897,886,890,883,886,885,903,1075,1080,1085,918,931,920,912,929,927,923,915,921,929,926,946,923,922,926,1033,1037,1034,1029,1040,1042,1044,1026,1052,853,844,869,860,866,847,846,872,864,860,823,863,847,859,853,847,842,845,858,858,845,648,648,648,664,644,652,629,643,641,655,637,634,624,628,634,633,624,632,646,628,633,620,621,634,619,626,624,627,619,1050,1045,1044,1063,1062,1038,1051,1038,1060,1061,1056,1062,1048,1041,1023,1038,1041,1029,1036,1016,1045,1034,1040,1039,1033,1033,1043,1041,1021,865,869,865,890,872,860,878,881,864,985,997,991,997,994,999,1010,995,996,998,999,987,995,990,975,1001,994,1006,1002,933,936,924,925,922,924,913,917,942,921,934,929,739,727,740,736,736,734,726,739,732,635,615,637,617,638,635,630,624,632,638,630,623,633,627,570,574,569,570,574,569,568,548,563,571,568,563,571,575,570,575,577,570,572,570,569,570,571,568,592,593,592,1079,1075,1107,1077,1089,1068,1074,1066,1075,1088,1055,1072,953,959,956,957,945,924,951,950,955,949,936,964,952,928,939,950,952,979,963,950,966,953,956,653,643,654,658,660,666,662,648,645,637,559,597,579,577,584,579,578,566,597,571,569,554,561,559,567,558,571,556,875,863,842,851,849,830,834,849,857,763,747,759,755,763,766,765,761,587,589,598,612,601,603,595,592,604,589,569,578,580,575,572,580,583,584,578,585,579,574,1067,1030,1088,1036,1059,1052,1021,1064,1054,1043,1070,1058,1024,1052,1026,1039,1046,1027,1051,1050,866,879,880,900,885,871,890,880,869,892,867,880,919,931,910,906,912,916,943,934,918,921,925,945,909,915,922,893,900,902,898,903,900,892,903,904,900,895,900,897,890,906,916,905,908,905,904,908,911,906,900,915,894,908,901,805,820,826,822,809,797,814,794,818,804,825,806,1045,1045,1039,1047,1037,1043,1046,1040,1047,1031,1062,1047,1041,1050,1044,1022,1040,1055,961,954,941,934,936,944,944,932,939,937,931,943,642,660,649,656,659,668,657,661,659,651,653,672,657,564,570,558,562,567,557,562,565,566,557,560,567,569,548,552,543,546,541,554,550,554,550,555,546,549,550,540,551,617,620,598,611,600,602,613,605,615,610,607,607,607,617,619,609,608,616,609,940,961,948,937,960,926,944,947,929,927,931,930,938,940,936,958,828,831,825,820,802,830,837,834,829,818,832,666,681,671,681,664,673,670,666,582,584,601,594,601,583,593,590,590,586,587,764,773,783,779,788,774,778,766,760,794,763,770,664,667,656,663,658,666,671,656,666,657,648,600,602,598,600,602,614,603,598,597,599,601,605,674,677,668,669,676,666,678,665,668,669,1024,1070,1012,1087,1042,1038,1063,1037,1051,1030,1052,1039,1041,1038,1052,1028,1039,925,948,942,947,940,928,932,933,946,576,578,551,547,587,576,569,571,566,584,575,543,565,573,560,637,627,616,618,614,633,611,618,638,613,628,624,619,624,633,629,620,612,611,624,634,613,606,601,611,603,604,601,607,606,610,603,607,1221,1171,1182,1192,1194,1159,1188,1218,1223,979,965,971,960,987,962,995,644,646,647,663,631,648,636,638,949,930,937,947,933,953,928,941,928,936,954,941,923,931,894,909,899,911,905,903,898,911,904,904,925,901,909,905,901,902,917,903,954,962,948,953,967,962,951,969,969,955,961,965,954,949,962,956,963,956,957,875,875,854,876,860,854,872,882,878,867,860,875,854,860,871,871,869,869,867,862,883,594,605,600,601,596,606,600,585,608,630,596,611,555,544,559,551,552,554,556,558,551,550,1068,1088,1098,1095,1075,1093,1073,1125,1092,1084,1099,1080,1101,894,865,890,901,919,900,891,863,896,913,873,883,859,556,563,562,540,558,535,556,558,539,550,562,560,545,564,559,556,547,549,558,561,551,571,548,557,561,567,570,563,564,560,559,558,568,558,563,567,567,563,559,571,1092,1073,1089,1090,1105,1070,1093,1079,1083,1079,1113,1085,1082,926,944,932,936,928,930,952,936,942,936,943,946,944,868,852,850,869,835,851,848,864,837,853,833,844,839,886,889,878,887,878,881,867,879,873,881,872,876,878,873,876,871,881,885,879,877,801,807,806,804,815,818,817,814,837,802,803,805,811,819,807,811,795,798,820,810,807,815,818,805,812,818,945,947,936,963,968,955,937,940,957,956,946,959,929,934,942,957,967,945,992,978,993,979,992,983,982,987,996,989,990,984,999,991,987,998,996,889,889,891,889,883,890,895,894,647,640,646,653,656,640,643,664,646,643,643,648,650,642,647,646,655,656,660,659,658,655,664,667,649,664,655,655,670,665,645,657,627,614,606,607,609,606,605,611,605,602,608,603,1090,1121,1092,1083,1103,1063,1085,1117,1107,1097,911,887,911,903,908,881,892,895,906,915,902,892,898,913,911,966,955,960,991,936,952,969,948,960,957,970,978,979,966,980,974,965,974,976,964,980,981,980,965,974,966,983,973,982,972,960,965,969,972,971,973,965,968,970,963,977,1026,1029,1016,1006,1014,1012,1022,1017,1027,1024,1019,1039,1022,1011,1020,1022,1029,844,853,829,860,837,845,830,841,834,836,850,857,599,583,574,592,529,544,537,545,539,539,611,616,612,625,607,598,611,607,597,609,618,620,624,619,615,607,621,607,624,608,610,607,611,615,610,599,624,626,607,614,610,614,606,597,558,563,559,561,554,562,566,559,559,567,557,562,556,564,556,560,574,558,559,553,569,617,569,604,574,608,592,606,597,597,602,584,604,600,599,594,586,610,594,590,595,607,594,595,594,594,559,550,545,552,543,542,548,551,552,544,545,553,552,549,547,542,552,550,541,637,645,643,629,639,642,650,638,637,610,617,623,617,614,613,621,625,623,619,618,614,622,619,618,620,616,611,619,1055,1040,1019,1034,1019,1021,1011,1014,1013,1004,1022,1027,1013,1023,1032,912,924,926,920,927,945,916,923,919,909,587,589,606,589,589,610,609,606,604,612,591,596,596,598,614,608,599,624,648,637,647,649,645,640,598,595,596,599,597,603,599,583,598,601,597,592,592,593,598,607,1063,1076,1072,1077,1087,1092,1056,1088,1065,1082,1064,844,860,854,860,849,847,849,850,857,848,843,856,846,603,620,612,619,611,619,635,627,637,609,620,624,630,619,610,901,906,888,876,901,889,907,910,904,918,769,788,779,783,790,779,785,786,781,791,793,778,780,781,779,782,776,772,782,794,600,613,617,598,610,593,610,602,612,937,934,944,926,919,910,917,932,946,909,919,931,920,929,932,932,943,928,930,920,937,933,919,930,936,852,839,832,823,841,825,831,835,837,840,841,830,1041,1048,1056,1049,1062,1042,1045,1053,1046,1050,945,939,940,945,950,935,941,935,940,936,933,890,900,894,892,878,897,881,898,891,893,887,890,882,886,886,887,894,675,697,689,659,659,785,807,795,764,789,801,778,780,789,1009,998,1013,1009,988,1007,1003,999,1012,995,1010,1003,1010,984,992,990,1012,896,905,899,897,894,900,897,900,897,898,907,889,1058,1048,1049,1057,1049,1044,1054,1041,1046,1041,1061,1052,1061,1065,1059,822,843,835,838,830,833,841,841,827,829,839,600,616,609,609,609,601,611,612,594,609,628,908,926,905,922,703,689,711,711,699,705,693,703,703,692,701,703,702,698,713,627,610,632,615,628,637,628,614,614,619,621,615,625,625,608,871,873,893,865,872,871,871,871,867,887,871,869,868,876,879,871,861,846,873,651,667,668,674,673,660,675,667,675,665,674,678,669,686,664,664,655,650,666,669,1002,1020,1004,1005,1024,1017,1010,1005,903,910,921,904,908,906,905,904,927,911,911,911,903,681,669,658,665,664,678,654,661,663,660,658,665,673,658,588,590,600,587,594,590,602,596,590,601,584,595,599,590,1042,1023,1037,1033,1044,1010,1047,1035,884,844,860,894,885,861,899,870,890,884,551,542,559,536,540,550,562,544,546,551,652,658,659,675,658,669,660,662,672,667,656,656,665,659,647,660,651,648,646,653,660,658,658,659,653,658,661,664,657,648,649,586,577,588,582,577,583,611,610,613,621,602,615,615,610,612,610,618,592,581,586,578,595,586,570,588,584,576,578,578,884,841,897,883,867,721,716,724,704,712,706,699,702,709,709,567,550,557,552,552,541,536,544,548,536,551,563,536,553,551,498,493,492,485,491,488,495,492,548,569,558,563,570,571,557,556,557,563,559,563,626,648,635,640,630,618,627,633,639,627,633,637,644,635,626,627,631,649,641,633,958,968,952,983,960,968,987,951,957,955,952,960,997,993,1004,1010,1011,1007,1004,996,1006,999,1012,1010,1002,987,1002,1015,918,899,880,887,903,893,892,892,903,904,901,904,913,915,897,909,924,902,907,903,897,878,856,869,860,866,852,856,858,862,872,873,862,866,669,671,662,681,677,664,679,676,667,662,897,898,888,903,911,888,906,881,899,887,898,1021,1037,1027,1027,1031,1016,1025,1020,1022,1029,1028,1025,1031,1008,1016,1018,1017,1028,1023,908,907,898,895,906,909,902,904,919,905,602,601,607,610,612,593,618,611,606,619,611,615,611,622,613,593,604,617,629,610,621,608,868,870,861,859,879,862,844,871,852,697,701,717,703,688,700,699,703,716,851,853,841,845,840,851,852,836,864,855,841,846,840,852,868,856,844,848,832,1021,1015,1022,1018,1024,1019,1022,1010,1017,1013,964,962,966,960,972,959,959,971,965,960,960,966,974,960,970,965,985,993,1002,1010,993,993,988,1002,866,854,870,864,882,888,887,885,867,870,570,581,578,595,570,584,577,571,562,567,576,574,575,567,581,574,570,583,570,589,580,580,582,575,582,576,593,598,597,602,615,607,608,611,664,675,662,664,663,672,659,667,669,658,660,625,625,623,624,629,622,625,626,617,618,625,1100,1100,1110,1106,1144,1090,1105,1102,1105,1114,930,910,922,914,914,920,903,923,914,925,922,997,988,989,990,985,984,982,976,988,988,984,853,850,846,853,842,833,840,852,836,851,850,844,841,850,833,839,834,848,608,607,602,595,594,620,621,598,627,597,616,602,610,596,613,1042,1052,1005,1006,1031,1051,1034,1020,1046,875,891,859,866,877,906,883,872,875,868,886,1034,1041,1039,1035,1038,1035,1037,1034,1034,1029,1042,919,928,920,909,912,907,910,914,922,911,913,924,922,911,908,920,921,930,909,920,847,842,836,837,844,834,851,843,845,845,836,842,851,839,845,845,823,755,760,745,770,749,756,742,756,755,763,763,761,757,773,765,749,600,603,602,610,597,612,603,607,612,612,602,604,617,608,598,587,596,598,588,581,588,586,589,594,595,587,586,594,582,598,590,594,592,599,598,594,588,589,594,597,586,822,808,843,829,829,818,825,805,820,818,822,813,682,691,678,683,683,672,682,685,687,675,678,681,648,645,652,647,651,645,644,647,648,641,651,644,648,644,647,902,943,907,924,910,935,922,938,948,916,946,950,935,955,931,949,938,943,943,947,933,943,974,975,979,971,985,963,973,968,974,980,968,977,823,826,820,816,826,831,816,805,822,826,809,834,957,939,956,955,929,936,948,917,961,935,934,923,937,941,939,927,925,935,936,950,948,942,959,939,967,973,980,965,988,964,973,982,974,963,905,880,888,885,869,884,889,888,896,881,881,878,882,887,894,722,714,731,727,714,713,719,723,722,731,725,719,596,589,593,595,606,599,596,590,589,608,609,592,605,596,545,540,544,537,530,541,536,546,530,536,542,535,528,534,531,573,588,576,582,569,583,580,578,1016,1011,987,1006,999,1017,1001,1028,1001,1018,1012,1037,1017,997,953,957,947,951,940,944,952,936,933,946,915,914,923,918,926,925,912,912,916,923,938,927,938,811,800,790,797,786,789,787,798,799,795,794,794,605,598,597,598,607,601,597,597,595,653,639,653,642,638,651,643,918,904,916,904,912,909,900,902,903,891,897,916,784,781,785,788,790,790,796,780,773,797,783,776,772,771,786,621,611,620,609,607,613,606,621,621,620,612,608,607,607,610,611,630,623,600,1147,1099,1106,1095,1098,1105,1095,1100,984,980,972,986,1003,980,998,1081,1084,1085,1091,1089,1081,1079,1095,1096,1096,1096,1097,1072,1076,1090,1100,1086,1078,1071,888,899,882,890,890,884,879,900,895,889,885,889,883,913,904,895,900,911,894,904,898,910,919,919,910,956,972,962,961,969,961,959,956,962,851,854,843,854,855,855,857,858,845,860,858,850,862,942,951,946,952,960,948,938,950,948,948,943,939,943,940,952,948,644,651,644,631,656,639,644,660,640,653,635,649,635,632,643,645,1082,1077,1063,1060,1064,1074,1073,1074,1044,1044,1056,1071,1064,1062,896,654,663,654,651,663,661,654,643,658,648,657,862,842,856,851,832,844,847,839,855,829,856,853,848,750,729,740,747,743,737,749,753,738,740,739,753,742,749,618,619,617,625,636,617,622,623,617,615,608,615,609,605,620,619,597,600,608,611,608,603,615,639,628,620,627,628,626,625,628,635,630,628,638,623,634,626,631,626,645,1048,1060,1099,1092,1069,1077,1090,1069,1096,1064,1095,1054,920,916,910,909,915,913,928,914,912,912,592,598,582,581,588,590,604,619,588,871,881,904,859,892,905,887,885,894,904,891,684,674,669,674,684,670,682,675,675,676,678,684,680,684,1043,1062,1062,1030,1042,1033,1050,1043,1043,1036,1049,1033,1024,1046,1082,1053,1041,1055,1068,1150,1144,1144,1133,1145,1158,1144,1148,1142,1151,1149,1163,1144,1144,1157,1151,931,930,926,932,937,932,930,929,918,904,932,933,995,1000,1000,996,1005,1014,1009,1014,1013,1013,816,819,828,808,818,837,832,815,819,816,810,822,798,804,590,606,618,596,589,595,607,928,924,914,920,943,921,932,929,934,904,916,917,918,920,930,925,676,676,679,680,693,691,686,676,696,675,695,683,685,681,677,676,570,571,580,567,568,561,572,562,566,567,559,562,570,567,570,572,575,579,571,569,566,553,573,565,578,572,572,607,612,613,609,611,614,610,611,610,615,632,626,624,619,622,619,626,625,621,624,620,625,925,931,914,916,921,916,929,914,925,920,886,912,893,912,907,898,902,901,908,915,907,904,903,900,906,895,904,898,901,909,958,939,942,947,959,947,830,832,837,852,839,848,846,847,841,843,846,836,600,600,615,605,601,599,605,612,608,604,617,616,1000,994,993,1007,1001,991,1000,1002,999,987,993,997,956,960,951,947,953,955,944,948,943,953,974,967,983,974,970,985,982,978,836,822,824,830,840,833,829,833,834,847,840,830,622,624,624,629,612,626,614,626,630,631,569,580,579,580,573,580,574,575,573,1108,1100,1083,1098,1095,1093,1106,1139,930,905,930,936,944,925,937,952,921,935,920,930,926,930,925,929,926,611,601,606,592,596,624,610,605,602,613,610,618,608,604,954,934,939,933,938,931,925,937,931,929,939,943,958,959,948,922,937,940,933,944,937,931,819,817,817,831,831,820,843,830,828,822,827,658,654,664,651,649,666,656,645,653,657,648,654,655,648,651,642,650,653,652,1135,1142,1122,1123,1141,1164,1134,1113,1106,1110,923,926,936,919,933,922,922,922,921,916,922,926,924,934,930,955,920,913,925,995,993,1007,999,1004,997,1006,1004,992,994,999,1000,1000,997,999,857,849,866,876,870,869,857,855,849,865,868,871,949,929,952,974,958,949,939,931,977,942,982,1047,1025,1049,1041,1040,1045,1024,1041,1051,1035,1048,1036,1049,1053,828,838,832,826,833,842,840,823,840,847,821,835,835,839,828,831,844,572,578,575,582,591,570,565,579,583,575,576,581,584,578,574,577,588,574,586,572,578,585,1109,1122,1103,1105,1091,1110,1071,1068,1093,1099,1122,1105,1067,1113,1096,1098,1131,1109,946,662,657,669,661,672,652,653,670,665,669,655,665,666,660,656,668,663,672,660,664,655,667,658,657,661,669,663,662,654,663,661,664,653,671,1027,1012,1029,1020,1014,1045,1028,1019,1039,1039,1016,1012,862,871,889,877,876,880,880,873,890,876,877,867,898,867,884,560,566,541,565,559,563,567,570,564,575,557,578,581,573,560,565,582,931,940,941,942,956,947,957,982,959,964,963,961,944,956,741,725,747,735,743,745,760,734,723,729,754,740,741,747,846,850,858,859,857,842,848,844,838,853,847,843,855,841,855,851,848,835,993,981,985,998,991,995,1000,1007,986,986,1000,901,887,909,893,898,901,895,903,901,898,907,899,895,900,901,845,836,838,840,830,832,832,833,840,837,828,832,829,831,842,839,828,829,668,682,691,660,689,681,680,668,653,683,678,668,678,599,607,612,973,965,973,980,959,958,993,962,973,969,967,969,986,984,973,975,965,969,990,977,993,995,973,998,981,989,992,993,996,983,982,998,995,976,992,989,885,886,878,883,864,871,878,894,893,870,877,867,868,888,871,874,865,871,952,975,950,971,959,957,957,986,949,963,982,956,955,948,961,961,974,971,965,989,910,904,901,897,904,920,901,907,895,904,910,937,941,937,940,950,930,941,947,939,985,996,998,1001,986,993,999,995,983,991,994,997,999,855,842,853,842,856,861,847,863,853,843,848,865,868,865,873,865,856,858,849,835,843,843,840,847,830,825,850,977,988,1001,989,1015,991,999,1009,1004,1014,999,904,887,899,884,883,863,882,890,883,878,896,893,883,598,592,595,604,595,614,589,597,609,598,601,612,613,612,593,601,599,606,611,1030,1038,1052,1045,1048,1037,1049,1031,1053,1039,1046,1059,1047,1034,1031,901,913,1023,1035,1022,1017,1017,1025,1022,1013,1035,1017,1026,1023,802,788,790,799,783,779,773,763,780,799,777,788,776,762,766,576,566,576,577,563,559,569,571,564,574,572,586,575,573,571,569,569,572,562,581,565,583,586,596,597,595,593,598,590,588,595,593,582,598,675,680,671,684,678,684,674,651,639,640,639,647,648,639,643,645,653,648,651,641,641,645,639,647,644,647,646,643,645,955,962,968,959,922,956,946,940,957,946,951,962,953,844,828,807,820,831,822,816,831,818,826,828,828,837,822,831,521,518,549,544,551,532,526,531,528,526,528,542,543,533,550,570,572,570,585,576,573,564,578,575,575,575,586,584,585,574,601,611,608,617,603,607,612,615,1076,1091,1078,1057,1060,1095,1068,1093,1082,1065,861,874,868,874,866,868,871,873,870,863,863,874,852,876,860,859,862,869,867,866,864,883,870,875,866,868,869,876,869,882,863,870,875,873,885,863,878,881,874,810,810,837,842,823,842,842,825,831,626,612,610,614,623,620,869,874,886,869,878,891,887,875,877,698,718,708,697,701,709,691,691,705,710,696,717,704,715,711,702,692,714,711,696,705,810,800,807,808,818,825,803,807,786,785,782,783,781,779,782,792,787,781,780,784,779,786,770,632,637,624,621,620,623,634,624,617,614,617,619,621,1076,1049,1070,1039,1054,1059,1074,1070,1043,1054,1067,1066,1046,1080,1048,848,840,859,826,846,845,826,843,837,862,859,842,827,606,594,594,593,593,590,599,601,593,595,609,602,610,1094,1077,1084,1093,1108,1089,1098,1102,935,943,944,922,952,955,947,940,942,956,929,937,940,616,594,620,599,607,631,561,554,543,554,551,550,548,560,556,546,546,840,801,810,835,818,825,843,822,798,812,806,798,774,765,759,764,771,773,767,755,753,766,766,770,764,626,625,634,638,636,632,632,622,636,829,836,840,846,835,838,827,679,678,666,684,684,670,664,668,674,682,685,680,670,662,678,829,852,839,835,842,826,832,851,850,831,843,789,793,789,788,771,780,778,770,785,793,787,707,711,708,723,704,711,705,722,712,716,963,984,980,970,963,979,980,974,984,980,975,847,856,854,837,845,841,836,840,837,915,937,935,929,950,949,926,933,927,934,933,940,942,943,928,937,937,917,915,1026,1030,1041,1032,1030,1036,1004,1003,1031,1034,1033,1027,1033,1034,872,865,870,859,883,859,873,863,878,868,852,865,858,872,1008,997,1008,1019,1010,1011,1006,1014,1004,1001,862,858,856,854,873,862,854,872,845,862,869,1006,983,957,951,951,982,956,966,959,975,969,969,972,963,970,966,968,965,967,956,961,966,970,947,952,944,961,952,954,951,952,979,983,966,980,969,972,978,985,978,973,776,777,771,772,787,790,774,772,779,782,564,577,1094,1092,1077,1074,1065,1058,1076,1066,1062,1071,1090,1086,1049,949,953,937,950,937,944,956,932,962,948,959,936,951,940,940,941,940,944,945,902,896,895,902,891,899,904,915,908,909,896,906,906,891,903,899,889,768,771,764,776,759,763,750,763,767,695,696,698,686,692,698,707,920,918,928,933,924,911,925,919,923,916,931,955,948,956,958,963,965,944,954,956,950,952,955,953,953,967,944,953,812,806,817,805,832,804,825,810,1061,1068,1060,1073,1065,1070,1059,1069,1074,1065,1073,1057,913,911,921,926,919,908,918,923,912,915,922,916,919,927,961,955,987,982,984,1002,968,967,976,975,971,980,973,972,958,943,940,941,939,952,943,939,948,940,935,928,930,933,928,920,931,933,929,930,926,923,933,934,933,932,928,931,927,933,931,932,926,928,847,833,848,851,852,850,852,849,842,861,865,855,862,874,853,862,860,867,860,867,857,880,864,857,859,678,685,682,689,707,692,698,681,680,698,835,824,846,841,823,821,825,827,830,824,849,823,836,1032,1028,1035,1028,1024,1023,1039,1039,1028,1038,1036,1019,1032,1028,1031,1034,1029,1045,1040,913,896,909,898,912,902,893,896,1057,1051,1058,1054,1056,1060,1059,1062,1046,1045,1056,1056,1050,1058,1061,1042,1055,1050,1056,1042,1052,873,874,865,862,878,1032,1053,1032,1018,1041,1031,1044,1034,1043,905,911,908,879,907,918,887,899,914,899,909,916,907,646,642,986,1000,986,975,1004,983,978,989,969,961,961,954,965,967,960,968,967,976,955,958,967,957,965,978,960,971,831,850,834,838,832,834,831,851,845,518,507,517,504,516,506,506,497,515,508,573,582,585,589,578,586,578,582,575,676,681,671,682,670,668,662,672,674,667,669,678,676,666,680,683,682,673,676,951,964,945,940,961,943,945,945,952,949,954,959,934,992,1002,978,984,982,971,895,885,893,884,870,884,864,858,857,871,863,947,957,960,967,989,983,971,996,968,973,982,971,982,937,930,949,927,930,935,940,931,942,939,937,947,653,662,663,655,651,641,643,661,681,666,650,837,836,855,848,821,853,832,848,837,830,822,829,840,833,857,820,827,841,903,903,901,907,913,906,915,904,916,922,917,934,927,913,936,931,932,931,932,934,935,927,937,927,921,931,925,1088,1069,1069,1079,1092,1084,1078,1082,1067,1082,1072,896,887,883,884,859,880,880,870,884,640,628,640,619,953,963,943,956,960,983,952,977,955,952,929,943,936,939,938,929,940,942,943,925,937,942,940,922,932,948,932,936,935,930,963,964,969,967,971,964,959,958,956,970,973,967,969,879,887,869,870,873,877,868,882,880,876,877,866,880,866,863,735,743,735,751,737,735,741,745,752,748,727,746,734,739,734,740,742,736,745,634,645,638,635,640,643,649,635,643,643,637,644,635,884,859,853,856,864,878,867,872,851,857,854,658,660,661,663,664,655,664,658,662,674,647,667,661,668,664,802,820,815,809,801,800,808,809,806,814,803,657,650,637,658,647,656,663,642,657,658,645,656,579,590,585,585,578,589,581,587,585,588,587,600,580,593,584,590,553,561,567,557,556,557,559,566,571,560,858,853,878,860,861,842,854,874,863,857,853,857,843,846,845,861,853,857,690,704,696,700,703,703,712,702,698,716,707,700,702,669,661,681,670,663,676,672,677,680,681,671,605,606,600,609,602,603,607,598,602,611,603,605,593,605,872,908,904,859,871,890,901,881,879,889,882,886,896,893,894,885,894,884,878,878,645,665,659,643,653,673,659,645,653,656,664,649,665,663,667,662,675,659,660,652,664,1000,966,981,991,981,977,997,1025,1002,995,994,990,1015,998,974,997,1001,1059,1077,1064,1063,1062,1067,1070,1070,1066,1047,1060,1051,1074,1054,846,821,830,840,828,840,834,842,577,585,581,593,589,582,586,577,588,589,575,588,592,578,585,576,592,589,960,969,974,962,963,960,929,938,941,936,936,942,948,927,947,946,944,937,922,936,930,921,927,934,987,988,982,980,973,998,985,996,987,987,991,993,999,964,989,902,897,893,891,900,880,908,895,903,897,878,898,899,885,899,905,902,825,827,814,808,804,810,825,817,810,811,648,631,651,630,647,641,647,630,641,1123,1102,1095,1116,1095,1086,1074,1085,1087,1099,916,885,877,860,877,876,873,866,858,854,863,855,887,897,873,880,966,984,955,942,972,966,953,976,931,977,958,945,952,957,967,952,956,956,951,953,973,973,972,972,969,970,963,977,975,974,963,966,974,966,828,832,829,823,833,957,948,969,959,939,957,964,959,978,949,950,961,964,984,979,975,981,986,983,982,972,962,985,972,977,834,829,826,832,842,815,848,843,839,833,845,841,836,834,824,1025,1026,1033,1025,1029,1024,1029,1032,1033,1031,1028,1017,1014,1033,1018,1022,1019,1031,1021,1036,927,913,929,932,924,926,916,907,919,941,922,926,918,907,933,925,827,850,842,848,848,845,854,838,841,851,840,859,856,641,665,625,644,634,632,640,635,639,649,626,642,1115,1097,1115,1115,1115,1084,1121,1086,932,930,928,948,923,922,946,936,926,940,930,936,944,937,1076,1084,1092,1073,1071,1074,1067,1076,1067,1070,1073,1052,1066,1070,1081,1073,1089,939,953,949,949,958,951,939,941,935,944,956,949,934,937,954,937,955,960,945,766,761,780,773,778,765,782,771,779,778,757,773,763,763,770,784,764,631,634,628,641,621,625,616,623,602,619,605,616,628,618,622,626,622,621,617,612,621,614,609,619,618,628,613,691,709,709,705,701,717,697,696,688,705,697,702,680,701,975,965,962,978,973,955,970,975,961,970,960,957,961,971,979,950,696,672,672,676,664,697,668,673,929,910,909,915,914,927,913,915,918,924,914,916,921,915,911,941,944,937,928,929,925,920,939,944,947,916,943,918,936,939,937,930,934,967,975,961,977,971,973,962,954,962,976,962,976,826,843,829,853,839,836,830,834,837,845,855,846,839,847,839,943,946,943,944,951,955,939,955,936,937,864,862,862,857,870,862,864,858,638,623,628,627,638,640,631,629,785,792,790,788,787,787,792,796,792,791,791,601,593,618,611,625,608,612,597,601,546,543,539,547,548,543,533,613,600,612,607,613,607,611,603,607,615,612,609,608,610,615,594,610,611,603,1023,1016,1024,1003,1013,1032,1007,1019,1023,1026,1025,1015,1020,1022,1035,1042,986,1013,1009,995,1013,994,986,996,1004,1002,998,874,868,880,879,891,875,872,867,891,886,881,883,881,871,884,887,881,699,687,684,674,693,693,667,676,688,686,672,684,678,624,607,611,608,607,605,610,613,609,604,607,618,603,545,557,547,554,547,561,547,553,557,554,549,548,550,548,583,583,586,579,582,589,581,586,581,580,591,578,586,545,556,550,547,551,544,546,546,549,546,544,542,545,593,597,598,597,592,595,599,599,588,596,577,585,577,577,585,579,581,575,581,590,584,582,587,579,573,587,588,579,854,878,901,876,884,876,872,880,694,701,703,698,717,708,681,708,708,690,720,598,593,585,584,584,577,587,577,578,582,592,583,581,594,581,917,903,919,912,896,907,914,902,897,906,890,895,909,897,916,927,902,907,919,926,926,920,920,925,917,913,911,919,918,920,921,918,913,908,914,913,878,885,893,874,886,894,888,881,878,881,899,875,886,888,894,883,873,878,741,737,739,747,743,733,725,736,735,730,739,719,738,740,724,730,626,619,634,621,626,628,629,638,636,619,607,611,627,570,570,570,568,561,577,574,573,581,574,576,569,577,573,587,574,576,585,576,580,579,590,583,583,577,594,588,587,590,598,596,596,594,595,592,591,589,601,597,593,595,605,599,955,964,951,952,931,919,908,912,907,909,930,913,930,914,922,906,925,916,920,944,926,931,930,925,931,946,944,939,799,803,805,814,798,805,831,821,808,820,810,807,805,812,816,828,819,811,874,891,868,871,870,862,906,890,895,871,954,969,961,966,966,965,967,943,953,974,961,969,960,875,885,886,878,888,897,892,893,897,905,898,891,813,806,809,805,804,805,804,819,812,808,818,814,802,815,820,808,815,804,942,937,936,941,937,934,935,927,943,937,938,929,944,924,979,959,959,960,966,957,973,959,968,970,969,956,952,950,961,962,972,964,815,822,826,832,819,824,825,829,811,823,833,1011,1004,1004,1010,1014,1010,992,1005,1007,1001,869,854,862,857,861,874,873,870,869,852,857,854,853,867,576,600,597,608,601,600,584,596,604,595,609,609,993,983,973,996,997,1007,995,991,989,980,984,984,987,989,984,992,987,988,980,996,1006,995,978,982,856,857,856,855,857,856,861,851,858,847,596,592,601,610,608,603,573,567,574,575,578,563,559,565,568,562,573,580,573,562,565,569,640,630,638,640,629,634,637,611,632,621,625,641,636,632,641,635,628,633,637,594,592,598,590,598,592,595,595,594,592,593,594,604,595,597,605,1106,1091,1120,1125,1085,1088,1100,1096,1110,1127,1108,1090,1107,1123,1112,1073,1089,1110,1102,1088,1075,910,921,921,947,912,923,917,923,925,921,943,924,924,927,932,943,942,914,595,612,603,602,611,606,600,591,1086,1091,1097,1080,1095,1084,1102,1082,1071,1002,991,997,996,979,979,994,1003,998,997,974,989,630,630,614,648,617,617,638,629,618,630,642,634,629,637,610,549,550,553,549,559,556,552,555,553,552,552,549,562,553,553,552,547,558,970,1006,1014,1004,1012,1000,978,1023,1007,992,1011,978,999,991,965,934,951,954,954,957,951,955,958,958,937,965,611,601,613,628,601,607,616,594,984,987,1027,992,1005,983,1003,913,936,930,942,935,939,929,931,934,937,925,929,936,947,923,932,613,614,623,605,619,610,629,613,597,596,595,608,627,659,649,657,654,664,656,679,643,652,664,657,646,642,644,652,651,637,647,655,654,641,1132,1151,1102,1130,1121,1140,1127,1145,1131,1118,1131,1139,1110,1168,1149,1152,1135,1182,1134,1138,1128,935,933,947,939,925,946,925,930,916,938,923,941,922,937,951,965,963,957,957,949,945,953,943,948,966,956,851,848,826,835,820,827,842,848,843,566,536,546,555,536,542,547,542,544,546,540,556,551,560,555,548,556,542,543,541,547,546,563,564,562,554,535,556,550,556,635,637,644,635,641,627,638,642,632,642,628,641,649,732,719,731,730,723,721,726,715,722,713,722,741,725,595,589,590,603,594,588,600,595,596,598,602,592,598,594,597,802,815,809,791,824,813,665,671,672,673,686,673,681,676,675,687,675,681,675,679,679,680,698,823,808,794,805,793,807,819,804,813,804,811,791,817,814,815,806,804,993,1005,1011,1014,1000,1006,1010,1001,1007,1006,1009,995,996,999,1002,993,1006,948,955,944,959,958,957,949,949,955,954,944,944,941,932,928,940,937,939,947,946,939,946,943,939,935,941,948,932,929,933,932,941,935,929,936,931,933,933,940,925,928,934,927,937,936,935,824,831,838,833,837,845,838,829,840,828,834,826,863,859,859,862,860,866,864,861,864,860,866,861,862,855,862,865,876,856,681,682,664,679,681,700,695,687,678,679,683,671,685,690,698,684,865,843,844,853,845,839,844,854,844,849,851,849,849,842,822,938,938,950,937,947,936,935,947,942,942,945,904,890,896,896,896,903,906,896,904,897,900,909,909,898,889,894,903,888,904,891,902,906,916,899,912,899,909,917,917,915,909,909,916,906,921,907,908,900,898,907,903,924,922,934,929,936,941,926,935,934,926,923,848,818,823,813,826,617,644,637,635,645,628,631,640,639,645,645,624,641,630,636,645,644,635,638,660,655,658,665,643,649,652,646,631,636,932,958,956,945,957,950,942,963,945,938,952,959,937,949,956,951,699,706,690,717,715,696,691,733,688,701,711,782,1037,1044,1041,1042,1058,1054,1065,1056,1058,1036,1048,1046,1067,1043,1046,1039,1037,1051,946,935,943,935,939,946,919,948,1025,1009,1014,1020,1024,1019,1017,1016,1014,1015,1007,1021,1008,1021,1030,1015,1017,1018,1012,842,841,840,808,846,836,847,839,839,856,841,853,849,842,852,929,920,926,909,926,900,930,898,910,908,914,909,936,947,947,944,954,953,937,954,948,938,953,949,946,942,950,946,944,1022,1023,1032,1033,1026,1014,1010,1022,1026,1034,1019,1026,1023,1018,1024,1029,1018,909,906,923,921,915,910,924,916,915,901,918,918,909,841,840,829,831,842,841,836,846,845,840,830,756,741,739,741,729,726,740,757,742,730,1003,1011,988,994,980,1012,1010,985,1001,992,998,997,889,888,892,886,884,880,880,885,880,892,881,896,882,899,883,888,890,729,723,744,745,725,730,745,731,746,746,747,731,732,982,998,1006,997,993,1012,995,1005,998,993,991,995,990,1004,847,852,840,858,844,852,858,849,855,847,861,855,849,851,966,972,959,970,969,975,953,976,864,849,856,865,853,856,865,857,858,857,853,855,867,856,847,851,810,802,802,802,813,808,803,813,812,812,826,804,809,664,651,661,676,669,672,645,669,656,659,662,669,616,619,612,621,614,616,620,624,608,606,625,609,612,611,611,612,615,1082,1104,1067,1099,1101,1102,1097,1091,931,934,933,943,925,897,920,931,988,973,977,982,966,976,984,974,979,975,972,988,984,966,796,780,801,789,788,769,779,778,784,787,779,784,785,632,622,615,618,634,628,623,618,622,620,629,620,627,982,981,990,971,1001,969,993,988,978,982,983,982,987,996,1003,969,991,994,807,806,806,805,816,796,807,794,811,815,801,812,599,605,606,598,615,603,605,612,617,610,603,595,608,606,917,927,917,917,920,933,908,907,893,884,892,900,890,893,881,887,894,889,899,888,899,894,909,901,897,896,954,939,953,962,954,929,947,954,966,949,952,950,951,810,783,786,792,802,784,800,786,807,556,541,558,559,544,562,551,576,556,562,556,561,557,552,584,586,595,582,580,590,571,586,586,1032,1005,1014,1005,1013,1004,1031,1006,998,1019,1028,1003,1028,993,1021,1010,811,812,824,815,810,822,814,813,805,823,807,823,824,810,835,807,700,701,705,705,713,704,703,704,705,704,704,704,719,711,691,699,699,892,928,918,915,903,916,889,913,866,850,855,844,862,846,846,854,854,835,862,849,834,586,600,597,589,595,581,590,599,586,594,588,592,611,591,585,588,932,917,932,945,942,920,915,920,944,922,914,920,964,818,821,812,806,827,806,817,809,809,817,804,823,801,819,797,815,818,802,812,817,768,763,770,774,763,761,767,768,762,771,766,771,762,771,630,636,635,617,616,622,632,627,615,630,624,629,630,641,634,629,619,632,623,631,627,629,627,634,621,631,567,560,559,565,565,564,569,571,564,562,546,1006,1017,997,1030,1014,1013,1005,1020,1016,1006,1021,1044,854,869,850,860,863,872,845,861,873,833,865,863,862,865,873,862,870,846,856,858,826,699,710,701,715,696,706,691,695,693,699,751,739,751,742,738,749,736,747,1131,1114,1147,1125,1124,1114,1115,1107,1120,1114,1145,1152,1138,939,930,932,938,942,929,924,916,938,932,932,939,946,927,927,601,601,588,607,583,976,957,974,953,942,953,948,947,956,956,962,959,950,965,974,967,971,967,976,966,974,961,953,964,971,963,966,966,964,964,950,840,855,849,827,844,850,834,845,844,1166,1184,1179,1154,1177,1168,1170,1172,1173,1167,957,948,956,947,958,955,948,953,975,979,969,965,968,984,965,1084,1089,1078,1096,1087,1082,1086,1088,1078,1076,1082,1080,1088,1087,835,840,841,850,827,834,821,832,845,829,825,826,811,837,837,819,851,841,846,588,585,570,591,577,581,587,585,1002,1015,1010,986,998,993,988,1009,962,1024,1007,984,1010,1001,998,995,1004,1008,1004,1005,1009,1014,983,998,999,1013,1000,1003,1003,892,880,877,887,898,886,872,891,887,865,882,873,947,939,939,941,945,955,939,938,939,944,943,943,937,942,955,951,838,823,829,851,837,831,821,846,841,845,835,831,1002,1006,1016,1015,1005,999,1012,1008,883,899,988,987,994,1003,1005,983,952,976,968,988,994,985,989,998,990,1005,992,989,994,987,885,896,888,886,877,889,893,885,882,886,619,618,623,607,604,608,618,609,622,608,629,616,624,630,618,619,611,904,899,893,915,908,909,908,908,715,704,707,715,698,696,700,702,851,878,870,837,846,859,848,859,881,879,857,853,1025,1017,1023,1020,1023,1016,1022,1008,1032,1028,1011,1027,1011,1023,1012,1011,1024,1020,960,959,954,962,957,949,953,953,948,962,949,961,958,963,958,947,935,929,945,934,935,936,935,946,942,949,934,936,949,940,949,939,940,937,941,940,938,940,945,947,942,832,827,809,803,824,824,819,819,841,837,810,830,835,831,969,974,970,962,968,967,964,968,977,979,978,969,982,969,964,848,861,861,852,857,872,863,869,866,882,873,877,572,609,601,614,592,586,592,596,529,526,535,517,534,543,529,528,530,522,522,526,539,520,545,616,609,612,611,613,610,613,621,614,608,620,611,619,682,684,687,693,687,676,689,674,679,669,680,690,678,685,694,681,916,914,920,926,902,924,923,923,927,908,913,911,894,921,896,899,896,896,896,878,897,897,889,885,893,889,890,893,892,904,903,843,855,854,860,865,861,849,853,855,870,848,870,849,851,854,850,851,864,856,963,959,938,956,950,948,948,967,950,965,955,950,947,950,940,953,942,940,935,957,942,941,893,881,876,889,881,898,886,888,892,879,886,884,643,661,651,644,659,646,651,664,652,645,786,791,799,805,806,805,789,796,792,785,795,781,799,793,793,806,789,962,970,974,982,976,967,972,978,863,862,866,858,873,858,863,863,863,861,885,864,858,872,860,854,659,651,667,654,651,667,662,651,661,659,672,644,936,938,929,930,934,932,922,926,942,939,923,924,933,923,660,661,671,673,681,666,676,667,664,670,683,666,674,938,943,937,945,935,938,954,958,947,935,934,946,940,947,941,961,963,968,958,954,960,952,966,954,959,946,954,969,974,956,978,944,966,958,966,965,968,963,956,955,985,962,978,959,976,981,972,962,904,897,899,884,886,890,894,892,886,896,882,884,907,645,632,639,646,634,632,639,641,635,636,628,640,631,651,653,641,641,572,583,576,591,580,570,580,1023,1077,1052,1071,1059,1053,1067,1071,1056,1075,1064,1037,1046,1063,883,873,880,891,886,878,888,859,885,888,879,645,642,631,648,655,652,641,664,642,642,648,640,643,638,1115,1131,1156,1122,1122,1115,1105,1131,1114,1171,1119,1101,995,999,1010,995,836,852,848,846,835,848,843,845,844,845,853,840,853,829,846,850,768,765,770,776,767,772,671,663,656,663,657,659,663,663,669,658,660,657,900,892,880,900,896,880,910,886,872,893,896,880,904,894,881,781,780,772,783,778,778,782,793,784,782,781,782,651,663,665,671,667,650,644,635,656,641,640,636,639,636,640,648,637,636,892,874,881,880,875,874,888,872,893,898,880,881,877,880,873,763,748,745,738,750,756,760,755,748,747,744,752,746,741,733,755,753,758,755,749,754,939,936,949,942,947,940,943,946,938,937,937,946,949,952,952,948,954,950,945,956,955,952,939,952,961,947,948,951,957,954,944,940,907,913,912,913,914,926,913,917,909,919,912,919,914,922,912,908,933,939,946,930,938,942,944,935,939,936,925,937,934,938,960,956,961,969,961,947,962,956,955,962,957,952,963,965,950,822,834,842,833,829,830,838,842,838,826,848,836,839,620,622,620,618,620,621,607,1059,1045,1071,1042,1047,1024,1041,1041,1032,917,923,916,916,924,915,920,914,930,905,929,913,919,910,922,903,926,694,704,702,705,689,695,685,685,697,680,696,694,687,703,687,688,611,603,594,613,608,591,590,614,604,605,602,597,601,606,624,606,1028,1036,1038,1016,1029,1033,1027,1031,1038,1037,1038,1005,1012,903,881,882,886,882,917,885,895,890,878,887,888,886,1064,1066,1051,1064,1063,1066,1043,1054,1055,1064,1052,1068,1064,1057,850,863,875,873,857,870,891,880,862,869,884,858,852,879,852,640,646,634,654,659,648,662,642,657,641,656,657,649,651,649,924,934,926,937,939,919,922,913,925,922,926,924,914,928,934,764,769,777,759,771,634,636,626,636,631,631,625,620,643,633,638,638,628,623,628,636,626,753,748,759,759,762,750,764,766,754,743,760,765,747,761,759,641,647,645,648,650,643,647,652,657,650,651,646,647,654,645,591,604,599,601,600,600,604,608,608,845,851,847,850,823,844,840,857,835,854,843,855,838,835,669,679,660,662,674,674,665,685,665,670,679,674,598,606,602,612,606,605,607,612,607,593,614,602,612,594,608,605,603,608,1035,1046,1040,1027,1039,1052,1057,1043,1056,1038,1054,1043,1052,1072,1033,1026,986,994,983,963,970,975,974,972,975,844,837,846,842,845,828,825,832,545,539,549,538,567,561,552,564,563,560,563,555,562,545,540,549,576,563,566,558,564,576,579,579,553,572,584,576,564,568,575,563,554,625,626,621,632,635,657,634,640,647,627,641,635,970,966,976,962,974,982,982,961,980,969,723,738,738,713,729,730,731,739,764,779,781,759,775,774,770,774,782,772,765,762,793,766,759,772,774,724,739,739,732,734,742,736,733,739,712,683,690,704,689,699,693,688,694,694,700,685,693,695,694,976,960,983,972,969,979,967,976,968,971,967,973,968,962,960,868,852,820,849,855,842,833,825,837,849,855,840,840,832,919,943,941,953,925,928,940,955,936,934,995,987,984,990,992,982,981,993,989,986,986,984,984,991,972,981,822,832,803,823,827,823,826,841,830,839,799,829,537,524,532,537,538,540,548,530,537,538,537,534,544,542,516,584,578,583,581,583,586,558,573,580,584,567,597,584,923,901,911,904,891,891,896,890,886,888,643,655,652,623,642,636,643,656,632,643,635,572,562,564,576,580,568,579,567,571,563,573,560,579,564,580,898,902,920,905,923,916,909,902,936,689,674,699,684,693,685,668,675,695,669,685,687,683,688,1014,988,984,1012,997,1010,1010,1001,973,1001,1009,991,991,976,991,854,837,854,832,837,851,836,841,858,860,844,850,836,639,638,647,659,653,645,640,639,646,641,632,644,647,657,648,655,647,639,659,641,636,857,834,851,828,842,834,835,822,860,846,816,767,767,761,756,772,757,773,763,760,770,764,775,756,752,738,737,735,739,735,743,738,742,737,746,741,737,734,628,626,634,633,634,632,627,624,641,630,777,771,779,794,792,776,777,792,790,796,797,799,781,779,788,786,785,772,784,997,979,983,980,1000,980,969,980,979,983,979,995,982,973,971,962,983,982,974,860,864,859,863,842,863,852,841,853,835,852,852,1072,1078,1082,1078,1060,1089,1077,1065,1075,1077,1066,1080,1078,1063,1074,1051,1080,1069,1072,896,911,896,928,894,893,899,1033,1057,1043,1043,1049,1047,1039,1038,1054,1032,1046,1039,1036,1052,907,919,911,904,914,905,897,904,916,907,907,905,906,903,914,912,902,1012,1026,1037,1019,1012,1025,1008,1026,944,947,943,944,948,935,936,951,949,928,939,946,931,938,951,935,946,929,586,577,592,598,589,601,593,599,595,573,599,594,594,602,594,610,587,596,597,579,603,609,595,612,623,600,613,606,621,608,608,608,608,627,602,606,598,607,607,617,954,933,956,940,943,925,933,680,666,687,674,665,671,673,685,663,680,695,685,683,669,676,666,684,1063,1080,1068,1073,1074,1052,1083,1062,1058,1068,1063,1054,1074,1078,867,861,860,860,863,865,871,867,860,866,849,861,859,933,914,923,922,922,924,909,940,918,942,914,929,910,926,921,930,909,916,929,936,930,939,941,936,933,936,941,938,928,936,938,945,932,939,933,940,934,941,936,933,939,936,929,819,790,816,816,824,810,794,807,816,821,827,835,823,940,941,941,936,890,922,927,933,938,915,957,913,936,929,911,909,927,919,913,925,911,914,919,917,955,962,961,960,969,968,956,959,801,786,817,795,806,791,791,795,790,798,814,793,835,808,801,594,591,596,593,599,597,580,596,600,579,595,604,598,592,595,591,591,591,590,584,593,585,593,588,588,590,582,584,596,590,598,601,590,587,589,588,577,587,600,596,561,551,551,556,558,556,554,558,538,556,551,554,550,546,556,554,553,560,564,558,562,567,559,567,565,558,566,557,563,567,570,604,605,603,614,600,604,613,613,607,613,607,602,608,600,603,615,596,605,602,619,640,629,636,625,636,632,642,641,648,632,636,644,634,638,634,640,633,1016,1010,1016,1016,1031,1025,1020,1022,1011,1017,1028,1004,1012,848,883,866,881,860,878,901,869,868,862,848,537,543,551,538,548,535,546,562,552,552,554,1170,1168,1141,1128,1141,1120,1135,1141,1148,1007,1024,1020,1001,1019,1015,1017,997,1001,1089,1086,1057,1093,1094,1091,1088,1088,1087,1084,1080,1103,1075,884,875,883,897,881,879,895,890,891,865,891,893,894,884,604,602,600,580,610,622,618,618,613,599,622,561,549,563,576,552,560,565,553,562,1162,1186,1180,1160,1169,1173,1126,1173,1165,1180,1140,1140,1127,1181,1155,1178,1207,1122,1191,979,998,992,982,1007,998,975,997,992,988,997,988,984,989,1004,993,993,989,997,1014,1010,991,1003,1014,995,994,995,1000,997,1002,1000,996,1002,1000,819,822,817,819,828,820,830,819,822,825,820,834,816,838,824,625,639,637,635,638,638,632,634,644,619,642,635,638,629,641,636,626,628,642,634,640,800,816,807,801,808,798,796,820,803,789,793,1001,1008,1003,1001,1000,994,1011,809,818,816,805,828,839,832,820,815,795,811,815,830,817,600,584,594,590,587,584,593,587,579,598,598,582,607,593,592,589,845,867,851,834,848,873,855,852,855,854,836,851,847,666,663,683,660,679,683,676,669,561,559,561,561,559,573,561,563,569,563,560,552,551,556,558,556,562,564,572,569,565,572,569,568,566,565,568,556,567,566,574,570,563,569,562,564,577,615,613,606,611,619,630,628,638,624,628,642,629,629,627,623,627,989,998,999,1022,1024,1011,1026,1015,997,894,894,885,881,889,901,887,890,891,876,890,889,887,602,618,622,613,617,630,647,622,621,602,633,622,615,612,842,862,853,871,851,841,852,862,858,857,855,851,852,858,840,853,690,685,684,688,673,693,680,674,691,676,681,668,681,676,684,682,671,674,682,581,583,582,587,580,586,586,571,578,574,578,580,586,583,643,645,648,650,630,642,646,642,645,647,648,637,655,648,644,643,631,626,626,625,634,629,632,635,632,625,631,633,633,633,1093,1084,1069,1054,1049,1064,1039,1058,1062,1107,1056,1074,1084,1071,1071,1082,1075,886,904,880,877,884,900,891,888,894,905,896,874,934,948,946,938,946,939,941,943,947,949,945,867,900,882,886,876,896,873,883,878,887,892,877,882,575,563,590,555,571,576,550,564,567,578,596,577,583,599,569,536,551,541,551,549,542,546,548,537,538,538,1088,1079,1073,1105,1067,1108,1106,918,946,918,915,910,928,927,924,889,883,902,925,921,913,921,933,899,926,564,563,570,559,562,571,564,565,572,569,559,558,565,570,631,609,638,638,642,643,643,643,650,654,647,623,615,615,616,603,614,608,1027,1029,1037,1020,1019,1047,1055,1024,1038,1010,1033,1031,976,981,986,991,992,999,990,907,886,884,881,892,896,891,880,891,890,901,883,906,897,885,887,891,809,807,791,797,793,798,802,797,814,807,798,806,805,800,793,805,765,758,749,757,766,756,774,754,761,606,608,615,606,614,612,603,620,605,1052,1041,1073,1072,1031,1059,1067,1048,1046,1042,1063,1066,1052,1017,1005,1018,1005,1019,1014,1002,1014,1024,802,812,829,782,785,807,810,800,810,789,793,587,588,580,583,588,575,583,581,583,582,578,1109,1112,1093,1106,1106,1076,1108,1126,975,969,971,965,979,988,954,959,970,968,950,959,961,993,986,976,992,1003,994,992,990,995,989,842,846,856,853,845,858,843,602,598,592,588,595,597,578,604,598,540,544,548,546,549,544,550,541,1103,1117,1094,1104,1100,1100,1131,1134,1098,1100,1113,1119,1113,1124,1099,1102,1077,1132,1123,937,933,921,930,932,939,920,905,916,942,902,927,935,933,936,1035,1031,1028,1037,1025,1022,1034,1032,1039,1013,1034,1017,1028,1010,1025,865,875,860,853,853,860,834,835,843,859,850,860,853,869,848,853,842,855,845,870,577,578,560,574,570,554,550,574,547,574,562,539,561,598,586,594,597,584,593,605,598,595,587,619,618,620,615,614,623,613,613,610,974,974,989,970,995,981,979,970,964,970,789,781,802,803,814,793,795,801,806,809,780,573,560,575,566,565,570,891,861,866,876,871,877,872,886,688,705,699,708,712,715,715,708,700,709,712,705,712,697,692,689,704,595,605,596,595,590,608,608,604,598,600,604,601,604,603,603,599,917,908,923,899,913,905,898,915,914,899,911,905,901,903,904,907,900,906,901,900,912,896,888,891,898,898,887,892,906,896,898,894,887,891,922,932,938,939,944,940,921,935,926,857,860,847,852,867,848,860,866,852,845,848,859,848,1052,1053,1041,1044,1041,1042,1043,1049,1040,886,902,901,904,896,892,896,909,909,906,897,905,1045,1064,1054,1039,1038,1045,1039,1049,1043,1040,1045,1039,1048,1055,878,880,877,876,873,870,885,889,881,875,876,888,889,872,871,877,591,582,589,585,591,593,583,592,605,599,594,600,599,598,615,596,641,649,634,632,641,639,627,641,648,652,648,647,634,588,594,577,588,589,596,590,592,588,601,591,588,592,592,594,589,601,606,607,597,614,603,609,600,603,612,600,600,601,605,600,600,597,604,609,600,608,604,611,647,649,645,651,646,663,659,646,646,650,647,665,961,976,956,963,965,973,951,945,964,958,964,952,978,989,992,987,987,985,968,985,984,981,985,991,979,993,990,980,996,989,991,994,975,985,979,979,989,982,988,989,989,986,993,803,831,821,835,814,827,816,814,809,818,831,824,832,592,596,590,599,587,589,610,598,586,599,604,598,594,590,605,601,606,953,946,941,949,938,937,947,952,947,939,925,929,916,945,946,938,942,946,921,915,911,922,912,923,909,911,916,917,919,958,964,965,958,966,960,971,960,973,949,957,967,958,964,967,811,828,827,819,806,831,825,824,824,837,820,920,906,939,952,909,922,940,925,925,940,923,936,924,947,988,979,989,980,992,985,989,978,978,987,986,978,991,997,974,900,889,888,873,882,882,883,884,899,741,742,735,741,739,728,739,738,735,744,745,745,754,738,629,641,642,638,627,640,635,636,626,622,568,574,566,573,561,576,563,566,559,563,557,567,567,627,628,625,624,622,617,625,627,622,629,624,632,629,619,639,635,635,636,645,632,632,634,634,643,978,984,969,976,976,986,1024,1031,1039,1024,1034,1040,1016,1038,1026,883,898,895,885,887,894,878,876,893,888,883,908,892,1006,987,1009,972,990,985,1032,997,1019,991,997,990,995,995,997,990,995,1000,1000,992,994,990,1004,882,881,902,894,894,887,892,878,852,904,870,886,879,880,1069,1071,1063,1059,1059,1073,1046,1062,1070,1060,1062,1058,819,786,816,808,820,818,804,817,810,650,643,655,639,652,648,650,668,646,943,952,962,969,948,947,964,956,957,950,950,953,948,933,963,958,958,963,962,967,965,964,963,965,968,959,963,964,961,967,958,968,969,971,964,965,963,966,981,965,794,783,798,782,787,814,805,796,818,794,800,807,798,792,802,788,793,783,803,793,816,794,798,808,803,774,859,902,875,879,863,911,888,919,902,903,863,891,937,941,937,929,936,939,936,933,946,930,938,942,947,942,866,856,861,858,858,860,590,582,591,591,574,586,604,587,586,555,559,568,572,562,559,553,568,568,568,565,561,556,565,567,566,565,563,906,931,940,916,919,931,699,689,689,708,705,689,694,707,708,692,694,698,706,692,701,704,695,784,788,776,793,793,793,799,800,637,639,635,622,627,629,622,643,640,617,627,639,567,553,553,568,563,560,560,560,559,562,561,645,655,646,650,654,640,651,648,648,651,643,874,880,887,894,900,878,890,873,881,888,890,893,909,908,924,921,934,936,911,930,932,929,920,917,904,904,897,905,893,891,910,905,893,901,910,911,896,913,968,960,964,948,956,957,965,974,960,962,950,966,952,963,850,865,844,857,850,848,851,851,863,862,847,553,560,574,569,560,554,549,561,558,577,558,556,546,553,566,567,558,562,1004,983,972,975,979,981,988,994,976,980,971,978,993,983,986,989,985,942,957,940,931,946,941,953,946,944,941,951,933,941,947,952,941,949,951,949,974,977,975,982,978,969,971,970,977,972,971,852,818,850,830,847,842,841,844,849,840,832,832,820,839,843,856,819,901,882,913,940,878,933,917,901,886,922,943,922,905,918,920,904,856,885,996,966,972,978,975,980,979,976,984,975,987,978,965,981,984,997,976,988,984,977,858,828,827,831,833,826,814,842,842,847,1068,1064,1075,1077,1064,1075,1064,1065,879,872,872,873,883,862,882,883,862,877,876,876,859,876,871,877,873,879,894,595,628,625,612,622,616,629,627,633,633,616,624,1033,1015,1013,1029,1047,1041,1023,1035,1043,1007,1043,1019,1020,1021,1045,1032,864,863,861,872,862,856,864,860,855,851,861,846,849,946,938,919,908,937,1014,1021,1021,1022,1021,1008,1016,1022,1022,1022,1008,1012,1018,1027,1033,1018,874,863,861,876,874,883,877,871,873,877,862,875,883,891,882,878,868,902,925,922,927,923,909,909,917,909,894,912,906,907,908,907,894,908,911,909,902,899,892,927,924,919,910,922,909,921,921,917,908,916,911,910,917,915,1005,985,991,1001,1002,993,1006,989,983,997,989,996,996,999,835,836,843,824,836,834,835,836,987,981,983,991,999,991,981,993,987,990,990,980,991,986,998,848,859,851,855,851,846,859,845,855,859,851,856,1037,1037,1034,1036,1026,1046,1032,1023,1034,1031,1038,882,870,880,878,874,900,871,879,898,864,941,954,936,954,950,952,958,946,928,949,974,949,930,925,936,958,962,955,956,951,958,960,954,965,962,964,956,960,952,868,853,864,870,874,868,875,863,855,848,860,865,866,853,879,860,594,597,595,596,597,595,591,608,622,591,598,598,596,598,595,594,589,599,606,605,895,937,898,892,890,901,921,919,925,869,1003,999,1024,1006,997,996,1003,994,999,1015,840,851,835,839,815,839,832,834,829,849,844,853,503,495,525,515,503,524,514,504,510,520,510,513,504,547,558,544,544,533,540,547,529,689,677,687,687,693,695,682,689,690,683,686,692,701,694,699,713,631,637,628,642,621,634,625,630,630,631,634,631,631,631,627,635,635,616,627,619,631,955,953,953,973,973,964,948,969,960,964,952,959,957,952,914,900,886,893,897,893,898,895,896,899,899,895,897,944,928,916,939,930,934,942,925,918,934,940,925,917,930,938,838,844,829,827,862,844,847,849,834,862,831,836,839,854,882,866,877,864,861,867,880,859,869,866,873,862,871,877,884,867,949,954,956,947,942,945,954,955,949,958,948,945,954,948,958,957,947,931,938,937,931,933,934,939,934,930,931,933,972,966,968,969,981,964,977,969,966,874,865,873,865,891,862,878,867,869,865,872,861,872,875,637,654,636,625,640,643,636,631,657,635,644,660,649,622,668,591,594,605,609,611,595,598,604,592,609,606,603,601,987,978,993,990,981,1000,988,996,995,972,1006,996,983,963,989,984,997,987,990,980,988,987,987,985,992,974,990,981,840,840,831,828,831,833,850,824,839,844,825,825,1088,1080,1098,1100,1101,1100,1086,1090,930,935,910,936,924,924,920,930,939,936,925,592,600,590,576,598,581,591,605,612,585,587,587,569,586,577,584,590,587,579,573,593,584,586,575,590,577,1048,1051,1065,1079,1045,1082,1091,1096,1047,1119,1055,1053,957,945,957,967,952,936,954,953,965,962,605,641,610,606,623,617,587,595,612,610,595,628,759,772,790,767,774,779,774,774,781,774,785,769,774,869,885,877,875,885,879,878,879,879,891,954,938,941,954,952,953,942,951,967,954,957,954,952,953,946,742,773,750,741,744,749,752,730,760,731,751,744,737,738,746,745,745,761,626,625,632,625,624,627,634,620,614,606,624,634,618,610,633,627,620,919,912,912,897,917,911,919,926,894,916,914,905,920,927,923,917,943,945,935,942,942,934,946,928,959,952,954,957,956,966,966,952,959,959,955,968,963,964,954,844,845,856,852,853,865,846,840,855,853,849,844,671,673,677,689,674,681,679,696,698,690,680,675,977,964,977,974,965,971,953,949,966,974,976,870,847,855,848,843,850,855,839,848,854,846,832,837,943,915,951,934,951,974,939,935,942,932,928,934,927,942,929,933,934,937,945,934,932,949,945,938,945,941,931,934,937,937,938,944,928,944,935,929,960,958,956,959,952,960,956,953,971,965,961,968,960,963,956,964,964,955,966,957,945,966,957,961,855,858,858,845,865,854,854,853,867,849,861,860,854,853,851,848,859,853,850,638,652,661,648,646,626,638,649,645,639,644,636,655,544,566,559,567,554,563,561,561,555,555,560,566,555,563,572,563,590,576,581,569,570,573,577,578,574,577,577,570,580,578,587,610,619,612,614,625,612,608,619,611,611,609,619,1100,1111,1093,1082,1087,1104,1098,1079,1101,937,908,924,921,914,931,928,921,929,928,917,929,918,996,996,998,995,1000,996,1006,993,1004,995,997,1004,860,880,873,874,884,876,878,885,876,878,881,887,889,873,872,893,874,656,643,631,638,630,634,631,646,658,649,639,608,611,594,598,590,602,602,599,860,864,872,852,849,882,864,863,850,870,871,862,860,867,861,866,856,625,593,630,623,621,624,627,609,636,625,569,575,570,582,572,563,1105,1129,1126,1126,1153,1137,1161,1111,1132,1101,1104,1099,1135,1128,940,935,926,927,935,917,937,937,928,935,931,924,934,937,987,964,937,974,968,977,977,958,964,962,976,923,921,912,928,926,925,914,916,920,920,915,902,898,904,905,913,906,923,906,904,905,908,910,905,915,983,979,986,992,992,996,984,984,983,993,992,994,980,985,863,856,860,880,882,874,846,845,862,876,890,875,873,909,926,947,964,931,945,946,929,913,946,952,925,930,974,959,950,965,960,964,962,969,975,952,960,975,972,876,859,856,874,868,869,868,870,863,862,856,863,851,601,601,588,589,601,597,592,603,597,605,588,603,599,600,599,589,595,602,596,591,907,908,911,922,908,932,932,904,921,903,927,910,923,905,916,919,911,957,963,955,954,957,960,939,951,951,953,960,959,993,989,979,991,1006,998,999,967,984,990,989,990,991,999,981,983,984,988,995,879,882,885,877,876,873,874,878,882,877,880,876,877,863,883,885,778,754,765,761,764,757,771,764,754,762,764,760,750,921,906,920,922,934,912,911,909,910,913,921,922,902,920,927,915,919,937,921,913,933,912,915,950,978,967,965,959,978,960,966,967,953,969,996,1008,981,994,996,993,1000,984,995,1001,987,985,997,994,848,838,840,842,857,849,846,847,849,839,861,852,647,634,628,641,645,645,645,642,620,638,647,641,636,639,639,634,622,635,856,829,815,843,836,854,822,828,824,847,839,829,838,852,850,850,814,836,855,854,828,825,978,991,983,992,988,998,991,842,843,830,869,847,846,836,830,848,955,952,946,933,951,945,957,937,935,959,962,958,950,935,942,947,939,945,945,944,946,938,946,943,932,942,947,937,938,944,939,829,830,830,811,819,597,594,588,603,582,605,601,611,590,612,591,600,971,976,978,972,974,956,963,978,961,973,961,960,958,963,963,918,939,922,935,945,933,941,932,928,934,939,941,933,932,934,931,931,928,984,991,979,969,980,975,991,981,982,983,974,970,986,979,973,883,890,884,886,879,884,883,881,891,886,883,863,887,876,883,892,894,890,888,882,880,889,887,887,707,712,717,703,705,711,721,718,708,715,714,701,707,709,698,599,595,602,578,599,594,589,581,602,587,595,511,515,513,527,517,516,508,521,509,519,516,521,527,527,528,515,524,513,523,518,509,567,565,564,579,564,572,565,561,568,571,568,561,578,563,573,572,569,572,649,641,634,650,641,642,640,650,643,639,657,638,654,657,648,661,646,651,657,653,652,648,645,652,843,834,830,828,819,826,825,829,832,831,818,881,862,872,854,872,861,874,885,879,872,856,868,871,866,871,915,889,894,900,894,884,889,819,799,785,800,798,796,816,796,785,787,807,520,506,541,519,518,520,516,521,514,507,514,505,509,582,580,583,578,575,581,577,578,576,575,578,587,582,603,609,612,626,606,609,618,616,610,604,610,614,936,951,963,943,929,922,922,934,923,945,935,943,688,677,675,698,661,675,685,672,675,692,683,687,676,684,698,688,576,578,553,564,563,565,573,574,593,586,588,578,586,581,587,579,583,582,585,583,582,581,578,894,890,921,896,889,917,895,911,904,914,910,911,903,881,905,915,909,928,920,902,921,926,923,925,917,927,908,913,981,974,975,971,968,967,981,981,984,975,983,974,986,985,870,873,859,846,848,854,855,877,846,855,852,844,867,855,851,863,845,855,870,877,995,998,1018,1001,1010,1012,1001,999,1006,990,993,1009,869,871,845,860,860,863,861,892,862,860,611,627,606,612,612,608,611,624,617,626,618,1153,1082,1117,1061,1086,1068,1096,1113,916,912,921,906,900,921,918,926,919,912,918,912,913,904,621,622,591,629,635,606,623,622,621,627,623,622,620,620,581,588,574,590,572,582,574,581,579,573,640,636,622,620,628,634,617,633,631,624,624,635,640,624,616,631,645,631,635,628,599,592,594,594,598,594,598,595,595,602,594,1016,1011,1020,1012,1004,1016,1001,1011,1020,1015,996,1009,1029,1022,1001,1013,926,935,930,935,933,928,927,941,945,930,938,938,941,941,922,915,919,926,929,917,934,936,929,926,924,928,925,923,908,909,908,904,902,908,897,910,909,915,912,908,904,910,907,914,904,903,911,940,944,945,950,949,944,944,945,843,821,846,834,834,845,844,807,1060,1062,1047,1064,1055,1077,1069,1062,1046,1065,1048,1056,1064,1069,1062,1056,915,924,898,910,910,920,911,897,914,931,910,607,597,622,602,602,604,621,615,601,604,607,620,607,616,612,597,604,617,517,522,524,530,538,519,527,511,528,532,517,527,509,549,539,553,564,555,556,549,562,558,553,551,546,552,553,555,551,623,624,627,629,624,634,631,630,626,619,623,601,596,602,596,595,603,599,606,595,599,605,600,599,605,605,836,864,852,852,847,856,866,673,670,686,675,664,671,661,665,671,675,686,670,669,672,663,679,676,603,604,613,620,608,611,599,611,609,610,630,610,624,618,607,612,615,852,859,849,838,865,858,853,844,849,962,949,938,943,938,933,935,861,849,849,842,846,836,848,851,845,846,851,838,825,654,663,655,657,666,675,655,669,658,663,662,627,632,627,623,609,628,630,619,1065,1053,1054,1044,1048,1059,1061,1045,1048,1035,1009,1055,1026,1033,1049,1045,1040,1017,1054,1032,1031,1039,1047,1056,1039,1044,897,907,892,884,881,896,889,888,897,897,906,900,888,894,904,596,613,592,598,608,602,601,592,597,601,615,609,599,617,603,602,604,601,570,569,569,568,567,567,581,562,572,955,948,972,962,958,680,686,691,694,693,691,672,681,691,686,691,693,709,706,687,692,959,956,959,950,956,958,944,943,959,954,938,963,959,933,945,947,947,937,949,946,943,950,946,943,934,949,1008,1003,1001,994,997,994,988,991,983,993,874,873,872,869,853,870,866,875,859,880,879,865,873,871,884,866,1000,1019,1012,1006,993,1005,1006,1003,1013,1007,1011,1010,930,933,926,937,930,939,942,939,930,942,942,925,934,941,941,826,835,827,836,825,577,601,594,587,593,589,599,597,594,597,604,605,597,596,587,566,573,566,568,561,573,570,566,568,572,564,562,568,573,580,568,658,664,677,667,660,661,665,668,656,666,671,669,655,673,927,918,931,933,922,922,939,921,933,939,924,941,937,942,922,933,702,703,690,712,717,709,704,692,708,718,692,707,719,690,714,703,696,703,592,590,590,598,593,590,608,591,604,610,601,591,589,591,582,592,594,605,595,587,591,591,595,595,597,982,1017,1005,1007,994,1012,1014,1010,1003,997,1006,872,874,882,884,880,893,868,874,892,893,890,888,891,881,887,899,878,872,896,888,894,878,903,893,877,1032,1019,1010,1020,1009,1006,1018,1011,1019,869,881,870,862,878,853,876,866,885,867,865,887,881,880,887,879,963,969,965,958,971,960,966,966,963,962,963,965,953,962,971,957,881,882,872,864,875,873,869,865,866,872,853,869,880,865,845,842,841,836,837,838,833,837,843,845,844,835,834,839,840,839,844,660,667,674,671,664,674,805,796,805,789,796,789,807,811,793,797,796,790,810,821,793,620,610,615,613,624,635,615,614,616,629,622,520,522,524,519,538,525,524,527,513,602,582,576,589,575,582,588,590,596,587,575,574,580,584,580,592,916,927,909,920,914,924,911,905,917,916,911,925,977,974,972,958,967,969,951,960,973,964,966,973,964,830,829,837,826,820,828,828,833,833,830,824,824,830,832,812,861,862,877,890,869,870,866,883,872,883,901,882,896,888,895,905,892,910,884,896,891,888,914,787,790,802,783,798,793,803,765,820,795,812,792,788,557,551,544,557,551,572,550,559,562,555,549,539,557,558,546,558,586,585,589,595,581,595,588,580,603,586,606,612,612,597,602,613,610,609,607,603,610,607,608,607,610,607,593,600,588,594,584,596,598,590,594,601,590,596,597,597,597,595,595,585,599,573,559,571,567,569,566,564,578,568,582,567,566,570,1011,1038,1045,1039,1041,1034,1054,1048,1043,1054,1030,1036,1038,948,928,941,938,923,932,912,928,939,917,921,915,976,983,983,966,980,978,977,969,976,974,972,972,820,831,841,857,828,839,835,842,849,825,938,952,945,972,956,951,971,962,952,973,951,950,960,955,930,923,923,927,928,930,927,922,918,933,671,661,663,658,654,693,685,656,665,659,682,664,656,678,683,673,663,673,673,680,664,660,668,665,671,679,675,594,587,590,585,589,593,587,592,583,597,590,586,585,586,992,981,967,994,991,962,998,973,963,974,948,992,973,958,969,952,982,958,883,899,893,884,893,886,895,905,895,879,680,664,655,669,668,670,676,677,658,682,658,651,657,674,668,674,663,701,708,721,702,709,703,715,700,711,721,699,707,710,939,954,950,951,955,958,940,947,961,962,953,947,719,722,724,726,717,715,719,730,711,716,714,710,719,812,812,826,821,821,818,824,832,811,812,806,817,757,761,753,766,765,763,766,759,766,768,772,761,767,613,618,622,619,609,623,611,602,619,615,507,509,508,520,506,520,516,508,519,507,503,507,507,500,511,507,499,517,512,571,575,578,576,584,581,583,589,579,580,571,591,584,578,584,592,602,599,604,604,600,590,588,597,595,608,588,594,603,1019,1007,1021,1009,1003,1021,915,901,882,912,917,894,911,896,894,898,893,910,909,911,897,895,889,898,794,775,780,773,771,776,773,766,787,778,773,786,775,772,782,785,737,719,734,716,728,723,731,724,721,741,718,720,733,646,636,637,631,649,627,636,634,643,626,627,641,634,638,632,640,639,624,613,610,614,618,611,627,611,616,617,614,625,615,618,620,613,616,627,614,618,835,859,839,822,823,849,832,857,831,837,843,844,835,838,849,870,847,851,860,976,985,984,966,987,995,1011,985,971,976,974,981,978,984,992,990,986,975,986,980,978,847,830,846,860,838,845,843,846,553,554,570,559,560,567,562,570,551,559,556,554,553,565,549,554,560,566,1072,1031,1003,1032,1059,1030,1065,1058,1049,1065,1069,1057,1011,878,885,900,879,898,884,880,870,893,880,870,878,882,879,895,885,884,876,892,898,599,593,614,599,612,605,598,601,605,600,593,586,604,605,591,613,590,607,1119,1121,1101,1117,1125,1119,1130,1122,1123,1113,1118,1116,1143,1128,1086,1110,929,902,928,919,914,927,584,595,605,597,598,587,1025,1037,1040,1023,1022,1037,996,1027,1021,1052,1049,1014,1035,930,946,945,951,963,944,953,940,934,953,960,948,951,946,939,942,934,956,617,623,640,623,612,628,650,640,983,1001,1000,994,997,998,957,996,975,995,1000,917,901,906,936,922,926,923,933,933,935,928,932,935,927,915,920,788,792,781,785,792,806,809,812,798,810,794,802,800,799,629,619,624,632,630,624,623,628,640,629,632,635,633,630,636,626,630,629,623,631,632,635,635,629,631,633,631,629,628,638,632,636,627,652,661,670,668,662,672,677,679,671,666,668,671,1074,1055,1066,1091,1069,1050,1072,1049,1060,1070,1073,1058,1079,1057,1041,1083,936,927,926,910,904,928,898,912,906,926,921,919,928,923,580,586,585,595,597,592,586,608,570,599,575,576,558,568,555,568,564,568,577,563,554,566,559,554,562,575,565,569,565,563,651,653,638,629,627,637,640,646,642,638,647,635,644,636,975,966,953,954,971,968,955,977,960,960,969,966,964,961,958,942,974,935,940,933,938,945,937,940,944,933,942,937,927,928,940,940,942,943,941,937,940,943,957,936,930,943,939,950,945,848,847,859,853,840,841,877,855,850,852,596,613,612,602,608,609,610,622,619,615,611,619,609,1042,1022,1016,1015,1050,1024,1037,1023,1038,1033,1042,1054,944,940,945,924,955,930,939,930,828,815,832,825,826,833,833,829,816,830,830,837,811,823,825,838,1027,1042,1031,1037,1035,1028,1038,1033,1033,1040,1029,1035,1043,1034,1033,1029,1028,1025,853,853,853,848,861,861,855,849,856,847,863,850,856,842,853,837,851,835,868,582,583,584,605,575,583,594,597,580,1034,1031,1033,1053,1010,1049,1023,1017,1018,1017,1035,1027,1022,1041,1031,1039,1020,1028,1026,1021,986,1001,1001,999,1012,1004,1001,989,982,994,993,806,810,801,829,804,793,787,809,794,806,797,826,553,542,548,540,552,548,558,537,537,552,548,570,554,558,570,549,559,549,557,554,563,566,557,566,571,558,564,601,592,583,606,586,594,591,595,597,600,602,596,590,987,983,980,996,1009,973,978,969,974,967,999,969,988,976,1000,983,895,898,883,890,890,903,893,888,888,903,825,847,867,831,847,839,835,851,852,837,831,851,853,864,890,880,888,885,881,880,876,871,886,884,882,890,886,886,877,890,885,791,810,809,803,810,807,811,810,810,805,792,805,793,804,809,813,802,801,804,814,612,601,604,605,600,607,595,613,606,600,618,595,610,608,602,1019,1051,1029,1054,1055,1062,1049,1028,1039,1043,1046,1043,883,881,876,873,870,862,856,877,647,636,638,628,651,628,645,642,651,648,643,633,632,629,642,643,641,670,627,634,634,645,635,634,627,642,644,643,629,645,637,632,647,631,643,646,925,908,908,921,930,900,908,919,921,920,916,937,925,918,915,915,712,723,705,714,723,719,708,708,718,791,800,790,789,790,799,803,802,790,800,797,802,800,795,813,997,974,980,977,990,990,991,994,995,991,975,977,995,985,1003,871,869,890,875,885,870,884,868,853,875,847,882,885,864,939,943,953,947,957,943,954,942,964,933,961,956,933,928,939,940,938,944,936,930,925,933,937,935,934,829,815,812,827,808,808,826,799,826,806,796,824,807,819,804,826,600,595,599,591,592,597,595,592,597,601,600,591,595,598,591,596,594,600,591,594,594,595,600,605,597,602,558,563,557,561,573,568,553,563,552,562,557,563,562,555,647,640,642,650,651,642,637,648,665,647,650,632,622,626,620,629,624,986,975,976,964,956,980,980,995,971,965,992,976,978,966,969,975,973,977,982,981,982,982,978,966,968,979,983,985,960,884,845,847,858,842,860,840,860,848,555,538,528,529,532,537,596,593,583,602,584,587,594,598,579,586,578,583,588,594,591,580,585,583,1187,1182,1181,1159,1184,1154,1134,1167,1167,1177,1147,1130,1155,1144,1134,957,955,947,952,928,965,961,971,965,954,999,991,992,995,999,991,1003,993,824,830,833,830,821,842,837,824,840,829,821,833,836,859,882,899,889,879,889,870,900,885,893,887,874,884,891,901,914,902,874,894,952,966,960,947,958,981,956,840,855,846,853,848,839,846,839,640,656,661,640,654,650,640,667,667,652,655,658,648,653,651,648,649,657,662,857,839,848,854,846,850,843,871,856,846,870,842,850,837,846,843,864,719,738,743,728,737,736,728,751,749,737,734,749,748,748,730,737,748,741,947,955,933,948,940,945,940,942,932,940,939,935,948,940,934,938,941,949,934,947,942,939,925,934,934,951,943,951,958,951,992,988,985,1010,994,994,1005,991,992,860,874,873,856,880,854,874,884,881,861,867,949,957,940,933,931,923,933,937,938,936,955,942,956,951,951,939,946,955,952,936,939,945,934,808,788,788,788,802,785,787,799,784,791,793,793,776,773,630,624,614,607,615,620,621,640,621,618,623,636,609,985,988,990,992,988,994,984,966,971,967,991,982,988,979,687,693,706,676,684,694,674,672,680,675,683,680,947,960,943,943,946,935,939,947,932,934,942,944,949,950,940,913,906,905,916,907,913,901,910,928,905,913,916,919,911,919,918,906,918,907,920,911,872,881,883,865,878,873,868,871,867,868,869,872,883,877,629,634,608,639,623,632,642,659,646,642,638,608,605,605,604,585,601,604,598,604,592,595,885,865,881,877,854,925,891,866,871,879,883,864,891,884,800,783,779,792,791,598,597,603,605,602,606,595,668,676,662,666,670,669,665,666,673,870,870,872,881,881,884,867,893,881,897,886,874,882,875,881,894,671,645,656,667,641,659,651,639,664,639,651,578,598,585,581,588,582,577,588,581,584,580,581,578,581,576,590,974,961,966,963,974,958,966,975,980,709,686,708,712,699,710,710,713,710,703,693,704,989,985,1018,1004,1003,1011,1006,1018,1003,1021,1006,1001,999,1016,873,859,852,862,854,864,870,852,545,499,538,508,529,533,528,513,585,583,568,570,573,581,563,561,578,570,568,573,635,627,631,643,627,640,632,633,637,613,620,617,625,620,624,629,624,612,623,617,613,622,912,913,905,914,911,936,909,911,925,665,696,689,689,685,685,708,685,673,577,588,588,586,595,599,589,585,579,595,590,591,593,587,586,581,589,1103,1074,1092,1080,1106,1094,1109,1096,1075,1090,1099,1122,1081,1114,1118,1096,1114,1095,1084,967,971,976,979,962,967,975,961,960,966,976,976,966,967,948,966,964,969,942,906,919,923,906,941,914,911,916,918,902,955,919,904,940,932,938,942,931,941,933,936,942,931,938,937,957,946,945,949,943,950,945,957,937,953,950,957,947,951,940,950,953,946,936,947,945,943,846,841,850,841,859,846,851,839,847,848,850,856,645,646,640,646,639,639,646,632,644,636,632,869,855,869,870,855,859,863,866,864,865,871,856,864,849,871,881,862,859,864,861,640,655,664,636,655,645,652,652,677,650,649,658,644,654,635,654,650,643,673,663,670,667,570,576,573,566,573,568,566,573,568,572,561,642,652,650,650,652,637,658,645,650,614,611,598,617,618,619,598,605,612,608,1016,1015,1020,1001,997,1009,1011,982,998,1000,994,984,1000,995,991,993,994,995,991,994,1004,994,883,861,859,864,875,858,874,870,874,881,868,879,1052,1069,1060,1055,1061,1054,1059,1040,1047,940,917,941,922,933,930,928,935,935,942,929,920,940,999,1004,994,990,990,991,997,983,1007,995,1004,925,929,923,931,929,941,942,925,949,931,935,801,789,810,798,804,805,793,798,802,797,801,648,640,660,645,667,646,653,647,666,653,648,653,657,652,652,673,669,830,842,846,829,821,831,831,835,828,828,837,836,847,945,950,935,943,953,957,952,949,949,941,948,975,976,976,973,968,957,975,973,975,979,963,961,952,976,970,760,768,765,776,763,770,788,762,782,775,758,760,785,761,767,776,754,765,548,563,540,560,543,556,555,543,554,542,552,530,555,542,552,536,545,546,541,572,569,565,570,567,571,568,566,564,569,563,566,580,561,570,563,572,568,609,602,612,603,614,603,617,601,604,979,976,985,988,978,982,959,988,984,977,972,986,970,963,989,689,697,689,701,690,703,690,694,717,688,716,693,696,686,701,677,702,676,692,718,699,710,714,703,711,706,710,708,711,705,711,706,687,712,692,700,721,570,586,605,587,595,591,593,605,584,606,594,602,606,584,600,581,598,610,535,550,551,534,548,549,546,557,542,532,551,541,556,544,554,864,879,867,877,868,852,873,878,864,833,883,874,852,872,851,868,859,863,943,934,949,951,953,947,945,955,956,966,943,956,946,959,955,965,883,871,880,859,868,865,873,861,863,859,853,866,876,865,857,867,869,872,878,884,823,832,819,809,811,816,810,815,814,824,820,729,738,740,729,748,720,713,742,731,723,734,722,721,734,734,729,728,736,734,637,655,643,655,648,641,651,663,641,859,855,853,860,873,853,869,836,871,864,849,858,865,853,863,768,770,768,757,771,751,770,773,758,763,761,769,758,769,734,742,739,742,738,742,743,750,743,737,747,743,748,629,640,625,642,629,629,637,635,643,644,628,636,640,639,636,813,815,819,813,806,814,803,799,809,812,812,915,952,928,933,932,917,939,937,927,939,938,936,944,930,936,927,931,926,925,932,941,931,931,937,981,961,974,971,979,984,973,967,975,972,974,978,980,980,977,837,832,830,824,842,827,837,842,842,838,837,825,833,834,829,822,617,602,610,633,631,629,603,613,606,626,617,608,613,618,625,635,627,637,650,632,645,632,639,628,642,634,636,639,648,649,645,640,636,638,1090,1097,1087,1074,1073,1117,1082,1073,1085,906,897,902,906,908,909,899,911,899,909,892,932,903,922,909,898,880,903,602,613,604,596,600,607,595,597,594,1051,1045,1001,1008,1034,1015,1006,1013,1044,1006,1031,1035,1000,1024,1017,942,954,959,966,949,952,937,936,958,958,947,954,784,779,785,786,790,795,792,607,616,615,611,605,599,617,592,617,600,603,611,609,1048,1024,1027,1011,1020,1011,1008,1009,994,1014,1011,1000,1015,1008,1006,840,834,833,849,861,835,849,844,612,622,621,610,613,618,608,602,606,602,614,619,605,621,605,614,986,994,994,987,1004,987,1011,990,1000,988,994,988,890,885,877,902,895,887,895,887,878,878,888,890,666,671,670,662,661,668,673,659,682,888,895,894,886,898,886,892,876,869,886,881,883,905,886,879,907,904,867,891,876,895,868,981,981,989,995,979,974,979,979,981,981,985,884,898,887,894,892,895,876,885,886,883,894,889,898,875,890,1137,1121,1138,1137,1150,1147,1130,1164,1158,1142,1136,1134,1138,1139,1149,1129,978,991,977,988,976,993,1000,991,987,983,973,983,990,980,980,975,1015,998,1001,1011,1015,1013,1007,1005,1011,1023,1006,1014,1014,1011,1009,803,803,811,785,808,798,798,812,815,799,796,810,798,801,782,591,574,576,592,584,581,588,591,593,583,579,575,595,583,596,592,577,1142,1102,1100,1135,1155,1143,1103,1134,1098,1157,1138,1099,1112,1085,920,925,923,917,911,926,920,909,926,904,898,917,931,934,922,919,901,909,912,620,626,629,622,626,626,632,618,631,629,619,633,972,960,959,979,973,981,979,971,953,975,958,985,967,971,979,907,895,896,888,894,906,901,898,891,895,895,884,660,647,640,654,636,653,656,645,644,649,647,650,638,640,643,648,640,655,611,610,605,612,602,600,617,604,603,608,623,596,605,617,598,554,562,559,550,561,559,566,550,568,568,559,573,555,564,567,558,558,991,995,1018,960,1000,968,996,1007,978,982,994,1005,1000,1009,987,1000,1003,1001,987,1000,990,1002,991,989,989,861,881,863,865,872,862,866,867,870,854,875,875,866,859,872,868,871,874,863,879,854,607,604,590,588,609,595,606,598,591,565,550,557,554,559,564,554,557,560,560,560,562,569,563,559,872,873,871,893,873,882,871,866,879,861,875,859,870,959,957,945,955,945,956,949,962,962,965,953,953,969,955,956,964,956,982,982,988,985,999,981,990,986,994,990,972,995,991,975,984,986,999,863,856,865,872,876,871,863,866,781,802,795,790,810,790,635,658,646,648,647,648,662,642,658,1088,1048,1062,922,916,928,921,925,922,926,922,918,925,947,913,941,918,914,920,918,938,920,914,613,606,610,624,599,606,627,620,600,614,602,621,612,593,612,616,624,641,911,906,898,902,892,910,901,899,905,902,882,897,906,884,893,907,918,887,653,648,632,656,658,655,654,647,628,640,663,624,647,647,646,649,651,978,1002,977,971,971,981,981,970,985,988,986,992,1013,998,964,969,996,986,1141,1157,1154,1141,1153,1146,1145,1152,1141,1154,1159,1138,1143,931,934,947,938,935,939,939,943,927,930,941,955,956,955,934,928,959,941,925,926,921,922,925,924,928,936,923,843,850,832,832,836,837,831,848,835,833,842,848,832,833,829,847,834,613,629,643,638,629,633,645,640,639,618,640,641,635,646,625,625,641,1085,1053,1071,1072,1074,1070,1075,1074,1046,1075,1082,1093,1071,1070,1096,1091,1088,1096,909,904,927,929,925,914,914,904,898,912,924,899,924,921,928,915,889,914,672,671,670,673,668,670,678,664,676,676,684,664,669,676,667,679,669,673,682,939,932,938,940,925,912,941,944,930,949,942,939,931,759,764,765,756,764,768,762,765,744,760,755,758,768,766,769,765,761,770,754,766,775,776,766,769,762,963,954,958,954,946,944,954,956,966,964,957,984,1001,991,991,986,977,993,984,989,992,987,988,856,844,853,865,856,858,846,855,860,859,844,844,867,837,854,858,966,970,987,986,971,1013,970,987,988,999,937,953,944,934,937,941,951,943,943,928,935,945,924,979,960,959,965,954,962,960,962,959,962,958,962,954,951,949,956,962,806,825,822,804,797,818,814,819,820,815,821,796,802,801,806,584,595,598,594,591,592,596,587,670,686,682,679,679,679,678,681,695,687,674,673,686,677,675,675,684,680,679,668,658,661,668,658,660,665,668,658,665,664,661,658,667,665,657,654,664,901,891,892,893,896,897,893,890,945,956,942,953,945,945,945,934,951,945,950,952,961,933,950,953,953,877,865,867,869,862,861,860,867,850,876,863,870,786,778,804,783,775,790,1065,1055,1057,1052,1059,1060,1058,1055,1047,1065,1063,1056,1055,1059,1061,1065,952,945,944,931,952,952,947,939,934,930,947,936,936,946,771,781,776,783,794,788,770,773,769,770,768,603,618,614,617,616,605,601,591,608,607,599,598,607,598,619,565,571,559,562,562,568,570,551,565,558,567,567,571,955,955,974,961,968,952,955,976,729,714,711,732,734,746,748,731,741,704,733,743,715,864,846,842,837,847,859,839,844,847,855,848,855,860,718,721,722,722,730,720,722,727,729,718,727,723,713,943,913,956,927,943,920,909,917,916,933,914,938,937,915,927,887,876,877,877,875,872,697,711,706,705,703,711,701,699,703,696,701,973,990,991,983,970,904,909,911,906,928,910,896,902,908,915,897,901,911,752,760,760,746,761,753,741,757,759,754,750,748,615,618,608,634,634,621,628,623,616,614,620,620,1102,1084,1095,1127,1141,1100,1103,1094,932,922,937,936,933,911,924,953,932,925,925,948,928,924,943,948,956,952,950,951,926,930,933,960,961,947,945,942,916,929,907,927,911,927,922,925,924,921,921,916,917,922,934,926,934,940,930,923,928,932,928,926,918,924,811,830,805,806,792,810,817,820,789,812,820,813,814,612,624,617,620,625,616,623,617,616,616,611,625,710,716,718,708,736,732,716,716,731,715,711,630,612,624,615,614,614,613,615,618,620,621,617,613,999,1001,991,1008,1012,1014,999,996,1005,1002,1012,1017,998,1000,823,828,837,832,830,836,561,573,585,598,578,571,570,565,575,578,669,692,643,682,683,686,652,691,700,673,691,663,687,676,684,1036,1038,1024,1033,1039,1031,1040,1045,1051,1041,1033,1027,710,709,681,688,699,680,669,678,885,899,897,883,898,885,897,900,913,905,896,934,922,917,923,918,923,930,932,926,918,918,922,917,912,920,913,917,927,927,925,920,868,870,865,869,878,864,869,879,872,881,614,630,631,640,632,624,634,637,637,631,626,604,628,622,622,820,827,826,813,825,821,835,816,832,825,817,984,999,989,996,988,980,993,897,910,930,915,904,922,918,912,908,924,907,957,966,958,962,957,970,958,968,963,958,961,971,964,661,652,638,651,648,639,639,666,652,651,668,649,627,657,652,650,664,964,984,975,982,989,969,972,977,1012,1014,1005,1016,1008,1011,1002,1032,1022,1011,1016,1024,1028,1023,809,792,797,800,802,790,817,801,802,818,609,592,601,593,598,595,599,594,595,590,604,605,591,596,586,605,833,850,855,857,854,863,850,858,856,857,856,851,871,842,869,852,651,628,641,643,640,653,646,643,647,647,642,651,646,639,657,653,579,571,581,573,586,574,574,577,589,578,862,864,856,844,852,848,845,846,836,843,844,838,834,844,745,749,758,757,754,747,745,745,753,631,634,629,648,627,649,642,646,640,652,649,800,794,801,790,786,802,801,786,790,789,777,792,796,794,793,776,799,793,993,962,963,970,970,969,891,903,897,889,901,895,896,883,886,895,886,893,878,956,951,949,947,957,980,966,978,988,955,953,954,944,955,956,941,958,955,936,952,952,951,881,865,849,878,873,861,872,867,871,865,873,879,872,862,868,612,602,611,616,610,602,974,964,970,974,988,989,971,978,965,975,980,943,933,940,952,928,953,944,940,936,939,925,939,934,931,941,968,957,950,956,942,944,954,948,941,962,946,950,950,1051,1050,1049,1046,1045,1045,1046,1038,1050,1046,1050,1054,1059,907,894,909,910,908,902,906,883,908,906,909,921,911,891,896,911,895,913,908,920,879,879,879,880,880,881,888,886,879,878,883,881,882,886,886,883,732,745,743,750,735,748,738,756,739,742,725,754,737,753,754,752,937,937,941,946,935,939,939,955,929,943,941,915,944,943,943,944,924,923,927,923,923,925,914,922,922,928,930,894,893,890,901,898,898,893,894,899,892,903,919,909,900,922,920,902,915,914,900,912,906,967,946,958,965,967,958,960,945,954,957,959,963,844,849,847,841,844,855,845,830,849,853,845,837,864,851,848,642,662,663,654,667,665,659,672,654,669,659,655,670,654,670,664,651,677,882,880,896,889,877,889,906,884,886,880,883,967,958,955,949,964,951,951,949,947,954,959,956,946,945,958,951,963,966,952,968,956,968,963,956,954,968,956,959,964,954,964,962,971,967,814,797,799,815,796,819,820,822,831,818,812,826,818,810,820,808,807,800,939,934,949,934,934,925,918,935,934,982,987,962,970,974,970,978,983,975,974,982,969,983,972,974,969,961,896,891,883,886,887,884,880,892,884,887,891,892,882,885,750,752,752,749,741,755,748,753,747,753,740,751,743,755,631,633,637,617,626,636,635,631,796,784,778,774,782,767,601,604,592,569,567,573,569,566,555,560,560,562,1148,1151,1145,1156,1153,1163,980,982,986,1008,1004,991,973,979,989,980,966,971,962,972,980,968,974,977,968,827,828,817,838,823,825,825,818,962,953,956,958,940,952,932,947,949,952,928,948,908,899,907,903,896,882,891,901,906,903,903,897,912,904,911,872,862,868,877,887,857,881,867,869,873,872,878,865,642,629,648,630,635,627,657,634,650,629,652,640,633,657,966,973,975,980,990,969,968,971,961,956,985,976,982,982,970,966,973,979,983,982,960,953,960,943,946,958,950,962,962,963,952,946,955,944,945,945,934,948,950,925,934,935,941,933,931,932,946,929,931,932,937,936,925,923,927,920,932,931,774,785,788,792,789,783,769,783,783,775,781,782,775,586,583,588,579,591,589,577,585,590,588,578,598,589,590,1161,1134,1155,1106,1167,1130,1115,1114,1122,1147,1164,1128,1142,1145,1119,943,976,975,962,969,980,954,971,986,992,990,997,992,985,988,990,989,976,994,991,829,812,832,826,810,846,822,826,818,827,830,812,797,830,824,832,955,980,963,972,971,971,984,960,965,979,971,972,965,976,910,893,915,900,898,907,889,902,889,893,910,924,928,919,927,930,933,935,923,915,932,658,653,660,648,652,658,646,651,640,942,946,940,931,936,940,954,939,924,930,942,998,1001,1004,992,993,998,997,1002,1004,1005,1001,1011,991,882,889,865,878,893,897,884,885,893,894,881,885,881,1007,1000,1005,1000,995,1000,992,1001,1007,1000,996,992,995,899,902,885,898,885,895,895,899,888,889,884,895,906,903,895,886,903,870,894,902,894,649,641,644,639,634,643,655,651,648,655,658,648,632,613,618,611,617,607,615,605,627,616,615,1084,1069,1076,1087,1117,1065,1058,1099,1063,1074,1076,1062,1102,1066,894,904,633,634,648,637,632,642,634,625,625,651,649,637,636,636,632,657,665,664,670,665,659,664,669,653,663,978,952,958,972,975,984,957,948,962,948,923,921,941,931,932,929,929,941,927,937,945,925,922,931,888,882,883,882,878,888,914,919,917,923,924,924,924,917,924,914,918,937,823,824,815,805,826,830,832,831,825,817,812,822,832,826,805,815,824,578,589,588,588,576,595,580,580,600,589,579,580,590,580,592,580,581,582,580,578,584,1071,1085,1117,1075,1072,1082,1110,1077,1110,1099,1084,1098,1094,1096,1105,864,866,874,871,592,596,604,593,587,603,608,602,586,590,596,596,597,583,610,848,820,795,801,822,825,853,826,819,820,820,815,799,815,785,813,834,747,754,748,748,753,745,747,755,748,757,752,738,746,744,739,752,749,632,625,637,642,628,639,638,646,649,634,640,649,766,772,893,918,898,896,912,919,912,886,916,881,901,842,820,828,820,832,820,809,824,839,831,827,841,815,820,544,545,547,543,536,547,536,541,547,523,550,531,549,530,537,541,550,556,553,553,550,554,551,567,549,571,609,609,634,927,918,926,932,936,919,935,944,930,936,934,934,929,923,931,936,948,923,930,938,929,927,922,933,931,927,925,920,927,936,942,930,854,837,841,836,836,826,849,837,822,851,828,836,849,959,915,924,903,933,888,936,921,932,937,937,942,932,936,936,928,932,933,929,838,830,829,838,625,622,629,637,614,626,625,637,630,619,641,624,626,612,802,795,791,801,808,801,806,790,816,797,793,792,796,810,793,934,913,933,929,922,927,928,911,927,923,927,933,936,911,926,925,934,978,980,983,980,986,984,977,977,978,968,982,984,983,987,978,858,863,860,861,849,848,857,852,872,846,856,853,849,579,587,571,582,589,571,560,585,589,584,604,589,591,601,587,542,532,533,538,532,525,534,535,520,536,527,1046,1087,1079,1110,1066,1064,1088,1080,1081,1067,925,914,938,903,929,929,948,922,946,917,931,946,920,924,911,937,636,633,651,649,648,646,640,631,648,637,643,645,649,632,630,638,639,1005,1009,1003,1006,996,1002,994,872,834,860,854,846,866,860,866,860,853,849,866,859,857,860,877,868,867,851,960,964,952,964,961,950,957,960,971,962,961,951,955,950,966,962,943,954,943,941,822,818,849,832,852,812,831,832,525,548,533,523,547,533,541,541,536,543,593,599,584,578,599,589,587,595,898,903,892,911,899,905,909,907,917,892,912,917,910,908,910,646,636,628,644,639,639,635,648,585,589,598,592,592,587,590,589,591,588,589,581,873,854,856,867,879,851,869,864,868,863,871,860,875,881,877,930,896,924,911,898,920,914,901,888,935,910,894,902,883,919,895,893,868,869,877,880,881,861,876,877,879,874,893,883,883,882,583,585,585,592,575,586,587,590,581,598,589,592,1005,1002,1008,987,1025,1017,1019,1008,1016,1018,1011,1012,1007,1011,1010,1000,997,1018,998,905,920,916,919,923,909,913,897,913,923,910,921,905,1016,1022,1018,1028,1000,1027,1018,1020,1017,1035,1022,1015,1032,1028,816,818,808,805,820,832,826,826,832,821,823,838,823,833,831,845,806,818,656,662,663,663,668,669,683,653,662,668,679,674,685,682,682,680,687,685,681,684,668,1010,1008,996,1007,1017,1001,986,1004,1009,1007,985,1005,1000,988,990,987,987,994,970,974,990,983,984,981,985,881,882,867,875,876,874,883,873,875,874,889,859,890,879,871,871,872,877,873,868,866,749,734,746,746,732,741,744,737,738,744,736,746,747,618,617,613,622,626,614,605,622,623,614,627,620,616,623,623,617,1047,1078,1083,1063,1062,1053,1064,1074,1060,1059,857,853,855,882,864,870,862,855,868,858,859,854,841,868,867,862,852,990,991,1007,993,988,991,997,980,1001,992,983,989,987,986,840,852,840,844,851,844,854,835,865,857,838,843,844,833,848,864,849,930,940,931,939,945,942,933,944,937,933,802,800,805,801,795,803,800,789,817,803,801,797,792,818,794,797,793,804,581,575,582,578,575,580,594,587,583,586,572,591,579,584,579,581,574,1019,1003,1013,1020,1016,1016,1036,1048,1002,988,1013,1030,1022,1022,1023,1024,1011,1007,1013,1011,1011,1028,1021,1009,1019,1019,1018,1010,871,856,878,873,878,882,856,874,853,847,859,855,566,556,552,565,562,557,558,552,564,558,553,552,556,552,621,626,635,622,616,614,625,627,620,631,616,627,633,606,616,616,622,612,607,618,606,614,598,602,611,620,610,608,1011,1025,1008,1031,1013,986,1028,1002,1003,1001,1013,990,1003,1006,1019,995,1005,1012,995,987,1003,994,1001,999,825,832,843,834,840,852,849,838,831,858,583,560,580,580,570,588,563,593,583,571,559,659,658,661,657,662,661,652,660,641,661,665,663,663,651,653,651,653,657,646,649,661,650,993,983,1001,1010,996,990,998,994,1005,991,989,1024,779,774,782,770,792,783,792,779,776,787,760,774,772,785,771,788,781,974,979,980,976,968,978,983,969,968,978,982,974,975,880,854,859,856,862,866,872,863,858,861,868,859,861,869,585,593,601,581,607,598,602,584,598,609,538,548,546,539,549,545,546,546,546,549,555,546,547,871,850,878,863,861,853,876,880,863,860,872,888,877,865,860,846,873,860,868,630,635,634,643,644,637,640,551,567,552,557,553,552,559,548,555,564,545,543,551,558,544,558,992,1013,1024,996,1016,991,994,1002,1010,1000,992,991,967,974,969,985,978,972,970,970,971,975,966,973,889,875,873,866,902,883,879,884,890,874,892,897,888,873,884,893,875,887,880,871,917,907,905,909,898,899,912,895,875,906,929,884,903,853,870,859,863,863,871,861,874,869,868,863,950,936,944,945,940,929,951,946,930,941,829,812,792,797,795,806,809,815,802,780,551,547,543,553,560,562,555,568,569,569,560,547,597,595,592,593,589,591,597,582,587,586,603,601,596,1082,1119,1100,1088,1076,1111,1096,1088,1078,1101,1061,1106,1077,1088,1082,1084,1098,1065,1086,923,932,935,924,923,920,922,933,908,916,924,934,911,933,902,937,907,619,619,623,631,635,610,623,617,625,612,626,625,620,613,969,979,966,989,978,991,988,961,993,976,995,989,986,1005,872,883,876,880,877,894,878,883,893,881,872,879,880,889,902,878,639,627,634,620,638,629,630,633,623,650,643,1000,1021,1002,996,998,1014,1011,1010,1008,1014,1023,998,1011,1005,1009,1006,1004,1016,1015,1013,1018,912,911,885,893,896,906,896,914,1007,1004,1018,1023,1012,1014,1003,1004,1008,1009,1009,1000,1014,1007,1021,1016,1012,863,870,876,878,881,874,867,872,883,879,854,1018,1019,1000,1013,1009,835,796,833,820,819,802,798,811,795,815,826,818,827,825,827,562,553,559,574,571,557,563,551,561,568,534,562,551,560,562,568,1043,1019,1021,1035,1030,1017,1025,1020,1044,1033,1020,1029,1031,1040,1021,1044,1035,1027,1044,1040,1030,1032,1031,1036,1031,1038,1051,1029,1031,1043,1022,1028,1035,889,889,889,872,887,891,893,903,1035,1026,1040,1027,1023,1032,1041,1031,1034,1037,1038,1041,1029,1042,1036,1034,1039,1029,1022,1028,908,900,906,894,905,911,705,712,715,705,703,997,1012,1014,1007,1033,1022,1025,1024,1012,1036,1045,1010,1016,1014,858,867,877,846,855,852,847,855,640,635,637,627,640,629,639,639,637,633,617,641,647,822,813,830,818,826,817,816,815,831,822,820,826,816,829,835,833,1021,1014,1034,1021,1012,1024,1015,1015,1029,1019,1022,1020,1016,1008,1028,1013,1034,929,928,925,942,931,929,916,937,934,926,932,934,925,832,827,831,824,836,829,832,828,822,832,832,827,835,783,779,774,780,771,787,766,780,771,780,771,770,772,626,625,620,623,620,619,616,617,609,627,614,609,1052,1056,1045,1040,1028,1056,1062,1039,1053,1041,1050,1064,1062,1031,1033,1042,858,838,836,838,847,863,835,855,860,813,838,844,867,840,855,860,853,841,846,978,955,948,974,950,956,955,943,952,971,952,952,941,971,970,950,960,1054,1049,1060,1055,1056,1045,1055,1051,1050,1042,1054,1049,1046,1042,1041,1044,1075,1050,1046,1043,1056,1059,1055,869,849,873,882,875,873,869,853,892,888,876,863,867,866,959,968,965,969,972,988,973,985,994,994,995,969,994,983,961,963,988,958,964,972,975,975,967,968,974,968,977,972,973,970,973,808,834,835,828,838,842,847,632,619,601,602,615,610,628,632,611,608,619,913,925,918,919,933,913,908,902,918,901,913,771,762,767,766,762,770,772,595,594,600,589,610,594,597,592,576,580,566,574,578,570,564,574,574,583,568,572,570,576,868,835,854,814,829,842,851,819,832,841,838,835,867,835,821,831,701,685,697,671,674,682,681,709,686,690,699,694,693,679,682,677,684,679,671,686,684,605,601,610,601,614,614,603,604,616,613,610,610,604,603,934,943,946,943,925,941,947,950,955,959,892,895,897,891,876,875,888,865,876,888,878,882,892,879,877,883,1002,1001,994,1010,988,1000,992,997,997,995,1000,999,992,997,996,1006,993,1014,860,859,876,858,844,856,865,851,867,871,960,947,939,959,948,958,959,962,957,960,936,939,952,921,1002,1006,996,983,999,989,1000,812,817,823,820,838,827,814,837,844,835,827,815,817,813,596,618,628,626,603,603,898,903,915,874,891,892,902,901,906,912,902,877,920,903,1007,1012,1010,1009,1016,997,1010,1008,1008,1006,1015,1002,1024,1023,1010,1006,1014,862,847,859,858,874,858,849,856,850,857,1092,1106,1101,1091,1084,1079,1103,1092,904,891,882,904,906,898,890,894,902,874,896,895,906,903,909,890,887,637,634,623,623,633,624,616,631,629,643,632,1020,1030,1015,1010,1027,995,1048,1016,1033,1028,1022,1012,1017,846,845,852,860,857,842,853,832,848,854,846,844,860,610,617,603,623,623,626,630,639,616,623,625,628,624,1038,1032,1037,1035,1061,1040,1032,1044,1034,1050,1045,1039,871,867,877,877,875,874,865,861,872,958,952,952,960,962,954,803,792,817,791,801,793,786,813,796,785,794,779,802,795,791,788,801,791,592,604,601,598,605,591,598,596,601,868,855,838,846,852,874,869,841,856,872,756,758,768,754,760,759,762,757,766,757,751,763,760,584,586,597,587,589,583,588,583,585,587,591,587,579,594,534,535,531,529,531,545,541,534,528,533,532,540,535,523,534,533,528,1032,989,972,983,1007,1017,1004,998,1007,1003,980,1017,1010,982,1010,1007,887,869,892,877,883,891,877,877,882,884,891,883,932,947,954,936,932,927,949,946,916,924,957,939,929,942,928,925,932,928,934,943,925,937,933,926,933,794,809,809,807,808,805,803,801,810,808,802,816,941,922,924,925,920,896,937,927,915,903,919,944,927,935,961,961,959,969,967,972,971,953,791,819,829,827,830,845,815,808,835,825,829,825,831,950,944,973,968,942,934,952,946,959,965,949,964,959,949,963,963,994,1002,999,995,1010,1000,1000,990,1000,983,1005,999,995,998,1000,1009,995,997,986,1002,981,997,999,875,895,906,898,896,899,903,902,900,892,887,898,892,900,895,893,904,817,809,823,821,813,815,816,975,983,969,977,969,962,966,971,974,979,962,977,975,968,857,839,838,840,835,861,847,853,865,834,836,854,853,849,848,827,969,977,975,982,984,958,982,992,978,981,980,973,981,994,968,996,988,995,994,999,996,992,1004,998,999,994,1000,834,837,842,841,845,837,834,855,839,832,843,834,834,828,837,935,939,927,934,918,953,938,940,958,949,945,953,945,940,948,930,930,969,973,964,972,966,964,969,968,966,973,886,872,877,858,867,877,878,864,868,879,862,875,870,870,867,881,885,647,649,647,649,647,640,659,663,651,644,655,657,666,666,661,618,595,596,611,610,604,600,598,602,594,590,594,610,600,596,979,966,958,969,969,994,969,969,989,987,979,977,990,975,991,979,979,992,985,976,983,984,994,995,984,997,981,996,836,823,817,819,821,818,845,846,852,822,815,823,821,550,555,549,551,539,542,548,534,566,546,560,548,553,563,557,559,547,625,622,624,626,629,620,621,626,616,634,628,635,623,616,617,624,637,634,631,635,630,637,633,631,639,678,683,671,673,691,686,675,690,695,686,679,673,684,685,653,645,641,649,651,646,655,655,654,651,652,640,648,659,660,838,807,833,845,676,664,674,674,670,679,655,674,656,605,610,604,612,620,607,613,610,605,610,606,607,605,610,609,609,881,915,896,903,886,896,902,900,905,910,876,898,898,897,882,703,682,708,687,692,702,691,690,690,692,689,701,690,558,582,570,585,563,559,567,579,577,560,566,573,570,557,548,548,554,545,562,565,558,544,548,548,552,653,637,642,646,646,641,644,648,647,648,656,665,659,652,661,657,654,656,656,653,1106,1087,1071,1128,1107,1109,1093,1101,1120,1103,1099,1113,1083,940,945,948,960,956,957,953,961,965,959,965,633,620,607,600,608,617,592,606,639,597,607,615,645,594,862,850,861,875,863,883,875,862,876,884,865,860,867,867,871,869,887,857,720,722,707,740,725,710,718,732,743,725,734,726,869,871,862,879,871,864,866,878,858,859,852,863,858,805,813,811,801,814,808,803,805,805,798,811,816,812,801,818,627,623,622,623,612,642,638,626,627,629,641,614,548,544,540,545,543,530,536,539,545,540,537,539,542,536,552,550,539,545,547,547,547,540,560,560,549,549,541,542,549,554,540,545,551,1018,1026,1019,1023,998,990,1010,990,1018,1017,998,995,991,989,996,1002,989,995,873,885,876,879,880,888,900,885,882,881,880,876,875,886,874,875,873,873,865,680,691,676,690,681,674,686,679,676,695,689,676,676,687,703,596,585,593,599,597,579,600,594,594,512,514,527,521,513,521,511,526,525,512,523,518,519,511,507,519,524,531,523,514,509,507,520,514,511,586,580,598,584,602,580,590,572,569,587,586,715,716,711,715,709,710,712,703,705,704,619,617,620,616,608,609,616,619,623,609,623,624,616,902,879,919,893,913,894,900,908,907,897,891,910,898,899,884,899,913,893,892,888,913,870,849,865,852,859,848,855,848,853,860,853,857,860,861,862,861,909,934,936,926,917,925,936,933,934,940,934,942,919,868,860,858,858,858,860,855,864,840,863,866,855,916,912,916,914,913,909,910,909,904,917,744,762,762,761,746,774,770,753,741,755,739,754,761,747,746,936,961,971,952,953,961,936,941,946,957,962,946,955,949,963,977,962,988,979,985,976,963,972,976,970,975,963,976,990,868,846,861,859,865,865,874,859,854,878,847,872,862,602,594,595,601,587,583,594,582,577,593,593,600,572,598,1004,1014,985,1001,1010,1005,1014,1002,1008,984,1021,836,831,829,838,805,822,834,820,822,821,615,620,636,639,628,626,622,648,628,635,616,625,619,624,631,1227,1224,1241,1218,1258,1217,1225,1229,1253,1221,1264,1190,947,970,953,960,959,944,944,970,941,611,626,623,632,617,619,635,626,619,629,619,960,970,964,971,979,962,975,966,950,981,828,842,863,844,851,836,849,835,846,851,848,842,852,845,936,924,936,931,947,928,929,916,937,945,931,925,894,940,968,980,979,981,970,978,974,871,882,881,869,874,888,881,881,868,884,871,879,631,636,641,633,638,634,631,631,652,641,632,634,652,635,629,588,595,597,592,590,584,597,600,591,590,589,594,585,595,593,1013,1017,1014,1007,1010,1015,1027,1016,1020,1013,1012,1008,1028,1015,900,893,902,902,903,897,892,849,838,859,843,848,840,844,849,835,841,847,850,858,845,797,797,797,781,802,795,803,808,806,800,790,792,805,794,812,783,612,624,612,617,619,617,623,627,615,633,617,616,619,1044,1038,1062,1061,1074,1042,1039,1069,1051,1051,1048,1057,1064,1054,906,909,912,901,902,910,932,913,850,831,838,822,835,833,830,830,841,834,997,993,991,995,994,991,987,997,997,1002,996,990,1004,1008,842,857,853,842,863,846,850,853,847,849,598,603,602,615,619,591,611,598,604,1026,1012,1017,1036,1024,1043,1012,1024,1029,1004,880,902,902,886,903,896,909,888,892,1002,1010,1013,1016,999,995,989,992,1008,986,1045,1028,1020,1005,978,1001,983,1006,994,1029,1020,1017,1015,1004,1005,1015,1022,998,1009,1016,1016,1008,1021,1012,1010,890,889,882,903,870,880,895,892,887,882,874,905,883,893,899,877,893,605,585,603,600,613,598,600,586,609,572,590,607,590,588,585,606,597,594,587,601,591,948,957,949,961,955,939,948,949,956,949,949,966,957,937,958,957,1016,1007,1029,1015,1009,1009,1026,1026,1025,1011,1011,1019,1023,1015,831,838,822,807,826,826,825,816,830,820,816,563,576,573,594,580,575,566,566,577,585,584,580,1100,1080,1075,1070,1067,1063,1052,1065,1084,1086,1090,1079,1056,1090,1114,1097,1058,1113,991,982,989,959,970,978,977,1004,971,660,669,658,672,678,649,665,661,665,654,665,670,656,661,662,667,896,893,874,890,888,894,885,892,884,941,946,947,966,948,951,960,949,957,943,861,885,859,869,876,870,867,874,871,878,871,871,873,868,872,868,872,577,583,568,587,585,585,574,601,587,583,582,577,569,584,581,559,544,543,559,566,559,553,557,546,557,544,561,543,551,552,549,599,597,593,603,610,603,583,589,936,921,933,934,928,931,930,926,933,970,972,984,980,977,967,837,821,833,834,821,836,830,820,829,823,825,817,828,841,901,883,874,869,876,868,862,876,874,898,853,880,887,858,902,906,907,907,914,899,905,897,910,907,898,906,909,823,815,809,819,823,812,833,830,822,818,811,832,846,833,827,827,814,826,799,824,809,945,960,935,958,946,936,934,965,960,963,969,958,966,957,958,955,961,965,962,957,963,830,807,831,814,836,821,827,949,985,959,912,922,955,958,957,973,958,947,953,943,946,943,962,969,965,971,963,971,958,963,962,966,962,816,832,834,830,831,833,844,834,841,831,831,832,617,619,621,634,630,622,624,618,636,631,629,795,776,790,795,794,797,801,790,630,611,608,604,608,610,603,609,565,566,558,554,571,573,561,1098,1104,1086,1094,1101,1078,1109,1118,1107,1112,1077,1076,1099,1096,1104,1100,1099,905,887,897,902,895,892,880,897,884,646,661,668,678,667,683,657,671,650,666,661,667,661,660,659,658,648,669,662,665,816,829,829,823,844,842,818,822,823,819,838,838,818,710,709,710,710,705,712,698,706,708,703,721,707,697,919,932,934,936,918,933,936,921,936,930,924,930,928,922,920,920,922,924,949,918,973,985,975,976,977,975,971,979,972,981,980,978,976,973,813,829,827,831,825,817,828,811,807,829,812,829,848,812,820,822,925,917,942,939,923,939,937,929,936,946,912,924,941,919,936,920,959,966,968,965,963,966,962,963,837,808,839,837,833,836,841,822,811,814,827,850,819,830,826,937,940,939,935,933,965,957,941,966,950,935,945,944,957,947,941,961,960,966,961,969,960,970,966,963,971,972,845,832,825,826,820,834,832,828,836,820,825,825,832,833,826,844,838,608,612,591,611,603,617,595,1046,1040,1059,1042,1040,1038,1018,1047,1033,1040,1028,1021,1066,898,917,916,921,906,927,917,912,923,914,735,730,733,732,731,720,736,736,736,726,740,994,990,1007,1001,1000,984,991,993,998,995,992,994,987,998,989,849,846,849,835,852,832,850,847,838,844,846,842,837,854,843,845,612,605,614,602,604,609,610,606,605,610,613,611,612,599,619,610,616,1039,1062,1042,1033,1035,1047,1052,891,902,890,883,888,877,891,899,893,991,985,993,994,985,988,982,975,986,983,993,997,988,898,878,886,895,877,889,890,886,908,906,880,890,885,892,881,899,880,880,888,872,895,897,573,579,547,573,570,571,565,558,552,554,555,558,553,560,551,558,565,562,558,565,558,561,561,565,637,648,636,635,635,639,635,644,636,638,683,683,690,678,690,676,691,699,692,690,687,677,680,687,683,683,658,661,662,661,656,663,664,663,671,654,658,663,664,667,655,660,656,1034,1059,1053,1048,1063,1044,1071,1040,1033,1036,1044,1057,1054,1056,1040,907,902,907,892,899,891,908,903,897,901,897,902,895,889,900,621,608,619,648,628,617,620,635,626,608,605,602,602,604,595,603,590,612,608,605,604,606,605,590,613,596,606,616,618,603,623,609,613,618,611,614,627,620,615,617,610,616,602,612,608,599,608,616,606,604,616,601,600,617,613,587,596,589,597,586,593,592,591,593,594,595,590,584,593,592,590,588,588,598,592,582,571,571,571,570,582,567,570,575,570,814,788,805,791,826,825,805,803,822,831,821,811,615,648,637,637,621,645,622,635,619,635,538,542,545,533,533,526,541,539,534,1015,1030,1034,1038,1031,1025,1019,1028,1025,1052,1044,1018,1046,1024,1033,1040,1025,1049,1015,1019,1045,938,921,930,952,925,924,914,920,932,939,936,924,885,858,879,876,867,877,871,860,876,881,882,868,885,874,872,874,885,631,633,620,614,621,618,622,647,628,637,622,998,963,977,969,963,976,965,965,988,980,970,970,971,963,987,960,994,976,958,876,877,889,899,878,884,896,878,898,891,1078,1083,1058,1061,1067,1062,1072,1089,1069,1079,1064,1066,1065,1075,1084,1083,1073,1081,1070,950,938,940,955,945,939,955,950,946,942,987,974,993,977,989,982,984,987,985,987,984,997,846,876,846,872,862,847,872,875,857,872,864,863,864,867,840,532,537,542,525,543,539,556,542,540,547,537,528,536,544,541,561,554,530,546,543,534,655,652,660,652,654,651,657,651,663,653,654,714,710,710,731,711,716,725,728,707,719,942,957,952,765,767,774,762,763,766,751,770,758,762,774,763,766,765,769,762,756,615,589,613,599,601,584,580,604,593,551,546,542,544,543,544,559,540,551,543,546,548,986,994,998,999,973,963,994,979,997,991,991,995,974,992,983,964,967,956,961,974,958,961,959,955,967,962,970,975,958,969,961,963,977,964,965,970,956,964,976,795,781,795,781,776,790,792,785,779,789,787,762,779,785,796,555,540,564,547,541,543,542,538,552,547,542,550,553,541,554,557,542,547,605,586,589,608,594,596,591,598,591,594,595,592,605,588,589,597,589,982,969,966,961,946,957,959,947,962,952,952,971,977,971,981,955,976,956,958,973,980,823,816,807,819,810,827,817,818,824,827,817,821,808,821,832,824,823,820,648,620,634,625,622,622,612,630,620,615,621,616,621,626,616,629,624,615,629,728,760,747,755,744,739,736,761,742,747,746,758,738,754,748,744,743,745,637,627,649,633,640,635,641,629,645,583,593,583,587,588,578,592,578,590,588,591,591,584,580,580,583,577,586,574,582,583,588,576,574,892,908,907,905,907,895,906,904,907,903,908,878,899,893,909,897,907,891,904,890,980,994,977,994,977,978,998,980,983,984,995,985,985,986,843,838,850,844,840,849,854,848,601,611,599,609,613,620,602,606,605,598,615,601,604,613,602,608,617,603,606,976,1029,1004,993,998,1017,1023,1029,994,1024,995,1013,900,885,899,901,917,886,902,899,900,909,889,896,893,908,900,893,895,904,605,606,595,593,624,599,593,605,611,593,601,622,609,597,635,600,590,604,605,609,545,533,540,539,538,541,544,532,538,537,545,538,540,550,530,532,543,545,537,546,1051,1075,1075,1072,1055,1062,1050,1078,1055,1034,1035,1037,1057,1042,1063,919,920,909,927,918,906,917,918,921,931,921,927,929,918,898,908,925,915,919,928,929,910,921,924,915,915,611,608,606,620,619,615,611,611,629,599,613,626,613,624,611,609,613,633,617,616,585,575,572,572,563,570,575,570,580,568,571,581,583,578,569,566,977,940,962,960,947,961,963,942,953,933,937,875,869,881,875,884,883,893,867,890,876,878,890,873,879,877,888,897,880,608,611,607,604,608,618,609,603,589,606,600,610,600,606,592,1021,1048,1062,1035,1035,1043,1040,1042,1063,1071,1067,1052,1042,931,938,936,931,923,938,921,920,926,935,932,933,927,935,1111,1109,1105,1115,1116,1110,1117,1111,1098,906,899,896,899,922,909,915,913,914,901,906,912,914,915,911,993,993,1004,981,985,995,988,989,878,883,904,881,890,883,883,882,882,885,884,872,878,659,648,659,658,663,662,656,651,666,666,666,666,657,667,877,878,869,891,866,898,893,881,880,877,799,808,802,788,791,799,614,620,621,622,615,617,631,613,621,621,625,620,613,611,1077,1076,1064,1082,1078,1069,1057,1046,1070,1065,956,934,956,947,941,962,951,948,950,951,939,940,950,951,947,938,867,861,853,855,850,855,864,855,862,852,848,868,863,857,859,850,856,996,1003,1003,1010,994,1009,987,993,1002,1001,906,901,913,920,913,911,912,907,745,725,740,729,728,736,741,737,738,736,751,732,624,632,627,624,626,812,796,802,791,810,794,795,803,808,801,788,983,989,989,978,996,978,993,987,986,990,992,854,837,858,849,855,845,840,851,852,854,849,849,856,844,855,842,604,607,612,607,608,589,611,612,618,607,601,607,617,602,581,603,993,1004,1004,991,856,877,870,863,874,871,862,855,860,971,978,987,979,979,959,982,979,974,973,971,809,817,806,806,824,817,802,788,809,806,817,799,805,800,568,573,565,569,570,560,558,564,572,567,557,564,559,560,552,572,570,584,574,573,578,563,559,563,560,560,557,566,561,562,1099,1073,1104,1085,1102,1106,1087,1077,935,951,944,944,936,948,938,930,931,948,945,935,944,950,930,964,926,925,944,932,570,587,567,573,573,587,584,576,604,575,587,593,568,613,580,587,562,583,566,577,530,517,520,525,512,526,514,516,517,1048,1020,1036,1071,1041,1047,972,998,982,987,965,992,995,994,979,979,989,985,971,998,872,872,877,870,877,883,872,871,874,875,876,871,882,866,758,750,754,750,749,755,751,752,756,761,758,757,752,762,750,753,761,758,699,716,708,718,703,720,704,715,715,729,725,714,713,715,706,714,636,645,646,652,635,644,636,656,656,643,644,636,644,641,626,635,620,611,626,632,618,1085,1087,1097,1095,1041,1103,1070,1122,1105,1115,1090,1090,923,920,928,914,903,922,912,907,931,895,926,912,925,914,922,918,916,628,625,622,623,616,622,620,631,619,621,1111,1134,1115,1099,1097,1115,1107,1111,1108,1099,1102,1118,1106,1102,1139,957,964,961,951,955,960,959,949,952,956,976,964,973,955,960,1080,1094,1075,1080,1089,1075,1087,1075,1067,1069,836,820,670,672,657,661,666,659,670,676,683,682,665,660,662,655,674,680,685,685,668,661,677,670,667,669,658,669,675,1083,1083,1078,1092,1087,1064,1073,1069,1068,1084,1061,1095,1087,1089,1051,1072,1082,832,851,868,852,853,827,850,847,864,860,848,838,580,567,565,564,579,589,579,581,568,576,569,579,575,572,578,560,569,569,570,562,574,588,563,575,568,1048,1030,1030,1017,1022,1019,1009,1015,1007,1003,1018,997,997,1010,1002,1005,1013,1007,1002,1022,1013,911,906,904,913,918,897,894,908,908,915,922,907,901,904,899,902,906,904,628,617,633,623,622,619,621,612,618,619,644,633,588,575,569,574,575,573,583,572,567,574,578,583,591,577,574,570,563,556,560,566,545,550,549,542,557,554,566,562,566,556,1065,1067,1033,1063,1076,1065,1052,1078,1071,931,929,948,932,936,931,932,941,940,937,923,938,932,939,859,858,845,846,861,866,848,849,858,850,862,961,977,964,969,966,967,967,975,979,983,978,971,962,960,948,968,923,915,924,908,906,907,908,918,906,900,906,927,594,593,593,600,589,622,597,608,595,608,587,611,603,929,927,926,922,936,922,920,977,971,957,968,985,975,962,959,970,960,900,910,891,895,911,903,883,913,886,899,887,905,909,894,880,884,867,879,885,890,906,884,628,644,645,649,641,628,633,623,643,640,634,664,644,640,632,630,556,537,547,543,531,544,667,676,675,657,677,683,683,666,660,657,666,663,662,663,670,662,669,667,940,958,964,950,944,953,940,953,949,957,952,962,948,946,960,957,959,950,956,962,935,958,978,967,953,944,953,876,884,893,889,856,851,860,856,850,856,853,854,848,844,850,853,913,910,905,900,898,896,901,904,896,902,897,894,973,957,970,969,966,964,972,977,966,964,965,964,969,968,968,972,957,967,967,857,845,839,832,847,825,834,856,858,826,872,831,854,842,852,840,840,842,1084,1071,1061,1092,1079,1083,1101,1090,1072,1094,916,900,881,890,900,909,884,866,895,902,899,894,890,891,908,895,576,582,563,597,581,585,572,585,566,585,582,572,583,577,864,866,860,848,864,862,868,870,856,885,861,856,872,697,704,666,682,699,687,682,693,677,691,698,692,702,684,684,689,697,682,695,684,690,609,613,611,610,620,622,610,620,614,610,619,608,956,940,952,933,931,973,936,957,953,934,951,951,953,667,698,685,694,696,682,662,1010,1005,1011,995,996,1005,1001,1008,1021,1011,998,1001,1003,872,869,866,1007,1003,1007,992,1003,992,1003,1009,998,1002,1014,944,944,941,939,937,934,948,935,932,942,945,946,940,791,787,784,787,789,792,788,801,736,752,750,737,754,729,739,746,748,737,639,628,641,635,629,636,628,632,631,647,626,632,625,634,807,805,807,809,803,815,813,811,807,802,815,805,819,789,803,806,626,609,620,619,618,629,618,638,620,618,616,562,557,571,572,559,564,553,573,563,561,562,564,565,571,558,940,956,936,937,951,932,943,923,933,924,692,713,706,706,719,699,703,711,691,710,693,702,716,682,754,775,769,771,784,752,771,769,767,762,759,777,757,661,649,648,658,658,664,656,663,662,665,657,639,644,634,623,620,620,629,626,634,624,625,624,621,622,624,620,611,609,610,615,610,602,616,607,612,825,823,809,829,837,831,808,830,825,829,624,613,622,630,610,623,618,600,604,637,618,557,565,550,550,570,558,563,556,558,571,559,565,728,742,724,720,722,716,697,725,718,729,712,718,725,715,732,717,704,699,716,710,956,954,960,972,970,950,968,980,970,971,964,969,972,1026,1022,998,1018,1006,1008,1024,1014,1025,1015,1024,1009,997,1001,1010,995,1007,840,845,844,838,830,842,846,854,584,589,583,583,588,591,591,599,587,581,596,918,900,897,912,911,918,915,909,886,884,897,902,898,899,899,908,913,916,931,927,928,922,916,911,923,936,929,921,919,933,918,933,917,959,965,962,957,953,956,955,954,963,955,965,957,956,961,965,958,844,840,826,850,839,830,837,835,810,806,806,813,802,810,799,817,814,811,809,816,797,913,918,919,923,908,909,920,920,914,916,920,917,955,960,965,965,964,968,970,967,967,971,978,975,834,826,833,823,818,838,840,841,824,844,839,838,829,824,833,825,822,820,1000,1000,1002,995,1000,1000,1003,1002,995,992,1008,991,1014,1010,1013,877,901,892,889,880,898,883,881,892,893,890,881,892,894,890,972,973,990,978,992,990,993,987,984,994,985,991,873,871,866,863,858,872,878,871,866,876,855,858,862,856,867,858,856,860,864,863,857,863,865,876,779,789,796,772,776,777,771,770,773,787,781,783,783,779,609,601,597,611,600,616,616,613,614,615,608,609,604,598,616,610,606,608,595,616,611,616,607,612,605,616,601,612,607,617,616,614,614,614,603,609,617,615,614,608,597,602,600,602,605,600,933,962,947,956,950,945,942,950,1002,994,1002,996,991,995,994,1010,987,1000,871,883,882,856,854,857,875,857,881,880,870,894,865,578,589,590,595,607,586,592,590,608,623,601,580,607,563,553,582,570,562,575,575,575,570,570,581,565,569,579,571,584,575,573,908,904,901,910,925,908,898,904,914,921,905,903,896,1049,1048,1043,1045,1033,1049,1041,1057,1041,1045,1053,1045,1050,1043,1046,1050,1049,879,874,885,898,896,898,991,995,983,983,987,984,989,974,983,968,978,990,982,979,983,985,836,852,841,843,848,856,844,847,842,852,857,836,1012,1019,1027,1011,1022,1010,1009,1016,935,920,940,936,943,918,923,940,939,922,924,937,938,936,931,941,954,932,932,929,710,716,716,709,706,705,720,728,710,706,713,698,723,727,622,621,616,621,608,627,615,627,614,631,798,814,809,812,797,815,809,818,811,816,802,670,662,670,661,687,644,659,674,657,657,667,660,657,672,668,577,581,580,581,576,583,576,591,575,705,702,705,707,726,696,703,702,703,698,709,705,711,708,704,712,666,669,665,670,667,665,680,673,676,677,663,946,926,928,948,943,950,945,950,962,956,948,945,710,692,689,673,706,686,706,696,718,700,706,690,690,692,683,702,701,711,711,811,829,815,811,815,824,808,825,821,815,823,843,1002,986,996,993,999,997,992,994,1000,986,996,993,990,1002,989,997,953,958,961,945,956,972,968,959,957,962,975,955,963,851,852,851,834,822,834,825,839,832,847,823,838,829,854,836,956,952,954,941,840,828,829,837,837,843,837,840,844,839,847,842,601,604,596,598,601,595,601,586,596,612,592,595,994,982,989,990,975,1002,1003,1015,976,984,981,982,991,990,986,989,980,999,993,983,828,814,837,827,819,840,843,827,835,834,819,837,827,821,842,823,834,819,626,644,630,618,606,635,631,631,624,624,630,621,611,616,616,604,611,600,606,615,615,602,606,604,602,602,606,611,611,608,595,606,1005,991,1017,1011,1011,1037,996,985,994,891,905,887,902,879,898,904,896,881,898,919,889,892,891,886,896,817,817,826,807,822,814,920,926,928,931,944,929,941,943,929,918,925,935,926,924,922,921,916,924,922,912,995,1000,993,987,1001,990,997,993,1000,993,999,992,986,998,992,827,840,844,839,834,849,836,828,840,844,1014,1003,1008,1041,1023,1015,1034,1028,1020,1025,1017,922,914,917,926,915,915,917,916,914,918,907,607,589,592,608,602,595,596,580,604,582,596,609,597,598,592,584,604,602,552,558,552,554,555,557,556,560,548,553,565,551,549,556,552,1028,1058,1045,1017,1050,1028,1035,1040,1023,1039,1047,1019,1040,1021,1018,1022,1026,1045,1030,1068,1038,1046,924,927,923,915,924,926,922,918,905,926,927,930,929,728,718,762,736,719,734,723,746,729,721,739,726,723,739,716,721,911,903,901,912,907,910,908,901,913,867,871,862,876,866,876,873,892,858,868,866,859,866,874,949,955,941,946,940,936,943,952,936,826,824,836,836,843,830,827,823,825,828,820,605,620,611,619,601,609,595,624,606,618,615,617,613,619,608,614,1069,1028,1047,1021,1029,1045,1033,1019,1022,1015,1028,1037,887,904,906,900,918,898,917,904,908,912,908,621,638,619,631,640,619,636,613,628,630,612,631,631,623,603,603,608,603,607,608,607,594,596,602,598,608,602,598,594,592,605,602,593,620,615,615,611,608,607,612,615,612,610,612,611,626,952,955,964,971,957,955,976,967,974,972,968,974,975,966,961,959,843,858,851,848,850,854,849,849,857,582,594,606,610,611,602,593,591,601,588,587,583,595,601,601,614,506,514,507,504,522,501,519,518,503,514,517,523,520,510,516,513,502,528,550,549,543,527,528,547,562,547,556,540,558,543,550,543,539,659,652,649,652,636,645,652,655,649,658,651,648,644,647,661,644,653,656,655,648,1009,994,987,995,1004,1008,1003,1008,1014,1004,800,834,831,837,820,845,826,822,827,811,843,819,803,813,817,834,558,532,538,553,544,529,539,549,541,536,536,541,538,1108,1056,1106,1075,1060,1087,1095,1087,1114,958,974,967,977,980,978,969,968,976,961,970,971,964,986,955,994,967,972,1060,1067,1040,1073,1053,1062,1044,1057,1075,1016,1015,1009,1013,1004,1017,1012,1022,1010,1014,1018,868,862,843,847,851,864,858,847,865,857,861,851,850,869,855,857,867,622,630,622,638,625,626,621,843,835,818,834,839,827,832,838,840,840,832,824,836,835,836,840,841,686,670,684,688,688,678,693,685,673,683,676,678,848,857,849,848,859,840,864,854,841,853,837,853,842,848,859,837,853,842,997,1007,991,993,989,992,996,981,990,986,981,996,998,844,850,856,854,861,859,864,862,853,925,944,940,958,931,928,937,928,944,908,932,990,999,987,989,987,1001,997,1005,988,988,988,996,1000,979,991,848,853,839,850,866,870,850,868,856,864,859,860,863,854,883,868,861,847,856,999,1000,995,1010,999,995,986,998,993,990,1011,990,809,819,786,804,804,813,823,799,800,806,799,811,807,816,816,795,811,821,601,621,620,634,624,621,615,611,625,625,613,622,627,626,630,617,632,975,982,993,984,1000,986,991,1005,998,990,993,992,977,994,982,992,776,776,780,787,774,773,787,779,782,779,780,776,785,785,765,778,949,955,951,943,957,948,949,953,947,948,952,949,951,945,961,949,956,952,951,957,943,952,880,885,874,879,878,883,877,876,893,813,822,817,823,827,806,828,670,668,650,685,662,659,654,684,646,662,808,826,833,845,839,833,828,845,821,826,826,821,834,837,852,845,986,1000,992,975,994,983,981,989,981,981,987,857,827,844,846,829,852,828,839,836,856,848,962,954,968,965,967,959,965,973,850,862,867,867,852,867,858,866,868,864,863,849,864,1075,1051,1051,1047,1062,1049,1045,1071,1048,1050,1039,1044,1053,1060,1050,1058,1043,1052,1047,1044,1067,1053,1046,1049,875,877,887,879,643,639,625,628,651,631,625,637,636,639,627,622,645,639,789,789,795,786,779,798,788,784,785,790,798,799,773,804,788,791,784,773,780,802,785,791,644,654,653,638,647,661,665,646,641,643,608,596,601,595,601,605,600,602,603,598,612,602,604,602,606,604,604,1121,1119,1120,1113,1118,1073,1101,1096,1125,1124,1117,946,939,943,921,933,956,935,941,941,934,939,939,939,938,975,975,999,989,991,980,993,981,992,978,994,842,857,852,865,859,850,852,632,632,631,624,621,628,635,628,622,625,626,637,635,1161,1125,1144,1148,1130,1112,1145,1135,1142,1141,1139,1160,1150,1167,1121,1134,1117,1154,881,881,893,865,897,881,875,880,893,898,881,889,863,883,878,902,893,885,650,665,659,665,661,656,656,659,650,655,667,655,650,676,824,815,823,827,813,811,813,819,814,820,821,806,825,823,838,811,728,729,721,732,728,726,731,730,727,730,740,728,728,731,733,728,724,727,590,602,593,601,596,606,603,601,592,598,594,513,514,513,508,520,511,505,528,503,518,524,520,524,517,522,525,518,520,523,525,508,518,614,628,623,637,621,612,622,627,623,626,630,621,619,624,609,621,630,633,634,638,640,624,633,624,639,636,637,639,633,633,634,630,625,637,635,629,632,629,634,978,970,964,981,957,982,987,967,973,963,962,962,834,798,803,817,808,803,789,793,789,799,781,806,783,788,574,586,604,580,580,581,580,582,583,581,585,579,578,592,573,582,588,582,962,935,949,937,943,938,941,945,951,931,943,942,930,957,764,766,758,773,776,774,780,941,928,941,939,948,934,938,930,930,931,932,936,942,931,929,886,892,886,897,893,892,892,902,886,887,898,883,951,937,945,952,956,948,948,957,948,942,944,950,956,948,955,943,943,945,962,947,861,871,870,876,859,868,865,870,869,857,872,865,941,946,910,936,946,919,919,942,941,933,934,971,924,959,970,953,949,972,965,953,966,969,962,969,961,958,950,964,960,980,860,882,854,870,871,874,872,871,876,859,893,879,857,882,867,868,876,869,863,870,881,603,624,620,606,627,627,614,620,1091,1086,1086,1096,1069,1094,1087,1105,1074,1074,1097,1079,1086,1071,1084,1098,1061,959,964,973,965,965,975,985,950,962,963,973,979,969,966,899,889,885,877,879,887,889,893,885,885,885,885,884,875,879,892,877,881,708,715,711,707,701,708,702,714,711,710,695,702,703,885,897,880,877,879,902,883,892,890,884,887,899,881,889,884,894,882,879,841,843,846,855,848,842,843,656,658,652,653,663,656,667,659,666,661,659,660,656,648,665,648,830,859,834,835,840,835,839,841,849,857,863,847,849,841,840,852,858,729,719,727,721,734,725,724,725,716,709,731,715,710,719,716,950,951,949,936,929,922,937,937,917,919,940,948,919,935,930,936,926,974,968,980,965,970,959,997,992,983,1001,998,997,994,999,1005,997,1006,991,984,993,993,988,878,874,850,883,881,856,869,872,880,595,587,597,614,590,608,594,599,608,608,591,585,590,627,605,617,618,610,621,611,620,608,622,633,601,623,1087,1103,1109,1086,1089,922,930,922,910,933,912,912,922,922,933,922,1036,1046,1037,1043,1049,1050,1046,839,867,839,860,855,877,846,854,828,849,848,852,860,541,567,550,550,551,556,541,546,656,646,654,659,652,664,651,655,656,642,643,660,644,649,656,656,738,746,741,748,751,728,741,743,725,737,728,724,722,729,743,753,644,649,640,656,645,645,650,651,650,647,641,1031,1037,1027,1028,1047,1027,1045,1025,1037,1018,1039,1016,1038,1013,1032,1037,1043,1020,1020,1032,909,896,891,905,896,899,903,885,888,896,891,880,893,899,956,998,978,976,1007,1012,986,985,982,1007,1001,990,988,991,977,1014,974,984,998,993,1111,1102,1094,1088,1109,1094,1118,1104,1108,1111,1101,938,941,936,945,933,941,941,916,929,937,950,937,951,933,943,953,962,960,947,969,945,924,940,895,886,887,906,894,887,891,889,890,892,977,994,990,987,988,994,985,978,972,870,862,846,828,846,834,849,852,843,981,954,975,996,966,953,972,976,957,968,972,994,948,974,960,985,983,975,971,968,964,963,965,969,970,838,842,851,842,847,839,838,851,845,854,862,866,866,870,866,884,862,788,794,790,783,770,797,793,787,784,779,780,785,622,622,621,636,624,636,636,629,613,623,629,634,622,621,614,621,1049,1060,1048,1055,1043,1055,1046,1028,1068,1049,868,861,867,850,864,856,860,869,853,867,852,860,856,872,623,626,612,605,616,624,614,605,618,611,625,608,615,604,1054,1055,1045,1060,1059,1055,1082,1077,1052,1055,1055,1069,1052,1069,1057,1057,1060,913,899,904,921,923,893,909,893,963,978,970,950,968,1004,965,988,963,962,966,976,967,992,992,992,1003,985,1000,996,986,995,992,989,1000,999,999,882,888,889,888,890,895,890,886,883,892,899,874,892,889,903,665,654,683,688,671,671,669,670,671,683,663,664,669,679,683,670,668,664,672,665,658,672,601,604,602,605,590,601,594,594,602,599,592,592,597,600,592,1031,1058,1055,1065,1050,1062,1040,1077,1033,945,938,941,947,962,957,955,950,933,792,813,795,795,798,812,801,789,791,797,798,798,800,647,635,642,634,635,642,629,664,609,597,615,601,599,603,605,604,601,595,600,606,602,608,699,711,701,714,699,708,706,698,695,688,699,705,688,703,692,695,702,693,688,689,696,687,697,681,690,685,692,687,700,691,689,689,607,604,605,607,606,606,602,600,848,854,850,858,857,845,854,851,849,846,848,859,858,855,845,847,864,654,657,665,664,672,680,675,664,666,664,671,673,660,668,671,838,857,839,872,855,843,843,826,862,857,682,679,702,696,697,698,685,692,701,691,703,615,615,620,623,625,614,619,617,623,608,618,622,612,621,622,617,617,1034,1025,1037,1031,1024,1063,1024,1034,1024,1031,1064,1038,1032,1052,1030,1024,1038,1058,918,909,906,909,927,904,923,910,882,921,929,901,912,921,909,914,920,905,845,837,836,832,839,839,838,834,848,825,833,840,826,967,960,959,953,967,965,955,961,963,965,962,955,965,924,918,916,918,919,916,908,925,918,919,909,928,935,940,953,940,931,934,939,945,938,933,939,931,943,941,944,936,941,940,945,935,850,827,840,826,844,824,835,833,842,841,1015,1026,1020,1024,1018,1032,1029,1011,1023,1018,1017,1019,1019,1022,905,895,893,902,896,897,908,888,907,907,901,894,1063,1069,1075,1073,1074,1072,1075,1069,1075,1086,1078,1054,1075,1081,1077,1071,1080,896,910,895,895,911,908,899,905,904,888,902,906,1002,1012,1006,1012,1000,1013,1009,996,1002,1008,1012,1016,1007,1005,840,845,839,832,836,835,856,854,838,845,836,952,961,946,942,945,981,947,934,977,956,983,988,988,989,986,991,988,979,988,1003,1007,1002,994,1005,1008,996,818,814,807,814,821,814,828,816,819,811,813,828,810,832,812,818,824,818,802,822,813,836,820,560,552,554,560,553,562,560,554,569,551,558,550,973,993,968,971,992,971,994,981,977,976,983,970,985,964,953,947,958,948,935,951,951,948,997,1006,990,997,997,991,998,978,998,992,1003,984,1005,984,887,889,889,895,894,881,888,896,908,601,622,615,619,617,623,602,589,579,599,596,600,590,598,590,585,581,587,593,582,600,594,601,635,620,612,623,627,628,621,624,613,619,620,624,620,622,615,615,858,858,856,862,852,863,862,885,849,853,632,621,650,636,629,626,635,635,566,565,568,568,571,565,566,570,555,570,572,578,562,568,563,574,564,1022,997,1028,1002,1005,1000,999,991,1011,987,973,990,1002,684,675,689,683,676,683,692,687,678,681,686,687,693,699,681,704,675,675,1007,1020,1017,1000,1028,1040,990,1002,997,868,846,865,854,844,870,861,855,606,613,594,594,600,611,603,604,601,616,619,615,609,613,606,655,662,652,659,658,654,665,650,667,652,661,653,652,660,659,933,938,933,925,931,929,939,933,937,943,946,940,937,809,810,803,815,815,810,823,807,757,754,769,746,751,756,770,773,774,766,761,750,752,765,600,600,595,598,611,594,593,600,597,590,595,597,591,933,959,923,933,922,938,941,930,952,942,946,941,945,967,973,986,967,964,980,975,983,965,986,982,975,978,783,791,786,778,791,792,813,783,595,578,586,592,587,576,583,593,582,605,588,586,588,595,594,586,596,594,1076,1063,1086,1083,1053,1069,1057,1085,1065,1102,1062,1059,1072,1066,1089,1057,1066,1082,1077,1065,960,959,959,969,823,816,815,817,823,825,622,600,619,615,620,602,599,610,612,610,629,623,625,614,631,619,618,606,639,501,510,511,510,501,516,515,515,510,510,524,574,583,581,589,578,586,591,566,576,564,576,581,577,586,577,891,883,910,889,881,890,906,907,897,889,912,905,881,908,948,956,961,961,969,959,962,962,976,954,964,961,955,978,964,958,955,866,871,859,871,878,855,871,847,866,860,885,873,861,860,591,573,570,593,594,584,585,583,573,1014,1030,1007,1021,1018,1007,1020,1008,981,1002,1025,1007,910,911,905,915,915,921,926,903,913,924,915,911,932,914,919,909,920,907,908,925,926,1011,1008,997,1015,1003,1002,1012,1019,1014,1012,996,1008,1017,878,868,881,871,881,872,890,865,886,871,890,888,888,885,888,890,888,886,887,879,891,772,765,789,784,779,767,797,771,774,778,781,773,775,599,598,602,589,599,611,608,582,609,610,616,596,612,612,613,608,606,591,591,606,578,590,573,575,589,586,587,582,585,576,588,581,581,580,861,851,871,884,853,861,882,868,876,835,854,749,755,755,759,758,756,762,751,752,751,587,588,587,592,593,577,585,591,595,569,547,536,539,550,538,535,530,543,533,969,1021,1006,985,999,983,1026,1007,1018,1004,965,964,966,984,973,975,979,976,957,954,975,992,976,972,947,979,978,988,589,597,585,581,596,581,567,581,594,592,570,583,573,581,565,587,578,574,572,586,577,581,598,624,626,608,602,614,615,615,611,617,614,614,607,620,621,898,919,908,902,911,912,917,910,907,904,902,1010,1006,1007,1006,1000,1007,1008,1009,1010,1007,1023,1001,1012,1015,995,1007,994,1002,991,1002,994,1006,1009,1008,1009,1001,866,617,598,608,627,596,608,588,596,612,606,590,564,555,550,557,561,552,566,548,551,550,551,820,852,865,861,851,860,881,866,848,687,700,682,687,687,689,689,683,633,646,631,629,636,639,640,638,641,636,647,644,646,635,638,631,633,638,641,636,640,850,849,857,850,847,863,852,872,850,855,865,844,859,855,857,847,867,891,895,884,897,887,895,893,896,881,902,889,877,932,954,949,943,942,938,939,940,948,941,943,953,956,943,943,925,846,851,848,836,828,838,829,832,836,828,840,845,847,632,627,628,644,641,635,634,614,642,629,630,629,816,803,797,810,801,804,806,807,797,807,809,991,950,978,950,971,959,966,978,965,958,854,857,855,838,842,852,859,865,871,614,616,623,607,624,615,622,601,620,611,608,612,628,610,616,626,616,1003,983,985,1022,979,1016,995,994,999,1001,991,985,1011,1006,1001,1001,993,901,912,910,902,910,902,919,916,910,907,921,908,899,905,901,688,691,672,700,687,695,700,683,688,687,665,692,614,616,617,621,618,627,614,611,615,606,611,944,973,972,989,959,971,953,962,976,970,974,973,1022,1030,1012,1021,1015,1007,1035,1023,1038,1013,1028,1020,1019,1022,1029,871,855,865,863,846,854,863,873,879,851,843,859,1052,1046,1039,1040,1038,1057,1033,1035,1030,1030,1016,1035,1041,1024,1034,1054,1005,1012,1000,1011,1013,1011,1004,1001,998,989,853,859,842,860,854,854,838,858,840,854,841,858,853,855,854,857,993,998,1012,1005,1015,1002,1007,1019,1001,1022,1014,802,828,798,809,775,811,802,795,791,823,807,808,590,609,605,605,594,614,612,594,603,601,596,596,1116,1158,1133,1110,1128,1137,1106,1128,1107,1116,1119,1114,963,951,979,942,959,959,951,946,965,963,972,956,933,961,609,609,616,608,593,600,592,607,620,611,589,616,601,910,911,923,900,882,900,895,896,893,911,931,951,929,931,947,938,951,954,941,940,951,925,943,865,853,866,882,858,871,879,873,890,878,868,848,867,1140,1133,1120,1145,1139,1140,1148,1148,1144,1145,1138,1131,1124,1135,1146,1136,1142,1148,878,897,922,899,902,905,891,894,591,589,614,591,580,599,597,599,593,590,592,602,586,600,590,614,645,628,623,620,626,620,621,625,631,617,624,626,623,618,624,627,1140,1153,1119,1140,1156,1128,1126,1146,1135,1151,1129,931,908,922,929,915,932,935,903,924,913,929,903,901,924,915,920,639,669,648,642,630,644,645,638,653,645,643,647,618,630,646,635,638,717,717,725,734,732,738,734,712,734,741,736,737,727,735,728,732,648,653,651,640,642,645,638,645,636,636,650,640,635,635,634,639,643,604,598,597,612,604,610,598,608,612,601,613,935,943,963,956,950,945,923,939,927,937,946,928,925,931,929,953,944,947,945,960,937,933,938,934,928,916,911,916,911,931,904,894,903,907,915,922,910,924,921,931,918,919,911,924,924,926,925,930,919,926,929,973,975,984,982,981,982,981,993,984,979,969,986,974,992,973,977,868,864,876,863,881,857,867,857,882,854,860,617,624,642,614,614,624,614,622,640,630,631,573,564,566,564,561,571,562,567,569,560,565,573,612,616,624,617,614,610,622,629,617,620,617,620,625,625,615,625,608,612,600,602,615,612,599,607,600,619,603,612,617,610,603,889,899,877,862,878,896,899,875,884,884,899,880,900,626,640,638,639,651,647,637,632,633,644,641,637,630,630,632,611,553,570,566,568,565,563,561,560,568,565,572,566,567,568,579,893,904,893,881,915,895,883,908,887,922,907,917,888,898,898,889,911,931,930,928,924,922,917,929,912,914,929,919,931,938,941,936,951,948,930,945,946,948,941,923,937,941,938,942,941,854,844,850,862,864,863,859,840,861,858,871,850,685,678,684,686,687,694,684,706,686,686,684,691,955,958,934,980,954,953,968,965,986,946,956,882,849,861,847,844,850,863,863,870,868,851,853,862,852,866,865,859,854,1042,1040,1051,1045,1036,1051,1040,1046,1046,1048,1046,1045,1042,1049,889,884,893,889,881,896,879,896,887,892,893,887,882,891,878,886,877,893,888,938,934,942,966,955,929,931,954,938,936,943,940,952,954,946,943,949,945,955,949,955,946,952,954,800,793,792,793,811,814,790,796,782,780,810,790,807,797,610,613,614,612,616,605,611,611,596,607,620,604,602,601,966,984,963,958,971,971,969,974,978,974,976,972,961,974,973,738,746,735,747,743,737,746,831,829,830,845,831,841,817,836,837,810,830,923,923,926,915,923,921,925,930,918,919,914,925,934,919,911,907,899,901,900,911,916,908,906,896,909,910,899,903,915,913,903,825,838,831,835,818,829,834,822,819,833,825,1006,1003,1003,996,993,997,998,1000,997,995,999,1003,902,904,901,896,893,913,893,894,902,910,1006,1025,1034,1024,1026,913,909,907,905,920,900,913,912,917,621,629,633,625,615,634,543,553,553,556,536,535,542,545,543,551,541,538,546,550,553,555,554,548,556,534,558,546,558,550,562,551,551,563,552,546,551,710,719,713,702,725,714,721,718,709,720,724,723,705,705,707,700,713,717,744,752,728,737,741,733,737,746,754,739,736,748,745,745,754,1210,1255,1225,1240,1236,1201,1254,1201,1251,1214,1232,1225,1242,1208,1237,1208,1231,1244,1018,999,1017,997,1024,1009,1000,1026,1024,1013,1030,1004,1017,885,890,892,899,881,907,879,889,901,891,895,902,897,901,885,890,887,903,897,898,897,900,905,903,895,900,895,899,890,956,955,948,955,952,845,831,855,851,846,845,837,853,845,845,840,839,844,840,831,852,998,1014,997,1001,1002,997,996,991,1002,1004,1004,991,907,905,916,915,913,914,913,906,910,911,744,758,767,755,765,755,763,752,777,764,767,750,774,728,726,729,733,737,727,712,735,734,726,988,982,996,982,990,988,995,991,989,999,976,849,850,846,852,843,845,839,841,852,851,852,990,972,984,982,987,990,992,987,988,990,987,995,985,982,975,986,855,845,847,837,836,843,842,847,847,871,844,848,851,604,605,599,601,607,608,599,595,613,593,603,590,591,589,592,588,583,595,592,586,585,588,594,585,558,557,566,556,562,556,562,557,555,562,559,550,591,601,590,611,598,602,599,594,603,600,599,593,621,619,618,622,633,616,626,624,621,644,632,627,634,629,580,573,583,573,578,583,584,574,583,585,573,579,578,579,579,1058,1053,1069,1045,1044,1062,1038,1051,1030,1059,1051,1033,1035,897,911,896,893,883,908,899,908,888,894,889,903,878,878,886,910,899,898,594,581,581,593,586,1011,1016,994,983,1012,992,996,1008,989,1011,939,946,939,941,947,941,948,938,923,924,942,935,931,937,939,926,928,926,919,930,925,929,937,922,926,810,798,801,805,793,807,796,787,805,786,800,794,797,805,850,873,855,871,867,882,894,892,899,900,885,905,901,894,887,888,880,886,871,910,902,900,921,938,931,948,943,942,940,945,935,933,940,938,941,934,939,934,935,934,933,938,933,990,988,990,988,988,989,988,987,1006,983,984,980,980,980,1002,983,980,895,894,879,888,883,888,887,637,611,639,630,611,612,608,615,612,614,628,624,615,655,643,645,641,633,637,648,645,634,626,646,641,617,643,638,648,629,627,631,632,638,630,630,626,635,630,629,911,911,903,902,879,907,899,1006,1010,985,1008,997,987,1007,996,1011,1004,1010,1009,999,1009,1021,1005,1006,1001,1000,1008,1042,1046,1053,1030,1030,1048,1037,1042,1045,1038,1051,1034,1033,1050,1043,1041,1005,1009,996,997,1004,1015,1004,1006,874,852,855,846,849,870,620,597,599,601,588,589,604,595,594,593,596,594,596,581,603,595,597,596,595,588,587,597,599,596,604,726,706,695,704,696,704,694,718,709,700,693,700,700,627,623,628,626,622,625,629,633,630,923,914,912,917,920,919,917,914,905,914,936,910,666,690,695,682,673,657,686,680,661,681,682,690,660,696,682,689,679,694,693,1098,1089,1080,1093,1098,1089,1077,1079,1083,1075,1089,1102,1094,1096,1093,1111,877,882,887,893,892,881,887,890,903,885,897,888,889,897,881,903,884,881,889,888,863,890,893,611,629,636,639,626,633,619,626,630,631,633,619,619,631,613,616,628,623,629,619,592,597,600,606,613,599,596,601,610,970,981,979,981,981,937,980,987,986,998,988,973,919,912,912,918,910,904,910,909,913,920,923,911,901,705,685,722,714,698,702,715,714,710,714,704,708,704,714,715,718,712,662,694,675,676,671,667,665,682,680,850,852,842,855,853,857,838,868,868,859,865,857,875,793,768,774,783,778,777,785,786,784,781,784,785,781,789,783,779,648,629,648,647,635,647,638,649,652,635,643,644,647,656,644,1005,995,978,998,1010,997,1005,980,993,988,977,1003,985,981,982,1000,937,952,936,945,935,947,945,930,936,935,923,946,939,934,936,941,966,957,967,961,981,965,972,959,968,961,955,974,974,965,965,962,968,822,824,813,830,813,830,809,827,829,838,832,809,820,918,933,945,936,925,944,920,932,929,995,975,979,977,978,984,980,984,840,826,833,818,829,831,835,815,841,829,828,841,822,830,822,819,826,818,822,838,831,838,985,989,977,982,988,984,1001,994,1000,983,971,977,861,859,865,867,853,863,859,853,849,853,844,853,865,849,858,854,851,841,859,864,866,860,863,853,861,853,991,974,987,980,975,970,984,983,979,966,971,983,991,986,883,882,883,879,884,869,884,866,889,892,579,577,569,586,585,575,601,566,578,597,552,544,549,551,557,550,535,553,556,559,543,541,544,548,990,973,997,979,995,959,996,974,967,977,1004,990,981,968,993,983,970,954,952,953,943,952,945,954,963,951,947,948,964,1044,1042,1045,1042,1047,1034,1051,1042,1033,1047,1041,1038,1036,1038,1033,1036,826,826,814,802,806,826,816,806,802,588,587,586,592,573,581,583,584,582,565,589,582,584,914,917,896,918,911,908,943,919,916,901,920,932,915,926,910,912,929,911,921,911,924,706,718,707,716,718,708,701,717,717,868,876,858,859,868,863,873,868,877,859,875,869,871,872,857,862,648,649,649,654,639,655,676,646,660,666,636,659,641,655,664,651,665,780,780,785,780,770,770,770,774,775,785,768,782,766,763,772,775,778,773,785,940,928,948,938,937,946,936,933,940,938,946,941,938,939,940,932,933,898,910,901,901,905,903,912,904,912,902,903,899,901,907,898,907,901,904,943,942,949,958,951,955,962,952,956,946,957,953,951,946,950,948,949,952,960,952,948,938,955,843,830,834,806,848,848,842,840,827,857,820,823,820,842,850,870,847,1021,1016,1011,1017,999,1014,1004,1012,1010,1003,1013,1005,1003,1018,906,907,892,895,921,898,889,889,893,1006,1000,1004,998,993,1000,996,1003,1005,999,1006,857,865,849,860,852,849,869,860,844,856,808,813,821,824,808,819,812,820,610,593,607,614,621,602,620,603,615,599,612,600,617,601,611,622,602,606,606,606,570,565,582,575,577,578,574,581,567,568,568,579,565,577,569,568,570,572,1112,1095,1128,1111,1092,1104,1122,1106,1099,1099,1123,944,942,973,960,944,949,955,959,951,961,951,771,753,772,756,768,762,769,757,760,754,760,758,764,764,764,767,761,767,761,714,718,696,710,704,698,716,702,717,699,692,711,875,889,893,873,871,878,877,878,877,875,881,888,917,906,897,923,914,911,920,916,911,927,917,921,911,908,929,999,1000,984,993,995,994,997,1000,997,997,989,987,1001,994,997,848,858,854,857,861,866,849,831,849,847,856,599,603,590,600,617,607,601,594,600,603,592,606,613,603,602,623,617,620,615,625,614,619,1116,1093,1065,1086,1069,1080,1052,1107,965,960,973,979,945,963,957,953,958,953,962,964,957,945,953,970,972,983,963,904,919,909,901,911,915,907,904,631,633,633,632,638,644,637,647,633,644,1043,1067,1025,1025,1035,1029,1031,1033,1044,1034,1025,830,818,810,835,838,859,850,844,846,845,832,831,838,828,830,837,578,588,582,572,589,571,575,584,591,586,584,571,573,586,590,579,578,882,915,895,897,897,903,882,896,906,893,886,907,876,884,892,906,894,660,645,679,668,649,655,650,647,649,640,641,659,572,567,566,573,573,582,582,568,560,591,592,591,594,596,605,600,588,596,582,588,589,599,586,592,590,587,581,609,1110,1119,1105,1119,1102,1124,1125,1124,1124,1122,978,973,975,984,968,968,971,970,976,970,886,886,887,861,874,858,844,837,847,843,853,842,835,838,842,906,892,895,879,880,899,889,899,901,903,904,895,889,889,829,833,840,837,818,814,814,839,819,829,821,836,831,820,818,836,838,833,830,646,655,659,649,653,645,661,652,639,651,653,652,639,657,664,653,866,863,861,878,863,863,848,870,874,879,871,875,881,876,869,873,755,728,743,735,735,746,742,739,753,742,750,994,1000,990,988,984,977,1002,993,987,988,989,981,992,965,996,993,795,809,798,791,804,815,796,799,812,794,793,817,557,578,584,556,568,552,543,570,570,563,556,578,568,564,558,571,572,565,571,570,572,577,551,559,564,563,561,572,570,564,1018,1006,1000,1015,1011,1036,1018,1011,1014,980,973,988,966,990,971,965,971,979,970,968,980,988,856,860,844,853,847,838,865,837,853,854,839,847,846,846,837,632,603,599,613,609,613,617,610,612,610,616,612,529,537,547,532,523,526,533,540,533,520,542,540,678,673,663,671,672,673,684,675,659,668,658,664,650,669,668,658,659,660,658,887,867,886,875,882,881,889,911,894,886,899,906,911,903,910,911,903,908,910,905,913,890,901,898,905,895,894,895,896,890,897,899,884,891,896,1036,1045,1047,1048,1045,1045,1035,1050,1053,1045,1051,878,875,887,869,874,881,864,867,875,879,869,634,631,645,631,634,635,638,619,611,632,639,627,635,640,634,634,628,633,626,628,643,638,646,636,640,636,627,642,947,971,974,971,991,971,987,972,989,965,974,975,972,965,919,925,922,923,931,914,928,925,923,920,915,925,922,918,921,910,917,923,927,920,929,917,912,915,811,818,831,828,835,835,826,833,825,828,820,833,826,817,827,669,676,664,648,664,655,660,671,656,671,904,901,911,922,903,917,913,919,918,916,916,891,901,990,1003,993,993,1010,995,985,989,999,987,991,999,986,1002,987,1005,998,992,990,998,990,908,905,906,912,902,898,897,914,904,900,899,908,757,758,758,761,759,755,764,765,767,756,763,767,770,762,757,761,664,653,660,665,647,655,669,652,664,654,643,656,654,655,665,646,669,654,800,811,786,797,807,820,807,815,810,805,821,822,810,819,832,819,839,818,812,740,732,745,747,737,745,743,739,749,737,742,746,596,579,581,605,586,597,583,586,586,583,588,604,593,578,596,590,584,547,547,542,550,545,545,547,542,534,547,550,540,1030,1041,1044,1052,1029,1049,1023,1076,1037,1050,1054,877,860,845,877,866,880,595,599,598,599,601,602,597,593,594,613,600,600,604,596,597,603,594,596,600,1075,1058,1069,1085,1057,1068,896,920,914,913,909,901,915,916,912,908,912,914,905,575,581,551,555,561,568,563,571,548,563,567,550,568,560,570,569,565,994,1016,1000,988,982,1003,1006,924,930,931,928,922,927,922,932,943,930,926,926,623,627,647,621,621,636,630,640,630,630,628,646,656,641,627,645,634,656,638,644,648,648,643,634,630,625,626,636,638,627,641,641,989,988,986,978,987,981,988,1001,997,986,998,994,992,987,991,996,1005,988,902,881,891,904,901,894,888,904,905,891,896,903,890,899,893,904,642,675,659,650,662,666,661,646,646,641,644,644,657,667,657,626,625,629,623,625,623,891,916,910,908,908,920,915,890,913,919,884,900,899,899,915,911,911,683,691,701,685,680,704,675,680,689,692,692,691,694,703,674,711,876,869,872,870,864,874,880,855,861,880,869,878,865,860,872,867,878,870,861,668,663,667,662,650,662,661,804,790,793,788,611,614,614,616,629,625,616,630,616,627,518,529,512,528,516,529,523,527,526,524,593,594,604,599,589,592,595,600,598,592,603,593,586,592,603,594,595,590,596,596,659,661,671,666,674,664,659,664,661,666,668,658,658,668,656,665,671,658,669,657,882,860,868,865,872,876,853,873,868,877,877,728,722,736,727,735,736,735,593,599,600,601,594,597,603,589,594,588,588,596,598,594,512,510,500,501,504,505,521,513,509,515,507,512,521,588,592,599,597,598,601,595,599,596,591,598,601,598,600,608,593,611,609,612,591,606,613,606,607,611,964,963,974,958,956,955,971,966,975,964,860,876,872,877,873,886,882,873,886,887,864,876,880,886,883,876,885,880,890,886,887,872,884,783,814,787,801,793,808,813,804,808,796,802,800,785,800,939,924,884,915,900,940,913,897,905,899,927,887,906,932,923,926,929,917,915,916,928,912,914,928,916,915,983,960,961,976,965,962,971,964,966,976,964,972,960,960,967,828,832,813,834,823,836,836,834,832,836,812,833,826,822,779,769,769,778,768,782,770,782,779,786,774,787,779,779,782,774,777,647,648,637,663,647,656,646,658,652,648,652,635,612,608,601,613,608,613,602,603,604,595,604,603,601,607,608,608,607,606,612,668,662,658,668,658,670,666,667,674,663,666,680,671,874,880,880,884,883,862,877,881,876,879,868,884,865,941,928,930,922,925,924,919,905,938,928,926,932,918,936,918,932,935,925,935,931,927,930,935,929,934,938,930,936,935,774,775,757,762,766,756,776,763,766,762,787,778,549,553,553,557,551,550,553,565,546,569,566,559,556,554,562,546,556,583,587,582,588,578,570,582,584,576,573,576,582,581,591,588,594,612,604,604,605,605,612,605,604,605,611,617,604,606,606,599,616,594,593,602,595,591,586,596,587,596,585,591,591,598,575,576,565,573,572,571,564,578,565,574,570,570,573,573,562,1045,1049,1035,1054,1042,1039,1015,1055,1055,1034,1057,1023,1028,1045,1048,963,950,949,935,930,947,939,967,953,958,975,961,957,968,968,967,967,963,965,966,967,962,969,967,860,849,853,850,844,857,859,856,847,844,860,849,852,838,851,849,860,852,843,914,906,912,900,908,900,899,915,910,909,912,912,916,821,834,836,826,836,820,817,827,833,815,850,543,543,529,533,546,555,536,548,546,556,554,542,554,546,559,529,587,590,588,590,599,607,592,586,602,578,607,595,611,607,590,590,963,964,952,960,972,995,961,960,975,971,737,731,728,717,730,736,733,736,727,712,736,747,726,729,718,724,746,724,740,703,713,722,847,859,852,860,840,848,851,834,867,855,952,967,971,955,967,965,974,964,974,962,974,964,975,972,964,844,838,839,845,841,836,843,834,842,845,840,840,836,837,853,846,960,978,975,977,975,971,966,984,977,888,893,896,893,897,891,899,903,892,732,725,713,718,718,730,697,719,716,717,709,724,946,936,951,951,949,935,953,922,946,942,942,939,942,943,967,963,958,965,963,954,969,973,979,970,957,971,953,965,955,969,764,755,760,755,758,754,749,755,763,762,740,753,766,764,774,783,746,767,774,775,578,571,592,583,579,578,576,570,592,577,590,580,580,590,580,584,990,994,982,1008,988,970,983,988,978,998,1014,996,1015,997,987,1008,986,1003,1001,1007,939,931,934,935,945,945,935,939,921,932,941,930,937,940,947,942,951,932,946,958,952,955,962,963,963,950,958,957,967,951,953,859,860,846,841,864,847,845,690,680,674,675,679,674,695,678,694,682,690,678,669,693,689,684,694,906,924,915,910,916,899,903,924,907,920,906,909,920,955,941,938,922,935,950,931,937,936,943,1014,1003,1008,1010,1018,1010,1010,1016,1016,996,1008,1020,1017,1010,891,905,889,887,897,903,901,886,875,892,893,891,887,890,832,838,830,840,838,836,837,839,841,829,825,836,836,828,665,654,653,669,669,658,676,660,814,806,817,800,817,796,798,816,804,817,806,794,795,672,667,682,673,670,672,667,679,670,671,671,688,697,684,685,696,676,694,682,680,693,686,688,618,618,600,608,609,609,610,616,605,597,613,613,613,621,612,609,617,611,1027,1021,1002,1003,1019,1004,874,880,874,874,885,876,881,882,870,867,886,865,878,603,586,590,608,582,601,601,588,593,591,594,604,602,597,596,599,584,588,605,590,606,941,678,667,642,663,650,649,656,644,680,581,584,592,580,586,588,584,583,579,599,594,579,594,584,592,1051,1062,1054,1010,1055,1038,1028,936,949,944,946,959,939,953,949,942,954,941,941,952,943,959,957,953,952,954,940,949,979,996,996,989,985,988,991,984,1002,984,990,992,995,985,993,1006,992,999,870,870,865,874,850,865,859,866,879,862,854,920,942,934,947,940,939,939,957,921,936,943,933,935,953,944,939,891,882,886,894,890,891,886,888,894,886,891,894,894,742,754,754,752,752,759,752,752,759,753,754,751,750,642,663,649,657,663,655,661,665,660,667,652,659,656,654,662,657,853,856,871,844,841,849,769,775,765,772,779,767,782,771,773,780,789,767,763,779,601,594,558,565,562,555,560,566,814,809,825,818,833,821,840,820,832,821,805,824,836,827,626,646,639,630,637,637,639,623,640,616,641,655,643,623,642,629,629,577,579,564,576,574,568,573,583,1026,1015,1035,1015,1035,1011,1023,1010,1027,936,937,937,937,944,957,938,933,919,946,940,934,934,935,933,934,955,951,953,935,946,954,954,940,947,942,965,946,948,952,941,955,814,828,817,822,609,620,616,617,624,615,619,619,613,615,612,620,622,620,625,760,763,752,761,761,764,758,762,755,755,756,756,752,763,755,758,770,762,763,763,633,634,632,620,645,654,627,637,643,643,628,640,600,610,600,600,603,606,600,602,599,604,599,596,605,604,615,601,607,617,637,643,637,631,635,643,632,629,641,639,628,632,637,644,629,631,897,915,907,899,915,899,904,918,916,912,904,922,899,913,693,693,705,689,706,693,685,724,697,728,708,705,719,691,698,692,777,783,765,773,771,765,783,769,762,779,766,770,770,656,659,648,670,666,649,657,661,646,661,645,652,656,662,657,670,671,616,589,607,612,598,612,602,600,940,922,932,932,933,918,931,950,932,931,943,941,935,946,941,948,961,954,962,964,952,961,955,976,963,974,845,839,863,856,854,842,856,862,865,846,868,850,851,613,606,594,609,604,597,600,597,617,602,602,612,615,604,613,668,676,661,665,669,649,660,672,665,669,663,668,672,664,662,604,609,607,605,600,603,606,602,613,1128,1149,1133,1113,1111,1127,1146,1136,1126,1125,1123,1135,1128,1107,915,918,936,920,917,925,909,933,944,926,943,616,612,585,603,593,589,599,594,611,590,591,590,561,574,574,576,570,569,570,571,582,573,568,992,992,989,992,975,920,928,922,931,909,917,925,912,917,903,915,908,897,906,910,915,910,912,907,904,908,905,916,759,756,751,760,756,765,756,755,777,753,765,755,766,740,755,563,563,559,568,559,561,563,565,565,848,834,828,846,814,857,854,849,835,853,856,827,848,837,844,838,834,645,618,641,598,629,631,617,617,650,643,623,622,623,620,630,625,546,554,551,554,546,562,553,549,556,557,551,561,557,965,980,950,947,964,951,954,974,888,890,890,896,901,904,889,895,882,902,902,893,893,901,938,952,944,940,945,944,946,947,957,965,950,944,956,933,874,878,866,872,870,866,874,864,869,861,873,878,863,719,710,722,723,730,725,709,715,727,720,712,724,715,710,735,719,712,708,690,705,705,711,714,719,708,709,706,707,711,706,706,708,699,718,592,579,605,603,583,600,598,586,595,575,587,584,588,587,584,583,583,587,585,577,584,571,576,578,594,586,576,580,915,915,915,920,929,898,895,906,811,824,806,815,808,815,823,824,835,815,812,829,618,621,610,614,623,617,617,604,611,615,609,620,609,995,987,999,982,993,986,981,995,982,988,979,1001,994,995,987,837,810,838,826,816,830,814,806,833,973,976,967,977,966,974,965,973,969,971,977,987,976,974,856,859,863,857,854,842,854,853,866,841,841,844,853,976,979,966,985,984,973,976,979,979,971,967,977,834,842,853,832,837,844,847,856,856,601,601,596,599,599,605,595,588,599,595,596,597,609,599,598,591,595,583,583,576,594,592,594,579,587,590,591,552,548,538,554,555,542,550,547,548,552,542,545,554,550,543,587,589,589,589,588,587,590,591,593,585,588,591,610,601,591,595,604,608,602,604,601,605,602,611,601,907,908,919,920,927,928,916,920,920,918,921,940,964,942,949,962,964,957,964,952,960,947,956,960,961,956,952,857,844,860,844,857,851,862,854,846,863,866,854,831,851,842,908,896,896,893,889,888,903,899,896,838,857,855,849,852,867,845,846,848,842,857,839,853,846,841,852,849,844,842,854,843,843,691,692,696,716,685,700,685,864,846,857,853,862,879,871,861,847,871,868,869,850,857,735,736,724,727,739,736,913,911,925,933,915,930,932,925,931,923,946,971,961,957,960,954,955,957,947,957,958,957,970,958,947,868,882,874,865,871,867,878,875,871,868,889,873,872,714,719,708,717,702,711,718,708,725,717,719,689,718,712,725,941,939,958,938,951,941,935,926,943,956,932,943,951,957,955,959,964,946,949,957,965,966,955,953,771,758,786,767,569,574,571,568,564,572,589,572,569,560,563,567,575,571,614,599,607,615,602,603,606,625,621,627,607,612,607,622,622,598,613,606,607,594,943,941,949,966,938,927,968,936,942,928,939,950,932,921,939,933,928,946,931,931,932,939,938,949,905,907,900,913,910,901,894,903,895,894,904,904,811,789,788,790,779,779,778,780,771,781,794,923,916,922,904,924,921,903,919,926,838,835,836,829,843,847,829,830,835,853,836,896,931,932,932,934,940,943,932,933,920,927,914,922,977,973,983,975,980,977,972,982,986,986,980,968,963,975,977,981,985,968,859,865,847,856,860,872,850,855,849,866,873,852,849,859,871,863,859,855,846,859,619,619,606,621,612,622,620,635,612,645,604,626,625,611,615,604,598,597,594,588,582,591,598,586,600,584,591,585,597,593,586,599,593,586,598,593,592,683,660,658,663,664,647,657,656,653,647,656,659,649,669,658,898,897,922,898,907,899,899,899,886,915,898,895,894,894,757,755,755,753,756,772,754,751,765,743,758,755,579,575,584,593,598,601,588,578,590,591,607,592,590,601,597,588,586,557,548,546,540,540,544,1080,1095,1071,1067,1078,1068,1069,1087,1082,1083,1045,1067,1068,1095,1063,1062,1073,944,951,960,970,973,949,962,953,962,966,975,977,623,639,637,646,627,643,648,645,643,630,621,638,618,631,558,570,559,546,565,550,558,549,559,562,558,556,556,551,558,562,585,600,603,587,604,594,594,595,599,587,584,597,594,594,593,582,586,594,593,596,593,588,593,589,575,581,570,573,576,581,582,579,855,851,829,852,863,842,849,834,828,836,842,860,823,811,677,687,672,671,671,676,668,661,686,689,677,669,693,687,687,684,674,671,689,691,708,694,602,615,605,618,613,613,607,607,607,616,608,928,912,924,914,921,917,920,920,918,940,902,916,900,921,939,929,914,903,954,937,941,934,952,944,947,932,953,950,947,928,932,952,961,948,952,948,930,1045,1043,1033,1051,1057,1045,1052,1060,1040,1045,1052,1039,1045,1047,1053,1057,1047,1057,1058,1051,1057,1057,1043,1046,1055,850,838,840,856,822,846,845,848,835,857,836,850,630,634,612,616,617,612,624,625,607,629,626,640,632,637,629,646,635,641,637,633,635,629,625,638,641,630,635,970,948,957,972,983,980,973,962,974,969,958,984,948,946,944,944,946,935,934,922,928,929,927,926,917,927,930,923,924,932,930,943,953,948,943,942,943,933,935,942,950,942,936,945,935,942,947,933,965,958,965,957,956,964,966,946,954,957,946,949,952,840,834,839,854,845,858,838,835,846,852,825,842,842,825,838,828,855,840,583,600,603,583,601,592,599,585,594,597,613,600,598,593,606,617,605,1071,1012,1014,1034,1013,1050,1029,1050,1052,1053,1051,1036,1041,1033,843,842,841,822,860,876,829,848,862,857,850,837,844,863,858,866,575,588,577,577,569,573,569,575,561,560,576,562,561,573,571,572,577,582,579,566,585,592,583,592,582,579,580,599,575,575,880,897,885,869,891,874,890,898,889,888,894,902,890,887,864,860,896,899,910,677,696,696,691,710,683,699,686,716,675,698,683,691,692,580,583,581,580,584,580,988,970,1010,1001,1008,1014,1011,989,994,1016,993,999,1006,1012,924,935,926,951,960,938,938,945,944,933,940,930,947,935,963,941,815,817,827,826,812,814,829,812,821,802,752,752,752,752,745,750,749,746,752,757,753,754,759,745,754,742,741,613,627,604,625,617,618,609,609,619,546,555,546,542,548,546,542,551,539,580,583,583,588,593,582,577,591,582,590,582,588,592,652,654,660,649,660,660,658,655,662,650,662,668,651,597,601,595,599,599,598,606,598,601,1075,1084,1073,1096,1057,1071,1046,1088,1102,1084,1076,1069,1065,1078,1089,1078,1075,1068,1039,1075,952,937,935,938,928,936,944,919,921,939,940,933,934,936,946,928,927,929,915,931,895,916,913,909,908,904,948,948,958,856,860,836,875,863,862,864,873,873,861,842,867,863,630,638,636,645,650,638,648,644,632,646,641,635,629,628,1013,999,1012,997,994,998,982,994,1003,996,986,1005,988,999,1003,999,991,988,1005,1000,996,1000,851,843,838,848,857,860,852,846,852,856,675,670,676,676,672,670,649,667,666,667,855,860,867,866,882,800,789,781,789,794,797,803,796,789,792,789,797,792,788,798,796,794,792,641,649,651,635,649,628,634,644,643,650,642,820,825,835,835,814,841,1014,1005,1019,999,1001,994,1008,991,992,972,965,957,954,957,965,959,952,953,957,966,810,820,818,812,819,813,811,598,596,610,602,610,586,598,597,601,600,617,623,538,527,524,536,525,532,525,542,519,526,538,533,667,657,669,660,676,661,667,677,671,679,657,665,666,651,657,656,670,667,676,676,667,680,674,669,687,676,669,679,675,678,1069,1089,1068,1088,1095,1076,1078,1094,1073,1104,1094,1112,908,909,908,911,937,910,893,930,626,581,603,604,612,576,609,623,609,616,595,594,553,569,559,561,573,562,557,575,567,561,571,577,575,577,582,556,568,569,564,573,573,876,889,889,896,883,879,895,873,917,894,870,890,890,882,887,1019,1002,1009,1025,1005,1011,1006,1019,1022,1007,1010,988,1012,1022,1017,1004,997,1015,1022,1011,822,823,860,825,826,814,838,828,847,848,813,844,817,828,821,510,532,520,509,511,517,527,532,554,535,536,532,552,532,870,873,853,890,850,876,857,880,860,854,875,637,652,638,641,641,639,643,664,639,621,618,638,637,647,626,654,639,637,560,561,578,565,566,574,923,896,905,906,919,897,901,890,907,904,922,742,731,729,745,723,726,730,733,706,716,729,783,784,791,775,782,783,782,790,796,780,756,752,758,742,750,746,765,751,757,749,745,759,759,753,744,754,643,625,630,627,643,630,647,644,646,636,632,631,633,637,637,641,830,831,836,812,831,833,825,832,727,728,737,742,729,734,742,730,727,736,732,734,734,1032,1024,1017,1036,1045,1029,1022,1022,886,895,861,896,901,894,871,891,880,891,901,887,894,881,902,883,880,890,871,898,962,967,978,975,969,967,963,966,969,978,966,970,974,971,962,971,801,797,805,812,788,782,800,823,800,787,802,792,802,797,590,593,597,608,593,605,598,598,606,590,591,584,605,592,587,592,1164,1203,1162,1175,1128,1176,1140,1177,1190,1200,1163,1183,994,984,987,992,1012,997,1012,981,998,990,991,984,1003,1013,995,1001,1000,1006,1001,996,1006,1000,1016,1008,1019,1002,855,853,850,862,858,874,874,864,857,863,851,861,650,671,660,665,668,661,660,660,661,656,657,658,666,655,660,651,654,660,649,660,650,650,658,657,667,653,900,899,881,878,881,904,893,908,892,887,901,909,879,792,792,793,779,782,793,791,788,789,786,606,596,619,608,599,609,613,618,625,610,614,596,609,612,612,1086,1100,1069,1077,1083,1090,1077,1082,1091,1072,1105,1091,1104,994,1016,1001,1028,1008,1010,1005,1011,996,1026,1012,1001,1009,876,855,866,878,861,863,875,866,874,861,870,861,817,820,815,806,816,795,804,808,809,806,825,822,818,816,616,612,610,623,615,609,629,627,617,619,621,631,618,619,610,626,620,624,577,570,572,571,571,574,581,566,571,568,575,576,885,891,887,890,898,878,893,901,883,896,897,877,892,872,897,932,946,930,932,954,942,942,927,955,940,847,854,856,846,862,860,856,860,852,857,848,624,626,616,611,609,605,615,614,612,617,611,621,566,556,553,538,549,546,554,552,549,554,544,551,538,558,556,563,560,1001,992,1010,992,1022,1006,1012,990,1001,1023,994,980,987,1000,972,1000,997,998,978,989,1008,1021,1013,1009,1015,1021,1006,1020,997,1015,1020,1014,1021,1009,1001,855,854,862,844,863,844,860,864,854,859,873,862,857,846,854,863,848,846,920,922,930,950,936,901,934,951,930,928,940,939,941,938,936,928,938,926,832,843,844,839,843,828,838,821,853,836,836,635,626,641,642,636,640,643,634,626,623,646,641,637,636,1077,1081,1071,1068,1079,1068,1069,1077,1103,1066,1049,1063,1076,1050,1041,1084,1068,1072,1098,1051,919,910,915,911,916,913,911,910,905,912,902,910,903,916,670,672,661,676,669,668,670,683,675,676,674,683,671,893,889,886,897,889,898,894,889,889,891,900,892,895,886,916,900,893,908,900,884,902,762,758,761,769,765,763,767,769,764,764,771,761,763,622,611,599,597,606,605,604,616,608,622,601,550,547,547,550,546,558,547,544,542,549,540,554,551,549,551,539,544,549,553,558,558,567,553,554,548,558,558,552,557,556,560,1128,1122,1090,1129,1123,945,962,938,948,954,952,948,951,953,960,956,949,950,946,956,960,638,634,661,633,650,645,639,628,647,645,632,554,563,569,559,568,572,561,564,552,535,540,546,542,540,543,537,540,533,542,1086,1135,1076,1112,1131,1088,1104,1138,1108,1099,1117,1140,1121,1095,1115,1109,959,970,947,975,966,982,960,979,965,970,954,964,968,1044,1064,1046,1062,1050,1057,1064,1058,875,876,900,882,896,892,864,880,569,551,552,551,558,553,569,557,551,539,541,544,539,572,561,566,547,557,617,591,618,618,595,620,591,609,614,632,617,611,619,614,603,611,1012,1021,1007,1000,1015,1024,1025,1005,1024,1006,1023,1038,1023,1011,999,710,707,707,701,709,694,704,716,721,704,712,694,1029,1032,1047,1032,1038,1022,1032,1032,1040,1032,843,847,859,869,854,853,864,868,840,866,864,862,850,855,865,624,598,608,614,606,618,610,608,610,604,619,607,611,601,605,607,589,610,1005,1012,997,1020,1009,1011,1006,1026,1020,1020,992,905,902,908,905,886,892,910,895,881,913,909,916,652,652,633,643,650,639,647,640,654,659,647,648,936,939,940,927,933,916,943,951,918,939,934,921,942,939,922,945,926,922,663,678,671,685,694,685,689,657,662,663,977,1009,986,984,1004,1005,1003,996,987,1000,987,996,1013,976,981,996,995,985,887,876,903,889,871,878,905,619,585,612,613,618,592,591,608,610,626,616,582,605,590,597,583,598,607,586,591,562,547,562,557,553,565,549,558,560,558,553,1074,1064,1069,1034,1075,963,954,968,960,938,946,955,953,947,943,960,973,962,957,954,948,954,949,954,958,621,611,602,615,612,608,628,603,606,612,607,610,610,625,607,623,612,604,597,599,601,601,594,599,599,592,598,607,595,602,597,599,608,989,987,944,971,950,957,980,967,966,954,950,974,941,948,852,866,868,863,865,865,867,860,866,986,996,979,992,980,983,983,986,986,904,901,894,882,902,893,906,891,891,888,898,905,633,648,633,643,643,640,638,648,645,638,648,643,653,652,622,620,617,621,625,614,1080,1053,1086,1095,1063,1055,1071,1074,890,895,878,892,889,891,900,896,911,549,544,555,555,553,555,545,566,551,574,546,543,602,602,605,608,614,600,599,603,603,604,598,615,603,614,1060,1061,1085,1085,1046,1105,1071,1074,1108,1075,1073,1068,1071,967,974,965,957,973,969,980,961,984,961,970,986,859,856,863,850,860,857,850,855,864,839,846,863,849,990,996,993,999,1003,997,1008,1000,1000,1007,1003,892,901,908,898,918,908,924,903,905,898,902,904,906,904,922,914,910,917,913,896,992,1005,994,996,1007,1002,996,994,999,990,995,1004,1007,1012,1014,872,872,879,867,878,886,851,884,866,879,871,875,875,857,553,532,561,531,538,546,547,550,527,533,522,601,617,599,609,600,595,613,639,640,640,654,642,645,643,637,640,635,634,638,645,649,627,642,632,643,1100,1096,1091,1085,1117,1115,1099,1072,1101,1079,1088,1085,1099,1105,1077,1005,993,1008,1009,1018,1004,996,916,889,875,899,901,897,885,901,893,898,902,900,700,706,690,697,698,701,701,708,707,702,698,710,709,703,707,687,589,591,597,602,607,602,585,593,603,605,607,601,604,600,605,599,998,1007,1000,1027,1016,991,1004,1035,1010,1017,998,1034,1019,1029,998,860,893,866,862,862,843,879,865,866,865,873,984,993,999,980,994,990,989,994,994,989,991,996,988,994,859,868,860,879,860,857,859,851,865,878,864,857,855,857,868,867,598,623,602,603,589,604,613,608,604,606,602,589,607,589,604,604,610,1035,1025,1014,993,1024,1001,1009,1010,878,873,885,897,873,877,881,883,885,869,965,923,950,970,989,969,964,976,983,947,967,959,1001,1001,943,983,1036,1028,1049,1036,1046,1028,1036,1042,1039,1028,1027,911,913,912,927,910,932,904,909,907,930,917,901,920,915,901,912,947,972,970,934,981,949,968,947,954,964,946,946,957,960,964,927,925,933,925,924,934,924,827,818,809,832,826,813,817,808,824,825,1122,1126,1119,1091,1091,1126,1117,1119,1112,1118,1138,1094,1111,1114,1100,1098,936,931,930,917,936,933,942,937,930,935,929,942,925,692,684,687,690,689,674,665,671,686,687,695,686,862,857,866,868,678,680,674,668,675,663,668,689,676,661,676,665,666,611,623,610,624,612,621,617,617,613,605,617,622,614,904,902,891,912,902,897,898,895,894,905,913,912,916,904,906,739,746,742,740,759,757,747,750,751,959,981,976,968,964,972,980,1042,1040,1057,1044,1045,1049,1034,1053,1042,1039,1043,1034,1032,1038,1053,1036,1039,882,862,866,858,877,873,857,868,863,887,863,864,865,876,871,1040,1055,1056,1061,1039,1062,1037,1039,1053,1054,1055,1047,1041,1033,1050,1049,1045,1060,909,911,898,901,899,896,903,916,903,888,891,896,1002,987,1001,995,985,998,985,1007,993,996,994,987,989,991,1005,813,812,809,825,822,802,801,824,798,796,823,808,823,827,549,561,562,552,542,563,558,546,589,586,593,582,588,606,577,584,584,598,580,593,587,583,577,583,580,587,639,656,642,640,640,638,650,628,633,641,636,638,992,981,997,982,998,996,985,991,989,992,995,989,735,723,735,793,790,795,798,776,798,792,802,790,797,780,786,796,808,783,787,778,654,629,630,632,630,637,641,619,630,633,627,626,631,630,804,790,802,801,805,805,790,805,793,799,802,804,797,805,795,805,647,665,665,659,663,653,674,655,656,650,665,651,649,667,787,771,774,767,780,788,778,782,792,773,772,768,777,663,647,643,655,649,636,644,646,644,656,573,579,579,562,574,579,577,577,566,578,574,557,575,579,576,579,583,568,577,572,583,576,557,576,564,560,574,575,557,571,564,569,562,558,560,560,591,581,584,590,598,589,583,588,593,588,584,583,1004,971,991,1003,985,973,963,985,965,958,983,977,970,953,989,965,993,970,978,970,949,947,944,948,946,956,947,953,945,936,950,941,949,915,904,915,908,909,913,906,902,911,905,901,904,911,948,947,940,936,949,936,938,936,934,928,929,932,937,831,844,846,836,851,839,834,848,857,844,853,849,843,831,838,832,843,837,610,599,615,597,600,598,600,592,599,602,605,633,633,609,629,621,616,616,617,615,625,906,890,887,859,883,904,885,875,873,879,864,872,888,866,685,684,700,690,682,687,691,671,662,710,690,685,701,626,618,625,619,618,626,620,628,626,621,626,624,619,625,1004,1012,1017,1020,1010,1029,1023,1030,1017,1033,1018,1008,1010,1030,1056,1020,1030,1019,1022,934,915,922,921,921,930,941,929,920,921,934,926,976,981,967,962,979,970,970,970,969,973,965,855,863,857,853,843,866,860,871,855,863,860,617,620,635,636,619,624,629,626,642,568,565,575,568,563,570,577,572,569,573,566,584,575,579,574,563,582,606,607,597,588,605,602,590,592,589,598,592,592,658,666,664,670,640,645,660,643,644,652,665,650,645,656,648,641,631,641,643,628,635,645,635,645,636,638,630,1012,1034,1043,1014,1035,1012,1041,1016,1021,1038,1022,1014,917,915,930,928,921,932,943,928,937,929,941,920,926,929,940,942,810,810,793,798,819,814,800,799,807,815,804,810,784,808,800,667,658,643,658,664,654,653,658,651,647,652,650,650,653,649,613,604,610,591,607,607,606,596,609,570,575,572,578,586,574,575,573,567,577,572,578,573,575,565,596,591,593,591,591,593,605,593,603,602,600,599,598,604,599,615,612,604,618,609,604,613,614,619,613,612,615,612,609,614,613,620,603,613,596,593,597,601,597,600,602,595,591,604,595,596,589,605,599,603,598,595,648,652,648,644,648,653,651,648,648,649,658,659,646,663,639,654,657,651,642,639,640,639,643,643,629,636,635,638,636,641,646,626,629,634,636,641,632,629,633,631,633,991,978,1007,990,1008,980,1019,1016,1002,986,1006,990,988,994,983,982,987,1003,819,797,793,802,812,809,787,811,790,789,795,788,794,808,554,539,553,545,542,541,534,537,529,538,532,540,537,525,1009,966,980,1010,988,984,977,1003,957,964,998,1016,997,978,946,982,922,919,906,920,908,906,914,915,903,894,909,924,925,619,621,606,629,624,623,623,611,619,615,618,1029,1027,1034,1028,1033,1024,1022,1032,1026,1021,1016,1029,1023,1000,1007,1043,1019,1024,1028,1027,886,891,889,897,893,897,901,895,902,884,890,896,898,894,870,883,901,904,881,797,794,788,799,781,796,799,784,789,787,783,790,792,797,798,623,618,614,633,621,630,613,624,628,570,574,565,582,569,570,570,568,569,942,963,971,955,979,968,723,742,730,729,740,715,730,735,724,726,712,725,712,731,730,739,729,783,781,786,797,767,772,781,780,776,803,614,612,623,618,615,613,603,620,620,614,616,629,626,618,611,618,634,629,579,583,578,582,579,578,580,589,571,609,595,609,606,604,603,607,596,604,836,836,820,808,836,816,828,819,842,829,810,806,828,825,698,699,680,688,683,703,695,695,685,692,688,681,700,676,693,649,646,640,645,656,643,637,646,649,641,643,643,649,647,949,954,962,954,960,947,950,943,957,943,971,945,946,963,965,962,766,770,751,759,762,772,745,750,753,758,766,753,754,781,758,1005,994,993,1005,989,986,990,994,994,986,996,991,982,996,857,855,851,844,854,851,866,833,854,844,849,977,971,977,987,969,984,965,971,970,992,969,964,975,968,976,965,966,974,841,849,846,874,847,853,829,846,863,857,843,857,829,845,865,848,554,556,551,560,566,559,566,539,1095,1105,1059,1082,1077,1051,1079,1069,1084,1089,1077,1080,1089,1093,1085,980,963,996,996,993,985,989,977,989,972,976,806,815,813,805,805,799,812,804,820,804,801,803,800,620,604,601,610,602,607,610,612,622,602,590,609,625,616,620,598,615,603,554,549,536,539,543,547,544,546,537,544,537,592,602,591,599,612,586,577,608,584,583,586,591,597,584,593,603,605,587,1154,1178,1149,1173,1149,1156,1128,1142,1151,1145,1146,1150,1157,1137,1147,1174,1140,1152,1143,1153,1178,1165,1014,1023,1023,1021,1028,1014,1020,1015,1030,1009,1018,1010,1051,835,823,827,819,835,829,816,831,825,838,838,825,839,836,830,824,606,596,613,624,616,620,612,613,614,615,616,959,922,943,941,937,929,935,940,934,846,827,834,822,832,845,834,833,838,826,837,837,573,591,575,572,574,578,569,578,578,600,581,585,577,600,585,578,574,588,583,573,582,580,583,578,604,602,615,607,616,610,610,603,606,607,615,611,607,615,608,609,596,597,605,594,598,601,597,605,587,598,592,599,589,606,603,601,604,612,612,572,569,567,579,564,564,559,570,568,566,555,568,608,604,600,596,590,598,591,600,600,599,595,607,593,590,595,922,894,915,918,911,922,884,898,911,886,901,902,900,912,892,880,898,993,1014,995,1009,1002,1010,995,988,1005,996,898,920,915,908,902,900,905,901,916,916,899,918,666,641,636,659,662,658,661,670,644,642,635,648,571,579,589,583,586,595,581,583,576,573,589,564,584,584,579,1048,1046,1036,1015,1035,1023,1035,1039,1032,1046,884,896,884,884,872,895,876,889,895,908,888,890,874,873,894,882,983,982,999,1001,1025,968,1007,982,999,981,1007,996,995,993,976,992,1035,1037,1030,1023,1032,1032,1028,1018,1038,1032,1033,1032,1036,856,861,858,860,851,854,867,855,846,857,871,844,853,875,553,550,562,581,567,566,550,950,959,940,946,945,945,962,978,957,977,962,934,964,956,943,913,919,930,923,926,924,918,917,915,917,924,925,932,984,981,987,981,981,994,986,993,836,831,843,843,833,826,823,839,853,827,834,841,833,842,1004,995,1001,1000,993,1009,999,1010,1010,994,1003,999,1001,996,1012,1009,999,1009,1004,993,891,871,881,879,872,883,869,882,878,878,873,884,892,877,981,956,956,976,973,946,960,946,957,959,962,945,971,976,976,966,971,966,964,965,980,981,840,837,842,829,848,826,847,835,822,828,837,840,831,834,652,652,667,656,648,649,650,654,658,659,645,655,657,845,847,859,842,859,845,837,853,849,845,852,859,855,846,840,853,840,861,856,869,847,758,755,742,746,738,749,752,738,745,759,747,751,761,736,588,572,576,595,572,590,587,604,593,581,569,582,584,592,545,545,551,552,543,540,542,540,545,543,1066,1044,1042,1064,1060,1027,1045,1034,1045,1052,912,932,936,938,926,928,924,945,923,933,916,928,984,976,1007,974,977,978,992,983,996,971,988,956,994,950,978,972,972,970,967,955,957,962,961,950,951,950,962,951,866,878,875,869,871,871,879,884,885,881,864,882,875,870,881,877,881,876,719,726,714,727,730,724,741,723,727,727,735,735,727,716,634,623,647,647,638,646,639,638,632,630,646,638,640,642,630,638,645,645,644,636,646,644,646,644,641,608,605,612,605,611,602,609,613,599,605,596,600,900,889,888,892,884,883,910,876,891,888,886,696,693,708,698,705,707,704,695,712,686,699,696,692,694,689,869,855,870,856,892,876,869,859,792,785,801,789,795,779,793,789,798,793,802,789,788,959,957,966,971,965,965,969,966,969,972,938,934,931,942,933,926,951,930,941,944,932,928,900,894,902,897,899,899,903,891,902,898,896,895,902,912,909,907,900,921,906,907,907,910,911,911,904,905,903,917,907,901,914,907,918,922,930,922,925,914,915,940,946,950,953,952,947,957,943,852,849,840,838,830,832,847,836,828,839,850,848,837,836,838,669,665,655,662,653,651,665,667,685,666,668,660,664,884,879,887,895,901,892,882,889,910,892,882,882,931,945,936,947,946,944,939,943,943,940,927,943,938,938,943,919,916,926,913,925,927,933,919,941,936,947,948,934,938,942,945,935,945,942,952,932,942,944,956,966,956,967,961,960,964,964,964,963,972,905,892,893,894,888,911,896,879,896,745,714,699,717,707,707,735,711,721,692,700,717,724,701,724,711,946,938,953,929,949,948,943,928,924,915,940,925,922,913,927,920,926,939,920,930,920,942,948,937,941,947,946,946,932,1025,1025,1027,1037,1025,871,883,867,879,876,871,889,882,867,867,890,978,984,983,991,991,981,988,975,982,1001,1000,981,984,985,820,809,798,813,815,806,821,807,780,813,789,802,810,800,800,815,787,622,613,626,627,647,631,645,627,635,632,629,636,616,640,622,962,942,963,983,935,965,929,947,938,962,924,949,947,958,968,973,963,964,970,956,965,966,954,959,969,963,950,956,931,927,927,925,931,920,939,932,923,934,925,920,909,914,913,915,917,919,907,908,921,923,923,785,813,811,808,811,806,809,794,792,787,785,790,815,797,794,801,808,790,793,808,811,806,550,540,546,539,540,541,566,539,543,541,543,545,585,574,571,563,566,568,573,574,572,580,577,583,612,608,615,618,612,620,626,623,610,993,1012,1003,997,1002,917,921,919,922,922,918,837,823,828,821,832,829,822,831,804,826,834,829,817,780,758,757,763,764,777,750,760,762,765,758,759,765,751,769,758,760,759,720,730,721,725,718,722,731,730,731,727,731,726,721,716,717,717,630,641,637,637,637,636,631,625,626,624,639,634,798,804,812,796,799,830,786,797,672,655,672,664,668,664,671,664,661,672,657,669,666,664,677,660,651,619,610,606,603,617,602,607,612,620,603,604,593,598,593,601,598,605,599,601,601,591,584,585,562,569,561,564,556,565,569,568,571,565,560,993,969,978,987,973,956,996,1002,971,964,953,981,963,980,972,990,1004,996,999,998,1005,1011,1004,1012,1005,983,1012,995,1009,1005,872,893,881,886,894,622,613,607,597,611,592,605,587,598,602,635,630,607,614,601,548,545,549,534,547,543,537,548,543,541,538,838,819,845,816,811,841,833,824,825,829,842,830,826,838,810,829,622,630,621,624,638,629,600,619,652,608,617,624,618,540,560,559,561,551,545,547,561,554,548,557,558,549,555,558,537,565,561,977,963,986,971,999,985,964,980,993,889,917,914,902,910,881,897,907,903,913,909,907,910,915,899,912,895,984,987,990,994,997,988,991,996,992,1013,991,996,993,994,987,995,988,852,853,851,838,845,855,856,855,860,845,865,854,855,885,854,856,871,878,848,871,872,865,882,875,898,895,888,893,896,879,902,897,891,888,969,998,981,1003,978,986,981,987,989,803,795,819,812,809,813,800,795,780,818,796,793,802,788,831,555,553,551,563,567,551,546,551,553,567,544,555,555,607,605,585,582,589,604,613,594,600,594,588,603,610,596,1133,1137,1103,1131,1148,1123,1132,1138,1121,1111,1097,1114,987,997,994,989,988,993,842,833,838,848,828,844,847,831,859,848,847,846,835,898,910,890,905,903,895,906,902,873,873,866,863,866,869,869,873,869,864,870,869,871,876,871,865,1001,1001,1006,993,820,822,825,822,807,824,805,813,798,1058,1044,1046,1031,1042,1044,1052,1062,1041,1040,1040,1053,1035,1036,1037,1031,1049,1039,868,853,839,847,851,834,862,855,845,850,845,843,866,847,842,840,868,849,835,839,847,851,604,589,603,610,604,588,591,606,589,600,602,592,613,590,602,593,596,602,602,1085,1100,1088,1073,1110,1093,1065,1075,1101,1094,1084,1068,1080,1088,1082,1097,1072,1084,1080,1101,1091,970,961,962,956,959,974,953,955,967,949,974,961,967,971,973,966,961,982,985,970,730,718,714,712,707,726,721,737,728,723,740,591,595,585,579,579,581,580,596,518,502,495,513,506,515,515,500,495,573,582,587,581,576,560,571,570,581,581,570,583,961,976,976,969,993,985,983,975,957,964,967,977,975,966,964,979,756,769,759,749,759,769,745,754,754,763,764,745,777,889,878,890,872,885,879,897,875,879,878,870,858,858,865,855,853,861,867,914,901,904,907,900,911,916,904,904,907,901,902,825,828,823,827,829,827,832,832,826,823,628,632,637,629,632,635,631,633,625,626,628,615,632,629,609,757,792,774,767,792,774,777,775,674,657,675,665,659,660,657,657,665,663,642,656,614,615,621,611,614,614,606,966,986,985,986,965,969,965,971,991,980,987,989,909,901,894,902,900,895,912,900,915,894,909,907,904,905,906,910,961,937,951,949,958,948,944,952,945,955,944,948,950,947,949,882,882,888,872,880,884,895,890,885,886,758,739,733,746,745,757,748,741,737,738,732,640,641,641,643,638,632,627,633,649,658,648,637,640,650,798,806,799,794,794,783,797,774,786,789,791,798,791,789,797,813,788,791,806,798,612,595,615,604,603,598,609,611,617,612,617,605,522,521,524,519,521,525,521,522,523,536,536,535,524,543,619,622,627,625,625,620,621,647,644,637,634,628,639,636,637,631,634,906,889,909,921,886,907,907,899,888,898,900,722,683,699,699,696,701,695,703,683,704,693,688,691,686,696,741,762,754,756,753,768,759,761,768,975,954,974,958,962,953,969,953,973,955,1014,1011,1011,1006,1002,1007,1009,985,1002,1011,1004,1005,1007,1023,992,879,885,888,893,881,884,897,889,888,904,883,889,995,989,980,993,985,989,984,987,991,978,977,1009,981,980,984,974,988,890,889,904,893,902,897,897,898,902,892,897,900,898,898,894,901,909,890,586,565,556,572,582,569,571,562,559,556,569,556,526,540,536,535,550,547,540,532,539,680,668,668,675,678,674,677,672,685,680,684,681,671,692,676,666,665,677,686,657,682,679,717,716,722,731,723,716,723,723,701,704,711,729,725,721,716,714,978,971,993,997,973,973,978,984,985,958,995,971,714,731,707,726,713,705,699,701,715,703,710,733,714,710,541,546,552,550,555,546,555,553,573,549,554,547,544,548,561,558,513,518,513,518,517,511,528,516,526,518,517,524,516,514,560,553,565,560,569,565,565,570,565,558,566,555,563,558,555,559,560,558,557,561,558,556,561,570,561,560,561,559,581,589,586,591,587,581,590,569,575,623,607,588,574,596,571,588,604,610,600,584,600,581,583,593,604,581,635,634,626,631,630,635,628,623,630,625,640,623,641,628,624,640,633,630,573,558,551,555,553,558,560,554,559,549,564,558,557,1037,1016,1026,998,1002,1001,1002,989,985,1006,1014,1000,1021,992,993,1005,1009,985,1022,951,946,963,957,956,948,949,950,939,945,954,935,955,946,967,955,956,957,801,806,807,800,820,814,827,788,820,812,795,727,732,734,739,731,730,730,742,731,733,742,733,747,743,742,629,624,627,619,615,608,617,614,619,627,604,605,612,513,514,512,509,522,508,510,568,577,573,552,564,566,572,569,570,561,571,567,568,567,576,586,595,594,597,587,596,609,591,595,598,588,589,578,1081,1071,1078,1053,1075,1063,1089,1052,1100,1086,1075,1086,1062,1072,1060,1073,1063,1066,1091,1081,1068,830,820,849,846,850,842,833,844,850,838,831,578,550,556,560,563,561,568,559,575,553,549,554,568,552,558,553,561,551,561,558,1033,970,991,995,970,1001,985,1009,1020,982,1005,998,971,1027,993,997,957,1010,1007,988,980,964,951,946,956,937,954,946,966,942,947,960,936,955,950,637,661,658,673,665,647,644,648,642,669,685,651,658,791,781,778,791,796,801,776,781,777,778,787,785,798,611,616,623,614,620,621,627,608,639,622,620,627,630,616,625,629,612,622,611,586,590,586,588,585,583,593,582,583,580,586,583,574,579,598,1191,1200,1143,1237,1234,1207,1184,1188,1209,1251,1194,1226,950,945,953,945,954,956,942,954,955,983,935,959,969,940,987,996,1000,988,1017,1007,1000,996,1004,998,986,998,1004,996,997,1000,1005,845,839,820,843,858,844,833,835,850,906,918,919,919,916,914,910,914,912,919,940,921,939,928,941,938,927,937,925,947,827,830,849,833,830,820,832,849,826,832,840,832,851,599,603,587,595,605,600,596,606,599,581,604,603,600,603,584,597,610,589,976,956,972,988,978,992,971,948,971,981,971,994,977,969,976,967,980,979,992,985,993,973,984,979,979,987,817,815,812,822,807,819,812,803,823,806,814,837,816,827,815,808,830,811,828,818,816,815,643,645,623,634,621,636,634,636,642,616,620,627,625,616,612,617,614,618,622,612,612,626,613,622,621,619,606,629,621,958,965,967,934,968,952,947,985,943,937,949,935,949,913,927,920,918,922,920,924,913,924,924,932,918,914,921,917,921,913,920,922,923,785,751,786,782,755,770,770,783,785,778,758,561,573,566,549,550,546,546,551,545,540,564,556,561,639,634,645,648,651,644,647,645,644,646,636,633,643,632,646,659,658,658,658,641,659,676,670,665,656,647,661,656,660,661,649,1026,1016,1027,1017,1029,1022,1026,1014,1025,1015,1027,1007,1030,1047,1030,1005,1008,1015,817,836,817,838,838,831,836,642,621,636,634,625,647,637,641,646,777,790,796,786,799,795,803,794,790,812,793,785,784,753,748,740,745,744,742,760,748,741,736,746,748,595,592,603,598,593,603,602,594,588,625,605,596,603,598,614,594,620,611,614,555,574,562,560,562,560,566,564,557,568,562,561,565,568,565,569,834,831,836,843,827,839,832,853,844,850,852,649,634,629,640,638,624,624,636,637,628,630,629,636,629,555,539,549,555,542,558,534,568,549,550,557,549,549,544,551,1069,1084,1035,1060,1057,1076,1087,1079,1065,1042,1060,1067,1054,1025,1055,1051,1059,1051,1059,1057,1022,922,920,918,916,931,926,930,915,932,925,913,916,936,977,940,961,959,961,967,956,972,977,985,977,978,988,972,986,995,816,844,840,835,826,830,832,850,834,844,838,842,836,833,549,558,545,559,564,555,569,559,568,554,551,554,558,1085,1109,1081,1073,1059,1078,1105,1089,1084,1075,1074,1089,1107,1060,1079,1070,1102,1081,1080,961,959,966,949,964,971,960,958,954,962,959,961,953,956,966,964,963,966,985,980,982,987,978,966,1004,1020,965,999,997,991,1005,995,1002,989,993,995,994,996,843,861,859,866,874,864,855,860,875,874,846,860,873,859,852,621,619,613,609,606,616,619,611,620,617,605,609,917,923,909,903,908,925,940,901,921,925,913,912,964,967,959,941,950,953,958,959,957,952,959,956,941,936,948,954,942,942,941,957,946,951,988,982,990,986,987,985,979,983,976,982,991,989,983,994,852,836,846,861,842,848,820,835,842,826,840,945,960,954,946,959,959,957,954,957,954,951,817,849,832,834,837,855,831,843,847,844,842,936,938,933,942,955,943,926,923,927,957,922,929,952,915,934,933,934,941,927,923,938,933,937,924,924,933,928,936,924,933,915,900,918,914,918,909,926,931,926,930,929,930,930,921,930,918,924,934,928,923,922,934,977,968,976,968,968,968,981,968,973,973,967,977,973,970,967,983,895,888,860,875,867,870,861,877,882,869,864,869,888,873,879,565,568,564,577,567,575,560,573,556,569,578,566,566,624,613,601,594,606,613,619,612,637,635,625,631,619,637,622,627,623,626,636,1036,1070,1083,1080,1073,1077,1077,1086,1088,1078,1082,1088,881,870,859,898,881,879,877,870,860,875,857,876,862,865,906,858,871,1029,993,1026,1034,1014,1005,1028,1028,999,1031,999,1008,1020,1029,1014,979,965,967,981,971,971,964,958,968,974,966,972,968,977,965,964,977,975,972,961,965,964,965,967,967,965,966,963,970,965,971,975,960,963,885,873,861,887,870,884,875,883,866,873,872,623,617,621,632,621,627,628,619,626,618,630,614,614,612,629,623,548,542,548,540,540,548,537,559,546,551,548,550,548,539,547,588,589,580,592,583,590,593,577,585,588,597,583,585,584,586,563,570,565,567,564,563,557,561,555,562,567,605,612,607,605,613,608,607,607,605,615,611,611,608,610,687,690,694,693,677,683,695,692,675,665,615,605,605,605,596,614,605,615,606,606,607,613,612,606,608,941,942,940,942,946,942,941,942,930,929,922,918,931,949,933,929,933,923,989,964,968,975,969,985,971,978,971,976,960,959,984,845,849,846,870,839,875,866,848,852,865,871,851,859,853,861,850,1125,1127,1118,1111,1106,1112,1126,1124,1116,1116,1106,1129,1112,1112,1129,1126,909,889,901,897,890,907,890,892,906,881,610,602,607,615,608,611,610,617,613,611,606,609,1039,1025,1015,1024,1038,1046,1018,1038,1051,1008,1024,1013,1005,1022,1019,1003,1023,1022,1029,1011,1030,1017,989,1013,845,827,826,839,833,831,832,848,827,840,850,841,819,836,815,842,600,594,585,587,595,593,590,595,593,597,599,594,593,598,583,591,594,603,610,618,609,618,608,623,619,618,619,607,617,612,613,608,624,618,633,621,619,639,621,626,611,616,957,968,962,958,967,955,975,949,980,978,969,727,741,742,725,752,721,734,728,739,758,742,741,729,728,735,737,920,914,895,902,905,912,895,908,920,906,906,894,900,898,900,920,912,901,957,962,950,950,956,960,953,903,912,924,909,916,909,910,913,926,912,907,913,926,649,645,629,652,637,631,615,627,644,627,641,640,550,549,552,542,542,554,540,535,546,523,543,534,538,536,537,535,538,535,538,532,540,535,541,537,530,541,541,543,536,538,547,529,532,536,634,642,629,648,655,629,635,630,636,630,636,620,634,641,629,632,644,998,1011,1014,990,998,992,993,997,996,1018,1003,806,815,779,801,795,806,815,793,792,813,813,807,954,966,966,963,973,965,957,967,964,967,965,929,931,932,929,927,931,927,931,935,923,927,938,930,931,930,817,812,814,800,820,813,806,815,818,790,817,818,811,809,963,982,978,971,981,980,972,966,979,960,973,999,964,976,912,917,910,916,911,918,907,911,906,911,708,728,737,721,727,727,720,729,595,590,590,602,601,591,589,604,582,600,598,597,594,564,553,560,558,555,566,565,566,564,561,554,558,564,564,569,563,562,558,851,858,869,840,837,842,841,868,832,833,854,844,854,845,861,644,643,657,639,638,646,622,649,634,644,650,653,640,571,567,562,554,567,564,567,568,560,565,562,572,570,562,565,566,564,570,904,898,929,923,915,914,911,922,898,907,906,898,908,910,905,898,914,900,723,740,715,723,724,718,839,813,833,825,820,731,731,743,726,740,731,725,727,739,727,985,964,965,966,957,965,970,956,962,968,960,884,880,883,895,884,871,883,873,987,978,982,991,979,988,976,991,987,987,977,991,986,994,855,847,849,857,865,859,873,868,872,849,852,853,848,877,856,874,876,875,851,850,843,1065,1047,1046,1076,1062,1067,1053,1049,1059,1059,924,921,922,927,940,933,937,927,931,916,933,922,922,912,932,920,921,922,927,925,620,615,602,616,630,638,612,634,963,967,987,968,955,959,969,969,950,972,920,926,915,935,916,944,931,930,923,833,840,844,847,839,848,836,836,831,825,840,836,916,923,914,914,920,910,912,902,915,910,918,907,916,924,907,904,637,659,654,659,636,652,642,648,652,642,643,625,655,662,646,597,594,601,604,587,589,589,608,598,937,957,944,962,928,933,936,939,946,936,931,944,939,944,740,770,741,744,737,750,764,749,751,753,738,752,749,740,746,753,975,963,975,967,967,854,843,834,853,861,1022,1024,1032,1036,1025,1049,1035,1047,1042,1038,1034,1042,1038,1048,1036,1036,1032,1039,1046,1035,1042,1036,1037,1045,937,935,938,944,947,936,951,948,931,957,949,947,952,938,938,960,935,954,941,947,944,940,954,945,937,944,940,955,943,937,947,943,946,952,945,936,946,947,941,946,942,853,858,849,844,837,853,839,842,846,855,843,849,857,851,853,852,666,657,655,672,660,667,656,658,664,661,680,675,665,659,969,972,975,977,980,959,970,978,975,712,701,706,702,709,701,720,710,710,715,709,709,713,706,712,696,713,703,713,814,820,808,821,810,810,813,817,829,813,828,817,811,822,1002,1003,999,1011,1005,997,906,902,900,893,907,908,906,907,909,899,909,906,661,661,666,666,653,656,663,682,662,670,662,666,664,920,922,916,921,912,917,909,909,931,916,916,918,911,914,926,903,928,918,732,718,723,736,711,745,746,728,882,881,885,870,882,879,877,900,889,630,624,633,629,643,631,631,631,633,638,637,998,1004,1030,1038,991,1007,1020,1029,1022,1015,1026,1013,1011,985,1044,923,908,904,909,902,899,920,916,911,902,907,907,570,549,547,556,568,570,557,554,579,554,551,570,554,570,551,564,549,554,548,556,555,559,560,556,559,636,1040,1041,1053,1052,1052,1059,1015,1048,1023,852,863,844,865,847,853,860,849,845,851,853,863,856,852,750,759,758,755,768,759,772,769,761,769,782,568,601,583,587,597,577,593,572,571,576,583,579,569,567,569,589,531,519,517,521,523,507,514,525,508,514,512,521,517,511,506,515,518,518,518,1032,1060,971,974,958,964,968,977,970,968,967,981,697,696,694,710,701,703,701,695,701,579,594,583,586,583,585,867,850,852,845,841,860,838,865,840,690,695,696,711,691,684,697,703,686,696,858,878,854,844,862,880,857,878,856,853,863,867,872,855,859,702,683,692,700,681,694,695,683,692,696,885,866,867,892,870,876,886,876,890,854,867,868,863,866,875,873,869,876,877,957,970,976,967,971,961,964,967,982,989,988,991,986,984,977,991,985,1002,976,990,986,840,857,854,849,856,858,855,847,857,867,854,865,903,929,924,891,899,912,902,917,937,909,920,922,896,934,929,953,941,936,944,939,931,934,945,950,934,946,952,941,946,847,847,838,847,847,844,841,833,1129,1147,1161,1126,1132,1128,1108,1135,1158,1124,1133,1143,1131,1129,1120,1129,969,978,959,970,963,626,648,642,633,621,644,643,637,650,626,639,645,639,661,623,643,646,804,805,820,823,798,808,798,821,791,794,815,801,790,807,814,807,623,628,632,601,629,615,628,626,619,617,625,621,619,596,591,601,586,596,591,581,589,591,584,1033,1013,1031,1023,1036,1035,1030,1039,800,790,812,791,806,799,802,808,789,801,586,609,598,619,611,539,555,542,548,545,537,545,539,539,538,535,540,538,548,546,538,891,898,887,894,888,884,889,891,876,683,680,670,687,673,686,675,658,674,683,671,1017,1026,1022,1005,871,869,860,859,853,875,852,854,842,853,870,849,868,862,859,844,881,604,583,590,591,587,579,572,589,574,590,586,595,588,592,582,592,580,598,597,592,586,591,576,596,600,602,590,584,580,583,578,585,584,584,590,587,591,584,583,587,587,579,579,587,583,590,583,582,577,587,584,582,577,581,581,581,562,555,558,554,559,558,547,551,556,549,554,556,556,552,587,599,599,597,596,601,597,591,963,962,950,953,967,962,949,963,958,939,950,954,938,952,966,965,944,726,723,724,740,711,732,743,736,732,730,736,723,741,831,846,854,840,843,858,836,848,838,835,843,834,840,837,838,839,832,848,853,845,839,844,843,830,673,675,669,666,658,663,661,658,644,660,674,753,737,733,742,732,741,737,739,653,650,669,653,661,665,655,660,628,632,624,627,621,624,620,618,619,633,628,616,620,903,871,886,863,897,874,891,889,893,891,872,859,874,882,871,903,879,895,880,881,867,749,743,724,744,754,741,737,730,741,747,743,755,745,736,751,761,748,984,980,982,971,977,971,976,986,978,979,981,975,980,891,886,894,894,880,894,895,905,910,910,886,891,892,903,909,911,714,727,734,730,729,733,724,724,724,722,726,724,726,717,604,624,612,597,614,590,606,610,605,609,602,598,591,609,600,597,588,602,605,605,605,528,517,538,532,523,533,522,535,533,537,524,527,575,567,569,571,582,562,564,571,563,577,584,584,569,563,564,721,721,721,711,719,704,710,708,704,705,706,702,699,724,718,619,623,619,622,624,627,627,629,803,800,791,794,805,791,786,797,768,784,793,616,610,602,607,606,594,614,599,608,607,599,615,605,611,600,613,608,622,596,597,530,537,544,551,538,551,539,547,549,539,549,555,557,542,1209,1233,1239,1225,1224,1228,1219,1044,1045,1066,1055,1032,1034,1047,1015,1020,1033,1019,643,656,654,642,657,673,654,655,679,651,651,669,661,661,651,645,653,659,659,1047,1043,1037,1026,1046,1040,1026,1039,1033,959,968,931,972,961,959,938,960,949,960,961,945,967,961,965,966,941,946,945,966,813,803,799,807,814,806,811,811,802,813,816,804,599,606,605,606,600,598,600,600,619,598,599,608,588,589,591,591,595,591,599,602,588,590,961,948,956,950,955,950,963,959,957,953,973,960,961,957,985,966,978,795,794,789,792,785,808,795,802,795,797,796,792,805,795,791,803,797,660,676,674,673,667,674,666,675,668,667,662,672,668,681,671,675,892,887,895,886,894,876,885,896,891,891,880,903,891,897,790,776,794,771,787,763,773,782,780,773,786,782,772,776,727,725,724,725,720,729,715,715,720,724,722,714,726,971,948,946,958,961,963,946,961,950,951,959,941,962,948,932,938,952,932,945,949,946,943,938,857,847,837,835,835,839,853,838,832,821,816,826,834,829,825,817,837,838,820,819,622,603,619,596,605,615,609,617,604,632,533,530,524,537,533,542,590,592,593,586,595,590,592,595,591,588,592,582,583,594,582,591,588,587,607,606,604,601,599,599,600,603,605,597,608,591,602,593,599,608,604,604,602,599,605,598,600,600,599,601,598,596,606,601,598,600,605,600,599,601,616,613,617,608,605,622,614,612,621,616,615,617,607,623,626,610,618,621,612,620,607,1049,1054,1043,1044,1029,1045,1037,1002,1039,1058,1031,1033,1028,1045,1030,1024,1032,1040,1039,1045,923,926,920,931,919,931,912,930,940,921,926,919,912,938,920,593,601,611,583,602,635,595,611,597,589,613,615,902,895,888,904,894,904,908,889,908,892,896,900,906,898,914,900,894,907,906,892,876,873,858,865,860,866,866,871,864,860,860,865,864,934,927,916,918,922,917,926,930,936,926,922,920,917,911,922,1062,1053,1057,1058,1063,1068,1049,1069,1063,1063,1055,1062,1057,1068,1061,1065,1068,908,913,913,907,902,919,899,620,611,624,629,639,651,625,626,628,610,625,638,627,631,627,626,620,619,632,595,600,603,686,669,671,669,674,664,683,676,666,659,663,666,685,659,678,907,905,892,893,905,908,880,885,907,908,878,903,780,781,780,767,778,782,779,771,776,775,630,631,623,629,629,622,641,634,633,620,617,628,634,630,623,636,619,596,587,604,588,600,596,592,600,593,590,589,586,574,574,571,572,575,577,581,580,573,574,582,571,569,993,1018,999,1009,1034,1014,1002,1014,1019,1008,991,994,986,998,996,1002,847,837,841,837,848,856,844,826,842,838,841,844,834,607,587,590,610,601,603,585,600,591,585,949,958,938,933,942,937,920,927,934,953,958,924,939,934,938,960,955,964,981,967,984,991,975,967,961,974,966,972,951,970,840,839,859,852,849,838,840,838,845,1072,1073,1078,1076,1078,1080,1074,1079,1079,1074,1066,1083,952,938,956,941,932,947,951,949,932,950,948,953,936,608,601,630,622,621,617,611,617,617,617,616,607,622,617,614,1020,1009,1019,1015,1017,1004,1007,984,1026,1019,1038,894,893,905,893,989,1000,996,999,1023,1100,1091,1087,1089,1092,1108,1107,1084,1092,1081,1092,1109,1102,1099,1084,1088,965,976,981,981,991,990,645,663,667,659,651,653,658,639,658,638,651,645,575,571,577,582,572,591,578,584,588,572,575,572,569,583,589,578,588,572,594,787,789,785,774,773,767,776,776,789,778,767,789,779,764,770,650,655,645,628,658,643,657,655,645,640,655,643,656,655,638,585,582,596,595,597,587,592,594,583,593,584,585,583,587,583,589,589,587,590,686,700,693,689,694,693,683,703,698,692,693,698,694,690,668,658,662,660,654,665,657,657,667,657,671,659,656,662,662,666,905,907,903,906,909,905,901,899,911,907,933,913,890,911,921,962,972,961,962,950,970,949,962,965,960,965,951,953,976,836,863,851,854,854,863,854,860,847,850,852,1080,1095,1085,1078,1089,1079,1091,1081,1074,1093,1081,1084,1083,1089,1074,1073,992,1006,1011,998,1006,1012,1004,1008,1026,1011,816,813,835,823,834,829,824,817,832,819,828,966,953,956,968,965,965,967,969,958,959,979,884,897,880,890,885,888,902,895,871,887,655,660,679,671,673,662,679,656,672,667,670,674,648,688,695,676,682,684,688,685,693,683,685,681,686,676,676,675,617,600,620,601,605,607,618,599,1026,1024,1037,1028,1027,1011,1018,1035,1024,1022,1029,1007,901,884,893,906,900,904,892,909,914,884,899,897,907,739,756,724,743,741,742,727,745,1025,1015,1021,1028,1033,1025,1040,1029,1039,1036,1031,1036,1033,1039,1038,1031,910,904,922,905,924,923,912,901,912,917,926,920,912,917,914,915,848,829,842,839,835,841,825,848,856,839,840,854,844,956,943,955,960,947,948,952,954,954,944,955,954,945,954,956,950,952,966,972,968,967,959,963,960,962,973,840,830,818,838,828,851,835,847,831,836,846,834,829,843,836,817,954,962,945,947,959,960,956,953,948,949,971,955,950,974,959,963,947,955,865,833,852,869,826,849,524,527,559,531,543,541,531,555,590,597,589,594,581,587,589,592,594,583,587,583,590,583,589,1015,1012,983,1009,1016,1036,1015,1013,1033,1038,1048,1030,1029,1033,1050,1031,1042,1015,1024,1024,1025,1039,1030,887,877,876,871,878,887,899,877,862,881,864,882,901,952,968,974,969,974,977,965,962,972,969,837,853,873,861,849,849,843,845,854,856,838,852,860,841,834,587,578,589,600,591,590,592,580,952,970,979,977,979,979,982,998,980,977,994,692,690,675,694,674,682,682,683,1138,1109,1129,1143,1115,960,961,956,934,972,938,928,938,936,969,930,946,970,806,801,796,806,813,790,817,807,803,815,818,801,807,978,971,962,968,975,978,963,966,964,977,956,964,983,961,961,899,906,917,911,906,904,900,905,902,887,882,903,911,905,594,572,592,591,575,593,594,575,569,573,593,590,578,581,594,563,566,586,577,584,582,582,558,563,574,567,564,848,882,871,859,868,864,867,866,851,631,640,631,641,640,622,616,640,631,636,620,632,617,642,609,605,614,610,602,619,598,616,614,607,1124,1151,1137,1140,1167,1157,1138,1165,1141,1151,1123,1168,1159,974,975,969,942,973,970,969,967,991,973,588,587,579,579,575,578,586,598,587,589,589,561,574,582,560,565,570,566,557,563,558,557,557,562,559,561,546,964,945,951,968,944,936,950,917,907,905,920,913,917,918,920,910,903,878,886,879,884,869,875,869,871,890,878,877,887,873,875,892,876,870,883,866,886,797,776,794,786,799,779,781,780,774,792,786,778,784,797,771,773,785,785,579,578,599,580,581,578,596,598,581,591,586,584,852,896,871,863,890,877,887,882,876,893,866,869,658,615,628,640,638,643,629,623,646,653,631,632,641,635,641,638,630,563,570,564,551,566,564,557,567,569,559,829,836,830,844,846,831,832,830,806,827,836,824,822,674,695,685,674,678,679,688,687,697,692,676,692,693,679,679,690,695,701,694,691,690,603,599,603,606,604,608,597,597,593,602,604,897,905,884,885,880,897,896,899,889,913,664,645,656,663,663,648,669,661,679,943,950,947,945,944,941,935,935,961,976,976,972,961,979,968,965,958,969,975,973,958,972,964,965,967,963,962,966,977,952,925,923,936,933,920,919,933,927,924,924,922,918,927,924,926,982,977,988,979,997,984,978,1010,979,987,999,989,899,877,893,895,887,894,876,885,878,889,887,893,876,896,882,905,891,882,619,623,624,641,614,627,631,641,639,638,619,633,615,622,626,617,615,608,618,635,645,624,639,633,637,585,588,581,588,599,584,591,590,586,591,594,596,1032,1089,1046,1074,1066,1100,1065,1071,1092,861,846,869,860,877,865,858,851,881,864,869,867,849,848,874,859,869,841,743,741,724,750,732,733,733,747,741,727,711,718,724,716,723,719,726,719,711,722,733,709,727,710,728,716,722,720,733,720,721,1107,1093,1105,1111,1125,1094,1089,1087,1093,1086,1104,1067,1087,1094,852,868,829,850,860,838,861,856,858,857,831,861,853,857,869,597,617,600,591,599,597,600,597,599,598,600,878,897,903,898,911,913,907,905,908,887,907,916,906,903,898,903,890,887,902,902,779,799,783,787,792,791,786,796,768,788,789,645,638,652,643,640,632,645,634,656,636,646,638,649,755,747,748,743,748,743,767,755,742,739,749,769,745,741,623,622,639,654,643,637,627,647,641,640,594,592,584,588,593,594,593,591,586,588,574,618,617,614,628,621,618,622,621,623,620,619,628,623,619,621,622,621,623,1009,994,1011,1013,1003,968,981,980,980,970,1011,990,1009,871,881,883,886,891,873,890,875,879,893,876,872,628,620,629,622,628,632,623,620,618,632,624,640,629,634,615,623,620,630,1041,1036,1038,1058,1086,1060,973,965,981,973,966,971,958,972,959,617,618,617,640,620,636,637,633,626,659,637,604,626,644,894,899,898,889,884,879,882,907,718,719,725,738,720,718,736,735,735,726,729,734,732,724,721,730,719,736,908,904,899,913,915,920,894,899,895,907,892,913,922,904,899,887,897,907,896,893,893,907,809,812,816,794,819,818,824,807,811,796,821,974,972,981,981,970,974,984,972,977,983,981,979,979,986,987,984,974,979,980,980,979,979,990,968,986,985,826,817,827,826,822,825,829,822,811,833,828,825,828,819,812,818,827,944,915,917,903,914,928,922,906,924,926,943,923,926,915,916,938,913,927,920,932,927,918,923,928,912,925,914,922,912,970,944,947,949,946,960,954,948,822,822,839,816,802,818,825,631,624,629,616,629,644,629,630,633,640,615,617,625,622,628,1053,1050,1054,1023,1044,1022,1029,1047,1026,1050,1015,1034,1053,1044,1047,1062,1028,1039,1027,1043,1028,922,898,913,900,887,893,898,882,910,898,900,908,891,892,609,600,593,604,616,606,612,606,543,547,541,550,546,543,539,556,546,552,551,540,545,548,558,557,566,563,560,557,1030,1036,1025,1054,1028,1019,1032,1034,1026,1022,1042,1029,1036,1029,1023,1031,1034,1039,980,1002,985,982,983,988,982,985,972,977,994,981,985,977,824,804,814,823,814,823,829,812,826,824,840,822,822,817,834,819,810,880,892,891,910,888,898,897,888,885,887,896,888,881,896,892,900,872,855,858,865,859,854,862,869,861,865,633,641,648,645,634,643,643,648,641,643,653,657,644,663,640,612,619,608,612,617,613,615,624,606,602,615,1084,1083,1075,1076,1059,1083,1072,1069,1054,1090,960,973,942,952,974,960,959,944,967,822,836,835,825,819,833,830,781,787,781,783,774,786,783,788,787,785,786,787,777,790,779,781,778,780,653,650,650,639,631,655,649,646,653,644,642,638,649,646,842,849,843,867,841,845,854,840,841,863,849,861,852,831,850,846,840,836,845,857,624,634,621,627,608,610,622,605,619,521,517,524,517,520,514,518,525,514,516,527,514,527,509,520,520,568,560,558,568,565,573,563,568,555,562,574,566,565,570,567,555,570,561,576,571,582,584,575,587,586,590,585,576,592,960,968,989,982,1001,995,979,1009,969,962,973,991,980,1002,974,969,974,961,968,963,963,839,825,831,837,817,822,838,829,818,581,617,619,618,601,600,605,614,602,594,607,608,613,719,724,725,723,710,730,731,729,720,713,733,714,711,732,627,637,635,629,632,638,622,623,630,647,632,609,614,604,604,605,610,619,615,609,614,604,669,665,670,665,669,659,676,677,666,672,662,670,670,660,669,674,664,671,1075,1109,1058,1054,1070,1081,1058,1084,1071,1074,1049,1068,1058,937,941,935,947,940,959,938,952,953,945,944,922,931,942,929,957,931,939,941,940,946,628,623,617,609,638,623,628,606,614,641,614,859,856,846,840,842,848,842,866,857,853,859,841,856,928,930,930,916,953,917,923,920,908,918,934,927,965,976,975,962,970,967,972,946,960,980,1078,1070,1096,1078,1078,1081,1077,1081,1073,1064,1087,1078,1084,1079,1073,816,802,813,839,839,804,819,828,836,837,836,827,801,837,816,830,592,584,582,572,578,585,589,590,586,843,868,868,866,867,857,858,876,864,877,867,869,636,632,652,650,640,654,643,649,657,637,641,638,521,508,519,515,499,520,513,522,520,534,535,525,531,543,532,529,527,527,530,538,520,526,561,551,567,564,554,558,570,557,552,563,556,570,562,1030,1072,1058,1042,1054,1067,1038,1062,1050,1081,1043,1055,1062,1056,1024,1049,1058,1078,1050,1071,1081,1072,908,904,899,909,907,912,905,898,913,912,909,920,912,893,604,614,630,636,644,611,643,628,633,637,641,764,778,783,783,787,799,782,783,783,778,780,806,785,785,768,771,797,788,779,788,768,753,755,747,743,761,763,755,769,767,762,763,770,764,773,768,768,768,760,759,753,770,768,627,625,625,621,620,623,633,634,607,617,619,629,1028,1023,1026,1020,1042,1031,1035,1021,1020,1011,1011,1031,1001,862,857,877,877,859,870,868,857,871,865,860,884,858,1031,1026,1016,928,931,932,934,921,929,920,924,939,930,925,945,939,929,931,933,941,937,816,818,814,810,818,835,815,817,814,828,817,774,782,787,782,790,767,783,783,782,777,778,785,785,771,622,636,628,635,635,621,628,621,1112,1105,1102,1117,1110,1121,1105,1112,1114,1150,1087,1134,1147,1100,1097,1108,1137,1101,910,903,883,889,915,889,911,904,921,890,893,915,907,919,922,895,922,910,917,928,915,915,917,558,560,552,543,559,561,534,562,526,631,621,632,618,639,634,626,630,630,637,632,638,628,635,630,635,626,631,622,634,640,636,634,635,632,629,631,972,964,975,980,967,969,984,956,980,985,929,941,938,934,943,942,930,934,929,932,940,930,942,943,940,931,925,923,937,935,934,926,929,935,929,935,918,932,934,801,813,812,812,807,816,812,819,813,806,819,811,816,815,807,800,661,648,653,657,663,649,652,651,664,655,656,645,659,829,838,758,762,759,766,758,761,761,762,769,752,760,764,766,757,773,755,632,637,631,633,631,627,793,797,793,806,786,791,783,779,787,616,622,608,602,615,604,624,625,585,589,614,615,623,593,604,547,560,553,555,552,559,543,549,553,557,557,546,555,557,1142,1137,1141,1135,1120,1101,1110,1138,1142,1161,1082,1157,1141,1092,1128,1153,1097,920,928,925,934,913,934,929,923,935,924,606,579,602,598,578,587,598,594,596,606,588,600,590,579,596,589,604,1043,1024,1030,1036,1024,1043,1014,1013,1010,1032,1040,1038,1033,1036,1040,1030,848,870,869,854,871,870,882,858,879,664,660,647,653,655,656,643,667,661,897,887,902,882,889,898,892,888,889,667,687,686,685,703,680,688,688,700,695,690,691,678,817,810,805,804,805,819,819,796,818,807,810,814,816,816,803,812,962,956,949,964,963,950,951,950,955,958,952,947,961,944,951,932,937,945,945,944,953,952,952,832,827,806,813,831,810,823,814,818,827,837,825,818,836,825,617,604,624,620,605,620,620,599,614,611,609,603,606,624,619,1034,999,1006,1048,1015,999,1008,1026,1024,1029,1011,1039,1017,1008,936,922,918,909,922,919,940,908,934,929,908,935,935,918,920,927,581,603,578,549,575,588,575,574,576,576,591,582,580,578,586,578,624,632,618,633,620,633,627,628,628,624,624,643,653,648,639,641,648,659,645,646,996,992,983,1012,999,1008,991,1007,1000,994,983,1003,1018,1020,1005,1002,1011,1014,1014,1018,999,1011,1001,857,867,882,875,862,862,874,856,866,852,514,519,511,540,545,555,549,554,533,551,552,541,548,624,625,628,637,644,634,631,636,632,629,630,637,623,743,743,730,743,740,746,753,742,740,737,747,634,627,634,642,635,640,637,633,639,638,640,637,637,640,634,842,854,862,846,877,865,864,873,879,866,863,690,667,678,661,668,675,677,674,668,671,831,840,850,841,854,841,833,854,856,857,847,834,841,844,644,643,631,633,641,636,634,638,638,1005,1000,989,995,984,991,1004,997,994,988,994,982,983,953,966,970,955,960,971,971,958,981,968,971,949,963,962,951,940,968,959,962,960,949,948,969,942,964,959,948,953,945,957,953,849,852,864,862,862,863,854,863,851,852,876,851,851,866,868,591,581,595,601,591,575,571,591,596,573,592,922,925,928,944,931,930,920,941,940,933,1012,1014,989,1027,1012,1002,999,1007,1011,996,1005,1004,914,900,906,898,891,904,901,897,871,881,894,888,880,962,963,965,958,956,956,966,965,955,961,960,950,956,958,952,958,952,959,960,976,961,639,661,648,663,652,1014,997,976,960,1012,991,992,986,1001,1007,981,976,985,1031,993,986,1007,1005,997,1036,1023,1038,1038,1041,1021,1029,1042,1036,1023,1028,1040,854,862,856,864,840,857,846,864,860,857,864,850,871,607,613,599,595,607,600,588,600,600,596,599,600,613,601,607,940,933,935,929,946,928,939,932,934,932,935,919,937,921,935,930,917,931,931,924,922,934,934,932,922,937,944,937,941,930,988,984,982,997,1004,997,984,1002,986,993,993,865,863,864,861,874,868,859,860,871,858,877,872,601,599,589,590,593,599,584,588,598,590,576,598,601,593,584,996,978,1004,1010,1006,1023,989,1009,1020,1012,989,1011,853,882,870,865,856,600,643,601,624,621,631,619,630,1084,1086,1067,1102,1070,1075,1098,1073,1063,1089,1085,737,744,733,718,749,740,735,772,719,727,728,733,745,827,827,809,834,838,842,840,841,811,838,836,607,611,634,600,599,612,604,606,621,614,622,609,607,611,587,570,572,578,564,581,576,573,567,565,576,566,572,566,559,573,564,583,577,887,912,902,902,914,903,915,996,990,984,1009,979,984,990,1013,994,1007,989,895,905,915,902,924,903,911,921,915,916,909,907,937,909,905,918,913,922,921,892,902,580,560,577,557,573,580,561,587,567,567,563,578,529,507,513,518,521,520,512,511,518,525,523,518,513,526,516,523,1062,1003,1067,1015,1067,1006,1020,1043,1045,1040,1048,1031,1005,939,943,927,935,950,931,948,933,939,946,959,930,935,674,683,655,659,667,674,699,677,684,672,668,675,662,669,652,622,613,615,610,614,608,621,613,619,613,608,611,864,872,858,866,870,865,851,855,854,874,866,842,867,853,861,676,689,703,700,674,680,685,697,685,686,674,692,592,607,602,592,601,595,586,577,576,573,576,578,570,578,572,578,575,1022,1051,1047,1044,1052,1013,1053,1045,1085,1076,1057,1052,1063,1053,1069,1050,963,966,938,961,960,966,957,974,952,949,948,947,607,584,615,597,579,593,618,590,596,609,598,620,595,565,572,583,580,543,549,550,546,563,555,538,549,561,562,575,569,574,575,577,564,564,571,569,568,575,571,569,565,994,976,978,986,975,974,1001,982,1002,1006,1004,1007,1017,1008,1025,991,1016,999,1008,1013,1001,993,1005,847,847,834,847,818,853,842,854,822,846,835,841,852,842,859,835,874,936,935,926,937,929,928,929,929,917,919,929,932,920,852,851,857,854,861,841,854,856,854,858,851,857,848,856,852,850,856,850,856,855,859,854,858,853,859,848,858,857,781,784,779,779,773,772,780,772,779,787,783,769,769,774,786,780,761,768,764,769,759,763,766,749,768,768,759,769,768,768,758,767,765,597,599,596,590,596,601,611,583,593,601,601,592,611,595,590,614,606,599,589,1005,998,1003,996,996,997,995,971,995,995,981,1002,982,1015,871,861,858,863,870,851,866,828,866,848,575,563,574,567,573,578,563,564,632,623,629,625,623,631,626,635,623,629,627,631,622,670,668,666,650,679,662,670,669,661,662,667,658,881,864,877,857,869,866,850,866,835,848,867,861,862,763,767,762,747,761,748,758,753,771,750,767,754,766,758,753,587,610,605,602,600,604,595,602,599,602,601,605,600,601,612,600,610,609,597,1089,1063,1067,1075,1059,1080,1052,1077,1047,1056,1058,1050,1043,940,934,958,936,952,946,961,941,945,935,941,948,961,956,954,950,946,962,945,942,950,945,951,649,648,645,660,656,655,629,649,663,648,650,643,638,631,662,646,595,605,594,593,606,612,585,590,590,599,645,640,635,650,658,642,632,635,639,648,647,642,648,657,871,893,867,866,885,864,851,876,882,880,881,872,875,934,936,937,941,932,925,931,918,925,928,929,935,921,928,918,927,889,890,889,889,897,890,893,901,919,918,897,907,909,902,909,903,912,900,907,902,914,920,915,917,925,919,924,923,917,920,915,918,908,921,920,921,921,924,922,920,970,980,969,963,960,961,974,966,970,978,970,970,964,966,838,839,814,829,831,830,816,815,827,840,818,960,948,972,950,905,968,890,924,951,940,949,936,922,951,938,944,899,913,931,928,916,915,919,923,930,925,929,913,926,932,925,914,923,921,929,922,920,932,923,933,927,930,920,978,974,978,976,978,970,968,986,991,986,967,979,971,972,977,982,854,859,867,865,874,859,847,866,853,865,842,883,850,860,621,593,614,605,586,598,610,597,575,587,601,587,602,603,578,574,581,577,582,577,569,577,585,570,577,577,961,966,957,925,954,960,952,950,941,929,945,950,807,805,807,811,809,797,812,815,814,810,800,812,810,809,809,734,726,735,723,736,737,730,732,720,723,719,741,721,720,717,734,921,935,934,936,930,931,913,926,920,921,920,932,897,901,899,899,886,901,896,904,896,904,906,897,890,902,898,860,857,840,854,869,845,862,867,856,846,845,861,596,591,590,598,601,594,589,586,603,613,599,607,599,596,595,600,946,940,943,960,971,929,937,961,951,942,952,965,947,934,976,974,978,978,987,987,981,971,978,975,971,973,981,970,974,973,976,978,968,977,794,809,824,834,800,830,834,825,811,835,808,580,598,594,573,611,609,602,601,601,602,593,618,610,609,625,603,615,611,612,614,605,1127,1121,1124,1122,1091,1099,1124,1144,1125,1110,938,935,906,932,913,899,908,943,944,896,931,918,929,927,905,923,913,925,907,642,646,627,627,642,646,642,642,648,635,647,653,637,639,641,645,650,630,645,638,977,997,971,992,979,984,839,849,857,845,839,827,839,835,842,842,845,855,843,842,856,909,938,944,926,922,917,924,920,941,925,934,938,967,966,972,957,965,981,976,981,976,964,971,968,968,969,968,971,964,815,833,847,834,810,563,571,566,558,560,559,564,567,558,560,561,569,558,564,560,561,566,564,989,1007,977,999,984,1008,984,1003,991,1004,1009,1020,993,1020,998,1022,1009,984,984,975,988,984,981,997,984,986,979,982,975,969,971,984,972,976,843,844,850,843,838,846,1094,1110,1106,1108,1089,1095,1109,1090,1108,995,973,984,976,976,979,967,1013,987,955,981,976,976,603,613,580,595,592,620,588,577,597,600,547,541,546,554,545,546,554,557,538,541,583,597,589,580,584,575,591,584,588,578,603,588,588,590,591,582,580,582,1033,1056,1020,1024,1030,1031,1016,1017,1022,1026,1012,1017,1028,1018,1034,1013,1012,1026,1013,1026,1014,1014,1020,1020,1005,985,987,1000,1009,996,995,827,814,831,838,805,812,840,816,826,828,810,808,817,811,813,827,824,594,573,583,587,583,575,584,577,579,585,567,580,570,579,582,617,621,629,628,629,616,625,619,628,627,620,623,614,621,619,631,634,634,626,626,637,634,632,633,637,625,550,555,553,547,555,553,551,555,566,553,555,553,557,501,505,505,498,493,494,503,502,501,499,490,502,505,615,597,601,587,590,596,606,616,604,690,684,683,678,670,662,671,678,682,670,664,676,1181,1215,1226,1224,1207,1200,1197,1196,1202,1044,1040,1027,1026,1041,1033,1013,1040,1042,1046,1010,1032,1039,1045,789,777,784,804,780,784,790,795,803,797,789,784,788,789,783,788,796,609,613,619,621,617,607,622,604,601,616,629,614,624,627,499,501,513,511,496,494,500,497,492,493,501,500,511,504,509,498,496,504,536,523,535,542,541,542,542,542,538,541,542,539,541,538,529,541,544,545,531,548,579,583,582,581,569,584,577,587,585,580,581,585,580,583,582,588,586,571,580,979,968,976,985,974,978,984,985,968,991,1006,924,915,919,927,915,911,916,928,909,917,925,897,890,883,886,885,891,887,885,891,893,883,892,874,891,889,881,883,889,851,820,844,830,844,843,841,839,824,824,838,824,829,582,573,581,554,578,569,569,563,557,582,539,538,556,528,538,548,528,542,535,537,538,533,533,934,950,968,970,974,968,950,961,959,978,963,958,969,960,950,989,956,949,957,975,662,662,675,667,681,672,676,683,671,689,662,1084,1089,1063,1096,1077,1060,1079,1082,1076,1090,1075,1079,1030,1039,1031,1045,1048,1030,1037,1028,1052,1024,1035,1034,1036,1039,928,908,907,922,910,924,917,913,917,760,758,763,760,755,773,768,766,763,739,737,736,733,731,739,734,737,742,730,741,736,740,731,745,738,597,598,597,593,598,600,604,596,610,605,1009,1011,996,1006,1014,1013,993,993,989,983,1012,1014,1005,1013,990,1022,1010,1029,1023,1012,1018,1016,1008,1024,1009,1006,1018,1013,1008,853,857,827,862,836,832,858,847,849,845,857,843,846,838,531,515,530,530,512,522,573,567,568,576,566,575,580,572,571,568,577,577,567,700,686,698,688,693,708,683,682,704,686,688,681,683,685,689,688,680,687,647,652,641,640,642,648,648,641,647,643,649,655,645,1087,1094,1067,1087,1075,1086,1084,1094,1100,954,944,931,934,933,937,941,933,924,937,950,931,919,938,949,1012,996,1003,990,1002,998,1005,993,1008,1008,1006,994,996,990,991,1008,906,888,896,908,899,912,900,901,891,888,906,899,905,893,906,890,900,901,885,896,613,629,631,613,620,623,625,612,636,609,569,567,570,565,594,586,580,593,587,595,595,598,583,594,593,585,1011,1029,1029,1006,1008,997,1013,1026,1019,1017,1004,1009,1025,1026,945,940,924,949,937,945,936,947,934,949,940,918,914,910,916,910,915,924,927,908,911,776,775,793,769,769,781,779,787,780,782,782,788,794,788,770,778,790,782,920,859,878,859,895,875,868,876,874,904,866,908,902,898,886,896,899,908,904,899,896,901,901,915,901,903,905,900,903,905,1010,1007,1004,1003,1006,997,1010,1005,1005,1007,998,1009,997,995,1002,900,895,899,902,900,904,901,904,900,906,901,915,893,895,901,890,896,883,919,891,903,898,803,804,807,805,815,799,801,797,814,810,791,718,736,731,732,735,724,730,740,728,720,723,745,734,729,732,595,596,584,582,579,590,588,597,590,579,585,585,566,574,572,565,564,1018,1010,1019,1026,1007,1029,1020,1062,1018,1007,1028,1026,1033,1037,1046,1032,1013,964,975,963,959,968,955,953,963,975,967,963,978,966,965,957,963,966,964,953,967,958,965,746,754,747,742,751,749,756,765,753,745,551,566,563,556,549,563,558,570,556,562,566,571,971,976,974,1018,974,968,960,962,981,970,976,935,946,954,952,961,952,954,957,947,962,964,949,964,964,952,955,960,958,843,842,857,835,827,843,839,829,835,828,834,833,613,589,604,595,591,590,605,606,595,578,595,596,503,506,516,520,523,498,506,503,497,502,505,491,511,536,541,551,526,530,535,544,534,535,541,536,540,533,616,621,620,613,619,612,609,621,610,614,606,612,604,603,617,627,619,699,702,690,701,713,722,715,705,715,594,603,592,600,601,593,596,594,584,607,605,600,607,596,980,964,961,973,975,976,973,967,963,976,965,972,960,963,963,966,893,883,893,887,886,889,883,877,873,896,881,880,890,985,986,994,983,999,994,869,876,872,857,871,875,873,865,857,869,850,877,859,862,883,887,882,871,1066,1058,1044,1055,1052,927,930,913,914,921,913,929,916,931,927,913,912,909,919,910,924,798,798,806,597,616,603,610,622,608,591,601,611,602,605,616,600,612,616,604,630,614,565,563,559,561,568,560,559,562,1055,1026,1053,1058,1076,1042,1064,1047,1048,1057,1067,1025,1027,1021,1038,1019,1037,1031,1022,1027,1026,1025,1025,1024,871,852,847,844,863,852,861,862,851,869,842,856,854,855,850,844,848,593,594,586,596,592,585,592,594,579,585,602,585,956,936,918,900,932,932,923,922,918,925,913,901,894,889,879,884,892,875,890,672,665,655,662,671,661,673,669,666,674,682,673,661,660,679,664,668,671,662,661,697,676,671,675,892,896,910,909,908,900,899,894,897,907,919,902,905,898,891,900,911,901,884,959,949,960,952,955,958,936,949,962,953,852,828,843,828,845,846,836,837,845,826,856,843,842,842,842,848,845,935,933,921,922,939,943,944,950,936,934,930,944,944,910,926,918,917,916,926,915,923,912,918,927,923,931,934,941,939,928,931,930,924,967,959,952,972,963,876,879,870,870,884,877,872,877,856,882,877,883,864,866,872,869,877,863,882,878,664,634,634,631,657,630,652,629,632,653,635,647,636,623,648,560,563,567,566,566,557,558,571,555,564,563,557,557,570,564,572,550,561,560,560,559,560,564,558,558,555,564,559,622,630,632,615,615,615,626,622,613,613,611,628,618,616,616,628,623,634,629,622,628,621,1003,992,1002,1006,996,998,1002,1009,998,1004,991,1015,662,657,667,660,650,656,662,643,635,649,665,644,660,661,646,605,656,673,661,674,640,649,655,928,925,914,906,917,894,911,921,910,923,918,910,925,911,930,929,915,926,939,930,925,927,868,879,879,887,864,875,869,876,881,878,878,800,784,786,789,797,799,788,791,784,785,793,794,791,785,789,778,619,625,618,620,628,629,619,624,626,626,627,611,622,621,628,1111,1075,1113,1109,1095,1127,1094,1105,1095,1117,1116,1125,1113,1114,1101,1107,875,876,868,873,876,873,869,863,887,869,873,872,876,859,870,896,1001,1004,1008,996,1008,998,1000,1001,1001,1007,1008,876,884,882,888,884,874,881,878,880,879,872,875,880,873,873,870,868,852,850,849,846,854,849,845,862,855,856,848,848,848,859,857,857,775,776,772,778,782,767,795,783,761,765,768,765,785,784,778,791,622,622,608,615,636,627,600,618,617,627,622,633,628,608,628,605,602,592,605,600,604,596,587,596,602,597,604,615,618,605,619,852,851,833,831,855,808,845,824,838,826,813,841,804,832,833,849,850,841,831,629,635,616,637,627,609,621,622,629,601,591,638,625,637,632,631,545,534,545,543,526,555,549,548,536,543,540,536,548,553,542,1029,1020,1027,1010,1030,1015,1035,1034,1017,1011,1030,1007,1004,1034,934,937,940,947,948,947,943,953,945,962,942,953,948,947,936,957,945,944,946,963,973,974,977,979,972,979,966,978,976,979,979,978,964,973,809,822,821,811,812,812,828,812,815,807,822,825,813,811,818,619,608,617,614,590,605,601,601,607,600,608,594,601,605,612,1052,1059,1036,1048,1042,1054,1048,1055,1061,1053,1030,1035,1052,1040,1049,1067,1083,1045,1062,938,955,961,961,954,955,955,961,962,948,944,962,956,954,958,958,960,958,970,838,839,840,840,841,979,983,990,993,980,979,974,987,994,983,979,990,981,980,852,834,833,844,853,845,840,838,842,847,859,632,624,634,624,629,627,628,626,630,634,630,626,622,622,1139,1122,1144,1090,1130,1117,1140,1132,1102,1119,957,960,946,952,960,952,952,950,938,941,952,953,936,944,932,944,951,947,956,947,942,955,947,964,962,967,968,972,969,971,962,966,966,841,831,839,840,838,831,838,837,822,834,834,833,833,844,837,647,664,643,650,654,652,655,654,653,647,663,659,833,823,829,831,818,829,849,849,843,831,849,812,842,839,832,837,837,665,666,678,668,671,666,667,670,606,613,603,614,606,590,597,600,603,609,610,605,603,599,597,595,598,609,819,817,809,824,817,812,816,814,805,795,800,798,818,809,677,671,663,667,667,668,663,678,622,632,639,620,633,616,622,609,624,623,621,609,632,626,622,634,620,957,972,963,979,950,957,957,963,971,963,957,962,947,967,694,721,715,699,716,702,706,705,700,689,703,713,699,702,716,701,711,610,593,599,610,599,602,608,603,605,602,602,614,606,606,593,607,1082,1109,1097,1079,911,941,934,943,915,922,921,930,917,933,923,922,1043,1032,1023,1038,1037,1037,1049,1041,1038,1047,1034,1041,1023,895,901,868,892,879,894,897,896,889,887,896,890,874,873,887,889,884,886,893,887,882,898,886,886,896,883,887,888,880,882,881,878,882,883,886,880,880,887,884,879,715,693,699,704,719,707,690,720,711,679,709,710,722,835,849,847,832,839,868,829,850,843,844,840,863,843,836,834,773,782,774,782,774,779,780,776,782,779,780,776,784,745,754,742,760,754,755,749,748,751,743,764,746,731,751,746,759,727,716,705,722,715,711,727,722,713,728,703,709,712,954,962,954,965,973,960,963,966,966,979,950,961,960,968,960,964,851,838,841,848,842,941,961,962,945,943,943,968,934,953,969,956,973,972,967,956,968,969,966,967,963,978,959,967,967,831,813,840,837,841,831,859,841,833,827,850,830,840,835,850,631,622,633,623,625,630,643,620,622,624,1096,1088,1111,1082,1075,1099,1103,1101,1077,1104,1092,1112,1099,1092,1097,1080,933,949,939,930,922,923,935,943,932,923,919,943,945,942,946,1006,1006,1012,1009,999,1015,1013,1015,874,862,845,878,857,875,853,864,867,878,614,609,611,590,615,596,590,584,611,589,595,619,583,598,571,582,582,577,582,578,567,578,582,559,583,577,582,586,1119,1131,1116,1116,1078,1133,1126,1097,1105,1128,1125,1105,906,915,957,938,931,909,931,935,907,577,582,560,576,563,567,568,578,562,559,568,593,589,601,602,598,591,599,583,603,598,588,604,599,604,616,615,601,620,611,980,986,978,996,1019,902,894,911,903,890,895,895,899,902,895,882,896,905,890,895,688,719,729,706,706,703,708,722,703,710,704,706,615,636,629,632,627,626,636,631,629,635,623,629,630,622,628,598,600,598,613,603,608,598,607,614,600,1014,1001,1005,1007,1001,985,998,972,995,989,1009,983,999,991,1005,1037,1030,1034,1030,1027,1015,1023,1032,1034,1034,1022,1022,876,874,877,886,871,874,881,864,977,987,990,989,980,974,969,999,973,950,978,984,954,960,950,964,965,966,968,972,973,960,968,981,968,958,967,970,964,963,926,929,926,914,912,927,913,923,917,927,926,931,926,617,651,637,636,615,619,644,624,618,611,628,630,636,623,623,628,652,585,578,590,593,582,576,575,579,584,581,584,587,586,578,577,581,587,583,587,570,569,575,567,559,567,570,571,578,563,579,577,578,570,566,865,876,866,858,866,865,869,861,866,866,869,870,642,626,640,638,647,626,640,641,558,557,565,568,562,566,562,557,566,562,570,559,564,562,559,563,567,572,560,640,651,642,653,644,652,659,645,649,650,654,653,643,643,636,639,638,641,644,650,643,1039,1038,1034,1032,1048,1045,1049,1042,1034,1037,1021,1044,1044,934,898,927,931,912,929,918,909,926,936,940,906,927,908,914,939,927,917,904,813,803,797,799,786,809,791,621,638,646,633,636,639,639,1047,1045,1040,1039,1047,1045,1042,1032,1062,1039,1033,1020,1060,1038,866,859,872,856,848,851,869,871,886,864,860,869,836,870,870,871,851,538,537,543,539,550,526,534,540,537,541,529,536,533,537,642,631,649,637,630,627,639,632,662,671,661,673,672,670,667,676,670,665,673,670,663,660,667,920,901,910,921,907,924,918,898,905,911,917,910,941,930,933,923,937,937,943,951,936,945,879,887,888,892,906,886,897,904,893,898,888,895,882,900,949,942,946,948,959,963,937,948,947,936,942,939,952,942,957,875,882,882,868,877,874,879,875,893,882,887,876,822,834,831,826,828,822,829,833,815,832,836,841,828,846,829,757,755,760,761,759,760,756,759,758,768,762,766,762,762,634,643,646,642,653,649,650,642,653,609,604,620,603,617,606,617,607,616,608,603,600,890,880,876,882,708,731,720,709,707,730,713,698,722,725,713,886,879,908,887,891,882,898,900,883,892,888,914,884,885,880,879,905,890,627,629,645,632,638,626,638,623,634,655,628,1039,1055,1042,1019,1030,1056,1044,1027,1048,1031,1019,1044,1046,1043,1038,1034,1044,931,950,941,920,904,952,940,928,935,917,926,915,949,945,940,944,942,782,788,788,785,788,788,798,783,796,795,789,787,790,777,778,791,790,980,994,988,977,986,995,979,993,985,1002,993,995,976,994,995,1004,1006,885,879,889,888,902,899,896,898,883,886,884,870,883,905,887,896,614,599,604,599,607,609,612,605,598,605,615,618,614,609,611,616,603,610,614,604,556,548,606,618,614,608,605,616,614,621,610,605,607,614,613,606,602,619,614,601,605,703,693,699,698,699,706,700,711,710,631,630,628,627,625,622,618,625,629,631,628,628,629,632,621,613,634,1005,990,969,995,983,991,1007,973,971,1014,1002,1011,857,839,859,861,861,847,856,939,937,894,906,902,909,928,909,910,885,898,988,983,984,987,988,980,981,987,986,975,979,966,977,985,970,982,1019,1022,1012,1016,1011,1011,1004,1008,1002,785,785,759,791,791,769,791,773,783,782,589,583,571,580,587,598,580,583,592,594,574,578,577,578,593,1149,1086,1111,1111,1127,1094,1122,1098,1077,1077,1111,1101,1122,1077,1109,1091,1098,1081,1097,1107,1092,1123,978,989,977,992,978,858,854,856,861,850,864,644,640,657,658,650,670,640,643,649,655,647,659,645,662,668,642,761,786,782,781,790,776,764,780,765,772,776,779,776,778,1015,999,1018,1017,997,1000,1013,895,895,903,896,902,897,895,903,906,906,897,874,892,878,911,625,633,640,624,557,543,543,552,551,552,550,548,558,559,557,561,559,558,562,586,574,587,583,578,576,586,585,583,576,610,601,604,606,603,614,603,611,603,614,609,640,656,642,649,649,637,646,638,653,653,657,649,634,640,645,650,648,658,647,640,651,634,657,642,637,648,637,642,584,587,583,585,582,578,588,579,578,580,584,579,588,575,585,582,572,583,577,967,981,986,993,996,964,976,964,966,962,1007,998,985,971,996,913,893,907,903,889,902,902,897,889,887,895,724,731,725,717,719,733,732,735,727,726,746,1005,1017,1009,1018,1012,829,829,808,817,814,825,819,817,815,814,627,628,610,623,618,642,641,638,629,636,625,632,630,633,1076,1085,1105,1102,1120,1082,1063,1093,1096,1039,1098,1064,1098,1117,1091,1118,1104,948,951,954,960,966,961,963,956,958,954,976,941,963,959,687,661,667,676,653,696,673,683,683,646,661,680,623,624,616,619,622,624,619,621,615,626,621,620,623,622,627,610,613,620,621,641,645,639,637,625,635,644,629,632,639,642,639,619,621,627,626,628,615,621,634,855,847,849,837,853,857,846,841,831,858,847,859,843,826,848,830,780,774,784,780,777,778,781,783,792,785,779,780,789,678,674,666,674,675,663,679,674,662,666,660,663,673,940,943,937,958,946,926,939,953,939,958,941,934,939,954,670,677,672,682,691,683,687,675,678,667,692,661,680,582,566,573,574,567,571,562,570,575,564,573,565,575,561,575,527,532,530,525,522,533,536,525,523,534,524,533,536,627,612,622,633,629,626,616,631,632,622,633,627,629,630,622,622,631,636,615,651,637,629,646,652,637,652,628,639,639,640,638,1016,1004,997,1013,1006,1017,1015,1013,1033,1042,1019,1032,1009,1008,1028,1016,1007,1002,999,987,989,998,993,992,989,998,980,987,988,986,997,1000,995,991,986,992,906,883,887,865,874,887,892,889,877,869,886,880,926,939,922,947,939,928,911,926,937,944,946,957,935,944,935,928,936,923,939,963,958,951,956,963,953,954,951,962,950,872,870,856,1125,1140,1125,1137,1118,1107,1120,1126,1136,1126,1129,1129,1112,1124,1116,1125,1123,1108,1134,1143,1116,1121,1131,967,972,978,963,969,978,955,972,966,966,967,979,967,984,961,961,600,601,609,615,619,612,588,622,597,618,579,615,613,617,595,557,553,546,563,562,569,558,560,544,550,560,556,891,897,891,907,903,899,907,920,911,902,887,903,900,905,893,906,928,908,906,673,670,664,649,666,684,667,662,668,664,668,672,676,680,670,690,665,667,664,671,1061,1063,1068,1106,1082,1059,1047,1058,1091,1087,910,920,904,916,926,919,910,884,909,909,907,679,640,659,654,666,668,670,644,658,670,638,814,847,839,824,817,837,855,822,855,837,649,648,648,651,637,666,649,637,609,603,593,594,598,598,605,609,604,610,586,638,643,637,643,638,640,641,636,641,641,646,642,635,629,1082,1081,1072,1079,931,949,932,938,939,930,946,945,944,943,933,925,926,1008,1002,1004,1001,1000,993,1006,1007,1011,1007,1004,1005,997,995,999,863,863,855,850,853,853,866,876,866,869,872,856,858,890,846,1085,1083,1108,1084,1088,1092,1130,1098,1092,1091,1083,1087,1088,1089,1088,993,999,991,995,980,1003,999,989,1009,1012,995,982,995,992,994,999,903,899,903,910,899,892,893,902,896,904,886,905,815,794,799,814,803,821,804,812,800,820,816,741,746,746,734,746,754,735,724,742,734,735,731,743,721,747,739,726,729,732,718,738,719,736,733,732,732,1010,1009,1020,1006,1014,1020,1023,1017,1024,1009,1028,1004,1009,1011,926,933,936,948,938,929,939,924,942,937,940,931,926,954,786,791,787,796,784,790,611,590,599,607,606,602,603,597,591,591,591,620,955,955,938,940,949,955,962,945,941,954,958,961,955,948,960,960,955,967,950,956,954,951,958,961,817,830,842,831,839,819,820,828,823,830,821,830,837,815,647,651,659,655,644,671,683,691,686,681,685,687,688,682,679,683,675,684,678,937,934,952,930,949,940,950,954,952,974,979,971,965,981,995,978,830,830,833,822,833,827,837,818,837,830,829,640,645,646,632,638,641,633,637,627,880,879,881,885,878,868,877,904,884,882,884,890,885,657,695,694,702,690,674,664,687,670,698,678,672,682,690,669,681,871,873,868,873,875,866,866,849,861,871,869,871,873,645,641,626,643,630,645,634,648,656,652,643,651,1033,1050,1020,1023,1017,1026,1035,1021,1023,1022,1006,1026,1020,876,894,884,882,887,865,904,892,893,882,893,878,880,873,879,894,895,617,609,603,621,616,600,599,618,610,600,618,602,603,610,608,623,625,622,613,619,620,618,612,621,623,618,619,616,932,956,932,945,930,949,945,924,926,924,968,962,979,967,967,984,974,967,972,969,979,976,974,986,848,846,848,852,839,867,845,854,862,846,848,848,851,847,850,670,651,651,659,652,666,664,807,801,794,797,781,814,792,650,663,667,661,655,661,654,657,653,646,652,653,646,649,655,670,653,652,653,648,648,654,660,657,651,560,566,576,560,556,565,564,562,570,572,551,558,957,944,982,956,965,982,970,939,986,961,966,959,980,977,843,820,812,834,832,833,843,830,814,840,834,829,818,827,828,827,667,668,681,675,672,664,665,673,664,1064,1070,1070,1073,1070,1069,1054,1063,1074,1065,1064,780,771,751,768,788,766,755,769,767,758,836,829,822,823,841,829,828,833,825,837,747,747,730,741,745,732,734,737,749,738,740,741,741,739,748,753,643,622,634,640,632,628,645,634,632,630,637,633,623,627,629,627,637,618,788,791,792,797,791,785,795,776,794,795,1000,994,992,989,991,994,997,992,1002,999,1005,919,906,911,923,904,912,924,805,806,810,792,795,786,780,803,790,816,792,796,775,806,801,790,800,969,964,971,963,964,955,960,953,952,961,969,959,962,872,859,868,860,851,849,867,870,877,856,862,863,863,865,871,857,871,863,874,862,867,1153,1153,1143,1166,1160,1142,1150,1163,1154,1142,1155,1156,970,944,968,978,968,977,977,971,975,970,958,965,972,969,960,979,971,982,962,946,936,950,957,950,946,956,933,958,948,951,947,957,959,902,906,901,915,896,902,903,903,899,899,902,915,903,896,916,923,931,919,924,920,925,925,924,918,923,927,929,931,838,832,821,839,836,823,819,829,816,822,823,822,820,639,629,655,638,639,640,641,649,634,1108,1112,1119,1097,1120,1118,1121,1149,1130,1142,915,930,913,920,928,921,918,921,924,915,909,939,951,942,956,939,932,931,953,947,955,931,942,921,931,972,965,966,968,976,963,914,898,912,917,904,900,904,910,909,909,776,770,761,772,770,763,765,763,766,755,776,649,656,652,643,647,653,643,652,645,659,646,649,658,610,618,614,620,618,618,604,605,617,616,615,615,613,613,611,616,972,963,973,966,975,948,976,968,978,971,985,954,966,970,991,973,979,974,974,970,978,970,923,930,931,928,922,928,936,941,939,936,933,915,940,920,919,933,930,937,922,918,983,979,978,979,983,977,975,974,982,968,972,980,990,987,975,986,969,980,834,823,812,831,843,835,837,818,843,943,939,980,946,932,972,953,930,940,965,967,975,980,976,972,987,987,994,979,994,976,970,975,979,983,976,984,988,970,977,992,979,777,800,813,800,810,800,814,819,510,503,493,492,497,506,507,509,534,530,535,542,535,539,534,534,546,543,549,538,543,542,533,541,613,606,612,607,604,607,608,601,605,643,647,635,644,645,641,646,638,647,643,639,647,636,652,642,648,1092,1076,1067,1099,1053,1084,1092,1083,1087,1095,1070,1092,1093,1077,1085,1075,872,890,893,901,890,899,899,908,896,901,899,891,904,852,838,866,835,855,873,868,864,867,869,852,881,885,885,887,867,884,867,880,879,876,882,888,880,873,798,806,803,805,817,602,614,602,607,597,605,613,610,591,599,606,1002,1027,1020,1047,1045,1031,1018,1049,1039,1009,1032,1023,1019,1038,1011,1028,1039,1027,1035,1028,860,893,881,885,902,895,898,875,891,897,859,886,894,619,617,625,635,610,606,622,628,653,652,638,647,647,663,648,640,641,657,644,656,642,653,606,611,612,615,613,613,613,615,605,571,584,576,580,578,569,580,578,576,579,1003,1007,996,1004,994,1015,987,1009,994,993,1002,977,1010,1016,982,997,1017,990,989,925,918,905,908,891,927,906,909,910,908,921,916,898,916,928,669,658,668,667,649,644,675,658,673,639,668,660,679,677,685,672,638,630,624,643,627,636,642,633,636,647,629,644,642,631,635,633,641,1030,1041,1059,1064,1040,1035,1063,1043,1062,1045,1038,1056,1037,1050,959,956,956,951,956,955,946,962,938,953,943,956,943,834,810,830,834,829,818,833,824,827,823,827,833,829,745,745,760,741,752,745,756,741,738,757,750,753,747,756,751,757,751,750,749,626,638,641,640,631,640,628,630,645,638,635,636,647,641,637,646,647,638,645,657,640,650,638,637,626,642,646,651,642,639,677,673,688,686,694,675,668,680,671,694,914,915,907,917,919,921,926,912,922,912,933,901,921,910,912,920,940,916,921,929,912,909,916,991,987,965,988,994,996,997,997,987,999,982,982,998,991,990,998,988,862,875,864,870,875,878,881,876,885,865,861,859,869,860,868,881,622,615,602,613,609,602,618,608,608,612,619,611,1040,1005,1011,1030,1033,1041,1044,1028,1030,1026,1033,1018,1021,1008,903,892,897,908,907,903,890,929,901,913,907,887,885,900,893,902,897,652,663,666,662,665,643,653,663,658,659,651,667,663,664,877,860,858,879,874,868,874,873,866,884,874,862,856,868,880,874,738,736,752,733,760,750,741,748,745,744,755,1014,993,1009,1018,1001,1007,1010,1013,987,1019,996,1013,998,993,820,840,815,821,815,818,822,825,836,831,823,829,829,815,829,844,812,630,623,611,637,618,627,621,624,632,625,636,634,650,648,638,639,647,639,639,642,638,633,642,636,1050,1057,1039,1057,1040,1042,1043,1027,1038,1045,901,905,908,902,908,901,908,891,887,897,879,897,912,902,891,897,906,883,897,899,905,905,897,903,592,609,607,602,607,599,607,621,601,597,599,604,609,597,595,606,601,601,592,546,541,521,542,531,532,530,536,533,531,539,532,541,530,563,581,577,579,567,574,1125,1136,1134,1134,1144,1159,1128,1166,1112,1137,1140,1160,1152,1131,1161,900,921,905,912,906,903,896,925,901,920,911,904,908,917,560,578,576,563,586,556,586,578,820,841,843,799,823,814,826,829,883,885,889,890,877,881,891,897,879,900,890,889,893,900,886,890,878,923,915,912,920,912,910,919,915,911,925,905,909,926,984,995,988,982,992,988,980,993,971,988,978,992,850,863,861,866,861,879,867,853,861,877,854,876,865,877,607,618,622,623,626,610,634,627,630,619,616,609,627,626,631,611,622,600,597,578,588,578,581,595,588,585,584,583,578,578,571,583,582,570,1104,1081,1087,1102,1107,1114,1128,1088,1116,1089,1113,1073,1106,986,995,998,663,667,648,647,669,660,647,660,648,658,666,644,666,653,645,668,650,609,590,595,590,594,607,598,605,603,612,604,596,591,596,604,873,873,881,886,886,889,878,872,877,875,887,880,868,873,695,697,703,712,692,703,716,715,697,705,711,695,715,702,702,702,707,715,698,699,694,706,857,842,873,844,851,850,872,872,882,875,874,884,884,879,865,874,874,864,619,640,629,615,644,623,628,617,621,626,629,639,626,641,634,616,1070,1076,1090,1088,1099,1071,1074,1115,821,816,808,822,811,810,834,825,808,810,809,622,653,632,641,640,638,636,620,614,642,647,645,632,648,632,639,628,641,631,930,925,939,920,922,931,918,912,916,920,931,924,932,915,926,917,997,997,1000,989,1011,1014,990,995,1000,1008,1008,993,1001,998,1003,881,905,882,901,879,880,887,871,875,890,880,875,883,887,1021,1009,1011,1002,1021,1009,1017,1012,1015,1005,1024,1001,1009,1013,942,939,940,921,933,945,932,929,936,938,651,669,668,673,665,659,655,673,678,677,667,663,672,663,678,665,822,818,809,802,821,811,826,831,749,752,742,750,758,755,750,753,744,752,754,748,761,746,760,747,742,659,662,671,667,664,671,655,664,660,662,659,660,655,649,649,659,653,668,668,941,946,949,937,954,963,946,933,953,937,942,942,941,940,940,946,794,807,798,806,800,800,801,793,797,797,802,667,657,662,663,676,651,649,661,671,670,673,638,634,638,625,639,635,640,632,638,641,631,647,868,856,859,866,860,854,863,861,870,853,868,871,847,992,970,964,961,976,963,985,970,970,990,969,974,991,900,909,904,906,891,908,896,890,905,902,898,903,888,892,899,741,750,763,747,744,746,751,745,759,744,742,753,751,736,757,754,951,936,931,937,922,944,939,941,943,936,950,940,940,938,933,944,930,928,975,976,982,978,968,967,990,984,835,813,841,842,834,835,839,824,828,826,836,840,823,827,832,833,843,987,991,990,969,980,999,1010,1003,980,987,980,993,1000,994,986,982,981,983,970,970,959,971,974,962,953,966,968,969,961,953,860,860,860,869,859,858,858,858,866,868,847,853,860,844,857,852,853,853,857,850,847,857,850,856,854,858,785,782,775,778,787,783,610,605,605,613,602,605,619,609,615,600,607,598,614,619,962,938,951,958,980,966,957,956,962,945,940,930,937,921,950,935,924,924,936,937,942,939,932,931,839,834,836,819,833,831,835,836,843,831,821,831,833,835,825,823,813,818,814,837,819,965,967,963,963,968,950,951,964,971,972,964,960,967,968,968,858,862,854,874,860,858,849,868,858,868,871,856,865,870,858,846,880,867,869,868,883,863,834,828,833,842,838,831,829,825,836,832,617,598,616,607,602,604,639,629,603,534,532,523,530,537,539,533,531,524,522,531,535,524,541,530,531,516,537,540,535,593,583,581,581,585,580,590,592,598,589,590,597,592,595,587,609,600,602,604,598,601,600,603,597,602,598,592,575,563,571,560,555,565,567,566,567,559,567,567,558,574,572,558,605,601,612,598,616,607,606,611,610,607,613,603,606,609,610,603,596,596,601,594,604,595,586,590,589,596,604,600,578,575,570,578,573,578,576,576,577,572,579,586,573,571,615,627,614,623,628,626,627,629,624,629,622,615,630,922,962,934,934,939,936,944,957,957,741,749,765,751,745,744,745,742,755,764,744,732,748,742,756,754,739,911,914,921,911,928,911,920,905,912,912,918,914,952,952,953,947,962,961,953,912,905,903,894,891,904,889,897,902,902,914,895,898,900,895,888,884,897,896,776,800,789,795,780,789,791,796,774,797,779,785,792,787,773,769,788,645,644,643,641,644,636,640,649,639,654,647,641,654,643,647,661,653,631,646,658,603,597,589,586,585,583,581,1099,1103,1086,1094,1103,1118,1116,1092,1120,1098,1099,913,930,905,919,903,906,922,929,891,920,913,912,900,917,913,659,665,660,683,663,663,678,674,684,675,666,766,770,747,766,777,766,766,774,772,755,780,769,775,771,762,771,950,955,942,950,954,947,947,931,952,950,955,940,955,937,939,947,784,790,801,788,793,788,790,795,800,790,784,782,791,793,786,800,784,637,614,624,640,632,642,626,616,632,628,620,636,637,636,623,642,627,625,625,636,815,816,813,818,792,796,792,799,806,801,807,807,804,975,967,970,976,952,969,966,898,881,901,910,900,901,889,905,902,917,901,907,915,588,582,580,585,579,585,593,579,587,594,575,582,593,580,593,584,573,585,980,972,1002,988,982,987,976,987,1006,875,881,880,890,879,891,896,881,892,994,991,975,989,996,989,1010,982,1007,1001,998,979,1002,981,980,996,1002,1012,1030,1022,1030,1032,1036,1031,1029,1033,1022,1031,1037,1021,1030,1026,1022,1026,1025,1011,1025,1026,1019,1023,1018,1024,886,871,879,883,887,879,886,881,876,883,874,875,895,886,875,637,633,652,646,649,660,642,649,636,639,659,652,659,635,830,852,827,839,825,846,823,827,835,833,828,842,828,759,767,777,778,773,774,771,774,783,780,757,756,760,760,758,760,751,761,759,756,756,764,761,753,641,644,647,627,651,648,628,639,650,636,643,644,642,647,879,858,882,894,878,895,886,859,882,876,893,673,653,638,658,648,661,653,670,657,662,664,1068,1073,1074,1060,1087,1077,1057,1094,1057,1053,1087,910,922,908,904,909,919,887,913,910,900,910,910,908,911,899,892,909,923,914,580,591,574,593,586,573,581,603,590,604,597,598,604,598,614,603,626,604,608,613,607,606,615,611,609,614,612,606,612,607,622,607,587,583,591,596,601,597,591,587,584,586,590,588,586,586,590,589,580,578,590,582,877,906,892,893,896,908,900,896,919,913,905,910,872,698,693,697,690,694,682,689,685,678,680,680,681,699,691,664,647,649,648,647,641,654,646,635,661,657,654,656,653,672,682,677,682,663,684,688,679,673,615,603,608,600,609,609,602,616,609,613,603,609,608,601,609,612,592,605,573,565,574,573,567,558,565,566,568,562,564,560,557,565,563,565,902,930,895,915,893,923,920,895,896,921,881,897,906,716,735,715,724,709,716,700,719,709,724,717,720,723,706,733,734,706,714,710,730,863,875,857,898,876,870,866,873,773,765,777,785,788,773,771,791,783,778,775,783,782,776,773,776,628,627,637,634,624,636,636,640,646,630,642,633,632,588,581,580,583,582,582,585,569,586,579,587,580,579,582,590,581,592,586,618,612,617,610,617,622,614,619,617,631,616,604,624,615,621,611,623,616,618,624,618,618,618,613,1089,1095,1084,1071,1097,1094,1068,1088,1090,1081,1119,919,933,913,910,945,919,931,929,916,937,926,936,959,954,960,951,959,958,954,969,811,814,818,816,816,811,823,828,806,829,809,813,806,812,811,817,802,804,832,816,961,965,977,971,980,975,987,969,963,973,974,971,864,873,864,859,878,855,867,858,655,647,637,658,674,666,652,648,651,666,646,646,644,825,837,840,824,833,833,838,838,827,827,823,844,826,851,821,828,824,827,758,752,755,769,761,765,760,764,763,765,755,761,768,762,759,762,761,771,642,644,647,636,656,641,646,641,647,642,621,645,811,803,791,815,799,823,815,809,807,801,810,804,959,953,960,961,956,948,947,886,874,890,876,876,877,882,880,883,867,876,874,879,868,884,871,876,883,878,841,840,844,844,842,847,851,847,839,843,850,846,851,844,842,850,619,636,643,624,619,644,632,627,617,623,638,611,589,581,578,587,590,583,583,579,581,574,578,580,590,887,888,862,879,885,894,907,876,889,880,887,871,794,796,795,792,794,800,795,800,785,792,792,792,796,795,801,807,801,790,619,609,613,615,628,613,614,616,618,619,612,624,607,618,617,614,623,618,1013,1013,1024,1008,1017,1007,1023,1009,1020,1012,1010,1026,1029,1021,1023,1021,1020,1013,1017,1016,1021,1021,907,882,891,907,912,895,910,886,905,908,896,895,903,901,887,811,820,830,816,817,833,818,831,817,1035,1039,1038,1040,1026,1025,1040,1039,1032,1036,1038,861,884,861,869,884,853,875,883,883,854,860,865,885,862,533,541,553,526,532,550,543,544,548,545,553,554,534,564,581,568,569,565,581,569,574,568,575,549,578,559,566,579,579,572,557,563,1066,1093,1065,1090,1125,1098,1113,1077,1115,1072,1095,1121,1072,996,1005,993,994,1000,1005,996,1002,995,1003,993,869,868,865,857,871,877,871,858,872,861,867,737,701,719,732,714,738,714,714,713,725,716,730,722,711,909,899,898,897,894,893,896,892,891,901,893,909,899,903,903,901,879,892,890,989,981,964,987,982,989,977,970,982,988,975,974,976,966,974,989,973,984,906,911,922,891,893,906,914,635,611,601,642,618,630,616,624,634,600,616,604,625,623,610,617,612,622,623,621,618,622,624,605,596,602,594,609,612,611,602,606,606,607,604,610,605,606,605,601,606,604,601,982,962,975,970,959,978,955,981,991,992,1005,980,980,995,994,985,977,984,989,987,990,1002,988,1002,973,994,986,992,1002,844,832,851,854,1033,1045,1036,1032,1031,1028,1028,1023,1027,1025,1023,1025,941,936,937,923,942,926,936,919,931,928,933,943,927,917,933,818,819,810,802,810,810,825,798,830,809,815,802,977,984,978,968,1002,974,984,982,985,977,973,977,973,881,873,881,878,884,879,881,876,870,871,884,875,871,866,876,878,871,878,863,868,864,856,854,867,868,855,869,864,862,779,773,788,769,775,772,782,790,778,783,781,778,787,774,775,670,651,664,658,669,644,663,659,656,661,670,652,669,670,673,627,614,630,624,631,634,626,645,637,628,634,635,859,853,865,866,846,839,846,843,866,850,857,866,878,857,857,860,852,978,981,978,986,975,982,980,986,974,981,979,963,968,978,981,982,989,985,994,881,879,875,880,886,875,888,881,887,882,907,874,878,884,583,598,576,592,592,600,600,559,562,564,570,560,562,574,566,553,558,568,559,558,581,568,568,565,575,564,573,906,882,877,877,884,905,890,862,894,782,778,774,795,793,773,763,784,785,770,795,598,615,598,599,601,605,995,1019,1033,1015,1008,1001,1000,1013,1005,993,1005,994,1000,1021,1012,1014,859,840,844,855,852,839,843,832,858,601,610,606,602,611,604,608,605,599,597,599,588,599,599,611,605,611,603,605,958,969,952,960,991,971,971,963,954,952,960,689,689,694,692,691,683,689,693,689,691,978,980,993,983,962,971,995,994,995,963,1000,1003,999,988,993,990,996,960,865,869,861,837,851,859,853,860,857,846,862,856,848,855,867,854,853,866,568,590,576,578,582,572,587,600,569,591,597,587,588,593,587,831,840,883,836,829,864,852,848,865,857,840,842,849,763,767,639,642,617,639,636,641,643,637,636,625,639,623,633,639,631,1098,1117,1113,1099,1104,1090,1103,1106,1119,1087,1113,1102,1115,1105,1098,1106,1104,1108,1091,1105,1122,950,978,950,968,973,972,961,963,977,961,955,599,604,613,591,610,606,600,610,602,600,602,619,614,611,684,689,678,681,693,666,669,675,666,677,677,687,679,685,685,603,610,606,606,603,606,595,600,607,601,606,599,604,610,607,599,603,1090,1061,1100,1067,1060,1060,1070,1046,1087,1074,1057,1075,1036,1071,1080,1077,1097,954,964,968,953,968,967,955,957,958,937,955,956,976,959,956,948,835,826,833,842,831,836,827,817,830,825,842,839,828,839,813,837,834,832,673,676,683,669,683,689,674,680,668,651,636,646,635,649,646,634,639,651,650,649,643,643,643,642,643,638,636,1055,1060,1042,1073,1065,1059,1074,1063,1069,1055,1048,1047,1081,1059,1047,1042,1064,1062,1070,1048,1088,1059,1012,1012,1015,1022,1018,1025,1021,1014,1019,928,915,925,912,928,931,916,906,902,929,906,901,908,915,919,923,925,918,917,605,593,609,612,605,613,615,607,612,587,596,611,596,598,608,599,600,595,592,597,602,633,630,642,640,638,630,641,629,641,641,647,633,626,625,636,940,948,938,948,947,937,956,925,933,947,949,937,946,944,944,936,666,672,660,667,662,651,666,664,663,688,667,653,660,671,652,654,656,1036,1039,1031,1017,1062,1042,1037,1030,1032,1019,1014,1005,1029,1014,1036,1035,1043,1048,1010,1034,937,955,949,952,954,958,949,959,941,943,947,959,947,952,764,757,741,761,747,749,761,753,745,745,748,765,762,585,604,592,576,587,583,589,593,579,589,528,538,533,536,521,537,530,537,539,533,526,576,564,577,570,566,577,572,568,576,560,572,561,986,1007,994,985,994,1005,1003,993,998,979,980,1009,668,654,653,646,650,649,922,934,931,927,921,924,932,912,927,930,878,896,894,888,911,891,883,923,911,910,910,905,914,899,907,911,904,898,910,915,903,818,819,822,813,802,799,790,803,782,803,801,794,813,566,559,552,552,551,554,567,571,570,551,561,560,555,1111,1169,1117,1123,1121,1104,1091,1126,1136,1107,1124,1138,1138,943,929,954,923,936,901,940,916,934,918,938,941,934,557,551,576,549,544,559,557,552,577,560,556,550,552,571,601,608,606,595,598,597,604,603,598,604,592,607,582,604,954,953,742,746,725,717,713,734,754,736,746,727,725,742,896,875,885,889,901,879,884,891,899,882,887,877,891,867,638,616,623,622,633,609,601,612,614,626,618,920,939,924,925,920,925,929,935,938,919,917,925,917,955,961,924,938,919,933,898,908,902,913,911,922,910,916,897,659,653,641,674,638,651,642,657,647,642,662,648,639,655,637,654,646,644,634,634,650,654,644,642,650,643,644,606,608,608,609,621,611,612,625,607,596,614,616,844,841,840,849,825,849,832,820,832,836,834,824,1040,1040,1034,1035,1034,1037,1036,1040,1034,1034,1052,1031,1035,892,897,918,916,909,911,925,902,919,919,1077,1097,1093,1005,995,1006,1011,987,1013,1004,1003,1005,1008,1008,998,1001,1016,1004,1003,1009,1002,1003,874,880,893,888,901,878,880,883,885,891,898,888,887,872,621,618,614,627,626,623,617,613,629,624,608,609,599,615,611,595,609,645,646,647,657,639,647,641,654,645,642,659,631,635,659,993,980,987,995,1002,998,984,990,1005,995,1002,989,988,979,992,984,983,1002,984,986,860,855,856,840,855,844,862,860,865,592,570,578,581,586,575,580,569,571,573,569,572,674,666,675,685,672,679,683,675,681,683,647,659,649,641,649,646,649,638,653,645,637,650,644,646,647,864,871,865,863,868,854,846,868,877,860,870,850,858,642,636,657,648,622,626,639,619,636,619,630,641,624,612,630,621,642,647,636,633,629,533,541,532,538,528,530,525,525,531,536,522,634,625,620,619,633,627,624,624,629,622,627,629,637,635,633,645,629,647,637,641,639,639,643,641,637,631,983,1003,1001,1016,996,1022,1005,1001,988,1013,993,732,706,717,721,712,728,716,741,714,685,734,724,730,705,771,745,759,755,761,758,765,760,768,760,767,759,744,755,701,698,673,690,687,698,693,706,693,703,689,690,689,703,705,691,687,900,880,883,886,879,892,890,874,892,881,898,897,889,949,941,938,945,938,934,943,957,948,931,942,941,942,945,943,941,935,947,951,944,942,932,918,945,928,928,920,935,918,931,921,928,937,932,930,925,934,927,927,932,933,936,940,935,945,937,939,938,941,959,955,960,957,961,960,963,961,962,965,956,961,974,873,861,852,875,867,865,869,855,847,868,867,850,856,855,861,859,872,860,843,863,853,862,615,589,570,602,572,576,581,579,595,594,591,597,588,578,595,580,578,924,901,919,902,905,915,906,914,895,906,905,915,898,903,905,915,909,953,952,958,945,948,953,939,962,950,943,941,947,954,947,952,947,962,951,965,955,960,961,963,955,949,947,806,822,810,812,802,805,810,815,834,817,796,828,824,817,929,902,917,906,916,915,903,904,921,863,881,868,872,887,868,870,875,874,863,871,876,864,875,876,859,820,814,802,802,794,815,815,810,806,821,823,798,807,809,816,982,983,990,980,974,992,989,966,985,994,839,854,848,830,843,847,851,834,840,826,838,839,839,830,628,614,626,616,623,620,624,623,625,615,631,615,620,647,653,653,655,648,656,647,658,662,648,870,872,888,872,893,872,870,872,856,877,870,777,768,772,768,778,782,765,765,763,776,778,774,780,775,772,768,619,626,638,636,629,602,626,625,626,620,613,628,623,632,770,769,778,765,776,775,780,783,790,771,772,782,655,657,666,671,666,677,666,604,600,592,609,609,598,601,596,600,607,588,606,602,593,592,599,603,604,632,634,641,632,646,632,638,638,647,632,636,638,645,644,638,1023,1025,1027,1055,1024,1050,1043,1039,1033,1018,992,1043,946,957,967,945,962,953,961,943,954,929,942,952,942,949,952,791,789,802,792,791,804,798,785,789,801,795,799,791,798,803,802,762,766,767,756,744,757,769,757,752,757,757,758,763,758,761,745,757,757,756,640,641,632,629,641,629,1123,1133,1149,1124,1135,1138,1149,1138,1132,1102,1144,1161,1125,1146,1168,876,884,874,884,899,880,888,879,884,877,887,898,955,948,953,948,975,934,941,946,923,932,929,929,931,939,938,941,923,934,934,930,934,931,926,942,924,934,918,923,931,943,943,931,923,941,940,927,825,805,828,817,819,813,789,807,832,823,603,594,584,586,602,610,593,586,597,599,597,588,596,601,591,602,576,659,636,632,644,627,639,633,648,631,644,643,651,632,653,630,622,627,621,610,600,603,608,613,608,604,603,610,609,607,609,605,609,603,615,1110,1096,1127,1108,1096,1083,1105,1091,1094,1099,1109,1111,1115,1106,1089,930,945,937,952,920,932,937,941,945,936,946,947,919,929,933,955,922,943,940,941,910,932,940,925,924,926,935,910,925,923,916,903,921,921,914,925,939,956,959,960,966,961,964,964,969,867,864,851,862,858,855,853,847,863,870,848,862,606,592,587,604,591,589,603,601,602,600,609,585,598,593,993,986,984,994,987,1005,991,990,996,689,682,692,705,690,1075,1070,1091,1078,1081,1112,1093,1092,1053,1059,1058,1068,1089,935,929,938,941,927,923,934,914,920,933,928,933,937,935,836,818,832,830,833,831,828,840,828,832,832,832,833,830,832,834,827,734,749,741,739,745,748,746,741,733,996,991,997,992,1000,1002,993,1005,1005,988,1016,860,869,863,871,867,860,868,860,872,860,867,856,857,865,871,857,849,866,1020,1019,1020,1018,1015,1006,1019,1033,1031,1017,1013,1017,1015,1009,1009,1018,1012,850,851,851,844,845,844,849,865,843,829,844,849,830,861,854,856,850,833,543,536,550,544,545,544,548,542,550,540,544,554,558,550,559,546,543,1057,1074,1038,1059,1064,1075,1061,1068,1052,1060,1055,1071,924,930,903,924,933,916,928,911,907,921,914,907,622,623,626,633,623,640,630,622,624,613,632,629,635,617,626,653,647,651,635,656,647,631,625,612,618,620,616,627,616,616,610,609,630,617,625,617,614,936,933,929,930,933,922,927,922,916,919,934,915,908,916,737,745,722,755,741,726,739,729,747,753,739,741,730,756,950,936,942,947,927,941,938,960,942,932,929,942,941,939,885,875,870,877,877,879,863,879,878,874,876,868,878,865,874,875,724,705,697,710,707,705,707,722,718,728,702,723,710,717,1002,983,992,983,978,963,967,988,974,971,993,976,970,965,968,902,908,915,898,905,914,902,923,900,912,909,906,921,914,748,747,736,754,757,747,739,753,755,753,642,649,651,643,642,653,647,641,642,654,651,657,641,645,650,643,644,644,811,791,809,792,810,794,808,811,800,788,806,795,812,800,637,630,635,628,638,633,632,632,646,635,631,631,555,568,552,554,563,561,558,568,553,607,606,603,608,596,602,610,601,595,607,608,604,598,605,599,596,610,619,609,613,611,616,619,608,630,623,613,617,1030,1097,1058,1042,1065,1079,1067,1050,1046,885,862,884,873,889,862,885,877,847,853,873,871,893,1017,1004,1023,1013,1010,1011,1015,897,910,904,920,909,910,912,904,901,731,713,721,725,728,723,707,722,718,727,721,716,722,718,724,590,605,598,597,607,598,597,604,612,600,528,527,528,527,529,532,529,535,534,538,537,526,530,526,602,606,597,606,609,606,596,606,597,610,599,609,606,613,609,604,605,601,595,590,603,598,608,602,600,680,680,699,690,692,683,664,686,893,886,915,894,897,867,889,886,901,896,875,911,901,904,891,874,886,904,756,759,766,771,760,747,755,750,761,753,615,632,632,636,641,639,637,617,630,632,632,630,883,865,882,886,884,893,853,883,890,889,646,642,660,629,635,642,626,627,625,657,1034,1027,1024,999,1024,998,1010,1001,1017,1026,1000,1015,1007,1020,1023,882,877,875,883,868,871,883,865,883,876,867,866,814,810,811,815,817,810,802,803,648,630,631,643,647,637,634,643,622,635,627,636,638,622,621,612,623,620,615,626,622,616,611,622,616,619,616,625,622,621,625,625,619,628,626,629,630,619,622,900,887,890,907,892,909,878,883,903,714,714,736,727,737,724,735,726,721,727,727,728,719,723,734,732,730,723,889,898,878,906,890,883,896,879,893,897,895,636,646,633,652,641,623,638,632,636,1030,991,1032,1014,1019,1008,1008,1032,1022,1012,1012,1038,1001,1019,912,896,906,908,892,897,887,916,899,897,910,898,892,649,658,661,664,657,651,650,654,641,645,651,660,651,660,653,802,808,798,806,803,809,818,799,821,804,601,591,606,597,601,601,600,601,606,587,598,602,600,597,599,592,598,555,564,559,556,661,656,661,636,650,668,662,642,639,632,660,978,962,972,979,984,984,982,965,975,977,983,792,790,778,792,794,806,786,780,799,788,789,796,800,791,791,1005,1006,1017,1004,1008,1001,1003,1000,1000,999,1007,866,877,884,879,885,875,888,891,880,869,885,873,870,888,889,935,924,921,930,924,922,918,926,915,915,928,925,917,834,835,820,838,827,826,819,820,824,820,823,812,826,552,565,555,550,548,561,548,552,558,547,557,541,559,588,589,591,593,598,586,592,587,590,578,585,581,591,590,651,626,638,628,639,637,638,617,643,627,649,647,634,634,639,642,633,628,649,634,942,945,950,929,937,931,923,929,924,943,925,923,932,686,701,695,696,699,700,696,671,705,696,596,608,597,622,593,605,602,606,605,613,604,541,565,561,562,754,750,770,761,753,759,758,770,758,765,770,764,772,763,757,757,615,647,627,633,620,639,632,621,626,627,620,622,637,643,620,549,559,549,557,548,556,696,718,703,693,695,710,704,694,701,708,696,705,694,707,721,723,710,688,715,970,953,965,961,942,953,971,960,970,957,969,949,963,947,955,967,955,971,963,965,970,960,973,951,1011,993,990,990,1008,987,1010,1001,1000,990,990,997,1003,871,884,856,860,845,867,848,867,864,882,862,848,865,861,850,857,847,884,563,556,565,565,566,577,571,575,574,569,531,554,557,575,593,580,588,583,571,584,592,574,577,586,577,972,960,949,973,957,957,952,965,967,958,936,946,946,962,959,961,999,988,1008,993,1000,997,995,998,1002,985,995,1006,989,1000,888,889,887,891,903,889,883,890,885,891,891,878,612,575,588,593,585,593,594,574,599,588,592,593,583,565,564,568,556,551,563,556,555,557,556,568,561,996,1002,997,995,974,983,1009,1004,993,997,993,993,656,681,695,673,681,680,671,665,670,688,677,1167,1166,1184,1147,1194,1183,1154,1150,1166,1166,1190,1209,1182,1172,955,959,958,964,966,941,947,964,976,958,1058,1053,1042,1044,1038,1039,1044,1042,1040,1044,1031,1044,895,891,878,870,891,894,901,903,879,879,916,884,889,893,883,900,893,894,893,901,952,962,956,942,960,954,931,924,922,936,957,925,934,962,953,970,962,955,959,964,963,964,957,975,970,968,967,964,962,965,969,959,963,967,967,949,947,951,954,952,943,955,948,951,942,945,1016,1015,1018,1024,1021,1019,1019,1024,1024,1012,1024,1018,1012,1017,832,847,830,830,823,824,824,830,836,854,992,1010,998,1002,1006,1002,991,1000,982,993,991,998,1000,892,864,888,884,881,879,895,888,881,877,872,873,884,879,871,876,594,603,616,617,610,612,609,612,613,618,603,608,606,610,597,603,598,601,973,989,987,976,974,964,974,973,956,977,974,973,985,969,985,970,979,986,983,990,995,983,980,988,992,973,979,971,974,980,968,979,846,832,850,834,848,836,516,525,508,528,524,505,533,531,516,519,510,505,520,501,519,591,591,585,595,586,586,585,581,601,608,602,587,591,592,669,663,662,655,655,660,652,663,665,655,661,662,676,673,655,652,668,648,653,670,970,975,995,991,966,969,960,974,977,973,960,966,973,962,981,963,970,798,810,797,800,794,799,812,813,799,795,809,809,810,802,806,815,804,793,814,794,810,808,632,642,656,647,641,646,665,648,645,645,646,655,645,643,651,655,663,647,642,664,655,584,575,582,579,568,574,577,574,577,571,582,577,576,578,572,576,567,570,574,564,565,570,563,571,576,579,569,568,572,567,568,569,571,568,572,562,568,571,565,572,564,569,912,904,918,895,895,891,914,898,894,898,911,915,909,917,923,902,907,678,686,677,700,695,686,682,674,694,679,698,690,657,650,657,652,644,656,647,655,653,660,651,661,643,657,653,653,650,731,737,755,741,737,732,751,740,730,742,735,732,660,646,648,647,648,649,655,657,654,651,853,866,859,881,872,861,853,874,864,886,882,866,869,857,869,864,952,945,946,955,953,956,945,946,949,948,941,937,945,941,955,953,950,847,829,837,831,841,827,817,842,812,826,1058,1054,1065,1049,1055,1065,1059,1053,1057,1044,1040,1051,1073,1056,1052,1056,962,951,955,946,955,942,949,964,966,967,950,759,755,753,763,768,760,753,757,762,776,767,761,761,770,769,761,761,750,612,623,617,617,615,620,605,606,606,610,1035,1069,1055,1032,1030,1014,1033,1054,1031,1025,1026,1034,1046,1042,866,870,858,866,865,867,868,842,887,861,952,928,951,944,947,933,957,953,958,937,958,929,968,935,969,964,974,972,973,970,961,966,977,966,977,979,968,974,962,978,858,864,861,857,843,863,855,878,856,871,861,864,829,836,833,837,838,833,833,835,831,822,737,749,760,756,734,746,758,723,732,744,724,735,739,751,738,933,937,936,938,929,922,938,934,920,944,942,929,929,936,925,932,934,941,924,931,930,930,919,930,932,936,936,941,940,943,947,940,943,945,899,887,887,883,886,875,885,889,906,881,876,894,889,890,638,641,638,639,637,635,620,644,623,645,625,653,642,642,643,654,651,632,604,590,586,581,589,590,595,589,586,583,578,1071,1036,1044,1052,1015,1038,1032,1051,1038,1030,857,843,868,848,850,853,643,645,652,649,645,638,637,659,655,645,655,647,944,947,954,939,947,949,942,958,931,701,710,707,702,894,893,886,894,886,893,907,896,903,796,801,801,791,781,802,815,762,751,757,765,760,756,755,748,753,750,753,603,618,624,614,600,619,609,618,618,618,620,624,606,623,621,615,611,566,555,553,558,560,552,561,556,553,558,546,551,547,554,551,556,540,546,540,859,859,874,873,851,855,883,862,892,618,632,623,620,636,617,607,641,627,623,623,628,618,625,609,549,541,549,538,549,546,552,536,547,547,544,562,551,550,603,618,610,629,610,615,618,606,621,620,626,606,612,620,612,614,614,609,616,616,613,993,974,966,975,963,981,963,985,972,964,971,967,986,987,1019,978,970,986,769,762,772,781,773,757,769,753,756,771,769,779,761,755,763,763,920,910,921,907,910,918,906,920,914,915,920,906,903,907,907,901,912,902,903,843,823,816,829,825,825,825,836,818,835,825,827,840,832,828,593,604,602,605,611,593,611,600,581,573,564,568,565,577,572,572,566,577,572,1123,1105,1142,1119,1144,1131,1128,1089,1105,1110,1141,1122,1137,977,984,978,992,967,977,1003,978,963,988,982,975,994,980,973,983,979,972,984,983,980,973,1028,1027,1041,1036,1033,1026,1026,1034,1043,1038,1038,932,936,928,936,936,944,939,941,804,824,789,800,811,801,820,812,794,799,794,802,804,814,991,993,988,992,1019,995,991,1000,1006,997,851,859,856,845,854,869,833,854,589,600,593,597,593,608,600,590,593,596,587,595,1109,1107,1114,1115,1120,1129,1099,1108,1114,1122,1107,1101,1136,1101,1139,1123,947,937,947,922,947,923,927,928,931,942,592,592,594,588,587,606,588,604,604,582,587,580,596,590,1106,1130,1142,1097,1110,1099,1133,1099,1121,1114,1122,1112,1127,1092,1101,1101,1128,1120,1115,1116,992,1004,1004,1002,999,1000,1006,1014,1027,1028,1004,1000,1000,1017,1028,996,1015,1026,1004,1002,682,674,647,669,669,688,667,656,671,639,669,677,667,641,646,664,662,663,655,625,630,622,628,628,639,637,632,626,629,634,623,619,641,616,620,632,634,807,836,806,801,826,803,825,818,809,821,812,1002,991,978,978,988,983,987,982,971,986,1000,992,989,987,913,915,923,917,914,920,914,906,919,873,870,862,882,868,867,872,857,871,881,866,884,649,621,638,631,650,644,646,634,652,641,640,645,654,644,651,639,639,639,645,569,570,570,567,566,552,557,572,559,582,566,583,571,571,566,962,950,975,950,948,948,954,962,959,958,950,966,951,969,938,936,734,751,722,730,738,721,732,727,733,720,721,732,746,733,742,788,823,829,789,786,794,800,814,798,802,807,798,795,808,631,614,630,628,624,616,627,642,625,628,611,566,556,548,561,565,557,557,547,554,557,554,563,561,544,561,548,553,562,557,557,540,542,541,550,542,547,546,556,548,540,553,548,550,832,850,849,844,833,846,842,849,874,848,815,843,843,841,832,831,846,648,646,641,618,644,634,644,626,629,637,653,544,546,551,545,544,555,560,549,548,545,543,552,620,603,601,601,609,622,609,612,606,619,598,612,620,623,606,614,619,617,609,616,602,609,622,619,621,608,958,949,925,964,937,932,938,931,933,933,929,947,824,822,825,818,825,829,821,827,799,821,809,823,821,808,836,614,607,590,587,600,600,603,594,599,586,603,594,585,597,608,596,587,579,600,928,919,922,924,925,914,912,921,924,892,918,914,921,901,915,918,925,828,852,846,831,842,855,840,852,851,836,827,837,854,846,834,631,632,629,628,640,644,633,628,623,641,623,626,670,665,672,675,679,674,678,668,667,672,667,674,663,888,899,884,885,904,905,873,906,872,902,896,878,901,909,896,894,897,888,685,703,698,700,697,700,704,688,710,699,715,702,683,620,610,627,624,606,606,613,613,632,626,610,890,922,896,906,918,884,921,908,908,908,898,906,910,898,895,784,752,774,767,774,764,768,782,759,769,771,765,1024,1033,1026,1024,1025,1022,1028,1027,1028,1017,1008,1020,1016,1025,899,917,916,896,901,906,915,894,905,914,900,909,908,891,781,772,772,775,782,772,775,772,777,778,767,776,783,776,786,772,782,779,669,663,653,651,652,647,670,656,664,653,656,672,649,656,564,572,564,568,575,563,571,562,569,563,572,577,580,569,577,571,565,548,555,553,545,541,543,551,557,552,554,541,544,556,548,551,555,547,624,613,626,619,612,617,620,619,620,620,618,601,657,663,655,674,667,673,671,666,665,655,655,648,654,658,661,601,597,597,601,602,601,605,609,601,601,605,600,603,608,604,597,1027,1046,1033,1075,1057,1050,1041,1050,1039,1091,1034,1044,1032,991,974,980,949,986,957,971,966,969,961,993,627,609,600,602,602,623,629,614,617,618,601,616,615,635,618,632,588,579,584,589,574,580,585,574,595,897,887,880,872,860,895,682,672,670,673,672,680,661,665,674,689,610,606,608,615,610,604,612,616,605,609,606,609,608,615,623,623,625,614,611,611,617,616,617,616,958,935,932,953,925,948,928,940,937,927,928,933,943,928,982,981,963,967,967,966,970,976,973,975,964,977,962,854,864,864,859,860,860,868,859,868,842,843,860,868,859,855,866,879,872,872,872,870,862,866,874,968,984,975,979,982,980,985,985,971,993,974,976,976,974,989,898,895,900,888,897,899,916,899,898,913,891,924,899,618,626,612,609,619,616,615,612,608,605,626,608,1049,1061,1065,1033,1057,1044,1039,1048,1052,1035,1032,1039,915,899,893,893,895,898,894,904,895,905,910,911,891,916,904,897,1013,1011,1010,1015,1009,1025,1008,1005,1004,1011,1011,1005,1016,1012,1016,893,884,880,879,894,898,742,728,738,743,735,750,742,753,741,748,727,737,1105,1090,1078,1105,1087,1110,1085,1102,1100,1103,1082,902,912,904,895,891,904,897,904,917,914,892,893,1038,1041,1043,1028,1039,1049,1037,1048,1051,1034,1032,1040,1039,1044,1030,1050,1035,1047,873,869,880,888,882,875,868,877,872,876,874,871,894,886,872,881,600,601,598,610,609,610,611,624,599,598,612,597,598,579,587,582,575,584,571,567,576,576,568,577,589,581,587,574,566,580,571,590,921,917,893,931,924,659,646,647,641,661,646,646,649,642,669,661,652,637,669,660,650,567,562,567,557,561,572,580,560,558,566,842,835,824,823,822,833,815,674,679,686,681,679,678,688,679,591,600,599,603,598,604,604,613,597,605,590,595,602,601,602,602,604,604,604,613,1062,1041,1059,1075,1032,1068,1080,1054,1076,1066,1077,1069,1050,1078,1052,901,890,867,889,873,872,849,893,883,867,867,888,863,602,608,599,600,621,596,595,601,609,583,599,604,606,592,603,1068,1071,1058,1073,1045,1060,1066,1081,1066,1045,1067,995,1002,1007,987,988,994,1005,996,998,1006,1005,1001,1008,862,875,862,862,851,858,854,880,874,857,872,860,866,866,858,875,855,868,607,608,594,595,603,582,587,599,591,597,605,598,599,602,595,594,582,613,615,593,883,910,905,894,877,912,891,909,897,884,899,898,901,878,894,957,952,951,946,969,962,835,835,838,837,830,850,847,1005,994,993,1017,1020,1020,1016,1015,1012,1007,1022,1014,1004,1020,1011,975,989,986,981,990,984,984,982,979,986,986,985,970,993,981,973,778,792,773,784,774,797,800,796,789,769,791,579,579,582,584,577,581,581,578,983,971,982,970,992,975,966,965,972,961,960,962,970,955,955,983,977,974,972,975,975,978,974,982,964,970,967,975,984,979,822,808,816,833,807,802,831,827,806,819,820,815,820,826,800,831,840,805,825,981,990,987,975,990,973,976,963,973,981,907,900,900,905,899,895,905,897,900,905,904,883,835,826,837,813,826,816,830,820,835,828,827,1015,1013,1027,1013,1003,1011,1014,1006,1012,1010,1002,1015,1006,947,948,939,933,941,928,943,940,943,936,942,930,937,849,839,854,842,851,848,845,852,844,851,852,852,850,858,850,861,845,858,632,641,635,639,638,634,623,634,632,620,626,636,1038,991,1023,1024,1034,1026,1007,1012,1030,858,873,883,853,876,877,863,873,850,843,884,852,847,867,863,829,873,838,875,621,633,621,621,612,644,631,620,638,616,629,631,624,611,627,621,634,639,611,623,612,643,650,655,639,657,641,641,643,652,643,656,660,651,652,643,1089,1092,1065,1081,1079,1089,1071,1076,956,963,979,965,958,967,960,974,974,966,961,958,971,971,970,974,961,971,872,872,874,874,863,871,869,884,865,881,882,870,879,663,681,687,690,682,671,692,680,683,691,682,697,803,798,809,805,818,825,806,804,817,802,818,807,1044,1079,1040,1044,1056,1042,1053,1055,1057,1054,1037,1058,864,858,870,860,867,875,861,858,861,882,859,854,859,857,854,641,633,626,633,627,619,642,627,655,641,646,656,651,633,644,644,625,640,675,648,616,626,613,631,611,615,626,616,623,619,620,622,621,615,625,949,933,929,928,940,936,919,927,945,676,684,668,663,666,669,670,1007,1014,987,995,1007,1006,1023,893,903,909,901,917,904,900,911,910,906,911,919,909,782,794,792,783,791,788,795,797,802,790,792,665,683,688,663,675,670,665,669,670,675,666,684,677,684,627,617,619,614,610,632,621,618,632,612,615,619,620,620,617,625,633,615,624,627,628,884,904,884,910,898,896,909,907,886,886,912,899,903,892,888,897,890,796,807,798,797,797,802,790,801,806,806,795,815,797,793,793,799,619,611,621,611,630,619,630,624,614,627,620,624,612,619,613,627,634,626,613,617,636,631,628,638,631,627,640,625,620,636,629,617,633,622,630,614,621,616,622,623,616,619,623,625,623,624,618,615,620,614,632,1052,1079,1080,1070,1054,1086,1061,1051,1077,1060,1079,1079,1062,1058,1061,1053,1053,1078,1061,1075,1036,851,862,848,829,858,844,882,864,847,852,888,877,880,564,571,563,584,554,559,569,577,567,565,584,587,558,583,577,888,902,907,925,905,926,908,908,911,903,915,904,906,912,907,714,704,706,714,715,694,724,706,714,692,708,666,664,689,672,675,658,679,672,671,912,907,917,905,900,894,888,899,910,894,894,913,900,917,897,906,916,899,900,910,788,773,762,774,773,767,768,770,781,633,638,641,645,650,642,632,643,635,909,905,904,905,904,901,905,911,888,912,894,913,912,897,904,893,918,876,687,660,674,670,681,677,673,665,677,677,671,661,678,668,677,672,665,812,819,803,799,789,812,807,801,806,789,793,634,655,640,662,640,638,645,648,645,653,650,635,654,647,651,603,606,601,597,598,605,592,600,598,611,597,603,591,574,562,562,569,563,564,567,569,569,563,576,574,977,959,990,967,975,965,967,967,961,986,958,983,977,977,920,923,927,921,916,917,926,913,934,926,932,932,927,929,918,924,925,920,922,934,931,933,926,925,928,937,920,919,927,943,929,946,941,937,944,929,927,955,928,940,943,842,825,826,807,840,830,824,824,820,839,829,827,554,554,543,569,543,550,563,570,547,557,555,553,571,640,627,617,633,633,631,637,632,630,628,639,656,653,666,647,656,659,663,658,656,657,662,653,651,658,667,646,654,962,955,961,951,954,968,967,959,956,971,939,927,938,919,938,922,940,930,936,925,930,941,921,940,930,930,810,837,855,831,820,825,839,828,823,842,831,581,596,597,602,608,595,611,601,581,600,605,607,592,939,956,930,946,927,937,937,943,954,960,932,945,931,931,945,934,939,938,936,930,927,940,939,930,934,933,937,938,937,928,925,927,940,972,976,968,970,971,969,828,831,821,837,839,836,796,829,836,816,836,824,834,824,826,830,606,604,605,599,597,597,601,602,609,601,599,601,602,596,605,596,585,601,594,593,585,599,589,593,587,599,598,612,609,590,594,600,608,602,598,595,600,595,597,586,587,584,595,591,579,587,583,583,588,586,580,588,591,581,579,624,625,617,627,616,614,615,625,601,631,621,612,629,608,891,873,884,897,894,884,883,881,902,881,880,887,914,900,887,703,689,694,686,698,686,704,687,692,691,689,601,584,604,610,609,598,608,592,595,610,593,550,556,567,554,566,564,565,566,573,566,563,567,554,556,976,995,982,1013,997,1029,997,1016,1004,1005,1003,887,881,878,883,891,892,895,903,885,900,896,887,969,962,967,968,965,969,956,963,959,974,876,864,875,861,863,862,865,875,858,871,862,863,860,861,876,776,785,783,787,778,784,791,766,779,775,654,635,644,651,633,650,638,647,653,665,647,634,641,572,569,566,571,570,569,568,571,567,573,575,588,589,591,588,592,583,584,587,590,591,584,583,584,585,594,589,588,589,587,586,619,623,619,626,629,624,621,616,621,630,632,636,612,629,624,623,580,585,579,574,586,576,579,586,581,588,593,580,580,588,576,1086,1099,1137,1118,1109,1113,1112,1106,1062,1077,1118,1074,1114,1083,1057,1109,1008,1010,1016,1001,1026,1014,1022,1011,1005,1013,998,590,610,612,604,603,622,591,622,611,585,530,527,541,506,525,514,511,525,533,512,524,532,505,525,518,509,547,526,540,532,561,528,534,530,529,536,534,539,548,626,620,621,624,637,613,627,626,626,635,624,619,630,618,630,623,630,624,660,661,671,664,669,675,663,670,673,662,667,664,682,659,660,980,979,963,965,971,961,974,968,973,971,967,972,940,955,955,960,958,957,964,943,822,841,832,834,838,842,838,848,818,849,839,830,838,836,839,855,613,590,596,597,593,584,608,602,615,611,603,596,597,596,599,590,586,593,954,957,959,947,966,966,955,950,995,1000,1017,1001,1007,989,1004,1010,998,895,868,873,872,877,875,881,874,870,879,879,878,868,866,873,869,872,881,875,883,646,648,635,643,652,655,639,655,655,653,639,641,630,641,639,639,639,650,1004,1002,1002,996,993,979,985,946,958,939,957,945,964,959,1069,1044,1054,1036,1043,1060,1046,1051,1038,848,831,841,862,827,837,841,838,842,818,869,984,980,997,1009,989,1000,971,964,967,967,981,964,970,970,970,860,829,845,854,863,844,849,850,850,896,904,898,905,901,898,903,902,903,915,903,898,907,893,906,896,905,899,902,761,765,766,772,762,763,760,744,764,773,767,753,1008,1031,1007,1008,1018,1016,1013,1029,1028,1014,1024,1017,1013,1015,1019,1024,997,1017,1013,1030,893,900,885,916,896,892,894,894,876,881,603,605,598,606,590,607,594,604,611,595,589,608,590,613,600,590,519,526,523,529,531,523,525,514,516,524,530,529,533,531,525,517,532,533,624,614,629,629,637,631,632,628,625,614,633,633,624,613,625,813,799,830,813,813,826,817,810,833,812,804,814,816,681,687,694,680,688,681,1052,1086,1065,1049,1062,1063,1058,1068,1044,1058,1061,1035,1065,1058,1068,882,884,892,892,873,869,888,899,875,891,878,882,894,885,892,892,864,883,1013,1031,1031,1042,1035,1029,1029,1017,1037,1034,1026,858,871,864,860,871,870,893,856,852,875,875,608,599,598,584,599,600,599,588,601,597,595,597,607,592,603,618,626,623,629,638,604,624,615,625,609,609,624,617,616,618,623,957,944,955,956,963,957,959,932,941,948,948,765,760,738,750,751,752,743,880,875,866,867,879,865,865,874,869,863,870,864,873,866,854,839,858,842,857,852,855,834,853,839,843,849,844,888,892,896,887,889,898,899,900,900,895,905,888,914,891,788,769,773,769,783,756,766,767,771,774,762 0 251.326136 0 0 0 diff --git a/test/dna_r10_paf-ref.exp b/test/dna_r10_paf-ref.exp index bab4bf3..9b41900 100755 --- a/test/dna_r10_paf-ref.exp +++ b/test/dna_r10_paf-ref.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO114M +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!5360!- 0 2048 -106.458412 281.345551 5000 69680 861,848,839,855,804,842,966,919,972,970,984,974,894,914,925,956,893,933,959,965,990,918,934,961,970,1048,1036,1037,1014,1023,1068,1012,1015,1016,1018,1030,1007,1020,1055,1017,1047,1049,1005,1031,878,904,873,884,889,842,870,858,871,853,866,991,1024,964,979,980,994,984,985,988,992,988,976,988,867,874,869,873,852,842,859,851,845,857,859,848,820,823,885,850,819,598,601,652,602,605,619,593,622,608,654,598,607,640,630,624,588,614,647,674,679,687,663,662,661,664,665,657,664,695,661,668,666,673,685,657,662,643,674,658,657,674,672,671,657,672,668,663,650,654,666,678,912,915,865,882,877,917,881,914,877,881,905,899,884,679,686,681,671,675,693,674,705,718,679,695,669,694,664,649,667,649,654,651,692,643,655,654,654,676,629,649,649,666,638,634,647,646,633,664,646,658,639,649,645,627,661,1068,1022,1042,1067,1049,1015,1003,996,1060,915,957,927,928,926,937,929,932,930,984,924,964,970,943,621,592,641,623,579,650,631,607,567,583,601,615,615,582,599,592,631,615,602,629,625,586,628,667,625,622,635,636,619,640,630,605,636,628,1033,1051,1109,1100,1032,1058,1065,1095,1067,1087,1041,1032,1055,1023,1038,1020,1026,1049,1066,1057,1061,1038,1016,1045,996,1031,1034,1033,1037,778,793,778,759,774,767,734,748,782,818,789,807,578,606,587,606,607,589,598,589,606,583,610,576,602,596,570,601,593,580,590,605,598,597,591,586,583,614,610,579,613,942,896,930,921,900,964,919,917,921,935,958,913,930,947,938,947,948,932,942,922,939,896,891,914,909,897,919,895,908,893,903,908,896,909,789,816,804,839,814,822,818,772,801,821,823,811,851,834,816,832,835,825,805,781,830,577,557,584,612,577,617,578,595,566,611,593,587,600,590,546,584,553,564,552,577,550,572,556,554,961,891,884,894,899,868,890,914,893,932,912,892,988,996,993,961,989,999,994,1009,987,1023,986,989,1013,833,888,847,845,865,858,873,864,829,850,834,843,812,858,860,814,845,946,954,954,963,943,977,955,951,961,965,945,889,866,848,859,819,847,862,864,854,858,863,867,864,851,951,971,948,1007,964,960,931,943,939,926,935,949,966,942,945,961,946,956,921,1030,864,853,846,884,848,843,873,883,933,875,838,886,896,898,894,946,929,898,934,939,932,901,919,902,877,907,938,942,940,933,949,924,935,936,934,942,940,955,945,945,876,849,883,882,871,863,871,870,888,850,889,889,895,885,861,873,881,871,875,879,896,868,620,565,582,575,560,557,589,630,620,634,642,623,643,620,622,635,625,613,637,601,644,655,646,666,648,647,650,663,1028,1156,1205,1113,1193,1145,1202,1102,1166,1138,1098,1096,1118,1165,909,929,886,903,929,918,905,880,905,980,893,880,919,939,999,919,1011,981,961,988,969,955,954,976,950,1008,985,986,995,986,990,981,994,989,976,982,975,993,989,984,973,994,980,990,805,838,818,852,834,826,833,835,859,633,667,630,643,644,645,669,640,654,642,633,900,882,912,924,917,908,884,907,633,632,635,634,661,638,680,649,624,623,636,630,625,632,664,658,645,631,554,539,566,545,552,566,574,564,578,552,563,1077,1099,1060,1024,1050,1073,1032,1075,1093,1075,1072,1094,1027,992,985,984,965,1029,970,954,974,991,1026,989,962,988,972,977,970,1008,769,792,802,789,798,807,805,797,797,770,803,771,803,794,785,811,807,768,806,791,802,659,644,637,620,666,669,634,628,633,634,631,621,663,642,639,649,575,563,571,572,584,579,590,1092,1102,1092,1090,1135,1181,999,1156,1123,1190,946,914,922,971,977,965,943,964,961,947,963,975,950,954,958,634,627,649,678,641,680,660,664,670,613,638,842,862,875,848,846,876,857,807,849,835,867,851,865,850,860,843,814,837,678,673,690,706,693,682,606,594,610,607,623,597,634,599,598,604,616,610,613,616,613,616,611,719,725,734,731,725,725,738,730,734,685,741,725,716,740,704,715,604,625,618,619,613,600,616,623,626,614,603,639,632,1116,1011,1109,1075,1019,1113,1058,1087,1011,1086,835,883,874,862,805,830,852,838,862,835,861,894,575,599,604,597,584,616,620,594,618,906,898,913,923,894,873,877,914,901,907,853,860,865,673,691,714,699,672,677,732,682,707,577,591,620,585,596,595,609,571,589,599,591,564,591,607,599,925,946,908,934,921,944,939,928,955,950,967,926,973,975,961,942,964,941,979,883,866,883,885,855,895,887,900,871,874,851,855,906,994,971,982,1003,988,983,975,931,946,956,988,993,1012,912,993,996,977,997,996,1028,1001,957,991,997,947,962,966,967,956,944,952,968,948,948,943,965,941,964,964,860,873,865,863,871,889,869,873,857,887,884,873,885,880,1132,1055,1077,1075,1089,1112,1081,903,936,909,898,896,910,913,906,908,1042,1031,1032,1025,1035,1032,1025,1029,1049,1029,1062,1039,1022,1052,924,924,920,940,916,908,904,900,914,929,896,890,911,826,814,849,834,824,833,833,821,845,833,810,823,832,823,827,768,740,749,747,772,773,767,756,763,750,754,772,786,756,758,765,600,618,598,606,610,607,602,574,582,598,599,990,997,987,1005,1000,998,1005,981,977,980,927,947,963,962,944,945,971,945,936,982,958,987,999,964,977,972,753,778,559,546,570,554,566,567,562,566,562,547,562,565,538,563,560,568,1013,1043,1074,1055,968,1008,1081,1018,1125,1030,1057,1037,1036,1021,1028,897,898,949,952,906,933,938,962,969,986,954,944,597,588,635,597,595,568,607,614,602,596,631,588,580,549,614,616,529,535,509,506,531,503,529,496,526,549,509,582,597,585,644,614,629,638,654,613,642,631,627,628,629,651,617,628,631,1005,978,980,968,984,1010,1006,988,994,1015,961,1000,938,974,978,993,963,968,973,936,983,956,964,971,952,955,948,951,963,964,941,861,821,802,816,799,815,802,826,850,804,598,573,569,584,588,574,578,585,550,545,557,573,588,627,596,614,600,610,615,619,596,594,609,588,600,596,935,956,966,941,965,944,942,947,978,940,981,931,954,939,792,793,817,773,773,819,776,802,775,791,780,789,789,778,793,778,581,592,592,610,616,576,591,602,597,585,575,603,606,620,587,609,592,596,581,579,823,828,892,933,876,908,856,900,880,882,912,922,937,947,934,942,915,760,808,821,807,766,810,782,777,818,789,757,780,822,864,773,819,625,634,621,612,608,623,624,630,615,645,624,611,620,628,608,640,895,912,908,908,893,905,916,906,914,869,899,884,901,909,878,915,911,945,944,919,933,912,922,914,952,912,931,954,939,896,995,988,1018,990,1007,1004,1040,997,1007,1006,1001,991,999,1026,987,997,1031,841,850,861,849,832,859,847,840,871,835,826,876,865,902,949,946,958,916,931,941,927,911,941,924,939,936,900,915,928,880,897,901,919,915,903,939,909,910,904,906,920,636,624,698,634,647,667,670,617,649,667,638,669,569,594,615,600,594,604,573,611,1041,1036,1051,1061,1026,1069,929,934,887,900,897,889,874,893,904,904,861,870,924,861,911,911,1090,1106,1049,1074,1126,1094,1089,1093,1123,1088,1101,1069,1078,1030,1018,1025,1050,1043,1032,1018,1039,1067,1026,1040,1023,1039,1033,1059,1039,1032,1046,1034,1032,1005,1018,1023,1013,1025,1019,1010,1010,1006,1025,1007,1016,882,912,886,911,890,901,910,908,874,869,913,918,896,727,703,727,727,707,720,708,726,719,720,727,711,710,723,722,730,650,623,609,633,615,623,630,631,635,659,659,627,617,832,845,779,846,827,812,790,816,822,948,942,943,955,938,954,955,924,939,957,954,964,958,903,955,935,982,945,948,940,949,967,962,945,951,980,961,933,931,932,930,942,917,938,928,938,943,917,937,934,923,934,942,918,952,929,941,936,920,930,917,930,940,943,914,924,918,902,893,910,918,906,874,908,896,880,912,915,898,915,915,931,930,939,930,901,944,942,902,951,917,846,845,835,826,807,826,832,845,825,834,823,831,597,657,631,643,627,667,628,617,608,617,1185,1070,1120,983,919,905,944,921,958,929,921,923,930,934,967,931,933,1016,1019,1016,1020,1046,1031,1022,794,778,814,871,870,848,836,809,847,835,799,847,831,877,604,591,585,589,590,590,602,558,574,567,586,585,564,585,618,577,605,1081,1044,1062,1086,1087,1059,1104,1110,1030,1091,1106,1066,1008,1115,1076,971,1020,943,993,965,989,950,977,984,974,979,989,970,996,965,952,969,976,948,995,1002,1000,991,1016,1027,1015,1044,1006,999,994,1015,1049,1003,999,752,800,774,769,739,730,720,779,763,784,752,776,793,767,782,778,551,560,573,575,575,565,559,566,574,575,587,581,564,570,566,575,1047,1024,1042,1116,1107,1095,1052,1077,1109,1123,1054,1093,1079,972,968,1002,994,961,963,976,946,974,828,814,805,831,799,832,795,816,845,845,816,806,950,961,931,950,954,935,940,921,954,844,844,847,869,850,849,831,829,855,837,843,869,826,838,597,601,588,587,597,608,619,589,590,594,620,612,951,946,965,970,969,950,961,958,1003,963,991,694,680,675,713,667,732,699,697,722,725,697,692,716,711,1110,1086,1134,1120,1076,1063,1118,1063,1081,1105,1063,1155,1148,1114,1091,1085,900,933,900,949,904,938,885,949,886,886,962,977,955,957,962,953,966,968,865,850,870,864,891,902,878,841,871,893,883,876,857,845,859,849,850,867,851,855,853,871,863,732,759,748,758,742,756,759,748,757,729,715,744,726,737,781,728,787,719,741,735,765,992,988,997,1011,979,998,986,1007,994,892,894,866,886,858,867,889,907,887,875,875,892,851,907,865,864,843,842,869,868,847,834,853,867,855,762,768,769,802,765,791,773,779,781,793,782,756,742,745,764,747,734,751,744,757,752,755,763,759,763,745,636,629,611,642,627,646,633,621,624,609,624,622,635,566,547,549,558,559,535,554,575,563,549,542,558,556,542,566,549,511,511,522,511,521,526,537,508,509,565,568,542,560,568,567,543,582,564,558,534,592,596,598,669,631,654,659,642,670,664,633,654,664,638,647,670,689,920,916,892,902,925,923,960,925,880,898,908,947,914,935,940,914,933,918,924,939,943,793,863,840,844,865,865,868,838,834,846,880,852,826,854,825,837,853,862,620,623,585,643,619,599,615,577,623,591,603,590,553,580,575,583,598,598,566,573,568,589,595,584,586,588,588,587,594,592,583,602,595,559,578,562,581,572,575,579,567,573,570,583,576,573,1029,962,1020,1050,1026,1009,1026,1080,1091,1031,1040,1090,1057,934,944,926,925,894,927,915,928,963,904,940,939,949,902,920,924,691,694,638,679,665,673,658,620,656,628,629,626,632,645,639,630,967,965,959,938,960,977,953,984,995,961,971,960,997,1015,982,951,988,1000,994,992,1001,985,989,871,838,877,881,870,894,889,872,897,910,926,917,901,895,892,886,869,857,915,1112,1096,1080,1058,1129,1096,1100,1132,1082,1072,1082,1132,1079,1097,1088,1097,1091,1078,1105,926,945,942,958,955,1060,1055,1079,1064,1040,1064,1025,1072,1076,1060,923,873,890,895,861,864,886,881,861,907,868,862,889,862,908,916,909,924,895,871,611,603,612,625,601,604,611,609,593,616,605,630,614,1148,1081,1072,1131,1108,1083,1128,1128,1086,1117,1154,1111,1137,1129,898,894,919,912,919,852,852,923,887,907,913,901,895,904,890,899,891,919,883,662,659,681,680,675,685,685,713,629,663,657,695,694,663,656,1158,1111,1105,1086,1169,1132,1104,1180,1182,1172,1189,1158,1063,981,1032,1029,1006,1011,993,987,977,976,966,968,970,985,970,986,1019,973,983,966,873,855,892,858,881,897,879,871,871,887,879,886,863,986,987,989,1007,1000,987,990,990,1010,986,1002,977,1018,991,991,987,1007,988,1005,1001,990,913,891,883,894,903,905,905,912,863,900,896,887,915,891,871,900,590,639,575,607,603,595,614,621,593,608,619,599,603,514,513,518,498,518,496,527,510,502,516,505,534,543,512,493,494,522,526,497,522,532,534,525,500,499,514,515,503,500,508,516,643,626,637,637,656,659,651,638,618,632,648,642,623,638,648,634,677,679,689,686,663,687,702,683,698,668,697,694,690,704,680,691,674,705,887,906,908,934,935,916,937,895,891,917,878,878,897,898,886,951,743,703,732,730,700,712,736,695,704,703,729,717,723,723,702,705,858,928,892,904,917,913,901,923,890,816,841,869,848,845,878,844,834,815,858,832,830,844,847,857,573,594,607,598,629,586,603,571,613,570,633,604,602,594,611,580,611,614,586,545,548,554,551,567,547,943,960,948,879,912,936,963,896,929,934,931,951,894,730,710,709,736,902,864,890,891,866,863,880,909,896,899,902,881,890,890,904,882,912,897,913,880,593,611,619,619,616,573,620,621,605,589,611,614,602,961,888,902,882,943,983,912,883,934,850,834,866,841,825,862,842,857,837,844,850,840,885,848,590,611,638,605,597,595,616,612,621,623,643,605,618,602,625,611,590,600,586,636,630,627,664,646,669,642,651,657,634,642,669,656,645,626,649,671,652,662,672,666,652,653,646,643,659,1060,1100,1049,1088,1160,1104,1117,1079,1076,897,928,899,880,948,867,893,863,882,875,909,910,966,988,985,984,988,966,964,985,975,976,993,1007,888,872,831,883,866,863,869,835,849,849,855,866,877,853,883,867,854,843,862,615,624,624,629,624,606,630,619,644,645,621,602,630,638,633,634,636,633,620,613,627,1118,1150,1162,1199,1138,1147,1161,1115,1061,1148,1129,1159,1189,1117,1154,1161,1126,879,857,870,914,890,885,860,881,892,929,886,936,870,859,897,878,901,604,612,605,599,618,614,589,629,568,620,630,639,615,566,611,579,641,615,615,968,964,1001,1001,979,979,985,947,984,949,983,982,1012,977,999,950,942,973,962,960,883,868,877,873,881,862,856,854,851,866,876,859,889,674,676,688,691,678,676,706,690,582,581,597,575,567,593,582,587,975,1015,1012,1007,981,998,1011,997,994,1018,1011,1045,1027,1015,1055,976,856,875,805,819,845,849,833,853,900,853,541,585,584,527,587,558,562,550,552,554,542,531,573,544,556,642,630,654,648,646,631,635,632,670,652,662,664,669,663,662,645,1037,973,1003,1032,1007,1018,981,1024,980,1025,1001,965,1004,983,646,667,667,690,716,689,687,628,678,690,643,678,619,651,885,865,940,882,896,913,857,910,835,804,819,840,798,799,851,839,806,759,801,819,827,769,837,814,585,548,524,541,550,510,548,512,535,545,556,540,566,565,573,576,562,572,548,568,547,566,542,569,565,603,583,595,594,576,587,608,603,595,622,572,594,1058,1057,1042,1139,1138,1133,1049,1149,1115,1008,1101,1044,1085,957,954,951,947,929,871,920,948,905,939,784,845,839,812,842,855,845,871,838,844,880,882,812,815,850,828,813,843,832,858,831,853,869,843,825,835,877,876,868,878,875,867,868,882,866,853,857,857,852,876,980,952,984,959,947,971,959,966,972,989,961,990,957,960,977,946,864,859,879,903,879,871,851,875,845,853,875,884,874,884,848,855,871,874,893,876,865,871,889,880,888,891,881,877,875,876,879,787,747,753,757,739,721,760,731,761,738,739,754,912,944,960,947,933,949,924,980,942,966,937,945,950,966,928,926,951,968,969,957,965,971,963,969,954,961,980,951,966,982,967,981,989,983,837,824,837,846,816,810,850,853,594,628,606,617,611,620,605,612,1093,1116,1104,1124,1110,1072,1118,1117,1076,1057,1143,1118,1079,1065,1142,897,945,929,898,953,975,947,948,955,967,946,1051,1069,1060,1072,1034,1060,1068,1057,1047,1040,1031,1051,839,848,870,855,846,783,848,873,877,549,536,579,558,562,559,537,529,557,566,547,565,539,577,589,586,588,580,615,615,635,583,621,599,598,579,1040,1062,1035,1011,1061,1057,1056,1072,1038,1036,1029,1060,1020,1028,1069,1080,1054,1011,1056,1027,1045,1027,1022,1037,1025,1015,1037,1040,1046,1066,1029,1077,1028,857,881,843,851,820,823,844,841,838,845,827,849,873,985,1047,1022,996,992,989,1014,998,1049,1002,999,1037,979,989,1000,1046,895,902,930,937,930,900,952,944,930,935,912,920,630,634,608,638,612,590,551,610,624,571,635,626,624,597,619,682,673,703,661,706,674,691,668,692,675,658,660,594,592,614,583,599,598,617,605,602,609,618,596,601,611,620,608,948,980,951,956,987,957,975,940,978,970,946,983,935,914,932,916,934,940,910,920,901,923,939,944,949,930,919,936,906,936,924,942,929,935,966,952,939,954,948,938,1050,1053,1051,1013,1037,1042,1035,898,879,850,884,885,899,884,880,1001,993,991,963,963,974,932,964,924,942,925,924,903,924,937,928,949,937,917,918,928,941,942,944,963,974,953,959,940,969,953,937,954,977,976,978,837,814,832,843,798,858,841,857,832,827,841,857,833,853,838,838,869,786,620,614,609,587,611,601,598,617,624,570,620,605,618,621,626,986,1012,984,1064,1030,1007,1024,1016,1039,1041,1021,1053,1024,879,844,833,788,794,782,817,800,605,604,591,580,605,588,645,616,590,605,591,601,609,590,597,595,989,1012,1003,991,989,1011,982,1015,960,1010,987,989,997,990,964,966,948,743,731,712,691,685,733,701,719,689,737,684,1060,1058,1015,1054,1059,1018,1011,1049,1040,1027,1046,1006,1024,1022,908,892,891,883,880,875,905,929,898,880,913,887,876,903,888,883,622,644,620,667,603,615,645,661,656,655,650,640,614,636,652,604,618,657,619,618,631,604,651,644,651,641,646,615,849,830,854,872,856,838,826,873,868,883,879,891,897,867,982,950,967,957,902,899,915,915,892,892,892,899,923,908,891,892,890,923,873,898,798,787,781,779,764,775,798,790,808,766,753,779,771,746,634,622,613,608,627,586,622,618,630,628,637,613,625,638,1095,1095,1041,1054,1012,1102,1084,1016,929,957,945,927,929,922,903,926,949,908,945,954,951,744,723,704,723,748,719,726,740,731,723,759,610,595,593,588,583,564,594,619,598,586,587,596,591,590,585,533,517,523,525,519,516,535,544,532,533,537,546,539,553,546,558,550,539,1109,1072,1033,1065,1051,1109,1147,1126,1018,1160,1023,1134,1093,1052,1130,1122,1072,1126,1077,1107,907,885,937,894,922,904,941,953,948,929,623,606,609,613,623,625,606,633,594,615,607,616,556,569,581,586,598,591,872,919,906,918,934,893,885,891,919,934,946,929,950,927,925,914,894,969,968,944,964,966,961,952,942,955,941,983,947,969,975,929,969,959,854,877,896,871,873,852,863,900,893,820,859,876,867,880,863,879,865,856,850,614,576,587,575,518,571,557,572,589,585,588,563,633,549,622,583,574,580,570,573,558,581,593,557,586,577,920,955,904,878,936,924,929,892,942,872,923,905,888,910,720,774,736,791,783,769,761,762,752,775,778,790,799,780,585,593,594,608,602,617,580,592,588,603,586,567,550,560,562,549,526,545,549,564,556,564,542,562,564,544,545,554,556,587,578,591,573,567,549,586,601,555,574,563,582,938,905,890,906,886,899,913,908,921,923,927,941,886,915,904,910,877,1046,1045,1025,1022,1038,1013,1016,1032,1017,1052,1031,1024,1040,1037,1038,893,892,860,868,882,877,908,876,862,893,880,878,883,886,882,889,887,882,923,954,929,796,900,851,909,917,957,918,946,920,938,961,960,939,871,854,903,871,912,860,901,886,879,875,879,894,892,885,1035,1049,1028,1064,1032,1023,1037,1021,1043,1024,1015,920,934,941,913,911,951,938,925,916,926,922,932,935,925,778,783,754,807,787,764,783,758,596,604,616,608,603,633,597,1074,1063,1062,1098,1074,1066,1133,1000,1048,1062,1073,1072,921,861,881,893,910,901,928,909,868,896,927,894,900,1115,1105,1165,1128,1091,1112,1136,1107,1113,1134,1094,1169,1119,962,951,970,944,963,932,913,962,959,957,945,976,968,970,980,970,974,964,962,954,956,991,984,975,981,840,851,824,835,871,797,822,844,608,610,626,608,583,605,615,608,1030,972,988,962,982,997,1006,1047,993,1024,1004,1008,1038,1025,1060,1061,1028,1037,1002,1042,1023,1068,1032,1054,1044,1041,1006,1035,1021,1042,866,841,827,862,831,830,838,557,540,548,522,531,552,582,575,555,524,934,883,903,913,935,881,923,943,948,945,920,901,910,679,671,697,711,678,694,690,715,685,699,696,732,706,676,1130,1045,1079,1126,1058,1103,1110,1113,1099,1145,926,888,917,913,903,916,900,991,1005,972,974,958,978,1004,981,999,957,986,987,1000,990,971,980,879,874,910,899,903,894,886,885,869,920,745,729,750,750,738,746,740,750,716,732,730,734,733,733,739,743,649,637,657,627,644,629,653,655,635,649,643,627,636,623,636,628,808,787,813,790,830,789,795,846,803,828,796,810,599,621,611,634,594,599,650,619,609,614,622,594,612,576,584,580,583,583,612,590,580,593,591,893,898,884,918,911,898,885,948,940,886,917,917,931,891,925,939,947,956,983,978,968,967,973,959,981,995,994,998,970,994,962,959,978,891,886,906,916,912,900,881,889,904,908,882,891,782,827,822,820,797,804,822,818,807,813,821,824,619,622,639,627,655,610,656,629,647,618,610,640,631,654,667,654,622,636,612,1155,1111,1059,1092,1075,1063,1124,1075,1041,1113,1081,1053,953,876,915,883,917,873,933,898,876,845,901,881,865,887,906,1050,1060,1047,1062,1035,1016,1036,1043,1047,1045,1058,923,934,883,941,911,912,926,926,895,925,922,926,914,590,588,561,586,628,605,554,592,575,552,590,545,573,595,607,658,617,640,648,598,610,590,624,630,604,618,628,643,616,610,620,713,723,734,705,682,713,745,697,716,702,717,721,704,738,644,641,643,647,661,679,678,656,648,665,663,644,662,661,653,664,651,673,663,1069,1023,1054,1125,1085,1044,1021,1062,1087,1047,1064,1117,1062,1081,1062,1141,1067,1008,1000,1019,1001,1033,997,1019,1011,1020,1007,1018,1020,811,771,812,812,784,822,811,814,788,825,816,793,824,777,656,652,647,656,642,655,624,640,1145,1233,1225,1261,1254,1202,1158,1154,1211,1207,1180,1240,1199,1210,1230,1105,984,1005,1014,992,1008,1025,1024,988,1018,1013,974,940,1019,1004,957,1035,1009,993,988,1009,968,987,942,938,906,919,866,914,921,894,932,918,889,924,959,952,964,966,951,959,941,930,955,954,965,956,955,945,953,954,954,957,969,880,890,842,872,887,839,851,877,882,857,878,862,862,905,1014,1032,1017,1024,1029,1048,1015,1027,1014,1031,1013,1029,1039,1018,1012,1015,1033,1012,1034,851,873,882,902,867,880,818,824,835,863,884,859,864,839,857,859,880,1000,999,1002,983,995,989,1003,995,977,994,1000,986,976,995,997,826,851,873,868,862,874,860,863,880,847,875,861,868,859,864,844,851,849,864,837,829,830,872,831,838,840,1037,1052,1049,1048,1060,1030,1075,1056,1049,1059,902,886,913,914,909,898,892,913,928,881,887,910,946,941,881,926,930,940,914,959,965,934,951,991,947,966,932,949,947,942,988,956,985,978,983,971,980,982,965,956,967,997,882,885,864,1034,1035,996,1024,1019,1045,1039,1057,1047,1041,1062,1027,1035,840,871,838,849,842,578,567,587,581,578,598,615,600,584,589,596,609,577,582,591,598,666,654,990,1003,995,1006,980,1003,966,985,974,968,991,991,993,1020,734,752,758,765,741,769,761,754,767,753,796,813,782,817,804,657,718,674,707,701,696,697,698,683,704,730,931,891,866,898,873,909,899,907,856,879,866,857,849,882,892,900,851,899,883,892,934,939,941,946,932,945,971,956,955,961,794,815,806,807,773,789,797,777,763,772,771,584,573,582,562,572,546,570,571,567,539,597,573,569,565,1090,1062,1074,1078,1030,1120,1113,1085,1070,1101,1101,1080,1140,1082,1063,1076,1106,934,917,923,920,941,960,988,941,955,965,904,942,919,964,957,949,889,942,643,625,661,677,653,674,618,649,644,628,653,632,621,662,964,991,997,1005,951,991,971,919,977,979,983,894,890,903,894,906,891,902,717,706,707,714,742,698,733,721,727,729,700,990,998,975,993,999,978,956,1018,1011,978,981,967,848,861,863,862,869,854,855,871,854,852,625,641,660,587,641,615,647,639,636,664,640,631,639,819,851,801,835,852,836,813,941,936,941,962,917,964,947,930,968,972,970,979,950,970,956,959,993,953,963,807,846,823,819,800,832,823,822,828,780,845,797,814,845,832,845,831,952,934,955,944,961,929,950,955,947,959,937,943,952,954,950,934,962,952,944,813,844,816,843,834,846,864,824,855,843,847,822,843,839,826,828,798,948,970,977,982,977,945,979,987,977,979,868,869,902,867,855,894,858,871,856,846,882,893,855,600,610,615,617,590,601,590,634,577,571,602,594,581,607,527,509,509,525,528,535,534,535,552,500,535,532,579,602,564,569,591,577,590,551,578,565,574,578,564,608,616,599,598,597,608,607,624,599,614,611,576,599,542,532,562,565,528,556,550,550,545,536,541,545,554,542,534,541,535,531,538,518,536,541,533,552,538,548,538,570,537,553,546,565,560,568,558,524,533,662,612,611,591,597,589,568,585,587,597,562,564,575,570,570,578,568,576,573,583,580,641,628,606,610,616,608,604,627,630,615,614,598,602,611,611,609,603,598,604,609,611,585,608,596,1026,1109,1136,1043,1057,1094,1086,1025,1073,1097,1091,1138,1095,1064,1071,1126,1095,984,918,952,961,981,947,971,958,984,936,935,941,937,966,946,963,942,976,950,945,945,971,976,948,957,949,780,814,816,837,818,791,839,836,897,925,916,971,921,969,914,871,916,919,925,951,892,998,1002,1022,1008,1036,994,1006,1023,1039,1018,1014,801,826,818,809,812,838,782,755,806,810,778,803,810,796,762,833,827,584,608,592,619,613,587,590,597,577,594,620,601,609,633,614,646,640,666,646,634,660,663,630,658,651,628,632,641,654,647,627,627,603,617,601,617,608,600,614,625,587,621,604,619,992,1016,984,1008,956,1032,988,1005,980,999,976,1009,979,997,948,979,1023,985,975,982,988,1003,975,1015,907,874,868,875,866,874,909,863,869,899,849,867,993,996,979,987,983,979,1019,993,1000,1002,981,998,992,889,909,899,895,911,904,893,864,912,928,893,875,897,917,906,877,620,604,631,676,611,632,617,607,626,577,599,581,646,506,526,534,546,513,535,555,602,588,591,591,624,599,589,604,599,599,601,741,750,710,739,712,729,727,731,719,709,728,734,618,618,626,625,611,636,615,634,634,621,632,623,618,621,981,986,955,990,963,994,1006,987,991,989,980,954,940,967,968,872,849,833,816,850,825,818,816,825,811,813,855,832,841,548,572,552,561,586,529,544,591,584,562,567,1211,1243,1186,1188,1178,1206,1168,1101,1174,1202,1249,940,1011,1012,977,985,981,946,1016,988,963,695,648,662,652,650,680,676,655,660,957,939,963,949,936,941,937,948,938,937,951,920,933,925,923,914,921,952,909,950,934,913,923,933,925,905,914,930,937,924,927,940,921,925,927,953,934,817,823,802,823,805,811,801,800,820,795,791,829,638,607,634,626,657,644,808,781,744,757,776,779,816,785,755,764,787,743,776,781,735,805,808,776,784,779,782,834,807,767,753,756,771,758,775,757,787,611,622,605,628,614,611,594,617,628,603,602,620,624,609,1033,1096,1037,994,1049,1071,1049,1073,1063,891,881,861,856,895,881,849,903,868,869,895,974,951,982,956,963,972,950,930,941,984,886,877,838,858,861,901,879,899,896,655,644,658,685,651,674,687,660,670,665,693,650,661,589,609,590,605,587,619,609,618,619,1068,1050,1030,1084,1083,1044,1023,1020,1020,924,962,929,920,892,945,908,928,923,928,888,891,911,918,923,899,930,557,534,594,575,559,559,553,607,520,550,566,571,571,601,592,588,573,580,614,640,601,613,618,630,586,604,624,636,636,655,663,643,649,649,636,1216,1197,1229,1187,1203,1224,1235,1234,1201,1265,1177,1185,1224,1249,1175,1217,1223,989,989,991,968,946,982,951,1011,983,965,1077,1052,1049,1060,1040,1054,1048,838,882,905,888,856,875,859,897,859,843,889,877,888,908,878,889,854,572,592,592,589,595,575,599,594,586,595,571,598,583,559,597,598,599,1082,1056,1069,1063,1053,965,1023,1054,1015,1024,1035,1087,930,975,939,887,971,952,911,918,929,954,907,935,944,948,931,929,932,903,954,968,692,700,697,702,677,693,690,699,668,700,694,688,693,684,681,683,687,678,689,683,644,697,682,705,691,675,685,700,679,631,604,608,623,608,633,627,638,639,608,632,1028,994,1024,1008,1025,1015,997,974,1007,1045,997,957,1028,973,963,955,979,950,968,960,988,977,972,963,872,871,870,883,870,865,857,876,874,854,868,868,867,872,875,874,869,866,847,854,855,847,887,903,881,874,916,938,943,937,928,923,917,927,948,931,945,848,865,858,831,830,835,869,876,847,848,864,878,843,856,847,860,632,633,623,653,642,599,673,635,646,640,647,645,626,622,1085,1005,1078,1043,1049,1070,1049,1052,1066,1028,1040,1039,1097,1042,942,898,926,885,889,915,924,921,898,911,922,971,993,949,987,971,995,963,982,997,994,978,972,988,769,771,767,769,787,747,792,736,752,598,595,617,597,587,592,575,595,581,598,593,1198,1144,1147,1154,1248,1106,1178,1133,1123,951,932,926,959,954,943,962,928,950,952,935,935,939,925,1055,1011,1046,1028,1031,1030,1053,1029,1035,1032,1032,1066,1038,1024,868,895,902,910,864,901,891,877,886,880,888,892,853,900,855,840,832,828,838,831,813,831,841,815,846,815,819,816,839,843,824,815,816,833,706,690,714,656,657,733,683,680,647,668,805,803,815,788,805,814,828,794,793,940,914,922,919,916,924,928,906,921,912,932,910,892,903,897,916,901,880,883,893,910,902,889,884,922,896,877,909,916,923,909,879,901,917,921,899,931,931,919,922,943,952,991,954,953,957,936,978,930,938,956,964,949,968,848,826,854,846,843,844,855,839,861,845,826,856,828,841,840,833,1013,1001,1054,1057,1041,1050,1020,1056,1015,1031,906,840,881,852,878,872,879,900,879,895,917,614,633,647,655,683,664,651,635,664,633,640,675,857,848,832,878,867,840,839,857,848,855,887,862,868,853,853,845,877,842,733,707,715,727,704,725,708,733,720,748,702,718,959,984,958,973,988,956,982,968,974,950,970,959,950,950,961,968,955,842,847,834,846,851,843,832,862,843,833,833,961,958,947,948,939,947,939,949,955,955,969,967,977,946,949,948,964,951,834,832,833,842,815,843,845,831,846,819,839,837,831,813,940,945,928,898,922,913,930,988,945,929,927,959,950,936,968,948,941,962,977,802,800,803,811,816,806,817,844,795,844,773,596,597,602,608,597,606,590,592,601,589,594,597,600,596,584,596,599,607,599,551,551,554,552,558,561,547,563,601,619,590,605,587,599,598,616,609,598,593,612,589,603,619,589,568,577,588,579,590,566,588,565,579,585,574,568,582,575,587,591,1051,1035,1017,1054,1039,1022,1000,1003,1002,978,964,999,979,950,976,1000,988,1000,876,840,853,842,810,868,837,837,820,832,791,831,838,869,913,883,905,905,900,918,925,897,880,907,907,931,902,851,841,824,863,836,842,857,846,841,819,854,831,1031,1018,995,994,1021,1022,1020,1043,918,914,907,942,942,913,925,904,889,910,917,912,887,881,884,893,888,894,886,896,879,884,885,877,876,878,736,737,739,759,732,727,717,732,735,704,758,719,717,926,949,955,932,910,938,946,932,972,950,916,932,928,833,834,832,830,856,834,832,817,842,828,859,801,857,833,608,606,629,607,594,619,608,626,614,609,605,612,615,647,972,986,1028,1027,944,979,989,977,971,979,965,963,942,954,992,953,1010,997,1026,1023,1013,999,999,1026,1048,1030,1026,1017,1071,1004,1028,892,890,914,891,852,912,873,902,881,889,876,882,879,916,913,891,1087,1052,1100,1059,1085,1081,1067,1077,1060,1056,1101,1090,1103,1075,1086,1095,1085,914,939,918,901,936,933,925,908,919,935,930,971,923,922,930,919,954,894,940,929,1030,1037,1033,1021,1043,1047,1051,1016,1068,1039,1028,1039,1041,1030,1018,1055,1031,847,829,879,862,874,836,833,885,870,861,788,867,649,648,648,680,640,656,612,638,635,642,621,630,642,640,621,637,665,629,639,615,616,641,611,625,622,628,612,631,1049,1038,1037,1075,1072,1025,1051,1024,1069,1070,1060,1073,1057,1038,1031,1086,1061,1059,1044,1010,1039,1045,857,864,856,906,870,846,884,888,855,857,858,975,1000,989,1001,994,941,946,922,924,919,922,901,909,958,917,942,745,720,747,739,737,734,718,744,730,731,770,731,639,597,642,602,645,639,628,616,633,644,628,615,570,580,568,572,578,569,568,528,556,573,566,570,580,584,571,574,587,590,586,584,596,594,589,619,599,601,1084,1076,1139,1080,1105,1062,1074,1058,1076,1103,1036,1071,1063,1072,1125,1119,1123,1076,1035,960,971,966,967,944,901,955,953,964,950,926,655,636,658,666,669,682,674,645,640,539,614,580,575,588,578,576,553,616,562,534,556,565,575,563,555,569,555,544,549,541,569,892,868,826,845,841,802,811,840,855,769,737,760,752,768,774,772,764,763,575,578,596,625,603,606,591,585,609,578,593,606,597,611,560,579,583,573,567,582,589,592,578,593,580,570,571,586,597,571,1092,1018,1133,1030,1076,1061,1000,1085,1067,1043,1098,1074,1005,1061,1010,1035,1050,848,876,877,917,887,859,898,876,855,910,934,891,883,896,903,956,939,907,914,921,888,902,906,899,908,903,886,908,911,903,892,903,896,903,924,903,907,903,901,908,915,904,892,799,828,841,833,806,783,817,776,824,796,838,800,833,775,846,806,1047,1047,1033,1051,1030,1042,1047,1037,1049,1019,1080,1050,1038,981,968,942,927,932,947,947,923,936,934,920,624,659,639,652,657,676,655,663,658,642,646,684,655,666,664,670,622,674,565,579,554,562,571,552,562,568,570,552,559,572,575,571,546,555,537,543,532,559,552,558,551,560,544,548,551,532,553,551,539,553,536,549,627,633,590,616,593,942,984,957,936,983,914,951,956,920,917,923,921,834,841,829,818,661,691,671,691,658,676,669,579,581,615,603,616,579,600,594,594,587,588,574,611,576,754,773,793,785,801,774,783,757,746,815,753,765,776,746,758,772,670,676,653,667,657,672,684,652,673,655,637,667,676,649,663,597,601,594,598,602,626,603,594,592,596,599,607,612,680,687,668,671,684,665,689,663,668,672,1003,1095,978,1130,1038,1031,1080,1029,910,955,944,954,940,915,924,926,952,941,957,945,586,589,535,528,607,587,573,576,649,629,607,611,604,643,618,605,594,614,598,601,595,607,605,612,598,607,1247,1147,1170,1189,1193,1123,1182,1241,983,954,965,944,998,947,1015,980,944,974,936,982,983,955,649,653,655,686,622,656,633,638,614,961,924,938,958,931,970,920,946,920,936,972,946,881,912,893,916,904,900,890,950,965,937,947,974,965,943,978,979,951,964,971,950,878,878,836,881,850,838,872,894,884,862,849,878,836,587,609,601,602,592,611,599,569,616,557,535,565,549,550,556,558,562,549,1047,1085,1106,1100,1060,1095,1056,1159,1094,1079,1109,1071,1111,1106,1118,1078,1128,1066,898,840,890,912,947,910,891,836,901,936,856,876,827,876,885,876,558,559,540,543,561,568,548,588,542,559,554,550,572,573,535,566,592,566,531,578,546,556,1080,1075,1114,1131,1071,1096,1076,1087,921,912,902,890,858,855,893,825,857,852,883,829,861,821,842,833,878,838,847,892,899,877,894,876,883,855,877,867,883,864,872,877,867,873,861,789,801,800,796,818,824,823,816,862,792,794,798,810,826,801,941,945,923,977,987,961,925,931,965,963,943,970,909,994,967,996,968,994,977,974,984,891,892,896,892,880,893,903,901,866,646,631,644,658,664,632,638,680,643,637,638,647,651,635,652,659,657,655,648,666,672,636,666,649,650,679,669,648,621,606,608,611,605,604,1089,1150,1093,1075,1115,1036,1078,1142,1123,1102,1070,1050,1062,1133,1100,1143,1052,1061,1177,919,872,920,903,914,860,881,887,910,927,971,949,960,1021,911,944,978,935,960,953,979,995,998,971,989,977,959,976,982,958,989,991,989,958,978,962,994,963,969,975,974,978,963,968,973,957,986,965,959,955,973,986,961,1033,1039,1013,993,1009,1005,1024,1015,1036,1029,1019,1060,1025,1002,1022,1026,1038,841,859,811,872,827,844,814,835,821,825,852,603,571,552,588,575,612,591,585,605,610,574,592,573,580,616,622,572,572,574,514,543,530,546,534,535,561,545,557,532,543,530,607,618,611,636,600,583,609,599,581,605,623,627,635,624,617,606,610,604,613,621,611,588,638,643,604,618,611,618,602,585,606,556,566,559,562,549,565,572,559,558,574,555,564,552,636,540,609,550,617,585,613,595,595,605,568,608,586,631,581,572,655,646,625,618,608,603,602,590,576,622,592,582,593,617,569,551,542,555,539,536,634,650,646,618,638,644,660,602,615,628,616,611,608,625,633,628,621,1084,1054,1011,1042,1011,1016,995,1001,1000,981,1018,1027,1000,1020,1037,998,1023,992,1052,1030,1046,901,926,930,918,931,967,908,924,915,895,910,917,890,905,572,576,610,576,576,617,616,610,605,622,579,590,590,606,653,632,652,655,647,638,662,598,603,566,590,598,587,595,586,608,605,1093,1064,1080,1086,1044,1084,1086,1036,1073,1112,1101,1096,1046,1073,1064,1075,834,866,854,865,843,839,844,846,859,841,831,858,584,618,601,615,601,615,649,905,915,879,856,905,882,918,924,911,939,907,893,890,925,915,755,792,775,783,797,775,787,789,779,798,595,622,630,591,616,582,616,599,620,612,603,599,606,611,608,598,620,947,941,961,924,911,893,907,937,964,890,911,934,912,926,907,923,930,930,951,921,926,904,940,931,903,925,937,948,931,942,871,844,831,813,849,817,828,836,840,847,849,826,831,859,1035,1050,1066,1051,1078,1038,1044,1059,1046,1054,1042,1041,1042,1031,1063,1064,1069,1051,947,937,937,949,957,928,940,927,938,931,924,890,910,897,894,865,904,871,906,892,895,884,890,873,881,883,673,718,700,640,641,688,668,698,672,649,688,717,707,660,673,671,663,778,821,797,734,785,809,762,767,785,808,794,784,1014,991,1022,1015,971,1010,1002,994,1020,986,1017,1002,889,907,895,890,884,896,891,896,890,893,911,874,923,1063,1042,1044,1059,1043,1035,1054,1028,816,858,841,848,831,838,854,854,825,830,849,831,834,812,588,622,607,607,607,591,611,613,576,608,644,602,610,633,909,945,904,937,927,927,928,892,908,906,922,927,902,830,881,900,911,899,705,677,721,722,697,710,686,706,705,684,701,705,635,602,647,612,637,656,637,610,610,621,624,611,632,631,599,597,623,633,615,866,871,909,855,868,867,866,632,664,667,679,676,651,681,665,681,661,679,686,669,702,659,658,640,630,662,669,998,1033,1002,1003,1040,1027,1014,1004,1003,1007,897,910,931,897,905,901,900,897,944,912,913,912,896,882,913,694,672,649,664,661,689,640,673,664,657,676,696,658,662,656,653,667,682,653,671,584,589,607,583,596,588,613,600,589,1057,1019,1049,1039,1062,994,1068,1043,1022,1040,1012,1021,1014,1006,894,813,847,914,896,848,924,866,906,893,838,868,846,828,846,554,535,570,523,532,552,575,539,543,553,588,566,553,567,509,544,539,641,654,656,688,655,676,658,662,682,673,649,650,669,642,668,649,644,640,654,668,664,663,666,654,664,591,573,594,584,574,586,566,582,571,587,581,596,576,584,570,609,607,612,628,592,618,618,607,612,607,624,626,621,617,603,602,602,580,591,575,609,591,559,595,587,571,575,575,587,578,576,570,582,896,809,922,893,861,835,883,929,879,895,879,872,886,919,894,886,880,851,844,736,725,740,700,716,705,691,697,711,711,748,681,698,585,551,567,556,556,535,525,539,548,524,554,577,524,504,493,490,477,490,482,497,532,576,554,563,577,580,552,550,552,564,555,563,558,568,571,549,577,620,663,637,648,629,604,623,634,646,621,633,642,657,959,980,949,1010,964,979,1018,945,958,953,948,964,992,983,1006,1016,1020,1011,1005,989,937,899,861,876,908,888,886,885,908,910,903,872,871,913,907,913,902,916,889,917,923,898,918,921,886,909,939,895,892,847,873,857,867,839,848,852,859,879,668,673,654,693,686,660,688,684,666,656,669,668,658,654,895,897,878,908,924,877,914,863,900,876,898,913,1018,1051,1031,1030,1039,1009,1027,1016,1021,1035,909,906,888,882,903,910,896,900,931,901,906,888,908,912,900,905,908,923,911,593,591,603,609,612,574,625,612,600,626,870,875,857,853,893,858,823,877,839,853,694,701,733,706,674,700,697,705,732,695,732,851,856,832,840,829,851,854,822,878,859,830,842,829,853,885,861,838,846,812,1023,1012,1025,1017,1028,1018,1025,1001,962,959,966,955,979,952,954,977,965,954,976,992,1009,1025,991,992,981,1010,1007,996,862,836,869,856,893,906,903,899,862,869,879,567,589,582,616,567,594,581,569,551,560,578,574,577,563,601,584,584,587,574,587,575,566,569,577,576,587,583,574,599,582,592,589,600,626,610,612,617,602,599,584,607,608,663,685,659,664,662,679,653,670,674,652,656,627,626,622,623,633,620,625,627,610,612,626,616,618,1085,1086,1107,1099,1174,1067,1096,1091,1096,1114,944,904,929,914,912,925,892,931,913,934,929,882,926,1011,994,996,998,987,985,981,970,993,993,986,969,865,858,851,865,843,826,838,864,830,860,610,608,597,583,581,633,634,590,648,587,625,598,613,1052,1071,977,981,1030,1070,1037,1008,1060,869,902,838,851,874,931,886,863,869,856,892,1033,1047,1042,1035,1042,1035,1040,1032,1033,1023,1049,1055,1033,1024,1025,1050,920,938,920,898,905,896,900,908,925,903,908,853,842,831,832,846,827,860,845,849,849,830,842,860,837,848,849,754,763,733,784,741,756,727,755,753,769,769,766,594,601,598,614,589,618,601,608,619,617,597,601,629,604,584,601,606,585,572,586,581,588,589,592,607,586,587,595,598,581,579,595,572,603,587,595,591,606,604,595,584,822,794,865,836,837,814,827,788,818,815,821,803,809,678,697,670,681,681,659,678,684,689,664,671,676,702,695,650,644,657,647,655,645,643,648,650,636,657,642,649,642,649,641,646,889,971,899,934,905,891,890,927,924,940,892,960,938,923,915,941,929,925,936,929,943,941,949,929,985,965,975,982,965,978,984,974,976,979,813,794,845,801,810,832,810,838,851,834,803,866,952,967,922,934,903,932,901,940,927,940,911,920,950,971,928,923,978,960,972,986,955,1002,954,971,989,973,952,990,1000,923,875,891,884,851,882,892,889,906,877,877,870,721,705,738,730,705,703,716,723,720,739,727,714,739,724,723,740,595,581,590,594,615,601,595,584,582,620,622,587,614,596,620,605,619,554,544,552,537,525,546,536,556,524,571,601,578,589,564,590,586,582,557,567,575,572,581,571,1021,1011,963,1000,986,1022,990,1045,991,1024,959,967,947,955,933,941,956,925,918,944,912,910,928,917,934,932,906,906,914,927,958,935,958,916,890,829,807,788,801,778,786,781,802,805,797,795,795,779,800,797,798,615,601,599,602,620,607,599,599,595,595,660,631,659,638,631,657,639,623,665,645,665,616,647,926,897,922,898,913,907,891,893,896,872,883,922,930,874,947,784,778,787,793,796,796,809,776,763,811,782,768,760,758,789,786,790,785,789,629,609,627,604,601,611,598,629,629,1184,1087,1101,1080,1086,1099,1079,1089,1050,1130,1126,1127,1120,1121,982,973,959,987,1019,973,1010,964,966,977,985,977,985,968,1019,1000,1076,1083,1085,1097,1094,1077,1073,1106,1107,1107,1107,1109,1059,887,908,874,890,891,878,868,910,900,887,880,888,875,887,883,917,898,881,891,913,879,899,888,912,929,928,911,895,905,913,953,985,965,964,980,964,960,953,965,961,923,848,854,832,939,956,948,958,976,951,931,954,951,952,941,932,941,935,959,951,939,643,657,643,618,667,633,644,676,636,661,625,654,626,619,642,645,1094,1085,1056,1050,1059,1079,1077,1078,1018,1019,1043,898,883,910,895,918,934,905,918,874,902,910,890,865,858,916,917,910,880,874,651,669,649,644,669,664,650,627,657,638,656,668,879,838,867,857,819,842,849,833,864,813,867,861,851,841,803,756,715,735,750,743,730,755,763,733,736,734,762,740,755,751,758,612,615,611,626,648,611,620,620,607,620,608,600,630,628,585,591,606,613,607,597,621,598,606,647,626,609,624,624,621,620,626,639,629,625,644,615,637,1019,1044,1122,1108,1063,1078,1104,1062,1117,1052,1114,1031,1097,1063,1063,1141,924,918,906,903,914,911,940,912,909,589,601,569,567,582,585,613,643,853,873,918,829,894,921,885,880,898,918,892,869,874,907,696,676,665,676,695,666,691,677,1038,1075,1075,1012,1036,1018,1053,1038,1038,1024,1049,1154,1141,1142,1119,1143,1169,1141,1149,1138,930,929,921,932,943,932,929,926,905,876,932,934,902,921,919,930,931,898,900,982,993,993,985,1002,1021,1010,1020,1019,1019,1013,832,821,815,816,818,826,830,615,605,603,610,603,602,595,590,597,573,590,601,920,909,920,924,918,941,923,928,926,689,678,672,665,688,666,684,654,706,691,696,678,663,688,689,672,569,572,591,563,566,552,574,555,562,564,547,572,567,572,577,582,591,573,570,565,538,578,562,589,575,575,576,570,563,576,569,601,610,612,605,608,614,607,607,607,617,617,613,598,608,624,588,638,613,624,640,622,640,628,624,614,619,614,628,625,617,624,616,926,938,905,908,918,907,933,903,925,916,920,938,915,906,898,913,952,921,927,869,921,882,921,911,893,901,899,912,926,910,969,931,937,946,970,946,945,956,957,957,961,915,963,972,937,940,817,821,829,860,834,852,847,849,838,842,595,596,626,606,598,594,606,619,612,603,629,628,1009,997,995,1022,1012,990,1009,1014,1008,984,996,1004,1020,1018,990,969,980,966,972,954,946,959,963,942,949,938,959,951,944,931,950,964,948,949,934,958,973,959,990,973,964,994,989,980,976,965,973,974,952,956,974,992,959,956,839,811,817,828,848,835,826,834,836,862,849,829,829,820,851,847,623,628,628,637,603,632,607,630,639,641,670,618,609,630,640,601,563,585,584,585,570,586,573,576,572,1115,1099,1065,1095,1089,1085,1111,1176,1107,1062,1073,1103,1112,931,881,931,944,959,615,595,606,578,584,641,613,603,596,619,612,628,609,601,578,599,590,566,970,930,940,928,938,924,911,936,923,920,939,947,978,980,958,905,935,815,809,810,837,838,817,862,837,832,819,831,817,851,818,861,823,813,819,807,837,661,654,674,649,644,678,659,659,640,666,652,642,645,671,646,665,644,661,657,656,650,648,644,651,1088,1119,1114,1160,1125,1184,1145,1131,1064,1094,1130,921,926,946,912,941,918,919,919,916,907,991,987,1015,1000,1009,995,1013,1010,985,990,999,850,834,868,887,875,873,850,846,833,865,871,877,884,886,875,951,910,958,1002,969,951,931,916,1007,937,1018,916,928,998,977,941,930,1053,1009,1057,1040,1038,1049,1006,1042,1060,1029,823,844,831,820,833,852,847,813,846,861,810,837,837,565,576,571,585,603,560,551,579,587,571,573,583,589,577,570,1115,1141,1102,1108,1079,1117,1039,1034,1083,1095,1142,1108,1031,1124,1090,1093,948,957,929,981,663,652,678,661,684,643,645,678,670,677,650,670,672,668,651,674,655,653,662,678,666,664,648,667,661,1023,992,1026,1009,996,1059,1024,1007,1047,1047,1000,993,1018,989,848,866,903,879,877,885,885,871,905,877,878,859,920,858,892,882,926,886,556,567,517,566,555,562,570,576,564,587,551,592,599,583,555,565,600,910,927,929,932,959,941,742,711,756,730,748,751,782,730,707,720,769,740,743,754,729,713,740,724,710,844,852,869,870,866,836,848,840,827,858,846,838,862,834,862,853,848,823,882,862,873,850,994,970,979,1005,990,998,1007,1022,979,980,1007,1007,995,1010,1022,987,907,878,922,891,901,906,895,911,906,900,918,902,893,855,837,843,846,825,830,831,833,846,840,823,831,666,694,711,649,707,693,689,665,635,696,685,665,685,658,698,672,679,588,604,613,598,605,636,613,627,619,631,605,585,973,957,973,987,946,944,1013,951,973,966,962,994,999,955,1005,972,987,994,995,1001,976,883,892,894,879,889,850,864,879,910,908,862,876,856,858,939,985,935,978,954,949,950,1008,933,961,999,948,946,933,959,958,984,978,914,900,896,887,900,932,895,907,884,901,914,882,910,903,929,908,926,894,915,931,940,933,937,959,919,940,952,936,955,936,976,997,1002,1008,977,992,1003,996,971,988,994,999,1003,1015,991,996,852,825,847,827,855,865,837,868,847,829,856,830,845,846,840,854,819,810,860,840,849,850,955,977,1003,980,1031,984,999,1019,1009,1029,999,1016,1048,975,1012,923,888,912,882,881,841,879,894,881,871,908,901,882,894,877,595,584,590,607,590,628,578,595,617,596,602,623,626,624,587,601,599,612,623,590,1017,1033,1061,1048,1052,1031,1055,1020,1063,1036,1049,888,913,896,927,918,924,933,904,911,880,912,931,906,1024,1047,1021,1011,1011,1028,1022,1003,1047,1011,1029,1023,791,755,820,768,758,802,808,801,822,794,798,817,784,776,765,744,581,560,581,583,554,547,566,570,557,578,573,600,578,575,571,579,601,602,598,594,603,588,583,598,593,571,604,579,592,673,684,665,691,680,690,672,640,647,646,653,652,647,637,656,646,637,627,647,634,657,633,635,633,648,651,633,958,972,986,967,893,960,940,929,962,865,832,790,817,839,820,809,838,813,829,833,833,850,820,508,502,564,555,567,566,569,565,594,577,571,553,581,575,575,592,613,605,624,597,604,615,620,628,607,595,1077,1107,1081,1040,1046,1115,853,878,868,880,863,867,873,876,872,856,857,880,862,866,867,882,868,893,855,870,879,875,899,856,886,791,792,845,856,817,855,855,822,832,837,857,820,821,840,642,613,609,617,635,629,625,606,600,594,634,635,623,633,580,609,630,663,627,858,869,892,859,876,691,731,710,689,698,712,678,676,704,715,687,728,702,810,790,803,806,825,841,796,804,812,809,822,824,830,797,818,823,823,817,798,788,785,779,782,777,773,780,801,790,777,642,651,626,620,618,622,645,625,612,606,611,615,619,617,1101,1046,1089,1027,1055,1067,1096,1089,1034,1057,1082,1080,1039,1109,854,840,878,811,852,850,811,846,834,884,615,593,593,589,591,585,603,606,591,594,622,1095,1061,1075,1092,1122,1084,1102,1112,1084,1090,1089,927,941,944,901,960,967,951,935,940,968,914,929,935,967,933,941,962,921,622,580,632,589,605,653,625,632,615,609,605,603,580,554,587,650,568,555,533,554,549,546,542,567,558,538,865,787,806,856,822,836,872,829,781,810,797,782,782,763,752,762,776,779,768,744,739,766,765,774,763,622,620,637,645,641,634,635,614,642,621,651,642,621,627,608,623,634,629,653,824,840,847,860,837,842,820,797,805,819,818,685,684,661,697,696,669,656,812,860,833,825,839,806,819,858,855,818,840,865,824,832,861,816,832,857,842,851,847,860,853,816,795,803,794,793,760,777,773,758,787,803,791,797,701,710,702,733,695,708,697,731,711,719,708,712,951,992,985,965,951,982,984,973,993,850,867,864,829,845,838,828,836,895,938,934,922,964,962,916,930,919,933,930,944,948,950,920,939,938,899,1020,1029,1052,1033,1028,1040,976,975,1031,1036,1034,1023,1035,1036,1008,878,862,874,851,898,851,879,858,889,870,837,864,848,878,869,1006,984,1006,1029,1011,1012,1002,1018,999,993,1022,1009,995,1000,1008,1009,863,853,849,846,883,862,847,882,828,863,875,876,864,870,880,1043,997,944,932,932,994,943,962,948,1021,971,961,983,972,972,977,961,974,966,969,964,967,945,955,939,972,955,958,954,955,981,988,955,983,961,968,980,993,979,970,966,981,984,775,777,766,768,796,803,770,768,781,787,757,762,766,558,584,566,573,571,572,548,570,545,560,584,582,566,581,1116,1111,1082,1076,1058,1044,1080,1059,1052,1070,1109,1100,1025,1057,1068,951,960,927,954,926,941,903,890,887,903,881,897,906,927,915,916,889,910,910,880,903,897,876,771,779,763,789,753,762,736,763,769,780,773,748,770,763,770,698,698,702,679,691,702,721,703,693,705,917,915,933,943,925,900,927,916,924,910,940,944,902,932,955,942,957,961,972,976,934,954,957,946,949,956,952,952,979,807,796,818,794,847,792,834,804,854,793,1055,1069,1053,1079,1064,1073,1052,1072,1081,906,902,924,933,918,897,916,926,904,911,925,913,950,938,1001,991,995,1031,963,961,980,978,969,987,974,971,943,943,938,939,935,961,942,936,954,937,928,937,941,926,932,937,928,912,933,938,929,931,924,917,937,940,938,935,847,820,850,855,858,853,857,865,846,860,884,842,859,856,668,682,676,690,726,697,709,674,672,709,693,696,675,683,696,720,695,840,818,861,852,815,811,820,823,829,817,868,815,842,813,821,831,841,829,850,847,842,821,1032,1025,1039,1025,1017,1014,1046,1046,1025,888,914,893,920,900,883,889,892,1061,1049,1063,1054,1060,1066,1065,1072,1039,1036,1058,1059,1047,1064,1069,1031,1058,1048,1058,1031,1051,879,881,864,856,889,886,875,895,840,875,858,891,1022,1063,1022,995,1040,1019,1046,1026,1045,1040,1012,1052,1050,904,914,910,851,908,929,867,640,652,640,652,644,975,1004,975,954,1012,970,960,981,985,996,979,975,958,958,945,966,970,957,973,971,989,947,952,970,950,966,992,956,979,953,817,855,823,831,820,823,817,858,846,845,815,860,832,523,502,521,495,520,499,500,481,518,504,494,515,538,502,483,526,565,584,589,598,576,591,576,584,569,567,576,582,557,565,597,572,587,573,680,691,670,693,668,664,653,672,676,662,667,685,951,977,940,930,972,935,939,939,954,948,957,968,918,935,957,915,970,933,943,997,1016,921,901,916,898,871,898,859,845,844,873,857,885,891,926,945,952,966,1010,998,974,1024,968,979,996,939,926,964,920,926,936,946,928,950,943,940,959,648,666,667,651,644,623,628,664,703,673,641,641,678,661,834,833,870,856,802,866,825,857,834,820,805,818,841,826,874,801,814,842,867,851,826,896,897,892,904,916,903,920,899,923,935,913,896,914,911,945,931,903,949,938,940,938,941,944,946,931,951,930,918,1091,1054,1055,1074,1100,1085,1073,1081,1050,1081,1061,1074,1084,1060,1112,1078,1080,1087,1095,1070,1101,912,893,886,888,837,879,880,860,887,849,893,868,879,856,877,871,889,925,882,872,651,627,652,609,608,619,643,595,615,611,620,664,637,625,653,628,628,653,624,916,971,919,998,941,952,954,955,931,938,972,967,970,935,959,931,909,936,940,929,924,938,947,938,947,942,932,934,927,962,964,974,970,977,963,954,951,947,974,981,970,881,898,862,863,870,878,859,888,883,876,878,856,884,857,849,727,743,728,759,733,728,739,748,763,755,713,751,726,737,726,627,648,636,629,639,645,658,630,645,644,633,906,857,845,852,868,895,873,883,842,853,847,885,852,871,846,656,660,662,667,668,651,668,657,663,689,796,831,821,809,794,664,651,626,666,645,663,677,635,666,666,641,663,618,661,631,674,630,627,641,647,641,573,593,584,585,571,592,577,589,584,590,587,615,573,600,583,593,595,542,559,570,552,548,551,555,570,580,557,860,851,902,864,866,829,853,892,872,860,850,859,830,836,834,866,850,674,702,686,694,700,700,718,699,691,726,708,695,699,702,690,708,687,727,665,651,690,667,653,679,671,681,688,689,669,653,605,608,596,614,600,603,609,591,600,619,603,605,583,605,617,602,858,929,921,831,854,893,916,875,872,891,877,884,905,630,669,658,626,645,685,657,629,646,652,669,1001,932,964,983,964,954,995,1052,1006,992,989,981,1031,997,1054,1091,1065,1062,1061,1072,1076,1077,1068,1030,1057,1039,1085,1045,858,807,826,845,822,845,568,584,576,600,592,578,587,569,592,593,565,590,600,952,970,981,956,958,953,980,993,967,956,981,999,959,984,979,959,971,971,967,977,923,942,948,936,938,949,960,919,987,990,977,974,959,1009,982,1006,987,987,996,1000,1011,940,992,954,910,900,892,888,907,867,922,837,840,814,803,794,807,836,820,806,808,822,823,822,825,825,802,846,805,823,781,831,801,813,653,619,660,617,651,639,652,617,640,658,626,657,649,1158,1115,1101,1144,1101,1083,1060,1082,1085,1109,1043,963,900,885,851,885,882,877,863,969,1006,947,920,982,970,943,988,899,992,952,944,939,955,963,937,951,961,981,951,959,959,949,954,946,948,932,974,974,972,971,967,969,954,982,978,976,954,961,976,960,975,981,817,823,819,806,827,842,790,845,841,862,958,939,980,961,921,957,970,960,1000,941,944,966,971,961,978,892,958,931,989,979,971,983,992,986,985,964,944,991,965,975,835,824,820,831,851,798,862,853,1026,1027,1042,1026,1033,1024,1033,1039,1041,1037,1032,1009,1003,1041,1010,1019,930,902,933,939,924,927,909,890,913,957,920,928,911,890,808,853,838,849,850,843,860,829,640,687,607,646,625,621,638,627,635,654,608,641,1124,1088,1125,1125,1125,1063,1136,1067,1087,1097,1084,1112,1098,1074,1052,1101,1163,1136,1191,930,928,922,964,912,912,958,939,918,947,927,940,954,1081,1096,1112,1075,936,964,956,956,974,960,936,941,929,946,970,760,751,787,773,783,759,791,769,787,784,743,774,629,636,623,650,610,617,634,628,613,640,630,656,622,614,643,614,627,586,618,591,613,637,617,625,633,625,623,615,604,624,681,715,716,708,701,732,693,691,674,709,692,703,658,701,707,703,662,980,961,954,985,975,940,970,980,953,970,950,944,953,972,987,716,668,668,676,652,717,661,669,675,706,706,686,669,708,645,939,901,900,911,910,935,906,946,952,937,920,922,913,905,942,952,957,895,950,900,936,942,939,924,931,948,959,969,984,957,989,978,981,959,944,958,987,959,987,955,973,970,968,811,845,818,866,838,832,820,828,834,849,869,940,946,940,943,958,964,864,860,860,850,875,860,864,851,864,886,857,863,857,865,862,646,614,624,622,645,649,630,628,637,639,662,619,654,650,642,627,649,784,797,792,790,787,787,798,806,595,578,630,615,643,609,545,540,531,547,550,540,520,554,551,549,538,544,542,618,592,615,605,617,605,613,598,606,622,616,609,608,612,622,579,612,613,597,594,610,1023,1009,1025,983,1004,1041,991,973,1026,1019,991,1027,988,973,993,1009,1004,995,999,1019,1004,1019,867,855,878,876,900,869,864,853,900,715,692,684,665,702,703,650,669,692,690,661,685,672,676,699,669,639,604,613,606,604,601,611,617,608,599,605,626,596,629,593,540,565,544,558,545,573,545,558,565,559,582,583,589,574,581,595,580,588,578,543,564,553,546,555,540,545,543,550,545,540,537,542,558,549,560,553,538,557,591,601,601,599,589,595,603,604,581,598,603,580,590,601,592,598,573,589,573,573,589,578,581,568,580,892,866,843,907,874,884,895,847,847,833,851,922,684,698,702,691,729,710,657,712,710,676,734,708,734,726,686,686,738,717,614,603,588,586,585,571,592,572,574,582,601,584,580,606,579,577,582,929,902,933,920,888,909,923,899,889,907,875,885,913,889,928,894,919,932,933,921,920,930,914,907,903,918,917,921,922,917,906,897,872,886,902,864,889,903,892,879,873,878,914,747,739,743,759,752,732,715,739,735,625,612,641,615,626,629,632,649,644,611,587,594,627,624,676,635,569,569,569,564,551,582,576,574,591,576,580,566,575,572,579,571,571,553,578,554,574,589,567,594,576,598,573,590,571,563,591,566,570,588,569,576,595,583,581,585,603,598,598,595,595,591,588,584,610,605,623,604,592,597,592,605,603,618,603,596,605,946,964,938,941,978,985,964,956,966,970,943,921,898,905,895,901,943,908,953,915,925,923,914,926,955,785,791,796,813,782,796,847,828,801,825,805,799,868,903,858,864,860,845,932,901,911,863,890,896,880,883,846,865,847,945,975,960,971,971,968,972,925,943,857,876,878,863,882,901,891,892,901,917,813,799,806,797,796,798,796,825,813,804,824,816,791,817,947,938,935,945,937,930,933,996,955,955,957,969,951,984,955,974,978,976,950,941,938,960,801,815,824,836,809,820,823,831,794,818,837,844,1015,1001,1001,1013,1021,1014,977,1003,1007,995,995,996,1001,1032,1002,999,982,1004,987,977,876,846,862,851,859,886,884,877,877,842,852,847,843,872,551,599,593,616,602,599,567,591,606,589,616,616,601,607,592,595,601,991,970,951,997,999,1020,995,987,984,966,974,993,968,983,980,987,990,980,996,987,988,973,1004,857,859,858,855,859,857,868,848,863,840,857,826,592,583,602,621,616,606,590,635,589,617,625,626,620,579,567,580,583,589,559,551,564,569,556,580,592,579,557,562,571,568,648,628,645,649,628,637,644,591,634,612,619,650,595,590,601,587,602,591,597,597,595,590,592,593,613,596,600,615,601,589,601,1116,1085,1145,1154,1074,1079,1104,1095,1124,1158,1119,1084,1117,1149,892,914,914,965,895,917,905,918,922,914,958,919,920,586,620,601,600,618,608,596,576,614,615,609,1099,1109,1121,1086,1117,1094,1131,1090,1069,1098,1050,1078,1046,1055,1012,989,1001,999,965,965,996,1013,1004,1001,954,985,1018,1008,986,983,1018,1019,632,632,600,667,606,606,647,630,608,631,655,639,630,646,591,543,545,551,543,563,558,550,556,553,936,1008,1023,1005,1020,996,952,1043,1011,980,1019,952,994,978,994,1023,976,915,949,955,955,960,947,616,595,621,649,596,608,626,582,616,606,630,626,576,569,594,624,589,973,980,1059,990,1015,971,1012,1058,1000,1002,1007,987,999,1019,1028,984,1005,897,942,930,955,941,950,615,619,636,599,627,610,648,617,583,582,580,607,659,639,655,649,668,654,700,628,645,669,649,672,664,672,660,665,643,636,639,656,653,624,645,661,659,632,657,1123,1162,1063,1120,1101,1139,1113,1150,1122,1095,1122,1138,1078,1195,1158,1163,936,931,958,942,915,956,914,926,897,940,910,947,909,945,972,968,958,958,941,932,950,929,869,863,820,837,808,821,851,864,854,822,831,584,524,544,562,525,536,548,536,541,545,532,566,554,531,542,540,574,576,572,556,518,559,549,559,556,575,631,636,651,632,644,616,638,646,627,740,713,739,736,722,718,727,706,720,701,720,757,727,747,720,729,721,731,597,583,586,613,594,582,606,595,597,601,609,590,602,788,815,803,766,653,843,813,784,806,782,811,835,805,823,804,818,778,832,983,1008,1020,1027,998,1010,1018,1001,1012,1011,1015,988,990,997,1002,983,1011,941,956,933,963,961,960,944,943,955,953,965,964,953,969,960,944,952,952,950,949,943,925,917,942,936,939,956,953,940,954,948,940,930,924,931,929,947,936,924,937,927,932,932,945,916,922,933,919,939,938,813,827,841,830,839,854,841,822,845,820,833,816,854,824,859,818,826,808,842,837,863,854,854,861,856,870,864,859,865,858,869,860,861,847,681,684,647,677,682,720,709,693,676,677,885,841,843,861,846,833,843,863,843,854,857,854,854,936,936,959,935,954,933,931,953,943,945,949,941,927,880,892,893,892,906,913,892,908,895,900,917,918,896,878,895,902,922,888,915,889,907,924,925,921,907,909,921,902,933,907,917,898,893,912,905,909,894,888,906,922,880,908,906,907,916,913,936,926,941,951,920,940,936,922,915,914,948,911,935,873,812,822,802,828,828,809,857,807,853,808,792,876,826,818,829,805,810,842,824,603,657,642,638,657,625,630,648,646,657,671,661,667,680,637,648,654,644,613,624,653,653,911,963,959,937,960,946,930,973,937,923,951,697,711,679,734,730,692,681,766,674,701,722,682,778,776,780,810,782,789,800,783,758,803,779,788,783,787,1029,1044,1038,1040,1072,1064,1087,1067,955,934,949,932,940,955,902,960,921,960,1033,1002,1012,1024,1032,1022,1018,1015,1013,1013,997,1026,1000,1026,1044,1014,1018,1020,840,838,838,774,850,829,851,835,836,869,839,863,856,840,939,922,933,900,934,881,941,878,902,898,910,900,948,946,941,961,960,927,962,950,928,959,951,944,936,952,944,941,941,1021,1023,1041,1044,1028,1004,998,1021,1029,1045,1015,1030,1024,1014,1026,1035,1013,901,896,929,925,914,903,932,916,914,886,920,920,902,899,931,916,923,900,844,842,819,823,847,843,779,750,745,750,726,720,746,782,751,728,729,739,738,1007,1024,978,988,962,1024,1022,971,1002,985,997,995,889,886,895,883,880,870,870,881,871,895,873,904,874,725,713,754,757,717,726,756,729,758,759,761,729,731,730,967,1000,1014,996,989,1026,992,1013,999,989,842,851,828,862,835,852,864,846,857,841,869,857,964,976,950,869,839,853,870,847,853,872,809,794,794,794,816,806,797,816,813,814,842,664,639,659,688,676,680,628,674,649,656,662,675,618,624,610,628,615,618,627,1078,1123,1048,1112,1116,1118,1107,1095,1088,1125,1043,1081,1061,1097,935,941,940,959,923,868,914,935,935,1000,971,979,988,957,976,992,973,983,975,969,1001,993,805,773,814,791,789,750,770,768,780,786,771,780,639,621,606,613,643,632,622,612,621,616,633,615,986,982,1001,963,1023,958,1008,997,977,986,987,985,996,1013,1027,959,1003,1010,809,807,807,806,827,787,810,783,817,824,798,818,592,603,605,589,623,598,603,617,626,612,599,583,610,605,597,608,914,933,913,914,919,945,897,920,955,899,916,922,895,877,893,909,888,895,872,883,896,888,907,886,953,951,930,954,925,953,970,953,904,941,953,979,945,950,947,948,982,954,952,967,797,804,767,803,759,812,779,812,788,761,805,790,771,555,523,557,559,530,566,544,593,554,565,581,584,602,577,572,592,555,584,585,575,595,601,1058,1002,1022,1003,1019,1001,1055,1006,990,1032,1050,1000,1049,980,1036,1014,1012,1004,992,980,1004,808,810,833,816,805,830,814,813,797,832,801,831,697,699,706,706,723,704,701,704,705,704,705,705,734,868,940,921,916,892,918,863,911,916,910,932,901,916,917,943,892,910,886,853,863,841,876,845,845,576,605,598,582,595,566,585,603,576,593,580,589,936,906,937,961,956,912,902,912,960,916,901,913,1000,950,821,827,810,798,840,798,820,804,803,819,794,833,788,825,780,815,823,789,810,820,769,759,773,780,759,754,767,770,757,774,765,775,757,775,764,788,779,764,775,779,632,643,641,606,604,616,635,625,602,632,620,629,631,652,618,640,629,610,636,619,634,625,572,557,555,567,568,565,576,579,997,1018,977,1045,1012,1009,993,1024,1017,996,1027,1072,1034,1048,849,879,841,862,868,885,830,862,887,807,871,867,865,872,886,865,882,834,696,719,699,727,690,710,680,688,684,695,688,711,758,735,758,740,731,754,729,749,729,709,733,750,738,746,1135,1101,1166,1122,1121,1101,1102,1087,1112,1101,1162,1176,1148,942,926,928,941,949,923,912,896,940,609,610,584,622,574,615,579,592,559,598,576,616,580,612,998,960,995,952,929,952,943,941,957,948,930,961,979,964,972,964,982,962,979,953,936,958,835,864,852,808,843,855,822,845,842,863,833,863,853,864,805,845,1166,1203,1192,1143,1187,1171,1175,1178,1180,1169,1179,1175,1166,1175,1177,1171,1192,1172,952,933,949,931,953,947,932,943,987,995,976,968,1087,1097,1075,1112,1092,1084,1090,1094,1074,834,845,846,865,818,833,807,828,855,823,814,817,786,838,838,803,595,588,558,601,573,581,592,588,593,579,584,597,1012,1038,1028,979,1003,994,984,1026,932,1056,1022,975,1027,1016,1007,1011,1018,1028,966,997,998,1027,1000,1005,1005,889,858,887,888,880,846,901,883,903,880,889,883,882,889,919,892,884,950,933,934,939,945,966,934,931,934,944,942,942,930,940,840,809,821,866,839,827,807,855,846,853,834,994,1002,1021,1019,1001,988,1014,1006,993,1002,1029,1004,1019,881,914,872,887,922,876,931,903,843,880,864,893,886,890,993,991,1006,1023,1028,984,921,969,953,1016,990,988,991,1044,968,998,983,995,976,984,1003,986,1017,990,985,994,981,997,1000,995,995,1005,888,910,893,889,871,894,902,887,881,890,881,870,618,616,628,595,590,597,617,600,625,597,638,613,629,641,616,619,604,609,622,611,628,611,627,903,893,881,926,911,724,703,708,724,689,686,694,699,704,720,704,715,677,839,893,877,811,828,855,833,854,898,895,1015,1007,1030,1015,1028,1021,1028,1014,1025,998,1046,1037,941,970,944,968,961,972,962,939,956,932,922,953,931,933,934,933,938,942,943,925,945,926,954,950,943,956,927,929,956,938,957,936,939,932,941,939,935,937,949,843,832,797,785,827,826,818,818,860,852,798,839,972,981,973,958,968,966,961,968,987,990,989,972,830,856,855,838,848,877,860,872,865,897,548,621,605,632,588,575,587,529,522,541,506,540,557,529,528,532,515,515,523,549,512,562,512,524,620,605,611,611,615,608,614,630,617,685,687,695,706,694,671,698,669,678,659,681,701,676,690,709,683,683,675,657,652,660,650,690,679,912,908,921,933,886,928,927,927,935,897,907,903,897,904,899,897,898,862,901,899,883,876,891,883,886,891,889,828,852,850,862,873,865,841,849,853,882,839,882,841,843,849,978,969,927,963,952,947,947,986,952,981,961,952,945,951,902,878,868,894,877,912,888,892,900,873,887,884,640,676,656,641,672,646,655,680,657,643,653,647,617,638,655,627,777,786,801,814,816,814,783,796,787,774,947,963,972,987,976,958,966,979,981,1016,1003,958,961,978,992,990,934,863,860,867,852,883,852,862,862,862,858,907,863,660,644,676,650,645,676,665,645,663,659,685,630,619,676,652,672,939,943,924,928,935,932,910,918,648,651,670,674,690,661,681,662,657,935,944,931,947,927,933,966,975,952,928,926,951,938,952,940,923,947,964,968,978,959,949,949,966,964,970,960,945,945,1005,918,903,907,877,882,889,897,894,881,902,873,878,654,629,643,656,564,587,573,602,581,560,580,609,585,575,575,577,569,589,592,992,1100,1050,1088,1063,1052,1080,1088,1057,1095,1073,884,865,879,901,891,875,894,837,889,894,876,646,641,618,652,667,659,638,684,640,640,652,636,642,631,645,669,610,638,644,1110,1141,1190,1122,1122,1110,1089,1141,1107,1220,1117,1082,1111,992,998,1022,991,828,859,853,848,827,852,842,846,845,847,862,837,863,814,848,856,854,845,861,822,818,843,838,766,762,770,784,765,775,773,771,775,758,742,762,768,758,788,773,771,777,755,680,664,651,664,652,909,893,870,910,903,870,783,782,765,787,777,777,785,808,790,643,667,670,683,674,641,649,632,674,643,642,633,638,633,641,903,865,879,878,867,866,895,862,904,914,877,775,746,740,726,749,762,769,760,746,745,739,755,743,733,716,760,757,765,934,929,954,940,951,936,942,948,932,931,930,954,946,958,950,940,962,959,955,897,910,908,910,912,937,910,919,901,923,929,941,954,923,939,947,951,933,941,964,955,965,981,965,936,968,956,952,967,956,948,834,854,830,866,841,809,832,849,831,823,824,841,848,841,817,861,623,627,622,618,622,625,596,601,611,617,624,655,612,1071,1044,1095,1038,1046,1000,1034,1034,1016,1065,1035,1068,1018,918,930,916,916,932,915,924,913,944,893,941,910,697,715,713,719,687,698,678,679,701,617,601,582,620,610,577,575,622,602,604,598,588,1025,1041,1045,1001,1027,1034,1022,913,868,870,878,871,940,877,897,887,1072,1076,1045,1070,1069,1076,1029,1051,1052,1072,1048,1080,834,858,883,879,847,873,914,894,858,871,902,849,837,890,838,865,873,874,869,878,867,843,630,642,617,657,668,645,674,633,663,631,661,664,646,652,924,944,930,951,954,915,920,903,926,921,928,760,769,786,749,773,774,780,773,770,763,777,765,795,635,639,621,640,630,630,618,607,653,635,644,644,623,614,624,640,747,737,760,759,766,742,769,773,750,632,643,639,645,650,636,581,606,596,600,598,598,606,614,615,578,609,614,585,587,599,845,855,847,854,799,842,835,868,823,861,839,864,829,667,687,650,653,678,678,660,700,660,669,688,678,656,675,668,589,605,597,618,605,603,608,617,608,580,622,597,618,582,610,603,599,609,1032,1053,1040,1014,987,954,982,965,975,963,951,975,956,954,980,995,1011,990,871,831,859,852,766,771,883,860,815,770,858,837,853,811,822,539,526,545,525,583,570,552,577,575,569,573,558,572,538,529,584,559,565,548,560,586,590,591,539,577,601,585,561,570,583,560,541,617,619,608,631,637,679,634,646,661,621,649,636,630,638,644,654,635,976,969,975,968,985,966,985,981,998,957,964,976,1020,930,983,973,980,725,741,708,712,697,726,707,743,733,715,732,715,747,747,697,728,754,785,788,744,777,775,708,738,739,724,730,673,687,716,685,704,692,683,695,694,707,677,693,985,975,977,944,990,968,962,982,959,977,961,967,959,830,892,860,795,854,865,839,822,805,830,853,865,836,835,820,828,858,813,864,895,902,950,947,970,915,921,945,974,937,932,1001,985,979,991,994,975,973,997,988,983,984,979,980,993,817,837,779,818,827,819,825,854,833,850,771,539,513,529,539,541,589,578,586,583,588,594,538,567,582,588,556,615,589,530,567,575,949,906,925,912,886,885,896,883,644,668,663,605,642,577,556,560,584,591,567,590,566,574,559,578,552,590,560,877,885,921,891,928,914,900,886,953,936,917,905,919,706,696,700,684,665,655,672,657,711,697,677,683,697,690,675,693,692,663,712,682,1032,981,973,1028,999,1024,1024,1007,951,1007,1023,987,986,957,986,862,828,862,818,828,856,827,835,871,875,841,854,826,853,851,839,845,669,636,616,653,636,635,634,651,676,664,647,638,635,875,829,863,817,845,828,769,769,757,747,779,750,781,762,755,776,763,785,748,740,737,736,731,738,730,746,737,744,735,753,744,736,729,622,619,634,633,633,630,620,614,648,627,770,758,772,804,799,767,769,798,794,806,808,812,1012,976,985,979,1019,977,957,977,976,985,977,866,873,864,872,831,873,849,828,851,815,851,849,1071,1084,1092,1083,1048,1105,1082,1058,1077,1082,1060,1087,1083,1053,1076,887,918,887,953,884,882,895,896,901,893,1022,1072,1043,1044,1055,1050,1035,1034,1065,1022,1048,1036,1029,907,931,915,902,922,903,888,901,925,907,907,904,905,900,921,918,897,928,1007,1034,1055,1021,1006,1033,999,1034,984,999,1016,1030,1003,947,954,945,948,955,929,931,961,957,916,938,951,583,563,593,606,589,612,595,606,588,568,613,580,568,609,600,555,608,598,598,614,598,630,597,609,580,614,636,592,616,602,633,606,606,606,606,644,594,602,587,963,921,967,935,941,905,922,972,939,948,959,968,957,962,896,970,684,1059,1092,1070,1080,1081,1038,1099,1058,870,856,854,855,861,866,876,869,855,868,965,956,940,907,939,924,939,927,944,949,939,932,929,933,936,925,938,939,932,948,932,944,935,946,941,921,936,941,954,929,941,929,944,933,945,936,931,942,825,766,819,818,835,806,775,800,819,828,841,857,832,826,794,835,811,853,828,796,831,824,949,951,952,942,851,913,925,936,905,901,938,922,909,934,906,911,921,917,906,927,917,942,956,954,951,971,969,945,950,972,953,970,973,964,951,800,771,832,788,810,780,780,594,587,597,592,604,600,566,598,606,563,596,613,602,589,580,596,581,598,586,588,592,575,579,602,591,606,612,591,585,590,587,566,585,611,602,611,594,568,548,547,559,563,559,554,563,522,558,547,555,546,562,552,559,568,552,569,564,550,567,549,560,568,575,597,595,596,597,588,611,588,628,600,602,597,619,591,599,656,631,642,642,647,666,653,633,616,1009,997,1009,1009,1040,1028,1017,1021,1000,1012,1034,985,1002,1023,1036,1003,1030,1013,1022,1007,824,894,861,889,849,884,929,866,864,852,824,860,887,916,919,834,854,828,523,537,552,525,545,520,543,573,554,554,557,569,1209,1205,1152,1127,1152,1110,1139,1151,1166,1141,1118,1104,1127,1095,1197,996,1030,1022,985,1021,1012,1017,976,985,970,1091,1086,1027,1099,1102,1096,1090,1090,1088,1082,1073,1120,1063,880,864,880,907,874,872,902,893,896,844,896,899,604,599,596,555,615,640,630,631,621,593,638,601,599,584,595,598,578,579,562,537,565,591,544,1156,1205,1194,1153,1172,1179,1085,1179,1163,1192,1112,1113,967,1006,994,972,1023,1005,959,1002,988,988,980,995,1029,1021,983,1006,1030,992,990,992,1002,996,1006,1002,993,1005,1002,995,814,820,811,814,832,815,836,814,821,617,643,640,635,641,642,630,633,654,603,650,635,642,623,648,790,824,806,794,807,787,783,831,798,768,776,780,772,818,999,1012,1002,999,997,986,1020,1002,1016,973,1008,1010,975,1015,985,1006,972,800,818,815,793,838,859,846,821,812,773,804,812,842,816,810,826,833,828,812,823,824,811,818,607,575,595,586,580,574,592,580,565,602,602,571,621,841,885,854,820,847,897,862,856,862,860,823,854,846,846,878,823,654,648,688,641,681,688,673,660,562,557,561,561,558,586,563,567,577,565,559,544,543,553,556,553,568,565,561,567,544,566,565,580,572,558,571,557,560,618,626,596,625,620,616,632,627,648,619,628,656,630,629,625,618,626,624,626,648,638,623,976,994,995,1043,1045,1019,1051,1028,993,1017,1016,901,902,883,875,892,916,887,894,895,864,893,891,587,618,625,608,617,642,676,625,623,586,647,625,611,606,614,828,869,701,690,687,695,666,706,680,667,702,671,683,657,681,672,689,577,580,578,588,574,586,586,556,571,561,570,575,587,580,597,641,645,651,654,616,638,648,631,622,622,619,637,627,633,640,634,619,631,635,1117,1099,1070,1039,1030,1060,1010,1048,1056,1146,877,912,864,859,873,905,887,881,892,914,897,852,882,923,951,947,931,947,933,847,913,876,885,865,905,860,880,869,576,552,607,535,567,577,527,553,561,582,618,579,591,625,565,549,588,565,529,559,540,558,554,541,548,553,531,532,534,1092,1073,1062,1125,1050,1132,1128,1067,1056,1092,1126,1058,1111,1100,1126,1039,1121,1116,916,973,915,910,900,935,933,928,858,845,884,930,558,556,571,548,554,572,558,559,573,567,547,545,559,639,596,627,630,608,644,615,622,622,630,632,632,634,647,654,641,659,639,647,630,615,615,615,591,613,599,629,607,608,621,623,601,618,615,631,607,623,614,1021,1025,1042,1007,1006,1061,1077,1015,1044,988,1034,1029,1024,968,978,988,997,1001,1014,995,969,983,991,969,985,1013,993,961,999,974,987,987,924,881,878,872,892,901,891,870,891,889,912,876,921,819,814,782,794,786,797,804,794,828,814,796,813,810,774,760,743,758,777,755,791,752,767,756,741,763,767,771,600,603,618,600,616,612,595,629,598,616,608,624,1052,1030,1094,1092,1010,1066,1083,1045,1040,1032,1075,1081,1053,1000,1052,1022,1032,1020,996,1024,998,1024,1014,992,1014,1034,992,1008,1021,1017,1004,1020,1017,1011,802,821,855,762,767,813,819,799,817,775,589,590,574,580,590,565,580,576,579,579,570,609,591,1120,1127,1088,1115,1115,1055,1119,1156,1106,1066,1133,1085,1045,1076,1081,983,970,975,962,991,1009,942,952,972,968,932,951,954,992,965,956,958,992,978,958,990,1012,995,990,986,997,984,992,1010,987,987,991,1008,1002,833,841,861,856,839,866,835,861,849,839,817,831,833,848,610,604,591,583,597,601,564,616,602,531,540,549,544,550,540,552,534,557,545,533,535,1097,1126,1079,1099,1091,1091,1154,1158,1087,1091,1116,1130,1118,945,938,914,931,936,949,912,881,904,956,876,925,942,937,943,1041,1033,1027,1044,1021,1015,1038,1034,1048,997,1039,1006,1026,990,1020,1017,1002,878,898,868,853,852,591,594,557,586,578,545,538,586,532,586,562,604,579,596,602,576,593,617,603,598,582,614,597,602,593,604,620,617,621,612,609,983,997,980,967,966,997,958,1009,981,976,959,947,780,762,804,807,829,787,791,803,812,820,762,807,828,856,790,581,555,584,566,564,574,563,569,565,565,598,551,575,552,566,572,582,560,542,581,567,913,854,864,883,872,886,875,903,874,882,891,874,878,847,884,894,867,673,708,694,713,722,728,728,713,698,716,721,707,721,691,590,610,593,590,579,616,616,607,591,593,593,598,605,600,604,603,603,596,605,602,623,595,610,930,912,942,895,923,903,907,910,903,907,886,919,935,882,888,903,903,879,890,918,898,902,894,881,909,929,941,942,953,945,908,935,916,944,934,926,866,871,845,855,885,847,871,883,856,842,847,869,848,820,840,851,833,867,874,836,863,1056,1057,1034,1040,1033,1035,1039,872,904,902,909,893,884,893,918,918,913,894,910,909,891,886,905,1045,1083,1064,1035,880,883,877,876,870,863,893,901,886,874,876,900,588,570,584,577,587,591,571,589,615,604,593,606,604,602,635,597,641,657,627,622,640,636,613,641,655,662,654,652,587,598,564,587,587,603,590,594,596,607,609,588,623,599,612,594,600,619,594,594,597,605,595,594,588,603,613,595,610,602,642,646,639,650,640,675,665,641,641,648,641,677,966,997,957,971,974,990,945,935,971,970,994,999,989,989,984,951,984,983,977,985,996,1002,964,985,972,973,993,979,991,993,994,782,838,818,846,805,831,808,803,794,813,585,593,580,599,575,967,951,942,959,936,933,954,964,953,921,909,900,924,902,925,897,902,911,963,950,953,954,964,961,957,953,951,975,805,838,838,821,795,846,833,832,907,879,946,972,992,975,994,976,1001,987,994,972,972,990,988,972,998,1011,964,1004,990,955,982,991,915,893,890,860,879,878,880,882,912,878,891,740,743,729,741,736,714,737,735,728,746,748,749,766,734,626,652,654,646,623,649,640,640,622,613,616,649,651,619,568,581,566,579,555,585,559,565,550,558,546,566,627,630,622,621,618,606,623,628,618,632,621,637,630,643,635,635,638,654,629,629,634,634,652,624,617,620,644,629,626,980,992,963,975,977,996,933,949,982,945,981,945,964,982,983,1019,1033,1048,1020,1038,1050,1003,1047,1023,1027,1030,1045,1010,1019,1040,1013,1030,1032,875,905,898,879,882,896,864,860,893,884,875,924,893,881,912,1021,983,1028,954,991,979,1074,1005,1048,992,1003,991,999,1041,1015,993,998,984,994,1004,1003,987,992,984,1011,977,1000,1005,1013,990,1009,985,878,876,919,902,902,888,899,870,817,923,854,885,873,873,911,897,1077,1081,1065,1057,1056,1085,1031,1062,823,759,818,801,826,822,793,819,805,833,751,843,831,836,794,820,833,653,638,663,632,657,650,653,689,645,649,662,935,953,974,987,945,943,977,962,964,949,949,956,945,916,973,934,976,1015,961,951,952,962,960,970,965,964,961,974,946,975,955,961,961,965,949,977,964,973,979,791,770,798,767,776,831,813,794,839,791,802,818,798,786,831,916,864,870,839,936,889,952,918,919,839,896,869,856,871,878,872,816,894,884,882,917,922,925,913,948,952,945,936,938,927,927,953,928,935,920,950,906,812,859,876,847,865,851,879,846,869,867,841,876,857,588,574,590,591,558,580,617,583,580,607,565,575,604,559,596,582,590,582,627,572,619,605,625,614,552,560,577,586,566,560,549,578,578,578,573,564,554,572,577,574,573,569,589,525,558,551,886,937,954,906,913,937,948,908,698,679,678,716,710,679,689,714,716,684,688,697,712,685,703,708,691,692,777,785,760,795,794,795,806,809,793,800,789,778,807,790,806,645,648,641,615,624,628,613,657,650,604,623,647,635,622,581,566,552,572,565,562,565,574,541,553,547,548,657,663,635,643,620,647,650,649,647,639,639,661,643,651,866,878,892,906,917,874,897,863,879,893,898,904,901,902,886,923,874,859,890,901,895,895,926,919,947,950,899,939,943,936,918,910,906,906,921,917,907,908,889,908,892,875,978,962,970,938,954,955,971,990,962,966,942,973,946,851,881,840,866,852,847,854,854,878,876,541,556,583,573,555,544,534,559,551,589,551,549,528,541,567,1028,985,962,969,978,981,995,1008,971,979,961,941,970,936,918,949,938,963,949,943,926,937,951,912,945,954,933,925,946,942,945,937,958,922,938,950,961,938,955,958,954,962,935,953,958,915,943,971,977,973,986,980,962,966,964,977,968,966,969,964,981,961,868,800,864,823,858,847,847,853,861,845,827,829,803,843,850,876,890,853,914,968,843,953,922,890,1014,953,965,978,972,982,979,974,989,971,995,884,824,822,830,834,821,796,853,853,1068,1059,1081,1085,1059,1082,884,870,870,871,893,849,890,891,849,880,878,878,843,879,869,568,633,629,602,622,609,636,632,644,644,609,627,611,641,617,617,1037,1000,997,1029,1064,1053,1016,873,871,867,888,869,857,873,864,854,962,946,908,887,945,923,942,950,937,947,905,905,943,938,929,899,1008,1022,1020,1023,1022,995,1010,1022,876,854,849,880,875,894,882,870,887,934,928,938,930,901,901,918,979,926,913,883,919,908,909,910,938,931,923,904,928,901,926,925,918,900,915,907,904,918,915,1014,974,988,1008,1009,992,1017,983,970,998,982,997,996,1002,1000,982,998,1008,833,835,849,810,834,830,832,835,826,855,981,970,975,991,1007,989,970,994,981,989,989,968,844,866,851,859,849,840,866,838,859,866,851,860,831,864,835,857,849,1040,1039,1033,1038,1017,1057,1029,1011,1033,1027,1041,1051,884,859,879,874,868,919,861,878,916,848,865,895,937,962,927,962,953,958,970,957,965,951,953,943,957,961,948,972,965,968,952,962,945,962,972,871,841,863,877,883,871,885,863,845,832,856,865,867,843,894,593,599,596,597,599,596,588,622,651,588,602,594,593,588,612,598,608,604,600,595,599,594,591,582,601,884,967,890,877,874,895,936,932,943,831,908,901,895,912,942,1001,992,1043,1007,988,986,1001,982,993,849,870,838,847,798,847,832,836,826,866,856,875,813,815,889,817,821,797,492,476,536,517,492,535,514,494,507,552,574,546,546,524,538,553,515,547,559,528,561,551,690,667,685,685,697,701,676,690,692,678,684,695,714,700,630,642,623,653,610,637,618,629,627,630,637,630,631,630,622,951,948,947,989,989,969,937,979,962,970,946,960,956,945,944,953,948,928,901,873,887,894,887,897,891,893,899,899,890,895,892,887,958,926,902,948,931,939,955,920,906,832,844,814,810,880,844,849,854,891,860,882,856,850,861,888,845,866,946,955,960,942,932,937,955,957,946,964,944,937,955,944,963,928,943,939,927,932,935,945,934,973,959,965,966,990,956,982,966,960,878,861,631,666,629,607,638,642,630,618,672,627,645,678,581,587,610,617,620,589,594,608,583,616,612,604,601,987,969,998,993,976,1013,989,1005,1003,956,1025,1006,979,939,1001,991,981,1007,986,993,973,989,988,986,982,996,962,993,975,979,985,992,988,849,849,831,825,832,835,869,817,848,857,818,818,841,821,849,783,855,832,831,831,823,819,852,836,1085,1069,1105,1109,1111,1109,1082,1089,937,946,897,949,924,925,916,937,955,949,925,903,923,920,589,606,586,558,603,567,589,616,631,576,602,570,570,590,577,568,608,594,589,589,553,588,570,583,595,589,573,561,601,584,587,564,1034,1042,1069,1097,1029,1103,1122,1131,1034,1177,1049,1046,1091,956,934,956,977,947,915,950,949,973,966,942,946,943,965,956,934,966,948,977,982,597,668,607,599,633,621,559,577,611,606,576,642,742,768,805,758,772,782,772,772,786,772,795,763,771,795,858,890,874,870,890,879,876,877,878,902,878,957,924,931,956,953,955,933,951,983,956,963,737,798,753,734,740,751,756,712,772,715,754,740,628,627,640,626,625,630,644,617,605,588,624,645,613,597,642,924,910,910,879,919,907,944,947,928,942,941,925,948,913,912,957,951,941,946,983,933,933,955,961,946,951,956,955,975,975,946,961,961,953,978,840,842,862,856,856,881,843,831,861,856,848,839,877,657,662,670,694,664,678,673,707,712,695,675,666,989,962,987,982,964,977,941,933,965,982,987,895,848,865,851,842,855,865,834,851,863,847,819,830,853,816,852,837,944,889,961,925,960,1005,936,928,943,922,914,926,911,942,915,929,931,936,952,931,926,960,952,938,952,945,925,930,936,936,938,951,960,955,951,956,943,959,952,945,981,969,961,974,960,966,950,966,850,870,850,838,841,861,846,869,849,877,858,849,853,632,661,679,652,648,609,632,655,647,635,527,571,556,573,547,564,561,560,548,548,558,570,548,564,582,601,573,583,559,562,568,575,576,570,576,576,562,581,578,595,576,578,592,608,627,613,617,639,612,603,626,611,610,607,625,616,638,1108,1129,1093,1070,1080,1114,947,890,921,916,903,936,930,916,932,929,907,932,909,911,954,914,924,904,926,992,993,998,991,1001,992,1012,987,1008,990,995,1008,1008,958,997,1007,994,997,961,843,883,869,871,891,875,880,893,876,879,885,897,901,868,673,646,622,636,620,628,621,651,676,657,638,638,630,642,627,612,618,585,592,578,600,601,595,607,596,862,870,886,846,839,905,870,867,841,882,626,562,637,621,618,624,630,593,648,626,606,600,621,565,577,568,591,571,554,580,581,563,563,566,567,590,568,1087,1135,1130,1129,1183,1150,1198,952,940,924,925,942,904,946,945,927,941,914,920,1019,974,920,993,982,999,1000,961,974,923,918,902,932,929,927,905,908,918,917,895,888,899,902,918,903,939,903,899,901,908,912,901,921,975,968,982,993,993,1001,977,977,976,995,993,998,970,979,998,994,981,989,978,860,845,853,893,897,881,825,822,857,884,914,882,880,835,881,915,957,992,925,953,955,921,888,984,953,935,890,857,850,887,875,876,874,878,865,862,850,864,840,609,610,583,585,609,602,591,613,601,618,616,613,580,610,601,604,601,582,594,608,595,585,585,599,900,901,906,929,900,950,949,892,926,891,940,905,931,895,917,923,907,934,889,917,956,967,952,950,955,963,920,943,945,947,962,959,961,956,932,952,932,954,995,988,969,993,1021,1006,1008,883,888,896,879,876,872,874,881,890,880,886,796,748,769,761,767,754,783,769,748,764,767,760,739,763,737,752,745,751,928,897,927,929,954,911,956,923,907,948,905,912,912,922,922,905,912,938,920,917,932,931,904,911,935,946,932,988,965,962,949,988,953,964,966,939,969,974,968,964,999,1022,968,994,997,992,1006,973,995,1008,979,977,1001,994,992,994,987,849,829,833,838,868,851,846,847,852,832,876,858,844,835,831,855,829,660,634,621,648,876,822,794,850,835,872,807,819,812,858,841,822,971,996,981,997,990,1011,996,981,977,997,979,978,986,842,845,818,897,852,851,830,819,855,963,956,945,920,954,944,966,928,922,935,948,948,946,950,834,836,836,798,815,832,809,796,829,788,842,861,596,590,579,609,565,611,604,625,583,626,585,603,599,608,975,985,989,978,981,945,959,989,956,979,956,902,945,910,936,957,933,949,930,923,935,945,949,933,986,999,975,956,977,968,1000,980,982,984,965,883,897,884,889,874,884,882,878,899,888,704,714,725,697,700,712,732,727,706,721,718,692,705,709,686,605,597,611,562,605,595,584,568,610,581,597,603,609,600,599,587,590,591,605,589,585,506,514,511,539,519,516,500,526,502,520,531,532,534,508,525,502,523,513,495,531,569,565,563,592,562,577,564,555,570,577,570,557,590,560,580,654,637,624,657,638,641,637,657,643,634,670,658,663,645,671,641,652,662,654,652,645,640,653,633,658,653,640,647,856,839,830,825,808,822,820,827,833,831,805,892,854,873,837,874,852,878,899,887,874,842,865,872,861,872,876,937,885,895,907,895,876,885,904,875,887,920,879,899,843,803,775,804,800,797,836,797,774,778,818,797,824,523,495,565,521,518,522,514,525,510,497,510,492,500,536,512,482,545,585,581,586,576,570,582,575,576,572,571,577,595,585,580,592,605,611,639,599,606,623,619,607,594,607,616,608,627,597,601,937,908,947,937,946,962,933,955,948,977,934,963,988,947,919,906,906,929,908,663,632,700,635,665,710,636,650,664,650,690,712,671,556,565,558,570,552,561,568,562,584,586,536,559,558,562,578,579,577,560,564,603,588,592,573,588,578,591,574,582,581,586,582,581,579,573,906,892,927,925,894,885,877,939,889,874,930,887,918,938,922,884,924,933,928,931,916,934,898,907,985,971,973,964,959,957,984,985,991,973,988,970,995,992,982,886,893,865,837,841,854,855,900,986,992,1032,999,1016,1020,999,995,1009,977,982,1014,980,1024,1025,1011,989,1023,1015,1032,979,879,881,829,860,860,866,862,924,863,860,846,882,881,869,883,844,609,641,599,610,610,602,1205,1063,1133,1022,1070,1035,1090,1126,1185,1041,1055,917,910,927,897,885,927,922,938,924,625,627,565,641,653,595,629,627,625,636,630,628,580,594,568,599,563,584,567,582,577,565,570,582,583,580,583,580,586,593,573,598,573,649,641,613,608,624,637,603,601,588,593,592,600,592,599,595,595,608,1022,1013,1029,1014,999,1022,992,1011,917,936,926,935,931,921,920,948,956,926,941,942,947,947,946,918,905,912,926,931,907,941,946,932,926,921,908,910,907,900,896,907,885,912,909,922,915,908,899,911,905,920,931,939,943,951,949,941,939,942,957,940,854,811,861,837,836,858,857,783,846,827,828,802,839,840,846,865,820,843,850,873,830,1056,1061,1031,1065,1048,1092,1074,1061,1029,1067,1033,1050,1066,1075,1061,918,936,883,906,908,927,909,882,915,613,606,598,649,618,594,612,627,629,607,625,606,587,636,596,529,544,556,527,504,504,519,531,520,531,510,520,548,529,557,579,561,563,547,574,567,556,553,543,555,557,560,551,552,622,624,629,633,624,644,637,635,604,595,606,595,593,608,601,615,592,600,613,602,601,612,613,602,607,598,597,823,879,854,854,845,863,882,855,826,869,840,874,673,667,697,675,654,668,648,656,669,676,699,665,663,671,593,595,613,627,603,607,585,608,604,607,645,606,635,622,847,862,843,820,874,859,850,832,842,854,872,850,859,823,824,837,981,956,933,943,933,924,928,952,916,945,915,936,945,939,875,852,851,838,846,826,850,857,845,847,856,830,803,836,844,836,834,826,857,647,666,650,654,636,625,602,622,633,617,624,611,626,615,620,621,617,629,639,1087,1062,1065,1045,1052,1075,1080,1046,1053,1026,974,1066,1008,1024,1056,1046,897,916,885,870,864,895,881,878,895,897,913,903,879,891,909,903,878,921,895,905,896,901,916,907,898,914,904,588,624,581,594,613,602,599,581,591,600,627,616,596,631,604,602,605,599,618,624,569,575,620,569,566,567,565,563,563,591,553,572,589,580,592,584,556,579,564,590,574,948,934,983,963,955,949,970,927,1016,958,958,956,675,687,697,702,701,696,658,676,696,687,698,700,732,963,957,963,946,957,961,934,931,963,954,922,973,963,948,979,924,948,951,952,932,956,951,945,958,951,943,926,957,926,945,936,1023,1014,1009,996,1001,996,983,989,972,993,879,876,874,867,836,869,861,880,847,890,888,859,875,872,995,1033,1018,1006,981,1005,1007,1000,1021,1008,1016,1015,999,1019,1007,1001,1035,925,931,918,939,925,943,950,943,926,949,950,916,933,948,947,941,824,842,826,843,821,833,834,824,807,848,848,558,607,593,578,567,580,566,570,556,581,574,565,570,578,561,558,652,663,690,670,654,656,665,671,648,667,677,923,904,931,934,912,912,946,909,934,946,916,951,700,701,675,719,728,713,703,679,710,731,679,710,733,674,724,701,588,583,584,600,959,1029,1004,1009,983,1018,1022,1014,1000,989,860,863,879,883,875,902,851,864,900,902,895,891,898,1045,1020,1002,1022,1000,994,1018,1003,1019,1026,1025,1013,1030,1015,1021,998,866,890,867,851,883,835,879,859,898,862,961,972,966,951,978,955,967,967,962,960,962,964,941,959,976,950,958,965,964,960,958,949,982,955,954,891,891,872,857,878,873,867,858,859,849,844,841,831,834,835,825,833,845,850,847,829,827,651,666,678,673,660,679,638,673,695,670,700,660,646,662,687,809,792,809,778,791,779,814,821,786,794,792,779,621,602,611,608,630,652,612,609,614,640,625,634,619,529,524,522,518,521,516,523,533,552,535,547,521,536,512,516,520,512,550,618,578,565,592,563,577,590,594,605,588,564,562,911,935,897,921,908,927,903,889,914,911,902,930,899,941,934,991,986,982,953,971,975,938,957,983,965,969,984,965,969,982,829,828,843,822,809,826,826,835,836,830,818,818,830,833,851,854,884,910,869,871,863,897,874,880,873,909,871,898,884,779,785,810,770,800,792,811,734,846,795,828,789,781,812,811,772,814,811,825,756,557,545,531,557,546,587,543,586,584,594,604,577,604,591,606,617,616,586,597,619,613,611,607,598,613,607,609,607,613,593,608,584,596,576,600,603,587,596,610,588,576,546,570,564,981,1035,1047,1035,1039,1026,1067,1054,1045,1066,1017,1030,1035,1048,1056,1029,1065,1043,962,922,949,943,912,931,889,922,992,971,963,794,817,837,869,811,833,825,838,854,806,843,822,837,855,871,827,850,923,951,937,991,959,949,989,972,950,993,950,947,967,956,953,961,944,934,919,919,928,930,933,928,919,909,939,926,936,914,921,930,914,924,905,671,651,654,645,638,714,686,696,675,654,675,675,688,657,649,664,660,671,687,679,671,668,671,680,682,665,668,662,657,661,599,585,591,580,589,596,586,595,577,605,591,582,581,583,578,1009,988,958,1013,1008,948,1021,972,950,973,921,1008,971,942,963,928,875,907,895,879,896,883,900,920,900,869,895,854,693,662,643,672,669,672,684,688,648,697,649,636,648,681,669,681,691,705,732,695,708,696,720,690,711,731,687,704,710,726,694,928,958,950,953,962,967,930,944,973,975,956,946,966,960,930,953,937,717,724,728,732,714,710,717,739,702,713,707,806,805,832,823,822,816,830,845,802,806,793,815,819,751,761,743,769,767,764,769,755,769,773,783,760,772,747,766,761,776,765,605,617,624,618,598,626,601,584,618,610,613,502,507,504,528,500,528,521,505,527,525,521,510,502,504,510,519,509,501,508,509,496,517,510,492,529,519,514,506,503,484,561,570,575,572,587,582,585,598,577,579,562,600,586,576,587,586,607,601,610,609,602,583,577,597,592,619,579,1026,1001,1029,1004,993,1030,987,983,1029,1064,928,899,862,921,932,812,774,783,768,766,775,770,755,796,779,769,796,774,750,712,743,707,731,721,737,723,717,757,711,716,741,727,731,657,635,638,625,662,618,635,633,650,615,619,645,632,641,629,645,642,649,630,608,602,611,619,605,635,603,614,615,610,860,861,847,833,841,866,841,868,873,809,856,873,837,828,874,836,971,990,989,952,993,1010,1043,991,963,971,967,981,976,988,1003,1001,992,971,847,814,847,873,830,845,841,547,549,579,559,559,574,1098,1014,959,1017,1070,1012,1082,1069,1051,1083,1090,1066,975,1009,1074,985,870,883,915,872,910,883,874,854,900,599,587,629,600,626,611,598,604,611,601,587,573,610,612,583,1118,1122,1082,941,887,939,922,912,937,928,574,597,616,600,603,580,569,604,579,606,588,589,1015,1040,1045,1011,1010,1039,957,1019,1007,1070,1063,994,912,944,941,954,979,940,958,604,617,651,617,595,626,671,650,624,610,605,645,649,622,973,1010,1007,994,1001,1004,922,999,958,998,1007,1015,944,909,877,886,948,918,927,920,941,941,779,787,764,772,786,814,820,625,605,616,632,627,616,613,624,647,626,631,637,631,633,638,638,627,631,634,630,626,625,643,632,639,654,672,668,655,675,685,689,672,663,666,673,666,662,1081,1044,1066,1116,1071,1034,1078,1032,1054,1073,954,936,934,902,890,938,879,906,574,586,585,604,608,598,586,630,555,613,564,592,588,551,572,546,571,564,572,589,562,543,568,555,543,560,585,565,661,665,634,616,614,633,638,651,987,968,942,944,977,972,947,990,956,956,974,968,964,959,952,919,930,941,927,936,950,934,941,948,926,944,935,914,957,918,942,943,946,949,842,840,864,852,827,829,901,857,846,851,876,857,839,865,583,616,615,595,607,608,1051,1010,998,996,1067,1014,1040,1013,1043,1033,1050,1073,1033,1009,1038,1058,1032,1068,1014,957,950,959,918,979,930,947,930,958,922,902,942,918,944,932,941,830,804,838,824,826,839,839,832,806,833,833,847,1021,1051,1028,1040,1037,1022,1043,1033,1034,1047,1024,1036,1053,854,855,853,844,870,870,858,846,861,842,875,849,860,574,578,580,622,561,578,599,606,572,571,589,575,568,579,588,1042,1035,1038,1079,992,1070,1020,1007,1008,1007,1043,1028,1017,1056,1035,1050,1013,976,1006,1006,1001,1028,1013,1005,982,967,992,990,981,989,1012,988,808,816,799,854,806,783,771,814,784,808,790,848,896,558,536,549,532,556,548,568,526,526,556,549,543,544,582,551,557,582,541,559,540,556,550,567,573,608,591,573,618,579,594,589,596,600,606,612,599,586,599,623,581,608,588,587,574,987,979,972,1003,1029,959,968,951,959,945,1010,898,904,875,888,888,913,894,883,884,913,875,804,847,887,816,848,832,824,856,857,828,846,899,878,894,889,880,880,870,861,891,886,883,899,890,890,873,899,777,813,811,801,815,808,815,813,813,804,778,805,781,802,811,821,798,796,619,598,604,605,596,610,584,621,607,595,632,586,614,611,599,993,1057,1012,1063,1065,1078,1053,1010,1033,1040,1046,1041,1098,978,983,1023,816,861,893,906,886,886,856,869,891,901,879,860,873,871,866,824,644,645,657,637,640,676,640,619,622,662,636,670,651,655,630,641,610,656,659,651,656,931,897,896,922,941,881,897,919,709,731,694,712,731,723,701,700,720,710,737,721,723,758,730,783,801,781,779,781,799,807,805,781,801,795,804,800,791,827,803,1006,960,972,965,991,992,993,999,1001,993,961,965,1001,980,1016,869,864,906,877,895,867,894,862,832,930,937,957,946,964,937,959,935,978,917,973,963,918,908,933,942,942,937,937,932,928,937,946,924,944,941,943,938,844,816,810,839,801,802,839,785,837,798,778,835,799,824,598,591,600,587,581,594,580,600,606,605,587,596,601,588,597,592,606,557,568,556,563,588,577,547,568,546,566,556,567,565,552,564,648,632,637,653,655,638,628,649,683,648,624,630,619,636,627,617,620,639,618,628,626,614,614,626,996,975,976,952,937,984,984,1015,966,955,1009,976,955,960,974,968,977,986,984,986,987,978,956,958,980,989,993,944,943,974,959,908,830,836,857,825,861,822,861,837,568,535,513,516,522,532,525,552,528,565,527,543,560,604,598,578,615,580,586,600,609,571,585,568,578,589,600,593,572,582,1210,1199,1197,1154,1204,956,952,937,946,899,972,965,984,973,952,918,936,891,949,938,1003,988,989,996,1003,988,1011,991,1012,992,983,978,1003,972,869,837,806,853,821,807,848,828,820,833,827,836,833,878,913,893,872,892,854,914,885,983,967,932,971,947,973,974,961,998,968,972,951,953,941,837,868,849,864,854,836,850,835,844,843,851,830,845,630,661,671,630,657,650,630,683,683,653,862,826,843,857,840,847,834,890,860,840,887,699,737,746,717,734,948,964,920,950,935,945,935,939,918,934,933,924,951,932,939,954,925,951,940,936,907,924,926,960,942,993,984,978,1029,996,997,1019,990,992,1019,1001,1015,986,1000,992,1019,997,1006,993,981,990,856,884,881,848,895,842,883,903,897,856,869,856,876,876,888,852,871,866,874,873,848,878,866,959,976,942,927,924,920,940,937,956,941,945,950,950,956,958,948,964,937,826,788,787,788,816,781,786,809,779,642,637,624,670,647,587,603,609,619,993,686,699,724,664,681,701,661,656,673,663,679,673,691,690,668,716,951,975,942,941,947,927,933,913,899,896,919,901,912,889,907,901,910,927,917,929,911,944,899,915,922,928,910,928,926,900,926,903,930,911,871,889,892,857,883,873,863,868,860,861,865,871,891,881,858,845,623,633,580,643,610,628,647,683,657,647,641,635,645,630,661,599,614,609,608,606,894,854,887,879,833,975,907,856,866,882,891,853,908,892,872,878,902,861,861,813,780,770,797,795,784,785,800,773,801,787,796,814,803,805,598,595,608,613,607,615,592,587,585,604,579,603,584,592,588,664,682,653,662,670,668,659,662,676,664,694,657,662,667,665,676,862,861,865,883,884,890,856,907,883,915,893,870,886,872,689,638,658,682,629,664,648,624,676,625,649,573,613,587,580,593,581,572,594,579,586,577,580,574,579,570,598,578,589,600,978,952,963,957,979,947,963,981,713,667,710,719,693,714,715,721,715,700,969,961,1028,999,998,1013,1003,1026,996,1034,1004,993,989,1023,976,883,854,839,859,843,863,876,840,885,875,877,884,819,559,468,546,486,528,535,526,495,480,553,542,506,503,596,592,562,567,573,588,553,548,582,567,562,572,588,602,565,582,574,551,636,620,629,653,621,646,630,633,641,639,659,605,618,612,629,619,626,636,627,602,625,612,605,622,625,630,609,632,622,630,628,906,909,892,911,905,955,900,905,932,889,889,640,703,689,688,680,680,727,681,656,695,699,684,684,565,586,587,583,600,608,589,580,569,600,591,593,596,584,583,573,589,586,1109,1051,1088,1063,1116,1091,1121,1095,1054,1083,1102,967,974,983,991,956,965,981,955,953,965,985,984,964,893,919,926,893,962,909,901,913,916,944,927,939,948,924,945,930,936,948,925,939,938,937,948,923,935,964,942,940,949,937,950,941,965,924,956,950,964,944,952,840,829,648,649,637,649,636,635,649,877,847,876,878,848,855,865,870,866,867,881,850,865,836,880,899,863,626,655,673,618,655,636,651,649,700,647,644,663,633,572,584,578,563,578,567,563,578,567,575,636,655,650,651,654,624,668,640,650,654,643,632,622,615,589,626,630,632,589,602,616,608,608,594,613,616,602,617,1023,1022,1032,994,986,1009,1014,955,987,1013,989,986,1001,1025,984,1001,1005,1019,1026,1024,1005,994,974,1006,996,987,992,993,996,987,896,852,849,858,879,847,878,1056,1089,1071,1061,1074,1060,1070,1032,1046,1036,1059,1047,1034,951,904,952,913,936,930,927,939,940,954,929,909,951,930,1004,1012,993,985,984,988,999,972,1018,995,1013,970,998,961,938,931,925,981,908,929,924,932,919,936,931,956,799,777,817,795,806,808,784,793,802,793,800,805,795,640,623,664,634,678,635,650,638,677,650,640,649,658,648,647,689,682,640,623,826,850,858,824,808,828,828,836,821,822,840,838,940,949,920,936,956,965,954,948,948,978,980,979,974,964,941,978,973,978,987,953,754,769,762,785,759,772,809,757,796,551,579,534,574,540,565,577,571,564,574,567,575,570,566,561,573,560,565,595,556,573,610,597,616,598,620,598,995,987,944,976,989,965,957,977,950,973,988,678,694,677,701,679,705,679,687,734,675,733,686,691,671,701,654,703,752,688,708,712,727,692,694,714,710,692,714,723,700,717,545,578,615,580,595,586,592,615,573,617,593,608,525,555,557,523,550,552,546,568,540,518,556,536,567,865,896,870,892,873,842,883,892,864,802,937,920,949,954,957,945,941,960,962,983,937,962,944,969,962,981,924,897,873,891,848,866,860,877,852,858,850,830,847,822,802,806,814,804,813,812,831,824,827,806,810,822,736,727,717,705,717,728,722,738,737,718,736,721,731,723,722,727,747,749,728,765,628,644,642,633,655,627,627,655,652,644,649,650,650,658,658,861,852,848,863,888,849,879,815,885,870,840,858,873,849,869,898,824,772,775,771,748,776,738,776,782,751,761,757,773,750,773,778,767,776,764,725,741,735,740,732,741,743,756,742,731,751,743,623,644,613,649,621,623,639,635,649,651,620,636,643,643,636,608,612,646,625,822,825,835,821,808,823,802,795,813,821,820,806,830,800,902,975,928,938,935,905,949,946,927,945,925,924,938,943,917,941,943,923,931,945,953,956,939,986,946,972,965,980,991,969,956,973,966,971,980,982,844,834,829,818,853,823,843,853,854,845,843,819,836,838,827,615,587,602,647,643,640,587,608,594,634,615,599,607,611,600,614,634,619,639,664,628,654,628,642,620,649,633,1101,1114,1095,1068,1066,1155,1084,1066,1090,1101,1067,1081,1102,1055,1027,1109,1098,906,888,899,905,910,912,892,916,892,912,877,957,900,939,605,627,609,592,600,614,591,594,588,586,606,610,565,570,634,630,614,604,1081,1068,981,994,1046,1008,990,1005,1065,990,1040,931,955,964,979,945,950,921,919,963,964,941,955,984,966,978,778,767,778,780,789,798,792,775,797,796,784,782,766,798,787,784,792,792,797,771,604,621,619,613,601,589,624,574,1061,1013,1020,1079,1049,1053,1008,1043,1037,1020,1017,1033,1016,1010,1012,982,1021,1016,995,1025,1009,839,828,826,857,882,830,858,849,830,612,631,628,607,612,624,603,591,599,592,615,625,597,628,596,614,611,588,966,958,976,959,1001,993,1023,1019,1022,983,1000,1000,986,1020,985,1033,889,878,863,912,899,883,899,884,864,864,885,889,890,872,869,889,898,865,886,886,663,674,671,656,654,667,677,649,695,680,891,904,902,887,910,888,900,867,854,887,876,978,977,994,1005,973,964,973,973,978,977,986,1002,983,980,988,1026,880,909,886,901,895,903,863,881,885,878,899,889,909,862,892,911,871,892,879,858,885,892,1132,1101,1135,1133,1158,1153,1118,1186,968,993,966,987,964,998,1019,805,806,822,770,816,796,796,824,831,799,793,820,796,802,765,808,596,562,565,599,583,576,591,596,600,580,571,565,603,581,606,599,568,603,574,1161,1082,1077,1147,1187,1163,1083,1145,1074,1191,1154,1075,925,935,930,920,906,937,924,904,936,893,880,919,946,615,627,633,620,626,627,639,973,949,946,987,975,991,986,971,935,978,945,920,895,901,918,895,877,890,871,904,915,668,641,628,656,619,654,659,639,635,647,641,647,623,629,615,614,604,618,598,594,628,602,600,609,639,549,566,559,541,562,559,572,540,577,578,560,587,552,570,575,992,999,1045,929,1010,945,1001,1023,966,973,1010,994,1016,1006,1025,981,1006,1013,1009,981,1006,987,1011,988,985,856,895,859,864,878,858,865,868,874,841,883,883,866,852,878,869,876,881,859,892,841,616,610,582,579,621,592,614,598,585,584,574,598,626,585,569,538,553,547,557,567,546,553,870,872,867,911,871,889,868,858,883,848,941,966,965,973,949,947,980,952,954,970,954,973,952,967,957,959,944,979,990,988,990,991,1009,972,975,977,985,999,974,974,985,980,1007,972,990,854,840,858,871,880,870,854,859,891,871,893,837,872,868,911,853,863,890,862,765,808,793,783,824,783,777,781,798,792,779,624,669,645,650,648,650,678,637,670,618,636,620,1128,1049,1077,1031,1073,1023,973,1024,1031,1043,1061,1016,1104,1066,923,911,933,921,928,923,931,921,914,928,972,903,613,598,606,635,585,599,641,626,587,615,591,926,916,900,909,889,923,906,903,914,908,868,897,915,872,889,917,940,878,898,656,647,614,663,666,661,659,644,607,630,677,598,644,645,642,965,1012,962,951,950,972,972,948,980,984,981,992,1034,1005,936,947,1155,1150,1180,1141,1142,1166,1155,1135,1167,1161,1134,1159,924,930,957,939,933,941,941,948,917,922,949,926,951,912,909,909,961,916,941,984,974,949,921,960,932,960,962,961,919,907,968,932,915,891,942,922,924,914,917,922,920,929,945,918,931,919,952,932,934,910,850,866,829,830,837,839,827,861,835,831,849,861,591,624,650,641,622,631,656,1070,1073,1036,1075,1073,1059,1071,1098,1033,1070,1071,1076,1068,1078,1076,1019,1077,1091,903,893,939,943,934,914,914,893,882,910,934,672,670,667,674,662,667,684,656,680,680,695,655,665,680,660,685,945,930,942,946,916,890,947,954,925,963,951,944,928,933,948,935,754,763,765,749,970,952,960,952,937,932,953,957,977,973,978,1011,991,992,983,860,835,854,877,859,863,838,857,866,864,943,951,986,983,954,1038,952,985,987,1009,950,1008,991,983,1066,1008,932,966,947,927,932,942,960,945,945,915,929,949,906,935,969,945,916,984,940,949,952,998,961,958,971,949,965,960,964,959,964,956,964,947,941,939,804,843,835,800,787,829,820,831,833,823,834,785,796,579,601,607,599,593,595,603,585,591,662,694,686,680,680,680,679,685,712,698,670,668,695,677,654,661,673,655,658,667,674,655,668,666,660,655,671,905,884,886,888,893,895,888,882,943,918,916,869,887,898,926,946,968,940,963,947,947,946,925,957,946,885,860,865,868,855,852,850,864,832,883,857,795,779,830,790,773,804,759,765,791,794,789,765,788,1074,1053,1058,1047,1061,1063,1060,1054,1037,1074,1070,1055,1054,1061,1065,1074,1071,1065,964,950,948,922,964,965,954,939,929,919,954,933,933,952,944,932,948,965,944,935,964,935,942,768,788,778,792,815,803,766,772,764,767,763,784,777,751,597,626,618,624,622,601,593,573,607,605,589,565,578,554,559,558,571,576,537,566,552,569,569,577,952,954,992,965,980,947,954,995,968,943,994,728,699,692,735,738,763,767,732,752,678,737,756,879,843,836,825,845,869,829,839,844,861,714,720,721,721,738,717,722,731,735,713,731,724,702,963,902,990,932,962,917,894,911,909,943,905,953,951,906,931,935,929,871,942,917,900,877,879,879,876,868,881,871,870,877,887,689,717,706,703,701,715,696,693,700,686,697,742,661,686,697,688,688,716,703,966,1001,1003,986,960,1025,986,1005,987,978,947,954,996,968,964,1006,972,960,952,899,908,912,903,947,911,884,896,907,921,750,765,765,738,767,751,727,760,764,754,746,742,754,741,750,734,760,610,616,595,647,647,622,636,625,611,607,619,619,613,614,616,598,620,1098,1063,1085,1148,1175,1095,1100,1081,1079,1105,1064,1096,935,914,944,944,938,893,938,948,965,956,954,955,906,913,919,972,974,947,912,938,894,933,902,933,923,929,927,920,920,911,913,939,924,939,952,932,916,928,935,926,922,814,851,801,804,776,813,825,831,771,816,831,817,820,796,610,635,620,627,637,619,633,621,619,619,608,636,703,715,719,699,755,746,715,714,744,712,704,646,610,633,616,612,614,612,615,622,626,627,619,611,613,626,613,597,995,1000,979,1013,1022,1025,995,988,815,827,844,834,830,842,549,574,597,622,583,569,567,558,577,584,578,600,661,706,609,686,689,695,627,705,724,668,705,650,1036,1039,1012,1030,1041,1026,1045,1054,726,725,668,682,704,666,645,662,722,714,676,672,738,876,904,899,872,901,876,900,906,931,916,897,947,923,913,926,916,925,939,943,931,914,915,922,913,902,864,868,858,866,884,856,866,886,872,890,879,598,629,631,650,633,618,639,643,819,834,832,806,830,821,850,811,843,829,977,1005,985,1000,985,968,993,1023,969,1000,1009,988,992,993,877,902,942,911,889,954,972,956,964,952,980,955,975,965,954,961,981,966,944,675,655,629,653,648,630,631,685,948,987,970,983,998,957,964,974,1043,989,977,1056,936,991,1003,1026,941,1020,963,1016,996,1018,1003,1009,990,1051,1032,1008,1018,1034,1043,1033,985,816,781,791,623,588,607,591,601,594,602,592,596,584,613,851,860,868,840,849,865,841,857,870,835,828,839,625,666,640,666,660,646,617,644,622,646,634,626,660,629,578,562,581,566,592,568,569,573,599,576,596,581,569,591,595,580,873,878,862,839,855,847,841,843,822,740,747,766,763,758,744,739,739,755,741,761,746,774,748,621,627,616,655,613,657,643,652,638,664,657,631,639,678,654,809,798,812,790,781,813,811,782,789,788,764,793,802,797,795,762,808,796,775,1011,950,951,966,967,963,963,970,951,932,984,994,890,913,900,884,909,897,899,873,879,898,878,894,946,935,932,927,946,993,964,989,1008,942,985,951,952,931,943,942,954,988,974,955,956,937,959,962,932,964,959,921,952,953,950,937,894,861,830,887,878,853,875,612,592,610,620,609,591,654,588,619,635,601,974,955,967,975,1003,1004,969,983,956,976,987,969,1011,968,997,949,972,948,930,944,966,919,969,951,943,934,941,914,940,931,926,945,908,942,985,963,949,960,933,936,957,944,930,972,941,949,948,897,950,943,929,931,976,968,969,965,1051,1050,1048,1042,1040,1040,1042,1026,1050,1042,908,882,913,914,910,898,906,861,910,907,911,936,916,875,886,917,884,920,910,933,877,879,894,889,875,875,884,880,882,890,747,746,781,773,710,719,745,740,754,724,750,730,767,732,931,932,940,950,928,935,935,967,915,944,939,887,946,926,924,931,923,923,927,905,922,921,933,938,936,892,890,883,905,900,899,890,892,902,894,926,906,888,932,927,891,918,916,887,913,899,912,968,973,943,976,934,958,972,977,959,963,932,950,957,962,968,954,950,963,937,945,882,854,849,849,832,812,823,848,826,834,841,863,841,854,841,823,844,854,852,621,663,664,646,673,669,655,681,647,676,656,649,677,647,679,665,640,871,866,898,883,860,885,918,875,878,867,873,982,964,956,944,976,949,950,945,941,956,965,959,939,938,964,948,927,961,961,968,940,972,947,971,961,946,943,972,948,953,963,943,963,959,977,969,814,781,784,816,777,824,827,829,847,822,809,839,823,806,825,941,975,973,922,935,960,898,950,965,974,965,982,991,976,974,990,965,991,971,973,964,948,976,968,973,988,877,887,902,907,895,880,885,888,882,874,897,882,888,896,898,877,749,752,752,748,731,759,745,754,744,755,729,751,632,636,644,604,622,642,640,632,607,624,632,600,639,643,633,816,791,780,771,788,600,606,584,592,601,620,604,598,616,612,613,626,601,594,614,573,570,581,575,568,547,556,555,559,573,571,563,1143,1150,1138,1159,1153,1174,1120,1156,1181,1156,1108,1240,975,980,988,1032,1022,996,961,974,992,975,946,957,1007,1002,1009,949,971,985,962,975,981,963,968,964,985,971,821,823,801,843,813,817,818,977,958,964,968,934,957,917,946,915,898,914,906,892,864,882,902,911,905,906,893,924,909,872,852,864,882,902,842,890,862,865,875,871,884,858,896,649,624,661,624,636,619,680,634,664,623,959,974,977,986,1006,965,964,968,948,939,998,980,992,990,967,959,973,984,993,992,939,971,988,961,947,961,928,934,957,941,947,964,943,945,944,923,951,954,949,943,958,928,948,915,934,935,946,931,927,929,958,930,945,935,926,929,933,935,945,943,921,916,925,910,935,933,925,915,939,928,923,921,922,925,771,792,797,806,801,787,760,788,788,772,784,787,773,766,795,584,578,587,570,594,590,566,582,593,588,567,607,589,591,584,586,598,1183,1130,1171,1073,1195,1121,1092,1089,923,990,989,962,976,998,945,980,950,954,965,957,940,989,959,999,956,956,964,983,996,992,1005,996,982,988,993,991,965,1001,994,989,983,996,838,805,845,833,801,873,825,833,939,988,955,973,970,972,996,949,958,986,972,972,960,980,918,885,928,898,894,913,875,902,876,884,918,878,901,924,931,913,930,936,942,946,921,905,939,932,940,916,909,671,660,674,650,658,670,645,655,633,637,634,638,631,636,648,639,655,945,953,941,924,934,941,969,940,909,922,946,993,1000,1007,982,984,993,991,1002,1007,1008,1000,1020,980,989,991,1014,980,994,1024,981,1008,1040,982,876,890,841,867,897,905,880,882,898,901,1015,1001,1011,1001,992,1002,986,1004,1015,1002,993,904,910,877,903,876,895,897,905,882,884,874,897,919,911,897,878,911,847,651,634,641,630,620,639,662,655,648,663,669,650,666,625,640,631,623,641,659,635,636,642,676,649,610,621,607,618,598,615,594,639,616,614,569,605,613,600,1090,1060,1074,1096,1157,1052,1038,1121,1048,1070,1075,1047,1126,1054,1039,1084,1065,1122,1047,900,919,877,910,880,869,892,881,867,880,897,901,868,868,907,900,629,630,658,636,626,647,630,613,612,664,661,636,633,634,627,626,642,651,667,666,678,667,656,666,676,643,991,940,951,979,985,1003,949,931,959,931,916,912,951,931,934,927,928,952,923,943,890,879,882,879,872,891,881,853,891,898,876,899,908,903,916,919,917,918,904,917,898,906,944,922,933,927,934,911,930,949,931,942,928,828,830,812,792,834,843,845,844,831,816,805,826,845,834,793,812,831,573,594,591,593,569,606,576,575,577,604,568,581,590,579,575,618,597,576,579,598,578,603,580,581,1048,1075,1140,1056,1050,1069,1126,1059,1125,1104,1073,1101,1094,861,865,881,874,842,903,888,830,847,868,874,850,868,842,844,862,882,905,888,884,884,862,588,596,611,590,577,883,827,778,789,831,838,893,840,825,828,828,818,747,760,748,748,759,742,746,763,749,765,757,729,745,741,731,625,612,635,645,618,640,763,774,794,766,767,771,768,855,893,926,918,914,881,933,892,900,857,815,831,815,838,814,793,822,852,835,828,855,804,528,530,574,517,552,525,551,533,526,524,521,526,523,546,537,531,539,548,560,555,555,548,557,551,582,546,592,562,552,598,599,648,590,627,596,613,606,628,631,616,634,624,636,637,613,608,927,908,925,937,945,911,943,961,933,944,940,931,946,929,925,914,936,933,926,922,911,925,943,954,932,868,835,844,834,832,813,860,835,804,863,818,833,860,850,1008,920,936,896,955,866,940,859,910,967,952,946,881,944,938,908,931,940,940,951,930,939,938,923,931,839,824,821,841,830,840,839,849,835,845,831,831,845,833,843,840,835,825,829,826,833,622,616,631,647,599,624,622,645,631,609,654,619,623,596,633,624,612,805,792,784,803,817,803,813,782,834,796,787,942,901,940,933,919,928,930,898,929,976,862,871,865,869,844,841,569,584,553,575,589,552,533,534,545,532,518,536,538,509,541,522,547,551,509,539,571,1017,1099,1083,1146,1058,1052,1101,1084,1087,1060,1063,1074,1064,922,899,948,877,930,930,967,916,963,906,934,964,911,919,894,946,634,628,663,659,658,652,640,623,658,636,647,652,660,626,1012,1020,1008,1014,993,1005,991,992,977,993,1019,882,807,859,847,831,871,859,872,858,845,837,871,857,853,860,963,972,948,972,966,944,958,965,985,968,965,946,954,813,806,868,834,873,793,831,834,511,557,528,508,555,527,543,543,534,548,592,604,575,563,604,585,581,597,581,587,583,586,604,621,892,903,879,917,893,906,914,911,929,880,919,647,628,612,643,634,633,626,652,630,659,632,581,590,608,596,595,586,593,590,595,588,884,846,849,870,895,839,874,865,873,862,878,857,888,899,892,860,844,907,954,886,941,915,889,934,922,895,871,963,913,882,898,860,931,883,899,927,923,910,860,862,878,884,885,846,876,879,883,580,583,583,597,563,585,588,593,575,610,590,596,591,588,594,1065,1020,1047,1056,1039,1005,1023,1015,972,1065,1020,990,984,1000,994,1006,965,1041,1025,929,896,907,908,896,916,915,929,939,892,912,933,1009,1021,1013,1033,978,1032,1013,1017,1012,1047,812,816,796,789,819,844,833,832,647,660,661,661,670,673,700,641,660,671,675,680,648,656,666,653,674,665,686,681,681,676,691,686,679,685,653,692,670,678,704,703,688,1015,1010,986,1008,1027,996,965,1002,1013,1008,963,1004,994,969,983,989,984,1046,998,1037,999,997,991,990,1004,956,965,996,982,984,980,986,987,988,888,890,861,876,877,874,893,873,877,874,904,845,907,885,868,869,758,728,751,752,723,741,748,733,736,748,731,616,614,606,623,631,608,589,624,626,608,633,620,611,625,625,1030,1092,1102,1064,1061,1044,1065,1084,1057,1056,854,847,851,904,869,880,864,850,876,857,858,850,991,994,1026,998,987,994,1005,832,856,831,840,854,841,860,823,882,867,828,839,841,819,849,880,850,851,923,944,925,941,955,948,930,951,938,931,917,806,802,812,803,791,808,801,780,835,808,803,796,786,837,791,796,788,810,794,772,582,570,583,575,570,579,608,593,1023,990,1011,1025,1017,1017,1056,1079,988,959,1010,1010,1002,1014,1010,1009,1043,1029,1006,1025,1025,1023,873,843,887,876,886,895,843,879,837,826,850,840,870,880,845,886,573,553,546,572,565,556,558,546,569,559,548,546,553,546,540,563,561,615,625,644,617,605,601,623,627,614,635,606,627,640,617,601,622,622,634,613,603,626,603,618,586,595,612,629,610,606,603,624,621,613,1012,1040,1006,1051,1016,962,1045,993,980,1019,1019,1013,985,1003,1004,1001,1024,979,1004,1011,807,821,844,825,837,862,856,833,819,874,592,546,586,586,566,602,551,611,592,568,544,550,542,665,663,668,661,671,669,651,667,629,668,677,672,673,649,991,972,1006,1025,997,985,1002,992,1015,988,983,1053,969,997,1012,779,769,785,761,805,788,805,778,773,794,741,975,987,988,980,965,984,993,965,964,983,991,976,978,898,846,855,849,863,870,882,864,855,861,873,855,577,592,608,570,621,603,612,575,602,624,589,593,598,608,527,548,543,530,550,541,544,544,544,550,879,838,894,863,859,844,889,897,863,858,882,913,891,867,857,830,882,858,628,638,636,653,656,642,648,590,671,599,656,641,546,578,549,558,551,549,563,541,981,1024,1046,989,1029,980,985,1002,1017,997,982,999,1049,1008,961,973,964,898,871,866,851,925,887,879,888,901,869,904,914,896,866,887,933,913,910,917,896,898,924,889,849,911,843,876,854,863,863,878,858,883,874,873,861,892,863,848,870,863,857,865,958,929,947,949,938,917,960,949,919,940,961,940,949,935,959,926,854,821,781,790,787,808,814,826,801,756,802,787,833,820,814,822,796,548,540,532,552,566,571,557,582,583,584,566,541,556,553,548,571,581,549,538,602,598,593,594,586,591,603,573,582,581,615,610,600,612,579,572,590,627,586,574,599,1070,1145,1107,1083,1059,1129,1099,1082,1062,1109,1029,1119,1061,1083,1071,1075,923,941,947,926,922,917,922,942,892,909,926,945,900,944,882,950,891,952,617,616,624,641,648,599,625,612,629,604,630,629,618,604,628,613,646,958,979,951,998,975,1002,995,941,1006,971,1009,998,991,1029,977,972,968,977,862,883,868,876,871,905,872,883,903,878,861,876,877,642,618,632,605,640,622,624,631,610,1006,982,992,998,1046,1012,1010,985,998,1007,1004,1003,1018,1030,1024,1021,1021,1014,977,1024,1026,1004,1014,1019,1003,996,992,921,920,869,884,890,910,890,925,919,911,927,857,921,878,896,1003,997,1025,1034,1012,1016,995,997,1004,1007,1006,988,1018,1003,1030,853,866,879,884,889,875,862,871,893,885,835,880,892,882,894,1026,1027,990,1016,1007,1026,1030,1038,852,774,850,822,821,786,778,805,562,544,556,585,580,552,563,1056,1008,1012,1038,1029,1002,1020,1009,1056,1035,1008,1027,1031,1048,1010,1056,1038,1016,1047,1020,1055,1047,1028,1030,1029,1040,1030,1043,1070,1025,1029,1054,1011,1022,1037,889,891,890,856,887,894,899,919,883,911,897,907,859,915,881,881,1036,1019,1046,1019,1012,1030,1047,1027,1034,1041,1042,910,894,906,881,904,915,900,911,937,898,914,927,899,897,913,912,914,696,710,716,696,692,728,714,712,686,692,697,683,702,689,712,726,685,720,970,1002,1004,991,1043,1022,1027,1024,1000,1048,1066,861,879,898,837,855,848,840,855,869,875,857,852,847,849,878,852,653,642,657,642,632,635,616,642,621,640,640,637,628,822,805,838,815,830,812,811,809,840,824,818,831,812,836,1022,1009,1048,1023,1004,1029,1010,1010,1039,1019,1025,1021,1012,996,1036,1007,1049,928,926,919,954,932,926,900,943,937,920,934,938,920,921,927,936,954,833,823,832,818,842,828,835,826,813,833,834,825,840,788,782,771,784,765,797,756,783,635,632,623,628,624,621,616,618,602,638,611,601,611,613,1055,1062,1040,1031,1006,1063,1075,1028,1057,1032,1050,1079,1075,1013,865,827,821,826,843,876,819,859,871,776,826,837,885,830,859,870,855,831,1000,955,940,992,944,956,955,930,948,987,948,1058,1048,1070,1060,1063,1040,1060,1052,1050,864,825,872,891,877,873,864,832,910,903,879,853,860,858,867,864,868,848,873,871,945,964,957,964,971,1003,973,997,1015,1014,1016,964,1014,992,978,978,961,962,975,963,981,972,974,967,973,981,974,988,956,974,784,837,838,825,844,853,862,876,863,834,790,645,618,583,586,612,602,637,646,604,597,620,618,632,603,638,597,610,599,613,613,619,912,937,923,925,953,913,902,892,923,889,913,931,927,903,772,755,765,762,755,770,774,776,763,766,778,785,755,791,773,770,752,595,593,606,583,626,593,577,584,555,572,580,564,553,573,571,591,561,569,564,576,894,827,866,786,716,683,707,656,662,677,677,732,686,694,712,702,699,673,677,667,683,603,596,613,596,622,621,598,602,625,620,613,614,602,599,924,943,949,943,905,938,950,957,966,975,959,898,904,908,896,866,864,891,845,867,1006,1004,992,1024,979,1003,864,863,896,861,831,855,875,845,878,885,884,848,864,859,980,953,936,977,954,976,977,1008,1017,996,970,1002,982,1004,993,980,1003,1006,800,811,822,816,853,830,804,850,864,846,829,805,811,577,623,643,638,593,591,636,637,608,571,604,586,615,603,897,907,930,848,881,884,904,902,912,1001,1011,1007,1004,1019,980,1007,1003,862,834,857,854,888,855,837,850,839,1087,1116,1106,1084,1070,1060,1108,1086,1118,1069,1103,1078,1073,910,885,867,911,915,899,884,890,646,639,617,617,638,619,603,634,629,658,635,574,1017,1039,1007,997,1033,968,1073,1009,839,837,850,866,861,831,852,812,843,855,839,834,866,863,847,875,882,874,863,850,599,612,586,625,626,1039,1026,1036,1031,1083,1041,1026,1049,1030,1062,1052,868,859,880,879,876,873,856,849,870,877,887,855,872,965,951,951,968,972,956,930,949,946,963,969,810,789,838,787,807,790,777,830,797,775,792,763,809,794,787,780,807,586,611,604,598,611,584,598,594,603,603,612,617,586,614,622,880,853,821,836,847,892,881,825,855,887,858,829,860,879,752,756,776,747,759,758,763,753,772,753,742,580,585,606,586,591,579,588,578,582,586,594,587,571,601,612,582,607,533,536,526,522,527,555,547,534,520,530,528,544,536,511,533,531,521,1067,980,946,968,1017,1036,1010,997,1017,1007,961,1036,1021,900,852,878,891,855,900,871,884,899,870,871,881,885,898,884,901,929,958,973,936,928,918,962,957,897,912,978,976,908,920,939,899,944,944,925,951,923,916,931,924,935,952,916,941,933,918,932,931,942,929,782,812,813,808,811,805,800,797,814,811,798,827,958,920,924,925,915,868,949,930,959,960,956,975,971,982,758,815,834,831,838,867,806,792,847,827,834,826,839,837,792,838,804,849,819,831,850,948,936,993,984,932,917,952,941,967,979,946,976,966,946,975,973,943,990,1006,1001,993,1021,1003,1002,982,1003,969,1012,999,993,998,1003,852,893,914,899,895,901,908,906,902,886,877,899,886,902,816,799,829,823,808,812,814,835,821,818,815,831,805,809,817,822,977,994,965,981,966,951,959,968,976,985,952,981,976,964,866,830,828,832,822,873,845,858,882,820,825,859,858,849,847,807,851,959,975,972,986,989,938,985,1005,977,985,982,968,984,1009,998,983,997,995,1004,998,991,1014,1002,1005,995,1007,1019,1003,977,992,979,984,985,1000,828,833,845,842,851,834,828,869,839,824,846,827,828,816,932,941,917,930,899,968,939,942,978,960,953,969,953,973,981,963,979,968,963,974,970,966,981,958,973,966,873,874,863,882,870,863,879,873,881,646,643,662,646,650,646,649,646,631,628,653,671,671,660,650,664,684,676,668,685,662,632,586,589,620,618,605,596,593,602,585,578,585,617,597,590,602,981,956,939,961,961,1012,961,962,1002,998,981,994,965,996,972,973,998,985,968,981,842,817,804,550,560,547,551,526,534,546,517,581,541,570,626,619,624,627,633,616,618,627,607,643,632,646,622,608,611,624,636,630,624,632,621,637,627,623,640,641,677,688,663,668,703,694,671,702,711,693,680,656,640,632,647,652,642,660,659,658,652,654,630,843,781,833,857,817,812,802,849,678,655,675,675,666,684,636,675,637,691,687,669,688,674,674,603,613,600,617,631,606,618,612,602,613,604,606,603,867,935,896,911,877,897,909,903,915,925,857,900,900,899,868,909,894,920,893,713,673,724,682,692,711,690,688,687,692,686,709,687,546,595,572,600,557,549,565,588,585,552,563,577,570,562,544,544,556,538,572,579,565,536,544,545,553,537,560,661,629,639,648,647,637,643,650,650,651,656,674,660,648,665,658,651,654,656,648,1106,1067,1035,1150,1108,1111,1080,925,934,941,965,958,651,625,598,584,853,828,851,878,854,895,878,853,881,895,859,849,862,861,712,716,687,751,722,693,709,737,758,722,739,725,708,710,722,748,711,708,871,876,858,892,876,861,803,819,814,795,821,808,799,804,803,788,815,824,817,795,829,810,624,616,614,616,594,654,646,623,624,629,652,599,652,638,559,550,542,553,549,523,535,555,551,529,542,544,544,546,530,571,571,548,548,534,536,1030,1045,1031,1040,990,974,1014,973,1031,1005,999,992,987,1001,1013,988,892,881,884,881,861,888,892,881,866,890,872,877,880,894,920,696,680,665,689,676,670,706,694,670,668,690,598,577,592,604,600,564,607,595,593,596,632,610,590,595,604,597,506,510,536,524,509,524,504,533,532,505,529,517,520,505,495,586,574,611,582,618,575,595,559,553,588,587,599,589,606,717,720,710,718,706,708,712,693,699,696,715,687,704,700,691,622,617,624,617,599,603,615,623,630,601,630,632,615,621,607,620,906,858,940,886,927,889,902,916,915,895,883,922,897,899,870,900,884,841,874,847,860,838,852,839,849,862,848,857,863,865,866,864,841,843,831,868,939,951,921,905,930,945,889,937,942,923,905,921,943,936,938,951,879,863,859,858,858,863,853,870,824,870,875,852,856,921,914,921,918,915,907,910,907,897,924,908,919,889,734,769,769,768,738,793,785,752,727,917,967,987,949,950,966,916,927,937,959,967,936,955,943,970,977,947,999,982,992,976,948,966,975,963,876,831,861,858,869,870,888,856,847,895,833,883,864,883,613,596,598,610,582,575,597,573,562,594,594,608,552,605,1004,1024,966,999,1017,1007,1024,1000,1013,964,1039,845,835,830,849,782,816,841,812,817,814,844,819,843,603,612,645,651,628,625,616,669,628,643,604,623,612,621,635,620,645,652,1220,1213,1247,1201,1283,1199,1215,1223,1271,1208,1293,932,979,944,958,956,927,927,611,638,633,612,641,598,627,620,639,952,973,961,975,991,956,983,964,932,995,964,976,814,842,884,845,859,830,856,827,849,859,945,921,945,934,967,928,931,905,946,963,935,923,861,953,901,964,987,986,991,968,984,976,974,984,972,958,987,973,961,866,888,886,862,873,900,885,885,861,892,623,635,644,629,637,630,623,585,599,604,593,590,577,603,610,591,590,587,597,959,1008,1038,1028,1040,1013,985,995,1014,1016,1019,989,1019,1012,1041,903,888,905,906,907,895,886,889,905,875,874,885,916,876,900,851,828,871,839,849,833,840,851,823,796,794,795,762,806,792,807,817,813,802,781,786,812,789,602,625,602,612,616,612,624,633,607,644,613,609,617,606,1036,1055,1071,1044,1064,1041,1053,1046,1037,904,910,916,894,896,912,955,919,889,898,899,924,913,864,826,838,807,832,829,822,824,844,831,844,838,823,837,815,842,848,1000,991,988,996,993,987,979,1000,1000,1009,998,835,863,855,834,876,841,851,856,845,848,823,844,853,845,846,852,868,815,593,603,602,628,635,580,620,594,606,588,598,1035,1005,1015,1054,1030,1067,1005,1029,1039,989,1039,1040,1018,1037,870,913,914,881,916,901,927,885,894,930,897,883,896,860,908,856,1007,1023,1030,1035,1000,992,982,986,1020,976,1094,1059,1001,976,1046,1027,1022,1018,997,998,1018,1032,894,891,878,919,852,874,902,897,887,876,861,923,878,615,577,612,605,632,603,606,578,624,591,575,603,585,588,612,584,587,605,601,602,597,578,597,596,602,941,959,944,968,956,924,942,943,958,943,943,977,1015,998,1041,1014,1002,1001,1035,1036,1033,1004,836,849,818,788,826,825,823,805,834,814,549,576,569,611,583,573,556,555,577,593,1119,1080,1070,1061,1053,1045,1024,1050,1087,1091,1099,1077,1031,1099,1148,1114,1036,1146,1096,1000,982,997,936,959,974,972,1026,961,957,1010,969,1019,659,677,656,683,694,637,668,661,669,901,895,858,890,886,898,880,893,927,937,940,976,942,948,964,943,958,931,963,853,900,848,868,883,871,864,878,874,887,874,873,876,867,874,868,874,849,873,573,584,555,592,588,587,567,621,593,584,582,571,567,537,535,568,580,567,555,563,542,562,537,570,535,550,552,599,595,587,606,621,606,568,580,590,591,597,601,632,606,583,613,606,552,587,647,934,904,928,930,918,925,922,914,927,953,955,951,968,964,968,991,984,978,957,978,999,963,985,981,989,955,793,844,811,836,837,811,841,829,808,827,815,806,926,891,873,863,876,861,848,877,873,921,898,907,910,908,922,893,905,889,914,908,892,907,913,894,906,825,809,796,816,824,802,844,838,822,814,800,842,869,843,832,942,959,922,923,953,982,932,978,954,935,931,979,942,967,957,962,974,953,969,952,952,946,959,967,960,952,963,792,855,851,843,849,858,821,800,804,831,877,815,836,828,812,844,822,810,948,1020,968,873,895,960,966,964,996,966,943,956,935,943,937,923,929,978,962,976,951,961,959,966,959,956,955,967,957,800,833,837,829,831,835,858,836,852,832,831,833,626,627,604,630,621,628,627,635,618,623,615,641,609,612,616,643,801,763,791,801,798,806,813,791,820,798,817,813,780,803,655,617,609,601,610,615,600,611,623,593,592,620,607,606,609,614,602,566,567,552,545,579,583,558,555,552,575,553,563,580,565,561,561,571,1094,1106,1070,1085,1101,1054,1116,1133,1112,1121,1052,1050,1096,1091,1106,1098,1096,1165,915,880,899,908,627,658,671,691,669,702,650,678,636,667,658,670,658,657,653,652,807,833,833,822,863,859,810,818,821,813,851,852,811,836,820,859,832,824,819,714,712,713,713,703,718,690,706,709,701,735,709,687,685,704,700,684,699,909,935,939,943,906,936,942,913,943,931,919,931,927,915,911,970,993,972,975,976,973,965,981,968,985,983,980,974,968,986,973,983,803,835,832,839,826,812,834,799,791,835,802,834,874,919,903,955,968,973,968,964,969,891,822,835,818,836,781,805,817,815,848,879,849,853,809,928,920,916,980,964,931,981,949,921,940,938,964,943,972,954,976,967,961,977,979,964,862,835,821,824,812,839,836,827,844,812,821,821,835,837,824,859,848,844,609,618,575,616,600,626,582,594,603,624,606,591,1050,1039,1076,1043,1038,1034,995,1053,1024,1038,1014,1000,1090,1048,1028,1018,879,917,915,924,895,937,917,737,727,734,732,730,707,741,740,995,988,1020,1010,1007,975,989,852,846,853,825,858,819,854,848,831,842,846,838,827,863,613,599,616,593,597,606,609,601,599,609,614,610,613,1029,1075,1034,1017,1021,1046,1056,1037,1051,1063,1068,1072,1042,1031,1029,1090,1039,1059,1066,897,920,895,881,892,869,898,913,901,858,867,884,870,993,981,998,1000,982,988,975,962,984,977,997,1006,987,987,905,865,881,901,865,888,889,881,926,921,869,889,879,893,872,907,870,870,582,594,529,581,575,578,579,526,581,560,557,568,538,574,561,548,552,553,559,550,564,546,559,573,569,560,573,559,634,657,632,631,631,638,630,681,682,696,672,697,668,698,714,701,696,690,670,656,661,664,662,1018,1067,1056,1046,1077,1038,1091,1029,1015,1022,1038,1064,1058,911,903,913,882,897,880,913,904,892,901,893,903,888,876,898,615,589,612,670,630,607,613,644,625,613,587,615,609,604,604,608,590,605,580,624,616,610,608,612,610,601,619,624,594,622,616,644,605,620,607,609,636,631,603,611,622,609,614,639,625,615,596,617,607,590,608,624,604,600,623,595,591,626,618,580,599,584,600,578,593,591,589,592,595,597,587,574,592,594,572,573,573,570,594,565,570,580,571,568,578,550,815,765,798,771,839,839,797,793,832,851,831,809,783,813,796,806,849,601,667,644,644,613,661,615,640,608,640,620,619,662,538,546,551,528,529,514,544,540,530,528,533,539,1000,1030,1038,1045,1033,1020,1008,1025,1020,1074,947,913,932,975,922,920,900,912,935,950,942,918,915,935,950,896,841,883,878,860,880,867,846,878,888,890,862,896,874,870,875,634,638,613,602,614,608,1022,951,979,963,952,979,955,956,1001,985,966,966,967,951,1000,946,1013,865,869,893,913,871,882,907,870,1081,1091,1041,1046,1058,1048,1069,1102,1062,1082,1053,1058,952,928,931,963,943,930,961,951,945,936,943,962,921,927,986,960,998,965,990,976,980,986,980,985,979,1004,973,981,978,969,997,968,831,891,832,883,864,834,884,889,854,883,867,866,866,874,524,535,545,511,546,540,573,545,541,556,536,516,532,549,543,583,570,522,553,547,529,561,657,650,666,650,654,649,660,649,672,711,703,702,744,705,715,732,738,697,721,704,724,683,704,738,703,691,932,962,952,970,942,950,961,910,948,969,969,951,969,970,945,940,958,973,765,768,782,757,761,767,736,774,751,635,584,630,602,607,574,564,612,591,596,578,597,608,601,563,583,630,600,558,547,540,544,542,543,573,536,557,542,547,551,563,555,532,985,1002,1011,1011,960,941,1002,972,1008,996,997,1004,963,999,979,977,976,961,966,973,951,960,987,955,961,956,949,972,963,977,952,975,959,963,991,966,967,977,948,965,989,805,778,806,777,767,795,799,786,774,793,789,740,563,533,581,548,535,540,537,529,557,548,615,575,581,619,592,595,586,601,586,593,595,587,615,581,582,1002,975,969,958,929,950,954,931,962,941,940,982,963,964,946,971,983,971,991,939,982,940,945,974,988,967,984,974,965,954,970,952,826,813,794,817,801,834,814,817,828,834,815,822,796,822,844,828,669,613,642,624,618,617,598,634,614,603,616,605,708,772,746,761,740,730,724,773,737,746,743,769,728,760,767,733,720,758,750,736,751,742,740,744,753,747,727,723,745,726,752,739,751,640,619,663,631,646,636,648,625,656,650,635,655,616,652,619,630,631,631,661,652,578,599,579,586,588,569,597,569,593,588,594,594,575,580,598,572,600,597,593,576,571,588,581,582,587,576,593,569,586,884,915,914,909,912,890,912,907,913,905,915,854,897,972,999,965,1000,966,968,1007,972,978,980,1002,982,841,831,854,842,835,854,864,852,855,595,615,591,612,620,633,598,605,604,590,949,1055,1006,984,993,1032,1044,1055,985,1046,988,1023,1036,901,872,900,903,936,874,906,900,902,920,881,894,604,606,585,580,642,591,581,604,617,580,597,639,612,588,550,524,538,538,534,541,546,522,536,532,549,534,560,559,566,537,557,516,520,544,546,531,549,564,541,542,549,534,534,1045,1092,1092,1087,1053,1066,1042,1099,1054,1011,1012,1016,1057,917,920,898,933,916,892,913,916,922,942,921,934,597,626,622,608,602,598,626,624,617,609,609,644,583,596,576,569,571,553,565,575,566,586,561,568,587,591,582,564,557,592,550,1006,934,977,973,947,975,979,937,960,919,927,930,946,972,924,959,868,856,879,868,886,884,904,852,899,870,873,897,864,875,612,618,612,604,612,633,615,602,575,609,597,995,1048,1076,1022,1022,1039,1033,1036,1078,1093,1086,1056,929,942,938,928,912,944,908,907,918,937,930,932,921,1108,1103,1096,1117,1117,1105,1121,1109,1081,1123,1119,902,888,883,888,933,909,920,917,918,893,903,914,917,920,913,919,931,992,993,1013,968,977,995,982,985,1003,1008,983,1001,1011,869,880,922,875,894,879,879,877,878,883,881,857,869,658,638,660,657,667,664,654,642,674,672,673,673,654,674,874,877,858,903,853,917,907,882,880,875,903,882,886,879,869,874,878,796,813,801,774,779,796,787,799,822,801,803,772,797,817,814,817,811,800,803,606,618,620,623,608,612,641,605,621,621,628,618,605,1090,1087,1062,1099,1091,1074,1049,1028,1076,1064,964,920,964,946,934,976,954,948,952,954,931,932,953,955,947,877,865,849,852,844,852,872,854,866,847,839,993,1007,1008,1022,990,1020,977,988,1005,901,893,916,930,915,913,914,904,910,896,915,894,904,929,932,899,916,911,754,715,743,722,721,736,617,633,622,617,622,619,618,622,631,647,631,629,633,642,825,792,804,783,821,789,790,806,816,803,777,795,814,775,802,835,825,794,776,984,995,996,973,1010,860,825,868,849,861,841,831,853,855,859,849,850,864,840,862,836,601,607,618,607,610,571,616,981,1003,1003,977,964,1012,991,1022,1033,996,1026,848,889,876,861,884,878,859,845,856,875,969,984,1002,986,985,945,990,810,827,805,805,840,827,796,769,811,805,827,790,803,793,791,771,572,581,565,574,575,555,552,564,580,570,550,563,553,555,574,603,583,579,590,560,552,560,555,555,548,566,557,558,546,561,585,1109,1058,1118,1081,1115,1123,1086,1066,1078,1103,1090,1125,1143,1097,1106,1122,1068,1066,931,962,949,949,932,955,936,921,923,956,951,931,949,960,921,989,913,911,948,925,969,970,904,958,558,592,552,565,564,592,587,572,626,569,594,605,555,542,516,522,532,506,534,509,514,517,1056,999,1032,1101,1042,1054,1038,1027,1049,1039,1067,960,1013,981,991,947,1001,1007,1004,975,975,995,868,869,878,863,878,890,868,865,873,874,877,865,887,857,870,760,745,752,745,742,754,747,748,757,688,722,705,726,695,729,696,719,719,747,739,717,715,720,701,717,629,646,647,660,626,644,628,668,668,642,645,627,630,646,617,598,630,642,613,617,617,622,1088,1090,1112,1107,1000,1123,1057,1160,1128,1148,1096,1097,1083,929,924,939,912,890,928,907,898,946,873,936,907,934,633,627,621,624,609,620,617,639,615,618,624,628,611,617,598,625,1105,1150,1114,1082,1076,1112,1096,1104,1099,1080,1087,1120,1095,1086,1161,1134,1074,1047,936,958,1002,933,971,982,909,954,930,955,970,965,943,951,963,1068,1084,1084,1069,1047,1045,1043,1113,1065,1077,1081,1108,1069,1080,1097,1070,844,822,826,856,826,846,843,870,674,686,700,698,689,698,698,665,650,682,669,662,666,1069,1112,1048,1112,1111,1073,1114,1078,1075,1072,1054,816,855,888,856,859,807,852,847,881,873,849,829,856,819,777,856,872,824,588,563,558,557,586,607,586,590,565,581,565,585,1072,1036,1037,1011,1020,1015,994,1046,1040,1029,1035,1058,996,1043,1025,1008,1001,1030,988,989,1014,999,1005,916,906,902,921,930,889,882,911,910,924,939,908,897,903,893,899,630,607,639,619,618,612,616,598,610,612,661,639,602,575,563,573,574,571,591,568,559,572,581,569,556,564,575,533,545,543,529,559,552,576,1061,1066,997,1058,1084,1062,1035,1088,1073,1040,1104,1079,1116,1067,1014,1088,928,923,961,928,937,927,929,946,945,940,911,941,930,859,857,831,833,863,872,836,839,857,840,865,837,888,859,952,983,958,968,962,964,964,979,987,996,986,971,936,921,939,907,902,904,907,926,902,890,903,945,906,916,901,588,586,586,600,577,644,593,936,930,929,922,949,921,981,968,941,963,996,976,951,944,967,946,967,984,971,962,968,971,969,984,993,983,901,922,883,892,923,907,867,927,873,899,875,911,920,889,921,862,876,886,850,874,887,897,930,885,874,898,877,876,883,882,617,649,651,658,643,616,628,606,648,640,629,689,650,640,625,622,548,549,669,667,674,678,641,659,624,664,683,681,645,685,696,696,690,678,684,678,664,668,656,650,667,662,659,662,675,659,675,669,650,672,668,663,665,925,959,972,943,933,951,924,950,942,959,948,968,940,935,964,957,962,870,887,904,896,885,904,873,883,860,850,867,860,847,860,853,855,844,835,848,853,852,840,925,918,910,899,896,890,901,907,892,903,893,979,947,973,972,966,960,978,988,966,962,963,962,971,969,969,978,868,844,833,817,848,805,822,866,871,806,1091,1065,1044,1108,1081,1089,1125,1104,1068,1111,1068,1110,1116,1066,1102,1076,942,910,871,890,909,927,571,581,544,612,580,588,563,587,550,588,583,563,864,870,858,833,865,862,704,718,642,674,709,685,676,697,664,692,706,694,715,602,610,607,604,625,629,604,626,613,605,623,600,628,606,618,961,929,953,916,912,996,922,963,955,917,647,710,684,701,705,677,638,679,702,653,667,693,681,655,702,986,994,992,1000,1016,989,1030,1010,999,1046,991,1034,999,1002,1008,1000,876,869,863,841,862,870,887,876,884,865,1010,1001,1009,980,1001,979,1001,1013,991,1000,1024,999,1016,998,950,949,944,939,936,931,958,931,925,945,951,953,942,910,792,784,777,783,788,793,786,812,798,789,728,760,757,732,765,714,735,750,752,731,733,746,750,749,742,643,622,648,634,622,637,622,628,809,804,809,813,800,824,821,816,808,798,824,805,834,773,801,807,630,597,618,615,614,637,615,654,619,614,609,560,549,577,581,554,941,973,934,936,963,925,947,907,927,909,937,950,680,723,709,710,736,696,703,719,679,716,683,701,728,661,701,698,685,677,740,783,772,776,801,737,775,772,665,643,640,659,661,673,655,670,668,674,659,623,632,630,646,623,617,616,636,630,629,612,607,610,620,610,593,621,603,613,609,607,605,608,619,605,831,828,799,839,856,843,797,841,832,840,818,824,831,623,602,620,635,594,622,611,576,584,649,612,605,627,653,645,629,555,571,539,539,580,556,566,552,556,582,559,571,548,543,561,558,581,742,770,734,725,730,718,680,736,722,743,709,946,943,953,1036,1028,980,1020,997,1001,1032,1012,1035,1015,1033,1003,836,845,843,831,814,839,847,862,829,855,824,848,833,829,578,589,577,578,588,594,594,609,584,939,904,898,928,926,940,935,901,906,936,928,931,918,906,897,957,970,962,953,944,950,949,948,966,949,969,952,950,962,969,955,973,850,843,814,862,841,823,836,833,811,802,803,816,794,810,788,824,817,813,807,821,784,816,814,805,806,810,905,915,916,925,894,897,918,918,906,910,919,913,933,913,921,916,933,920,900,930,940,939,912,938,949,959,958,957,965,969,962,963,970,984,836,821,834,816,806,846,849,851,818,857,847,998,999,1004,989,998,999,1005,1002,988,982,1015,981,1026,1018,1025,995,1000,984,866,912,896,890,871,908,877,873,896,898,891,874,896,898,957,959,993,969,998,993,1000,987,981,1001,984,874,870,860,854,844,872,884,869,861,880,866,889,870,852,858,866,853,876,858,852,862,779,798,812,765,773,776,764,761,767,795,782,788,787,609,593,586,614,593,624,623,618,619,621,619,608,620,602,611,598,619,590,610,601,622,620,615,594,605,602,604,612,602,584,592,598,593,594,608,610,592,610,598,915,972,943,962,949,939,933,950,962,1005,989,1006,993,984,992,989,1022,975,1001,1003,1000,1027,991,1001,1006,870,894,891,840,836,842,877,842,891,888,559,583,585,594,617,576,589,584,621,650,606,565,617,554,534,591,568,553,578,578,577,568,568,590,558,565,585,569,596,578,574,593,583,909,889,901,921,936,903,900,886,939,905,897,918,872,871,1051,1048,1038,1042,1020,1051,1035,1068,1034,1043,1058,1043,1053,1039,1044,1054,871,861,883,908,905,908,876,862,886,895,872,903,899,856,854,877,935,858,909,881,884,896,997,1006,982,981,989,983,994,963,981,951,971,995,979,973,980,986,984,827,859,838,842,852,868,843,849,840,859,869,828,837,856,826,839,1007,1022,1038,1006,1029,1003,1002,1015,1030,934,906,945,938,952,902,910,946,943,908,913,938,941,937,927,947,973,929,930,923,920,932,935,707,720,721,707,701,698,729,744,626,624,613,623,597,635,611,635,610,644,616,618,788,821,812,818,788,822,811,828,815,824,797,787,832,798,794,824,787,780,785,817,675,659,674,655,708,623,652,683,648,648,667,655,649,576,584,582,585,574,588,575,604,572,574,603,568,616,579,558,575,582,706,700,706,709,747,688,702,701,703,693,713,707,717,712,704,720,692,705,702,713,742,694,704,665,671,662,672,666,661,692,678,684,687,658,652,680,670,675,663,948,907,910,951,942,955,945,955,978,966,951,945,932,933,956,721,685,678,647,711,672,713,693,737,700,712,681,680,684,666,703,702,723,722,802,837,810,801,809,828,796,829,1012,980,1000,994,1006,1001,991,997,1007,981,999,993,988,1013,946,956,961,929,951,982,975,956,952,864,866,864,830,806,830,961,953,957,930,968,955,957,938,945,964,945,956,945,961,939,960,957,953,952,841,817,820,836,836,848,835,841,589,600,571,592,624,583,588,611,599,600,600,620,591,984,955,1009,1011,1035,957,1016,987,970,989,976,985,1024,981,976,977,995,993,985,990,972,1011,999,825,798,843,822,808,850,856,823,839,837,807,844,824,810,853,623,658,631,608,583,640,633,633,620,618,631,612,616,625,626,603,616,593,605,624,623,597,607,603,599,599,607,1008,980,1030,1019,1019,1071,990,966,985,1003,1004,955,887,915,880,909,864,901,913,898,868,901,943,884,823,823,840,803,831,815,807,792,793,815,799,828,807,803,810,811,835,802,793,798,907,920,924,931,956,926,951,954,926,908,916,907,926,941,923,928,934,908,935,913,926,946,930,925,921,920,910,925,922,997,1007,992,981,1009,987,1000,993,818,843,851,840,831,861,836,819,842,852,823,844,845,829,807,852,819,1006,984,994,1060,1024,1008,1046,1033,1017,1028,943,925,928,911,918,935,914,913,917,916,912,918,898,622,586,593,624,611,598,600,568,615,550,563,550,554,557,560,557,566,543,552,576,547,545,558,550,558,1019,1081,1054,998,1065,1020,1034,1044,1010,1043,1058,1003,1045,1007,918,926,917,902,919,924,915,908,881,924,727,707,794,742,707,739,715,762,729,713,748,914,898,894,917,907,911,909,895,918,907,894,890,897,910,909,867,875,859,885,866,886,879,952,964,936,945,933,925,940,959,925,931,971,967,952,928,951,820,816,840,840,855,829,824,815,819,825,809,826,802,600,631,612,629,592,610,581,639,603,628,622,1105,1022,1060,1010,1026,1057,1033,1006,1011,998,1023,1042,1014,999,1038,869,903,908,895,932,891,929,902,911,918,911,862,911,618,652,614,638,657,615,608,608,618,608,616,617,616,589,592,605,597,618,605,598,590,586,611,625,616,616,607,601,599,608,615,608,953,957,976,991,961,957,946,947,934,985,978,961,973,969,963,974,976,958,947,943,967,977,1001,982,833,864,849,843,847,855,845,845,861,860,837,833,851,880,866,863,851,830,857,570,594,619,625,628,609,593,588,608,582,581,572,595,609,608,635,499,514,499,495,529,488,523,521,492,514,520,532,526,506,519,553,551,540,507,510,547,577,548,565,533,570,540,554,650,633,676,650,654,668,635,641,634,653,651,655,661,659,644,667,635,652,645,661,656,669,655,1020,990,976,991,1011,1019,1009,1018,1030,1010,1054,1008,1004,1026,978,1017,990,1002,1011,999,1003,1015,1040,992,1024,769,837,831,842,809,859,820,812,823,791,854,807,578,525,536,567,549,519,539,559,543,533,533,543,1137,1033,1132,1071,1042,1095,1111,1096,1148,1063,1097,945,977,962,981,988,984,966,965,979,950,968,970,957,1000,938,1017,962,971,1070,1084,1031,1098,1057,1075,1038,1064,1101,1034,1046,1025,1019,1017,1005,1013,996,1022,1011,1031,1007,1016,1023,1029,1014,1022,1019,884,872,833,840,850,876,863,840,877,862,868,849,847,885,856,861,880,876,616,632,616,649,623,625,614,638,610,630,613,638,646,628,617,628,605,628,852,834,800,834,843,818,828,841,846,694,662,690,697,698,677,708,691,668,688,673,848,865,850,848,869,832,880,860,833,1001,1022,990,994,985,992,1001,970,987,980,970,1000,1004,993,997,998,834,847,859,855,868,865,874,871,852,831,843,851,828,855,849,879,915,952,944,980,927,919,937,989,1006,983,988,982,1010,1002,1018,986,984,985,835,845,817,839,872,879,839,874,852,1001,1003,993,1023,1000,992,973,999,988,982,1025,982,1000,982,986,975,997,1007,994,990,815,836,768,805,806,823,843,795,797,808,795,579,619,617,645,624,619,606,600,627,627,602,621,630,628,636,612,641,610,619,958,972,994,977,1009,980,990,1019,1004,989,994,993,963,997,775,775,784,797,771,769,797,781,787,780,784,951,961,955,938,966,948,950,959,945,948,936,947,934,953,946,950,938,970,946,961,951,950,963,934,953,958,956,955,967,933,965,938,880,890,867,878,876,886,873,872,905,891,869,864,881,806,825,815,827,834,793,837,836,793,784,818,837,801,791,843,816,677,672,636,706,659,782,818,833,856,844,831,822,855,986,1014,997,963,1002,991,974,974,986,983,979,994,984,992,976,1009,988,990,997,972,874,815,848,852,817,863,815,838,831,872,962,944,972,967,971,955,967,983,938,979,980,983,971,964,966,952,972,949,838,862,871,872,843,873,855,871,874,865,865,1100,1052,1052,1044,1075,1049,1040,1091,1046,1050,874,878,899,882,879,853,864,880,867,862,879,876,877,649,642,614,620,664,625,614,791,791,801,783,769,809,789,780,782,791,636,657,654,624,643,670,679,640,632,635,654,668,632,614,589,600,588,598,606,598,600,602,593,621,602,606,600,1135,1132,1132,1119,1129,1040,1095,1084,1143,1141,1127,1122,1118,955,942,949,905,930,976,934,945,945,931,942,941,942,939,958,944,961,961,1010,989,994,971,998,973,995,968,834,864,854,881,868,850,854,865,853,873,865,867,869,865,641,626,614,621,623,1090,1157,1135,1150,1148,1144,1187,1165,1200,1107,1134,1099,1175,1102,1153,1134,1130,1183,877,877,903,845,910,878,867,876,901,641,670,658,671,662,652,652,660,640,650,675,650,641,694,829,811,826,834,806,803,807,818,808,821,822,794,830,826,727,729,713,734,727,722,733,730,724,730,750,727,726,581,606,587,604,593,614,607,603,586,598,589,583,518,515,510,525,502,499,526,526,505,476,496,502,519,516,503,521,506,496,494,534,539,507,530,536,507,499,521,533,525,532,604,633,624,651,619,601,620,631,624,627,632,634,642,648,615,633,614,987,969,957,991,943,993,1004,963,977,956,955,868,797,806,833,563,589,624,575,575,578,576,581,583,577,585,981,928,955,931,943,933,940,948,758,761,747,776,781,778,789,765,750,788,948,921,947,943,963,934,942,926,927,928,929,938,880,893,881,903,895,893,891,913,880,954,926,941,954,963,946,948,965,947,934,939,951,963,861,851,857,869,859,853,825,838,867,859,853,839,873,862,864,882,884,903,940,949,878,930,950,896,895,941,940,924,926,1000,906,956,979,945,936,983,969,944,971,849,893,837,870,871,878,874,871,881,582,625,617,589,631,631,605,617,1097,1087,1086,1105,1053,1102,1087,1124,1062,1063,1108,1072,1087,950,960,979,962,963,982,1002,932,956,958,977,990,969,914,896,887,871,874,892,894,903,886,886,887,886,885,866,712,726,717,710,698,713,700,725,882,906,871,866,870,916,878,896,892,880,886,834,838,843,862,847,835,838,839,860,838,846,653,656,644,647,666,652,676,658,673,663,813,872,821,823,833,824,831,836,852,868,880,848,736,716,731,719,746,728,725,726,710,696,739,707,697,966,967,964,938,924,909,940,940,899,904,945,962,903,977,964,988,959,969,947,951,984,955,993,966,1000,990,973,1009,1003,1001,995,1004,1016,1000,1018,989,975,992,892,884,836,902,898,848,873,879,895,901,832,844,852,878,589,573,594,627,580,615,588,598,615,615,581,639,596,619,623,605,628,607,626,601,630,651,588,1070,1103,1116,1070,1074,1098,1086,1156,1091,1150,1071,1091,1083,1082,1068,1099,922,938,923,899,944,902,902,922,923,944,923,934,950,924,937,943,1031,1052,1034,1045,1057,1059,1051,1029,1058,1029,1052,1068,824,879,824,865,855,898,837,852,802,843,534,587,552,553,554,564,535,544,538,541,549,534,539,545,564,505,536,539,543,545,661,641,655,666,651,677,651,658,737,754,744,759,764,719,744,749,713,735,718,711,705,721,747,768,742,642,652,633,665,644,645,655,656,655,649,636,1032,1043,1023,1026,1064,1024,1060,1021,1044,1006,1047,923,897,887,915,897,903,911,874,881,897,887,864,890,931,1015,974,970,1032,1042,990,988,983,1032,1020,998,994,1001,1120,1101,1086,1074,1116,1085,1134,1106,1113,1120,1099,940,946,937,955,930,947,947,898,922,939,951,924,953,916,937,956,975,970,944,989,941,898,931,976,947,947,897,879,883,921,896,882,890,885,887,892,888,884,887,910,859,930,872,971,1004,996,991,993,1005,986,973,961,993,998,891,874,842,808,843,820,849,856,838,841,883,984,953,995,1002,911,920,999,981,975,968,960,959,962,971,972,960,828,836,853,835,845,829,828,853,843,860,873,809,863,859,869,874,891,878,876,886,867,873,789,801,793,779,752,807,798,786,780,769,773,782,790,792,796,799,618,618,615,646,622,646,645,631,600,619,632,642,619,616,1054,1041,1025,1025,1110,1022,1025,1047,1053,1042,1016,1047,875,860,872,839,867,850,858,877,845,872,630,635,607,593,616,631,611,593,619,605,634,599,612,592,604,605,1050,1053,1032,1062,1060,1053,1107,1096,1047,1053,1053,1080,1045,1079,1055,923,895,904,938,942,882,913,882,866,895,958,987,971,932,967,1040,961,1008,957,955,990,990,989,1012,975,1006,997,877,890,891,889,895,905,894,886,880,899,911,862,898,658,635,693,705,669,670,667,667,669,694,653,656,606,613,608,615,584,606,593,593,609,603,589,588,599,604,589,594,592,611,1019,1072,1066,1087,1057,1080,1036,1111,1024,976,1006,1014,944,930,936,949,979,967,965,955,786,828,791,791,797,826,804,779,783,794,797,797,802,654,628,644,628,628,644,618,686,617,614,590,626,600,594,602,606,605,599,587,597,610,600,696,720,701,727,696,715,710,695,696,686,687,701,684,703,671,690,679,693,684,609,603,604,609,607,606,599,596,589,601,601,603,625,838,851,842,859,858,832,851,846,841,835,839,860,858,853,832,837,870,849,637,642,658,657,672,689,680,822,860,823,890,855,832,832,798,870,860,851,891,831,858,831,888,792,849,810,670,665,710,697,701,701,677,691,707,688,711,609,610,620,626,630,609,618,614,1030,1012,1037,1024,1011,1089,1010,1030,1012,1024,1091,1038,1028,1066,1022,1011,1038,927,908,902,908,944,898,936,910,855,932,949,893,915,934,855,839,836,828,842,842,840,832,860,813,830,845,972,959,955,945,973,968,949,932,919,916,919,923,915,900,933,920,922,902,940,915,929,939,964,938,921,927,937,953,954,933,941,930,946,931,939,924,933,930,939,933,949,935,927,939,922,945,943,948,932,942,940,951,929,947,946,946,931,951,937,943,935,865,820,844,817,853,814,835,831,849,848,839,836,798,828,851,1008,1030,1019,1027,1014,1043,1036,1001,1025,1015,1012,1016,1017,1023,893,895,917,877,915,915,903,889,906,896,914,916,900,883,899,917,905,905,921,899,896,881,902,1052,1064,1074,1071,1074,1069,1075,1063,1075,1097,895,922,892,893,925,919,901,912,910,878,906,914,899,880,885,880,897,910,998,1018,1007,1019,995,1020,1012,987,999,1010,1018,1026,839,849,838,823,831,829,870,867,836,850,832,850,883,837,950,968,937,930,934,1007,940,913,1000,957,958,957,890,923,909,932,955,995,983,992,992,995,988,998,993,974,993,982,973,988,971,966,1000,1008,999,982,1004,1012,988,1009,1024,1011,1000,1027,1004,1021,997,1006,993,998,816,809,795,809,823,809,836,812,819,802,806,836,799,845,805,816,829,816,784,825,805,564,549,552,565,551,568,565,554,582,547,560,545,548,553,975,1004,986,991,997,990,964,1004,955,981,960,947,969,949,923,956,956,949,935,953,958,930,922,943,952,997,1017,984,998,998,986,999,960,1000,883,887,888,899,897,871,885,902,926,890,907,861,918,583,626,611,620,616,628,586,622,644,642,607,610,599,616,607,622,591,626,617,587,567,609,603,611,590,605,590,580,572,584,596,574,611,648,617,602,624,632,633,619,625,604,617,617,626,617,622,609,608,860,859,855,868,847,869,866,913,841,850,633,612,670,642,627,621,640,639,648,646,631,608,623,653,650,621,562,560,566,565,573,1047,995,1058,1006,1013,1002,1000,984,1025,977,948,982,1007,991,682,664,692,680,666,680,699,688,1003,1027,1021,988,1045,1068,969,992,982,1010,1032,1029,1043,1006,1008,1023,991,1004,1011,1021,1007,1001,1017,1030,1052,879,835,872,851,831,883,864,852,885,880,863,861,848,893,846,850,828,849,607,621,581,583,594,616,601,602,597,625,633,625,612,621,605,604,590,642,643,638,627,660,677,669,631,688,667,651,677,615,661,654,668,649,662,660,652,673,645,929,939,927,912,923,920,939,927,937,948,954,943,937,936,928,807,810,796,821,821,811,836,754,749,779,733,743,752,603,604,594,601,626,591,590,604,597,583,594,598,585,602,612,588,608,920,973,900,919,899,930,936,913,957,939,945,937,944,930,936,979,933,939,947,971,949,965,962,974,999,962,956,988,978,994,958,999,992,977,983,970,946,980,972,780,795,784,769,794,797,839,779,777,821,776,600,565,581,594,584,563,577,596,1079,1053,1099,1093,1033,1065,1041,1097,1057,1130,1050,1045,1070,1058,1104,1041,953,951,953,971,950,964,945,948,933,991,981,952,955,963,937,969,825,811,809,813,824,828,803,812,845,816,627,584,622,613,623,587,582,604,607,604,642,629,488,507,510,508,490,519,517,518,508,507,535,515,581,554,572,580,561,610,579,581,570,884,867,922,879,864,882,912,914,932,949,958,959,973,954,960,959,987,943,965,958,945,991,964,952,946,935,972,862,873,847,872,886,841,871,823,861,850,900,876,852,850,915,608,554,595,595,573,583,601,557,586,566,1028,1006,1023,1026,1012,1015,1005,1013,1011,990,985,1027,917,909,950,914,925,904,927,900,903,937,939,920,937,1010,1004,983,1019,995,993,1012,1027,1016,1013,980,1006,878,858,885,864,885,868,903,853,895,864,874,892,889,888,883,888,892,889,884,886,871,895,880,875,887,768,755,804,793,783,759,818,767,773,781,786,596,593,601,576,595,620,613,562,616,618,629,571,595,561,565,593,586,588,580,585,567,591,576,577,861,841,881,906,844,861,902,875,891,809,846,744,756,756,763,762,756,770,748,749,747,737,745,753,583,585,584,594,596,563,553,531,537,559,535,529,518,545,524,546,531,553,534,936,1039,1010,969,995,963,1049,1011,1033,1006,961,993,925,957,955,959,995,974,976,985,979,941,936,977,1012,980,972,920,985,982,1004,968,954,940,1006,594,611,587,578,609,579,551,578,604,587,567,583,552,596,578,570,565,594,576,584,583,565,582,581,632,637,599,589,612,615,615,606,619,612,612,599,887,929,905,894,913,915,925,911,904,898,895,1011,1003,1005,1001,991,1005,1006,1009,1011,1005,1036,992,1015,1020,1006,986,1010,985,1000,979,1001,985,1009,1014,1014,1015,1000,999,975,1023,1017,873,845,850,846,848,866,881,839,839,840,845,882,871,837,843,846,630,593,613,652,589,614,572,588,620,608,577,621,563,625,572,555,545,559,566,549,577,540,547,544,547,551,534,560,556,779,843,869,860,841,858,900,870,835,869,845,845,828,686,711,674,685,686,688,689,629,654,625,621,634,640,642,639,645,634,656,650,655,633,639,624,629,637,644,845,843,860,845,839,871,850,890,846,856,875,834,863,856,860,840,911,888,893,881,894,884,886,912,884,872,898,883,917,961,951,939,937,929,931,933,948,934,939,958,964,939,938,902,939,948,964,937,931,826,850,841,849,841,841,843,838,849,857,853,847,858,853,863,856,831,630,619,621,654,647,636,634,594,649,623,626,624,609,655,610,651,600,613,652,830,803,792,818,799,806,810,811,792,811,816,832,817,785,1016,934,991,935,976,953,966,991,965,951,950,974,986,933,962,856,861,857,824,831,852,865,613,618,633,600,634,616,629,588,626,609,602,610,642,607,618,638,617,598,609,1020,995,967,986,1004,1023,997,983,1045,995,994,1001,970,998,979,1010,978,893,914,910,894,910,894,929,923,911,904,932,906,889,901,690,696,658,715,689,705,716,682,691,688,645,698,724,661,612,615,617,626,620,638,611,606,613,595,606,581,641,625,638,598,644,625,981,978,940,975,945,913,971,992,964,952,958,970,1019,1036,1001,1019,1007,991,1045,1022,1053,1002,1033,1017,1015,883,851,870,865,832,848,866,887,898,843,825,859,870,842,1069,1056,1042,1044,1040,1078,1030,1034,1024,1024,995,1033,1046,996,1016,1021,1017,1004,998,991,973,997,1013,996,1003,980,1032,1018,1026,855,867,834,869,858,858,826,866,830,857,831,865,856,859,857,978,988,1015,1002,1021,995,1006,1030,993,1035,1018,1017,1023,993,1008,799,851,790,813,744,817,798,784,777,583,619,612,611,590,630,625,591,608,1113,1196,1146,1101,1137,1154,1093,1137,1094,1112,1119,1109,1077,971,946,1003,928,962,962,945,937,975,970,989,957,910,966,950,946,975,952,613,613,626,610,580,594,579,919,921,945,899,862,899,889,891,885,921,899,882,921,961,917,921,953,934,961,966,941,938,961,909,858,835,860,892,844,869,885,874,907,884,864,824,862,857,1138,1124,1099,1149,1137,1139,1155,1154,1146,1148,1135,1120,1107,1128,1151,864,900,951,905,910,918,890,895,588,582,633,587,564,603,599,603,592,584,588,609,602,663,630,1146,1173,1105,1148,1179,945,899,927,941,913,947,953,889,930,909,941,889,884,930,912,922,917,925,954,927,638,698,656,644,620,648,651,637,667,650,647,654,703,703,718,737,734,744,737,693,737,746,747,728,743,730,738,734,740,733,711,737,729,725,655,666,662,640,643,650,637,650,633,631,659,639,603,591,587,617,601,613,589,609,618,596,620,630,620,573,617,612,593,599,601,931,947,987,972,961,949,905,938,915,935,941,919,908,918,908,948,894,874,891,900,917,930,907,934,901,933,906,884,919,928,915,935,910,912,896,922,921,926,924,933,912,925,966,970,988,984,983,985,983,864,858,881,855,891,842,863,844,893,838,849,899,865,844,850,611,625,661,606,604,625,604,622,656,636,639,616,599,582,563,568,564,557,577,560,569,573,555,565,580,571,563,602,611,627,612,608,599,624,638,614,619,612,610,616,594,598,622,617,591,607,594,631,599,616,627,891,911,867,838,869,906,619,648,644,646,671,663,642,631,634,656,651,643,629,628,632,590,668,619,649,613,541,574,565,570,563,560,555,554,570,563,577,565,569,891,912,892,867,934,895,871,920,878,948,918,939,880,898,937,934,931,922,920,909,932,899,904,934,935,942,932,961,955,919,949,951,954,942,906,933,941,852,833,846,869,873,870,863,825,866,862,887,845,836,686,672,684,687,689,703,683,944,950,902,994,942,940,970,964,1006,926,946,965,959,906,839,863,836,830,842,867,867,881,878,844,846,1041,1036,1060,1048,1030,1058,1038,1049,1050,1052,1048,1047,1041,888,879,896,889,872,902,869,902,884,895,897,885,875,931,924,939,987,966,914,918,964,931,927,942,953,958,942,934,947,939,959,947,959,940,952,957,950,958,961,962,940,951,944,962,805,791,790,791,827,834,786,797,610,617,618,614,622,599,612,611,582,604,630,598,963,998,956,947,972,971,968,978,986,978,982,974,952,979,976,974,741,757,735,759,750,740,758,732,705,751,751,771,691,831,826,828,859,831,851,803,841,843,788,828,924,925,931,908,924,921,928,938,915,917,907,928,946,917,921,915,907,891,894,893,914,924,909,905,884,911,913,891,898,922,918,820,847,833,842,806,828,1008,1001,1002,987,982,990,992,996,991,986,994,1001,989,983,982,997,904,908,901,892,886,927,886,888,903,919,891,899,907,898,894,899,984,1023,1042,1021,1026,1032,1026,1056,1025,1024,1003,1002,1009,1030,1025,1051,914,907,903,899,927,888,915,913,922,909,913,617,633,641,624,605,643,604,606,628,631,632,651,544,563,564,569,530,528,541,547,543,556,560,557,545,561,517,566,541,565,549,573,551,552,575,554,541,551,709,727,715,694,738,716,731,724,708,730,747,763,716,733,741,726,733,751,767,1183,1272,1214,1243,1234,1165,1272,1165,1266,1191,1228,1214,1023,985,1022,983,1037,1007,988,1040,1037,1014,1049,997,1023,996,1034,878,887,891,905,871,922,866,886,910,889,897,912,901,910,877,888,899,922,876,907,896,897,896,902,912,907,891,901,955,953,940,953,948,964,954,954,942,941,960,935,949,959,975,956,845,816,864,856,847,845,828,860,844,843,835,831,842,834,816,998,1028,994,1004,1006,996,993,984,1005,1009,1010,982,1013,903,899,921,919,914,917,916,900,909,911,914,725,752,771,747,766,747,763,740,728,723,729,739,747,725,695,742,739,725,747,752,757,740,733,730,729,993,980,1008,980,997,991,1007,998,995,1014,967,982,851,852,845,857,839,842,829,996,959,984,979,990,996,1000,990,992,995,989,1005,986,980,965,987,972,977,861,841,846,825,822,836,834,846,845,893,609,612,598,602,615,618,598,590,627,587,607,602,583,591,594,589,595,586,578,602,595,583,580,559,557,576,556,567,555,567,557,555,568,562,588,609,587,628,602,611,606,594,613,607,604,593,588,612,602,607,578,617,612,611,617,641,607,626,623,616,661,639,629,641,632,613,610,581,567,586,568,577,587,590,569,586,591,567,579,577,580,1071,1060,1091,1044,1042,1079,1031,1057,1014,1073,1057,1019,1025,901,930,900,895,875,925,906,924,602,575,575,599,584,591,577,592,593,593,593,561,590,589,570,587,621,578,579,577,579,604,573,1023,1034,989,968,1026,985,993,1018,980,1024,986,980,944,956,944,946,958,947,962,940,911,914,950,931,951,922,925,941,933,944,949,922,926,921,908,931,920,928,944,914,923,947,929,930,818,795,801,809,785,813,791,773,810,770,799,786,794,808,812,790,819,801,825,872,837,868,860,891,966,844,883,845,917,877,863,878,874,933,858,894,890,904,907,875,916,908,894,880,907,940,926,960,950,990,986,990,986,986,989,987,984,1023,976,979,971,970,901,898,870,888,877,888,886,655,602,658,640,603,606,597,611,604,609,637,629,610,674,648,654,645,629,637,660,653,632,615,656,645,598,649,639,635,635,631,661,623,620,627,630,641,627,626,618,636,626,623,639,650,616,633,629,651,921,920,906,903,856,912,897,898,908,880,1008,1018,968,1013,991,972,1012,1010,982,993,987,1018,1003,1016,1013,995,1014,1038,1006,1009,997,996,1012,996,1018,992,1021,996,1026,982,986,995,1047,1054,1069,1023,1023,1058,1038,1046,1054,1039,1064,1030,1028,1063,1049,1011,1019,992,995,1008,1030,1008,1013,1001,1006,997,887,842,850,832,838,880,842,832,866,877,862,826,835,640,595,600,602,578,578,608,592,588,588,593,589,566,610,594,598,597,594,581,578,598,602,597,613,584,602,597,606,582,744,705,682,701,683,701,680,727,711,693,678,693,629,621,630,627,620,626,632,641,635,639,627,630,616,629,652,930,911,908,918,923,921,917,913,894,911,957,904,905,651,699,709,682,665,634,690,678,641,1111,1092,1076,1100,1112,1094,1070,1073,1081,1064,1094,1119,1102,1107,1101,861,872,881,893,891,869,881,888,914,877,901,883,887,901,870,914,875,597,632,647,652,627,641,612,627,635,637,641,612,614,637,582,591,598,610,624,595,590,599,618,611,602,623,600,614,611,594,603,594,1002,999,1030,904,1055,959,952,963,984,1016,956,978,973,927,913,913,925,910,899,910,908,916,930,936,912,702,662,737,720,688,698,724,720,712,722,702,709,701,721,723,649,711,673,676,667,658,654,687,685,677,697,681,694,658,678,659,686,841,845,825,852,847,856,818,877,801,752,763,781,772,769,786,788,784,778,784,787,777,795,783,774,783,653,615,654,651,626,650,633,654,661,626,642,640,659,635,640,655,650,664,647,635,647,679,657,1018,999,965,1005,1029,1002,1019,968,995,984,933,965,931,950,929,953,949,920,932,931,905,952,938,928,932,941,940,966,948,967,955,996,963,977,952,968,956,944,981,981,963,820,825,803,837,803,837,794,830,834,853,841,794,816,810,821,886,913,948,918,918,948,914,940,916,963,905,1010,972,980,976,976,988,981,990,975,981,989,973,964,999,856,827,841,811,833,838,845,806,857,984,992,968,977,989,981,1015,1001,1013,980,956,968,866,862,874,878,850,870,861,850,842,850,832,849,873,842,859,851,846,826,861,871,1002,970,996,980,971,962,989,987,980,954,963,988,1004,884,882,885,876,887,858,887,851,897,902,863,579,574,560,593,591,570,624,553,577,615,596,551,573,568,554,537,547,551,563,550,519,556,561,568,536,531,995,962,1011,974,1006,935,1008,965,950,970,1025,996,978,953,1002,955,951,953,933,951,938,956,972,948,941,942,975,962,971,939,942,947,982,1048,1045,1049,1044,1055,1028,1062,840,841,817,793,801,841,821,801,792,597,593,593,604,565,582,913,918,876,920,906,901,970,922,916,886,925,949,915,936,702,727,705,723,727,706,693,724,724,719,695,689,712,870,886,644,647,646,657,627,658,701,640,669,681,620,667,631,658,676,650,679,615,786,785,794,786,766,765,766,773,775,795,761,789,757,943,918,892,917,899,899,907,902,920,904,919,899,901,931,930,944,962,947,955,969,949,957,938,847,821,829,773,857,857,845,841,815,875,800,807,800,845,861,1032,1021,1013,1024,988,1017,999,1014,1011,995,1015,1000,907,916,885,882,891,880,902,898,921,895,889,922,885,988,1000,990,998,1003,1005,994,1021,995,1000,1017,1012,987,994,1006,859,879,825,875,842,855,863,862,810,791,810,802,780,831,811,836,830,807,799,810,824,831,800,822,807,823,609,575,602,617,630,592,628,594,617,587,612,587,623,568,558,592,578,582,583,575,590,561,563,564,586,558,581,566,563,1119,1084,1150,1116,1080,1104,1140,1107,1094,1092,1141,1151,1109,1071,935,931,992,968,935,946,958,964,949,968,949,941,1011,952,920,780,744,781,750,723,731,686,716,702,691,726,699,729,692,679,716,687,707,710,720,719,702,867,895,904,864,859,874,870,874,871,923,899,881,934,916,909,1003,1005,973,990,994,993,999,1005,998,1000,983,978,1008,993,999,981,1012,1008,999,975,996,840,861,853,858,866,876,842,806,843,839,857,830,880,842,864,872,859,835,836,865,885,569,579,597,606,581,599,634,613,601,587,599,605,583,611,625,631,631,620,626,615,1152,1105,1051,1092,1059,1080,1025,1135,1075,1105,1078,1090,1067,1094,966,954,980,994,925,961,950,942,951,942,902,931,912,896,915,923,908,902,903,903,925,937,878,902,620,624,623,622,632,645,632,651,623,646,654,654,639,642,650,653,615,624,593,648,631,1059,1107,1022,1022,1042,1030,1034,1037,1060,1040,1023,997,1019,1031,1048,974,1028,828,804,788,837,843,885,868,856,860,857,832,829,843,823,827,843,834,831,813,574,594,583,561,597,559,567,585,869,935,895,899,899,911,868,896,916,890,877,664,633,702,681,643,655,643,637,642,624,576,566,563,579,579,597,596,568,553,560,577,585,557,557,554,569,561,568,567,571,588,589,587,593,598,615,605,1104,1123,1094,1123,1088,1133,1133,986,977,981,998,967,966,971,969,981,970,957,955,895,894,897,845,871,866,895,822,902,879,867,881,887,860,873,844,829,850,842,861,840,825,832,841,835,867,854,823,865,852,846,850,850,919,890,897,865,866,905,884,905,909,913,914,897,829,837,853,846,809,800,644,660,669,650,656,641,672,656,630,654,657,654,628,664,679,658,860,855,851,885,854,855,825,868,877,769,715,745,729,729,752,744,737,765,743,759,729,753,716,741,751,995,1007,987,983,976,961,1012,994,982,983,788,816,794,780,805,828,789,795,821,786,783,831,550,592,605,547,572,540,522,577,576,562,548,574,575,563,573,572,575,586,533,549,559,1021,996,986,1015,1008,1056,1020,1007,1013,1014,981,967,998,954,1001,963,952,964,980,962,958,982,998,972,967,969,976,977,867,874,842,860,849,831,885,828,860,863,833,849,846,656,600,590,618,610,618,627,614,617,612,625,617,522,538,559,528,510,517,530,545,531,505,548,545,539,513,686,677,656,673,675,678,698,681,675,691,677,677,667,650,666,659,677,657,668,640,678,676,657,658,661,657,655,656,669,667,657,657,660,647,666,662,664,895,855,892,871,885,883,898,872,897,891,870,876,882,866,896,894,828,883,916,881,866,891,906,915,900,913,915,900,910,929,885,906,899,915,894,892,894,896,885,897,902,1030,1048,1052,1054,1048,1048,1028,884,878,903,866,877,890,857,864,878,639,632,661,632,638,640,646,608,592,635,650,621,653,642,617,620,636,647,633,633,621,631,618,622,652,920,969,975,970,1009,968,1000,972,1004,957,974,978,970,956,996,981,964,951,984,952,975,958,960,916,929,923,925,940,907,934,929,924,918,909,929,927,918,925,902,917,929,937,923,941,917,906,912,923,913,914,801,814,841,834,848,848,830,845,828,834,819,845,830,813,678,694,670,638,670,650,662,895,889,910,931,894,922,913,925,922,919,919,869,889,936,916,920,930,903,933,1030,1009,1003,1012,985,1000,1015,988,981,990,992,991,984,1011,991,991,1024,910,904,905,918,751,752,754,760,755,748,766,768,771,750,763,772,777,760,752,760,760,673,652,665,675,639,655,683,648,672,653,631,657,653,790,813,762,784,805,830,804,820,810,801,833,834,811,742,727,752,756,735,751,747,739,761,736,745,753,735,733,602,569,573,622,583,605,577,583,583,577,586,618,596,567,603,590,578,581,580,574,548,549,537,553,544,544,549,538,523,549,553,534,548,548,548,533,1016,1038,1043,1059,1013,1052,1001,1108,1030,885,850,819,883,862,889,877,848,884,879,845,847,857,891,849,888,855,875,855,885,593,602,598,602,606,608,597,589,592,630,603,602,612,595,596,610,591,596,602,1082,1049,1070,1103,1046,1069,1127,1066,1023,1074,1124,1052,876,924,912,910,902,887,914,915,908,587,599,539,547,558,572,987,1030,999,974,962,1005,1011,994,979,1002,1044,974,995,983,1010,969,919,931,933,926,914,925,915,935,957,930,922,922,911,928,939,944,948,952,920,925,615,623,663,613,612,642,629,650,629,630,625,645,636,652,647,666,635,607,644,623,665,630,642,650,649,641,636,628,618,620,641,646,623,651,650,636,981,978,975,958,977,965,980,1004,996,974,999,991,986,978,986,994,1014,979,906,864,884,909,904,890,878,911,912,884,895,908,881,900,889,910,628,693,661,644,667,676,665,635,636,626,632,632,657,628,625,634,622,625,621,640,641,880,930,918,914,914,937,673,690,708,676,666,714,658,667,684,691,692,688,696,713,654,729,684,722,883,869,873,871,859,878,889,841,852,891,868,676,666,674,664,639,664,661,665,674,660,815,786,792,781,785,808,812,811,816,777,784,598,604,603,608,634,627,608,635,607,630,620,600,632,670,663,606,511,533,500,532,507,534,521,529,527,523,528,533,540,520,498,500,593,595,613,603,584,589,597,606,602,655,657,677,669,685,664,653,664,658,668,671,652,653,672,648,667,895,851,867,861,876,883,838,877,866,721,708,736,720,736,737,735,753,762,731,731,739,592,604,606,608,594,600,612,584,594,513,503,490,494,501,520,491,493,516,502,485,506,511,505,530,513,505,518,500,511,530,507,510,506,518,514,504,525,528,502,498,519,578,586,601,597,598,603,591,600,594,584,599,604,597,602,592,586,588,610,581,617,612,618,576,605,619,606,609,616,607,622,615,598,607,615,590,619,606,608,604,599,606,975,973,995,963,958,957,989,978,997,974,976,931,978,953,842,874,865,875,867,894,885,866,894,896,850,873,881,894,888,861,889,877,886,882,883,870,886,878,897,890,892,861,885,763,824,771,799,783,812,822,804,814,969,939,858,921,892,970,917,886,926,933,938,915,910,913,937,904,908,936,913,912,926,914,914,911,950,998,952,954,985,962,957,974,960,964,830,837,799,841,819,845,845,842,838,845,797,840,781,760,761,779,759,787,764,788,781,796,772,796,781,781,645,648,624,676,645,663,643,666,655,648,618,610,598,621,610,621,598,601,602,669,658,650,669,649,673,664,667,680,869,880,882,889,888,846,874,882,872,878,856,888,852,860,870,896,897,957,930,934,918,924,922,912,884,950,930,926,939,911,947,910,939,944,930,921,940,932,924,930,940,929,938,947,930,942,940,923,948,902,944,780,782,746,755,765,744,784,758,765,756,806,789,797,719,758,748,797,542,552,550,559,546,544,552,574,537,584,578,584,592,582,593,574,558,582,585,570,565,570,608,582,617,601,601,603,602,616,604,602,603,616,626,601,604,605,591,624,645,600,602,602,602,599,598,578,606,596,594,611,598,590,580,566,561,558,586,565,594,564,561,569,580,580,1037,988,1068,1068,1025,1072,1004,1015,1047,1053,1074,1038,1052,1049,1046,983,958,955,927,917,951,934,954,961,926,948,928,946,971,948,983,967,967,966,974,958,990,947,965,952,973,869,846,855,919,902,914,890,907,890,889,921,911,909,914,915,922,885,885,912,898,812,838,841,823,842,811,803,824,836,800,870,826,839,816,848,822,546,544,517,526,552,570,531,556,552,571,567,544,568,552,577,517,538,538,590,579,610,562,621,596,629,621,586,965,966,956,983,968,969,984,968,975,948,960,1010,740,727,722,700,727,739,733,739,721,690,738,760,718,724,843,868,854,869,830,845,852,818,934,965,974,941,965,962,979,959,978,956,979,958,981,975,959,849,837,838,849,842,831,847,828,843,850,841,840,831,835,867,946,983,976,980,977,969,957,995,881,891,897,891,901,887,904,911,889,885,912,881,898,748,734,709,720,719,744,677,722,716,718,702,732,699,696,742,685,704,730,948,928,959,958,954,926,971,963,954,968,964,947,975,983,997,765,746,757,746,753,745,734,746,762,761,716,742,769,764,784,803,729,771,574,560,602,584,577,575,570,559,602,573,598,577,578,983,989,965,1018,978,941,969,979,957,999,1029,994,1031,939,923,928,930,951,951,931,939,902,925,944,921,934,940,958,947,951,967,968,968,943,958,957,975,944,948,962,867,868,840,831,878,844,839,849,852,877,852,852,695,675,662,664,673,662,704,670,703,679,695,670,653,701,692,683,704,681,898,933,915,906,917,884,892,933,900,926,897,904,926,970,942,936,904,931,961,923,935,932,946,943,933,1014,992,1002,886,914,884,878,899,910,908,877,856,888,891,888,878,885,909,900,905,830,841,826,844,842,836,839,844,847,822,816,838,837,822,811,838,837,847,834,830,833,837,669,647,646,677,678,655,691,659,640,647,682,700,657,639,815,800,822,787,821,780,783,819,796,822,800,775,778,828,797,673,662,693,674,670,673,663,686,670,671,672,666,672,666,688,691,696,679,683,692,709,684,685,707,669,704,680,676,702,688,691,625,625,589,605,607,607,609,622,600,583,1040,1028,991,992,1024,994,998,1017,1006,869,882,870,869,892,873,884,885,861,855,893,852,879,869,611,577,584,621,568,606,606,580,591,586,594,928,932,951,928,956,955,933,924,967,943,1013,956,963,695,673,622,663,638,636,650,627,698,659,667,633,584,587,592,583,585,592,561,576,572,571,550,597,577,582,599,1046,1044,996,990,1097,1031,1019,997,1052,925,951,940,945,970,930,958,950,937,960,934,934,966,999,1001,986,978,984,991,976,881,881,871,888,840,871,859,873,905,949,932,891,872,881,897,887,890,879,883,896,880,890,897,896,884,892,728,752,753,749,748,762,749,750,763,750,753,746,744,757,747,751,752,626,668,640,655,667,652,664,673,661,676,646,659,654,650,665,655,848,854,884,831,824,841,860,866,846,841,862,850,871,839,875,763,774,753,767,782,759,787,765,771,784,802,607,593,606,582,572,586,580,588,605,568,613,602,553,569,562,548,558,570,572,582,551,564,807,798,830,816,845,822,860,616,655,640,623,636,637,641,610,642,595,644,672,648,608,581,586,556,581,576,565,574,595,574,539,586,561,564,552,591,1034,1011,1052,1011,1050,1002,1026,1001,1034,1012,987,1049,1069,1039,937,938,939,939,952,978,940,931,902,956,946,932,922,918,920,961,953,957,922,944,960,959,931,945,935,981,811,839,815,825,790,810,821,819,809,811,803,811,797,817,600,622,614,617,631,613,620,620,609,613,607,623,626,623,632,634,629,615,608,617,764,769,748,766,764,772,758,767,753,753,756,756,625,623,657,667,633,625,658,599,648,614,599,619,599,600,605,611,599,602,596,606,640,651,638,627,636,651,630,623,647,642,620,630,639,652,623,626,888,923,907,892,924,891,901,928,925,918,901,938,891,919,868,684,684,708,675,710,683,667,744,690,753,713,708,782,793,758,773,770,757,793,766,751,786,760,768,767,783,656,662,640,684,676,642,657,667,635,666,634,649,659,660,639,650,668,668,640,649,660,651,677,680,668,668,661,677,667,668,655,660,667,663,684,688,628,573,610,619,590,619,599,595,582,590,586,616,598,946,910,931,929,932,901,927,960,946,961,965,942,960,947,990,965,986,985,965,978,950,837,825,872,859,854,831,859,871,877,838,882,623,611,587,617,605,592,597,593,670,687,657,665,673,634,655,678,664,601,611,608,603,594,599,606,598,619,1129,1170,1138,1098,1095,1126,1165,1145,1124,1122,1118,1142,907,911,948,915,911,926,895,943,964,928,961,938,936,630,622,567,604,584,575,595,586,620,550,577,576,579,569,566,569,569,591,574,565,569,612,559,558,585,581,560,1000,999,992,998,920,936,925,942,899,914,931,905,914,888,911,921,908,905,927,931,930,919,909,886,905,913,922,913,917,907,901,909,902,925,901,911,910,916,917,941,903,760,753,744,761,753,772,753,751,795,748,772,751,774,721,752,724,565,565,557,575,557,560,564,568,568,529,553,554,530,557,573,553,857,824,812,849,838,868,877,828,842,831,808,858,828,817,853,789,663,610,654,569,631,636,608,606,673,659,619,550,559,560,562,548,533,557,550,558,941,956,935,936,966,987,964,977,983,917,968,947,957,880,884,884,896,905,911,881,894,868,909,907,890,890,905,928,892,891,904,928,957,941,933,942,940,944,947,967,982,952,940,878,887,862,720,701,725,726,741,731,698,711,735,709,672,704,702,715,720,730,709,593,567,618,615,574,609,604,580,599,559,582,577,584,583,591,586,571,584,559,568,574,606,589,569,577,592,597,580,567,582,586,583,564,608,565,921,922,922,931,950,889,883,904,908,903,919,884,927,907,933,806,832,795,814,801,814,830,832,621,628,607,613,632,619,620,594,608,615,604,626,604,994,1011,977,948,970,940,969,980,987,952,979,1005,849,794,850,826,806,835,802,787,841,820,848,820,975,981,964,984,961,979,960,977,862,868,875,863,858,834,858,855,882,832,832,837,855,840,873,872,844,858,976,982,954,992,991,969,975,981,980,965,958,824,841,862,821,831,844,849,867,868,868,865,857,822,604,605,595,600,600,612,591,579,601,593,595,597,620,600,598,581,587,600,580,593,602,576,577,564,599,596,598,569,585,592,592,585,578,583,585,594,555,548,527,561,561,585,589,589,589,588,585,592,592,596,581,588,593,589,581,588,581,601,584,589,597,589,594,586,617,600,579,588,604,613,602,606,599,892,894,915,918,933,933,910,919,918,915,920,959,969,937,933,903,971,927,941,967,972,957,970,948,964,937,955,962,866,839,871,839,866,852,875,860,843,876,883,859,812,853,836,860,919,895,895,888,880,878,909,900,895,873,886,884,905,916,907,895,824,862,859,846,853,882,839,840,844,834,826,837,869,831,859,846,835,857,852,841,837,694,697,704,743,682,711,682,689,663,699,866,829,851,844,861,895,880,860,832,880,875,875,837,851,734,737,713,720,742,736,736,754,708,737,722,743,744,729,905,902,930,946,909,939,944,930,941,926,971,914,987,966,959,965,953,954,959,938,959,961,959,984,961,860,888,873,855,867,858,881,875,866,861,902,869,869,860,890,860,715,725,704,722,692,709,723,703,736,722,726,666,723,711,736,688,740,705,941,938,976,936,962,941,930,912,945,972,924,936,962,961,931,947,960,955,965,975,937,945,960,975,978,957,951,771,744,801,763,799,777,770,772,768,755,777,823,780,570,581,574,567,560,617,586,603,617,593,594,601,638,630,942,938,953,987,931,909,992,928,940,911,934,956,940,919,931,915,935,951,936,930,907,943,931,921,958,928,927,907,911,898,923,917,899,885,903,888,885,905,905,890,914,904,917,838,794,791,796,773,774,771,776,757,777,804,928,914,927,890,931,924,888,921,935,893,912,847,861,859,795,813,846,845,828,859,928,931,976,968,989,971,983,976,966,986,995,994,983,958,862,872,837,854,863,888,617,616,592,621,604,623,619,648,604,669,587,632,628,602,608,601,600,595,582,569,588,601,578,606,574,589,576,600,593,578,604,707,662,658,667,670,636,656,653,898,895,947,897,916,901,901,900,874,932,897,893,889,890,916,746,755,745,787,745,766,766,743,760,733,781,762,740,772,742,760,571,563,582,600,610,615,589,570,593,567,550,545,533,534,541,562,544,566,556,538,557,558,545,1089,1120,1071,1063,1084,1065,1067,1103,1093,1096,1018,1064,1065,1120,1054,925,941,957,978,983,935,962,944,961,613,644,641,660,622,654,663,657,652,627,608,643,603,629,630,609,560,584,562,535,574,544,561,541,561,567,561,555,573,603,609,578,610,592,592,593,601,578,610,577,602,597,597,595,572,582,597,596,600,595,585,594,587,590,575,586,564,571,577,586,588,582,567,578,581,574,594,576,563,579,571,586,866,857,812,859,881,840,853,823,811,828,840,876,802,687,705,676,675,674,683,668,654,649,662,663,674,652,668,677,668,672,665,688,694,671,655,703,691,691,684,665,658,695,698,733,704,675,666,671,681,704,593,619,599,625,614,616,604,602,604,622,605,605,602,612,612,619,938,906,931,910,924,916,922,923,917,963,885,914,882,924,960,966,932,940,927,962,946,952,921,964,959,952,915,922,962,981,955,1040,1038,1017,1053,1065,1041,1056,1072,1031,1041,1055,1029,1040,1045,1056,1065,856,832,836,868,799,848,846,852,825,870,827,856,846,892,829,870,839,636,645,599,608,609,601,624,625,590,635,627,626,608,620,620,649,632,642,626,659,637,649,642,635,639,625,1000,959,959,1009,967,952,969,989,972,969,924,941,973,994,940,948,899,959,967,940,942,942,947,967,927,931,928,939,913,919,931,927,922,888,916,912,959,938,936,938,938,931,924,941,960,938,944,931,931,957,946,938,929,919,959,973,960,974,957,956,972,975,935,952,957,936,942,839,825,837,866,849,875,835,827,849,862,808,842,842,808,835,813,867,838,566,600,605,566,601,584,597,571,588,594,626,599,980,1054,1012,1054,1058,1060,1057,1026,1038,1021,838,835,834,797,872,903,811,848,876,866,851,827,841,878,868,885,889,919,577,602,581,581,565,573,566,576,550,547,579,551,548,573,578,573,545,584,599,580,599,578,572,575,612,563,563,585,586,613,870,905,880,849,893,860,891,908,889,887,899,915,891,885,665,702,701,692,730,676,707,682,743,659,706,676,692,694,716,576,582,578,576,584,576,570,576,594,604,584,592,572,582,593,605,573,979,943,1022,1003,905,926,909,958,975,933,933,946,944,923,937,917,949,927,983,937,924,814,818,839,837,808,812,842,809,752,753,752,754,739,609,637,591,632,616,619,602,601,622,624,626,624,633,545,563,544,537,548,544,536,555,531,551,553,549,543,577,583,583,593,603,582,572,600,581,597,581,593,646,650,663,640,662,663,658,653,666,642,667,678,645,665,659,666,660,656,618,648,593,601,588,596,597,596,610,1083,1102,1078,1125,1046,1075,1024,1108,1137,1101,1085,1071,1063,1088,972,942,938,944,924,941,957,907,911,948,948,935,937,940,961,869,911,905,948,949,969,946,960,937,958,959,945,955,959,947,930,844,853,805,884,860,858,861,879,880,855,818,867,859,864,889,861,895,621,636,634,651,661,637,657,650,1017,990,1015,986,979,988,956,1014,980,1000,1009,1001,985,979,1013,1002,853,837,825,847,864,870,855,843,855,861,841,678,669,681,681,673,669,627,663,661,662,688,636,845,855,870,868,899,853,889,900,856,885,890,850,893,872,881,846,849,804,784,768,783,794,799,811,798,784,789,783,799,788,781,801,798,793,788,797,639,655,660,627,655,613,626,645,643,657,641,642,621,636,639,812,821,840,840,798,853,828,793,827,848,837,853,810,789,1022,1005,1032,993,996,982,1012,977,978,1002,1036,1012,1017,1015,1021,1028,1020,979,1028,1022,1000,1019,1010,977,1002,1029,984,971,955,949,954,971,958,944,946,954,972,922,959,970,974,939,940,959,948,804,824,820,807,823,809,806,823,806,589,584,612,596,613,565,589,587,595,593,626,638,607,583,624,614,616,627,578,545,524,518,541,519,533,520,553,507,522,546,536,527,536,527,512,515,523,510,551,668,649,673,655,686,656,669,688,677,692,648,664,679,678,660,687,675,665,702,678,665,684,678,682,1046,1086,1045,1084,1099,1060,1064,1096,1055,1116,1096,1132,1073,1096,1043,904,906,904,910,963,909,875,948,897,942,908,645,554,600,601,618,545,612,638,611,626,583,581,605,596,652,612,616,596,538,570,551,555,579,556,546,583,567,554,575,587,583,588,598,546,569,862,887,887,902,875,867,900,856,943,897,849,888,889,1029,995,1008,1041,1001,1013,1002,1028,1034,1004,1009,966,1014,1034,1023,998,843,825,863,863,795,856,803,824,810,850,829,863,822,832,501,545,521,499,502,513,534,544,502,529,557,576,539,541,532,572,533,529,530,543,532,519,527,549,542,516,531,544,539,875,880,840,914,834,886,849,895,855,843,638,637,634,642,683,634,598,591,630,629,649,607,664,633,630,665,622,591,553,554,587,562,563,580,584,551,553,559,554,601,563,943,889,908,910,936,892,899,877,911,906,765,735,691,752,741,691,745,728,743,713,732,750,728,753,744,770,791,782,784,796,777,800,791,782,761,753,766,733,749,742,780,753,765,647,612,621,616,648,622,655,649,654,634,626,624,628,636,636,644,646,832,835,845,797,835,840,822,838,721,722,740,749,723,734,750,725,721,737,731,735,734,744,728,1064,1044,1022,1039,1025,1005,886,905,837,907,917,902,857,896,874,896,917,889,957,967,989,983,970,967,959,964,971,988,965,972,981,974,802,794,811,825,777,765,800,846,801,774,804,784,804,585,591,599,621,590,614,601,600,617,586,1161,1238,1155,1182,1089,1184,1112,1187,1212,1231,1158,1198,1252,1160,1213,1215,1200,994,973,980,990,1030,999,1031,968,1002,986,987,974,1022,987,1000,997,1010,1000,989,1009,996,1029,1014,1036,1002,849,845,839,863,855,888,887,867,854,865,841,861,842,860,865,637,679,655,666,671,658,656,656,658,648,650,652,674,652,662,643,649,662,639,662,642,641,658,656,676,647,660,904,903,867,860,867,914,891,922,889,880,907,922,863,874,889,874,922,890,908,932,889,888,796,796,797,770,775,796,793,602,582,628,606,588,609,617,626,640,609,619,582,608,613,614,619,630,618,1078,1106,1043,1061,1073,1086,1060,1071,1089,1049,1116,1088,1114,1133,1096,1054,981,1025,995,1049,1009,1013,1004,1014,984,1045,1017,995,1011,1022,979,1027,1015,1014,1033,887,846,868,892,858,862,886,868,883,857,875,857,875,842,823,828,819,801,821,778,797,806,808,801,839,834,613,605,600,627,558,583,583,568,572,571,570,576,590,561,571,565,578,881,886,895,873,883,888,893,847,932,863,906,924,952,920,924,968,943,943,914,970,939,934,939,956,965,942,927,945,945,927,837,851,855,835,633,639,618,608,604,596,617,613,611,619,608,579,560,553,524,544,540,556,552,546,1006,989,1024,989,1048,1015,1028,984,1007,1050,992,965,978,1004,949,1003,998,1000,960,1004,1031,1014,1007,1018,1031,850,848,864,827,867,828,859,868,848,857,886,910,913,930,969,942,870,937,970,930,925,949,948,974,981,923,928,942,946,939,936,918,940,915,931,959,920,935,954,926,963,828,831,824,859,833,830,851,854,844,852,822,842,646,643,601,645,648,634,658,616,616,648,634,617,1113,1070,1068,1119,1110,1104,1119,1082,1090,884,934,926,941,916,863,913,924,906,915,907,917,912,908,905,894,909,889,905,892,665,674,691,668,672,650,680,665,664,667,694,678,679,893,885,880,901,886,903,896,884,885,888,908,890,898,879,940,759,751,757,772,765,761,769,772,762,762,777,756,633,611,586,582,602,599,596,621,605,634,591,623,612,598,612,619,608,583,664,555,549,549,555,548,570,548,544,538,550,559,560,577,1153,1140,1077,1155,1143,1067,1078,1094,1146,1077,1132,1104,1097,1143,1103,1122,1136,936,970,923,943,955,950,942,949,952,966,641,632,686,629,665,654,642,619,658,653,628,540,559,571,551,568,577,554,561,584,591,576,573,584,563,530,539,550,543,540,545,532,540,525,543,558,523,550,543,1062,1160,1041,1114,1150,1065,1097,1165,1105,1087,1123,1168,1132,1079,1119,1108,1072,1138,1119,1140,1121,950,973,927,983,964,997,953,990,962,972,941,961,969,950,956,1036,1078,1040,1072,1049,1063,1076,1065,1061,1073,1039,1054,1067,1082,1046,1036,1051,1065,861,863,911,874,902,894,839,871,858,913,892,865,941,900,908,586,548,552,550,563,553,585,561,550,525,529,534,525,591,626,574,626,627,580,631,573,609,620,655,624,612,630,620,1021,1017,1008,1011,1007,1052,1001,987,1002,985,1035,1061,1027,1006,712,707,706,694,711,682,701,724,735,701,717,681,676,700,719,1023,1029,1060,1030,1042,1009,1029,1029,1045,1029,1051,1036,1044,1087,1015,1036,1049,827,835,858,880,849,846,869,878,821,872,868,642,590,610,623,605,629,615,611,615,601,632,608,616,998,1013,982,1029,1008,1010,1000,1040,908,903,913,908,869,881,918,888,860,924,916,930,903,909,659,659,622,641,656,634,649,635,664,673,649,940,944,947,921,933,900,953,969,903,945,936,909,655,683,669,698,717,698,706,642,653,962,1027,981,976,1016,1018,1014,1001,982,1009,982,1000,1035,960,970,1001,997,887,864,919,890,855,868,922,888,902,890,862,859,889,631,563,617,620,631,579,577,569,539,1084,1064,1075,1004,1085,1089,1115,1029,1043,1063,1010,1083,1078,1084,1074,972,955,982,967,923,940,956,953,940,933,968,629,610,591,618,612,603,643,594,609,596,599,602,603,590,599,600,585,597,616,1014,1011,925,978,937,949,843,871,876,866,870,869,874,860,872,876,888,874,842,888,851,855,842,982,1002,968,994,970,976,976,983,983,1005,1002,982,1006,914,909,894,872,911,892,919,888,889,882,903,916,855,894,902,909,908,903,874,907,914,895,621,652,622,641,641,636,631,651,646,628,624,618,626,633,611,623,606,643,629,601,620,1090,1036,1102,1121,1056,1040,1073,1079,888,898,864,891,884,889,908,899,930,909,877,879,871,888,543,532,553,554,550,553,534,576,546,592,535,531,518,558,565,563,530,561,574,541,601,600,605,612,625,595,594,602,602,604,592,626,601,1049,1051,1099,1099,1022,1138,1072,1076,1145,1078,1074,1065,966,981,963,946,978,970,993,955,1001,954,973,1004,861,855,871,845,864,857,845,854,872,823,836,975,987,981,992,1002,988,1011,996,995,1009,1001,1008,1006,1037,877,896,910,890,930,909,942,899,903,891,897,901,905,902,937,982,1008,987,990,1013,1003,990,986,996,979,989,1006,1013,1021,1027,1006,1018,996,867,868,882,859,880,896,825,891,856,881,865,875,874,838,871,890,893,825,568,525,584,524,539,554,557,563,517,528,506,508,501,526,539,547,534,557,543,534,604,616,594,601,604,627,601,595,596,586,636,638,639,667,643,648,644,633,639,629,626,634,649,656,614,1114,1106,1096,1085,1149,1145,1112,1059,1116,1073,1090,1084,1112,1124,1068,1066,1100,1009,985,1015,1018,1035,1008,990,976,991,964,1009,989,1022,1014,958,1006,1025,1017,1002,1003,935,883,854,903,907,899,875,907,891,900,909,905,910,695,708,676,690,691,698,698,713,710,578,582,594,604,613,602,569,585,605,984,1002,989,1043,1021,970,997,1058,1009,1023,984,1056,1027,1047,984,858,923,869,862,862,823,895,868,869,979,996,1009,971,999,991,990,999,999,989,857,874,858,897,859,853,856,840,868,894,867,852,849,853,874,874,884,843,852,854,591,641,601,602,575,604,1050,1030,1009,966,1028,982,999,1001,1042,1000,1001,1005,1058,1064,1052,1078,875,865,889,913,864,873,881,961,876,931,971,1007,968,959,982,996,925,1034,1018,1059,1033,1054,1018,1033,1046,1040,1018,908,913,910,940,906,950,895,905,900,936,986,981,910,1005,941,979,937,951,971,935,934,924,919,934,920,916,938,918,921,917,953,929,950,936,945,932,930,943,911,908,924,945,928,943,831,812,794,841,829,803,810,794,824,826,823,828,836,850,844,837,1124,1130,1110,1130,1141,1101,1123,1132,1128,936,926,923,897,935,929,947,938,923,934,921,947,913,936,702,684,692,697,694,665,647,660,688,692,707,689,686,861,851,868,873,857,841,887,891,865,871,864,826,886,898,873,683,686,674,663,678,652,663,704,680,650,680,656,658,695,605,628,602,631,606,625,616,616,609,592,617,626,912,907,885,927,908,897,899,894,892,913,930,927,936,911,916,862,912,897,888,869,903,728,742,733,730,768,763,744,749,752,749,767,751,751,735,751,949,994,984,968,960,976,992,935,984,966,961,1039,1035,1069,1044,1045,1053,1023,1061,1040,1033,1041,1024,1019,893,852,861,846,883,875,843,864,855,903,855,1032,1062,1063,1073,1030,1076,1025,1029,1058,1059,1062,1046,1033,915,919,893,898,894,990,1013,1016,1014,1008,979,1007,993,974,1001,974,1019,991,997,993,978,982,811,810,804,835,830,790,788,833,781,779,832,802,832,839,818,797,758,544,568,570,550,530,571,561,538,562,589,584,599,576,588,624,567,581,579,608,572,598,586,577,566,579,572,587,639,672,645,642,641,636,661,616,626,643,633,637,663,612,637,616,639,634,994,971,1004,973,1006,1001,979,992,987,993,742,719,743,740,680,742,707,716,744,691,688,728,702,732,736,735,713,745,740,741,748,797,792,800,806,763,806,795,815,792,675,623,626,630,625,641,648,604,627,633,621,619,628,626,808,781,804,802,811,812,782,812,787,638,674,673,661,669,649,691,653,654,643,673,645,641,676,649,670,795,763,769,755,781,798,776,785,804,767,672,640,633,657,646,618,634,639,635,660,658,671,570,581,582,548,573,581,578,578,557,580,571,538,573,582,576,567,559,573,574,548,578,576,553,576,557,561,575,551,576,569,553,567,593,573,579,592,608,589,578,587,597,587,1026,962,1002,1025,989,966,946,989,948,953,948,943,951,946,965,947,960,944,926,955,936,924,901,924,909,911,920,906,897,916,904,897,902,917,907,959,957,942,935,962,934,939,936,932,919,921,927,937,958,930,816,841,845,826,856,831,618,597,629,593,599,595,599,582,597,602,619,606,614,589,644,645,597,635,621,611,610,613,607,628,616,607,638,930,897,892,835,885,926,889,868,864,877,846,862,893,850,863,685,683,716,695,678,690,698,657,639,629,612,627,615,613,630,617,633,630,620,630,625,984,999,1010,1016,996,1035,1022,1036,1009,1043,1013,992,996,942,904,919,915,915,933,955,931,914,916,979,990,963,953,986,968,854,870,859,852,831,877,865,608,614,643,645,613,623,632,627,657,638,634,565,559,579,565,555,569,582,574,567,574,566,613,616,596,578,660,676,673,684,624,634,664,630,633,648,675,645,643,624,643,648,619,631,652,633,653,633,637,621,999,1045,1062,1004,1045,1001,1057,1007,1018,1052,1020,900,897,926,922,907,930,952,923,940,924,949,907,918,924,946,950,950,947,816,816,781,791,834,823,795,793,809,825,804,816,763,812,796,678,661,632,660,672,653,651,661,646,639,650,644,645,652,621,602,615,578,608,609,607,588,564,574,569,580,596,572,574,571,558,578,568,596,585,589,586,586,589,614,590,609,607,604,601,618,610,595,623,605,594,613,615,624,613,611,617,611,606,616,613,628,593,614,619,612,597,596,591,598,607,598,604,609,593,586,611,593,596,582,614,602,643,653,644,636,645,655,650,643,645,647,665,665,642,643,641,623,629,639,643,654,635,629,980,954,1012,978,1013,957,1036,1030,1001,970,1010,998,993,1005,984,982,991,1022,979,997,987,958,839,795,787,804,571,542,570,555,547,546,533,538,522,1032,947,974,1035,991,982,969,1021,927,942,1010,1045,929,922,897,925,900,897,912,915,889,872,902,932,933,914,619,622,593,638,628,626,627,603,1036,1032,1045,1034,1044,1025,1022,1041,1029,876,887,882,898,890,899,906,894,909,804,798,785,807,771,802,630,619,612,650,626,643,610,632,639,617,630,597,617,627,631,567,575,557,591,564,567,566,562,565,570,572,561,574,563,577,570,571,931,973,987,956,1004,982,958,960,926,949,957,910,965,983,953,932,716,753,730,729,750,700,730,740,717,723,694,719,693,733,731,748,727,711,787,783,794,814,756,764,783,781,773,826,611,606,628,619,612,610,589,622,623,612,615,641,635,619,605,578,585,575,584,578,575,580,598,615,586,615,609,605,602,610,589,845,845,812,788,844,805,828,811,855,830,792,784,829,821,707,710,671,687,651,647,634,644,666,641,628,645,652,636,639,943,954,969,953,966,940,945,932,960,932,988,934,938,773,780,743,759,764,784,730,740,746,757,773,747,748,1019,998,996,1020,987,982,989,998,997,982,1002,991,974,862,859,849,836,856,850,880,814,856,836,846,845,860,978,967,979,999,963,993,956,968,965,1009,963,952,975,962,977,954,956,974,992,991,834,851,845,901,847,859,811,844,878,866,838,868,810,843,883,848,854,855,854,842,842,549,553,544,562,574,560,574,521,560,531,567,569,565,553,557,559,1096,1116,1023,1069,1060,1008,1063,1043,1073,1083,1059,1065,1084,1092,1075,1081,1140,974,940,1005,1006,1001,983,992,969,991,805,822,818,801,801,791,815,801,833,800,794,797,608,597,616,620,609,604,615,614,629,620,639,616,616,631,600,630,586,632,599,592,611,594,605,611,566,557,531,537,544,553,546,550,533,546,532,542,549,539,589,609,587,604,628,577,559,621,573,571,576,587,600,573,590,611,615,580,1161,1209,1149,1199,1151,1164,1109,1137,1154,1143,1145,1153,1167,1127,1146,1200,1133,1157,1010,1027,1027,1023,1038,1010,1021,1012,1042,998,1016,1001,1084,842,818,826,810,842,830,804,834,822,848,848,822,849,843,832,820,599,579,613,635,621,628,611,613,616,618,621,612,603,606,983,911,951,948,940,923,935,946,933,856,819,832,809,829,855,833,831,841,816,838,839,874,842,578,614,581,575,579,587,563,600,568,561,556,582,584,558,577,575,620,581,590,574,619,590,576,568,597,587,567,585,581,598,594,620,605,622,610,610,596,602,605,620,612,604,621,607,609,599,602,597,599,615,592,600,606,598,615,579,600,588,602,583,618,608,594,591,594,606,600,596,601,617,618,604,607,611,607,593,578,573,568,592,563,562,552,574,569,567,545,621,612,604,598,586,602,587,605,606,603,595,620,591,586,596,938,883,924,932,918,939,864,890,917,867,897,898,896,918,880,981,1023,986,1013,999,1016,986,972,1005,987,1001,1002,985,891,934,925,910,898,896,905,896,926,927,893,930,858,682,631,621,667,673,665,672,689,638,634,558,575,594,582,588,606,579,582,568,563,595,545,1068,1064,1044,1002,1043,1018,1043,1051,1037,1064,1017,1019,1036,881,906,881,881,858,903,865,890,903,930,977,975,1009,1012,1060,947,1025,974,1009,972,1025,1002,1001,997,963,1042,1047,1032,1018,1036,1036,1029,1008,1048,1037,1039,1036,1045,852,862,856,861,843,848,875,850,833,854,883,827,846,891,913,792,871,867,869,892,852,854,544,539,562,599,571,570,539,532,572,576,559,563,578,562,555,560,541,947,964,926,939,937,937,970,1004,906,918,984,979,991,978,980,1005,990,1003,989,975,983,975,965,1003,986,992,1000,839,828,852,853,832,818,812,844,873,821,835,848,1009,989,1003,1000,986,1018,998,1021,1021,988,1007,997,1003,991,1025,1018,998,1018,1008,985,897,858,878,873,861,881,854,880,871,872,863,884,900,870,879,879,876,887,853,1007,956,957,995,990,936,964,935,958,963,969,934,965,962,951,971,981,979,961,970,960,955,959,988,989,961,967,963,987,973,981,980,963,972,845,838,849,823,861,817,858,835,808,820,839,844,827,832,833,843,828,841,653,651,681,660,644,646,647,656,663,665,638,657,662,673,650,842,845,870,836,870,843,827,859,849,841,856,869,861,843,831,858,831,764,759,733,741,725,748,753,725,738,767,743,588,555,564,602,556,593,585,620,597,575,550,577,581,595,544,543,556,558,539,533,538,533,1078,1034,1029,1073,1066,999,1035,1013,1035,1049,1130,1055,1034,1074,1042,899,939,947,951,927,932,924,965,922,942,908,994,977,1039,974,979,983,1009,991,1018,969,1001,938,1014,926,973,950,953,963,961,938,940,939,963,941,961,962,958,946,951,974,970,957,853,877,872,860,865,863,879,889,891,883,849,709,722,699,725,731,718,752,718,724,724,741,629,606,655,653,636,652,638,637,623,621,652,635,661,665,641,624,638,639,641,618,634,649,648,645,629,650,645,650,646,640,643,609,604,618,604,615,597,611,619,593,603,585,593,601,605,608,608,607,908,886,884,892,877,874,928,861,891,884,881,892,909,928,904,881,890,912,922,691,685,714,695,708,712,706,688,722,670,697,691,682,686,677,685,862,833,863,837,907,876,861,842,856,887,887,792,778,811,787,798,766,795,787,804,795,812,949,946,963,974,961,961,970,963,970,941,933,900,888,903,894,898,898,907,882,903,895,893,916,910,905,890,933,904,905,905,911,913,914,900,914,923,938,922,929,907,931,944,952,959,955,946,966,938,954,866,860,841,837,822,826,856,833,818,692,676,668,648,661,875,864,880,897,909,890,870,884,926,890,870,918,945,926,948,947,942,932,941,942,934,910,941,931,932,940,918,911,931,906,930,933,944,916,911,910,932,938,884,924,911,922,910,909,943,932,954,957,928,936,945,951,930,950,945,964,948,967,948,969,958,957,964,964,964,963,980,955,963,943,951,916,890,893,893,881,928,898,865,899,897,907,890,891,890,774,713,683,719,699,698,753,707,726,669,684,718,732,686,952,935,965,917,957,955,944,941,946,908,925,948,932,929,922,904,955,925,919,900,927,914,926,953,914,935,944,955,933,940,952,951,950,923,947,943,1022,1023,1026,1046,1022,1046,1024,1020,1022,868,892,860,883,878,868,903,890,968,979,977,993,994,973,987,962,975,1014,1011,973,979,836,815,793,821,826,808,610,591,617,619,659,628,656,620,635,629,624,637,597,645,610,662,637,920,980,907,944,926,973,898,947,947,963,959,918,968,935,968,919,945,920,957,983,965,934,965,956,969,961,955,963,943,984,973,978,950,977,919,923,913,940,929,931,929,920,915,944,918,927,909,916,924,913,933,920,767,822,819,814,818,809,816,786,782,771,768,778,828,792,784,799,814,776,555,535,546,534,534,536,586,534,542,538,541,546,523,599,576,570,555,560,564,575,577,572,590,583,594,564,607,599,614,620,606,623,634,629,602,603,1008,995,1011,1018,1069,1036,984,1051,978,984,1021,1004,992,1001,1015,1012,1010,913,920,916,924,924,915,904,924,908,930,932,914,913,907,927,908,898,922,929,919,928,931,914,845,816,827,812,834,828,814,832,778,822,839,828,805,826,797,753,752,764,766,791,738,757,762,713,733,716,723,710,717,736,733,736,727,736,725,715,706,707,707,755,624,646,637,637,637,634,625,613,616,611,641,632,633,654,798,809,825,794,800,861,772,794,836,819,845,784,802,676,643,676,660,669,660,675,660,654,677,647,670,664,628,611,603,596,624,595,605,615,631,616,610,603,599,614,604,620,613,626,608,618,609,610,588,599,588,605,597,613,601,605,605,585,570,572,598,591,558,573,556,563,547,565,1009,961,979,997,968,935,1014,1027,965,951,929,985,949,983,966,1003,995,977,1000,1001,1005,989,995,992,1007,1018,1004,1021,1007,962,1020,986,1014,1007,1031,1012,858,900,876,886,903,879,928,843,896,888,902,871,637,617,607,586,615,577,603,566,589,597,663,653,553,545,554,525,550,542,531,552,541,538,533,525,540,555,829,817,862,843,815,832,851,825,620,636,617,623,650,634,576,614,680,591,608,623,611,616,641,621,607,653,555,574,535,530,547,561,533,562,525,565,563,567,547,974,946,992,961,1018,990,948,979,1005,948,989,872,926,920,898,912,854,888,907,899,919,911,906,913,923,891,1013,975,988,992,997,979,995,1019,993,1007,977,983,851,854,850,824,838,858,860,858,869,839,878,855,857,867,855,861,840,849,870,899,837,840,871,885,825,871,874,860,892,879,857,917,865,894,893,854,894,899,894,880,890,896,862,907,897,885,880,882,909,957,1013,981,1025,973,991,981,993,997,955,1002,1021,938,786,756,832,788,782,801,772,858,780,850,813,763,781,821,547,552,581,535,557,557,539,547,549,543,569,530,548,612,608,569,562,576,606,624,586,597,1144,1152,1083,1139,1173,1123,1142,1154,1119,1099,1071,1105,1145,988,1008,1002,993,991,1000,984,1007,989,979,978,1039,844,826,836,856,816,849,855,823,878,856,854,853,891,916,876,906,902,886,908,900,899,899,877,876,863,857,863,869,869,878,868,859,870,869,873,883,1005,1006,1016,990,1015,988,1008,1005,1006,1003,997,997,978,995,985,814,818,825,818,788,823,784,800,771,830,848,803,837,789,798,1073,1044,1049,1019,1041,1045,1060,1081,1039,1037,1038,1062,1027,1029,1030,1019,1055,1034,888,859,829,845,854,820,876,863,841,852,842,837,636,623,589,602,597,623,593,608,578,605,1090,1119,1095,1066,1139,1105,1049,1069,1120,1108,1086,1056,1079,1094,1084,975,957,960,948,954,984,942,946,969,934,736,712,705,702,692,728,720,751,733,723,757,594,603,584,572,572,529,496,483,519,505,522,522,493,483,521,511,551,526,491,516,572,590,601,953,983,983,968,1016,1001,997,980,944,959,965,985,980,964,751,779,757,738,758,777,730,748,748,766,767,729,793,744,895,873,897,862,887,875,912,868,875,874,882,886,862,861,875,855,851,867,879,864,844,857,860,858,857,849,872,924,899,905,912,896,919,929,906,905,911,899,901,825,831,820,829,629,637,647,631,636,643,636,639,623,624,628,602,636,631,730,800,765,751,800,764,770,766,783,803,808,690,655,690,671,658,662,654,656,672,668,624,654,681,644,664,667,644,652,673,672,666,613,614,626,607,612,612,597,601,619,611,615,617,619,644,609,617,959,999,996,999,956,963,956,969,1007,985,1000,1003,990,914,897,884,899,896,885,919,896,925,884,914,910,903,976,928,956,952,971,950,941,958,944,964,942,949,881,881,893,860,876,884,906,896,738,743,730,747,773,737,725,751,749,772,753,740,732,733,722,784,756,648,630,640,641,642,644,635,624,614,624,658,675,655,632,639,659,806,821,808,797,799,775,804,757,781,787,613,581,620,598,597,585,608,612,623,614,624,523,522,526,518,522,530,522,523,526,538,538,535,514,552,525,532,522,520,617,623,633,628,629,618,621,657,651,637,631,619,641,636,637,625,630,639,620,639,625,651,645,909,876,915,940,870,913,912,895,874,894,898,912,752,673,706,706,699,709,698,723,765,750,754,746,777,760,763,778,768,773,741,990,947,987,955,964,944,977,945,984,948,1024,1019,1019,1009,1000,1011,1015,966,1001,1019,1004,1006,1011,1042,981,872,884,890,899,875,881,907,891,890,922,880,892,874,903,880,841,873,908,1002,991,972,998,984,990,981,987,996,970,967,1030,974,972,981,960,989,986,997,993,983,998,883,881,912,889,907,898,897,900,908,888,897,903,900,605,561,543,575,596,570,575,556,549,544,571,578,574,515,543,536,533,563,556,542,527,541,531,682,658,658,673,677,670,676,666,692,682,689,719,717,730,747,732,719,732,732,687,695,707,975,960,1005,1012,965,965,716,749,701,740,713,698,685,690,717,694,707,754,715,708,751,525,536,547,544,553,536,554,550,590,542,551,538,532,540,565,560,557,505,515,506,516,514,501,535,511,531,516,554,540,565,555,572,565,566,575,564,552,568,570,540,570,579,552,568,558,552,560,562,576,592,586,595,587,575,594,590,572,557,603,547,559,656,625,586,558,601,552,585,617,629,609,578,610,572,575,596,618,571,633,625,551,557,610,638,637,620,631,628,638,625,615,629,618,649,614,590,562,547,556,550,560,564,554,1070,1029,1049,994,1000,999,1001,975,967,1008,1025,996,1039,980,982,1007,1015,968,955,944,978,967,965,948,951,952,931,943,959,923,963,945,794,802,805,791,832,820,846,767,832,815,781,806,715,726,730,740,723,723,721,745,724,728,747,727,756,748,645,633,640,624,616,603,620,615,624,640,498,525,502,536,508,506,524,519,510,504,512,516,511,505,530,502,506,526,568,586,577,536,560,563,575,570,571,554,573,566,568,565,583,575,555,568,584,565,574,578,597,595,601,580,598,624,589,597,604,583,585,564,601,581,589,598,595,607,1088,1067,1082,1032,1075,1052,1105,1031,1127,1099,1076,1099,1050,1071,1047,820,799,858,852,861,845,826,848,861,836,823,808,597,540,553,561,565,562,576,558,589,546,1078,952,994,1002,953,1013,981,1030,1053,977,1023,1008,955,952,942,961,922,957,941,980,933,942,969,922,959,949,965,969,957,620,668,661,691,676,640,633,800,779,773,798,809,819,770,779,771,773,791,788,813,794,782,767,602,611,625,607,619,621,633,595,658,623,620,632,640,612,629,587,595,587,592,1187,1207,1091,1281,1273,1220,1175,1181,1225,1307,942,931,947,931,949,954,925,950,952,1008,911,960,979,921,897,955,976,993,1001,976,1036,1015,1002,994,1009,997,973,998,1009,993,996,1001,1012,851,837,801,847,876,848,826,829,861,829,833,817,804,844,850,895,919,922,922,917,912,904,911,908,923,912,923,901,907,916,897,908,941,903,938,916,942,937,913,934,911,953,946,939,944,953,945,822,829,867,834,829,809,831,866,821,833,847,831,870,577,592,612,603,594,615,601,564,610,609,602,607,976,935,966,999,980,1008,965,920,965,986,965,1011,978,961,976,956,983,980,1006,993,1008,968,991,980,980,995,992,957,985,989,984,992,967,971,979,980,989,954,815,812,807,827,797,820,805,789,829,795,811,855,814,837,813,799,843,805,838,818,657,662,618,639,613,644,639,642,654,603,612,625,621,614,606,615,610,617,626,606,606,634,607,626,623,969,983,987,922,989,957,949,1024,940,927,952,923,951,905,932,918,915,923,919,926,905,927,926,942,914,923,919,916,906,910,923,915,924,907,922,927,928,926,936,922,908,919,905,922,939,922,921,905,915,794,725,796,788,733,763,764,791,794,780,739,764,564,589,575,540,543,534,534,545,533,523,571,555,564,536,634,624,645,651,657,643,650,645,644,647,628,621,641,620,660,658,657,1023,1004,1027,1006,1029,1016,1024,1000,1023,1002,1027,986,1032,1067,1032,982,989,1003,1052,808,846,808,850,849,836,845,825,842,838,820,851,823,636,651,659,643,604,607,636,637,801,788,795,787,794,812,859,805,806,762,787,794,799,765,805,788,807,779,781,788,765,791,762,751,735,745,742,739,774,751,737,727,746,586,579,602,591,582,602,599,584,571,646,606,587,602,592,624,584,636,617,624,609,660,625,625,558,556,574,565,575,538,573,571,552,568,558,830,825,835,849,816,840,826,868,850,862,666,635,625,647,643,615,615,640,641,622,626,625,639,624,635,606,613,643,560,527,549,560,534,566,517,1081,1110,1011,1063,1056,1094,1116,1099,1072,1026,1062,1075,919,917,912,907,937,927,936,905,939,925,901,908,914,929,919,924,920,933,914,909,989,915,958,954,958,969,947,931,965,927,950,941,997,959,966,976,993,976,979,999,967,993,1011,964,983,796,852,844,835,817,825,829,864,832,852,840,847,836,541,560,534,562,573,553,583,563,581,552,546,1091,1138,1084,1068,1039,1077,1131,1099,1088,1072,1070,1100,1134,1041,1079,1062,1125,1083,1080,1016,963,959,972,937,968,981,961,957,949,963,958,962,946,983,974,977,989,971,947,1022,1054,944,1018,949,946,932,1002,999,985,1014,995,1007,982,990,993,993,825,861,858,872,888,868,849,859,889,888,832,858,885,858,844,874,631,626,614,606,601,620,627,611,628,622,599,916,928,900,889,898,932,962,885,925,932,909,906,904,944,916,909,927,911,971,978,962,925,943,949,960,962,957,940,929,955,966,942,942,940,972,950,991,980,996,987,989,986,972,982,968,980,997,994,982,866,833,852,882,845,856,802,831,845,812,842,934,964,953,937,963,962,958,952,958,952,947,983,955,940,975,961,966,954,961,793,856,823,827,833,869,821,844,853,847,843,860,815,812,841,935,939,930,947,974,950,915,909,918,979,909,921,968,895,940,968,928,931,930,936,910,958,935,932,935,950,920,914,943,932,941,915,915,933,923,940,913,884,919,911,919,901,917,920,925,922,912,921,926,934,924,932,931,933,932,914,980,963,978,964,964,962,989,963,973,973,961,982,973,966,961,993,991,916,903,847,878,862,867,850,881,892,865,856,866,903,873,886,564,570,561,588,568,583,553,580,546,573,590,565,565,637,615,590,578,601,616,628,613,614,605,599,647,642,623,634,609,646,617,626,619,625,644,655,635,597,632,637,634,617,992,1060,1087,1081,1065,1073,1074,1091,1095,888,866,846,923,888,884,881,1047,974,1041,1057,1017,999,1045,1046,987,1050,987,1004,1029,989,960,964,993,973,973,959,947,967,979,962,975,967,985,961,958,984,983,976,956,962,960,963,966,966,963,964,958,895,870,846,899,864,892,874,891,857,871,869,624,612,621,643,620,632,634,617,630,614,548,536,547,532,532,548,527,571,543,553,548,552,590,592,574,597,579,594,599,568,583,564,578,568,572,565,565,551,559,547,563,573,582,569,600,614,605,601,617,607,604,605,600,621,613,688,694,703,700,669,679,705,699,621,600,601,602,584,620,601,621,604,603,606,617,616,949,951,947,950,958,950,948,950,926,924,910,903,928,965,933,925,932,1005,956,964,978,964,997,969,983,969,979,946,945,994,983,999,989,977,828,835,829,878,815,886,868,833,841,868,879,838,1132,1136,1119,1105,1093,1105,1134,1130,1115,1114,1095,1140,1107,1106,1140,920,879,903,896,881,916,881,885,914,863,869,605,590,599,614,601,607,604,618,610,607,597,602,603,608,662,1056,1036,1006,1010,1030,1006,1056,1040,1041,1029,1011,1008,1065,1045,1045,1017,998,1016,1044,1004,1035,1013,997,1033,1027,993,1033,1032,1046,1009,1048,852,816,815,840,828,824,826,858,817,842,863,844,801,834,793,846,812,802,605,593,575,578,594,591,585,595,604,621,602,621,600,631,622,620,623,599,619,624,632,612,604,605,596,628,617,646,622,618,659,955,976,964,956,975,951,990,938,1000,996,979,953,986,957,717,746,747,713,768,706,733,720,742,781,748,745,722,719,937,925,886,901,907,921,886,912,937,908,908,959,970,946,945,958,966,951,942,965,943,927,955,928,891,910,935,905,918,904,906,912,939,910,901,912,665,658,625,671,641,630,597,622,655,621,650,648,634,612,626,611,555,553,560,540,540,563,535,526,548,542,538,546,552,536,564,547,555,550,549,557,508,548,530,538,535,536,532,540,533,539,527,543,533,635,651,626,663,677,997,1023,1029,982,997,986,986,996,992,1037,1007,958,980,814,831,759,802,791,813,832,787,785,945,969,969,965,984,967,952,973,966,972,968,955,898,931,941,931,933,926,932,933,918,927,930,826,815,819,791,832,817,803,821,828,772,825,829,814,809,836,809,955,994,985,972,992,990,974,962,913,925,910,922,912,927,904,912,903,913,930,917,908,898,906,694,733,751,720,732,731,717,734,736,700,705,722,725,710,708,725,734,596,586,587,610,609,588,585,615,571,607,602,600,595,575,569,546,559,555,551,571,569,571,567,562,547,556,848,864,885,827,821,831,829,883,812,813,856,835,855,837,651,649,676,640,639,654,607,660,630,650,663,576,570,558,543,569,563,570,571,555,566,560,579,575,560,565,567,564,575,898,885,947,935,920,917,912,933,886,904,902,754,733,729,761,718,723,732,852,801,841,825,815,857,849,820,822,838,844,821,733,732,756,722,750,732,721,724,749,725,725,733,1002,961,962,965,947,963,973,944,955,968,952,959,992,957,971,955,910,947,944,888,880,886,910,889,862,885,866,883,874,872,876,913,987,970,979,995,972,990,967,997,988,987,969,995,985,848,833,837,853,1067,1032,1029,1090,1061,1072,1042,1035,1056,1054,1041,1027,1043,1091,1055,930,901,933,930,944,923,921,917,918,932,949,946,928,928,913,620,610,584,611,640,657,604,648,614,580,620,615,612,605,639,658,959,965,1007,968,942,951,970,970,932,976,975,947,998,973,944,997,914,926,906,946,907,963,936,935,921,915,941,915,922,932,827,841,849,854,840,858,833,833,822,811,913,928,910,910,923,902,907,886,912,901,919,896,913,626,671,660,671,625,656,636,649,656,636,637,603,661,677,645,673,666,612,614,664,653,670,654,599,593,608,614,580,583,584,621,602,591,590,597,592,597,614,591,936,976,951,986,919,928,933,940,955,731,791,733,739,725,751,780,748,753,757,728,754,749,731,744,758,757,751,744,745,753,982,957,981,966,966,983,960,972,988,975,968,858,836,818,855,872,844,860,828,887,894,850,833,866,850,845,826,849,819,848,823,831,867,842,838,1003,1008,1024,1033,1010,1058,1030,1054,1044,1037,1029,931,927,933,945,952,930,919,965,949,933,958,950,918,970,952,950,960,931,930,974,926,963,937,942,933,951,938,955,956,856,866,849,838,823,856,829,833,842,861,836,848,665,647,642,676,652,667,644,649,661,654,693,683,663,651,658,674,685,670,655,966,971,978,981,987,946,967,984,978,1017,713,690,701,693,707,692,728,708,710,719,708,708,715,701,713,682,716,812,824,799,826,804,803,809,818,841,810,839,818,1003,1004,995,1019,1008,992,985,990,908,899,895,882,909,912,908,909,913,894,912,908,900,656,656,665,665,640,647,659,698,659,924,929,916,926,908,918,903,901,945,917,916,920,907,913,936,891,941,737,710,720,746,695,765,767,729,730,713,739,750,881,879,886,857,882,875,871,916,894,897,891,871,880,624,613,631,623,650,627,626,627,630,641,639,622,980,992,1045,1061,967,998,1025,1043,1028,1015,1037,1011,1006,955,1072,1054,936,905,897,907,893,888,930,922,912,893,902,903,866,905,917,913,923,931,581,538,534,553,576,580,554,548,599,548,542,581,548,542,551,539,557,553,562,565,556,561,635,626,643,628,652,630,653,631,648,639,616,634,636,643,669,636,1041,1042,1068,1065,1065,1079,991,848,870,832,875,839,849,864,842,834,845,851,869,855,847,856,839,889,860,888,856,866,741,758,757,752,777,758,785,779,762,779,804,773,761,771,764,554,620,586,546,522,520,527,532,499,512,536,501,513,509,527,520,508,497,515,521,521,520,998,1054,1111,998,1068,1038,1072,1077,1125,1077,1121,1059,1057,1106,974,980,949,960,969,986,972,968,966,995,950,697,694,691,722,706,708,705,692,704,721,573,603,580,587,580,584,580,577,572,888,854,857,843,836,873,829,883,833,810,825,831,864,842,687,698,700,729,690,676,850,891,843,823,860,894,848,891,847,840,861,870,879,844,853,864,712,674,693,708,670,696,698,675,693,701,669,897,859,861,911,868,879,899,879,909,835,862,864,853,860,877,945,970,984,965,973,954,958,966,995,965,978,964,982,959,961,968,958,970,992,989,995,986,982,968,996,984,1017,966,993,986,986,970,990,982,989,979,981,990,823,859,852,843,857,860,854,839,895,947,937,871,886,912,893,922,961,905,928,933,881,957,947,963,939,929,944,934,918,925,947,956,925,947,881,835,843,839,861,863,835,888,849,810,822,847,846,829,848,847,842,834,820,1122,1158,1185,1117,1128,1119,1080,1135,1180,1112,972,990,953,975,961,974,978,973,983,952,612,655,644,627,602,649,645,633,659,612,637,803,803,833,839,790,809,791,835,775,781,823,796,774,808,623,631,640,577,635,605,632,628,614,611,626,617,602,592,612,582,603,591,572,588,591,578,566,596,616,566,574,611,578,591,574,586,616,1033,994,1030,1014,1040,1038,1028,1046,1049,1000,1031,1056,1001,1041,1060,798,778,820,779,808,795,800,812,775,799,817,816,777,810,789,569,615,593,634,618,613,634,584,595,613,589,629,619,535,566,541,552,547,529,547,534,534,533,526,536,533,552,548,893,908,886,900,887,880,888,893,864,692,686,665,700,672,697,674,641,674,1021,1039,1032,998,1024,1002,1012,1018,882,841,878,866,860,830,905,817,853,830,619,579,592,594,586,569,556,589,559,591,584,602,588,596,575,595,610,608,597,586,594,566,604,612,617,598,576,594,583,575,580,570,584,582,583,595,588,596,586,601,586,585,575,594,587,583,574,581,582,581,578,569,582,576,568,552,558,552,561,560,537,545,555,541,550,555,555,546,543,560,549,553,544,545,582,604,605,602,599,609,601,588,604,598,598,595,565,974,971,947,952,981,972,946,974,964,925,947,955,924,716,711,713,744,686,728,751,737,729,725,736,820,850,866,839,844,875,831,855,834,828,844,827,684,689,677,670,655,665,661,654,626,659,686,677,683,673,657,650,671,661,661,647,769,739,730,749,728,746,737,743,722,738,713,768,734,767,727,647,640,678,646,662,669,651,660,650,642,663,673,655,651,665,634,642,626,632,619,625,617,613,922,859,888,843,910,865,899,895,903,900,861,836,864,881,756,745,706,746,766,740,732,992,983,988,965,978,966,977,995,981,982,986,974,985,975,972,963,973,884,874,890,890,862,889,892,912,922,703,729,744,736,734,741,724,723,725,719,729,724,729,709,724,766,722,737,737,715,733,604,643,620,590,625,575,608,615,606,615,600,592,578,614,596,590,572,600,530,509,549,537,520,540,518,543,539,547,577,561,564,568,591,551,554,569,551,581,593,594,565,553,555,727,728,727,707,723,693,705,615,623,616,621,625,630,630,635,625,815,809,791,797,820,791,782,803,745,778,796,784,751,766,776,625,612,598,606,604,580,620,592,609,607,515,529,543,557,531,557,534,549,553,533,554,565,569,539,518,540,556,543,570,1194,1242,1254,1226,1224,1232,1215,1154,1176,1238,1249,1060,1063,1104,1081,1037,1041,1066,1003,1012,1039,1010,974,1009,975,630,699,631,638,661,673,665,654,640,663,670,650,659,1055,1046,1035,1012,1052,1040,1013,1038,1026,999,1033,1025,1088,1029,1024,965,982,908,990,969,965,922,967,944,966,968,936,979,968,976,979,929,938,936,824,803,796,811,826,810,819,820,803,823,830,806,796,782,789,799,818,593,606,605,583,583,587,588,596,962,937,953,793,792,782,789,774,819,795,807,794,797,795,787,814,793,787,810,798,650,684,680,678,665,680,663,681,667,665,656,676,668,693,897,888,904,885,902,865,883,906,895,895,873,919,896,908,864,885,897,880,892,879,895,841,803,774,810,764,796,749,768,786,782,767,794,786,765,711,734,700,938,936,979,993,962,966,956,958,924,947,977,916,964,926,938,965,927,953,961,955,949,939,940,930,940,909,931,941,939,934,932,925,929,918,943,945,868,847,828,823,824,832,860,830,877,871,852,848,866,855,836,813,805,825,841,830,821,807,847,627,590,621,576,595,614,603,618,593,648,610,643,610,604,582,602,654,626,614,648,624,609,637,645,621,602,617,533,528,515,541,534,550,534,530,513,528,541,546,534,529,592,596,598,583,600,592,595,602,594,587,595,613,611,607,601,596,597,600,605,609,593,614,582,603,586,597,615,608,603,599,610,597,600,601,599,602,596,592,613,602,595,619,613,620,602,596,631,615,609,627,619,616,621,600,633,639,607,622,628,1058,1069,1048,1049,1020,1051,1036,965,1039,1078,1024,1027,1017,1051,1022,921,927,914,937,913,936,899,935,954,916,926,913,899,950,914,578,594,613,558,596,662,581,614,585,569,616,621,602,586,901,886,872,904,885,905,913,875,912,880,889,897,909,893,926,897,884,911,908,881,908,886,881,852,865,855,867,868,877,863,855,856,866,864,940,925,903,908,916,906,924,932,944,923,915,911,906,1059,1043,1051,1053,1062,1072,910,892,900,879,929,890,915,896,930,861,898,624,636,655,678,627,629,632,593,603,610,591,579,591,592,596,599,594,581,700,667,670,667,678,657,694,681,661,647,654,661,698,646,686,694,655,676,669,670,656,676,668,913,887,888,911,918,863,872,916,918,858,909,865,784,787,786,760,781,788,784,768,776,774,774,792,761,776,788,767,629,632,615,628,629,615,652,638,637,610,605,625,637,630,600,582,616,584,608,599,592,608,593,588,586,579,572,575,575,568,571,577,581,590,587,574,576,591,569,565,563,566,970,1021,982,1004,1054,1013,990,1013,1022,1001,1009,972,1028,1010,1035,1045,983,1013,981,1036,988,995,978,1002,997,1010,988,1006,986,997,1014,1000,1000,1002,997,855,834,843,834,856,873,849,813,844,836,843,619,578,585,624,607,611,575,604,586,574,625,958,977,938,928,945,934,901,915,929,967,977,910,940,930,953,943,962,995,967,1001,1014,984,966,956,842,839,880,867,861,838,842,838,852,842,828,839,826,842,1063,1066,1074,1071,1075,1080,1067,960,933,967,939,920,949,957,954,921,956,952,962,927,600,585,644,628,625,618,605,618,618,617,616,598,1024,1002,1021,903,901,924,900,890,885,876,892,874,895,885,894,879,886,861,976,998,991,996,1045,1011,1046,1019,982,970,959,1103,1085,1077,1082,1088,1119,1116,1070,1088,1065,1088,1122,1107,1101,1072,1080,953,975,985,986,1004,1002,635,671,679,664,648,650,660,623,660,621,572,564,576,586,567,605,579,590,598,567,572,567,560,589,600,579,796,800,794,771,769,758,775,775,802,778,758,802,781,751,763,749,795,779,792,801,759,771,807,651,660,640,607,667,637,665,661,641,631,661,637,662,661,627,581,575,603,602,604,585,596,600,576,597,580,581,577,586,578,588,682,711,695,688,699,697,676,716,707,695,696,676,657,665,661,649,671,655,655,675,654,682,659,652,665,897,901,892,898,905,896,888,885,908,900,953,912,867,908,962,983,962,963,940,978,938,963,969,958,969,940,945,990,956,949,945,965,961,818,873,848,854,853,871,854,866,839,845,850,875,874,834,845,842,862,861,816,837,879,880,864,1076,1107,1088,1072,1094,1074,1100,1079,1065,1102,1079,1085,976,1005,1015,989,1004,1016,999,1009,1043,1015,991,997,806,801,846,822,843,832,822,809,839,814,831,966,941,947,970,964,963,968,972,951,952,992,962,976,955,991,961,962,959,937,960,881,908,873,892,882,890,917,903,854,887,901,878,894,881,903,891,877,879,887,646,656,694,680,684,660,695,648,681,671,676,692,706,667,680,682,692,685,701,681,685,678,688,626,592,631,594,600,606,628,589,617,616,607,609,597,597,604,600,611,630,618,604,1031,1028,1052,1035,1033,1002,1014,1049,902,869,887,912,900,909,884,918,929,869,742,775,712,749,744,747,718,753,756,720,758,738,739,791,751,1019,1000,1011,1026,1036,1021,1049,1029,1048,1041,1032,1042,1035,1049,1046,1033,1017,1006,907,894,932,896,934,934,911,888,910,921,939,927,911,922,915,855,817,843,837,830,841,810,854,871,837,839,868,847,841,859,833,837,843,857,960,935,958,968,944,945,953,956,957,937,959,957,939,958,964,975,968,965,951,958,951,956,977,975,963,843,824,800,840,821,866,835,858,826,837,951,968,934,937,962,963,955,949,938,941,985,879,816,854,887,801,848,863,859,871,857,859,852,858,505,511,575,519,544,539,519,567,538,560,532,549,533,553,591,604,589,599,572,585,1009,1003,944,998,1010,1050,1009,1031,1041,1061,1026,1022,1031,1066,1027,1049,995,1013,1013,889,868,867,857,872,888,913,869,840,876,842,879,935,967,979,968,979,985,962,825,857,896,872,848,849,837,840,859,585,568,590,611,594,591,596,571,579,620,587,598,601,597,574,920,956,975,971,975,974,981,1012,977,971,1004,935,997,950,960,959,992,1038,695,691,662,699,658,674,675,678,689,675,684,702,705,1137,1080,1119,1148,1092,966,968,957,914,991,921,901,921,919,984,905,937,985,943,808,797,788,807,820,774,828,810,801,825,989,973,956,968,982,988,958,965,961,986,944,961,999,955,955,895,909,930,918,908,903,896,907,900,870,861,902,917,906,606,562,603,600,569,605,606,555,566,586,573,567,556,567,550,565,555,551,563,562,583,556,561,577,830,898,876,852,869,862,869,867,632,649,632,652,649,613,602,649,631,641,610,634,604,653,628,606,640,618,637,632,650,635,607,599,619,611,594,628,585,622,618,604,589,631,605,612,1101,1155,1126,1133,1186,1166,1129,1183,1135,1154,1099,1188,1170,1107,1190,1169,1090,980,980,970,915,976,971,969,966,1013,977,985,967,978,973,945,961,1002,593,590,576,575,566,572,589,613,590,595,562,571,582,573,555,567,558,555,555,565,559,563,534,570,560,564,558,571,983,944,957,990,943,927,922,902,898,929,913,921,923,927,907,894,913,921,881,896,883,892,863,874,863,905,880,878,898,870,875,909,877,865,891,856,897,902,871,874,874,875,882,867,812,770,805,788,815,776,778,778,765,801,789,774,786,812,759,571,570,611,573,576,570,605,610,575,595,585,581,594,588,592,604,589,594,606,825,913,864,848,901,875,896,885,873,906,678,592,617,642,637,648,621,607,654,668,564,577,565,540,570,565,553,571,576,556,566,576,573,545,562,827,839,828,856,859,830,832,828,781,822,839,661,703,682,660,669,671,689,686,706,696,664,697,698,671,671,691,702,715,701,607,599,605,611,608,616,593,593,586,604,609,602,615,609,566,619,581,595,898,912,870,873,864,896,896,901,881,929,938,847,668,629,651,666,665,635,677,662,697,652,658,666,662,665,672,940,956,948,945,942,936,924,924,914,908,955,985,983,977,954,990,969,963,949,922,917,945,937,911,910,938,925,920,920,917,907,926,919,979,968,990,971,1009,982,971,1034,973,988,1013,992,992,1010,993,906,862,894,897,881,896,860,877,864,885,881,893,860,611,619,621,656,602,628,636,655,651,650,611,639,635,655,612,643,631,639,640,644,614,615,629,671,625,579,585,572,586,607,577,592,589,581,992,1107,1019,1075,1060,1128,1059,1069,1112,1071,1059,859,828,875,856,891,867,853,839,899,865,874,748,745,711,763,726,728,729,757,744,733,701,714,726,711,725,716,731,717,701,722,744,1121,1095,1117,1130,1157,1096,1086,1081,1094,1080,1116,1041,850,883,804,846,868,822,869,858,863,861,595,634,600,583,599,595,600,855,893,906,897,922,925,914,910,916,874,769,810,777,786,796,794,784,804,748,788,789,651,637,665,646,641,624,649,628,673,632,652,760,744,746,736,746,736,784,760,734,728,747,788,740,732,607,607,639,669,648,636,616,655,643,584,558,594,590,597,574,582,587,586,600,597,580,588,599,601,616,614,608,636,623,616,624,623,626,621,1020,990,1024,1029,1009,938,964,962,963,943,1024,855,875,879,885,894,859,893,863,871,899,631,615,633,620,632,639,620,614,1016,1007,1011,1050,1106,1055,1116,1104,1127,1049,1137,1060,1026,1039,979,964,995,980,965,977,950,977,952,948,966,968,970,936,929,991,1005,977,977,948,601,602,601,646,607,638,640,633,618,684,640,575,619,654,622,632,635,609,677,634,892,901,900,881,872,861,867,917,888,877,744,743,742,724,730,741,736,719,714,732,709,744,741,913,905,893,922,927,936,884,807,811,820,775,825,824,835,803,809,781,831,836,821,808,794,970,967,985,985,963,970,991,967,977,989,984,980,980,993,987,968,978,981,981,977,978,1000,957,992,990,957,993,989,801,818,820,828,811,830,830,822,826,835,822,799,965,907,912,884,906,932,922,889,925,930,964,923,929,908,909,953,931,915,941,929,913,922,932,900,927,904,920,901,917,922,987,936,941,946,939,968,955,943,962,933,961,924,959,943,958,946,940,962,955,961,820,822,855,809,781,814,828,819,805,817,635,619,630,604,630,660,630,632,638,651,602,606,622,616,628,618,624,617,625,599,1071,1066,1074,1011,1052,1009,1023,1059,1017,1064,996,1034,1071,1053,946,899,928,903,877,889,898,867,923,610,594,578,601,624,605,616,604,614,615,586,582,540,548,537,553,546,541,532,565,546,559,556,533,544,549,563,539,567,543,548,546,565,558,552,547,547,552,569,570,571,551,572,561,571,598,588,548,567,575,560,552,541,1023,1034,1013,1069,1018,1001,1026,1030,1015,1006,1046,980,1024,990,983,986,996,983,989,964,974,1008,981,989,973,950,990,971,828,788,810,827,810,827,839,806,834,829,861,864,888,887,925,880,901,898,880,874,879,896,880,866,896,889,904,904,884,851,856,870,858,848,864,878,862,870,860,621,637,650,646,624,640,642,650,636,641,661,669,643,680,634,669,611,625,603,610,621,614,616,635,600,591,617,610,615,617,628,629,1092,1090,1075,1076,1042,1091,1068,1061,1033,1104,1086,1063,1037,1079,1035,958,986,923,942,987,959,957,926,974,943,968,957,963,987,969,961,953,970,938,968,818,846,845,824,812,840,835,842,795,835,842,777,789,777,782,763,788,782,791,788,784,787,789,770,795,773,777,772,774,764,772,773,658,651,651,630,614,662,649,644,657,640,636,832,847,834,883,830,625,644,618,629,592,597,621,586,614,616,628,642,607,521,513,527,513,520,507,515,529,508,572,556,553,573,565,583,562,572,546,560,583,568,566,569,558,581,584,566,591,589,596,587,568,599,596,935,952,992,980,1018,1006,981,972,982,956,971,961,959,968,960,975,962,979,941,852,822,834,848,807,817,850,832,809,848,849,813,855,555,627,631,629,594,593,603,620,597,581,606,610,619,607,713,724,726,722,697,736,737,734,716,703,743,703,698,741,725,726,732,700,709,623,643,640,627,634,644,614,616,629,609,618,598,599,601,611,629,620,608,619,599,647,613,602,605,611,608,610,604,603,602,674,664,676,665,674,654,687,689,667,679,659,1078,1146,1043,1036,1068,1090,1045,1096,1071,1076,1026,932,940,928,951,938,637,626,615,599,657,626,637,592,608,662,607,591,870,863,844,832,835,847,835,885,866,858,871,926,930,931,903,975,904,916,911,886,906,939,924,936,924,925,963,968,956,946,972,974,961,978,986,981,968,979,966,962,984,982,1078,1061,1112,1078,1077,1082,1075,1082,1066,1049,1094,809,782,804,856,856,785,816,834,849,852,850,831,780,852,809,838,787,825,809,812,590,576,572,551,564,578,584,587,579,592,820,870,871,867,868,849,850,887,863,889,868,638,669,625,630,636,619,627,674,686,645,637,624,632,511,520,531,522,509,517,502,517,521,492,482,519,536,534,528,530,517,531,550,546,527,529,526,505,526,524,561,541,574,567,548,555,579,553,544,566,552,580,564,996,1080,1053,1020,1044,1070,907,899,889,909,905,915,900,886,917,915,909,930,914,877,920,892,571,591,623,635,652,585,649,620,630,638,646,636,702,592,634,644,624,745,773,784,785,791,783,753,757,741,733,770,773,757,785,781,727,754,748,756,760,772,761,779,769,769,769,754,751,738,773,769,761,767,761,776,632,629,628,620,619,624,644,646,593,612,617,636,628,653,588,623,607,1031,1022,1028,1016,1059,1037,1045,1018,1016,997,998,854,845,886,886,850,871,867,846,874,862,850,899,1037,1027,1005,1019,1019,1019,1016,1014,1034,1036,1037,1043,1035,927,933,935,940,914,929,911,920,949,931,920,962,950,930,934,813,817,809,803,818,851,812,815,810,837,770,786,795,785,801,756,788,788,784,775,777,791,791,618,646,630,644,644,615,629,616,614,622,613,634,624,637,645,647,1109,1095,1089,1119,1106,1127,1095,1110,1114,1185,1060,1154,1179,1085,1080,1102,1160,1087,913,899,859,871,924,871,915,900,935,874,880,923,908,932,937,883,565,570,554,537,568,572,517,573,503,554,569,569,541,549,558,517,579,599,630,610,631,604,645,637,620,628,627,641,631,643,624,638,626,636,617,628,610,633,646,639,634,637,629,624,628,637,650,628,969,953,975,983,958,963,993,936,984,995,982,968,984,945,949,937,925,948,944,935,952,952,926,920,916,944,940,937,922,928,789,813,811,811,801,818,812,824,813,798,825,809,818,818,800,787,831,806,811,672,647,657,665,676,649,656,654,679,662,663,640,669,623,658,828,847,831,839,841,850,815,855,832,842,821,851,751,760,753,767,751,757,758,759,631,640,628,632,629,621,628,612,646,632,794,802,793,820,780,790,774,766,781,625,637,610,598,623,601,642,644,564,572,621,624,639,580,601,585,542,567,553,558,552,566,533,545,553,561,561,540,557,562,1159,1150,1158,1146,1115,1077,1095,1152,1159,1197,912,929,922,939,898,940,930,919,942,920,925,932,935,912,960,936,962,932,914,623,570,615,606,566,584,607,598,602,622,587,610,592,570,602,590,619,597,1054,1015,1028,1040,1015,1054,997,994,989,1031,1047,831,876,874,843,877,875,899,852,893,854,834,671,664,636,648,654,654,628,677,666,665,669,651,659,652,650,901,880,911,870,885,903,891,882,885,891,900,918,873,649,689,687,686,720,675,691,692,716,706,695,697,671,687,726,703,654,824,810,800,799,799,828,827,781,826,804,966,954,941,971,970,942,945,943,953,960,947,936,965,943,957,918,929,945,945,943,960,959,958,948,841,830,788,802,838,797,823,805,813,622,597,635,628,598,628,628,587,616,1047,976,992,1076,1010,978,996,1032,1027,1036,1001,1057,1013,994,1028,950,924,915,897,924,918,960,896,947,938,895,950,950,916,919,933,580,623,574,516,567,593,567,566,573,601,584,581,576,593,576,561,531,590,585,574,586,575,574,581,623,640,611,642,615,642,629,632,632,624,624,641,659,649,632,637,650,672,643,647,635,633,656,654,996,988,970,1027,1001,1020,986,1018,1004,992,970,1024,1006,1016,1040,996,999,1028,1033,1003,997,1015,1020,1021,1029,990,1015,845,866,895,881,855,856,880,843,863,835,848,506,515,499,494,533,544,544,545,505,559,535,540,532,501,529,539,559,545,557,513,549,551,529,618,619,625,643,658,637,632,642,634,628,629,644,616,627,638,627,744,744,718,743,739,749,764,743,737,731,752,748,738,750,751,737,742,630,617,631,646,633,642,638,629,640,638,642,637,821,845,862,829,890,866,865,883,895,868,713,667,688,655,668,683,687,681,668,816,835,855,836,862,837,821,863,866,869,849,822,653,650,626,630,647,636,633,641,639,631,652,646,633,1014,1004,983,994,973,987,1013,999,992,981,992,969,971,979,998,1002,997,993,941,967,975,946,956,978,978,951,998,972,945,924,981,961,967,964,941,939,981,929,971,962,940,950,933,957,949,947,977,964,837,842,866,862,862,864,845,865,839,841,891,593,574,602,615,595,562,554,595,604,559,597,599,566,574,913,919,926,958,932,929,909,952,949,936,916,920,938,953,938,1020,1024,973,1050,1019,1001,994,1009,1018,988,1006,1003,939,910,922,907,893,917,912,905,853,872,899,885,870,898,838,878,888,872,965,967,970,955,952,952,972,970,951,963,960,941,951,957,943,627,670,645,674,652,649,658,611,656,654,1027,995,952,921,1025,983,984,973,1002,1014,962,953,970,1062,987,973,1014,1036,1008,1039,1039,1045,1005,1022,1047,1036,1010,1020,1044,1046,1016,850,864,853,868,822,855,833,868,861,855,868,841,884,610,623,595,586,611,597,573,597,596,588,595,597,623,948,933,937,925,959,923,943,911,947,916,943,933,987,979,975,1004,1019,1005,979,1014,983,998,996,1003,990,867,861,864,858,883,872,853,855,878,853,890,880,879,608,605,584,587,592,604,574,582,602,586,557,602,608,591,575,591,565,592,983,948,1000,1011,1004,1038,970,1009,1032,1014,970,1013,1036,1071,840,897,872,863,844,881,858,856,899,877,863,854,860,884,579,663,579,627,619,640,616,638,620,669,616,635,634,596,618,616,1088,1091,1053,1124,1059,1070,1115,1065,1046,1097,1089,1080,1094,974,1041,1104,1031,1090,1056,732,745,723,693,755,737,726,801,695,712,712,724,746,714,763,777,764,791,824,823,787,838,845,853,848,851,791,844,841,845,817,822,801,602,608,656,587,585,612,596,598,630,600,566,571,583,555,589,578,573,561,556,579,559,571,869,920,898,898,997,985,974,1023,963,974,986,1032,994,1019,984,1021,1008,981,999,983,994,1026,997,879,900,918,894,938,896,911,932,918,921,907,903,964,589,549,583,543,574,589,550,603,562,563,554,585,602,575,521,604,555,542,556,587,542,498,510,519,525,524,509,506,519,1096,978,1107,1003,1107,984,1012,938,947,915,930,960,922,957,926,938,953,978,921,931,955,675,694,637,646,662,677,726,681,695,672,664,678,653,666,633,629,611,614,606,612,600,627,610,623,610,602,606,610,866,882,854,871,878,869,841,849,665,691,719,713,660,673,683,706,683,684,660,585,615,606,586,603,591,574,602,617,603,596,576,574,569,576,578,563,579,566,578,573,569,575,988,1046,1038,1033,1049,970,1050,1033,1115,1097,1059,1049,971,977,921,968,965,977,958,993,949,943,940,939,965,924,963,978,959,618,572,635,599,564,591,641,534,546,547,539,573,558,523,546,574,546,574,559,559,556,534,536,539,549,552,578,565,999,963,1008,1003,1011,1030,1013,1045,978,1028,993,854,854,828,853,796,866,844,869,804,852,829,841,864,843,945,943,924,946,930,930,932,932,851,848,859,855,868,828,854,858,853,862,849,861,835,842,859,852,847,858,847,859,857,864,856,862,854,866,842,863,861,844,782,789,779,779,767,765,781,765,779,795,759,774,766,775,755,764,769,736,773,773,756,776,773,774,753,772,767,750,595,597,592,581,591,602,623,565,587,601,602,583,621,1014,1001,1011,996,996,999,886,866,860,870,884,846,875,800,876,840,839,581,558,580,565,577,588,558,560,637,620,631,622,620,635,625,642,619,631,626,635,616,647,619,664,612,675,672,667,636,693,660,676,674,657,659,669,652,664,673,666,682,894,860,886,846,870,865,769,778,767,739,766,741,760,750,785,744,777,753,776,761,749,755,759,570,616,606,601,597,604,586,601,593,601,598,605,596,598,1120,1068,1076,1094,1062,1103,1047,1097,1038,1055,1059,1042,1029,1065,1040,934,921,970,925,958,945,974,934,942,653,652,645,675,667,665,614,654,681,652,656,596,616,595,593,650,638,628,658,674,643,622,629,636,655,652,644,867,912,860,857,896,852,827,876,889,886,887,868,936,940,943,951,932,919,931,905,919,925,927,939,911,926,905,886,887,885,885,901,886,892,909,897,894,931,930,888,906,911,898,912,899,918,893,908,898,904,908,923,901,910,922,912,915,932,919,930,927,915,922,912,918,971,990,969,957,951,954,979,964,972,853,855,804,834,838,836,809,807,831,988,963,1011,967,877,1004,848,914,968,948,965,940,911,970,942,954,865,941,864,963,967,904,939,934,911,907,915,923,938,928,935,904,929,941,927,906,924,919,936,916,912,936,918,938,926,979,972,979,976,978,963,960,995,1006,995,956,982,966,967,976,986,849,859,875,871,889,860,836,874,846,871,825,908,840,644,588,631,613,574,598,623,597,577,569,583,575,585,575,559,576,592,562,576,575,580,569,967,978,959,896,953,966,949,944,928,904,936,945,937,969,987,947,970,980,967,942,808,803,807,815,811,787,817,823,821,814,793,740,724,743,718,745,747,733,736,712,718,711,754,714,713,916,945,943,946,935,937,901,926,914,917,914,939,924,944,911,910,911,916,940,932,892,899,896,896,870,899,890,907,891,905,910,891,878,902,894,888,925,898,863,857,823,852,881,833,868,878,856,835,832,865,844,892,866,849,845,860,891,836,859,596,586,584,599,605,591,582,576,608,940,928,934,967,989,905,921,970,950,932,952,977,941,915,921,978,974,980,982,999,998,987,968,982,976,967,971,988,965,974,764,795,824,845,776,837,844,828,799,594,598,573,581,591,584,572,583,566,602,594,553,594,595,592,612,607,594,591,591,594,576,626,609,608,639,597,619,612,613,618,1136,1125,1131,1125,1065,947,889,942,902,876,894,964,966,869,940,913,935,932,888,922,644,652,614,614,645,652,644,644,656,630,654,666,635,638,642,965,1005,952,994,968,979,1004,1009,999,836,855,871,846,835,812,834,827,841,841,846,866,844,840,869,838,897,955,966,930,923,913,926,918,960,928,946,955,929,851,961,960,972,941,956,990,978,988,979,955,970,963,803,840,868,841,794,789,799,822,813,821,828,845,827,802,894,565,580,571,554,558,556,566,573,554,557,561,982,1017,958,1001,972,1019,971,1008,986,1012,1021,1044,989,1043,1000,1048,1022,973,1030,953,988,995,985,984,968,994,985,978,1012,985,989,975,982,843,844,857,842,832,848,823,836,831,867,836,837,857,843,1089,1120,1112,1117,1078,1090,1119,1081,1117,1092,1076,1053,1114,1067,1118,1022,1097,1009,966,988,972,972,978,954,1047,993,930,981,971,972,616,638,570,601,595,651,587,564,605,610,612,546,534,543,559,542,544,559,566,528,581,608,593,574,583,565,596,583,589,569,619,590,591,595,596,578,574,578,1041,1086,1015,1022,1034,1036,1007,1010,1019,1026,998,1041,1005,1013,1036,1016,1048,1005,1003,1031,1005,1032,1007,1017,977,981,1006,1025,999,996,1019,996,1025,835,809,844,857,792,806,862,814,834,838,802,798,816,804,808,836,830,837,835,838,813,791,793,608,566,587,595,587,571,589,575,580,590,555,580,560,579,611,619,635,632,634,608,627,615,632,631,617,623,607,630,637,637,621,621,642,636,633,635,643,618,620,630,642,631,548,559,555,541,559,554,550,558,580,555,558,554,503,511,510,496,487,487,505,503,501,498,479,504,510,499,629,592,600,573,579,589,610,630,607,619,597,598,612,607,600,705,693,691,680,665,649,667,1156,1224,1247,1242,1208,1195,1189,1187,1198,1155,1261,1199,1045,1037,999,998,1049,1042,1040,1049,1054,1025,1043,1055,1020,1017,1048,997,773,782,773,787,787,792,772,795,808,780,780,762,790,765,780,819,772,779,617,614,621,610,626,631,596,616,633,613,643,605,587,629,601,497,502,525,521,492,487,500,493,483,486,501,500,533,506,532,546,543,546,546,546,537,544,545,540,544,537,520,544,548,552,574,582,580,578,554,585,571,590,587,576,578,585,577,582,580,956,975,964,971,981,1008,968,1009,967,964,973,979,957,972,991,969,977,928,911,920,935,911,903,913,936,899,915,931,918,907,910,906,892,878,885,882,895,886,883,869,807,854,828,854,853,848,845,814,815,842,816,826,848,826,598,581,596,543,591,573,573,561,550,599,573,562,569,605,610,621,538,537,573,518,536,556,517,544,530,534,538,909,940,977,980,988,976,940,648,646,672,657,684,667,676,689,665,700,647,689,648,681,659,668,1089,1098,1046,1113,1075,1039,1079,1084,1073,1101,1070,1079,1025,1098,1090,1024,1042,1025,1053,1059,1023,1038,1020,1067,1012,1034,1031,1035,1042,945,904,903,932,907,936,922,914,754,749,760,753,744,779,770,766,760,757,780,775,752,766,780,781,777,768,743,738,737,730,727,733,739,730,736,746,722,744,735,742,725,595,597,596,588,598,602,609,593,621,611,612,594,584,575,626,623,1018,1021,991,1010,1027,1025,985,985,976,966,1023,1029,1005,1043,1031,1009,1021,1017,1000,1032,1002,996,1020,1010,1001,861,869,809,879,827,820,872,849,853,846,869,842,539,507,536,536,501,520,495,530,529,576,564,566,582,562,580,589,574,571,566,584,583,563,580,584,583,709,682,707,687,697,727,677,673,718,683,686,671,677,680,647,655,635,632,636,649,647,634,645,638,651,662,1091,1105,1051,1091,1066,1089,1085,1105,1116,1120,1075,973,952,926,933,930,938,946,930,913,938,964,927,903,941,962,940,1025,993,1006,981,1004,997,1010,986,1016,912,877,893,917,900,926,902,904,883,876,601,633,638,602,616,622,625,599,648,594,640,609,595,643,659,645,570,565,572,562,554,546,573,547,584,581,583,567,579,560,596,580,569,594,583,598,599,606,575,598,594,579,591,575,563,588,601,600,579,999,1035,1033,989,991,970,1001,1028,1013,1010,984,995,1026,1029,1084,1045,1023,951,941,909,958,934,952,933,954,929,959,942,943,954,938,943,916,919,910,903,914,903,914,931,936,899,905,918,906,916,916,899,907,941,931,768,764,801,754,754,778,774,789,775,780,779,791,804,790,756,771,795,779,792,803,901,892,857,849,859,861,860,872,861,892,899,888,872,883,834,914,901,894,870,890,895,913,906,895,1014,1008,1004,1000,1007,989,1015,1005,1006,1008,990,902,891,898,905,900,908,903,908,801,803,808,803,825,793,796,789,822,815,777,811,816,814,706,741,730,733,739,716,728,749,725,709,714,759,736,728,733,757,601,602,579,575,568,579,592,592,553,570,565,551,549,598,566,584,588,597,580,583,575,577,557,1013,997,1016,1030,990,1035,1016,1100,1012,991,1032,1030,1042,1051,1068,1041,988,966,988,964,957,975,948,945,964,988,973,965,995,944,970,967,951,962,968,966,942,734,749,735,726,744,740,755,771,545,575,569,555,541,569,559,583,555,568,576,585,966,976,972,1060,972,959,943,948,986,963,975,985,920,942,958,953,972,954,957,963,944,933,944,933,947,951,946,964,968,938,968,968,944,950,961,956,990,954,938,959,964,955,953,850,848,878,832,817,848,841,822,832,819,831,626,579,608,590,582,579,610,613,591,556,589,591,609,574,613,613,501,507,527,535,541,490,507,501,489,499,504,477,516,498,523,532,541,563,513,520,529,549,529,529,542,533,618,627,626,611,623,609,604,627,606,613,691,697,674,696,721,738,723,591,605,600,588,596,606,604,588,606,585,601,603,586,592,588,569,614,611,600,987,956,950,975,978,980,974,963,955,980,957,905,883,903,892,889,895,883,871,864,910,879,877,899,872,866,880,893,878,887,876,981,983,998,976,1009,997,991,1007,1003,997,995,978,1012,983,864,878,869,841,867,876,871,856,840,864,825,879,844,850,892,1075,1060,1031,1054,1048,1049,1054,1069,1044,1059,1055,1033,932,936,903,906,920,903,934,909,939,932,903,901,894,915,898,924,952,907,941,902,954,917,800,799,816,804,800,801,800,815,791,803,801,798,800,804,776,585,623,599,612,635,607,573,594,613,595,602,624,592,568,564,555,559,574,557,555,561,576,558,573,561,1052,996,1049,1059,1096,1027,1072,1036,1039,1058,1077,1033,1061,1036,1025,1029,1017,1051,1014,1049,1038,887,848,839,833,870,849,867,868,847,883,829,858,852,856,597,598,582,602,594,579,593,598,569,579,615,984,942,907,870,935,935,916,914,906,921,896,909,895,886,865,876,892,858,888,886,898,674,659,641,655,672,652,676,668,662,678,694,676,885,892,920,966,946,968,951,957,963,920,945,973,953,961,951,864,816,846,817,850,853,833,835,849,812,872,846,844,844,843,926,921,899,901,935,942,944,957,928,924,916,945,945,955,951,926,967,965,963,902,933,917,915,914,933,910,928,921,914,930,936,951,946,925,930,928,915,925,968,954,939,979,960,963,972,964,983,981,966,964,964,975,963,961,977,976,976,970,878,884,865,867,894,880,869,879,838,890,881,891,855,857,870,864,879,852,890,883,690,630,630,624,677,621,667,619,627,669,632,656,634,609,657,555,563,571,568,569,551,552,578,546,565,562,550,550,577,565,565,584,541,563,562,561,558,562,568,556,556,550,569,558,559,555,564,568,624,641,643,611,611,609,631,624,607,607,1001,978,998,1006,987,989,999,1012,990,1002,976,671,661,681,667,647,660,672,633,618,647,678,637,667,669,640,557,942,935,913,897,919,874,907,895,932,931,902,924,951,933,922,927,922,938,937,939,926,857,879,879,895,848,870,858,872,882,878,877,891,893,888,896,887,812,780,784,789,806,810,787,793,779,781,797,799,793,781,789,768,616,629,613,618,634,635,617,625,630,629,631,599,1119,1048,1123,1116,1088,1152,1086,1107,1087,1132,1129,1148,1124,1125,1099,877,878,863,872,878,873,864,852,900,863,872,1002,1006,1014,992,1014,996,999,1002,1002,1012,1015,876,891,889,900,892,872,886,879,883,882,868,874,885,870,870,863,860,850,846,845,840,856,844,837,871,857,859,843,844,770,774,775,776,770,781,789,759,814,790,747,755,760,615,632,596,643,606,615,637,653,646,625,623,597,612,606,585,611,601,609,593,619,625,597,626,612,604,601,604,614,595,870,870,833,830,878,783,858,816,843,819,793,850,776,831,834,638,650,612,654,635,598,622,625,638,583,563,656,545,524,546,541,508,565,553,551,527,541,535,528,551,561,539,532,1038,1019,1033,999,1040,1010,1049,1047,1013,1002,1040,994,987,1047,1021,1040,1006,1007,1021,1017,923,930,935,949,951,950,942,962,945,979,939,962,952,950,927,970,954,974,975,981,986,972,985,960,984,980,986,985,983,955,974,800,828,825,805,806,807,839,808,813,797,827,833,632,609,628,621,574,604,595,596,607,594,1058,1071,1024,1049,1036,1060,1049,919,953,964,965,952,953,953,965,967,940,932,966,954,952,959,958,962,959,982,837,838,841,840,842,843,843,848,833,864,858,828,974,982,995,1002,976,974,964,990,1003,982,974,857,820,819,840,858,842,833,830,838,848,872,848,854,831,841,637,622,642,622,630,628,630,625,633,640,1144,1110,1154,1046,1127,1101,1147,1130,1070,1105,959,964,936,948,965,949,949,945,920,962,955,945,953,972,941,961,965,930,945,921,946,959,963,959,970,971,848,827,844,846,841,827,842,839,810,834,833,831,831,852,638,673,632,645,653,649,655,652,650,639,670,664,646,829,809,821,826,800,821,863,861,851,826,863,788,848,842,828,837,659,661,684,664,671,661,662,669,665,660,668,643,694,608,623,601,624,608,576,591,596,602,614,616,827,824,806,837,823,813,820,817,799,779,788,784,826,807,822,778,785,682,670,654,662,660,664,653,683,670,649,692,683,668,676,712,676,682,652,621,640,655,616,642,608,620,595,952,983,965,997,938,953,952,965,979,964,952,962,682,734,723,691,726,696,704,704,694,672,698,718,692,697,726,696,716,690,730,617,582,595,617,595,601,613,603,606,1066,1121,1096,1059,1084,1090,1077,1177,1129,1084,1134,1081,1086,1142,1070,898,957,943,962,906,921,918,935,911,942,923,921,940,1051,1030,1011,1042,1039,1039,1062,1048,1041,900,912,846,893,869,898,905,903,889,884,902,889,859,857,885,888,894,896,880,884,882,876,883,887,891,699,695,715,689,720,717,694,666,693,701,671,826,855,849,820,834,892,814,857,842,843,835,882,841,827,825,764,782,767,783,766,778,778,770,783,777,780,738,758,732,770,757,758,748,745,750,734,776,740,711,752,741,740,718,696,730,717,708,741,730,713,742,692,704,709,736,704,727,719,945,961,944,967,983,956,964,970,862,836,843,856,844,818,852,812,840,813,831,828,935,974,977,944,939,940,989,921,958,937,929,997,959,944,921,977,946,967,956,970,944,978,976,967,944,968,970,965,966,959,988,950,966,966,970,967,983,965,826,791,844,839,845,826,634,615,637,617,621,632,656,611,614,619,1098,1082,1128,1069,1055,1104,1112,1108,1060,1114,1090,1130,1104,1088,1099,1066,1053,1109,933,965,946,927,911,914,937,954,932,914,906,953,958,952,958,930,906,919,1008,1009,1020,1014,995,1027,883,858,824,890,848,886,840,863,869,891,844,863,626,615,620,578,628,591,578,566,620,576,589,636,564,587,586,576,586,578,556,578,586,541,589,576,586,594,598,1121,1144,1114,1115,1038,1149,1135,1077,1092,891,908,994,955,940,896,940,948,893,908,955,890,919,585,594,551,582,556,563,567,586,554,548,565,597,616,609,582,597,612,589,585,597,601,618,572,591,588,580,605,606,598,586,596,619,618,589,627,609,622,624,597,607,643,605,627,619,611,595,965,978,961,997,1044,948,978,996,1007,986,1015,1036,1018,1041,998,1016,909,893,926,912,885,894,895,902,908,667,730,750,703,705,698,708,735,698,712,700,704,601,641,628,634,624,622,641,632,627,639,615,627,631,614,625,592,596,590,620,602,612,592,610,623,595,631,602,592,613,601,585,601,620,609,1029,1002,1010,1016,1003,971,997,945,991,979,1019,967,998,1042,1028,1036,1029,1024,999,1014,1033,1038,1037,1014,1013,872,868,874,892,862,869,883,848,896,902,892,872,977,998,1004,1001,983,972,962,1020,969,923,979,991,931,1018,954,934,962,964,965,968,978,979,953,970,995,969,950,967,973,962,933,939,933,909,905,934,906,927,916,935,933,942,603,671,644,640,598,607,657,618,606,592,626,629,641,614,587,573,596,602,580,569,566,574,584,579,585,591,589,573,571,569,568,578,563,547,563,568,572,586,556,587,582,586,570,560,574,863,886,866,849,864,864,871,855,865,866,871,872,865,832,851,864,840,647,616,643,640,657,616,643,554,552,568,575,564,570,564,553,571,563,580,558,631,653,635,656,638,654,668,640,649,650,657,640,635,652,653,653,655,649,664,644,644,630,636,635,1033,1032,1024,1019,1052,1045,1052,1039,1022,1029,944,873,930,938,900,934,913,895,928,949,957,889,930,831,810,798,803,777,822,787,781,797,798,794,795,606,638,654,629,635,640,642,643,634,627,1046,1042,1032,1031,1046,1043,1036,1017,1076,1030,1017,993,1073,1029,1062,1071,1047,866,852,878,847,831,836,873,877,906,862,854,873,807,875,875,876,539,537,550,542,563,515,531,544,538,546,522,652,629,665,641,628,622,646,632,636,617,630,623,645,645,609,657,675,655,678,676,673,668,684,672,662,679,673,658,652,668,653,683,930,891,910,931,904,938,925,886,901,912,924,945,923,929,909,937,936,949,965,935,953,931,940,929,863,879,881,889,917,878,900,914,891,902,881,950,936,943,948,971,979,926,948,947,925,937,931,957,936,965,956,872,886,887,859,877,870,881,873,907,886,896,874,889,878,882,881,849,878,869,816,840,834,824,827,815,830,836,801,835,842,854,828,863,830,830,753,775,734,798,736,757,781,787,766,754,775,749,618,635,643,634,656,611,599,633,599,626,605,625,606,625,608,598,883,888,856,892,880,886,877,879,904,885,876,888,876,896,882,869,889,871,704,751,728,707,702,749,715,684,733,739,714,705,714,731,724,713,718,878,863,923,881,888,869,903,907,872,890,882,934,875,876,866,865,916,886,903,900,898,866,618,623,655,630,641,618,641,611,632,675,621,646,657,644,657,1035,1067,1041,995,1017,1070,1046,1012,1052,1019,996,1045,1049,1043,1033,1026,1045,966,928,966,948,905,874,970,947,921,775,789,788,782,788,788,808,777,804,802,789,785,792,765,970,996,986,963,982,999,967,996,980,1013,995,999,961,997,999,883,870,891,888,917,910,905,908,879,884,880,852,878,922,887,624,594,605,595,611,614,621,606,592,607,627,633,624,614,619,628,603,617,625,604,558,542,537,574,536,547,543,542,558,603,627,618,607,599,622,618,633,611,599,605,619,617,602,594,629,618,592,601,621,706,685,696,695,697,712,636,633,628,626,624,617,610,623,632,636,628,629,630,1019,988,946,999,974,991,1022,955,950,1037,1013,1030,990,857,821,861,865,864,837,854,882,819,855,847,844,876,836,855,848,829,967,963,877,901,892,907,945,906,909,859,885,997,987,990,995,998,981,985,996,994,972,980,954,975,992,1027,1034,1013,1021,1011,1010,997,1004,993,1010,1018,798,797,744,809,809,764,808,772,792,791,745,775,768,781,790,755,771,782,775,784,593,583,558,576,590,613,577,582,600,605,564,573,570,571,603,607,1197,1070,1120,1121,1152,1087,1142,1094,1053,1052,968,991,965,996,967,1004,997,992,983,997,984,986,860,851,857,865,845,873,871,859,864,845,846,848,868,840,860,861,851,856,831,877,840,636,628,662,664,648,689,628,635,646,659,641,667,639,673,684,632,619,662,745,793,786,784,801,774,751,782,753,765,1023,990,1028,1026,893,893,910,896,907,898,894,910,916,915,897,851,888,859,925,910,897,878,913,618,634,648,615,621,633,647,628,600,595,651,652,548,548,525,553,593,569,595,588,577,574,594,592,587,573,586,577,566,571,613,595,600,604,597,619,598,614,599,619,635,667,639,653,652,629,646,632,660,660,635,646,655,651,671,648,636,657,624,670,639,629,652,629,587,594,585,590,583,575,594,577,574,579,587,578,595,569,954,980,991,1004,1011,947,971,947,952,944,1034,1016,990,961,929,889,917,910,881,907,906,897,881,877,894,912,718,731,720,703,708,735,733,739,724,722,763,993,1016,1000,1018,1006,1026,1070,1039,1029,994,998,1013,993,1043,999,1017,1014,839,839,798,816,808,831,820,814,812,809,840,626,628,591,617,607,654,653,646,1064,1081,1121,1116,1151,1076,936,942,947,960,971,963,965,952,956,947,992,922,966,957,948,959,696,644,656,674,629,715,669,688,689,627,629,612,618,625,629,618,622,611,633,623,620,626,625,634,600,647,655,643,639,616,635,653,624,630,643,650,644,620,637,630,643,627,612,617,630,627,631,605,616,643,640,615,619,863,847,852,828,860,868,845,836,815,869,847,777,766,786,777,770,774,779,783,800,786,688,680,665,681,682,659,689,680,656,663,652,657,677,691,664,675,682,937,943,931,972,948,909,935,963,934,971,661,676,666,686,703,687,695,672,677,656,705,644,682,645,725,652,695,678,699,648,675,679,669,594,562,575,579,563,572,553,569,580,557,524,533,529,520,514,536,541,520,517,539,519,535,542,551,538,526,626,595,615,638,629,624,604,633,634,614,638,625,628,631,614,615,633,661,634,618,652,664,633,663,617,638,638,1014,990,976,1007,995,1016,1012,1008,1048,1067,1020,1047,1009,1004,980,984,1002,992,991,984,1002,966,980,982,926,881,888,845,863,889,898,892,869,852,887,875,867,897,869,955,935,947,912,867,967,947,985,928,940,952,988,948,957,968,954,973,965,959,971,974,981,964,956,973,955,853,847,871,858,859,842,871,841,851,863,853,856,881,867,864,814,876,883,855,844,1127,1155,1126,1149,1112,1090,1115,1127,1147,1128,1133,1134,1099,966,976,989,959,970,988,942,975,964,591,594,610,621,630,616,568,635,587,628,549,622,618,627,582,616,601,595,666,615,559,551,537,570,569,582,561,564,533,543,564,556,557,568,573,553,565,882,893,882,914,905,897,914,939,922,675,669,657,627,660,696,664,652,665,658,665,674,681,689,1051,1055,1065,1140,1093,1048,1023,1046,1112,1103,1062,1073,916,937,905,928,948,933,917,702,625,663,653,675,680,685,632,660,684,620,673,642,643,662,647,793,857,842,811,798,837,875,808,874,646,644,643,650,622,680,645,623,666,664,650,651,655,659,625,618,604,586,587,594,595,609,616,607,619,571,599,612,636,646,634,647,637,641,642,633,1081,1078,1061,1075,1035,1070,1093,1097,1111,1075,1025,1113,1077,1092,1083,1074,1128,1076,932,967,934,946,947,929,960,960,956,1011,1001,1005,998,995,982,1009,1010,1018,1011,1004,1007,991,987,994,860,860,844,834,839,840,866,885,865,871,878,845,849,913,825,879,891,1084,1079,1129,1082,1089,1098,1174,1109,1097,1096,1080,1087,1090,1091,991,1003,986,994,964,1010,1002,983,1022,1028,994,968,994,988,993,1002,1011,904,897,904,918,896,883,884,901,820,779,788,819,797,833,798,814,790,831,822,805,803,804,789,796,801,734,743,744,719,744,759,746,752,730,766,720,773,736,714,749,733,736,728,752,709,760,743,718,725,730,702,743,704,1005,1004,1025,998,1013,1026,1031,1019,1033,1004,916,929,936,960,939,921,942,913,948,937,944,925,915,972,784,793,787,804,781,792,617,576,594,610,609,600,601,591,578,577,577,637,588,599,954,955,920,923,941,953,967,933,925,944,989,943,935,926,953,942,955,960,967,952,960,965,954,939,963,963,953,977,944,955,952,945,959,966,977,950,943,811,835,859,839,853,813,815,832,822,836,817,836,645,653,669,659,638,692,649,654,635,647,654,614,680,696,686,927,921,957,914,950,934,954,960,957,911,956,957,956,948,990,925,971,982,965,953,986,1013,980,987,977,976,997,977,1014,999,955,982,833,833,838,816,838,827,846,808,846,831,829,824,812,820,845,833,640,649,651,624,634,641,626,633,612,648,651,630,651,874,871,875,884,870,850,868,922,882,877,883,894,883,901,904,639,713,712,728,705,671,653,698,663,720,680,667,688,705,662,686,665,702,677,717,873,651,644,613,648,621,652,629,658,674,665,647,664,658,640,647,648,637,625,637,625,1046,1080,1020,1025,1013,1030,1050,1022,1024,1022,990,1031,1019,865,901,882,878,887,844,920,898,899,878,899,870,874,623,607,596,630,620,588,587,624,608,588,625,593,595,609,605,634,627,609,621,624,620,608,626,630,620,621,616,625,622,928,978,928,956,926,963,954,912,917,913,966,903,917,934,902,971,943,928,961,948,984,959,958,992,972,959,970,963,982,977,974,996,958,977,983,983,990,849,844,849,856,830,886,842,861,877,844,849,848,854,685,648,648,664,650,678,674,642,661,656,652,665,821,807,794,801,769,835,789,814,787,802,822,788,786,760,821,770,800,641,669,676,664,652,663,651,657,649,635,647,649,635,640,652,682,662,651,655,652,655,644,644,657,669,663,651,635,664,642,648,664,556,567,587,555,548,564,564,558,575,579,537,552,560,557,571,556,562,546,570,575,556,947,921,997,945,964,998,973,912,1006,859,812,797,841,837,839,858,831,800,853,839,830,809,827,829,825,662,665,690,679,673,657,658,674,657,700,661,658,680,689,672,694,1061,1072,1072,1078,1073,1069,1040,1057,1080,1061,1059,1083,1049,1068,1028,787,769,730,764,804,760,739,765,761,744,761,821,765,804,841,828,814,816,852,828,826,836,820,845,854,818,753,753,718,740,658,616,640,651,635,628,662,640,635,631,645,637,618,625,630,625,646,782,789,791,800,789,777,796,759,795,797,800,1006,994,990,986,989,994,1001,991,1010,922,895,907,929,892,908,812,815,822,786,792,774,762,976,965,980,964,966,948,957,944,942,960,976,956,961,981,947,960,880,854,873,856,838,835,871,877,891,848,860,862,863,867,878,850,1155,1154,1134,1181,1169,1133,1149,1174,1157,1132,972,920,968,988,967,986,986,975,981,949,929,957,972,956,949,969,923,973,952,959,950,970,975,961,982,901,909,898,927,889,902,903,903,894,927,910,921,910,925,915,928,934,915,911,917,848,837,813,849,844,818,810,829,803,815,818,816,636,618,669,634,637,639,641,657,627,642,624,618,637,667,641,640,1090,1100,1113,1069,1115,1111,1117,1172,1135,1160,1088,1111,1097,1101,954,935,927,939,900,903,913,924,906,931,905,928,914,930,938,913,939,962,944,972,939,925,923,967,955,970,923,946,904,924,949,936,920,975,961,964,968,984,958,977,974,979,958,980,921,888,916,926,900,892,900,913,911,910,921,785,771,754,776,772,758,762,759,764,742,784,774,757,770,790,783,756,766,651,665,657,638,647,658,639,656,642,670,645,604,621,613,624,620,621,593,594,618,616,614,615,969,952,972,958,976,923,978,961,982,968,995,934,958,967,1009,972,984,974,919,931,935,927,916,916,931,930,945,956,951,946,939,904,954,914,912,940,933,987,979,978,980,987,976,972,969,986,958,966,981,1002,995,971,833,809,789,826,851,835,838,800,850,827,864,876,833,851,848,928,921,1004,935,906,987,949,903,923,974,978,986,971,1002,984,949,966,920,971,981,971,964,994,994,747,794,818,794,813,794,821,832,852,781,808,819,510,496,476,474,484,501,504,529,520,530,545,531,539,530,528,554,547,558,537,547,545,527,543,619,606,619,608,602,607,610,643,651,627,644,647,639,648,633,651,643,635,650,628,1100,1067,1048,1113,1020,1082,1100,1081,1089,1105,1056,1098,1102,1069,1085,849,885,890,905,883,902,902,921,896,907,901,887,912,884,900,847,818,873,813,852,889,877,907,884,855,878,873,871,874,899,869,896,852,847,882,890,833,798,798,825,781,825,807,835,817,786,834,802,787,788,811,826,585,605,630,624,596,625,601,618,608,620,650,1039,1075,1034,1060,1058,1026,1035,1043,1030,1091,1056,1029,1014,1039,1044,836,900,878,884,919,905,910,865,898,621,618,632,654,603,595,628,639,587,629,667,627,613,607,598,613,603,610,658,656,627,647,646,679,649,632,634,667,641,664,637,658,643,639,639,639,600,610,611,617,614,613,614,617,598,636,609,617,565,590,575,582,578,559,582,579,575,579,584,1005,1015,993,1009,987,1030,975,1018,988,986,935,922,895,900,867,938,898,904,905,667,675,654,590,694,660,640,623,612,650,617,635,648,629,636,657,621,651,648,625,634,630,646,1007,1029,1066,1076,1027,1016,1074,1034,1071,1037,965,960,959,950,960,957,940,971,924,953,934,959,934,950,979,832,810,840,822,828,821,829,841,832,795,830,836,813,819,838,815,801,749,746,741,752,762,756,757,766,617,641,645,644,625,644,633,650,652,634,647,672,638,658,634,631,610,673,665,694,690,706,670,655,678,661,707,676,912,914,899,917,922,927,936,907,928,908,950,885,926,989,981,937,984,996,998,1002,1001,981,1005,855,880,857,871,880,887,893,882,901,861,853,848,868,850,867,892,860,634,618,593,615,608,592,625,605,605,613,627,611,591,603,594,601,621,600,1058,988,999,1038,1043,1059,1065,1034,1038,1030,1043,1013,1020,992,1018,973,905,883,893,915,914,905,878,650,672,678,669,675,631,651,672,661,663,647,679,670,882,849,844,886,877,864,877,875,735,731,763,725,778,758,741,755,750,747,768,716,755,754,762,714,1022,980,1014,1031,996,1009,1015,1020,969,1033,987,1021,991,980,1013,823,861,812,824,811,818,825,832,854,843,828,634,620,596,647,609,628,616,623,638,623,645,642,618,606,600,628,633,613,659,655,1055,1069,1033,1070,1035,1040,1043,1010,1033,1046,1015,1067,1051,902,910,915,904,916,903,916,881,874,894,857,894,923,904,881,894,912,582,616,611,602,612,595,611,640,598,590,595,604,615,591,587,610,598,599,581,561,616,558,549,510,551,530,532,527,539,533,529,556,591,583,587,564,577,552,591,586,574,551,555,568,597,577,565,607,566,538,1114,1137,1133,1134,1153,1183,1120,1198,1089,1138,1146,1186,1168,1128,1187,1068,1103,1161,1103,1099,894,934,904,916,904,898,885,944,894,934,915,902,909,927,910,923,904,910,928,964,550,585,582,556,602,543,603,586,560,588,591,591,555,599,578,824,865,870,782,828,812,835,841,828,818,861,795,833,877,881,889,892,867,874,894,906,870,912,891,890,899,930,915,910,925,909,905,922,914,907,936,895,904,938,921,906,918,919,905,980,1002,989,977,998,988,973,998,954,836,860,858,867,856,892,869,841,857,888,843,887,865,888,864,594,594,661,616,609,572,592,570,578,604,591,586,584,581,1128,1154,1075,1131,1077,1125,1045,1110,1125,1094,1086,1159,1119,1084,1077,989,1007,1014,960,1002,992,992,980,976,983,1002,674,682,643,642,686,667,641,667,643,663,681,637,680,654,618,579,589,579,588,615,866,865,881,891,892,898,875,864,874,869,893,880,855,865,850,875,887,873,889,688,692,704,722,683,704,729,728,692,708,721,688,862,832,894,837,850,847,841,872,844,818,863,858,844,807,848,869,869,889,876,873,893,893,882,855,872,872,852,879,885,876,868,608,650,627,600,658,616,626,605,612,622,628,1051,1065,1092,1087,1110,1055,1060,1141,824,815,798,826,804,803,851,832,799,802,801,814,791,820,806,609,672,630,648,646,642,638,606,594,650,659,656,629,934,924,952,914,919,936,910,898,906,915,936,923,993,993,1001,978,1022,1027,980,989,999,1016,1016,985,1001,995,1006,1005,877,874,879,878,888,874,886,875,901,869,871,871,876,882,878,927,880,1030,1006,1011,992,1030,1005,1022,1012,1017,998,1035,990,1007,950,943,945,907,931,955,930,924,938,941,955,933,935,923,949,633,668,666,677,661,648,641,676,686,686,664,657,675,825,816,799,786,823,803,833,842,813,811,746,752,730,748,762,757,746,753,736,752,756,743,770,739,766,656,662,681,673,667,680,648,937,946,953,929,962,980,946,921,960,929,938,939,937,934,935,946,790,814,797,813,800,801,802,787,794,794,805,798,810,825,674,654,664,666,692,643,639,663,682,681,686,666,688,632,622,620,618,640,636,644,640,645,642,635,603,644,650,644,659,644,875,849,855,870,857,1006,961,950,944,973,948,992,961,961,1002,959,970,1003,996,997,980,903,920,910,914,885,918,893,882,912,906,899,907,879,733,749,776,744,739,743,752,741,769,739,937,941,932,931,940,916,963,955,946,941,931,952,925,922,932,956,924,940,926,937,959,973,975,986,979,958,956,1003,992,980,987,953,976,841,796,853,855,839,840,848,818,826,991,1000,998,956,978,1017,1038,1024,978,991,977,977,955,979,985,962,943,970,974,976,959,943,967,964,964,950,970,971,934,951,858,858,858,876,857,854,855,855,872,874,833,872,855,871,854,869,837,864,853,855,856,864,850,843,864,849,862,790,785,772,777,796,786,764,779,766,769,775,778,780,773,788,765,757,770,781,794,612,601,603,618,595,602,629,610,623,592,606,587,963,915,941,954,999,971,953,951,962,947,926,941,908,966,937,914,915,939,940,951,945,930,928,918,933,941,852,841,846,811,838,835,843,845,859,835,814,834,968,972,963,963,974,938,940,977,966,959,972,950,948,954,964,979,981,965,956,970,972,972,972,969,978,949,964,963,973,852,859,843,883,856,852,834,871,852,872,878,847,835,824,833,852,843,829,826,817,839,831,822,838,809,821,807,620,581,618,599,590,593,663,643,591,637,618,618,623,621,660,516,510,529,536,516,548,526,529,498,541,546,537,534,549,540,576,577,599,576,592,588,585,598,577,573,574,582,571,592,606,593,583,589,573,616,598,603,607,595,600,599,584,560,576,554,545,565,569,567,568,552,569,568,603,595,617,590,625,608,590,592,590,591,610,596,596,606,591,612,593,576,583,581,594,581,574,565,579,571,579,575,575,578,569,582,595,571,566,588,577,587,584,605,630,604,622,631,629,630,633,624,633,619,606,903,982,928,928,938,932,948,973,974,938,920,733,749,782,753,742,740,741,736,760,780,739,715,911,916,931,910,943,909,928,898,913,913,924,917,911,947,947,949,937,966,964,948,969,963,928,962,944,947,952,967,957,986,928,914,910,892,887,912,882,898,763,811,790,802,772,790,793,803,759,805,770,782,796,642,641,638,633,639,625,631,651,630,660,645,635,660,638,647,674,659,620,609,591,587,585,579,577,589,583,598,563,583,1096,1104,1070,1085,1104,1134,1130,1081,1138,1092,1096,1150,1112,918,951,902,930,899,905,936,951,873,933,918,917,892,926,919,873,646,657,648,692,654,653,684,675,695,678,660,707,698,685,681,761,769,724,760,783,761,761,778,773,740,790,768,780,772,753,772,757,952,962,935,953,961,946,775,787,810,783,794,783,787,797,644,599,619,651,636,655,622,602,635,626,611,643,644,828,830,825,835,782,790,783,797,811,801,812,988,972,978,989,941,976,971,890,856,896,914,894,897,871,904,899,928,591,579,575,585,573,586,601,573,590,604,565,579,969,952,1014,986,973,983,961,984,1021,1014,1026,992,1035,988,981,1004,992,959,990,868,880,878,898,876,899,910,879,902,878,898,918,897,992,987,955,984,997,983,1026,968,1019,1008,1000,964,1010,1031,1015,1030,1035,1044,1032,1029,1037,1015,1034,1044,1014,1035,1027,1019,1028,1026,998,1025,1028,1014,1022,1012,1025,1022,1038,1022,1026,1027,890,860,877,884,892,877,891,631,622,661,649,655,677,640,654,629,635,675,660,674,826,869,820,844,816,858,812,819,836,831,821,851,821,838,803,865,810,822,803,796,845,745,760,781,783,772,775,769,774,791,786,772,761,756,754,763,763,757,762,744,764,760,754,755,770,764,637,644,649,610,658,651,613,633,655,627,643,645,639,650,644,663,874,832,879,904,871,906,888,834,881,868,901,893,912,895,895,873,898,890,852,690,651,620,659,639,665,649,684,658,667,671,653,669,655,669,662,654,682,621,1061,1071,1074,1045,1099,1079,1039,1114,1040,1031,1099,1041,1077,1093,1085,1073,1053,1066,910,934,906,896,906,928,862,915,909,888,908,908,905,574,597,564,602,586,561,578,621,595,624,609,612,565,550,597,584,616,594,641,599,626,607,646,599,606,617,605,603,622,613,608,619,615,602,615,584,577,592,602,613,604,593,586,580,601,589,597,593,589,589,597,595,577,574,597,582,578,581,598,582,577,855,914,885,888,894,917,901,894,708,697,705,692,701,677,690,683,669,672,672,674,676,642,646,643,642,665,685,674,684,646,687,696,678,665,674,685,671,680,688,671,624,600,611,595,612,612,599,627,612,621,601,612,609,596,611,617,578,581,565,583,581,570,551,565,568,571,560,564,556,550,898,954,884,924,880,940,933,883,711,749,710,727,697,854,879,842,924,880,868,861,875,862,844,892,854,839,863,871,766,749,773,790,796,764,762,801,785,776,769,784,783,771,620,618,638,633,612,637,637,645,592,578,575,581,580,580,586,554,589,574,589,576,574,579,595,578,600,587,618,606,616,602,615,625,610,620,617,645,614,590,631,612,624,604,628,614,1090,1102,1079,1053,1106,1099,1048,1087,1092,1073,1149,1098,1117,913,941,901,895,965,914,936,934,908,949,926,948,922,933,955,907,955,907,927,961,952,964,945,961,959,950,982,946,969,945,952,964,956,938,958,966,960,976,802,808,815,812,813,802,827,836,793,838,951,959,982,969,988,978,1002,966,955,974,977,971,966,953,978,859,877,860,850,888,843,867,849,863,863,853,906,659,642,623,664,697,681,652,644,651,681,640,640,637,657,822,845,850,820,837,836,847,847,826,825,817,859,823,872,812,827,819,825,753,742,748,775,759,767,758,765,764,767,747,761,773,763,755,761,760,781,736,765,748,644,647,653,631,672,642,650,642,653,642,601,649,656,641,645,629,632,646,634,814,798,775,821,789,839,823,811,807,795,812,800,832,828,786,789,806,808,966,955,969,970,962,944,944,937,953,939,945,968,945,932,964,895,871,904,876,876,876,886,884,889,856,875,871,881,859,890,840,837,845,845,841,850,859,851,836,844,858,850,860,845,842,857,827,829,841,841,614,648,660,623,614,662,638,628,609,620,650,597,597,581,575,593,598,584,584,577,580,567,574,579,598,587,892,894,842,876,888,906,931,870,895,795,799,797,790,794,807,797,807,776,790,790,791,799,797,808,821,810,787,803,623,604,611,615,642,611,613,618,622,624,1009,1010,1032,999,1018,997,1030,1001,1023,1008,1004,1036,1042,1026,1030,1026,1025,916,865,883,915,926,891,921,873,911,918,894,799,816,837,808,810,842,813,838,811,818,851,826,830,809,811,820,823,843,1034,1042,1041,1045,1016,1015,1044,1042,1029,1036,1041,1022,1020,1028,1029,1023,1032,1037,1033,1032,855,903,855,871,903,839,885,901,900,842,855,865,903,521,538,562,508,520,555,541,543,552,545,561,564,523,534,550,507,530,526,526,561,596,568,571,563,596,1042,1097,1040,1091,1161,1107,1136,1064,1141,1054,1100,1151,1054,1126,1173,1081,1166,996,1014,991,992,1005,1014,997,1008,995,1011,990,1016,993,989,990,1016,987,996,869,868,861,846,874,887,873,847,876,853,865,867,877,848,883,891,893,858,753,682,718,742,707,756,707,707,706,729,712,740,923,904,902,900,894,891,897,890,888,907,891,923,997,980,948,992,982,997,973,959,983,994,970,966,907,917,939,876,882,907,923,922,908,917,888,926,650,603,581,665,616,639,611,627,648,580,612,587,629,627,600,614,604,624,605,588,600,584,614,619,619,601,609,609,610,604,615,607,608,607,608,586,597,593,588,648,608,608,622,610,985,945,971,960,939,978,932,984,962,936,1034,930,1006,975,995,996,1021,972,972,1002,1000,982,966,980,989,839,814,853,859,833,848,839,892,852,857,846,864,855,852,809,855,851,832,832,860,843,1034,1058,1040,1033,1031,1024,1025,951,940,942,915,951,921,941,907,930,825,828,810,793,810,810,839,785,850,808,821,794,792,799,844,979,991,979,959,1028,971,992,987,994,978,885,869,885,879,891,881,885,874,862,865,890,864,873,866,850,846,873,875,774,762,793,755,766,761,781,796,774,783,778,773,791,765,680,644,669,657,680,630,666,659,653,662,681,645,625,598,630,619,633,639,623,660,645,626,639,641,627,621,620,861,848,872,875,834,820,835,827,873,841,855,874,897,856,857,863,980,986,979,996,973,987,983,996,972,985,881,876,869,879,891,868,895,881,572,602,558,590,591,605,606,524,625,562,558,563,575,555,559,583,566,541,551,570,552,550,596,925,877,866,867,880,922,893,837,900,858,897,906,919,846,863,900,893,782,775,766,808,804,765,745,786,788,758,809,812,740,778,592,626,592,595,599,607,614,608,606,610,590,593,589,618,610,588,574,985,1032,1061,1024,1011,996,995,1020,1005,980,1005,983,995,1036,1019,1022,1009,1002,876,836,845,866,861,834,843,821,873,842,597,614,606,599,616,603,612,605,593,951,971,938,954,1017,977,976,960,942,685,686,696,691,689,673,685,693,686,689,686,690,700,711,644,689,969,974,999,979,938,955,1002,1002,1002,938,1012,1020,1011,989,998,993,875,884,868,819,848,863,851,865,859,837,870,858,842,855,879,853,851,877,830,837,549,593,565,569,576,557,587,612,551,595,608,811,830,915,822,806,878,852,846,878,863,830,832,847,868,759,766,761,782,769,779,764,769,739,758,766,775,765,645,650,601,645,640,648,653,642,639,617,645,613,1091,1128,1121,1092,1101,1075,1100,1106,1133,1068,1119,1097,1123,1104,931,987,930,967,976,975,953,958,590,601,618,575,611,603,593,612,595,591,596,631,620,615,632,613,622,690,700,678,683,707,654,660,672,653,676,675,696,680,691,691,671,664,704,600,615,606,606,601,606,585,594,609,597,606,593,603,614,609,1103,1045,1123,1057,1042,1042,1063,1015,1096,1071,1036,1073,995,1065,1083,949,969,977,946,978,976,950,956,957,915,952,954,993,959,952,806,849,843,792,823,815,841,831,850,839,816,830,843,825,667,672,686,659,686,698,668,680,658,660,665,692,688,663,690,699,660,629,650,628,656,650,627,636,660,658,657,644,644,644,1045,1055,1018,1080,1065,1052,1082,1061,1073,1045,1031,1008,1009,1016,1029,1020,1035,1027,1013,1023,989,1026,1048,993,1014,1011,940,914,933,908,940,946,916,896,887,942,896,887,900,915,603,580,611,617,604,618,623,608,617,590,619,589,594,613,596,598,587,582,592,601,598,609,629,623,646,643,639,622,646,620,645,644,658,630,615,613,938,954,934,953,952,932,971,908,668,679,656,669,660,638,668,663,662,711,670,642,655,678,640,644,648,1044,1050,1034,1007,1096,1056,922,958,947,952,958,965,946,967,931,935,943,966,943,953,965,960,964,954,943,771,758,726,765,738,741,765,749,733,734,739,774,767,777,748,737,734,579,618,594,561,583,575,586,595,567,523,543,534,540,510,541,527,541,546,533,520,541,542,532,538,534,541,523,542,527,578,555,579,566,558,580,570,562,579,546,978,1022,996,978,994,1017,678,650,649,635,643,641,656,665,629,669,677,922,945,939,932,920,925,943,903,932,937,924,899,928,912,908,918,918,942,924,920,925,865,902,896,884,931,890,875,919,898,920,885,881,913,889,915,888,884,939,916,912,913,904,920,891,906,914,901,888,913,923,832,833,839,822,800,794,776,802,760,802,797,784,822,776,781,825,801,799,799,827,569,556,542,542,539,546,571,580,577,539,559,557,1102,1217,1113,1125,1121,1088,1062,1131,1151,1094,1128,1156,1155,1143,956,927,977,916,942,870,556,543,594,539,530,560,555,546,596,604,617,613,590,597,596,609,607,597,609,584,615,566,609,587,600,965,961,932,943,906,751,760,719,703,693,736,776,739,760,721,717,752,743,768,752,752,749,734,703,708,747,901,859,879,888,911,868,878,892,908,873,884,864,892,844,871,653,608,623,620,643,595,578,601,605,629,613,602,911,949,918,920,909,920,929,941,947,909,903,920,904,981,992,888,908,895,918,913,936,912,924,885,910,897,932,907,915,896,917,932,914,945,890,668,656,632,699,626,653,635,663,645,633,674,646,674,634,666,630,663,647,643,624,623,656,664,644,640,656,602,606,606,607,631,612,614,640,603,582,618,621,593,619,642,604,612,635,854,847,845,864,815,864,829,804,830,836,833,812,1046,1046,1034,1035,1035,1039,1037,1045,1033,1034,1069,878,888,929,925,912,915,944,897,932,931,922,889,931,906,892,885,962,1065,1105,1098,1075,1078,1091,1110,1095,1055,1050,1089,1100,1075,1081,1003,984,1006,1016,968,1020,864,877,901,891,917,872,876,883,887,898,911,620,615,606,633,630,623,612,604,636,627,594,635,622,658,609,607,587,620,611,580,607,605,616,614,607,611,594,620,605,612,600,629,620,645,647,648,669,633,649,636,662,645,638,993,968,980,996,1011,1003,976,987,1017,997,1011,989,986,967,993,978,976,1014,977,983,994,971,961,1000,992,986,999,867,857,860,826,856,836,871,867,876,870,877,826,859,854,609,565,581,586,596,574,583,562,567,571,563,669,652,670,690,665,679,686,670,682,687,689,654,675,677,708,703,680,669,674,682,665,664,650,674,654,639,654,649,654,632,662,645,629,865,878,867,862,873,844,828,874,891,856,876,837,852,648,636,679,659,608,616,641,603,637,603,624,645,537,553,535,547,527,531,522,521,534,543,516,640,622,613,610,638,626,621,619,630,654,621,657,636,645,641,641,967,1006,1002,1032,993,1044,1010,1002,975,1026,986,954,1033,1030,746,694,715,725,705,739,715,765,710,651,749,731,742,693,702,741,671,739,736,780,727,756,747,760,754,768,757,708,701,652,687,680,701,691,717,692,712,683,686,684,711,716,687,679,736,701,677,675,698,907,868,873,880,866,891,888,857,892,870,904,901,885,955,940,933,948,933,926,943,972,953,919,940,939,935,908,963,927,927,912,942,909,933,915,928,945,935,933,923,939,925,925,922,928,925,926,942,918,927,931,936,945,933,953,937,941,940,947,956,948,957,952,960,958,963,960,961,968,951,959,986,958,972,934,888,863,846,891,876,870,879,850,836,877,874,841,853,851,863,860,637,586,547,612,552,586,581,577,586,583,572,566,580,616,585,575,595,584,580,582,575,592,561,597,593,583,570,585,600,566,577,573,952,864,889,908,870,883,918,945,881,911,907,906,942,896,931,898,904,924,906,954,951,964,937,967,944,972,952,964,964,969,953,941,938,993,950,951,956,967,966,953,977,947,798,830,805,810,790,796,805,815,853,820,946,894,923,900,921,918,894,896,931,916,918,919,857,892,866,875,905,866,870,828,816,791,791,775,818,818,807,800,830,833,784,802,806,819,797,802,980,983,997,977,965,1002,994,949,986,1005,838,868,855,819,846,853,862,827,839,811,835,838,838,819,854,631,603,627,607,622,616,623,621,626,605,637,605,615,608,601,632,633,621,638,622,642,654,654,658,644,661,642,663,672,645,646,670,667,643,885,881,885,871,866,847,828,881,878,857,877,894,892,870,868,780,761,770,761,781,789,755,756,750,778,781,774,785,775,768,614,629,653,648,634,580,628,626,628,616,601,632,622,640,616,617,607,613,635,630,764,763,780,755,647,651,668,679,670,692,670,653,675,669,685,645,690,673,608,599,583,617,617,596,601,591,600,614,575,611,604,585,584,597,606,607,628,632,645,628,656,628,640,640,657,627,1059,1017,1000,1028,1035,1058,966,939,958,959,923,974,952,954,785,781,807,786,784,810,797,773,780,803,793,800,784,798,808,770,777,779,756,733,758,784,759,749,760,758,762,771,649,652,632,626,652,628,654,608,635,638,641,647,651,630,634,640,1115,1135,1166,1116,1139,1144,1167,1144,1132,1073,1157,1191,1119,1162,873,890,870,889,920,881,898,880,889,875,962,949,959,948,1003,921,934,944,899,981,961,956,951,946,955,935,965,955,932,926,925,929,945,943,949,914,935,936,928,936,930,920,935,918,926,947,927,933,927,924,943,937,933,937,929,936,914,921,930,921,930,836,797,843,820,824,813,766,801,851,832,596,587,587,589,586,611,594,679,633,625,648,614,638,627,657,622,647,647,661,624,666,621,634,612,592,598,608,618,608,600,598,1116,1086,1149,1111,1087,1061,1105,1076,1083,1093,1112,920,950,934,965,901,924,934,944,950,934,954,954,899,920,955,892,937,953,923,922,925,943,893,923,946,954,955,967,956,868,842,864,856,849,844,834,866,879,836,864,873,844,613,587,576,609,585,581,608,603,606,602,620,572,994,981,977,996,984,1019,990,990,1001,1027,974,978,956,989,1035,982,687,673,693,720,688,708,694,697,689,1073,1063,1105,1079,1085,1146,1110,1108,941,930,948,952,925,917,938,899,912,937,927,938,946,837,802,829,827,832,828,821,847,822,829,830,829,831,825,830,834,723,753,736,733,744,752,748,737,721,730,748,727,731,725,768,772,1000,990,1002,992,1008,1012,995,1018,1018,855,873,862,878,868,854,870,855,878,855,869,846,849,865,877,848,1022,1020,1022,1018,1012,995,1021,1048,1044,1016,1009,1016,1013,1001,999,1017,1007,1017,995,1001,842,850,883,839,810,841,851,813,875,860,865,854,818,857,881,542,527,555,542,545,544,551,540,555,534,1054,1086,1016,1057,1067,1089,1062,1075,1043,1059,1050,1081,995,1006,1049,1063,1054,931,942,888,931,948,914,938,904,897,622,624,629,642,622,658,637,620,651,639,648,615,657,640,631,653,651,648,678,643,631,605,616,620,613,634,613,612,600,598,640,614,630,615,609,628,948,943,934,938,942,921,930,920,909,736,751,707,771,744,714,740,720,756,768,739,964,935,892,872,863,877,877,881,849,740,702,687,713,706,701,707,736,729,748,696,738,712,726,703,752,708,717,722,957,970,935,985,947,1022,976,967,1021,981,994,886,893,914,894,907,920,888,901,919,894,938,890,914,909,903,932,920,748,746,725,761,767,747,730,759,763,759,637,651,654,638,637,659,647,635,636,660,655,819,778,814,781,816,784,813,818,796,773,808,788,638,624,633,619,639,630,628,627,656,551,577,545,549,566,561,557,575,547,559,549,544,564,542,542,572,569,552,609,607,602,611,588,600,616,596,586,609,622,602,610,606,615,621,599,643,630,610,618,623,622,606,613,610,620,615,608,614,612,1006,1141,1062,1030,1076,1104,1080,1047,1039,1058,1036,891,845,889,867,900,845,891,876,816,826,866,863,1019,994,1032,1011,1005,1008,1016,1014,1017,996,993,1002,1000,1006,886,912,900,931,909,911,915,900,893,875,907,741,705,721,729,735,724,693,723,715,732,722,711,723,715,727,743,715,744,714,581,610,597,594,616,597,595,609,626,602,601,625,527,526,528,525,530,536,530,542,540,548,602,609,591,608,615,610,590,609,591,618,595,675,675,713,694,699,680,643,686,672,685,700,694,673,651,675,689,890,876,933,891,897,837,881,876,906,896,853,925,905,755,762,775,786,764,738,753,744,765,750,767,752,753,753,599,632,632,640,650,646,642,602,629,632,882,846,879,888,883,901,821,882,896,894,904,893,871,894,908,881,903,653,644,682,619,631,645,613,615,610,675,658,638,1054,1040,1033,983,1033,982,890,879,875,890,860,867,891,855,891,820,811,814,822,824,811,795,797,814,804,812,796,793,828,828,659,624,625,650,657,638,631,651,607,633,617,636,640,645,617,625,623,605,628,620,610,634,625,614,603,623,622,611,628,625,631,632,611,617,632,907,881,887,921,892,925,863,874,913,896,870,884,882,873,900,899,869,869,701,702,745,728,748,721,743,725,715,727,728,729,711,720,742,737,883,900,861,916,884,872,896,863,638,658,632,671,649,612,643,1044,966,1048,1011,1022,1000,1001,1048,1028,1008,1009,1059,923,892,910,915,883,893,872,931,896,893,919,894,882,925,645,663,669,676,663,649,648,655,630,638,650,669,650,798,810,790,804,798,811,829,790,834,800,799,813,798,796,604,584,614,596,604,603,602,604,614,550,568,559,553,510,555,554,572,552,566,561,550,554,555,562,559,561,557,543,668,656,666,618,646,682,669,630,623,610,666,623,652,621,679,695,638,636,982,949,969,984,993,993,989,955,975,980,990,939,984,982,959,979,977,962,958,992,794,791,766,795,798,822,1007,1008,1031,1005,1013,998,1003,996,997,994,1010,1022,1006,1018,1010,962,851,871,887,876,888,868,893,899,878,857,889,864,858,950,928,923,940,928,924,917,932,911,910,937,931,915,916,904,873,952,844,846,815,851,830,827,813,815,824,816,822,799,827,825,548,574,554,543,540,565,540,548,560,538,557,526,562,558,587,591,594,598,609,585,595,586,593,569,582,574,637,596,647,614,659,654,629,629,639,644,626,617,952,957,967,927,941,930,914,925,916,954,918,915,932,969,912,925,939,932,678,709,695,698,704,706,585,610,587,637,580,603,598,605,603,619,602,615,566,521,568,560,563,557,576,566,554,568,540,561,743,735,776,758,741,754,751,776,752,766,776,764,779,761,750,601,665,624,635,610,647,633,611,621,624,610,614,537,534,546,518,536,556,544,550,546,527,689,734,703,684,688,718,706,686,700,714,689,979,944,969,960,922,944,980,958,978,951,976,935,964,931,947,971,948,979,964,967,978,1025,989,983,983,1020,977,1023,1007,1004,983,984,998,1010,998,988,880,905,850,857,827,872,834,871,866,902,860,833,867,860,837,561,548,565,565,567,590,578,568,604,578,593,583,560,989,965,944,992,959,959,949,975,980,961,918,937,937,969,964,1001,978,1018,987,1001,995,890,892,888,896,920,893,880,894,884,896,896,870,920,892,633,561,586,596,581,596,599,559,608,587,594,595,576,614,586,571,570,577,555,543,568,553,552,556,554,577,563,547,548,557,566,1004,1016,1006,1000,959,977,1029,1018,998,633,684,712,667,683,681,664,651,660,698,675,681,683,653,1164,1163,1198,1125,1218,1196,1139,1130,1163,1162,1211,1249,1194,956,964,963,973,979,929,940,975,999,963,925,957,962,943,923,960,975,958,1075,1065,1043,1046,1034,1036,1045,1042,1037,1045,1020,1046,1033,900,894,868,852,893,900,913,917,870,869,943,879,888,898,876,910,896,899,955,976,963,936,971,959,915,900,895,924,976,959,946,954,964,961,964,950,985,977,972,969,964,959,967,975,953,962,951,946,955,960,957,938,963,949,955,936,942,934,956,1013,1012,1018,1030,1022,1019,1018,1029,1030,1004,1029,1017,1004,1014,823,823,808,810,810,822,833,870,983,1020,995,1004,1012,1003,981,1000,965,987,982,996,1000,1002,989,905,849,898,889,883,879,912,897,884,876,866,866,890,582,599,624,626,613,617,611,618,620,628,598,609,604,613,587,600,588,594,971,1004,1000,980,993,988,1000,1010,986,981,998,1006,968,978,963,970,845,516,533,500,539,532,493,549,546,516,522,504,493,524,487,593,594,581,602,583,583,582,574,613,626,677,665,662,650,650,659,643,665,668,650,661,663,692,971,980,1021,1012,962,969,951,979,985,977,951,963,976,954,796,819,793,799,786,797,822,825,796,789,817,817,819,802,614,634,661,642,631,593,575,588,582,561,573,578,572,579,566,574,581,588,576,574,579,567,576,581,581,575,566,587,584,564,563,570,577,558,561,570,555,571,581,587,569,566,574,564,575,568,578,558,568,575,564,577,560,571,550,921,905,932,887,888,879,925,893,886,893,711,693,668,684,666,711,702,684,675,661,631,656,640,617,669,662,656,661,654,661,647,662,721,732,769,740,733,722,761,739,719,742,728,723,742,747,744,671,642,646,644,646,649,660,664,658,652,650,635,839,865,850,895,877,856,838,880,861,905,896,866,871,846,871,958,944,946,964,960,966,944,945,952,949,935,926,943,936,964,959,954,863,828,843,831,852,823,803,854,793,821,791,816,852,824,861,843,1065,1056,1077,1046,1058,1077,1067,1053,1061,1036,1027,1050,1093,1060,1051,1060,967,946,953,936,954,929,941,972,975,758,748,744,766,776,759,745,753,764,792,774,762,762,778,778,762,760,739,766,612,635,623,622,618,628,598,599,601,607,577,1032,1101,1073,1026,1022,990,1029,1071,1024,1013,1015,1030,1054,1047,1030,1082,1034,1016,869,877,854,868,867,871,873,821,912,859,959,911,956,942,950,922,969,962,971,929,972,914,968,958,977,973,975,969,951,961,855,868,862,854,825,865,849,896,852,882,823,838,832,840,841,832,831,836,828,734,757,781,772,728,751,776,707,723,748,707,731,738,762,735,733,933,942,940,944,925,911,943,936,908,956,952,927,942,919,933,939,952,917,932,929,934,933,938,947,933,938,943,914,949,962,957,910,885,886,879,884,862,882,890,924,874,865,901,890,892,890,634,641,634,636,633,627,599,645,604,619,592,584,573,590,591,602,589,583,578,567,563,613,583,574,594,598,578,1103,1033,1049,1065,991,1036,1024,1063,1037,1020,1047,1045,1054,1071,1010,1062,859,831,880,841,845,852,872,845,858,876,839,836,641,644,658,651,939,944,959,929,944,949,935,966,913,962,953,954,929,936,963,969,686,704,699,688,723,686,757,736,703,767,757,715,747,682,733,893,892,877,894,878,892,919,897,913,929,796,807,807,786,768,808,835,768,746,758,775,763,756,754,740,750,745,750,766,748,756,591,622,633,613,585,623,602,621,621,620,626,633,596,630,627,572,550,545,556,560,545,562,552,562,567,555,562,543,557,568,544,553,545,560,555,563,532,543,532,580,531,534,551,552,543,557,848,849,878,876,831,840,896,853,611,639,621,615,645,608,589,657,628,621,621,629,610,625,593,646,655,552,537,551,531,552,545,557,527,548,548,541,578,596,625,610,630,597,592,591,607,634,609,613,602,628,585,614,607,598,623,643,605,615,622,597,628,626,637,598,610,625,609,614,613,604,618,617,1012,974,958,975,952,987,952,996,969,953,968,960,998,1000,1063,982,965,998,952,775,761,782,799,784,752,776,743,749,780,775,795,760,748,763,764,754,760,932,912,933,905,911,927,903,930,920,921,931,904,898,905,905,893,915,862,822,809,834,826,827,825,847,579,601,598,604,616,579,617,594,592,619,618,613,624,598,595,621,590,575,557,565,560,583,574,572,560,583,572,560,578,569,560,574,566,582,603,582,564,1120,1083,1158,1112,1162,1136,1131,1051,1083,1095,1155,1118,1147,1162,1104,1187,977,992,980,1008,958,977,1030,980,949,1000,987,974,1011,1022,1021,1048,1038,1033,1018,1018,1033,1052,1042,1041,1040,1038,1052,1030,1063,1069,928,935,918,934,935,950,941,944,893,913,800,840,769,792,813,794,832,816,779,789,779,984,987,978,985,1040,991,984,1002,853,870,865,842,860,890,819,860,861,845,854,857,823,869,839,580,601,589,597,588,618,603,581,589,593,576,591,613,601,1100,1095,1109,1112,1122,1140,1080,1099,1110,1125,1096,1085,1153,1084,1160,1128,961,942,961,911,960,913,921,923,929,951,911,933,918,902,915,977,593,593,596,585,582,620,583,617,616,572,583,568,600,588,594,591,1097,1144,1169,1079,1105,1083,1152,1082,1127,1113,1130,1110,975,999,999,995,989,992,1003,1019,697,681,628,672,672,708,667,645,676,612,671,687,621,632,616,627,628,650,645,796,855,795,786,836,789,833,819,802,826,806,802,825,1013,992,966,965,986,974,983,973,952,980,1009,993,988,982,983,909,913,929,917,911,923,911,895,922,918,890,907,906,891,933,875,869,852,892,864,863,873,843,871,890,861,897,891,895,884,876,872,872,861,656,601,635,620,658,646,570,573,574,567,565,537,548,578,551,942,939,940,951,968,962,960,944,976,945,981,920,916,915,984,954,988,738,772,714,731,747,713,734,724,735,710,713,733,763,736,753,731,758,745,772,843,855,775,770,785,798,825,793,801,812,793,786,813,816,812,792,638,604,637,632,624,609,630,660,626,632,598,578,558,541,568,575,561,560,540,555,560,555,568,532,537,535,553,536,548,820,856,854,843,823,849,840,854,905,851,786,664,661,651,605,656,636,655,621,626,642,674,645,606,655,638,613,555,553,543,546,556,544,542,563,575,552,550,545,539,557,541,544,545,546,592,606,621,611,608,632,608,617,612,612,602,611,626,632,598,614,623,619,968,950,903,981,927,918,929,914,919,919,911,946,928,917,829,826,831,818,832,840,823,836,780,823,801,828,825,798,854,828,633,619,586,580,606,606,612,594,603,578,612,593,576,599,622,597,579,564,935,917,922,927,928,906,902,919,926,863,914,906,920,880,909,914,928,886,811,859,848,817,840,866,836,859,632,632,626,625,648,656,635,672,661,675,680,689,678,688,667,664,675,666,678,656,649,651,665,667,645,883,905,876,878,674,709,700,704,697,704,711,681,723,701,734,604,630,625,622,626,594,626,600,609,614,873,936,885,904,928,860,934,908,908,909,796,732,776,763,778,756,765,793,747,766,771,758,787,752,795,787,758,755,1021,1040,1026,1021,1024,1018,1029,1029,1030,1007,989,1014,1005,1025,1000,1011,1046,893,929,928,888,898,908,925,883,906,924,895,914,911,878,906,904,919,784,766,765,772,785,765,771,766,775,778,756,773,788,773,793,766,786,780,778,682,671,650,647,649,639,684,657,672,651,656,689,643,656,560,575,560,567,580,557,574,556,547,627,604,631,618,604,613,618,616,619,620,614,581,622,635,609,622,653,664,649,687,673,685,681,599,593,592,601,603,599,608,617,599,600,608,598,604,613,606,591,605,596,1007,1045,1018,1102,1065,1053,1034,1053,1030,1133,1021,1040,1012,979,991,929,1001,944,971,961,967,953,1016,956,977,972,978,972,637,600,583,587,586,630,640,612,591,574,583,593,564,577,585,563,606,582,575,555,587,572,920,900,885,871,846,915,898,893,875,857,880,897,692,672,668,674,672,689,651,657,677,706,624,654,646,613,604,609,623,612,601,617,624,603,611,605,610,608,608,609,613,630,630,634,611,605,607,619,615,617,615,612,605,629,979,934,927,969,913,960,919,944,938,916,920,929,950,995,991,955,965,964,962,969,982,977,979,957,985,955,850,869,868,859,861,861,878,860,876,824,827,860,877,859,850,859,884,871,870,870,866,850,858,876,960,992,974,982,987,984,993,993,966,1009,971,975,976,971,893,887,897,874,892,895,929,896,893,923,879,946,896,915,619,636,607,601,622,615,614,608,600,593,636,599,608,625,598,630,616,1051,1076,1084,1020,1068,1041,1031,1049,1058,1023,1018,1031,928,896,884,884,887,893,886,905,887,1014,1012,1009,1020,1008,1040,1006,1000,997,1011,1011,1000,1021,899,880,873,870,901,909,891,857,905,876,854,887,896,900,877,746,718,737,746,732,762,746,768,744,757,715,736,714,719,1119,1089,1064,1118,1083,1128,1080,1113,1108,1115,1073,1121,1078,1098,1089,1107,902,922,905,889,880,905,893,906,933,927,883,883,918,927,899,888,1036,1042,1045,1016,1037,1057,1034,1055,1062,1028,1022,1040,1037,870,862,885,900,888,874,861,877,868,877,872,866,912,896,614,612,613,594,602,594,585,618,587,611,568,633,638,601,601,600,596,598,592,580,594,585,571,588,564,554,572,573,557,574,599,584,595,570,553,581,925,917,869,945,932,894,922,910,887,887,905,673,647,649,636,676,646,646,652,638,693,677,659,569,559,570,549,557,579,595,555,552,566,567,534,572,553,850,836,813,811,810,832,795,828,820,669,678,693,682,678,677,697,678,699,691,656,583,599,598,605,597,609,608,625,593,610,579,590,604,1065,1022,1060,1092,1005,1077,1102,1049,1093,1073,1094,927,906,859,904,872,871,824,911,891,859,861,903,851,603,615,598,599,641,592,590,601,618,1067,1073,1047,1077,1022,1051,1063,1093,1064,1021,1065,1072,989,1004,1013,974,975,988,1009,992,996,1011,862,887,862,862,840,853,846,898,886,852,881,858,870,870,855,888,614,615,587,589,606,564,573,598,582,594,609,595,597,865,919,910,888,853,924,881,917,893,957,947,944,935,980,966,954,960,964,940,964,832,832,839,836,822,1015,1019,1012,974,1003,1010,966,995,988,978,996,985,984,765,791,753,777,756,802,809,800,787,746,790,820,780,782,791,803,786,793,581,581,587,590,578,585,584,580,559,994,970,993,967,1012,977,960,957,972,949,948,953,984,978,958,970,950,976,941,960,975,970,956,824,797,813,846,794,984,1002,997,972,1002,969,973,948,968,984,979,957,973,985,996,996,916,902,902,911,899,891,911,896,901,912,910,868,876,878,902,884,870,884,883,842,823,846,797,824,803,831,812,842,1017,1013,1041,1013,993,1010,1015,999,1012,1008,992,1017,999,993,1034,1018,953,954,936,924,940,915,946,940,945,931,943,847,826,856,833,851,845,839,628,647,635,642,640,633,611,632,629,605,617,637,636,1061,966,1031,1033,1053,1037,1000,1009,1045,1017,856,886,906,846,892,892,865,618,642,619,619,600,665,639,615,651,607,635,639,625,597,637,652,660,629,665,633,633,1097,1101,1048,1080,1076,1097,1060,1069,1062,1060,1056,1059,1092,1068,946,960,992,963,949,968,954,982,981,965,955,949,975,975,869,869,875,874,852,868,864,894,856,889,890,866,884,896,879,644,681,693,698,682,660,703,679,685,701,683,713,701,792,782,804,796,822,835,798,794,819,790,823,801,820,820,786,779,1033,1103,1026,1034,1058,1030,1052,1056,1061,1055,1020,868,855,879,860,874,890,861,855,862,903,858,847,857,853,646,631,617,630,618,603,649,619,675,646,655,677,667,631,652,652,614,644,613,633,606,643,604,611,634,614,628,620,965,934,926,923,948,940,906,920,957,908,905,940,912,914,955,922,970,952,674,691,659,649,654,661,662,701,1010,1024,970,986,1010,1008,1042,1035,997,994,874,894,907,890,923,897,888,910,908,901,911,928,906,923,894,772,796,792,774,790,658,693,704,653,678,667,657,667,668,678,661,696,682,633,612,616,606,598,642,621,615,642,603,609,617,618,619,612,629,645,608,627,873,913,872,924,900,897,922,918,876,875,929,902,909,888,880,898,884,792,814,797,794,795,805,781,802,813,813,790,830,619,603,623,603,640,619,639,628,608,634,621,629,641,632,626,647,631,625,649,619,610,643,628,604,636,614,609,623,613,625,627,614,619,628,632,628,629,617,611,622,609,1040,1094,1097,1077,1045,1108,846,868,841,802,860,831,907,871,838,848,921,897,571,595,561,575,555,609,555,570,553,597,536,868,896,906,943,903,944,908,909,914,899,923,901,905,917,907,904,929,918,719,700,705,719,723,680,741,704,720,677,661,656,706,673,678,644,686,672,670,679,650,657,918,909,928,903,893,882,870,891,915,883,881,802,771,750,773,770,759,762,765,788,772,764,625,635,642,649,659,643,623,646,629,651,622,662,651,917,910,906,909,907,901,908,920,875,923,886,925,922,699,646,674,666,688,679,671,656,680,680,668,648,681,663,680,822,837,804,796,776,823,812,800,810,776,785,790,793,804,658,650,621,659,645,653,666,640,663,631,632,686,639,631,646,646,639,667,661,639,659,621,649,604,610,600,592,595,608,582,598,595,619,582,557,558,572,561,985,948,1011,964,980,960,965,965,953,1002,915,921,929,917,907,910,928,901,943,927,939,940,930,933,912,915,941,934,937,923,922,951,940,933,947,917,913,968,915,938,945,926,934,857,824,825,787,853,833,821,821,812,852,550,552,530,581,530,543,569,583,536,556,553,549,585,549,649,624,605,636,635,631,643,634,630,627,647,621,623,657,652,678,640,657,664,672,662,965,950,962,942,948,977,975,958,952,982,918,966,948,971,934,938,981,922,945,907,945,912,948,928,941,918,929,950,910,948,929,928,907,940,970,934,948,788,842,878,830,809,818,847,825,813,564,595,597,606,619,592,624,604,565,603,611,936,970,919,949,911,932,932,944,966,977,921,948,919,919,936,937,928,930,952,959,928,952,929,940,939,934,923,917,942,939,923,931,929,936,973,983,966,970,971,968,980,957,990,965,973,968,964,951,967,981,954,827,833,814,845,849,844,608,604,608,595,591,590,598,600,614,600,591,604,560,615,615,599,613,599,605,570,602,606,608,596,614,597,575,607,593,590,575,603,582,590,578,602,600,587,604,625,620,581,590,601,585,586,581,603,596,571,588,579,579,589,586,573,589,595,576,631,632,616,637,616,610,612,632,584,644,624,606,641,598,646,643,608,611,891,854,877,904,897,876,875,870,912,871,869,882,937,909,883,899,877,708,681,690,674,699,674,710,676,686,683,680,704,708,700,675,716,684,661,603,568,609,620,619,596,616,584,538,551,572,546,570,565,567,570,952,990,964,1026,994,1059,994,1033,1009,1010,1007,972,882,871,865,875,892,894,899,916,878,910,901,883,881,896,972,959,968,971,965,972,946,960,951,981,974,973,960,955,944,964,962,889,864,886,859,863,860,866,886,853,877,860,862,857,858,768,786,781,789,771,784,797,747,773,765,790,773,784,660,623,641,653,617,652,628,646,658,574,568,562,572,571,567,567,572,563,576,588,591,594,589,596,579,581,586,605,594,570,590,607,590,569,593,599,556,597,589,589,576,587,598,585,591,594,580,577,580,582,599,589,588,590,586,584,580,613,620,613,628,633,624,577,588,575,565,590,570,576,589,1080,1106,1181,1145,1125,1134,1132,1121,1032,1061,1144,1055,1135,1073,1022,1003,1007,1019,990,1039,1015,1030,1008,996,1013,983,1045,994,1005,969,1036,568,608,612,597,595,632,570,632,611,558,573,649,575,578,614,628,541,535,563,493,531,510,504,531,546,555,513,541,526,583,518,530,522,519,532,529,628,615,617,624,648,600,630,627,628,646,622,654,657,677,664,673,685,661,674,681,659,668,664,699,653,656,986,985,952,957,969,948,976,964,974,970,961,971,938,942,941,967,992,975,949,945,968,924,954,954,965,961,959,972,931,966,956,947,976,965,976,803,841,823,827,835,843,835,854,795,857,838,628,582,595,596,589,571,618,607,633,625,609,594,596,594,953,959,964,940,978,978,957,946,973,960,986,997,1031,999,1011,974,1005,1016,993,1023,1018,913,859,869,867,635,650,642,615,645,650,653,628,644,661,668,635,668,668,664,987,962,1010,1008,1007,991,992,983,1033,996,969,953,966,943,945,938,960,948,938,956,963,946,984,1091,1042,1063,1027,1040,1075,1047,1056,1031,1051,1060,1042,854,820,840,881,812,831,839,835,970,963,997,1021,980,1003,945,993,966,967,995,961,973,973,972,974,973,976,970,984,979,981,954,842,860,877,840,849,852,852,828,837,845,833,843,859,863,876,854,854,859,847,845,890,905,892,907,899,892,903,759,767,768,782,760,763,758,724,764,783,770,742,999,1046,997,999,1019,1015,1009,1041,1039,1011,1031,1017,1010,894,909,880,942,901,893,897,898,862,871,868,882,897,604,607,593,610,578,612,585,604,619,588,574,511,526,518,532,536,519,523,502,505,521,528,535,533,540,537,525,509,539,541,542,528,523,523,515,525,513,624,604,632,632,649,638,639,632,626,603,808,779,841,807,808,832,672,685,698,672,688,674,665,671,687,678,678,688,1046,1114,1072,1041,1067,1069,1057,1078,1029,1059,1064,1012,1072,1058,1079,1056,1019,1048,1050,1055,1107,1078,1063,882,888,903,904,865,858,895,917,869,901,876,883,907,995,1031,1031,1053,1039,1028,1028,1003,1043,844,870,855,847,869,868,913,839,832,877,877,817,898,880,875,887,894,865,930,617,599,598,568,600,602,600,577,617,632,626,639,656,588,629,610,630,600,599,629,615,612,616,626,604,601,613,605,966,940,962,964,978,966,969,916,934,947,776,766,722,747,748,751,733,756,772,764,764,775,752,776,774,727,735,762,742,736,735,784,887,876,859,861,885,857,856,875,864,852,867,853,873,858,871,870,881,875,857,857,827,865,834,863,854,860,817,855,828,835,847,881,889,896,880,882,902,902,904,904,894,914,881,932,886,805,765,774,767,793,740,760,762,770,777,752,764,766 0 251.326136 0 0 0 diff --git a/test/dna_r10_paf.exp b/test/dna_r10_paf.exp index 90cf3bf..1adb70f 100755 --- a/test/dna_r10_paf.exp +++ b/test/dna_r10_paf.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO114M +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!3734!- 0 2048 -175.408187 281.345551 5000 47807 824,841,823,691,711,694,671,676,672,672,692,561,581,571,575,570,578,591,590,589,602,570,585,578,583,546,551,554,575,588,588,574,569,584,577,577,592,565,567,590,568,573,602,632,656,660,656,650,648,655,633,647,651,654,660,646,655,656,671,664,630,691,652,670,657,1108,1128,1052,1110,1086,1051,1063,1111,1143,1098,1064,1064,1093,1102,1077,1046,1121,1027,977,960,950,988,975,981,854,863,847,826,842,851,843,867,858,844,857,854,845,858,847,830,818,855,854,845,846,826,827,864,834,832,799,796,801,819,794,804,797,789,803,797,769,781,814,793,704,705,713,717,723,741,708,705,714,701,702,705,706,716,683,690,716,701,695,703,692,685,679,693,711,699,704,669,683,691,694,692,678,915,902,926,929,889,874,889,881,927,1069,1008,1070,1070,1050,1040,1080,1035,1045,1052,1062,1034,1086,1055,1049,1045,1075,1058,1056,901,942,880,850,912,915,907,915,922,952,903,921,925,917,919,932,896,937,626,636,623,612,636,602,630,626,620,620,646,629,1154,1141,1131,1179,1114,1126,1147,1106,1117,1168,1117,1134,1173,1118,1136,920,956,956,974,967,958,952,994,998,944,972,913,962,994,945,1005,939,984,944,913,670,671,663,680,684,644,675,666,714,670,679,662,659,1201,1191,1177,1212,1179,1189,1197,1183,1207,1186,1149,1174,1160,1200,1035,1007,993,1008,994,951,1043,974,1006,967,972,983,994,1037,1019,1042,652,653,661,683,673,688,648,650,656,663,690,654,670,1109,1097,1089,1106,1100,1092,1060,1114,1086,1176,1090,1075,1109,991,1037,1018,1042,1034,1019,1068,1035,1000,1023,1028,1023,679,739,698,696,673,709,724,681,678,666,702,701,1057,1046,1051,1044,1103,1038,1020,1006,1020,994,995,986,997,995,983,1001,997,972,1018,978,1006,853,875,858,904,695,717,714,736,691,704,687,702,704,679,690,713,686,727,697,691,700,704,703,696,682,694,708,698,712,722,735,719,728,735,733,752,740,734,725,1150,1144,1161,1071,1173,1149,1140,1172,1127,1136,1187,1131,1116,1145,1153,1117,1159,1003,983,1006,980,968,952,956,1004,971,1015,965,1012,660,665,626,673,671,652,659,651,636,664,667,683,692,631,647,643,674,638,635,670,608,625,621,641,625,645,734,690,705,744,694,728,689,696,726,695,695,682,707,733,693,721,1048,1033,1045,1033,1032,1031,1015,1005,1007,1008,1012,1030,1036,993,993,1001,1022,1021,1023,1005,1001,1004,1006,991,1007,1017,985,1010,992,1007,1001,1012,1017,989,1000,999,998,883,926,934,931,912,925,955,916,893,908,908,643,680,706,686,655,677,682,651,690,695,1080,1112,1078,1154,1120,1140,1100,1125,1107,1081,1051,1122,1100,1108,1060,1127,1087,1071,1132,1111,1067,1070,983,984,992,1000,1020,998,1010,998,1017,978,1007,1022,1006,1003,1019,977,897,913,880,916,882,873,903,888,885,901,878,901,918,910,893,890,1092,1085,1082,1105,1117,1124,1105,1102,1105,1106,1064,1123,1086,930,898,906,929,926,890,959,925,946,898,903,912,917,944,897,952,639,661,648,656,1104,1096,1143,1057,1077,1082,1043,1117,1089,1062,1041,1064,1059,1054,1082,1064,873,868,895,859,866,910,848,857,863,881,863,884,836,623,669,640,621,614,613,626,643,604,616,643,633,608,630,621,627,611,632,623,632,627,666,668,655,652,654,662,657,662,684,678,649,685,1062,1059,1052,1058,1087,1121,1036,1099,1040,1043,1068,1041,1054,1098,1036,1040,1089,974,957,966,978,932,954,985,970,937,873,914,918,925,914,918,903,907,919,912,925,920,905,932,939,931,964,951,956,953,959,938,972,933,861,867,880,868,884,873,878,870,879,888,883,687,702,644,663,672,659,656,652,688,669,1108,1073,1095,1121,1166,1052,1168,892,956,946,951,985,913,933,944,950,1001,909,903,943,920,933,955,711,699,696,705,713,696,738,727,700,709,683,726,705,700,698,709,704,699,719,690,723,707,682,702,705,708,716,698,715,710,721,707,716,1006,1007,989,1024,1002,1001,967,985,991,986,976,1002,977,798,773,793,796,801,781,776,787,805,765,765,795,782,783,754,778,776,856,870,873,860,861,867,872,860,858,866,884,890,865,880,867,879,866,1091,1079,1060,1077,1056,1055,1058,1052,1064,1073,1054,1045,1050,1073,1053,1066,1075,1029,960,956,949,932,951,961,961,959,918,959,953,945,922,968,940,893,897,1032,1071,971,1054,1036,1020,1027,1032,1036,1002,991,1028,998,987,1008,1003,994,999,1018,896,884,918,872,883,886,901,919,896,868,884,882,897,863,895,664,646,656,666,670,629,658,657,689,676,663,665,690,647,675,682,664,658,672,665,653,663,659,627,622,628,619,642,621,620,616,620,632,617,712,722,737,695,723,733,699,711,735,729,699,686,692,692,691,700,676,668,679,697,672,664,695,688,685,694,681,1022,1070,1004,1073,1020,1043,1046,1002,1035,1057,1019,1035,1034,1028,1055,1040,1049,1055,1048,1039,1024,1046,975,952,919,899,903,907,896,924,917,878,948,909,932,946,929,922,904,887,657,650,591,602,606,615,600,606,604,621,638,677,655,647,659,629,663,668,632,647,665,1268,1216,1274,1219,1267,1263,1190,1023,1020,1030,1000,998,997,1063,996,1035,1006,1026,1068,1092,1044,1053,1066,1077,1075,917,897,905,899,888,910,915,909,894,887,917,897,903,931,955,954,979,938,949,928,931,956,990,1047,1008,1023,1024,1027,1030,1039,910,892,931,911,924,926,958,920,916,920,926,911,891,916,909,911,904,884,895,706,715,715,711,719,718,703,683,740,714,722,921,938,937,924,919,924,914,882,951,761,809,814,823,784,825,789,1019,1004,1006,1030,984,1015,1009,1026,998,1010,1028,998,1009,1004,1003,1017,1010,1019,1023,1019,1003,1016,1001,974,1003,1012,1072,1063,1070,1059,1081,1058,1081,1062,1063,1071,1068,1076,906,920,926,954,952,941,951,890,954,925,1022,975,1035,986,944,1058,1005,1014,1011,1019,1028,1022,1017,1022,1039,1013,1048,1039,910,854,897,885,872,868,839,836,734,684,702,691,708,705,673,710,670,689,705,690,678,677,702,1055,1054,1056,1066,1056,1056,1058,774,742,760,781,719,730,743,791,697,753,781,728,756,739,743,757,749,750,721,752,1016,996,990,1026,1017,1044,1008,1006,999,1007,1019,1022,1005,1003,972,995,987,968,978,982,967,986,975,983,958,980,972,993,975,993,994,985,1009,969,993,985,990,965,976,965,936,939,959,953,940,938,951,900,917,933,945,930,704,720,698,707,694,723,719,701,716,728,693,684,667,696,673,658,671,671,684,682,665,670,680,659,693,670,907,952,930,981,921,916,968,968,911,930,969,941,920,943,946,851,882,864,849,874,859,857,840,848,858,838,857,836,855,858,860,846,674,665,645,681,667,666,666,685,660,687,688,675,680,677,661,659,677,655,680,721,736,733,735,745,747,733,747,744,724,956,956,965,966,965,929,926,922,949,964,918,948,945,996,974,749,733,691,688,707,640,634,662,666,685,657,645,638,649,650,647,644,660,631,642,665,639,646,667,652,665,654,658,644,656,669,1053,1049,1055,1047,1050,1077,1031,1021,1048,1025,1010,1058,1037,812,800,743,759,764,753,777,761,778,777,789,1067,1107,1100,1104,1041,1066,1078,1060,1037,1088,933,978,938,944,919,940,982,961,946,960,944,938,967,944,958,921,941,960,944,654,635,587,602,612,577,592,633,571,629,570,638,629,666,638,625,620,623,669,647,635,622,641,696,714,712,688,697,680,680,703,706,718,702,677,693,696,692,687,676,705,683,973,991,987,987,986,974,976,739,744,732,796,744,761,782,769,739,779,739,731,776,636,659,664,669,661,653,649,666,647,669,667,673,657,677,1134,1204,1170,1181,1192,1171,1169,1173,1138,1153,1103,1170,1190,1170,1135,1137,1202,1101,1204,1177,1210,1297,1188,1159,1164,1147,1147,1008,1035,1049,1030,1033,1051,1047,1048,1028,1040,1045,1049,1066,1032,1044,1047,999,1003,1022,949,979,975,936,1009,987,1002,999,1023,993,1004,1010,985,1025,996,990,1000,1009,1013,998,989,1005,1006,1009,1007,1027,988,986,1016,999,995,1026,1026,1033,1022,1023,1008,1018,1015,1014,1002,1006,902,941,898,954,952,717,684,686,727,684,729,736,742,714,687,715,709,702,932,937,930,929,875,943,935,930,932,949,912,921,932,957,913,929,937,949,731,721,723,721,733,725,715,725,747,727,755,642,633,653,652,662,644,613,631,630,638,638,648,645,612,616,638,709,717,734,730,721,728,733,730,718,721,730,712,713,718,692,674,677,651,687,667,662,684,680,672,690,671,673,678,668,658,1056,1013,1077,1132,1068,1071,1077,1082,1069,1072,1070,1063,1080,1074,1092,1096,1086,1082,1079,1087,1060,1043,1068,1079,1065,1063,1070,982,947,941,948,939,947,984,936,942,974,922,940,940,936,938,893,918,1138,1095,1123,1084,1136,1099,1136,1133,1117,1092,1109,1116,1128,1114,1147,1132,1094,1029,1016,1006,983,1026,998,975,991,1031,1006,981,987,983,1012,989,1003,1019,1080,1053,1060,1057,1063,1081,1065,1066,1079,1071,1046,948,1022,1006,1021,1033,1030,995,1000,987,981,1020,973,990,969,873,887,874,881,879,856,863,875,870,868,724,745,745,738,741,763,687,744,898,897,910,901,889,906,903,905,865,896,911,913,883,1001,1025,1019,1037,1038,991,1019,1023,1011,989,1011,1001,1053,1039,1029,1054,1036,1053,1050,1038,1044,1042,1053,1030,1067,1048,1019,1051,838,835,795,818,795,823,613,593,604,612,607,610,629,621,625,601,589,597,602,632,612,610,627,640,620,659,633,618,637,654,635,614,637,615,624,659,620,635,633,646,653,632,678,690,661,689,678,700,689,689,645,669,688,677,713,674,717,1050,1071,1031,1065,1081,1064,1109,1035,1058,1022,1037,1054,1011,1049,1048,1033,743,809,774,791,765,768,752,781,815,779,777,770,782,778,767,629,678,657,689,672,688,659,646,650,668,631,665,649,583,611,611,629,613,599,610,588,595,605,604,613,598,902,907,943,911,933,971,944,905,1020,1039,995,1043,1042,1021,1016,1005,1020,953,938,944,934,937,956,945,960,932,934,948,899,872,878,896,883,893,877,888,865,886,866,888,896,888,861,882,884,886,873,892,781,805,786,803,793,801,790,793,709,752,702,716,724,730,700,721,721,715,743,728,740,935,935,942,911,946,947,944,977,943,953,931,914,847,832,841,831,837,844,844,819,825,820,820,844,847,828,814,801,820,807,801,803,814,808,811,812,693,702,712,690,704,706,727,708,709,713,711,696,667,725,675,706,881,857,882,859,908,840,850,885,904,915,844,892,853,972,972,988,1002,995,1004,1011,979,974,1032,994,1001,973,979,1002,1003,996,1008,997,991,994,1003,1026,974,1009,1029,993,995,987,1012,1013,991,979,1020,1023,1024,1013,1001,1059,1066,1042,1044,1045,1020,1012,1066,1035,1041,1028,1064,1046,1035,1064,918,876,923,915,913,912,906,877,915,936,893,865,898,900,881,909,867,705,703,675,658,707,642,665,698,673,715,667,679,693,722,682,674,718,686,722,725,694,695,688,680,713,702,708,1104,1125,1201,1126,1092,1121,1142,1167,1194,1192,1148,1143,1135,1151,1178,1154,1181,981,989,985,966,975,967,968,966,966,1009,995,1000,980,973,1008,1000,661,654,678,713,682,643,626,676,635,667,647,667,1148,1059,1084,1112,1165,1096,1069,1117,1118,1086,1050,1094,1127,1069,1108,1072,1057,1158,1126,1087,1058,1070,1098,1060,1038,1012,1024,1011,991,989,1031,996,1067,1029,857,874,855,853,854,845,861,883,863,875,852,851,878,870,880,858,857,838,672,674,704,690,652,686,690,682,685,677,677,695,681,682,685,1123,1113,1085,1098,1151,1098,1083,1094,1116,1079,1111,1074,1076,1068,1054,1090,1065,1086,1146,1092,1062,1067,1079,1078,1096,1087,1088,1101,920,910,911,910,927,931,917,899,903,895,671,670,691,696,663,661,679,1036,1076,1096,1104,1058,1044,1083,1026,1079,1060,1075,1082,1057,998,1105,1068,1071,1045,943,968,966,988,962,971,963,970,944,949,949,943,958,959,975,939,976,733,739,739,709,734,740,749,758,754,764,946,943,984,938,958,944,963,973,935,968,933,959,924,1062,1083,1058,1052,1050,1059,1047,1062,1050,1051,1036,1061,1058,1040,936,940,927,949,980,930,936,959,954,938,934,951,944,1190,1241,1193,1210,1214,1186,1194,1205,1228,1229,1242,1175,1247,1201,1168,1210,1192,1209,1054,1053,1057,1063,1037,1036,1072,1049,1055,1057,1054,1053,1043,1069,1097,1075,1092,1091,1064,1078,1091,1101,1084,1088,1107,878,833,862,868,872,872,863,842,887,855,854,880,875,667,666,648,650,657,673,656,647,663,657,647,645,640,644,654,663,629,653,658,1235,1215,1193,1188,1240,1187,1159,1167,1163,1212,989,970,1005,989,989,980,996,988,672,698,724,717,711,691,702,704,1058,1056,1021,1013,1037,1006,1049,1045,1017,1039,1062,1052,1088,1036,1014,1047,1028,1044,1043,969,945,976,955,980,991,933,964,965,966,964,959,955,975,721,727,719,734,704,714,758,735,712,705,735,697,746,733,720,687,673,687,659,669,677,690,680,654,672,665,663,682,669,677,689,678,618,625,643,643,628,627,637,652,639,636,603,641,636,619,618,603,624,636,617,642,610,641,1034,1009,1072,1104,1118,1075,1056,1022,1045,1072,1046,1056,1018,1049,1040,1075,1046,1056,1072,1074,915,913,920,915,937,958,927,935,965,891,916,934,938,969,904,697,622,679,655,687,685,651,642,624,629,624,624,616,640,630,618,635,626,621,629,640,619,635,620,621,924,952,954,924,917,917,1028,1026,1038,1013,1019,1027,1002,1045,1071,1078,1052,1059,1076,1055,1076,935,964,946,971,970,948,924,955,951,929,929,847,863,871,884,881,887,850,885,867,856,868,853,711,697,757,740,704,707,736,724,729,708,721,706,716,701,739,702,717,688,693,720,720,717,713,1213,1084,1150,1105,1118,1123,1060,1140,1106,1104,1059,1112,1074,1121,1114,1122,1161,1045,1103,1094,991,1028,973,1018,1021,991,1001,992,965,998,989,986,961,977,1010,988,976,691,696,704,677,673,686,701,669,667,695,695,728,681,720,656,697,710,996,947,1018,971,952,734,740,709,730,724,703,723,722,696,692,700,704,720,727,1060,1051,1051,1037,1027,1227,1223,1245,1218,1218,1177,1191,984,1007,1011,1011,1008,1002,1006,986,993,997,1014,988,1070,1008,1064,1032,1065,1023,1029,1001,1054,1000,1020,1045,1028,1056,1034,1011,1031,982,1000,996,996,1017,980,1008,1010,975,965,994,986,919,885,924,891,898,890,865,876,907,902,885,921,906,878,903,687,754,710,695,1132,1124,1124,1147,1136,1165,1143,1113,1118,1119,1168,1170,1142,963,996,967,972,998,983,988,1003,963,979,964,966,972,745,760,734,741,741,743,752,758,762,756,739,1021,1007,1006,1017,998,1019,1010,986,974,1007,1014,1025,811,834,809,822,842,815,824,836,1027,1031,1011,1021,1010,1033,1018,1022,1038,1058,1050,1043,1028,1024,1011,1025,1049,1045,1048,1074,1037,1070,1086,1070,1050,948,933,905,899,953,901,908,920,931,1033,1089,1008,993,1010,1006,1003,1012,1024,1010,1022,1004,1023,1009,1054,1018,1010,994,1025,1016,1023,1021,1028,1033,1026,1046,1038,1038,1035,1041,1028,1041,1035,871,852,894,899,868,656,648,669,645,675,657,672,664,662,642,661,621,641,651,662,636,686,672,742,740,737,741,758,734,750,743,766,786,764,738,734,747,736,734,730,721,720,741,740,734,729,728,971,973,975,947,933,971,958,986,990,999,935,948,974,1001,996,974,1015,1019,999,1012,1028,1022,1009,968,970,890,943,926,970,927,945,919,965,931,953,911,873,851,845,840,848,839,836,861,854,878,875,838,840,822,869,863,839,851,860,844,841,857,833,862,1123,1133,1115,1136,1124,1122,1130,1131,1114,1144,1129,1132,1133,1105,1125,1152,1126,1126,1025,1005,1019,1042,1024,1001,1017,1009,1003,1003,1013,839,837,869,846,863,831,839,847,838,841,860,844,821,843,835,839,669,668,676,679,679,696,667,723,672,663,701,672,686,681,671,628,625,629,645,634,620,639,637,651,614,634,651,1021,1047,1039,1024,1040,1047,1026,982,1061,1029,1026,991,788,818,810,790,832,786,938,939,922,920,922,883,901,925,916,942,930,954,905,906,947,943,921,929,935,915,934,777,810,761,802,800,794,775,781,799,784,809,787,807,789,812,777,1042,1003,992,962,1014,1001,967,993,950,995,1018,1007,973,1035,983,1031,964,933,950,964,941,962,951,950,929,954,932,946,928,961,937,955,767,773,754,793,770,756,772,792,749,744,765,796,800,808,1066,1037,1050,1027,1036,1031,1057,1015,1052,1046,1046,1040,1040,1033,1034,1030,975,974,963,1002,997,970,957,820,820,815,830,829,826,803,815,827,825,830,818,825,833,815,679,713,676,684,703,684,701,691,662,672,704,674,697,695,699,705,684,709,1187,1202,1189,1221,1217,1181,1155,1192,1169,1155,1176,1155,1210,1131,1166,1128,1187,1219,1001,1005,986,988,1029,1010,993,994,1017,994,989,1018,998,983,996,1014,1004,1020,1054,1012,989,1057,1000,987,976,987,977,975,988,997,980,993,994,975,984,994,997,996,996,1006,1017,993,997,1014,1022,1000,986,986,995,1004,978,992,864,847,861,897,856,877,889,852,677,666,684,658,694,668,698,676,704,768,793,757,813,805,777,781,793,803,789,792,697,702,690,687,678,688,684,683,687,686,691,685,708,669,689,680,681,1067,1097,1071,1030,1078,1062,1070,1090,1083,1080,1002,1082,1075,1064,1069,1089,1044,1091,1042,877,932,954,905,885,879,877,863,887,895,890,899,646,639,641,640,680,645,638,658,643,661,629,654,717,727,737,755,781,714,712,719,774,721,735,736,734,738,732,758,753,1125,1096,1107,1099,1102,1127,1108,1080,1124,1111,1087,1060,1087,1080,1095,1086,772,738,776,803,773,767,724,800,774,797,788,748,733,770,723,953,932,992,970,962,969,972,958,986,972,978,994,1002,987,986,990,1007,970,995,991,974,988,911,952,941,947,973,972,942,929,942,943,952,932,685,706,730,677,698,721,742,680,738,715,687,677,729,694,681,698,704,899,886,905,914,915,893,911,902,903,1043,1055,1088,1069,1054,1067,1076,1027,936,1003,1026,1019,992,1016,1025,1024,1028,1015,1032,1030,1009,1043,1024,1038,1031,737,711,709,721,707,720,702,667,748,743,723,737,748,683,709,1012,1037,1049,1080,1089,1093,1043,1061,1082,1092,1075,1071,1060,1089,1107,1081,1079,1101,885,882,854,885,884,878,891,868,863,890,879,915,909,882,900,902,869,870,673,666,663,671,692,670,667,670,664,655,632,676,669,645,682,655,932,921,912,940,922,892,915,702,714,708,716,719,719,696,715,701,725,711,651,662,651,630,655,651,641,656,661,644,652,660,658,634,649,645,931,901,970,903,922,928,916,925,901,885,906,838,946,961,896,791,820,822,816,835,834,812,834,834,819,809,814,801,838,793,802,815,808,815,810,708,721,710,719,695,682,713,701,698,721,690,875,855,860,870,854,855,877,868,1052,1055,1045,1057,1014,1059,1038,1043,1029,1027,1018,1048,1049,1059,1062,1057,1065,1040,1029,1082,983,951,981,969,967,958,972,984,918,979,961,974,981,930,989,968,940,1017,1055,1027,1046,962,1031,1028,1013,1061,1034,1027,1027,1043,1040,1060,1029,1015,1051,1066,1016,1006,1019,1030,1025,1027,1029,1011,1007,1016,1029,959,940,936,931,938,964,679,699,724,683,681,686,710,701,702,688,674,675,1038,1053,1029,1027,1062,1030,1018,1030,1035,1043,1030,1031,1018,1024,1008,1021,998,1000,993,1015,1003,993,1011,1019,1001,1040,996,1019,983,1019,995,1032,1062,1017,1036,1003,1015,1047,1021,1030,1007,1025,1033,1017,1021,1026,1124,1130,1098,1110,1117,1138,1115,1157,1117,1105,1110,1140,1109,1102,1114,1137,1122,1126,961,987,993,970,999,995,972,979,999,968,984,992,958,956,947,950,951,959,957,942,822,815,796,809,812,822,821,841,819,812,871,848,819,829,820,802,807,975,1022,1040,1006,1006,1021,975,985,994,1015,1022,993,1011,1000,1025,986,997,1016,992,979,989,988,999,980,976,991,990,1001,999,994,984,979,990,982,994,955,967,957,972,971,964,961,967,968,952,944,978,984,948,977,969,971,980,986,975,964,977,993,971,987,978,982,981,971,963,970,978,1035,1035,1022,1019,1034,1034,1037,1027,1024,1044,929,906,885,899,882,923,894,911,901,891,888,927,931,933,895,691,719,715,719,732,729,699,716,723,748,760,716,721,718,980,980,948,965,943,983,982,985,956,951,1061,1011,1013,1025,1039,1021,1009,1032,1018,1035,1012,1056,1031,1031,1038,1033,1020,1025,1029,1052,1020,1033,1040,1031,1033,898,896,882,902,856,862,890,867,904,907,871,891,880,894,855,991,992,1015,1019,1024,1045,1057,1053,1051,1051,1043,1026,1043,1033,1042,1057,981,961,949,951,942,963,961,954,967,942,949,949,960,962,952,818,806,832,825,806,805,814,819,694,697,710,698,700,675,705,698,686,695,710,684,693,702,706,707,702,698,696,684,683,844,834,831,863,860,849,835,847,822,854,821,854,672,663,664,669,657,636,680,679,678,688,672,678,669,658,651,694,696,641,632,633,626,650,638,626,645,631,634,1240,1239,1197,1204,1222,1178,1187,1225,1304,1267,1310,1269,1243,1258,1195,1161,1220,1032,1084,1043,1043,1080,1031,1033,1070,1079,1050,1059,1043,1036,1045,1058,1061,1042,1046,1033,1030,1056,1065,1047,1053,905,905,898,871,883,927,893,935,910,933,912,901,908,891,893,922,888,901,908,893,926,924,901,902,1025,1009,1021,997,1013,997,996,973,969,986,937,968,982,955,968,975,970,983,946,945,956,931,952,958,951,953,954,937,954,923,968,952,724,714,710,700,701,731,734,707,720,697,701,718,708,702,682,716,700,1036,1054,1022,1049,1067,1062,1039,1052,1029,1028,1031,1028,1032,1048,1048,1009,1027,1014,1019,1030,1033,1017,1050,995,1009,1020,1003,1022,1022,1014,1023,1042,1003,1016,1015,1007,1007,1011,986,1024,1021,1003,1006,1021,1002,977,985,1018,1002,1003,991,998,1008,982,1006,1001,986,1005,826,795,825,829,865,834,827,832,882,826,867,846,854,870,677,669,675,650,664,652,1298,1208,1212,1267,1238,1250,1167,1272,1036,1009,1041,1024,1058,1019,1021,1008,1025,1017,1056,1034,1042,1053,1053,1061,1045,1058,1071,1058,1054,1058,1047,1046,892,931,888,866,884,868,891,876,876,920,890,870,920,866,827,895,887,900,878,889,896,888,1025,1025,1054,1033,1020,1042,1058,1068,1031,984,979,973,986,946,952,949,967,956,967,951,958,969,993,970,989,974,1005,1014,998,987,1011,997,982,999,979,998,732,706,725,704,716,672,701,709,706,713,709,709,1000,1003,999,997,1008,999,1033,1008,1079,1076,1061,1076,1065,1088,1066,1070,1074,1069,1068,1077,1088,1078,1043,1081,1068,1081,1069,941,944,956,965,964,929,1097,1069,1088,1068,1036,1060,1060,1060,1077,1081,1059,1035,1107,1071,976,953,963,962,957,964,962,949,956,922,960,959,734,730,719,713,705,735,730,703,718,724,701,675,691,687,690,681,717,699,692,688,668,691,682,1159,1207,1113,1111,1163,1194,1122,1141,1128,1115,1169,1128,983,941,936,949,922,991,965,963,946,694,714,708,683,697,689,704,731,691,715,705,708,708,708,721,726,708,716,729,745,1046,1052,1017,1032,1046,1019,1025,1069,1017,1021,1055,992,1007,1002,997,1065,996,1013,1007,1008,1019,1001,995,975,995,1018,991,973,1011,1003,1009,969,993,971,948,950,937,954,989,974,970,949,958,920,932,978,1015,996,993,952,1002,913,883,827,894,890,876,912,860,926,892,892,898,654,649,688,662,647,647,616,659,630,656,660,660,649,660,656,673,643,620,657,657,651,666,655,650,646,671,639,619,1090,1169,1157,937,959,966,922,917,925,959,972,927,953,903,673,664,653,660,657,643,682,660,654,640,637,922,836,882,877,943,835,926,857,887,881,897,893,894,852,886,856,836,809,799,813,820,819,800,802,821,820,803,805,838,829,816,808,826,690,726,723,708,697,705,690,688,720,697,684,823,822,838,842,820,830,814,836,832,842,854,844,843,829,947,1005,974,937,973,981,994,985,964,978,930,933,870,914,896,914,867,902,912,916,875,908,916,905,900,934,888,877,597,612,608,618,615,636,620,615,604,602,607,594,608,602,621,618,599,618,616,627,609,656,701,689,706,721,696,648,698,693,715,675,698,671,672,695,725,681,689,714,990,1009,984,991,1002,1022,1007,992,1020,1024,982,1010,991,988,986,967,1008,992,981,1003,996,975,964,990,1001,977,986,1033,995,990,995,1020,1005,1001,1004,1018,1007,986,965,914,882,918,897,913,926,910,887,915,900,903,1046,971,1004,936,1018,1078,1007,1043,973,1026,1020,1012,994,1011,997,1002,993,1021,983,1009,990,1010,993,1009,1012,1010,1006,920,914,913,902,892,903,925,889,905,692,707,669,685,681,702,860,868,829,884,874,868,884,886,1013,1015,990,1006,966,991,1046,1045,1090,1045,1060,1032,1048,1058,1048,1041,1040,1045,1046,1061,1068,1031,919,914,913,938,919,944,924,928,945,912,915,918,652,683,657,653,647,670,623,671,680,632,657,648,634,672,637,660,644,643,626,668,620,603,585,568,592,629,601,597,587,610,599,606,584,626,1019,1061,1192,1117,1119,1149,1156,1129,1147,1150,1184,994,1016,1012,1001,993,996,1029,1008,1019,989,979,1022,694,711,710,695,723,686,704,1067,1050,1044,1040,1041,1064,1064,1076,1054,1069,1052,1060,1047,1050,1060,1075,966,958,901,939,910,915,932,924,1015,1016,1009,1012,1027,1044,1039,1014,1043,1025,1018,998,1026,1047,1024,894,913,906,889,923,913,912,892,903,902,914,904,909,587,596,605,595,611,631,675,622,653,671,664,681,655,657,617,661,666,626,650,660,706,959,991,972,943,974,966,977,960,990,973,956,982,963,720,720,726,711,714,742,701,703,669,653,640,916,941,926,926,944,935,936,927,935,922,939,935,911,906,935,937,912,1030,985,979,993,969,974,983,983,953,996,945,965,979,976,962,953,947,938,953,944,923,951,661,655,640,645,642,664,654,651,648,667,659,656,1135,1048,1080,1060,1089,1082,1146,1068,1054,1097,1060,1050,1096,966,981,970,990,989,963,997,997,982,970,991,998,1020,1000,987,977,966,986,965,1094,1080,1135,1090,1064,1075,1081,1112,1107,1083,889,916,900,942,867,842,891,874,900,909,885,906,711,747,742,740,761,734,756,761,714,742,748,737,755,766,726,763,747,768,756,748,730,1084,1047,1081,1080,1080,1097,1047,1082,1096,1095,1072,1082,1081,1117,1075,1064,1042,1069,1049,1042,1046,1038,1055,1061,1056,1053,1053,1036,1051,1050,1051,1065,1060,1056,1039,1043,1051,948,933,922,935,940,939,956,943,956,945,943,927,918,930,802,815,847,811,808,809,812,816,673,711,690,694,717,711,668,686,711,678,671,1115,1106,1137,1101,1104,1160,1131,1115,1131,1136,1114,1132,1150,1170,1111,1118,1136,1030,1119,1146,924,984,935,928,928,892,959,933,934,933,948,897,951,916,909,1066,1056,1066,1060,1044,1051,1069,1073,1073,1074,1062,1061,1071,1042,1056,1077,904,909,923,924,915,936,923,942,937,948,996,1002,1004,1007,1014,984,978,989,1008,1003,1002,1007,972,998,854,832,868,854,823,854,864,894,644,655,683,671,619,651,668,1093,1097,1077,1059,1108,1077,1118,1081,1071,1072,1064,1110,1073,1111,1041,1071,1088,1068,1079,1054,1072,1094,1083,1090,1098,1098,935,956,965,965,983,927,920,931,918,920,987,930,926,630,627,606,610,629,637,625,642,633,615,615,587,664,666,715,712,700,683,705,696,694,651,708,690,709,683,697,718,704,682,672,690,680,677,693,692,686,704,1079,1060,1092,1067,1087,1097,1106,1091,1078,1061,1086,1081,1062,1064,1080,1069,1064,1073,1070,864,919,940,922,876,876,917,924,902,917,923,915,898,668,658,658,633,644,634,631,603,653,645,638,630,666,641,634,630,600,613,717,719,729,725,729,696,725,699,707,723,712,727,705,734,708,1078,1081,1068,1074,1057,1086,1074,846,850,841,861,867,829,866,851,844,877,858,832,863,822,846,832,864,835,872,865,876,851,834,838,840,1037,1028,1035,1023,1042,1021,1056,1050,1037,1060,1040,1047,1040,1042,1051,939,939,901,957,944,918,945,926,903,683,665,645,702,674,641,673,677,689,673,677,668,641,643,670,695,648,609,628,625,941,951,917,934,902,961,952,898,933,928,895,948,910,947,925,694,667,699,676,712,700,710,749,724,693,683,705,623,609,645,620,616,633,626,640,623,633,632,613,628,619,622,615,616,616,647,614,1049,1061,1067,1107,1087,1116,1063,1075,1074,1076,1097,1043,1036,1076,1034,1100,1075,1075,1054,1082,1047,1075,1048,1060,1039,1057,939,960,954,961,960,945,943,938,961,925,945,961,938,970,980,984,963,938,968,959,971,993,991,936,1003,947,960,925,979,924,924,1015,925,927,935,942,942,927,931,912,939,949,926,942,937,933,939,1020,1014,1037,1017,984,1020,1027,1005,996,998,1010,1012,1009,1035,940,806,901,849,836,871,618,631,622,616,625,619,651,593,641,631,635,620,607,630,611,620,660,623,671,654,651,664,668,680,654,647,657,1209,1122,1142,1134,1150,1152,1195,1177,1141,1178,1180,1159,1185,1206,1158,1106,1163,1186,994,983,993,974,1004,999,989,680,699,721,702,708,997,1046,1049,1075,1050,1009,1057,1089,1064,1026,1045,1096,1038,985,1084,1041,1025,1034,1045,916,950,932,964,952,723,715,690,721,729,730,699,711,689,713,707,682,701,705,715,1090,1095,1065,1056,1103,1069,1095,1105,1071,1063,1105,1051,1038,1066,1097,1089,1067,1057,1095,1045,1106,1079,1079,1070,1068,1063,1092,1095,1080,1076,1110,1079,1101,1075,1050,995,960,954,1002,946,953,965,950,978,967,970,1080,1088,1091,1081,1075,1069,1067,1100,1058,1079,1062,1066,1078,1094,1071,1081,1079,932,972,958,934,958,944,937,941,954,949,945,968,931,930,1094,1073,1073,1070,1081,1051,1098,1050,1064,1079,1104,1084,952,913,885,914,917,895,853,901,867,866,881,909,626,640,600,598,637,647,634,656,631,636,639,625,646,624,651,604,1103,1112,1119,1108,1066,1113,1049,1139,1109,1120,1080,1071,1106,1114,1083,1136,1102,1093,1089,1098,1125,1078,1106,1136,1108,1134,1115,1100,1100,1086,955,953,980,974,939,939,961,1098,1112,1097,1089,1086,1102,1114,1111,1103,1112,1090,1106,1112,1090,999,983,1015,972,955,964,970,967,990,956,950,985,979,972,980,984,987,762,805,802,809,768,758,779,791,767,779,797,768,790,781,1039,1103,1076,1090,1099,1099,1092,931,910,930,908,918,942,915,920,932,960,903,709,700,703,707,728,712,710,703,702,715,730,674,703,901,897,895,886,890,892,885,900,899,895,910,923,894,866,883,887,1081,1090,1075,1081,1084,1070,1081,1100,1100,1075,1084,1103,1091,1096,995,1010,998,1014,1005,1005,980,989,1001,1000,909,930,917,902,902,901,900,906,888,898,882,848,845,818,848,839,839,831,844,839,861,874,835,853,836,709,677,673,693,695,672,681,686,679,691,1124,1115,1116,1119,1084,1100,1133,1144,1125,1086,1131,1126,1101,1154,1160,1119,1149,1156,931,930,922,910,901,915,896,908,930,897,971,874,891,891,884,901,937,945,934,907,1069,1051,1036,1039,1015,1134,1140,1111,1125,1120,1143,1128,1116,1118,1116,1152,1094,1164,939,974,969,914,970,943,931,988,966,956,949,1037,1062,1062,1050,1013,1042,1023,1014,1067,1050,1036,1017,1006,1036,1050,1031,1037,1040,1039,1060,1045,1045,1043,1029,1028,1060,890,905,881,888,912,864,730,695,686,714,666,717,703,659,681,683,670,690,675,679,680,988,970,1010,961,993,978,929,1007,1012,980,828,846,819,846,833,834,842,832,818,840,843,882,849,811,662,667,658,648,679,676,665,670,655,664,655,670,658,640,642,639,632,652,647,628,651,644,668,641,641,653,637,952,917,901,912,891,918,929,964,903,894,952,892,873,779,782,770,754,740,774,743,751,756,774,666,681,670,695,681,650,666,682,996,1026,1041,989,995,1031,1014,998,1026,1021,966,988,988,1004,1022,934,938,957,950,936,958,957,957,945,971,959,948,948,982,995,947,965,960,1053,1046,1073,1061,1058,1063,1061,919,904,928,943,912,1022,1012,1020,964,1006,1003,1040,970,1029,1031,962,975,997,1053,977,1023,1074,1084,1051,955,970,1063,1072,954,1035,999,992,982,1009,1053,1068,1054,1041,1063,1062,1068,1070,1070,1056,1071,1048,1052,907,895,925,895,915,875,879,866,916,894,867,889,901,881,911,889,675,680,679,689,972,960,957,973,963,994,968,968,978,1001,954,957,938,967,1009,961,985,967,983,977,975,1082,1094,1084,1073,1081,1094,1054,1093,1075,1074,1091,1074,1067,1073,932,950,925,926,951,939,908,946,918,907,905,938,945,953,917,946,920,1163,1155,1170,1169,1153,1180,1171,946,1009,957,977,971,968,955,975,968,950,979,694,693,700,695,696,716,677,684,698,711,710,682,720,1081,1074,1081,1112,1091,1112,1124,1114,1099,1121,1047,1088,1145,1049,1108,1113,1114,1084,1033,1099,1088,917,931,912,928,928,964,916,990,919,920,952,912,671,693,676,680,688,678,708,686,660,692,686,726,1093,1116,1051,1140,1130,1109,926,948,962,950,946,939,927,966,928,959,913,938,941,939,927,1041,1017,1049,1019,1035,1006,1008,1027,1016,1026,1007,1011,1041,867,884,862,862,896,884,853,827,868,862,883,663,661,669,658,671,692,658,670,689,683,674,671,679,658,671,665,674,954,934,909,948,887,915,940,953,919,988,902,818,831,832,801,826,836,837,650,655,671,644,679,675,657,666,635,644,663,642,673,618,653,666,685,676,647,593,605,594,596,583,597,612,601,596,606,598,604,603,1104,1147,1053,1078,1136,980,1126,1064,1075,930,986,940,964,978,1001,957,960,1015,993,1022,997,984,1036,1028,978,980,963,989,1018,1008,1004,999,997,990,1011,997,998,1014,994,836,841,890,867,884,872,837,882,903,894,862,889,882,862,885,843,1005,1007,971,967,946,1012,1010,991,939,985,1066,1017,985,982,1033,1035,1033,1031,1054,1024,862,910,910,915,904,875,881,931,902,910,905,1019,1091,1039,943,965,1030,1037,1034,1067,1037,1014,1027,1006,1013,1007,993,1000,998,990,986,1057,1067,1032,1055,1085,1052,1094,1088,1068,935,988,966,956,948,964,972,959,988,885,896,870,869,856,902,886,868,888,894,905,921,896,900,918,902,898,1050,1027,1056,1051,1034,1049,1032,1047,1043,1052,1055,1062,1041,1058,1020,1045,889,925,937,909,897,868,921,910,938,911,933,917,916,986,1053,1080,1063,1069,1069,1057,1067,1053,1062,1061,1067,1064,1076,880,909,922,913,912,917,905,907,907,886,896,900,915,938,871,921,925,1006,997,1009,994,984,998,1006,996,1032,1037,1022,1018,1037,1029,1046,1039,1028,1034,1041,1039,1045,1035,1028,1025,1030,914,946,949,941,944,947,969,948,963,944,943,945,943,949,958,924,948,932,715,727,710,725,729,722,712,675,695,710,723,729,710,731,717,717,737,759,734,722,775,736,726,733,710,740,712,685,671,673,676,670,669,680,668,662,1051,1061,1053,1031,1042,1035,1037,1066,1060,1079,1056,1048,1045,1041,1066,1064,1045,1046,1050,1030,1045,1069,1052,1042,1055,1061,1055,921,939,886,901,889,945,927,638,591,632,631,612,648,596,657,637,613,705,713,680,693,699,708,691,693,683,699,692,706,696,741,703,702,698,713,698,724,725,712,697,706,705,704,714,746,740,744,746,759,717,746,720,765,773,779,726,741,745,728,722,726,723,726,718,722,727,713,743,867,936,937,900,899,942,886,883,948,916,933,720,755,757,747,742,723,717,736,723,742,730,716,732,762,687,677,672,676,687,683,681,677,674,678,688,671,702,669,919,938,925,953,962,968,979,955,974,969,983,969,966,1001,961,963,955,785,775,766,765,760,753,758,759,759,769,781,775,793,760,770,746,615,622,630,640,631,643,633,620,649,635,631,622,612,615,614,613,634,606,611,730,726,691,710,710,728,694,708,716,732,717,719,719,711,725,737,705,724,703,713,699,710,715,721,735,725,728,724,733,723,1152,1199,1151,1165,1201,1158,1160,1183,1272,1140,1188,1188,1213,1148,1144,1205,1005,1033,1036,1007,1022,1021,1022,1014,1033,1032,1006,1021,1000,988,1021,1017,1023,981,1007,753,637,731,706,668,672,647,705,713,620,729,706,648,701,683,729,687,956,970,924,931,923,900,948,964,945,975,932,934,1008,772,801,792,783,798,809,778,792,816,779,768,799,816,801,823,923,930,916,922,935,955,869,865,861,867,886,869,874,881,863,873,712,705,690,698,683,692,711,701,696,688,696,679,681,687,700,704,700,697,627,600,615,598,609,632,606,602,615,622,601,618,602,612,614,594,620,600,596,601,594,631,614,616,617,603,620,617,638,632,624,608,626,1129,1052,1115,1078,1014,1083,1086,1074,1023,1084,1043,1098,1053,1039,1052,929,968,909,978,963,974,932,985,960,960,957,953,755,744,749,761,768,743,726,767,759,771,754,753,761,768,731,732,780,781,765,743,739,767,646,673,643,661,692,674,676,666,658,674,660,668,664,574,593,588,579,586,577,576,573,595,585,584,589,565,653,660,666,683,673,672,660,687,639,665,668,794,756,791,781,781,796,774,799,732,772,773,768,787,779,791,684,675,675,701,675,687,685,685,693,680,684,692,685,687,689,678,677,987,995,981,998,985,989,1001,953,974,952,981,970,934,939,912,924,934,1008,1005,995,1002,990,981,1017,1011,984,1017,1003,948,919,923,920,925,923,921,912,908,927,892,929,926,979,977,985,981,980,984,973,982,815,817,832,823,819,810,851,820,807,818,816,826,984,1017,1034,1020,1005,1022,996,1054,1015,1039,1009,1018,1023,1040,1000,998,1024,1050,1066,1035,1055,1051,1062,1028,943,949,934,915,946,917,947,939,921,943,661,652,696,637,615,690,662,680,642,661,674,665,688,643,658,642,1060,1062,1077,1069,1075,1062,1086,1080,1078,1059,1054,1099,1054,1077,1127,1080,860,861,903,854,871,921,909,915,888,648,704,704,698,683,700,691,694,698,717,702,1307,1317,1366,1373,1325,1360,1299,1322,1314,1248,1293,1256,1356,1289,1258,1010,1013,1028,1043,1030,1043,1005,1017,1005,1055,1005,1051,995,1073,735,722,723,737,716,724,643,697,674,676,694,718,1013,998,1071,1012,1046,1059,1054,1039,1014,1080,1048,1049,1015,1002,1012,1025,1011,1041,1055,871,909,922,921,917,929,918,929,916,913,935,891,896,901,909,942,891,930,991,997,1035,1038,1014,998,1012,1022,1005,1007,997,985,1039,953,1034,1017,1004,1031,1031,1048,1030,1042,1021,1069,1036,1049,1035,1047,1050,944,939,960,943,942,937,949,937,937,947,958,967,947,928,710,703,673,685,713,726,701,715,725,726,691,677,651,657,656,654,647,664,1083,1086,1084,1034,1095,1084,1063,1103,1082,1076,1098,1071,1081,1095,1085,971,1004,964,958,911,930,915,912,920,921,876,870,847,869,901,877,872,848,876,880,869,865,859,878,862,882,678,679,686,711,693,693,695,678,683,697,710,663,692,1130,1127,1179,1085,1123,1148,1108,1139,1114,1101,1103,1068,1127,1103,986,974,994,982,975,974,1005,970,968,967,955,981,972,952,984,997,923,912,930,936,881,923,891,921,910,904,920,917,1075,1063,1046,1058,1067,1080,1053,1063,1066,1083,1055,1040,909,913,920,907,938,938,918,916,680,675,646,654,694,681,684,679,1088,1091,1118,1042,1103,1069,1075,1078,1098,1087,1071,929,942,960,961,974,938,978,968,971,969,1074,1046,1069,1028,1048,1094,1060,1081,1079,1043,1054,1085,1026,1028,1083,1035,1025,1063,1129,1075,1101,1078,1079,1083,1066,1071,1096,1084,1085,1088,1061,1075,1091,1062,1069,1081,1067,948,932,976,906,936,978,965,945,958,935,955,974,1004,677,673,662,647,681,643,670,681,682,648,656,681,666,689,658,687,674,658,682,670,668,657,663,654,682,688,1034,989,1069,1006,1020,1082,960,1030,1036,996,1085,1097,1086,1082,1073,1089,1099,1065,1095,1082,1116,1080,1076,1079,910,880,878,892,872,896,896,917,902,624,645,646,616,671,654,633,669,645,672,655,648,653,657,1152,1170,1201,1245,1082,1213,1103,1177,1193,1155,1193,1053,1043,1060,1059,1041,728,717,734,690,753,774,772,733,733,720,756,766,964,934,951,954,957,949,957,954,906,986,978,917,1003,1040,1031,1008,1024,1041,1028,1033,1027,1017,1027,1035,1034,1009,1027,1036,1017,1010,920,916,939,940,951,931,913,935,939,971,949,952,905,642,646,647,658,662,650,642,607,655,642,633,652,670,636,635,649,655,626,631,638,627,620,596,633,615,646,604,593,630,630,690,697,643,677,675,665,649,691,662,635,654,685,641,654,657,999,1030,976,992,1000,1032,989,1008,1003,1018,1016,1020,982,1005,1042,1055,1062,1047,1041,1050,1044,1021,1043,1060,1019,1046,1059,1055,1059,1021,886,900,910,911,892,905,883,891,904,891,910,897,898,920,904,898,925,928,960,987,944,946,938,974,949,955,947,923,939,952,954,947,981,928,990,978,984,974,987,995,976,989,1001,979,978,970,967,983,961,870,942,873,907,910,896,907,874,1037,986,1018,1002,986,1013,1011,1000,1007,980,1000,1073,982,1011,1021,957,968,1046,1060,1034,1032,1051,1038,1038,1030,1030,916,879,885,915,847,860,875,920,893,932,913,908,901,866,875,892,920,1021,979,987,1021,994,1006,1039,1002,1047,1054,1067,1018,1032,1039,1006,1016,1024,1041,1038,1024,1032,1032,1044,1047,1028,1034,860,903,919,892,909,896,922,891,913,911,886,919,901,909,905,693,678,700,714,686,687,696,685,668,698,711,697,709,864,879,851,841,876,829,879,854,878,866,847,870,865,862,855,822,835,845,857,852,686,668,664,679,675,657,642,667,636,627,630,627,643,626,611,639,628,653,627,1186,1175,1164,1188,1178,1184,1176,1141,1218,1196,1171,977,966,943,962,974,982,938,959,950,946,712,767,758,705,731,720,726,718,715,752,728,760,735,736,756,715,881,861,880,887,911,881,879,903,881,885,884,913,759,752,782,777,747,775,761,777,777,777,984,971,1003,944,986,990,1010,1012,1036,1036,1059,1076,1042,1048,1038,1043,1043,1062,1022,1047,874,879,908,887,916,915,954,917,871,896,931,893,863,933,910,909,889,886,883,894,893,858,912,865,931,880,960,1015,971,942,945,970,1030,1016,1025,1049,1050,1019,1012,1035,1033,1036,1021,1037,1036,1036,1037,1033,1031,880,883,835,884,900,903,961,889,913,904,882,898,902,894,998,985,1034,1001,1071,1027,1008,1016,1030,1026,1039,992,1032,1031,1032,1015,1023,1032,1069,1031,1031,1049,1062,1042,896,896,883,907,892,883,903,895,905,896,919,889,895,883,883,888,678,673,687,679,676,670,656,694,656,679,707,672,689,660,685,1104,1139,1094,1073,1110,1119,1088,1102,1103,1105,1132,1083,1070,1098,1082,987,984,1009,983,974,953,974,1001,1021,988,987,1002,977,1002,994,805,806,825,796,1054,1065,1072,1038,1067,1094,1056,1056,1069,1076,1081,1077,1068,930,910,919,926,945,924,921,907,908,914,937,888,927,917,694,693,654,658,666,683,655,692,674,687,679,687,678,679,686,696,684,666,685,680,1102,1102,1089,1081,1106,1121,1129,1134,1120,1136,1122,1123,1170,966,928,954,970,977,979,964,921,963,948,982,959,963,1059,1090,1063,1080,1051,1066,1049,1085,1056,1044,1044,1068,1069,1058,1069,1070,1044,1044,1022,972,976,956,965,944,969,944,974,981,968,653,618,622,656,647,606,648,674,645,615,635,626,615,604,606,617,621,615,595,639,635,637,623,607,710,697,719,707,689,715,703,708,705,710,751,769,760,775,755,782,763,719,762,774,751,751,729,732,724,719,719,718,731,1087,1115,1133,1102,1126,1139,1152,1141,1100,1117,1146,1139,1117,1135,1107,948,974,957,973,973,979,980,966,970,969,991,972,981,672,722,696,693,722,704,685,672,671,668,682,660,694,687,676,690,684,698,670,681,663,684,672,671,673,685,681,701,687,692,688,699,696,683,681,696,677,684,700,676,701,704,700,682,688,701,675,675,697,695,698,672,649,688,686,651,676,684,672,685,656,661,662,660,652,663,651,661,633,628,646,637,630,637,638,644,634,638,640,654,629,642,651,834,908,907,909,892,874,875,896,888,898,900,857,908,655,671,685,682,696,688,686,690,685,739,697,693,674,686,717,592,603,608,595,602,616,614,601,603,606,620,624,612,586,609,1122,1107,1045,1098,1135,1111,1081,1100,1094,1113,1093,1088,1072,1102,1075,1061,983,1008,1027,995,980,1011,977,1016,1023,1049,987,985,946,964,955,936,936,929,934,977,944,959,688,687,705,709,681,704,688,648,696,703,742,705,1071,1056,1061,1066,1021,1023,1031,1067,1058,1068,1026,1046,1055,1046,1046,1025,1051,1026,952,964,966,957,953,955,968,971,969,951,938,966,955,936,981,963,925,905,959,971,1162,1137,1141,1146,1139,1151,1114,1113,1106,1156,1138,1142,996,1029,1009,1018,1019,1048,1024,1011,997,995,1040,1024,1035,1042,1065,1075,1066,1088,1056,1081,1054,1063,1033,1044,1074,1066,1068,1059,1049,1049,1074,1051,909,910,927,915,925,937,946,900,925,599,614,655,605,625,603,626,605,617,614,627,592,616,626,601,593,617,713,728,732,783,796,773,782,773,786,796,766,774,791,802,814,1002,1012,1051,1025,1008,1021,1025,1023,999,1032,1013,1023,1011,827,831,837,840,811,827,811,823,826,827,827,702,665,669,655,689,706,641,651,663,658,664,676,656,634,657,665,672,675,639,603,608,628,598,615,634,619,619,615,633,634,1080,1048,1076,1051,1035,1070,1068,1057,1069,1064,1032,1066,1055,1020,1041,1045,1046,1048,1033,1038,1024,1051,1011,1044,1011,1037,1031,1005,1022,1028,1021,1039,1015,1043,1025,1058,1017,1024,1043,1024,876,862,860,865,851,851,870,846,817,607,622,622,624,585,619,605,636,622,625,593,641,607,673,677,666,650,642,664,658,664,658,663,638,666,651,675,676,673,647,638,657,657,668,1093,986,1008,1071,1019,1058,1029,1067,1031,989,1039,1044,1036,1065,1045,1020,1020,1017,1042,1049,1071,1021,881,919,898,866,881,864,887,893,915,736,701,682,711,688,715,677,690,688,689,698,682,706,674,683,803,804,831,836,823,850,801,779,811,803,851,830,826,802,817,816,809,799,839,815,806,802,794,786,707,710,716,693,737,705,713,705,717,705,661,712,719,652,649,654,657,652,664,662,676,658,650,648,670,667,657,644,642,652,648,640,652,649,643,641,639,676,653,656,642,645,649,643,636,655,985,968,982,974,1000,972,973,963,974,992,955,953,1005,956,932,984,980,976,968,983,986,985,1006,1048,1024,1063,1050,1048,1066,1072,1072,1052,1039,899,921,936,931,878,896,932,904,921,908,916,907,942,682,673,675,660,689,665,1019,1035,1039,1076,1073,1060,1102,1015,1019,1084,1052,1122,1045,1081,1070,1082,1085,1037,949,988,989,959,991,977,1001,678,655,678,676,689,702,657,679,680,624,665,693,612,622,622,610,587,612,612,630,607,616,605,605,615,613,606,605,599,625,613,596,624,622,607,590,1089,1110,1136,1082,1108,1108,1119,1085,1113,1112,1148,1100,1002,991,989,1013,960,998,959,1001,1009,1020,1013,1031,979,1008,986,705,692,681,672,713,660,670,659,676,678,683,693,677,627,631,655,627,660,645,653,646,628,1060,1072,1023,989,1024,963,1042,1020,1063,926,971,996,915,948,950,970,994,958,943,984,992,964,668,663,656,667,1093,1129,1117,1148,1107,1122,1100,1129,1136,1132,1098,1153,1130,1086,1097,1099,1018,999,1016,1023,991,1000,981,1032,995,999,1025,999,1016,1011,1026,997,998,1032,1163,1196,1170,1189,1179,1202,1190,1191,1163,1192,1196,1198,1166,1172,985,984,967,994,994,984,982,971,1008,949,963,986,974,966,1008,978,982,949,1077,1056,1064,1073,1057,1057,1056,1069,1067,1085,1051,1071,1054,1064,1081,1048,1048,1063,1077,1057,953,957,947,967,969,966,951,969,926,939,972,943,972,941,992,739,739,712,717,737,713,724,747,735,743,739,738,733,719,926,970,944,916,939,935,966,946,951,868,868,894,875,866,880,860,878,883,878,847,856,873,673,697,694,702,686,708,707,706,687,688,715,671,700,706,702,703,689,696,688,1153,1124,1170,1105,1135,1122,1127,1184,1166,1145,1100,1147,1151,1126,1043,1035,1008,1008,979,1006,1019,1022,1020,1031,1026,1011,930,916,899,947,917,938,939,929,931,909,926,939,913,918,1072,1063,1060,966,990,984,966,1001,972,980,984,975,978,957,974,815,818,803,805,799,804,812,800,816,796,804,778,819,814,814,836,810,784,773,689,686,695,701,674,720,693,709,702,701,872,869,881,865,885,891,808,860,877,886,887,860,859,877,1048,1048,1035,1058,1068,1073,1070,1044,1056,1086,1063,1011,923,932,926,924,960,933,906,911,921,936,902,936,662,668,662,683,697,687,680,661,690,1058,1085,1049,1143,1048,1070,1067,940,913,924,915,939,912,933,956,929,930,936,1037,1030,1042,1033,1089,1052,1058,1026,1051,1033,1032,1039,865,870,821,891,889,845,871,918,878,882,884,839,915,897,901,884,649,630,628,637,634,652,620,632,640,651,649,619,643,660,636,653,616,639,648,652,643,622,643,627,614,627,640,639,1165,1177,1148,1140,1165,1142,1159,1182,1122,1162,1118,1172,1116,1006,995,1009,977,974,983,1011,1029,960,1039,1015,996,958,997,993,1004,962,1023,999,637,647,658,652,649,627,690,663,677,615,676,582,586,621,566,584,558,581,589,585,1075,1130,1046,1104,1138,1077,1121,1126,1151,1089,1120,1135,1156,1133,1035,1042,1026,1048,1029,1048,1066,1035,1046,1029,1055,1073,1074,1045,1051,945,953,925,964,956,942,941,946,942,948,929,944,938,953,938,840,835,851,831,813,831,820,833,825,770,775,782,771,772,775,711,716,730,702,700,712,703,690,727,701,694,709,713,699,678,676,694,716,687,685,700,671,680,674,670,678,673,704,684,1203,1157,1200,1125,1100,1141,1138,1143,1176,1181,1105,1149,1153,1136,1207,1123,985,973,994,1000,977,962,978,1004,1003,968,995,707,663,703,707,688,702,657,677,689,673,661,687,700,701,1200,1154,1166,1195,1174,1191,1175,1191,1131,1182,1231,999,1027,1040,1019,1044,1016,1000,1025,1010,1010,1128,1150,1150,1154,1134,1162,1124,1116,1103,1157,1131,1169,1153,1156,1166,1133,1155,883,867,890,900,854,863,863,880,749,731,733,755,752,707,741,698,730,712,705,728,699,744,739,718,764,717,704,746,749,726,756,756,728,724,733,753,717,729,1147,1116,1143,1130,1164,1159,1174,1153,1143,1154,1159,1139,1160,891,873,912,909,934,931,928,914,934,952,929,914,912,937,926,654,643,647,644,645,629,652,623,622,661,1108,1090,1138,1099,1082,1115,1066,1071,1104,1117,1069,1106,1114,1087,1083,1071,1080,1070,1081,1074,1065,1110,1084,1082,1073,1106,1057,1067,996,975,1019,967,985,979,953,972,1000,1014,972,993,977,998,988,966,711,709,737,680,666,719,640,727,684,694,687,725,657,647,648,627,651,656,660,650,636,649,633,637,628,630,616,609,646,616,627,642,620,617,631,612,613,636,1130,1138,1123,1155,1203,1143,1112,1117,1139,1084,1138,1178,1009,1017,1006,1009,1000,1005,1003,984,1036,1022,1019,1020,1007,983,940,929,917,928,932,905,908,950,926,919,1014,1030,1033,1048,1028,1040,1019,1027,1049,1046,1006,1034,1052,1057,1053,1047,1012,977,975,998,675,675,683,663,653,655,667,987,979,974,972,1004,989,991,977,997,1006,952,986,1014,1066,1043,1040,1079,1058,1040,1027,1077,1023,1036,1066,1072,970,951,955,1002,974,948,942,936,952,980,971,969,950,967,948,948,952,956,974,925,978,948,925,976,954,947,956,968,950,681,707,722,706,705,716,705,740,742,698,734,730,694,676,747,701,767,625,613,593,611,618,618,610,603,612,619,597,610,611,620,612,608,737,734,765,732,718,758,709,752,778,761,741,741,716,733,742,734,756,748,716,754,733,734,731,737,729,727,716,745,728,720,730,753,742,727,729,739,754,711,759,733,742,1016,1028,1065,1071,1012,1032,999,1035,1018,1039,1022,936,944,960,930,972,943,948,951,945,952,951,943,929,939,950,952,960,952,966,942,962,950,943,914,908,916,906,924,923,916,918,923,916,919,929,995,957,997,972,962,988,966,963,943,1037,1048,1024,1029,1039,1048,1043,1013,1031,1017,1053,1026,1034,1017,1016,1018,1032,937,937,883,969,911,930,898,898,931,901,902,905,1122,1186,1145,1154,1167,1121,1181,1121,1112,1159,1134,1155,1123,1151,996,940,976,952,960,947,954,963,988,998,949,970,955,974,950,611,679,650,634,660,639,638,646,632,647,665,645,635,635,638,928,890,921,930,944,937,991,912,924,949,766,736,749,746,770,761,750,755,742,772,726,767,738,745,771,670,686,700,682,694,680,672,676,675,680,673,678,673,696,681,693,1021,1039,1000,1057,998,1005,995,1010,1031,1011,1037,1016,991,1013,741,736,732,749,763,775,725,766,763,746,789,1034,1119,1092,1065,1086,1101,1094,1059,1058,1086,1094,1085,1074,1087,954,932,909,961,914,939,953,1092,1093,1049,1091,1053,1032,1005,1025,1024,1002,1023,1021,1018,1003,1029,1001,873,861,854,847,867,861,856,836,888,844,849,858,840,870,829,858,878,845,880,804,802,815,824,823,822,804,806,817,811,820,834,806,828,713,712,697,698,700,698,695,710,679,710,707,693,719,682,714,694,879,878,866,866,872,839,887,692,712,685,697,659,663,688,652,681,683,647,643,634,631,600,640,615,617,624,618,642,622,617,621,648,621,632,635,642,995,984,1001,1017,1023,1028,1019,1042,1002,1002,1034,1021,1025,763,753,759,722,793,787,761,750,758,829,828,822,839,856,847,870,834,837,813,843,843,855,811,856,798,830,856,741,731,722,730,724,720,720,707,761,731,746,713,742,721,683,694,700,698,682,707,687,705,689,683,681,684,687,681,679,664,668,882,886,891,913,907,844,876,869,895,890,945,913,885,667,705,701,692,672,701,688,698,671,634,625,621,616,640,634,631,638,619,634,642,638,637,632,645,622,633,644,804,752,774,764,788,779,757,763,789,798,1033,1054,1041,1006,1041,1048,1035,1007,1039,1069,1056,1039,1032,1112,1079,1093,1080,1069,1106,1101,1084,1097,1079,1092,914,918,935,921,892,922,916,894,906,923,920,936,921,679,664,647,682,666,652,663,637,635,656,648,664,1014,962,937,947,987,950,971,1006,987,992,1014,1013,981,1026,970,999,1008,978,1003,999,1005,1020,967,993,1026,1028,1047,1039,1021,1049,1020,1043,1033,1028,1030,1029,1038,917,907,916,888,902,932,906,912,907,922,901,896,887,891,884,884,855,874,880,864,866,904,878,874,920,981,992,1028,983,981,999,988,991,981,966,977,968,979,1019,1057,1024,1048,1037,1054,1037,1052,1015,1042,901,936,882,894,884,876,918,878,861,906,914,912,911,902,870,890,872,901,1059,1092,1086,1081,1067,1081,1082,1068,1063,1065,941,940,950,944,952,954,949,974,962,965,942,950,952,949,955,998,1051,1071,1073,1071,1066,1041,943,960,915,957,929,940,947,946,939,940,927,930,928,936,932,927,926,923,932,945,941,928,918,926,942,849,844,856,852,830,848,836,867,843,868,828,863,840,831,673,685,675,684,664,670,692,666,682,683,692,671,680,686,667,673,696,702,680,677,667,686,684,683,673,659,686,689,660,660,665,672,671,673,667,656,676,668,660,676,670,661,679,661,666,650,673,1013,1010,1008,1004,997,1046,1010,1017,1053,990,1044,1064,1097,1033,1067,1065,1078,1065,1043,1053,930,927,953,940,917,950,946,974,949,977,965,660,726,638,694,677,666,652,686,681,628,663,649,632,633,628,670,641,620,626,640,637,959,943,970,987,967,996,1000,949,997,957,953,984,979,1118,1099,1090,1094,1099,1113,1110,947,979,945,931,973,951,944,1061,1039,1026,1055,1054,1055,1059,1078,1052,1045,1048,1063,1078,935,907,902,917,945,906,882,904,895,946,916,867,941,937,943,923,912,959,905,1057,1054,1085,1082,1080,1106,1077,1093,1092,1098,1114,1005,1025,1011,1007,1010,1016,985,995,1008,994,1006,1008,995,1009,997,1018,1012,988,1021,774,779,805,814,779,806,791,744,761,757,763,771,762,761,739,789,705,663,646,690,681,680,680,674,683,696,707,696,698,685,696,860,866,927,850,870,872,876,858,881,888,858,818,854,726,750,743,765,756,750,727,715,637,637,653,641,759,772,797,782,787,777,773,779,771,750,774,777,767,765,762,768,746,727,728,721,735,747,750,725,747,743,990,1041,1015,1039,1018,992,1013,1000,1035,1048,1001,1026,780,775,769,770,777,778,781,779,792,781,735,862,878,874,904,843,872,867,878,893,869,868,911,886,901,866,892,901,878,922,903,850,899,883,890,896,877,885,904,883,899,1060,1072,1063,1069,1071,1046,1041,1057,1069,1057,1054,1025,1037,1042,1031,1027,1022,1040,1034,1024,1031,1025,1025,1028,1023,1051,1032,1021,1026,1017,1053,1044,1018,1033,936,886,914,917,888,927,886,906,899,934,921,895,924,907,927,907,898,922,899,918,1019,1003,1029,1024,1028,1014,1025,1039,998,1036,1037,1039,1028,1021,926,922,919,891,900,889,886,899,939,917,893,912,897,926,907,927,932,918,892,634,686,668,660,669,671,643,678,691,646,663,685,669,681,684,654,1063,1087,1054,1076,1053,1060,1067,1074,1023,1013,1065,1057,1067,1064,1047,1080,1063,1078,1071,1071,1057,1073,1055,1062,900,925,891,926,891,866,917,911,922,906,918,938,904,704,677,722,696,674,682,698,694,693,685,673,678,663,676,682,679,701,668,655,686,670,683,658,682,1099,1082,1103,1068,1083,1051,1069,1116,1064,1055,1049,1053,1055,958,946,951,985,949,946,979,962,947,962,964,933,973,961,984,944,950,944,980,897,837,878,866,890,878,849,900,969,1008,984,997,1017,1004,1012,980,997,975,974,1002,980,987,997,991,993,992,983,1074,1054,1043,1073,1070,1073,1068,1065,1070,1055,1063,1059,1076,1061,1088,893,880,939,881,901,859,882,929,909,932,1061,1119,1075,1099,1087,1095,1105,1090,1090,1090,1092,1065,1069,1099,976,979,1000,991,977,978,983,992,985,977,1004,716,679,670,671,666,642,671,685,673,621,619,631,618,640,610,646,611,616,611,611,607,629,612,642,631,610,627,614,1078,1077,1101,1156,1113,1137,1107,1101,1094,1134,1061,1085,1066,978,996,990,1010,991,1012,989,1017,977,994,983,1021,994,1005,995,809,812,797,795,791,787,791,991,981,966,978,958,964,978,993,981,955,933,930,933,925,929,943,931,925,946,922,928,938,1032,1002,1035,1023,1009,1021,1013,899,914,878,913,917,899,898,916,897,881,908,896,924,878,676,662,659,674,672,678,658,676,658,713,677,684,675,651,699,651,1152,1101,1108,1105,1107,1058,1091,1140,1030,1095,1071,1139,1113,1138,1129,1115,1089,974,970,997,972,987,977,990,980,1003,996,690,670,697,690,710,714,710,717,718,692,672,664,676,678,680,661,683,679,687,674,703,681,676,689,679,684,660,681,682,683,666,675,690,677,684,681,1043,988,1017,1024,1049,1000,976,1029,1013,1055,1050,1037,1037,1040,1040,1044,1058,1026,1031,1068,1062,1021,909,880,961,908,892,914,918,925,926,925,935,916,925,673,657,663,669,687,638,670,666,669,632,685,652,661,641,566,583,580,597,590,592,586,573,569,590,552,589,574,590,603,589,575,568,610,604,630,616,596,609,638,612,722,731,730,715,727,716,711,731,712,730,725,728,725,722,733,715,720,712,721,742,726,1074,1107,1067,1060,1119,1028,1075,1046,1086,1091,1050,1076,1065,867,869,933,892,892,891,893,921,894,885,902,889,934,939,909,652,611,586,579,619,649,612,592,610,601,613,603,632,1177,1185,1165,1121,1127,1112,1170,1137,1185,1094,1193,1159,1114,1129,1029,1020,1015,1027,1045,1017,1032,1054,1047,1005,1004,1048,1052,1053,1039,1074,1017,1020,1034,1046,1033,1044,1057,1040,1015,1015,1150,1106,1153,1041,1159,1074,1109,1096,1141,1109,1146,1094,1129,1114,1073,1143,1071,1146,1097,1129,1088,1071,1079,1085,1070,1065,1079,1061,1079,1078,1089,947,911,933,945,915,916,929,933,936,936,894,915,944,896,905,927,676,670,707,698,695,697,689,686,688,692,712,707,684,913,919,895,896,931,934,896,896,933,903,947,899,874,915,921,879,924,923,924,757,757,761,745,763,750,770,737,747,768,921,909,933,908,934,919,940,911,907,940,914,918,926,895,919,1073,1041,1073,1058,1055,1061,1070,1083,1041,1048,1062,1087,1054,1060,1071,909,972,910,900,926,906,937,908,921,881,962,999,976,1002,988,1032,1012,1026,1050,988,1043,1016,983,989,1069,1054,1057,1081,1059,1056,1070,1032,1041,1053,1063,1079,1047,1059,1037,1077,1071,915,939,928,941,965,924,914,919,927,948,909,916,932,950,1071,1056,1050,1064,1071,1077,1047,1061,1062,1064,875,848,860,867,668,717,661,687,689,695,681,719,694,1001,1070,1076,1067,1074,1084,1059,1035,1067,1043,1054,1078,1084,1035,1052,838,845,1007,1006,1003,1014,1027,1020,1041,1004,1005,1023,1023,1006,1028,1009,1033,1011,1010,1006,1013,1043,1030,1034,1027,1033,1028,1020,1014,1041,1022,1026,925,917,946,942,927,949,910,966,965,963,960,940,957,964,955,938,896,881,900,890,893,899,899,887,876,879,866,894,900,897,738,723,736,729,737,756,721,729,715,715,728,735,857,914,935,889,937,906,893,877,887,873,909,892,1054,1038,1058,1055,1063,1072,1050,1031,1063,1028,1070,1063,1055,1065,1060,1072,1050,1073,1060,1062,1059,1033,1053,1062,1054,924,929,883,911,899,899,890,910,1020,1042,1035,1030,1046,1042,1059,1007,1016,1034,1033,1046,1025,1018,922,921,938,899,927,915,899,920,967,926,936,920,929,938,918,925,920,1143,1120,1103,1143,1133,1116,1110,1115,1106,945,948,956,934,942,950,938,945,939,931,942,956,944,944,971,942,953,922,718,678,694,717,728,864,858,875,859,844,851,857,870,837,854,858,866,883,840,877,871,707,708,718,742,722,715,743,732,708,710,697,732,734,702,726,707,697,686,678,653,684,669,671,651,676,672,655,1201,1166,1192,1113,1276,1203,1105,1020,995,1012,1028,979,991,1004,997,1009,988,1043,1074,1048,1067,1054,1062,1062,1079,1062,1054,1045,1058,1044,1041,1060,1060,1070,911,905,897,906,926,920,924,902,927,923,899,924,900,699,694,720,688,674,704,697,710,708,707,698,680,1165,1199,1189,1224,1176,1165,1218,1224,952,970,953,989,968,956,941,725,727,762,730,750,745,725,729,717,713,719,729,744,708,744,904,900,903,886,875,919,882,805,804,799,814,784,813,797,796,781,801,796,784,821,803,657,634,660,689,647,661,590,576,591,569,574,599,590,565,559,569,582,573,573,585,583,559,578,586,577,668,688,706,683,689,700,668,682,692,692,677,673,698,694,701,716,718,710,708,696,703,708,701,695,703,698,698,1038,1032,1024,1041,1019,1000,1057,1055,1063,1016,1066,914,878,833,863,886,865,853,885,857,876,879,667,644,669,654,652,660,651,656,653,653,681,641,661,1024,1013,1004,1060,1015,1014,1012,1011,1017,1010,1007,848,878,819,868,839,836,853,848,827,842,854,860,868,839,857,841,861,822,831,1006,1016,1009,994,1020,1003,1005,1013,1001,1003,992,1002,990,1015,998,1022,957,959,964,957,965,957,961,939,954,950,962,949,961,940,977,963,997,1032,997,1019,1025,1020,1014,1003,1017,996,1022,1033,1009,1029,1009,948,907,928,934,934,916,933,905,918,932,909,918,1024,1006,996,1039,1001,1026,987,1028,1006,972,1036,1031,1039,994,1008,933,1050,1004,1031,979,1005,1017,1030,1034,1041,1018,1018,1019,1039,1030,1023,1025,1034,1039,1014,1032,1037,1024,1040,1026,1019,904,925,940,921,931,925,946,938,970,931,931,949,961,942,952,657,672,693,1161,1131,1203,1116,1125,1123,1180,1116,1144,1126,1124,1155,1016,1048,1041,1047,1007,1010,1063,1076,1001,1022,1017,1044,1030,1048,1044,1056,1056,1016,1036,1056,1043,977,945,946,960,949,939,961,931,953,776,758,778,796,746,756,937,942,955,965,950,949,951,945,958,947,978,967,969,970,908,924,909,920,900,942,911,929,720,741,729,744,729,743,741,730,735,723,738,746,888,896,902,924,878,922,906,927,934,918,919,924,888,803,792,814,782,809,789,791,786,784,782,797,786,812,1013,983,1007,1009,985,1012,1035,1051,1044,1056,1055,1046,1049,1025,1028,1069,1079,1058,1055,1061,1049,1062,1050,1077,1080,1063,1058,1076,939,924,937,934,957,964,935,918,952,946,944,929,945,938,911,658,691,682,649,660,644,660,677,677,678,688,662,688,679,636,664,657,684,698,664,666,677,659,680,669,676,691,678,669,668,668,671,1207,1170,1152,1165,1167,1177,1166,1114,1163,1181,1185,1165,1191,993,985,967,1009,1001,1023,971,992,991,1025,997,1029,973,1002,1103,1108,1117,1076,1115,1077,1112,1126,876,906,938,927,922,908,914,927,896,911,920,912,920,936,889,958,930,895,948,940,623,593,609,589,716,732,696,688,712,713,724,719,744,682,727,722,736,705,714,812,802,784,793,825,811,702,710,707,692,717,719,719,702,719,714,718,727,724,726,718,1090,1095,1081,1124,1126,1119,1121,1112,1100,1098,1063,1089,1010,961,944,964,950,961,981,990,956,978,1049,1041,1091,1046,1087,1029,1050,1045,1058,1071,1050,1072,1042,993,1076,1035,1201,1195,1135,1189,1177,1205,1197,1173,1203,1208,1178,1138,1153,1185,1129,1180,1194,1153,1183,1147,1022,998,982,988,1005,983,1011,1007,996,1010,997,1033,993,1050,1023,996,1044,997,984,1038,1056,989,1027,965,988,968,999,1038,1033,957,971,957,954,982,980,955,964,959,959,956,957,968,937,964,970,958,1053,1040,1044,1055,1070,1047,1055,1062,1038,1066,966,897,916,940,904,929,914,1051,1049,1038,1031,1003,1061,1069,1046,1006,1052,1047,1035,1052,1048,1034,1013,1023,1021,1051,1043,1051,1027,884,923,936,920,922,923,901,910,913,938,916,904,959,945,921,945,954,937,946,917,928,943,956,933,945,942,968,926,862,853,830,847,837,854,861,862,852,853,855,835,852,849,853,678,705,663,683,699,689,713,688,679,694,683,705,700,676,1128,1121,1108,1113,1151,1133,1100,1120,1139,1120,1118,1074,1111,1124,930,933,892,962,959,953,895,906,923,935,958,713,680,677,692,685,659,686,707,698,667,679,680,686,699,707,697,690,1138,1160,1140,1133,1125,1131,1166,1089,1089,1103,1120,1129,1195,1121,1108,1089,1119,1113,1151,1102,1093,984,1010,997,956,994,1011,982,997,951,1054,1025,1019,1105,1007,1013,986,984,1054,1065,1048,1074,1054,1046,1068,1079,1072,1050,1063,940,952,971,960,976,743,766,739,737,720,743,708,751,734,751,736,738,750,742,738,752,732,669,649,660,646,662,645,666,670,673,667,674,647,664,659,656,687,663,654,667,1078,1097,1087,1099,1168,1042,1114,1111,1104,1089,1103,1095,1094,1119,1009,1021,1026,1020,856,851,878,840,865,858,865,891,858,870,849,851,868,875,884,894,865,734,724,737,717,677,700,701,706,695,688,684,671,668,664,676,674,671,670,665,778,754,791,758,746,745,775,784,762,760,771,797,793,761,767,751,767,787,760,781,767,755,738,739,744,761,752,760,778,769,751,765,690,678,686,673,685,670,672,685,665,663,670,910,940,935,946,919,932,924,934,916,886,717,760,718,776,735,904,924,928,911,922,961,908,928,933,945,875,941,943,900,911,743,784,785,765,763,746,749,770,770,744,747,756,765,751,752,774,670,697,713,695,697,709,680,699,707,683,678,695,700,685,694,699,684,703,692,665,678,1133,1123,1153,1094,1094,1089,1087,1119,1092,1096,1105,1130,1118,1099,1088,1121,993,973,975,1002,999,996,998,980,954,981,970,976,902,905,932,914,930,890,928,914,920,896,937,920,919,911,900,1041,1050,1038,1024,1035,1017,999,987,964,976,1003,987,975,969,986,994,1012,995,1004,987,996,992,994,993,1005,1001,1020,1006,1008,997,1014,988,999,1016,1011,1019,1021,1001,1001,1028,1002,983,1009,1003,927,916,878,865,910,909,900,900,946,938,879,923,933,926,889,1056,1088,1075,1054,1078,1083,1100,1111,1112,1083,1104,967,969,975,974,957,974,968,948,979,989,983,987,964,988,981,955,956,1108,1155,1125,1147,1130,1151,1139,1155,1143,1149,1166,967,947,983,995,984,925,973,957,973,938,1002,964,967,979,961,983,961,970,960,949,1067,1067,1099,1076,1072,1070,1080,1094,1073,1074,1065,1086,1073,1068,1078,910,872,877,913,899,927,929,906,907,938,925,929,877,1027,970,1049,1022,1000,1006,1010,1065,1052,1041,1051,1032,1070,1037,1032,1062,1043,1060,1045,1068,1024,1057,1062,1085,1043,1050,1056,1059,1070,1070,1047,1069,1072,1063,1062,1069,905,890,887,908,918,903,898,901,889,887,886,927,905,842,914,631,651,606,625,603,602,635,627,640,607,623,603,628,644,625,1116,1040,1030,1095,1035,1051,1114,1018,1038,1009,1020,988,1013,1025,1021,1006,1017,1000,1013,1066,1054,1043,1072,959,984,953,949,974,995,958,946,981,963,913,945,936,958,661,685,647,701,679,665,663,683,703,691,714,676,704,666,674,647,670,660,647,666,660,670,658,652,656,650,681,669,656,652,662,658,641,631,649,643,658,723,701,680,682,701,673,673,688,679,685,672,697,693,720,699,678,930,919,903,935,922,905,928,921,917,905,920,922,941,913,711,708,708,688,676,712,703,690,632,643,650,626,638,656,635,638,623,642,638,648,650,639,642,1085,1060,1062,1078,1082,1062,777,768,749,765,744,755,768,750,749,758,783,754,749,725,1104,1080,1055,1077,1095,1061,1052,1104,1063,1076,1088,1083,1055,1078,1062,1087,1054,934,936,919,907,903,915,955,934,943,935,894,706,665,678,681,672,655,642,676,645,678,670,689,675,683,661,734,735,717,733,747,723,733,752,744,748,742,990,1011,1008,1015,1006,892,869,867,815,833,829,837,821,844,846,800,846,844,811,819,650,662,633,666,680,678,664,655,669,1018,993,998,1045,989,1019,1014,1050,1053,1012,1042,1016,1024,1045,1027,1033,1040,1069,1020,1033,840,841,820,887,871,835,884,869,829,864,863,878,670,676,642,644,632,669,647,656,649,666,632,634,680,642,645,680,1137,1154,1133,1119,1127,1168,1124,1123,1094,1160,1087,1135,1176,1141,1146,1102,1121,1151,1014,1042,996,1031,1033,1043,1022,1056,1014,1049,1030,995,1039,1056,1035,988,1059,896,899,883,887,908,875,873,901,905,873,869,868,877,875,905,915,901,870,703,706,702,689,690,693,661,699,679,666,674,717,577,583,609,605,572,567,580,574,562,565,582,581,606,664,666,647,651,640,636,675,640,645,627,679,674,616,643,630,657,652,660,640,662,970,986,976,989,948,1000,974,954,957,962,946,986,999,948,948,984,1023,1045,1018,1052,1067,1055,1028,1035,1047,1004,1012,1027,1049,1036,1026,1021,949,939,920,966,955,949,939,944,934,905,941,943,954,969,944,925,970,907,938,911,646,661,648,642,624,642,666,674,667,623,669,658,631,649,651,1105,1135,1113,1073,1048,1054,1047,1072,1068,1118,985,1009,970,974,987,977,982,1000,988,967,989,991,966,997,979,993,972,999,1081,1101,1079,1071,1071,1085,1080,1064,1101,1071,1086,1081,1069,1079,1073,1089,941,952,953,976,968,965,967,949,953,928,921,957,944,938,933,939,948,954,966,973,949,826,855,848,820,857,875,872,669,677,697,673,649,640,675,675,679,692,663,645,641,650,652,651,673,652,659,659,649,646,658,632,659,660,909,938,944,922,906,925,958,913,949,917,920,906,905,913,895,915,954,948,977,926,915,949,914,799,806,848,838,831,819,833,836,821,814,823,823,839,825,832,796,843,664,669,665,628,689,668,655,655,694,648,672,614,616,609,618,586,615,593,607,600,628,601,1081,1034,1142,1091,1085,1143,1111,1063,1085,1086,1093,1064,1131,1033,1009,1052,1032,1031,1034,1031,1052,1031,1022,1026,1059,1057,1039,1035,1043,674,637,690,638,654,666,634,665,663,684,665,652,638,658,660,646,647,662,666,668,691,706,678,701,679,687,654,966,967,953,979,990,973,988,975,951,949,964,970,975,1085,1081,1064,1067,1064,1091,1078,1079,1079,1080,1070,1070,1051,1054,1064,1062,1065,1061,1079,1059,1069,1077,1082,1047,912,931,924,933,918,912,940,951,919,896,959,936,916,942,681,699,680,647,664,650,647,686,681,678,670,689,698,668,629,623,631,625,634,635,639,639,887,943,963,910,917,944,956,911,918,956,758,739,740,753,763,757,734,773,781,785,779,764,751,769,746,698,696,702,698,708,704,708,704,929,925,952,930,919,896,892,919,896,919,908,920,913,915,904,948,960,930,960,966,976,955,932,990,1011,1009,1029,900,907,912,898,901,897,936,913,936,940,902,933,899,905,684,717,698,686,705,701,699,707,711,677,714,673,725,704,901,870,861,818,867,862,871,859,838,895,861,884,858,882,1094,1059,1055,1035,1052,1059,1044,1005,1034,1007,1058,1044,1019,1053,1047,1048,1064,1030,1014,927,886,954,907,911,924,928,898,943,905,929,939,691,680,685,690,692,677,697,711,688,678,673,1081,1070,1049,1060,1073,1054,1058,1083,1094,954,977,961,983,986,981,993,969,983,974,983,977,992,975,981,975,985,761,747,757,780,753,691,686,710,671,707,678,679,698,668,680,675,669,1066,1023,1029,1044,1028,1054,1078,1105,1089,1078,1089,1079,1104,1109,1099,1111,1084,1096,1088,1144,1091,1099,1084,1087,1084,950,951,942,952,914,945,978,904,953,890,932,942,924,1130,1095,1146,1123,1117,1088,1067,1114,1067,1106,1121,1076,1049,1055,1069,1082,1046,1060,1092,1060,1076,1050,1090,1066,1059,1095,1072,1072,1085,936,911,919,912,918,906,898,906,907,937,918,930,889,925,1077,1088,1067,1049,1083,1105,1065,1059,1069,1087,1087,1084,1066,1103,1057,865,842,897,858,841,849,865,904,858,882,852,922,663,650,677,662,644,655,689,673,696,666,686,645,664,680,658,653,666,675,1185,1138,1218,1217,1226,1116,1176,1183,1113,1202,1153,1035,1067,1032,1044,1035,1021,1021,1042,1032,1054,1026,1017,1051,1033,1017,1030,1054,1056,1004,1022,683,648,672,663,651,699,651,672,691,708,687,677,677,718,685,639,989,961,963,976,948,977,955,981,963,974,933,965,948,971,954,958,1004,1016,999,1008,1024,1025,1013,1027,985,1011,1003,1006,921,962,923,923,929,949,1201,1219,1210,1179,1213,1219,1222,1194,1213,951,920,979,976,975,955,957,946,1006,961,970,968,649,670,663,686,645,648,692,656,663,646,656,706,672,704,719,693,695,688,707,694,1214,1175,1209,1224,1221,1203,1183,1008,995,974,982,958,977,1014,1015,1026,959,998,967,1009,691,685,697,719,687,706,719,714,724,707,701,754,742,690,704,753,820,792,781,799,775,801,843,803,825,834,821,817,784,809,780,800,768,802,784,714,690,715,698,715,694,691,701,686,695,680,689,670,673,670,666,661,672,682,668,684,684,665,679,1016,974,1018,1022,1018,989,988,1014,994,989,964,998,1008,957,958,967,975,970,964,987,968,982,971,996,992,948,1006,990,968,972,989,979,987,971,986,993,992,991,978,998,993,998,995,1009,1006,1004,991,1041,1054,1065,1037,1047,1039,1052,1011,1075,1052,1053,1081,1056,1023,1048,953,941,960,919,948,949,930,967,952,936,956,953,965,671,666,692,714,678,694,673,660,633,624,641,632,628,630,624,639,612,643,640,631,694,696,677,701,682,697,702,671,686,693,680,637,672,972,936,954,1000,906,950,972,985,951,962,908,954,937,930,974,951,938,962,678,693,686,708,728,692,705,704,708,735,704,734,696,681,672,629,625,607,627,637,637,629,988,947,994,997,988,962,948,933,959,978,920,989,988,1010,991,988,1008,983,992,977,989,997,950,987,986,1012,996,1029,1013,996,1002,1012,1016,1013,998,1052,1002,1018,998,1005,1016,909,939,904,925,941,899,932,967,957,754,771,755,751,743,769,742,728,763,753,758,737,754,772,735,745,765,1068,1062,1058,1065,996,1010,1016,1070,1032,1065,1047,1029,1044,1041,1035,1042,1032,954,944,916,944,909,931,931,920,942,1109,1111,1114,1122,1104,1084,1110,1101,1117,1131,1125,1117,1133,1089,1113,1126,1114,1115,1123,949,966,945,946,951,937,941,944,941,961,948,995,1021,978,994,1020,1027,994,997,1019,999,1003,1041,1021,1025,1024,1026,1022,1001,1008,1025,1022,1015,1017,864,866,872,876,884,847,819,863,848,858,858,849,680,652,675,686,687,699,697,679,662,1033,1017,1044,1055,1048,1041,1019,1039,1050,1056,1022,1062,825,793,829,753,820,798,823,806,785,803,765,814,838,801,815,825,895,931,874,890,892,896,881,884,904,888,917,919,981,990,993,1007,1013,990,1021,973,970,976,998,990,973,1002,978,978,979,969,967,991,973,961,967,985,994,987,1005,965,987,915,892,882,882,878,896,903,913,885,908,921,912,914,1065,1080,1057,1070,1064,1098,1066,957,966,975,979,962,960,956,983,979,973,982,950,1048,1101,1096,1111,1089,1086,1096,1064,1089,982,1006,969,1019,984,988,1007,978,986,982,991,967,969,1002,967,683,699,688,710,687,663,674,717,696,613,598,608,612,605,615,610,608,616,645,590,586,607,624,615,622,633,631,632,629,629,629,621,615,791,772,754,784,793,774,793,768,779,789,774,785,791,768,787,771,809,793,794,810,799,832,800,797,825,794,816,812,1251,1297,1351,1405,1326,1331,1114,1096,1117,1068,1098,1087,1071,1053,898,973,998,971,911,956,945,979,973,972,927,965,906,935,949,964,984,967,965,957,977,962,964,977,978,976,981,958,1013,1026,1023,1034,1018,1017,1005,1032,1017,1023,1011,1016,928,935,917,877,922,917,903,896,913,896,910,878,921,943,916,907,930,926,879,911,908,891,1064,1051,1074,1085,1083,1079,1060,1085,1084,967,985,990,991,978,967,1006,989,979,972,972,809,836,811,857,850,836,831,856,849,842,810,816,815,847,839,827,828,830,831,833,795,830,766,771,804,796,778,783,802,790,749,806,774,793,810,828,793,1066,1059,1045,1092,1056,1043,1063,1038,1088,1058,1043,1035,1061,922,916,910,917,887,935,902,932,945,940,1060,1064,1032,1041,1062,1032,1067,1046,1077,1074,1039,919,950,900,936,898,943,907,922,907,672,662,685,677,682,659,671,678,685,647,655,662,679,682,658,669,676,651,661,656,655,668,659,663,668,649,655,649,661,664,663,647,652,639,643,667,664,632,627,629,613,630,631,632,625,625,646,628,621,611,621,659,653,673,661,689,657,672,665,674,664,644,654,681,702,665,658,639,673,651,646,658,659,653,679,651,647,663,1158,1098,1105,1121,1083,1100,1113,1102,1096,1118,1080,1022,1127,1058,1130,1097,1154,1112,1075,1085,1009,931,963,945,909,954,966,924,959,980,967,1024,984,981,990,973,641,669,633,631,664,651,1063,1040,1039,1117,1074,1095,1067,1050,1061,1105,1091,1050,991,990,998,983,1020,983,1025,999,989,997,1008,999,994,1019,1009,1013,981,999,994,997,1009,994,1024,1004,988,1013,1004,889,871,893,883,866,854,858,901,874,862,884,834,909,933,967,922,928,925,909,996,965,975,927,955,960,944,947,911,929,974,961,953,927,949,955,992,987,1014,993,1016,1003,1009,988,1004,998,1025,1009,997,1016,1013,1009,1057,1064,1072,1054,1036,1062,1031,1061,1077,1040,1074,1051,1074,965,955,950,965,913,956,949,947,943,937,959,957,958,943,685,695,695,657,687,692,671,695,681,665,679,714,693,713,702,729,703,722,719,677,706,725,686,685,703,692,722,733,702,721,715,702,697,725,711,702,687,684,694,697,713,693,710,712,701,681,1027,960,961,922,941,948,962,981,998,923,968,983,989,965,998,979,981,950,1071,1060,1071,1067,1038,1083,1083,1061,1059,1072,1070,1098,1055,1065,1067,1065,1082,1090,1079,1070,1093,1088,1084,1075,1070,1101,1092,1107,1104,1100,1100,1107,1094,1117,1104,1085,1055,1084,1060,954,941,933,949,921,923,917,959,948,930,693,674,698,675,653,677,672,674,662,652,635,654,685,657,682,670,661,813,796,774,778,758,791,757,754,778,743,780,775,786,777,771,696,699,699,699,679,696,697,680,698,701,708,705,703,694,689,693,709,696,683,986,984,969,973,1016,979,999,995,972,969,978,949,990,731,737,744,736,745,768,753,757,727,743,743,1206,1142,1195,1158,1181,1136,1149,1161,1153,1111,1167,944,972,941,948,955,1020,957,970,971,931,945,943,970,954,675,683,713,697,685,667,688,689,700,715,631,668,656,678,650,670,683,686,665,672,681,682,1050,1047,1078,1056,1086,1060,1026,1079,1054,1058,1082,1017,1068,1063,1107,1040,1030,993,1018,997,981,974,985,967,983,987,983,1003,983,974,984,994,766,792,777,752,763,794,785,763,778,807,797,798,778,781,767,769,789,793,779,723,725,758,741,723,751,726,736,771,754,731,900,975,940,919,911,939,895,914,934,869,875,840,859,847,858,875,845,852,855,870,866,892,859,842,727,727,724,717,706,711,701,706,722,687,702,726,719,734,707,706,699,717,730,716,734,729,731,711,719,723,720,724,754,731,728,728,713,1080,1031,1048,1053,1072,1046,1081,1081,1075,1040,1079,1067,1071,1047,1070,1052,1056,1046,1038,986,998,977,1005,978,987,1012,1028,983,1004,1017,1011,1008,1027,1052,1046,1015,1053,1048,1044,1053,1036,1013,1031,876,875,885,893,884,868,870,884,922,897,853,875,923,872,918,907,1002,1038,1016,986,970,1031,1061,1054,1046,1049,1054,1039,1056,1061,1031,1069,1049,1030,1029,1037,1061,1049,1049,934,867,911,909,917,871,908,911,913,900,867,1054,1055,1051,1054,1077,1057,1076,1042,1071,1029,1067,1050,1067,934,922,918,920,918,901,932,931,917,908,934,919,910,942,935,912,914,936,936,938,952,940,1094,1057,1053,1034,1020,1051,1052,953,949,976,955,975,955,957,986,959,990,980,938,941,959,931,961,934,960,946,659,655,640,612,663,669,683,675,637,623,626,632,633,623,618,596,611,625,657,647,612,631,627,1069,1061,1045,1074,1053,1072,1077,1065,1032,1048,1053,1067,1059,1052,1025,1018,998,1057,1036,1051,1027,1004,1006,1005,1042,1036,976,1026,1115,1083,1077,1098,1111,1112,1129,1106,1101,1138,1116,1108,1113,1121,886,856,865,878,854,821,882,891,869,903,869,890,862,906,867,678,642,691,644,640,641,658,639,653,636,619,668,648,657,651,642,1000,972,961,993,984,1010,1019,975,987,978,957,813,762,805,723,783,787,760,758,823,809,770,769,771,765,935,920,928,939,939,948,944,933,949,913,924,957,703,750,744,720,705,718,822,841,857,861,829,863,839,850,844,851,854,880,859,850,989,1024,1000,1004,1011,976,1006,1014,967,966,974,980,976,983,985,974,981,960,959,973,977,978,1000,981,973,992,998,1034,1032,1015,1027,1021,1034,1024,1034,990,1031,1010,1029,1029,899,914,919,914,914,881,909,908,897,920,904,890,940,882,911,926,928,912,894,893,1094,1074,1097,1062,1069,1078,1074,1076,1080,1054,1048,1078,1088,1073,1093,1098,1096,1079,1001,955,968,955,964,973,997,961,980,955,1002,977,972,968,968,1079,1069,1058,1082,1086,1059,1067,1068,1067,1070,1069,1070,1080,1066,1077,1071,927,913,937,932,922,931,877,903,861,896,870,880,885,865,891,861,886,873,678,704,683,660,688,685,686,695,704,633,698,672,675,698,713,636,651,636,633,646,623,645,622,636,1211,1183,1173,1127,1167,1178,1201,1167,1166,1119,1166,1202,1175,1190,1173,1179,1132,1113,1171,1126,1015,1035,1033,1046,1016,1040,1026,1014,1021,1036,1045,971,988,824,842,836,804,861,830,841,845,828,809,851,831,785,756,760,745,751,799,794,919,946,959,949,938,970,944,956,917,926,959,951,965,967,934,1001,984,982,982,980,989,992,971,979,987,951,987,980,961,975,948,981,975,973,948,998,996,1064,1029,1060,1072,1057,1071,1064,1063,1082,917,894,893,928,967,877,917,928,657,651,672,652,652,689,665,663,652,653,689,668,690,677,651,687,718,670,682,688,678,693,685,697,688,686,689,1215,1124,1165,1148,1147,1146,1105,1093,1130,1175,1091,1207,1228,1139,1135,1095,1160,1036,1040,1047,987,1014,1034,1025,1058,1024,1000,1017,1009,1049,1035,966,956,973,983,1004,972,978,978,961,971,971,991,992,976,977,985,971,949,953,971,676,721,715,721,713,713,708,702,702,1133,1054,1067,1082,1148,1082,1092,877,916,906,911,943,881,924,883,915,939,922,870,899,922,911,648,647,630,667,656,656,638,651,661,666,631,648,666,660,652,962,939,983,951,992,934,940,967,974,944,988,971,990,993,985,961,735,737,731,690,687,734,719,742,719,715,722,736,692,733,712,651,635,628,615,640,627,655,636,662,670,651,657,662,659,670,676,665,654,661,1124,1184,1121,1162,1177,1150,1201,1174,1240,1217,1023,1010,1055,997,1030,1044,1038,1038,1074,1043,1065,1006,1030,1039,944,932,955,955,929,903,908,901,900,907,906,933,907,901,921,926,994,967,969,990,948,941,951,951,973,1000,962,959,967,979,936,885,888,899,901,885,908,874,875,885,892,892,900,717,675,713,712,715,736,737,709,708,716,704,741,734,688,725,750,733,722,921,949,942,955,935,970,911,951,959,968,962,968,928,948,969,963,908,849,827,796,832,806,788,831,810,825,813,799,784,801,837,826,831,819,816,817,836,1067,1058,1076,1074,1056,1073,1071,1064,1057,1035,1055,1046,1062,871,863,879,866,901,861,867,884,926,855,860,882,879,867,615,611,640,656,633,640,607,619,639,619,642,659,609,617,627,644,622,644,640,626,627,650,589,628,1102,1094,1083,1074,1044,1070,1124,1092,1073,1053,1049,1037,1050,1061,1078,1027,1063,931,891,926,885,911,938,942,928,960,950,920,721,712,654,670,709,658,694,666,708,713,683,684,675,695,647,692,651,667,671,577,601,597,585,586,606,603,592,594,592,752,732,736,750,765,721,760,726,741,748,720,748,742,751,726,716,738,712,721,961,965,937,962,954,932,958,955,959,955,937,956,942,966,964,994,996,973,987,951,954,969,973,981,977,963,992,1018,955,975,976,972,937,965,965,943,977,965,983,982,1118,1111,1105,1097,1111,1110,1103,1096,1123,1111,1108,1111,928,902,923,972,971,905,934,951,723,674,708,674,729,677,709,716,679,718,693,674,686,702,689,706,726,697,718,697,708,690,1019,1050,1055,1055,1061,1060,1061,1043,1061,1024,1050,1068,1076,1099,1025,1075,1043,1046,1022,1064,1049,1032,1010,1045,1056,987,988,1005,999,998,996,998,983,998,987,984,1001,987,983,1012,1000,975,983,1000,979,1000,992,999,894,914,890,893,907,880,928,869,894,890,747,704,746,753,753,747,741,705,724,737,756,743,737,737,706,745,724,721,960,996,974,972,976,1099,1059,1088,1052,1029,1052,1081,1069,1056,1046,1082,1044,1072,1044,1058,1067,976,971,967,945,974,981,961,959,974,958,992,994,972,984,820,834,844,829,830,835,834,830,858,801,846,746,737,722,695,717,723,745,729,848,870,874,882,857,845,873,865,879,852,811,814,809,788,790,804,812,809,820,797,668,672,657,640,631,655,651,670,656,648,645,673,609,604,615,609,602,620,628,623,602,627,1093,1152,1073,1143,1090,1098,1082,1031,1106,1145,1110,1087,1068,1094,920,949,947,944,928,906,961,966,949,964,937,934,945,915,955,943,920,654,666,650,673,673,663,670,671,649,1167,1143,1154,1138,1131,1128,1174,1143,1108,1128,1137,1080,1073,1125,1136,1112,1161,1156,1188,1166,1141,966,949,945,979,952,994,977,980,961,976,966,975,1004,653,606,628,609,616,611,631,621,615,645,619,621,1045,1049,1081,1099,1062,1046,1072,1072,1064,1057,1050,1046,1016,975,1008,994,994,998,987,998,1015,993,997,998,1011,1006,671,729,706,725,651,672,695,677,675,687,723,702,710,727,697,718,732,731,689,713,740,710,705,713,694,726,687,720,704,707,702,1032,1082,1037,1066,1057,1081,1057,1055,1028,1030,1080,983,983,971,962,1000,987,954,952,976,957,964,990,979,961,705,701,711,746,721,721,728,751,715,715,740,711,728,718,703,725,695,686,702,705,673,714,677,690,698,692,697,705,945,954,959,977,999,738,786,767,764,750,756,737,795,733,764,782,745,740,759,771,951,945,966,959,896,921,951,967,930,950,942,945,734,712,729,726,721,729,727,716,768,735,743,733,708,735,733,699,882,867,843,893,849,836,875,844,876,860,851,856,834,844,865,863,858,687,702,691,720,729,686,681,685,685,711,681,686,687,688,683,689,588,555,591,592,585,575,593,591,613,681,666,668,647,661,665,667,654,687,662,665,658,676,670,660,734,753,738,720,745,732,721,736,732,744,713,690,744,711,744,928,958,975,931,936,909,909,927,931,993,908,788,821,784,778,795,790,805,784,821,806,799,814,800,820,818,793,630,624,656,665,657,645,676,671,663,649,702,669,596,574,574,580,571,568,563,580,579,580,574,588,591,588,602,568,576,588,594,586,572,565,597,579,587,575,575,656,672,645,672,661,653,661,667,664,665,654,671,693,670,665,682,684,674,660,676,678,656,676,1038,1007,1019,984,1029,1019,1048,1001,1048,1048,1012,1015,940,971,941,948,941,919,947,962,956,983,948,917,937,929,931,958,965,982,958,930,964,965,935,956,977,957,929,967,926,951,955,950,939,964,954,929,951,825,860,862,895,864,852,885,876,878,834,875,843,1016,956,954,988,924,957,979,1001,1004,978,998,984,978,1004,1004,1005,986,994,997,982,987,1015,1064,1048,1045,1027,1026,1055,1045,1046,895,890,887,884,866,887,910,878,930,932,896,896,896,913,887,900,891,931,855,852,847,840,842,830,839,838,857,702,731,727,690,694,696,714,700,737,705,726,708,704,674,677,673,674,671,672,680,657,672,688,734,745,728,744,728,722,739,733,744,733,750,749,726,954,946,962,928,968,961,935,941,945,956,1021,982,1017,1006,974,1011,986,998,1010,989,954,998,1004,980,1007,1001,988,1016,1000,1009,982,997,989,1010,991,1002,812,831,834,842,812,845,846,840,819,836,834,893,812,604,622,633,593,598,641,611,603,613,634,611,621,622,635,605,629,631,614,626,637,613,639,647,658,668,641,660,652,646,646,642,674,672,681,702,667,654,705,666,673,655,669,683,673,660,664,681,670,665,649,654,657,650,650,670,668,676,667,672,669,653,649,637,654,620,657,632,644,631,624,620,648,657,637,654,636,646,1097,1119,1059,1156,1107,1141,1127,1094,1113,1146,1099,1094,1113,1098,1118,1109,1038,1001,1026,1021,992,1009,971,1002,1021,981,1013,1017,1032,1026,1037,1031,1037,1023,1012,1042,1046,903,917,958,898,910,904,933,911,918,910,929,910,896,954,935,961,1012,898,863,907,904,940,931,883,910,900,889,885,901,860,891,866,888,610,610,598,630,638,598,606,591,618,617,612,676,688,673,652,654,672,651,649,654,653,684,658,672,662,1025,1035,1014,806,841,788,808,795,796,800,790,761,789,818,815,921,909,901,897,902,922,946,957,940,960,1009,1059,1054,1043,1033,1054,1044,1047,886,930,901,929,902,920,915,919,911,908,1026,1009,1031,1051,1038,1046,1031,1023,1064,1052,1050,1034,1036,1048,1023,1032,1034,1041,1045,1007,952,973,955,952,983,973,969,948,948,963,795,767,762,800,792,777,753,776,784,773,790,1014,1019,1020,999,1044,1040,1027,1015,1040,997,1041,1014,1015,1029,994,1015,1031,1039,1019,1044,1034,1025,1038,1040,1007,1049,1055,1029,1045,1046,1021,1027,1029,1044,839,837,853,844,832,865,814,852,824,827,851,828,834,845,851,640,667,649,670,654,665,642,681,662,637,637,646,651,623,659,655,1053,1078,1055,1046,1066,1086,1047,1094,1045,1053,1072,1040,1045,1007,1019,1009,1023,1014,1006,1001,1008,991,1007,1016,995,1013,1031,1036,1002,1036,1036,1009,1015,1027,1022,1060,1020,1001,1026,933,911,924,913,925,938,914,921,920,926,901,936,783,758,742,775,748,760,767,768,764,738,980,972,965,943,991,1047,1012,1028,1008,1000,1000,999,1014,1006,1030,983,985,1008,1008,1085,1098,1049,1074,1081,1099,1074,1077,1096,1072,1080,1110,951,956,946,953,987,936,971,982,941,937,959,940,905,902,891,891,904,893,905,895,910,879,915,903,904,703,733,721,710,740,740,751,733,716,701,719,848,887,855,864,918,893,855,872,873,887,872,872,909,879,870,741,743,741,748,724,732,731,723,720,747,764,758,737,725,744,768,784,769,760,750,757,755,774,679,671,671,670,680,686,671,666,1108,1078,1085,1101,1126,1121,1077,1081,1049,1124,1118,1058,1042,1067,1099,1078,1124,1075,1071,913,945,910,953,986,951,947,941,941,917,915,930,956,679,680,665,654,643,661,669,676,662,662,656,668,656,648,670,678,632,682,994,1041,1040,1044,1046,1014,1005,1053,1065,996,746,696,745,700,707,736,727,763,751,735,757,726,643,656,663,648,641,641,642,666,648,652,656,1102,1096,1110,1144,1137,1019,1020,1021,1021,1034,1061,1023,1013,984,1039,1028,1014,1014,1004,1055,1052,1063,1071,1047,1077,1050,1076,1073,1059,1056,1054,1054,943,913,897,924,924,906,925,913,950,952,939,885,896,982,999,1008,1000,1017,1002,1031,1001,987,1011,1003,981,1006,1000,1000,983,1014,987,971,977,962,986,942,968,953,972,963,956,975,983,961,957,822,847,807,854,816,810,794,833,828,826,806,727,696,736,730,728,735,731,715,744,752,769,921,950,934,921,905,957,958,912,891,896,953,831,860,844,855,847,849,851,855,825,671,671,667,658,648,681,654,673,694,659,664,688,639,622,629,608,639,632,616,638,609,868,903,850,899,901,877,921,884,903,902,902,911,865,893,711,697,687,670,695,704,649,633,631,614,638,654,1093,1114,1092,1086,1109,1116,1100,1108,1095,1064,1085,1110,1050,1079,1082,1072,1074,1101,1111,1029,998,1018,1005,1016,993,1005,1010,985,1009,1010,987,1004,1036,1000,1032,1019,1022,1024,1015,998,1028,1020,1031,1027,1023,894,875,856,873,870,904,886,881,881,882,657,687,662,684,689,701,713,681,681,670,664,684,676,671,817,821,823,826,851,802,827,812,823,814,817,669,712,713,691,685,727,723,707,708,667,657,663,676,670,653,715,691,716,739,711,697,703,716,711,708,706,700,698,696,956,969,952,983,982,1006,947,954,988,979,733,783,755,811,802,805,742,769,732,790,787,774,752,769,764,764,774,753,858,827,820,859,832,872,859,849,828,857,834,820,865,838,749,716,722,710,728,749,729,714,712,746,728,715,721,708,728,717,743,722,728,718,715,730,726,725,746,721,732,733,741,744,734,732,733,732,750,722,691,690,649,668,670,670,672,686,661,643,680,679,680,698,677,670,690,676,998,1016,967,1012,982,1014,999,970,974,991,1009,1003,1008,1047,1011,1026,1020,1040,1019,998,1031,1037,1033,1049,1021,1014,1055,1038,1056,1036,1037,1034,1049,918,943,913,935,911,931,955,690,662,668,695,666,691,640,684,689,665,655,680,649,679,662,721,717,724,706,748,747,731,718,733,736,761,754,725,720,702,712,721,665,662,662,670,670,688,677,690,682,676,674,688,665,672,664,673,1200,1161,1247,1225,1176,1206,1229,1175,1185,1206,1172,1217,1202,1230,1231,1184,980,1026,989,963,995,979,971,970,1018,1001,720,664,683,663,667,721,642,692,723,670,715,665,686,682,682,621,639,648,635,636,644,618,646,652,637,659,639,615,656,666,1035,1047,1074,1024,1033,1058,1026,1051,1060,1067,1045,1079,974,978,979,979,974,989,996,1000,974,981,995,992,995,988,991,983,979,981,962,983,977,973,985,995,984,980,969,982,975,983,794,840,821,815,800,807,791,834,850,818,794,823,812,830,799,819,814,849,653,610,604,633,606,630,631,622,635,622,625,630,934,910,909,890,918,843,935,922,908,752,707,706,699,708,671,677,722,723,712,709,665,695,715,651,667,678,672,617,602,630,609,615,629,637,628,642,615,626,636,609,640,1004,1014,1021,1036,1058,1013,1027,996,1041,1011,1030,999,1021,1046,1002,1011,980,970,949,978,970,941,956,971,948,966,931,936,971,930,972,959,988,984,987,1029,1021,1025,988,1012,1028,1027,998,1012,1002,935,925,924,941,934,941,943,948,934,932,931,944,948,940,768,799,798,778,796,785,771,798,795,783,786,794,773,773,783,770,793,772,779,763,764,784,784,782,754,779,783,765,692,676,656,629,658,650,644,664,646,647,650,632,667,647,659,632,648,681,631,647,660,650,629,996,973,955,1006,980,1007,960,984,979,955,995,980,960,964,993,989,873,873,896,883,877,897,895,870,900,869,880,899,887,681,674,680,707,691,681,686,704,662,687,687,694,690,1072,1034,1050,1054,1043,1066,1044,1058,1062,1043,1055,1053,1057,1037,1053,1049,1071,1044,1039,936,918,897,915,888,870,879,897,901,889,1062,1039,1053,1035,1041,1021,1032,1031,1038,1054,1031,933,910,938,937,917,950,960,919,939,881,934,893,915,914,921,922,904,919,929,939,915,955,924,1040,1047,1046,1046,1051,1047,1044,1037,891,920,931,978,871,909,948,888,927,916,902,949,928,666,665,646,666,688,636,658,659,670,661,655,671,658,658,673,649,641,666,662,647,655,647,665,619,629,609,620,621,622,633,620,618,625,654,645,653,650,644,663,659,654,662,649,645,667,658,659,656,658,677,659,674,658,659,678,670,668,702,677,656,672,668,658,946,1010,986,982,1025,967,990,998,981,969,978,1010,1050,1044,1035,999,1031,1012,1036,1030,1030,1022,1005,1034,1018,1039,1026,888,962,919,938,932,908,936,904,896,925,917,957,976,958,977,956,971,973,962,955,959,977,955,962,891,909,912,910,919,909,911,930,916,888,929,928,897,901,913,933,909,918,921,911,914,898,917,897,919,761,752,772,757,751,751,759,761,741,925,950,928,928,913,918,948,936,913,959,898,931,954,949,921,928,938,914,808,787,806,830,807,792,801,783,787,813,807,828,798,976,1000,961,1006,989,985,1008,984,1002,1007,978,1042,1017,1016,1008,1007,1024,1031,1041,1042,1026,1049,934,939,946,960,937,977,944,944,916,939,935,922,953,757,773,819,791,766,800,790,797,795,805,1019,1013,1012,992,1021,1004,1005,1043,1023,1019,1040,983,994,992,1016,1033,1041,1022,1048,1024,1017,1011,1032,836,865,857,856,859,828,821,842,839,829,794,865,837,821,823,831,812,852,631,631,625,625,636,622,662,626,640,602,629,631,629,692,694,688,675,663,711,676,652,691,692,680,673,685,647,670,677,678,681,665,716,677,1012,1014,997,1013,965,1026,1046,1041,1010,1001,1002,997,1048,997,1017,1006,1007,1014,1020,990,1005,966,967,965,953,976,973,956,971,963,966,979,976,981,969,902,851,856,855,813,875,839,861,837,828,860,882,857,970,1007,990,988,1001,972,963,894,891,906,906,892,905,949,918,938,934,929,1002,972,986,987,971,1024,1008,1002,1044,1047,1037,1063,1042,1053,1037,1038,1057,936,914,925,946,952,914,684,690,669,662,683,656,652,675,667,680,669,658,657,653,661,659,664,753,712,742,711,730,736,701,728,720,722,760,730,971,986,986,942,985,957,974,961,952,976,951,973,970,984,971,812,825,799,808,812,803,833,838,828,815,818,821,636,672,685,647,667,646,650,618,616,622,611,608,618,627,613,628,639,613,637,607,1117,1114,1114,1145,1165,1158,1131,1112,1205,1197,1151,1123,1152,1111,1017,1040,997,1041,1048,1044,1017,1046,1024,1055,1012,1050,1035,1016,1011,1068,1028,1046,1022,685,664,744,663,661,696,727,618,606,632,633,639,628,630,644,629,625,607,628,627,611,643,658,668,682,676,666,662,671,667,657,655,674,671,673,673,646,654,641,666,679,667,654,657,674,679,656,646,659,663,649,638,639,646,655,655,614,654,637,639,913,873,926,908,933,926,922,914,894,879,949,924,769,723,722,739,735,711,737,747,725,717,748,741,752,750,741,705,748,738,771,751,747,772,763,737,754,754,740,743,756,765,725,733,670,678,687,665,679,669,678,689,658,693,671,667,689,678,667,971,1031,1007,1015,999,1004,993,987,986,1000,981,993,1038,1019,967,1014,1018,1001,1014,1033,1024,1033,993,1110,1122,1104,1140,1135,1119,1119,1093,1108,1111,1088,1110,1122,1130,1133,1124,1117,898,931,896,891,881,903,948,901,902,944,711,679,689,721,688,702,690,693,674,703,694,687,678,701,697,692,705,681,705,698,692,683,711,698,697,698,709,713,1027,1042,1033,1019,1031,1043,1032,1019,1040,1044,1034,1019,1010,1005,1007,991,1028,1010,1014,1012,1028,1022,1010,1016,993,994,988,995,969,990,1000,996,979,983,1036,1026,998,1005,1009,987,1017,1014,1003,1005,1010,999,1005,1039,1003,1033,1032,1025,1018,1038,1049,1024,1020,895,920,902,893,940,898,905,927,915,913,914,904,912,913,920,658,663,655,680,673,696,665,699,661,660,658,1147,1069,1118,1074,1085,1084,1115,1114,1096,1098,1083,1092,1110,1128,1144,954,976,907,957,926,896,896,913,934,939,935,872,927,643,627,659,652,628,642,632,636,628,637,650,634,663,652,618,618,656,661,650,650,659,656,663,660,647,631,652,640,673,647,640,635,652,656,664,643,645,952,952,923,988,950,964,962,938,958,969,930,975,950,971,962,967,966,957,956,987,745,753,796,763,781,781,770,769,785,654,653,644,662,651,655,640,658,658,660,662,654,663,655,657,661,652,1107,1105,1088,1058,1075,1005,1082,1087,984,1027,1005,1004,1032,905,861,873,869,875,892,904,894,917,878,881,915,867,876,870,885,864,830,815,834,816,816,826,816,832,825,828,807,818,806,820,821,824,789,833,826,695,671,697,703,691,679,672,705,706,703,694,710,671,701,696,686,695,673,687,688,677,605,604,608,633,614,617,611,607,608,627,625,629,638,651,651,663,661,659,650,645,634,651,654,643,654,637,699,735,698,726,731,721,722,738,754,699,664,674,660,666,665,679,1126,1108,1185,1079,1131,1110,1102,1047,992,1004,1001,974,981,1023,1025,987,1026,985,1010,966,1012,995,1009,936,1014,988,1020,977,1004,981,997,957,977,984,964,1008,980,992,973,1004,1011,1020,1027,1022,1034,1027,1006,1014,1037,1011,1011,902,941,936,940,923,957,929,922,942,920,940,929,939,930,935,924,700,733,700,709,719,721,721,695,701,726,1084,1093,1017,1106,1065,1114,1038,1099,1039,1050,1083,1104,1107,1099,1081,1080,1047,1083,1062,1088,1050,1047,1080,1054,1042,1061,1094,1076,917,922,920,907,979,913,920,920,755,750,751,760,756,743,714,745,710,933,933,924,900,946,952,955,931,907,967,931,912,909,934,862,868,857,871,871,852,879,862,861,859,892,867,868,862,866,712,706,706,715,718,722,696,708,719,736,734,717,730,717,699,715,885,908,924,874,876,897,884,944,886,927,879,904,909,1074,1070,1062,1057,1058,1080,1076,1102,1058,1067,1076,1045,1024,1019,1040,1031,1008,874,882,901,904,910,896,880,880,659,692,664,674,696,692,659,696,673,654,652,691,670,679,650,703,599,601,604,585,593,588,593,577,585,599,591,615,604,591,612,594,576,737,749,720,737,750,751,733,708,741,746,735,720,732,745,739,739,722,756,755,761,737,740,743,739,744,723,748,734,751,778,745,725,737,740,1122,1207,1171,1165,1157,1174,1144,1152,1136,1202,1189,1186,1169,1143,1170,1126,1150,1150,1148,966,986,951,962,1009,989,951,933,972,995,969,737,712,638,666,694,695,721,643,690,689,686,669,617,630,641,655,639,655,618,621,635,600,643,645,624,618,944,966,935,982,922,966,971,1101,1093,1114,1073,1065,1069,1038,1060,1093,1060,1098,1064,1078,1040,1071,1059,1047,1088,1096,903,870,923,896,891,876,906,892,877,912,897,922,916,965,899,898,585,574,563,603,584,597,606,562,579,614,583,561,574,602,610,572,603,630,599,592,619,620,593,599,600,607,592,616,576,588,591,597,967,881,946,929,921,929,916,906,902,882,917,949,743,751,681,716,710,688,724,691,743,694,759,646,642,659,612,650,642,656,638,640,619,615,1025,1013,915,937,993,972,932,992,846,797,807,800,803,811,810,796,850,770,824,803,822,824,870,843,863,870,865,846,850,834,847,858,854,831,802,826,837,822,834,838,818,828,808,839,826,804,689,720,708,740,709,712,718,698,715,692,731,694,716,699,700,691,874,869,914,898,910,874,860,887,910,893,882,790,811,796,792,797,807,816,810,794,822,812,799,801,791,820,799,1125,1095,1083,1119,1090,1111,1104,1073,1075,1082,1113,1135,1097,967,936,948,927,978,925,929,941,948,988,954,1038,1047,1032,1022,1057,1033,1033,1042,895,870,875,867,859,882,862,661,690,640,647,651,656,685,1233,1180,1134,1302,1185,1229,1193,1212,1258,1070,1080,1055,1103,1079,1050,1094,1091,1069,1069,1097,1009,1046,1046,1058,1039,1058,1066,1054,1082,1080,1075,1046,1072,1079,1062,1067,1068,1079,1065,1086,1073,1084,1037,1077,911,936,926,946,933,922,953,927,928,940,945,931,943,952,956,923,729,728,717,749,743,749,726,740,710,711,751,734,756,756,760,702,723,713,725,717,699,752,722,971,928,961,998,942,929,957,929,934,930,974,978,875,825,836,855,845,842,860,862,858,852,858,860,851,665,700,683,685,662,680,682,663,697,670,671,1181,1153,1173,1121,1152,1179,1139,1183,1134,1147,1047,1069,1060,1070,1102,1069,1076,1070,1064,1085,1066,933,948,974,903,907,942,946,931,945,913,891,871,867,899,904,892,869,888,869,858,877,892,872,885,905,893,673,691,682,688,663,725,705,667,687,672,668,629,635,637,637,636,651,641,635,652,624,632,956,969,965,933,933,948,982,997,982,950,950,974,957,943,1005,1005,1016,1030,1024,1000,1008,1034,1028,1022,1046,1002,1000,992,930,947,903,928,947,909,929,916,920,914,933,921,950,700,665,709,719,662,712,713,679,659,684,684,693,715,653,631,621,633,623,588,644,630,624,618,622,617,615,640,1105,1097,1078,1065,1102,1035,1096,1083,1099,1084,1112,1047,1076,1069,1061,1096,1092,1047,1076,1058,1062,911,941,916,938,926,941,935,918,924,900,926,923,933,930,928,901,922,931,1015,1085,1048,1025,1053,1023,1045,964,994,973,991,995,1022,1023,997,998,987,1013,1020,1003,1021,1012,1014,983,1013,995,1012,899,893,912,905,901,914,899,900,908,910,693,706,720,695,727,693,682,708,701,698,736,718,732,1116,1169,1137,1145,1110,1138,1151,1131,1165,1157,1158,1135,1113,1153,1018,984,967,974,958,998,1013,982,995,734,745,733,749,755,732,725,742,738,743,748,740,721,758,749,949,970,972,984,962,940,957,965,936,944,968,952,816,847,832,818,842,843,839,831,815,831,825,808,836,696,670,664,725,671,683,665,667,659,724,717,698,619,595,621,625,614,606,614,613,594,619,627,622,603,615,611,626,629,615,625,636,616,621,627,609,636,614,618,1185,1152,1151,1159,1191,1186,1159,1197,1200,1153,1176,1181,1234,1137,1205,1228,1014,1008,1014,1029,1020,725,710,720,723,719,700,706,722,715,706,597,643,614,629,627,624,630,644,646,643,630,659,622,622,616,622,611,609,610,615,622,596,606,593,619,619,596,593,1148,1149,1149,1167,1194,1264,1161,1124,1155,1134,1244,1205,1169,1216,1254,1134,1117,1167,1217,1145,1202,1028,1036,1028,1029,1037,1030,1020,1018,1110,1100,1133,1114,1126,1098,1137,1105,957,975,1002,968,957,947,919,975,938,626,620,672,631,640,620,650,616,612,568,639,610,640,615,594,701,705,700,676,665,672,648,682,712,1092,1074,1065,1115,1051,1069,797,790,751,793,807,784,774,764,794,763,757,1103,1139,1091,1130,1140,1115,1092,1115,1107,1096,1076,880,944,953,931,913,952,941,906,905,929,914,938,942,709,682,689,672,666,668,679,675,703,673,669,668,669,695,1030,1055,1063,1061,1075,1089,1081,1049,1088,1118,986,967,967,971,948,978,736,702,701,710,765,736,709,723,726,726,731,718,1017,998,989,996,1022,1015,1015,958,983,1037,980,990,991,1007,1021,983,984,1008,1046,975,726,702,717,735,767,734,766,771,1039,1040,1037,1036,1070,1050,1067,1053,1023,1093,1096,1075,968,971,963,944,938,989,983,955,962,949,961,707,625,635,627,635,624,615,616,623,630,623,615,641,613,615,632,1160,1150,1134,1162,1146,1087,1169,1171,1070,1147,1140,1175,1125,1100,1099,1047,1021,1031,1018,1014,1026,1022,1020,1014,994,1044,1040,1008,698,681,676,688,690,704,705,699,675,663,668,654,721,679,666,692,673,678,686,654,665,685,683,670,668,660,671,665,650,666,673,639,674,673,1081,1004,1029,1075,1031,1062,1058,1034,1043,989,1044,910,890,920,951,955,908,937,935,969,973,920,943,944,919,1052,1054,1064,1054,1048,1061,1050,1068,1038,1064,1049,1061,1052,1057,1073,991,954,972,988,976,967,983,965,950,961,969,972,708,697,694,734,684,733,711,703,720,687,742,726,696,686,699,707,701,676,676,654,691,696,717,699,700,707,696,685,701,678,686,686,701,1152,1150,1145,1090,1110,1221,1148,1135,1130,1175,1133,953,953,964,949,924,974,974,957,985,623,646,638,637,598,628,608,604,624,636,681,691,697,676,683,688,669,1098,1147,1160,1157,1106,1052,1037,1043,1036,1070,1038,1052,1050,1058,1009,922,930,936,918,958,917,913,924,933,914,1061,1086,1077,1079,1068,1105,1102,1079,1069,1076,1040,1080,1062,1070,1057,1075,944,982,996,995,984,968,1000,987,956,950,988,976,973,991,970,982,1055,1061,1075,1061,1080,1073,1058,1089,1049,1059,1084,1068,1064,1076,953,982,958,926,949,913,911,926,934,622,609,618,594,618,580,623,674,670,657,669,674,666,674,690,671,669,676,666,705,728,690,695,717,701,715,713,710,698,708,685,706,699,712,722,687,717,1191,1149,1168,1169,1192,1131,1177,1177,1168,1144,1143,1177,1137,1132,1179,1119,1080,1078,1090,1067,1090,1054,1064,1072,1063,1057,1073,1010,969,969,983,1001,946,951,952,939,958,941,998,955,994,963,947,972,797,773,779,784,772,776,766,763,777,769,656,683,659,683,675,668,651,692,682,1055,1083,1079,1047,1075,1095,1074,1031,1076,1113,1110,1102,1075,1042,1097,1079,931,899,950,927,905,946,960,932,963,959,916,913,916,1048,1028,1058,1067,1064,1053,1054,1052,1087,1050,1050,938,928,884,907,910,954,930,952,949,936,971,915,942,923,661,651,663,686,657,677,688,664,674,669,693,1111,1086,1100,1129,1112,1101,1077,1111,1096,1085,1085,936,962,955,911,948,970,939,951,954,946,942,941,1025,1079,1025,1052,1058,1048,969,1035,1127,955,1051,998,1114,1120,1100,1138,1115,1110,1105,995,981,996,988,971,971,967,993,1030,1012,1032,1061,1061,1060,1041,1045,992,1049,1085,1000,1010,1010,1004,993,989,993,1010,991,1008,1015,1005,974,999,912,931,885,886,895,898,883,925,893,887,1237,1181,1214,1139,1199,1209,1195,1166,1222,1203,1171,1159,1217,1161,1000,1018,1000,1011,1013,1016,1008,1002,1003,1017,1002,753,755,807,733,760,786,725,784,754,769,753,780,729,774,731,731,763,934,940,970,911,929,975,952,903,932,945,914,757,736,771,732,743,781,737,738,763,738,711,733,687,680,698,677,684,677,674,690,663,675,672,985,965,916,930,980,966,961,962,937,977,960,804,829,819,817,828,793,817,819,820,807,818,1041,1019,1029,1025,1029,1028,1059,1073,1042,1033,1023,1009,1114,1117,1121,1112,1112,1097,1095,1100,1093,1085,1129,1100,1134,1131,1109,1107,1105,1121,1086,969,949,925,937,982,930,915,949,931,948,930,912,948,1120,1107,1113,1106,1112,1106,1098,1135,1124,1140,1124,1119,1128,979,964,965,964,971,996,973,949,1091,1055,1060,1071,1072,1072,1071,1069,1052,1080,1074,1074,1066,882,893,878,832,887,894,857,864,862,874,890,876,871,854,920,616,619,636,634,612,618,626,641,647,619,629,624,643,629,656,663,662,655,647,646,640,664,654,667,661,658,663,652,657,668,702,685,693,681,706,717,726,743,652,703,1043,1072,1029,1083,1073,1039,1054,1069,1032,1063,1055,1057,793,807,777,780,767,793,776,809,799,784,799,903,840,857,835,844,828,858,833,870,756,744,691,702,672,690,711,732,679,711,846,880,883,853,868,867,855,852,861,859,875,889,893,729,718,729,746,729,728,748,728,703,854,856,855,839,853,842,826,839,864,838,845,838,851,846,861,745,733,717,713,712,734,705,737,711,739,636,637,639,648,636,635,668,641,633,658,667,631,653,643,632,650,658,643,620,624,602,640,642,639,654,670,659,663,669,657,648,658,662,650,663,649,648,673,647,1093,1057,1089,1040,1085,1078,1024,1042,1030,1041,1035,1037,1068,1053,1056,1021,1080,1076,1010,1017,991,1026,1001,974,1021,1003,994,1014,980,975,981,964,982,971,979,986,980,975,973,956,968,964,1004,965,1011,994,1005,1017,1021,905,917,935,926,922,945,896,916,928,919,917,687,698,682,687,669,673,649,690,650,661,661,670,675,697,707,696,698,684,707,689,689,709,687,964,949,945,965,942,935,956,958,945,957,955,906,752,758,766,756,749,754,761,781,729,771,760,741,728,740,774,700,697,718,705,691,683,690,683,711,697,670,698,699,688,682,687,1054,1106,1063,1104,1081,1071,1071,1087,1049,997,1011,966,987,990,981,1015,988,1030,1031,1053,1025,1046,1054,1035,1045,1036,1051,911,911,966,926,912,914,926,887,924,925,932,914,947,931,893,671,706,702,695,679,704,695,691,714,704,671,628,646,644,650,634,646,647,640,638,652,640,646,656,673,657,652,643,670,686,659,664,657,665,675,676,653,729,717,737,721,703,727,760,750,710,719,716,716,712,709,708,697,719,717,714,716,1083,1087,1108,1072,1099,1098,1118,1103,1089,1135,1039,1090,1111,1118,1079,993,1027,981,989,983,1020,1015,1013,1005,1004,991,895,869,863,893,893,871,867,755,716,720,743,734,732,724,720,696,699,714,697,732,733,716,684,683,679,674,692,667,676,676,694,689,667,671,663,674,696,640,644,620,641,654,652,644,651,633,639,649,661,674,646,650,643,641,645,669,669,676,652,670,659,680,676,666,673,670,651,665,666,654,647,674,682,678,683,681,689,681,680,688,690,661,669,678,664,679,650,676,670,660,669,658,663,676,654,660,729,723,713,716,698,714,721,733,717,721,702,700,708,711,710,707,712,721,697,715,718,704,722,708,702,712,685,697,707,707,703,714,716,675,700,693,695,713,689,699,683,700,703,693,701,1034,1105,1050,1080,1075,1088,1100,1030,1044,1070,1054,1054,1050,1081,1052,1100,1056,932,877,885,875,889,866,851,839,856,859,881,864,874,614,600,620,607,609,592,602,604,595,611,603,629,608,628,616,612,1124,1089,1024,1045,1095,1052,1039,1015,1019,1029,1062,1085,1043,1082,1005,970,967,1012,970,1018,951,687,668,699,666,702,675,726,705,683,676,673,696,687,663,683,1095,1084,1085,1082,1098,1088,1094,1066,1094,1077,1098,1141,1100,1098,1083,1102,1074,973,1004,953,954,937,955,978,966,1003,961,988,975,961,985,975,938,969,938,980,862,833,833,842,847,841,869,878,858,842,888,866,857,845,848,865,867,853,858,842,840,874,692,682,670,677,702,680,683,671,699,694,690,669,684,674,674,686,684,700,638,641,641,653,613,653,605,652,1012,1014,1035,1039,1049,1014,1023,1014,1006,1028,971,1000,1019,779,782,772,823,813,807,808,786,756,799,874,825,863,848,838,879,871,843,845,861,866,845,846,834,841,694,690,676,681,676,688,662,627,644,665,664,653,651,653,633,637,658,640,643,664,653,692,686,675,668,669,678,676,686,673,672,668,682,682,661,669,917,886,915,915,901,906,900,897,913,914,903,872,892,917,894,758,744,742,749,757,747,766,748,753,769,749,753,738,715,712,711,721,725,716,700,717,718,700,730,1043,1038,1016,1024,1020,1048,1019,1052,1045,1020,1014,824,816,820,838,852,819,808,846,825,815,1081,1029,1036,1061,1060,1076,1043,1050,1062,1051,1049,1064,918,919,904,907,945,927,940,924,939,911,914,908,919,937,916,1029,1073,1015,1030,1013,1013,1026,881,907,904,915,897,892,890,914,936,918,943,918,941,940,914,618,652,621,660,633,628,637,631,641,618,613,1158,1156,1153,1149,1155,1193,1140,1048,1082,1052,1032,1069,1064,1057,1074,1057,1048,1064,1048,1039,1070,1064,1046,1093,873,870,870,874,849,883,880,890,892,854,669,684,714,661,694,696,685,672,690,697,682,704,641,644,704,684,647,682,662,697,684,624,602,596,614,616,609,638,645,651,646,673,675,716,640,636,651,660,687,651,659,664,644,641,673,660,1240,1176,1143,1207,1258,1195,1177,1230,1219,1172,1108,1087,1103,1097,1094,1110,1096,1091,1101,1075,1113,1032,913,901,895,919,901,897,881,889,875,901,889,889,881,901,895,886,909,646,698,668,671,687,636,657,683,694,678,678,670,689,1031,1016,1011,1002,1016,1005,1025,993,932,979,874,909,871,870,867,907,920,882,929,891,874,919,876,641,615,637,635,635,629,636,594,639,628,628,639,641,654,626,649,663,633,624,645,654,651,641,655,646,675,669,689,688,678,678,680,679,692,655,676,650,654,659,662,670,683,646,684,645,654,664,661,683,679,676,667,683,670,675,677,678,672,676,680,682,674,670,675,626,631,644,634,627,643,625,623,650,632,635,634,610,643,626,629,655,672,650,654,667,663,648,656,651,667,677,1003,991,995,966,990,963,946,995,983,963,996,936,983,972,971,987,974,966,981,1072,1058,1079,1083,1063,1052,1059,1112,1074,1045,1061,980,953,977,971,945,990,979,984,986,986,1002,981,1003,983,977,740,731,716,712,729,693,734,668,712,706,718,725,712,696,740,634,662,663,643,649,644,648,656,643,646,1115,1076,954,945,944,1008,938,930,939,953,1005,970,984,990,980,1068,1054,1061,1068,1094,1065,1094,1075,1069,1044,1033,1058,1049,1105,1084,1075,1103,1113,1079,1096,1115,1109,1103,1101,1106,1086,902,930,927,950,922,956,944,930,623,647,633,630,638,614,613,666,661,649,655,646,618,641,648,1005,1007,997,985,1002,1047,1037,1017,1027,1038,985,1013,1005,971,987,999,992,993,970,1053,1070,1041,1053,1053,1043,1055,1020,1055,1045,1064,1030,1067,914,910,888,853,908,931,886,881,927,869,880,924,898,916,1056,1073,1087,1077,1065,1035,1060,1044,1082,1048,1078,1055,1068,1082,973,975,982,935,938,956,930,953,916,946,952,966,938,974,981,1033,1041,1053,1050,1035,1057,1027,1046,1041,1036,1027,1044,1026,1046,1029,1054,1051,1045,1044,1043,1046,1021,911,884,903,915,922,910,923,903,888,875,897,905,907,885,931,720,721,729,721,721,729,696,714,757,742,751,741,909,918,922,908,937,917,896,906,834,788,822,820,803,828,820,848,815,823,833,817,806,660,677,660,646,635,642,657,624,685,652,662,633,698,646,606,618,600,612,600,621,612,626,600,610,617,610,621,625,605,596,624,607,1128,1127,1129,1141,1121,1142,1111,1172,1112,1118,1111,1111,1140,1116,992,989,997,976,1019,990,1001,945,992,1043,1031,1066,1052,1053,1038,1064,1040,1071,1052,1036,1030,1040,1041,1035,1013,1021,1038,1015,1056,1045,1025,1041,1028,1032,1049,1033,1017,930,958,935,960,936,954,945,934,956,959,950,970,951,958,784,806,798,798,805,820,815,808,776,792,763,803,798,703,729,711,704,706,685,690,712,701,700,713,700,716,706,720,725,699,722,726,717,713,713,726,729,711,714,678,677,665,660,678,968,966,953,973,930,988,987,753,787,793,789,766,747,805,790,947,970,966,940,966,943,937,978,938,946,957,939,983,876,868,863,851,867,870,871,863,864,855,853,863,1017,1055,1042,1022,1011,1055,1051,1046,1038,1050,1017,1052,1032,1027,1003,1023,1011,1017,989,1005,1011,1024,1018,1009,1010,988,961,976,976,989,969,970,976,987,969,968,978,966,968,991,965,964,968,976,969,980,989,982,993,980,974,983,986,977,993,970,983,988,991,1000,1001,990,996,982,1005,990,979,974,991,1025,1018,1014,1012,1022,1023,1031,1028,1036,1013,1017,1026,1018,1024,1010,1025,905,895,912,904,902,928,921,916,894,898,907,914,908,881,933,905,722,752,728,729,743,710,709,733,726,721,714,721,735,978,951,985,982,989,978,947,986,975,950,961,969,1015,1006,1027,1018,1019,1018,1006,1020,994,1006,1023,1015,1028,1039,986,995,998,980,995,970,1007,997,984,989,970,1018,1012,1012,1007,1001,1010,1013,998,1003,1009,1013,1027,1027,1017,1022,1047,1028,1036,1033,1035,1015,980,984,940,969,959,952,988,995,985,964,826,789,769,767,732,815,811,796,986,1016,1006,1023,1023,984,1010,1006,1033,996,1021,1019,1057,981,1023,1020,1027,998,992,958,987,1017,979,991,988,1002,998,989,1010,998,999,1020,1018,992,1015,1033,1015,1011,1013,1010,1013,1023,1025,1024,1000,1018,1022,1027,1005,994,1014,1086,1097,1084,1091,1090,1095,1094,1107,1093,1100,1086,1103,1115,1099,1091,1106,1102,948,928,902,946,939,954,964,924,937,894,925,962,1019,1101,1065,1041,1062,1084,925,829,881,850,894,869,895,868,846,911,890,660,732,685,709,710,706,718,719,706,701,707,713,732,728,722,964,1021,1028,1020,988,1040,1039,1004,1023,1030,1052,1019,1029,1031,1020,996,1062,989,1034,975,1007,995,1030,1048,1021,1068,1027,1026,1028,1027,1018,1036,1035,1035,1000,999,1004,997,1009,991,995,991,995,992,983,991,984,986,987,977,974,981,992,991,969,989,990,866,853,881,847,926,860,879,889,860,863,874,859,853,866,605,615,622,628,612,616,640,631,641,639,655,635,637,655,645,632,650,643,643,650,647,618,641,616,649,635,703,698,656,673,683,673,695,673,676,679,676,692,674,693,701,709,1071,1081,1074,1078,1091,1061,1056,1069,993,989,1006,980,986,1003,976,985,983,1004,997,963,994,1009,980,942,904,885,902,922,899,854,842,800,841,837,820,812,839,828,847,827,802,767,796,810,785,810,801,786,799,800,800,796,802,805,797,810,803,693,702,722,714,702,706,699,731,693,695,673,686,861,837,872,858,859,847,851,881,890,903,734,755,708,747,753,738,700,664,671,680,685,705,677,671,692,682,700,669,686,670,665,673,659,665,674,663,651,668,654,668,671,661,664,688,695,622,632,640,643,629,633,639,626,641,637,647,632,636,1096,1098,1029,995,1049,1061,1080,991,1041,1009,1053,1086,1062,1080,1054,1094,1070,1047,1075,1058,1076,1060,1080,1069,1061,1050,945,944,936,946,959,955,977,1010,956,971,971,953,961,941,962,707,674,655,689,712,684,655,681,666,600,616,617,604,643,612,604,606,612,608,613,878,903,902,917,854,886,919,909,949,871,688,690,709,677,702,675,666,701,720,681,707,673,708,724,674,613,618,621,626,636,633,623,643,626,630,620,625,605,1028,1070,1093,1036,1076,1027,1032,1049,1064,1044,1029,960,965,964,976,985,990,962,974,949,988,987,970,970,985,1066,1025,1054,1071,1052,1044,1035,1055,1038,1099,1057,1052,1029,1036,1071,931,904,947,940,916,919,924,914,931,920,914,919,917,925,942,924,920,957,921,959,963,956,949,931,903,968,968,930,903,955,957,969,953,940,969,976,971,964,962,964,979,973,962,973,998,958,955,968,959,1057,1029,1068,1047,1019,1036,1052,1037,1059,1043,1041,1069,1079,1049,1060,888,832,872,856,901,869,846,880,882,911,852,896,875,629,639,617,614,620,615,620,645,610,632,627,633,614,627,644,630,614,686,663,666,673,656,671,688,689,668,634,665,676,658,1272,1178,1223,1177,1218,1192,1201,1149,1177,1180,1175,1197,1171,1055,1041,1062,1052,1086,1033,1036,1038,1055,1060,1033,1078,1084,1049,1030,1052,1049,904,915,919,908,893,888,923,930,930,942,894,985,969,979,979,961,978,929,937,934,938,918,936,940,930,935,937,945,931,938,922,944,1062,1061,1068,1079,1076,1081,1073,1055,1070,1083,1049,1059,1081,1064,1056,1063,881,909,857,904,865,902,863,913,863,903,917,888,830,922,890,1140,1111,1141,1090,1089,1102,1131,1073,1097,1092,978,870,930,950,939,926,930,910,892,924,971,920,901,928,937,704,651,677,655,649,661,1158,1126,1180,1169,1189,1108,1124,1165,1174,1166,1178,1098,1170,1147,1032,1040,1022,1030,1033,1025,1020,1056,1035,1027,1010,1018,1000,1026,1031,815,838,795,815,774,781,769,649,645,659,653,651,659,649,635,603,586,574,582,582,550,591,592,561,580,555,593,562,575,591,626,633,634,626,642,652,611,652,651,680,628,645,625,630,645,624,639,1022,1034,1018,1035,1066,1029,1061,1033,1023,1038,1008,1047,1035,1027,1059,835,820,843,832,834,801,806,842,827,852,817,820,802,838,966,955,961,953,973,966,974,964,928,952,962,938,964,941,940,930,900,939,907,937,928,934,889,929,901,908,920,911,945,966,995,985,957,944,938,993,968,979,988,990,955,876,894,902,852,920,890,907,877,905,878,889,705,687,683,700,695,665,703,681,683,686,713,686,686,675,693,692,726,808,845,842,852,859,884,729,726,736,711,734,725,715,727,770,748,730,729,709,732,741,736,713,681,701,697,687,686,686,669,685,686,684,700,699,662,682,692,1026,1027,1067,1042,1038,1065,1024,1051,1064,1053,1046,1064,1033,1034,1025,988,1000,971,972,946,980,980,980,986,963,952,980,971,951,960,975,1038,1031,1036,1018,1030,1000,1014,1000,1006,1018,1035,1012,1006,1033,961,951,970,957,941,948,972,936,954,969,964,947,963,924,950,940,794,814,814,788,801,835,806,802,824,812,811,696,707,715,705,710,701,723,723,724,724,731,716,833,841,882,866,896,887,872,910,825,861,867,896,838,845,855,859,855,891,856,860,679,701,673,674,636,685,673,674,598,579,583,593,594,573,608,586,591,596,580,586,579,613,597,590,620,609,616,680,689,691,675,699,693,680,677,704,697,692,733,697,692,696,697,698,700,708,702,683,691,701,704,732,706,724,959,989,955,973,787,779,787,738,771,758,772,742,755,769,822,800,811,831,819,823,830,822,838,837,820,819,1063,1037,1029,1019,1037,1059,1042,1048,1044,1006,1014,1039,1083,1065,1086,1046,1066,1056,1080,1076,1064,1113,1092,1069,1069,1072,1081,1083,968,959,943,937,952,975,974,952,962,972,943,970,961,941,971,944,942,1072,1048,1043,1030,1032,1048,1022,1059,940,973,969,952,966,959,971,959,968,958,630,673,623,616,649,630,637,653,628,603,647,669,645,646,622,591,614,582,597,624,605,573,621,595,608,619,595,596,603,753,763,746,751,752,763,746,755,756,764,747,751,757,747,802,776,797,747,798,773,797,765,1041,1066,1061,1036,1045,1081,1048,1043,1080,1037,1058,1046,806,757,761,767,802,809,758,805,784,743,751,804,781,761,780,762,610,639,629,613,605,631,628,629,594,608,593,600,581,596,603,600,594,570,601,591,598,599,619,650,650,646,657,637,635,621,633,632,620,650,612,621,615,622,626,622,646,654,667,649,665,657,660,652,646,650,647,662,663,663,631,652,620,674,674,662,621,716,674,701,639,696,654,684,699,692,697,696,688,692,717,693,695,694,694,684,717,698,638,603,617,631,613,623,630,624,626,618,626,641,603,1157,1052,1080,1088,1080,1096,1066,988,1026,1021,988,1019,1019,1017,1011,1009,1015,976,1003,1007,1004,1011,1014,896,884,874,881,889,860,903,881,797,811,795,810,802,831,792,797,804,807,816,784,790,809,775,704,672,678,681,701,705,689,680,686,690,680,680,695,688,693,663,728,683,570,571,567,581,576,584,587,572,574,632,624,642,638,603,650,646,635,639,635,642,618,644,635,1167,1181,1166,1173,1166,1182,1162,1189,1175,1189,1153,1158,1157,1179,1191,1099,910,938,899,932,911,903,839,908,912,899,949,886,943,859,893,922,932,861,681,640,599,620,634,621,643,629,648,614,629,599,613,1108,1079,989,1005,1040,1050,1057,1011,1094,1048,1042,1081,1047,1023,1029,1019,1025,1040,1040,1037,994,1053,1021,1048,1024,1008,706,650,745,712,734,756,702,741,711,770,705,732,722,747,675,734,704,718,720,869,851,832,871,868,838,844,855,846,694,698,699,678,697,691,695,717,708,702,700,644,649,631,650,647,664,669,656,648,636,663,655,671,659,1239,1268,1254,1242,1297,1208,1258,1284,1357,1308,1247,1000,1047,1044,1044,1012,1033,1006,1040,1024,1044,1037,1046,1012,1031,1049,1067,1090,1070,1085,1063,1068,1075,1101,1072,1060,1080,1061,1073,1061,1065,1084,1047,1057,918,908,902,897,928,907,901,923,922,902,927,938,988,1019,1007,979,990,981,989,955,982,1013,1020,1003,1015,961,965,1022,1030,990,1013,1017,1009,990,1017,993,1039,1011,998,985,1002,1000,1021,1017,1004,1035,1018,1008,990,891,936,917,668,669,673,654,649,644,673,665,657,672,1032,1073,1062,1036,1029,987,978,1118,1014,1045,1004,1047,1034,1039,1058,1036,1039,1046,1048,1058,1039,1050,1061,1049,889,906,916,660,681,661,702,713,678,693,706,678,703,691,690,669,705,697,702,717,692,698,671,690,689,674,679,703,698,667,689,688,684,703,693,665,1039,990,1034,1022,1044,970,1015,1009,983,1002,1027,1008,1013,1013,1006,982,1013,996,999,1003,1010,1002,996,997,1000,981,987,1002,974,994,988,976,984,985,967,979,987,992,975,1012,996,972,964,886,877,852,875,825,865,831,827,855,645,605,634,633,620,634,606,636,611,613,712,725,691,715,717,715,721,714,711,725,726,705,717,716,754,741,759,732,715,728,742,705,735,711,738,744,735,716,732,727,723,1088,1120,1130,1077,1092,1099,1088,1127,1083,1097,884,880,897,877,913,876,914,894,902,672,697,720,708,684,716,709,699,706,720,713,705,696,898,854,877,860,855,858,897,849,868,776,893,873,854,879,813,800,860,829,814,795,825,787,816,830,807,811,807,824,821,809,658,690,698,692,661,687,642,694,655,684,690,668,675,686,674,623,635,639,641,636,641,640,622,627,633,624,645,628,918,911,871,894,898,898,901,873,946,947,906,905,879,883,907,926,876,720,684,714,696,731,732,631,635,632,622,608,614,597,615,611,614,624,608,619,633,627,1159,1096,1119,1106,1131,1116,1167,1088,1135,1065,1117,1128,1019,1024,960,1003,1005,979,999,1009,1003,983,999,989,999,984,981,1021,1011,1025,1028,1033,1070,1044,1016,1020,1055,984,1052,1045,1071,1037,1043,1045,1053,1032,1057,1039,1039,1028,1062,1040,1052,1067,1045,882,899,888,911,892,926,904,871,903,931,912,624,603,613,613,641,632,646,616,641,1174,1106,1111,1161,1129,1149,1188,1125,1178,1115,1131,1211,1106,1195,1181,1017,1046,1043,1015,1051,1022,1052,1106,1089,1094,1003,1066,1071,1049,1033,1061,1071,1030,1094,1064,1060,1046,1062,1019,1038,1076,1062,1034,1067,1063,1064,1052,1073,1044,1053,1070,1059,901,919,961,943,952,911,927,934,947,936,940,932,911,696,669,658,692,667,663,691,686,979,984,972,1026,974,960,1008,1017,992,1020,982,951,1033,1016,1023,1040,1018,1040,1026,1023,1025,1012,1010,1018,1020,1007,1022,1009,1005,1007,1039,1014,993,1008,1000,998,990,984,1027,1015,1061,1076,1050,1057,1076,1053,1044,1059,1044,949,913,895,882,902,907,880,921,924,903,895,893,905,1013,1022,1044,1019,1032,1010,1042,1031,1026,1029,1026,1040,1023,1024,1024,1037,1037,1032,1033,1023,879,904,896,920,885,901,952,974,979,1053,1007,976,982,1039,997,1015,1008,1004,999,1014,1000,996,1008,1008,1005,1026,995,997,1010,1008,1004,1001,992,981,987,1002,982,996,1000,991,997,970,992,998,1008,987,1003,1011,1014,1050,1046,1056,1050,1037,1062,1052,1051,1041,1034,1041,1056,1053,1069,1048,1058,1069,1036,977,926,930,911,911,959,922,927,953,920,966,943,602,630,603,652,642,602,620,620,703,681,670,680,672,667,694,676,691,667,695,690,688,684,710,684,693,691,701,670,1097,1156,1190,1137,1112,1174,1140,1134,1198,1127,1122,1162,1096,953,953,901,921,984,938,990,956,930,930,938,1127,1101,1087,1058,1127,1111,1102,1034,1004,1147,1079,1042,1071,1052,1040,1066,1068,1088,1082,1062,1046,1024,1027,1042,1027,1027,1062,1030,1058,1054,1058,1039,1032,1040,1043,1034,1039,1023,1027,1049,1033,1036,1023,1028,1056,1034,1060,1029,1042,1032,1034,957,951,943,910,943,915,939,928,933,950,934,936,944,933,925,928,891,679,722,702,660,663,674,698,694,697,701,682,690,701,713,683,754,606,625,586,624,610,620,600,594,600,625,631,679,634,647,656,637,644,662,675,642,658,656,655,631,621,636,624,645,625,621,635,622,630,631,642,627,633,619,620,676,668,685,681,681,684,672,684,672,679,676,744,726,755,753,739,770,771,739,741,743,765,734,765,757,774,779,780,760,722,672,682,678,677,663,658,674,664,662,671,687,686,673,688,993,992,1009,999,1014,976,1019,981,978,997,1019,991,1026,1054,1057,1071,1053,1037,1033,1040,1033,1028,1061,1050,1028,1030,1039,1046,1056,1040,1037,1040,926,953,912,887,906,925,947,965,919,1179,1178,1212,1226,1165,1207,1202,1174,1186,1170,1186,975,977,985,988,962,937,957,975,975,952,978,996,977,964,665,705,682,677,679,702,670,678,683,663,711,683,694,699,684,1167,1059,1107,1097,1107,1112,1115,1090,1139,1102,1108,1087,1078,1121,1119,1106,1077,1061,1064,1100,1093,1077,1064,1057,1094,1092,1104,1102,901,918,892,925,893,933,895,885,894,903,889,933,667,678,660,657,663,664,653,662,662,678,662,680,667,680,680,712,677,709,677,683,701,694,679,689,678,1029,1022,1032,1024,1031,1051,1052,1053,1053,1043,1002,1033,1008,1015,1025,1016,790,777,788,799,823,817,797,823,833,822,774,826,820,796,985,956,969,953,996,942,960,959,993,989,959,965,1003,967,983,1002,997,967,1042,1010,1030,1014,1019,1005,1021,1039,1055,1009,1032,1022,1045,1026,989,998,967,1001,985,1003,714,684,711,696,710,700,676,713,713,696,664,714,703,733,619,612,608,642,605,570,606,640,633,610,594,599,601,596,602,608,607,582,706,685,726,674,725,720,702,710,705,684,687,1055,1045,1093,1066,1068,1087,1067,1068,1046,1079,1093,1045,1081,1059,1099,1063,878,841,862,843,873,840,899,876,824,903,846,905,849,848,852,870,850,887,1017,1002,1052,1023,1041,1020,1024,1021,1020,1014,1001,975,995,985,994,998,999,996,1006,1009,997,990,1005,865,870,892,890,895,859,880,863,889,866,881,891,844,871,875,912,1013,1022,1049,1050,1053,1000,1060,1046,1051,1033,1030,1059,1052,1021,975,969,993,971,975,975,954,975,956,980,974,979,979,745,790,784,805,792,790,760,782,797,780,806,806,665,685,642,625,672,665,660,636,648,675,671,684,660,694,653,656,634,638,614,640,627,609,634,617,914,922,925,967,905,963,898,896,897,911,886,722,702,720,709,704,674,682,681,701,736,693,725,698,722,702,699,718,679,644,626,630,638,655,641,640,630,627,642,625,957,997,993,941,1016,976,976,959,966,988,1006,972,813,804,822,788,796,779,803,815,786,923,913,890,890,892,881,915,901,886,910,892,897,893,909,877,789,795,796,797,814,792,797,807,811,788,807,799,777,1040,1068,1051,1023,1029,1052,1036,1061,999,931,939,916,928,984,984,974,974,959,931,968,948,922,958,960,961,932,1046,1062,1043,1044,1055,1050,1039,1039,1056,1068,1050,1082,898,954,922,929,961,930,952,918,943,926,924,898,1145,1150,1136,1138,1142,1109,1119,1159,1108,998,1016,1011,982,1041,1019,992,1011,1000,992,987,695,692,689,713,702,674,678,657,669,674,667,677,1014,1037,1047,1077,1028,1068,1057,1037,1015,1041,1064,1030,991,983,996,987,985,983,1000,983,993,981,990,970,995,989,980,910,907,902,909,906,872,899,916,980,953,991,997,990,989,978,989,716,695,765,701,708,713,707,718,751,689,771,699,711,680,701,725,676,676,657,661,654,684,653,633,687,652,677,680,665,650,661,1000,980,1033,1007,1001,1029,1002,1007,1060,1023,1017,1026,1008,803,793,795,840,803,818,842,819,819,815,823,826,815,1067,1041,1065,1061,1032,1035,1034,1031,1048,1055,1017,1031,1041,1041,939,925,914,880,939,932,928,948,941,1081,1129,1104,1116,1091,1075,1099,1108,1109,1095,987,1017,997,990,1013,1033,991,1009,1013,1003,1009,1018,982,1014,1051,1044,1014,1025,1028,1008,1028,1007,1019,1024,1018,1020,999,1014,1023,1017,1006,1018,1008,1011,984,1003,1017,1023,1008,915,905,911,936,902,906,910,936,917,928,920,901,908,908,943,909,906,747,753,729,753,732,740,717,752,1040,1058,1065,1048,1050,1050,1015,763,789,800,784,752,781,790,787,778,805,814,774,773,782,880,858,880,866,873,909,848,880,898,879,876,901,890,872,887,874,1082,1074,1060,1065,1067,1090,1058,1087,1066,1062,960,999,942,997,978,958,998,971,999,944,975,964,980,977,748,748,753,716,723,744,733,732,731,761,754,719,741,743,715,985,980,995,979,980,982,978,998,1003,984,945,995,995,961,958,824,802,799,783,774,780,814,796,799,788,803,804,817,946,953,935,952,955,970,940,915,957,971,971,934,958,941,706,717,690,737,711,724,697,710,689,712,700,697,724,1076,1108,1082,1036,1058,1112,1088,1053,1094,1060,1037,1087,1090,1085,1075,1067,1086,1007,1072,1075,1127,974,1014,995,949,916,1018,994,966,982,943,963,940,1013,1004,639,640,613,624,670,623,629,643,653,612,655,692,633,607,628,605,613,631,637,654,633,634,623,632,600,619,673,629,627,635,630,655,640,616,618,700,715,714,723,715,722,721,712,711,705,710,697,711,714,701,1130,1073,1098,1114,1133,1093,1071,1089,1089,1074,920,918,921,927,917,937,935,937,912,925,917,959,804,843,857,842,836,833,848,804,844,867,825,825,654,625,614,649,670,667,670,667,638,650,633,630,667,652,642,603,582,611,573,593,591,574,560,577,589,592,585,583,596,583,574,1113,1162,1122,1225,1112,1191,1151,1114,1171,1145,1122,1084,1213,1146,1147,1053,1023,1020,1074,1029,1002,1047,1041,1035,1051,1058,779,789,755,698,787,751,774,774,789,769,761,814,777,759,655,654,598,635,637,662,652,666,650,668,947,897,894,872,880,907,900,875,907,907,929,907,898,902,773,761,786,749,754,788,774,741,753,770,924,916,933,936,909,922,917,902,783,773,725,751,743,746,795,780,761,765,770,709,739,763,757,780,767,763,951,947,952,917,942,932,958,937,963,927,922,941,958,1013,1021,1041,1064,1059,1064,1025,1043,1054,1042,1040,1014,1031,1050,1047,1070,1050,1062,1045,1050,1061,1060,1060,1073,1051,898,896,912,948,922,909,908,943,926,928,907,940,989,961,982,1007,957,973,963,983,1013,970,955,1003,1037,1032,1015,1016,983,1022,995,1012,1020,980,1030,1017,1020,1007,924,921,891,915,921,910,909,912,916,904,917,1246,1185,1220,1232,1164,1238,1165,1197,1232,1178,1250,1037,1017,1032,1013,1028,1015,1047,1022,1044,1019,1029,1052,1033,1017,695,658,664,736,694,682,727,716,722,705,709,703,707,679,710,649,715,705,876,892,891,868,872,866,866,848,857,873,878,860,900,703,666,692,695,719,727,695,694,689,686,673,698,700,694,697,659,656,662,676,663,657,647,657,660,642,1093,1129,1061,1128,1106,1078,1074,1089,1106,1095,1120,1102,1129,1044,1106,1081,1090,1119,1090,1073,1099,851,890,875,882,865,874,865,859,855,856,859,894,645,664,655,668,714,659,697,695,645,682,697,685,662,686,600,596,637,602,626,614,615,625,608,594,616,602,620,593,612,619,602,621,622,606,998,945,932,949,948,969,946,950,942,944,968,930,931,968,983,942,1019,976,774,740,765,713,719,734,734,790,744,751,770,760,757,730,734,724,740,1076,1064,1094,1063,1109,1106,1068,1074,917,934,900,978,902,877,920,932,933,954,922,951,698,694,687,678,659,665,664,642,654,656,675,663,666,629,673,667,673,662,648,641,658,657,650,663,646,657,653,658,660,664,645,655,676,658,661,635,646,647,648,645,656,644,632,655,643,659,633,627,635,628,632,624,611,639,621,623,630,626,644,632,651,668,663,662,657,668,670,696,680,667,671,684,667,659,664,654,649,651,1051,1012,1026,1009,1037,1017,1019,759,818,808,804,777,819,814,803,776,791,823,793,799,787,833,907,908,918,930,928,897,905,899,889,903,901,906,918,914,909,713,711,729,741,718,720,734,737,709,742,842,805,816,799,779,789,827,799,796,808,811,823,809,804,823,764,778,800,802,812,702,741,733,744,723,711,725,731,697,722,737,741,730,733,732,728,702,678,708,688,684,689,665,698,688,700,688,689,718,699,670,666,966,974,978,982,959,984,966,938,965,952,945,925,965,956,958,826,798,810,829,829,813,808,843,804,825,792,1034,1040,1044,1043,1050,1066,1063,1022,1047,1064,1017,956,982,957,976,948,986,934,951,982,973,966,955,980,956,967,778,792,797,801,795,786,799,798,799,791,767,783,791,804,808,790,785,798,691,651,664,666,688,684,674,662,680,687,693,671,694,657,591,610,585,577,596,595,591,642,649,630,649,655,650,629,649,629,659,634,656,649,666,655,646,788,780,775,793,795,792,773,795,770,746,796,776,811,690,691,690,685,690,690,696,680,704,692,691,706,701,695,694,700,701,704,710,878,846,835,909,873,854,817,846,833,832,840,827,892,877,890,865,870,869,892,657,670,645,691,655,686,683,695,678,668,693,599,626,621,621,609,591,608,607,637,594,608,628,594,1317,1277,1315,1339,1324,1266,1296,1364,1100,1067,1106,1074,1096,1064,1126,1114,728,696,723,754,729,699,772,732,723,728,678,726,1133,1077,1143,1121,1107,1106,1092,1113,1064,1098,1122,1060,1072,1102,1099,1096,1103,1055,1010,1022,1013,1030,1001,997,1008,1018,1049,1009,1018,1004,887,673,664,697,679,650,701,661,686,691,651,674,671,684,663,669,664,679,659,678,669,643,1012,1042,1015,1065,1025,1074,1030,1026,997,1033,1022,1037,1030,857,888,872,872,850,857,863,853,858,874,881,855,715,729,746,738,742,719,737,725,736,734,736,766,751,968,952,949,962,957,993,925,877,850,847,837,861,858,843,837,864,846,845,854,854,849,846,838,798,783,783,815,764,765,793,788,779,772,1011,1035,1025,1022,1018,1005,1017,1022,1004,998,998,1008,1018,1024,1014,1036,1032,1059,1038,995,1011,1012,1021,1014,997,1020,998,1007,1017,1001,1001,1026,1017,921,904,916,919,897,909,895,913,902,890,896,920,908,902,909,686,705,659,702,676,693,603,625,600,602,596,599,608,611,589,602,583,605,604,661,655,647,648,659,657,661,643,661,649,651,653,669,679,660,657,667,663,678,665,670,697,667,672,660,684,664,677,660,653,668,672,691,694,687,693,674,678,689,686,689,697,672,704,693,681,675,684,696,681,689,687,661,699,1168,1090,1111,1070,1033,1087,1098,1114,1115,1119,1097,1075,1122,961,964,968,973,963,973,977,987,1011,652,683,661,681,661,661,655,677,665,666,648,692,679,702,940,981,977,964,960,971,1022,1004,1001,962,1003,946,970,958,981,977,944,968,932,981,986,946,969,933,921,937,920,908,932,937,919,928,908,946,931,932,995,1020,1002,1024,955,1004,994,994,1006,1001,1126,1142,1138,1127,1111,1115,1112,1117,1127,1122,1129,1133,995,978,952,983,983,996,982,979,989,958,958,696,713,726,701,664,706,706,712,705,705,670,667,673,655,666,706,685,664,669,665,657,679,660,671,675,655,666,683,673,664,652,685,653,672,670,649,676,656,672,679,741,743,718,732,737,765,758,726,733,731,736,731,718,777,960,952,979,956,936,961,964,971,845,840,857,832,844,817,854,854,845,835,842,850,858,831,709,693,703,699,708,705,714,689,702,693,702,646,672,670,649,670,647,659,647,668,647,669,631,626,622,624,644,626,652,624,645,658,1064,1049,1069,1105,1105,1082,1070,1090,1119,1055,1116,1068,1060,1064,1064,1059,1057,1035,1046,1059,923,914,912,897,916,895,913,934,929,892,893,933,914,927,889,901,932,903,935,679,678,677,666,705,661,651,652,637,1047,979,1055,1005,1009,1019,981,1034,1001,1019,1013,997,1003,1023,1032,1014,996,1039,962,1022,1006,1019,1053,1025,1036,1032,1023,1062,1019,1035,1012,1044,1042,1025,1041,1035,1053,1031,907,892,907,894,925,902,907,908,947,923,925,899,1138,1152,1145,1136,1116,1146,1143,1158,1133,1122,1153,1028,1016,995,1006,997,1006,1020,998,999,1040,1014,1017,1020,1013,666,706,699,684,712,679,672,686,686,682,658,680,678,692,1089,1090,1047,1102,1079,1089,1071,1091,1094,1084,1083,1087,962,950,958,958,965,954,942,945,1039,1100,1092,1025,1095,1059,1107,1049,1165,1179,1152,1156,1155,1156,1180,1191,1138,1156,1161,1177,1161,1133,1162,1147,1147,1153,1036,1065,1087,1066,1059,1042,1048,1052,1029,1047,1046,1045,1056,715,715,721,694,687,739,729,757,726,716,744,713,706,723,721,652,647,639,637,612,639,646,632,658,622,666,617,659,654,653,615,676,852,828,856,831,846,886,850,851,861,857,853,856,721,708,706,720,727,722,728,711,714,713,691,707,708,705,716,734,655,669,657,660,667,670,659,647,652,752,748,780,753,792,750,750,730,768,736,729,744,732,726,726,700,730,737,723,727,722,731,719,722,737,994,997,981,1003,982,1014,960,1016,969,958,977,987,1007,1002,995,1043,1017,1010,1034,1025,999,1010,1024,1035,1035,1021,1019,1045,1015,1009,1034,1011,1020,1044,1009,882,913,956,892,926,892,1130,1136,1173,1167,1154,1172,1161,1158,1143,1184,1146,1169,1155,1142,1066,1085,1072,1077,1082,1060,1074,1073,1098,1081,1085,893,908,894,913,903,891,1031,1048,1029,1046,1020,1042,1061,1025,1026,1016,1029,1016,1028,1040,1035,1037,1032,1034,1027,945,948,951,946,950,949,976,939,938,964,947,931,954,947,950,710,755,736,731,741,742,759,750,742,739,719,739,756,741,737,675,698,763,747,761,739,759,777,735,738,763,741,752,759,789,749,767,758,755,791,746,748,751,750,762,697,688,676,686,667,688,694,699,702,676,648,667,686,1097,1052,1093,1076,1091,1120,1043,1059,1093,1100,1095,1083,1059,1107,1102,959,990,942,966,978,949,956,953,987,959,936,797,782,795,820,1076,1122,1100,1107,1103,1118,1116,1099,1108,1119,1124,1100,1092,1091,1096,1128,1078,1098,993,998,992,988,1000,942,975,1010,981,979,927,929,927,1029,1026,1006,1005,1021,1034,1021,1014,1023,999,1005,1039,1035,1050,1031,1029,1055,1026,1050,1041,1039,1034,1016,909,918,912,876,898,895,887,876,876,900,896,901,920,898,929,1032,1023,1024,1038,1050,1014,1020,1036,1015,930,946,943,873,893,929,929,910,931,623,634,621,586,638,615,597,589,600,643,618,607,661,651,626,653,648,661,632,650,663,658,1071,1103,1071,1086,1091,1082,1038,1112,1050,1071,1117,1094,1104,1089,1062,1110,1125,1098,1069,1116,1120,1073,1108,1127,1115,1108,1091,967,961,930,980,936,945,969,971,927,944,955,954,931,970,924,928,1016,884,910,925,901,908,642,671,636,631,683,650,696,673,651,667,643,1016,1068,1052,1043,1053,1064,1051,1022,1047,757,760,756,795,752,786,751,774,758,727,788,792,748,725,767,1234,1248,1237,1223,1182,1166,1226,1200,1268,1259,1029,1011,1060,1025,1043,1034,989,1025,1001,1031,852,903,874,887,882,885,894,866,861,877,868,874,852,877,856,1031,1036,1045,1067,1049,1031,1031,1047,1015,1065,1051,1007,1011,1049,1029,958,949,975,973,976,979,973,975,955,959,972,674,661,681,643,643,645,671,672,637,640,651,693,682,678,653,667,644,625,627,632,626,630,638,638,635,643,648,630,654,627,626,609,915,914,919,968,924,946,943,928,916,959,923,909,698,684,712,682,718,730,681,682,700,672,685,671,682,671,677,659,670,701,663,692,682,684,688,710,682,1203,1171,1229,1176,1239,1176,1213,1180,1162,1084,1024,1028,1063,1075,1031,1030,1038,1066,1051,1040,1049,1036,1058,1070,1044,1044,1050,631,622,615,618,602,673,688,617,682,652,648,631,663,642,645,649,646,619,1016,1015,999,988,1005,1046,1064,1035,1064,999,985,979,971,977,968,993,967,966,973,1004,1006,964,938,930,935,932,933,942,937,954,933,976,950,945,921,941,932,955,944,925,943,923,942,964,938,941,946,943,954,885,854,858,843,871,868,841,853,840,887,821,828,818,848,855,829,849,639,668,656,646,648,660,671,631,654,662,671,907,923,927,932,970,959,961,942,946,1011,953,930,927,922,952,968,705,737,691,697,703,685,694,742,636,623,627,635,653,624,626,623,882,880,897,895,921,912,911,903,874,880,893,898,917,901,714,749,771,777,749,785,774,760,768,756,760,794,752,767,653,689,666,656,679,665,629,674,661,666,950,961,960,957,943,969,971,968,914,974,968,942,938,956,706,744,714,712,739,738,744,731,749,717,705,754,981,981,1037,1049,989,1036,1005,1036,997,1027,1022,1034,1035,1026,1029,1049,1037,1025,1031,1029,1038,976,1008,996,1010,993,1005,1003,997,992,979,998,982,1069,1066,1036,1070,1072,1070,1048,1050,1046,1054,1048,1063,1020,967,984,932,958,951,954,940,978,944,954,975,968,986,959,964,692,721,721,672,682,688,699,667,709,700,704,731,688,693,686,695,700,731,692,691,694,714,723,711,696,681,690,684,632,660,650,676,667,684,660,659,625,665,1112,1113,1112,1155,1132,1120,1136,1160,1166,1126,1209,1148,1151,921,949,971,936,941,922,879,969,955,929,927,798,776,810,800,796,825,803,788,830,845,821,821,807,806,786,803,777,781,759,788,789,780,1166,1160,1138,1163,1197,1150,1164,1169,1162,1121,1148,1139,1175,1167,943,903,917,938,972,983,939,914,652,648,681,706,682,671,664,676,669,658,695,931,1014,1001,979,981,959,985,953,975,964,973,990,967,956,990,965,845,842,833,844,872,844,829,837,728,713,718,704,724,713,713,718,725,702,718,688,694,686,707,833,836,834,815,798,821,842,811,810,813,819,836,825,829,832,830,699,728,706,702,707,713,696,687,671,674,663,680,688,660,654,661,650,692,692,691,683,691,696,690,687,707,696,682,699,686,1072,1078,1071,1073,946,965,965,937,956,965,965,979,946,981,978,936,934,975,945,938,709,697,684,689,718,668,685,705,689,716,681,711,691,1139,1177,1126,1123,1150,1155,1169,1085,1026,1063,1037,1025,1048,1022,1025,1027,1032,1000,1020,1053,1005,1046,1053,1043,1045,678,725,681,688,677,689,719,697,697,714,712,950,956,960,948,950,978,951,946,961,953,960,990,933,961,806,776,802,819,780,819,785,819,819,792,828,802,804,770,992,975,992,958,986,960,959,986,962,974,973,978,944,982,992,873,880,907,883,888,861,898,893,859,870,875,894,875,1055,1049,1049,1056,1041,1061,1060,1059,1046,1046,1051,1051,1023,1037,1071,1035,1056,1045,1029,1062,1070,1040,1035,1073,1023,1042,1055,1045,1048,1044,1052,1061,1042,1055,1065,1067,1030,847,908,892,889,911,919,885,900,917,909,1014,1045,1030,1026,971,987,998,1040,1003,1002,996,978,960,1025,983,997,1000,998,995,979,989,997,995,995,1002,987,998,979,996,1011,1037,1035,1026,1041,1016,1020,1026,1035,1028,1016,1023,1007,1016,889,888,890,892,868,904,914,897,883,893,880,906,894,900,884,910,706,730,724,688,703,686,698,695,704,705,710,1175,1084,1114,1123,1145,1154,1099,1084,1051,1108,1101,1110,1077,1111,1076,1092,1007,937,976,976,956,980,982,998,982,953,942,972,973,982,955,674,680,678,648,683,684,722,682,705,674,701,617,616,611,602,598,628,603,592,616,641,623,653,647,650,630,642,620,654,649,639,619,623,1116,1139,1121,1066,1046,1119,1049,1121,1096,1099,1096,1106,1110,1123,1121,1093,1088,1060,1024,1066,1058,1077,1047,1072,1045,1042,1032,1037,1045,1045,878,903,877,898,880,884,901,899,895,887,889,895,843,849,920,970,936,961,962,955,976,983,952,933,963,963,990,958,937,943,932,905,920,914,932,934,908,939,944,917,938,695,716,732,685,705,718,708,713,688,694,724,721,729,700,759,680,672,681,662,683,676,679,657,675,672,693,666,679,665,684,690,661,690,673,697,1167,1108,1180,1200,1130,1113,1149,1155,1032,1015,1022,1069,1043,1031,1029,1067,1037,1005,1037,1002,1028,1017,883,888,896,883,886,891,903,877,876,915,867,893,906,882,855,856,855,856,843,852,850,845,855,864,858,859,867,843,712,712,730,732,699,696,716,725,721,715,722,711,715,716,719,714,720,901,948,913,917,900,947,922,946,908,924,916,937,921,927,942,932,686,676,688,697,671,700,688,741,686,672,698,697,704,710,721,704,680,572,592,596,591,595,616,566,589,581,589,585,587,580,595,605,583,579,635,635,633,616,646,625,631,622,621,623,624,640,630,631,623,644,669,675,640,640,643,674,638,665,629,635,685,645,668,1046,1080,1069,1034,1078,1024,989,1005,1035,1048,1051,1099,1103,1032,1061,1101,1017,1073,1051,1033,1046,1035,1059,1036,1034,1034,1013,1057,1053,1046,1055,1035,1023,1028,1032,879,902,916,881,887,917,917,893,885,930,905,885,872,635,665,692,654,646,703,676,660,676,631,649,810,801,798,775,785,769,800,779,791,743,793,684,694,712,696,704,674,685,714,691,680,676,677,670,669,677,695,665,675,678,690,743,727,737,739,751,750,744,706,753,766,724,1158,1096,1138,1122,1138,1112,1112,1119,1135,1163,1167,1125,1163,1030,1034,1025,1043,984,998,1002,983,1024,1014,1038,990,1026,1033,1015,1007,987,1024,710,677,718,697,703,671,699,721,652,706,670,672,959,909,876,937,873,918,902,876,926,929,900,898,907,1014,1003,1020,991,1024,1005,986,1019,975,994,995,1046,1044,1030,1049,1055,1021,1034,1026,1049,1071,1052,1037,1056,1043,1024,1037,1020,1044,1044,1046,1141,1159,1158,1145,1127,1140,1115,1141,1110,1137,860,918,888,866,907,904,859,877,907,894,874,679,672,659,663,641,667,654,671,654,653,629,678,662,882,928,959,924,943,961,918,912,930,937,959,940,951,959,668,690,718,713,684,716,703,671,735,721,729,709,717,737,699,712,714,679,577,581,579,582,573,581,576,582,603,588,599,599,606,613,593,594,600,581,590,605,643,639,641,625,637,646,638,619,628,625,638,625,627,637,618,639,1093,1132,1069,1162,1123,1114,1105,1131,1046,1136,992,1015,961,1001,985,975,977,639,737,679,699,707,722,713,719,702,719,666,675,667,764,800,852,846,867,864,839,853,849,856,830,806,873,849,846,851,888,835,817,842,815,809,816,836,815,840,829,817,814,853,833,839,837,836,842,828,834,832,828,831,838,699,665,670,687,685,678,704,664,674,679,691,697,684,1108,1097,1128,1061,1122,1063,1103,1097,1057,1040,1110,1111,1128,1084,1060,950,952,963,917,932,939,930,958,942,931,950,949,954,969,941,919,1099,1097,1092,1094,1082,1112,1089,1107,1099,1109,1109,1103,1090,1091,1092,1084,1107,1094,1094,1005,999,1016,997,993,996,986,1009,1011,1010,1004,1016,982,884,885,891,876,893,876,855,888,883,892,884,831,846,845,840,861,857,858,843,866,833,693,686,711,681,708,713,703,710,690,681,693,719,698,1185,1241,1158,1158,1182,1160,1094,1186,1185,1208,1194,1198,1131,1204,1200,969,990,965,989,1027,979,1000,977,989,662,611,608,618,642,579,590,601,590,647,638,676,621,578,627,643,664,597,691,719,673,710,705,689,693,706,684,724,712,703,706,685,715,702,692,702,705,708,694,704,712,696,704,715,713,669,709,705,709,1060,1065,1079,1054,1043,1071,1063,1047,1078,1065,1060,1018,1007,1071,1042,1063,996,994,995,1001,1012,997,968,1001,997,1011,1003,981,989,1002,998,1008,988,984,974,1007,993,1009,1013,1012,999,999,984,999,1007,1001,994,1009,876,890,856,879,878,879,883,869,883,880,735,718,699,714,728,717,744,715,737,743,702,718,700,727,913,889,871,922,911,863,890,861,898,906,931,901,910,804,856,839,826,702,679,685,712,680,706,700,725,709,693,675,694,697,707,873,858,829,863,850,867,849,887,857,849,869,851,689,655,664,707,679,679,703,627,652,666,664,680,649,678,601,610,611,636,631,598,608,627,620,1198,1191,1233,1161,1125,1291,1180,1154,1296,1216,1209,1217,1165,1270,1129,1210,1174,1200,1214,1095,1163,1000,990,950,971,984,971,1007,1005,1004,972,1019,994,998,1000,672,676,652,654,646,1116,1108,1140,1128,1096,1099,1074,1142,1075,1075,1111,1129,1102,1078,1094,1082,914,892,949,936,972,914,955,948,951,926,937,952,927,944,901,950,920,747,725,725,762,704,736,704,705,752,745,735,722,726,717,753,704,962,966,950,963,937,943,960,974,932,946,720,755,778,762,778,767,758,747,774,755,729,776,901,869,888,874,877,848,890,913,890,861,896,891,867,885,885,1027,1026,1021,1005,1032,1030,1019,1042,1006,1023,1007,1013,1021,1025,1017,997,886,873,895,929,897,901,890,919,860,914,680,688,673,692,676,678,689,708,684,675,1077,1126,1095,1048,1040,1100,1081,1075,1104,1094,1120,1108,1091,1064,1113,968,959,952,995,1015,998,1020,646,626,623,653,604,633,643,676,616,636,664,662,635,638,675,628,652,645,640,666,625,652,610,651,613,664,614,630,686,682,689,684,690,686,700,686,723,695,700,709,701,1075,1065,1067,1065,1094,1056,1018,1041,1100,1059,1106,1078,1060,1040,1064,1059,1014,1046,1061,1077,1097,1063,1075,1083,1076,1089,1067,1065,1063,1082,1099,1082,1079,940,946,934,916,930,940,994,966,917,921,927,957,551,603,597,607,605,554,605,567,581,607,577,595,543,597,584,603,627,633,645,616,636,615,626,608,604,616,624,592,602,643,686,706,723,689,711,688,698,812,793,806,779,792,795,830,808,809,788,814,807,811,795,703,721,710,704,879,942,905,954,946,929,951,912,952,953,908,755,742,726,735,733,707,750,914,917,898,927,917,917,893,899,925,915,937,731,698,697,706,711,703,706,701,717,704,675,715,701,683,1097,1035,1076,1087,1057,1086,1074,1068,1029,1031,1057,1059,1006,1012,1046,1048,1053,1038,1040,1015,1034,1023,1043,1020,1016,1028,1023,1012,1041,1039,928,945,949,914,940,930,921,926,917,670,667,647,649,655,1001,1009,973,1033,1033,996,978,978,1067,1020,1023,959,1058,1061,1073,1072,1078,1087,1069,1066,1082,1054,1083,1081,980,952,970,967,954,951,974,945,938,958,943,936,977,962,1028,1029,1055,1033,1015,1045,1040,1029,1001,1043,1052,1020,1033,1042,1037,1010,1011,1030,1014,1028,695,711,745,689,704,737,722,723,749,706,1081,1075,1057,1071,1077,1092,1061,1095,1080,1104,1081,1106,1120,1128,1094,1105,1117,1095,1091,925,898,906,933,911,931,907,924,944,923,930,924,908,908,919,940,938,933,659,661,685,680,695,692,654,679,670,670,689,672,659,658,654,661,703,1021,997,1037,995,1018,1023,1008,1007,1012,988,1023,987,1011,1004,1007,992,1006,994,985,992,1000,992,1054,1070,1056,1068,1075,1027,1055,1030,1055,1079,1067,1058,924,932,947,936,951,912,930,944,974,676,660,638,637,660,643,651,680,691,656,667,688,654,684,663,651,656,1050,1108,1111,1094,1045,1065,1050,1086,1083,1067,1079,1091,1057,1070,1088,887,916,949,948,928,910,886,944,956,934,926,643,669,688,685,669,684,682,672,681,707,713,699,682,1163,1133,1163,1155,1124,1164,1178,1169,1127,1175,1115,1168,1138,1157,1149,1118,832,820,768,818,812,841,879,936,904,904,913,890,908,881,876,925,676,708,683,693,662,682,671,700,692,697,652,672,688,689,670,720,654,645,635,638,632,638,668,645,635,640,639,630,659,646,637,936,969,994,989,1017,987,995,973,959,978,963,1027,963,938,980,998,966,1000,933,1056,1066,1058,1064,1043,1072,1025,1022,1065,1068,1071,1074,1055,1061,960,1024,1004,949,992,1007,984,957,1005,1001,976,640,648,664,680,628,610,627,605,607,630,638,677,616,587,597,576,581,586,573,583,592,594,587,1152,1136,1083,1128,1150,1170,1007,1056,1116,1152,1070,1104,1130,1083,1077,1010,972,1020,999,1015,1041,1019,1021,1005,1030,1017,968,1061,1012,1005,1028,1018,982,735,723,735,799,741,735,777,728,752,747,784,759,755,681,691,712,698,689,708,966,921,930,897,947,917,910,948,921,982,908,744,734,750,724,738,783,728,742,754,759,767,754,760,737,660,654,671,664,688,682,649,665,677,673,638,683,689,647,645,664,635,650,648,636,656,651,647,656,647,647,1109,1177,1068,1115,1074,1155,1079,1145,1160,1131,1159,1132,1107,1118,1148,1168,1059,1178,1081,1060,1004,1011,1041,1053,1018,1023,980,996,996,1013,1021,1012,1066,1020,1027,1036,1026,1011,672,675,673,610,649,597,636,634,610,601,629,634,606,613,631,618,626,621,622,657,648,630,646,627,1040,1075,1064,1022,1053,1064,1073,1076,1067,1085,1061,1052,1077,1060,1056,1043,1069,1092,1061,1051,1089,1069,912,908,950,868,878,865,916,877,888,936,904,927,894,884,903,934,923,899,907,1028,989,1003,979,1003,994,999,993,983,968,1004,1015,1009,940,944,906,920,925,933,922,916,922,941,904,949,935,940,919,898,932,929,939,936,925,917,927,933,929,933,914,943,930,849,845,813,843,840,883,861,865,848,875,831,838,860,870,836,895,874,826,845,824,825,828,812,826,830,840,863,837,849,820,667,691,671,682,665,662,685,673,1088,1026,1089,1086,1078,1065,1057,1122,1057,1053,1065,1078,1086,962,911,926,639,647,648,630,651,636,635,648,674,658,662,643,611,624,641,676,709,698,718,700,698,680,692,678,673,691,722,721,703,674,737,730,719,734,749,739,740,722,709,720,715,730,731,722,964,975,942,929,936,935,911,937,906,925,914,896,945,940,905,949,973,828,813,819,835,827,852,826,833,841,797,822,830,657,666,644,701,647,673,662,672,667,1177,1091,1102,1150,1168,1112,1123,1088,1115,1092,1096,1045,1148,1120,1147,1143,1138,1026,1026,1012,1008,1053,1025,1041,1031,1014,1013,689,702,699,716,721,708,695,703,737,732,717,686,725,713,709,762,656,649,674,660,677,653,648,677,659,673,686,664,674,711,730,710,707,726,709,701,724,707,715,718,707,956,921,967,951,953,986,914,948,953,964,967,945,954,927,950,995,990,989,1004,993,1023,998,1027,998,995,985,1025,1013,1014,968,963,963,978,974,964,966,946,965,950,933,967,962,960,1002,961,984,967,976,989,1003,986,982,953,947,963,976,972,969,1003,993,993,987,997,979,1050,1025,1023,1039,1029,1042,1046,1042,1040,1044,1032,1035,1043,880,870,882,878,933,875,884,909,896,906,883,1086,988,1016,963,963,977,945,1022,1019,994,897,1002,1009,1008,1025,965,980,991,990,983,1005,1002,974,1009,998,990,1012,977,1007,1005,1008,978,1001,1006,1019,1011,997,995,986,1012,1001,987,1047,1068,1042,1034,1059,1050,1042,1023,1060,1050,1046,918,933,927,918,937,931,912,909,887,944,941,948,944,712,702,673,680,650,666,683,672,641,635,676,648,612,624,656,656,659,653,659,631,652,656,645,665,988,1009,1039,1024,1014,998,983,1038,1008,1006,1006,989,1038,880,901,872,885,902,913,884,861,884,883,801,796,787,793,804,791,797,789,788,781,813,811,977,978,1004,996,1014,992,979,993,988,993,986,997,997,988,991,976,978,983,951,971,963,965,965,984,910,918,917,932,939,934,938,903,923,920,934,925,939,922,908,909,914,657,670,651,651,663,680,652,688,670,677,636,675,637,659,647,676,1007,1043,1014,1028,1046,1039,997,998,1012,1018,1063,1026,1033,1056,1036,1051,1053,1065,1054,1049,1038,875,917,920,848,863,870,901,894,878,936,893,886,898,865,900,846,658,659,651,689,659,677,644,669,647,684,676,650,643,641,648,660,665,702,665,712,672,684,654,665,658,683,681,676,676,661,661,699,659,1175,1143,1217,1144,1152,1203,1189,1131,1232,1188,1141,1208,1216,1207,1122,1216,1227,971,973,974,973,999,1014,967,997,999,936,985,991,1037,1018,1013,704,703,712,728,735,686,712,699,716,691,717,717,706,691,716,700,733,1070,1053,1046,1034,1039,1081,1066,1035,1090,1063,1074,1037,1056,1042,1032,1039,1063,1083,1092,1068,1090,1063,936,851,910,897,878,923,910,924,909,894,962,964,979,976,994,1015,1034,1029,1048,1058,1052,1031,1006,1073,1028,1063,1007,1031,1019,1047,1033,1053,1036,892,887,892,897,878,910,873,903,853,887,646,621,651,643,610,632,659,612,607,624,653,642,635,1062,1058,1068,1083,1057,1031,1049,1050,1061,1087,1061,1080,1075,1018,1088,1084,1090,1094,1064,1090,1021,1055,1042,1031,1069,1066,911,903,902,918,911,911,899,921,876,961,931,881,904,1155,1158,1158,1185,1157,1185,1179,1182,1177,1143,1215,1146,1160,1212,1172,1168,1164,1182,1159,1142,1088,1059,1031,1045,1043,1058,1027,1043,1088,1033,1029,1017,1096,1102,1066,678,627,654,693,696,637,662,681,665,686,639,649,682,613,623,630,602,592,631,623,598,605,570,613,603,635,649,642,644,653,665,635,659,661,656,677,654,660,1087,1057,1056,1049,1125,1070,1082,1108,1090,1110,1097,1081,1083,1113,1083,1085,1097,1140,1102,1095,1064,1096,1064,1086,1073,1103,1083,1078,1072,1071,1074,1070,1061,1066,1031,1084,1071,1070,867,899,905,855,872,890,917,901,891,911,897,877,892,928,670,655,653,656,675,662,653,681,706,699,695,694,695,693,693,699,711,693,696,705,711,693,706,704,698,693,709,620,593,622,611,635,614,615,612,636,634,602,620,610,580,564,573,567,560,574,573,564,573,558,569,575,563,584,575,573,545,573,568,576,558,683,672,682,696,657,673,675,639,673,705,684,676,660,767,736,765,736,691,752,742,745,1262,1193,1308,1239,1290,1281,1280,1293,1268,1266,1279,1231,1357,1256,1248,1252,1287,1289,1252,1134,1071,1082,1149,1105,1078,1142,1085,1110,1077,1130,1108,876,859,846,886,858,849,843,846,869,826,863,845,858,865,874,876,653,687,699,668,685,648,670,675,694,677,669,684,702,671,680,586,572,577,555,568,598,565,579,558,566,553,565,592,626,594,598,628,598,611,601,602,613,607,652,652,622,652,637,652,646,646,664,633,661,657,660,636,669,643,1003,1077,1042,1063,1073,1039,1036,1015,1009,1022,1002,1019,970,998,979,990,958,969,976,974,980,978,999,994,954,961,957,935,954,957,958,959,964,963,974,976,903,919,904,920,915,850,910,889,891,634,622,643,626,645,625,647,639,585,643,622,595,608,605,614,609,602,588,599,580,610,636,604,618,585,584,598,600,608,979,1038,1070,1053,1042,1000,1016,1022,1008,1041,1037,767,764,791,731,764,767,749,729,742,787,747,763,768,722,776,1163,1139,1142,1113,1115,1162,1161,1147,1113,1105,1088,1095,1115,1128,1110,1118,1125,1100,1139,1101,1110,1083,1092,1069,1116,1106,1110,1133,1003,984,975,955,811,843,849,834,824,832,838,837,816,813,804,790,792,812,781,810,783,804,789,816,818,834,802,796,794,794,806,804,801,835,814,823,808,665,667,679,659,677,665,676,676,681,681,661,649,679,694,664,654,678,662,663,682,651,675,671,659,1086,1053,1059,1130,1094,1059,1054,1088,1057,1060,1060,1078,1028,1072,1089,1119,1083,1066,1054,1074,1088,1102,934,902,890,893,909,952,939,904,936,930,862,891,867,922,929,956,922,904,874,914,908,913,911,903,606,606,587,582,586,601,572,583,597,596,569,601,632,647,618,614,640,624,650,633,644,643,624,641,678,771,792,769,752,792,745,751,775,777,736,717,710,706,727,713,714,715,737,709,701,703,723,720,709,707,1145,1133,1152,1136,1137,1154,1164,1138,1172,1158,1181,1182,1049,995,1023,997,991,1001,1018,1012,992,1009,1004,976,1073,1077,1094,1076,1066,1068,1074,1079,1079,1097,1061,1050,962,984,973,970,961,960,976,959,962,918,976,977,956,975,946,958,976,959,668,655,673,714,658,702,687,727,707,686,678,652,717,649,638,668,647,628,646,640,660,648,653,660,664,659,663,659,645,664,648,651,672,644,659,655,660,661,644,669,1063,1092,1077,1103,1065,1113,1074,1095,1055,1080,1108,1083,1095,1098,1082,1111,1077,1105,1018,1005,1016,1021,985,987,985,993,1004,1012,985,1012,997,987,1029,999,984,998,995,1018,996,1010,990,988,981,988,994,803,868,878,886,837,873,800,843,849,831,873,848,841,838,840,833,871,880,911,946,957,984,935,914,888,948,925,999,978,940,937,882,872,986,975,953,973,966,987,978,965,1057,1067,1088,1081,1070,1105,1080,1073,1078,1087,1073,1075,1086,970,971,952,962,987,956,969,955,971,993,953,985,977,866,874,839,870,884,897,869,888,884,886,870,875,868,868,806,762,824,796,801,828,772,779,796,795,795,810,768,786,801,790,694,652,642,679,654,645,658,639,647,638,654,666,618,671,628,649,660,632,638,670,632,1077,1110,1104,1074,1075,1078,1097,1085,1085,1086,1067,1107,1082,1097,1091,1099,1091,1025,1041,1032,1042,1039,1040,1054,1019,1042,1033,1011,1028,1053,1043,1028,1040,1049,1032,1033,1042,1013,1037,1042,1047,1033,1038,813,829,810,831,763,863,827,818,793,826,846,811,802,789,601,611,627,613,620,605,645,597,620,632,626,642,625,634,632,646,622,1055,1046,1040,1040,1040,1072,1017,1072,1076,1023,981,1020,1013,1028,1032,1015,1059,1002,996,982,1033,1028,1032,1013,1062,1032,1022,1028,1026,1036,1047,1019,922,895,900,915,899,885,936,925,903,880,906,886,928,888,705,687,639,676,659,706,674,655,665,657,691,643,559,571,576,546,589,606,577,582,564,568,550,557,563,567,631,613,616,632,598,612,611,622,577,620,592,687,676,682,688,691,698,677,668,657,771,813,782,750,777,764,792,783,779,784,658,662,677,678,656,659,670,687,671,667,656,682,680,659,1093,1048,1040,1043,1036,1022,1046,1047,1032,1047,1039,1031,1057,1040,1057,1011,1043,1044,1031,998,941,942,935,949,930,946,966,942,963,921,948,941,1073,1061,1050,1068,1069,1050,1082,919,918,958,939,910,936,939,966,925,931,943,951,968,945,957,932,960,1145,1110,1137,1098,1125,1137,1121,1118,1087,1132,1115,1113,986,982,992,983,997,1026,998,1011,1001,865,849,859,885,880,856,866,844,862,874,815,864,844,861,864,656,663,687,634,691,675,648,688,707,651,694,718,688,665,688,639,633,637,619,636,644,625,632,640,628,1127,1167,1044,1132,1143,1177,1129,1141,1116,1143,1058,1058,1125,1119,1131,1114,1086,1088,1081,1099,1068,1089,1105,1101,1109,1100,1076,1098,1098,1106,1112,958,942,914,962,966,943,923,909,919,929,926,921,930,931,653,635,643,666,663,679,683,655,648,643,647,638,1018,967,984,1009,1015,984,984,1010,980,963,955,958,950,961,935,971,938,958,952,960,954,924,978,986,954,979,962,740,773,745,759,758,769,773,739,737,756,743,763,754,762,741,727,959,969,969,929,974,969,969,978,1034,1028,1016,1027,1020,1003,1002,926,924,918,905,951,885,898,916,951,903,895,936,905,895,898,989,1023,1014,1062,1002,1013,1012,995,949,998,1001,970,978,971,987,965,984,984,986,1014,990,987,1014,996,1037,1045,1030,1017,1037,1041,1037,1033,1044,1037,940,939,968,941,954,942,914,934,924,975,940,956,737,706,691,723,732,733,733,726,673,715,736,724,710,717,649,628,652,629,647,637,625,618,622,642,621,644,640,620,647,628,629,631,620,616,689,675,703,689,688,706,694,681,648,679,1059,1096,1102,1087,1067,1103,1046,1066,1065,1057,1080,1113,1049,1090,1054,1067,1102,721,719,747,709,714,716,731,744,701,699,707,663,1006,972,958,991,1009,996,981,969,976,994,960,956,982,972,979,1021,988,987,1026,1000,996,921,955,919,946,933,963,934,963,960,940,938,950,939,934,943,874,860,881,881,860,850,835,847,830,840,846,868,851,687,683,693,681,699,667,689,692,695,709,677,681,696,699,683,694,683,1162,1213,1157,1182,1170,1155,1164,1173,1163,1178,1177,1194,1150,1184,1201,1205,1185,1210,1123,1143,942,926,925,957,1078,1053,1086,1080,1075,1072,1065,1065,1070,1071,1060,936,936,958,934,953,924,924,914,941,921,936,910,906,925,931,953,892,928,912,913,917,927,855,842,859,829,848,849,831,831,817,843,824,846,806,845,684,681,689,664,684,709,701,649,704,706,718,678,710,710,712,701,682,664,673,650,672,667,679,673,679,683,675,696,947,883,937,869,930,920,923,922,906,896,893,901,938,701,671,710,668,692,693,603,623,608,635,594,608,616,608,603,594,610,609,1064,1080,1139,1106,1101,1094,1106,1054,1054,1075,1089,1071,1114,1069,994,1021,1003,1034,1040,1011,1014,997,1013,1027,997,1026,975,1037,1040,1033,1035,1053,1044,1050,1055,1047,1057,1033,1049,1031,1040,1072,1044,1063,1029,868,847,914,893,878,907,896,890,884,855,918,889,922,899,868,898,903,688,660,669,665,659,683,670,685,677,662,653,664,683,690,1146,1102,1117,1136,1064,1112,1019,1034,1041,1021,1004,1025,1020,1018,1033,996,1036,1026,908,918,928,914,1049,1051,1058,1056,1046,1071,1036,1049,1065,1054,1064,1077,1056,916,937,923,932,918,929,905,939,713,721,691,706,704,698,1223,1225,1173,1207,1155,1259,1202,1206,1165,1202,1232,1007,1014,1029,1014,1055,1027,996,1037,1004,1026,1038,1004,1003,993,980,1048,1047,1008,995,1016,1014,987,992,991,958,1035,1039,1058,1055,1047,1042,1021,1042,1042,1046,1038,1034,1040,1035,1031,910,912,918,907,929,915,912,902,889,913,894,906,909,892,903,899,714,713,717,731,708,735,722,726,702,699,722,905,924,929,905,881,929,920,872,914,873,904,886,900,867,921,915,741,746,729,738,748,755,732,746,736,719,750,727,721,752,745,719,745,761,752,757,774,730,762,694,676,661,655,677,688,683,660,892,876,891,874,882,873,737,748,740,748,701,760,728,734,731,736,726,744,774,674,680,690,712,701,699,668,724,697,699,703,678,681,676,708,1029,1016,1020,1013,1019,1053,1027,1037,1041,1021,1032,1021,771,758,809,815,782,798,778,783,769,760,765,788,792,806,766,696,686,682,666,672,679,681,672,674,668,687,684,642,668,1142,1087,1213,1145,1100,1195,1154,1162,1185,1119,1166,1112,1171,1104,1146,1227,1118,1169,1158,981,970,991,990,987,1002,993,975,986,1027,978,991,982,1024,979,1000,996,983,1132,1113,1093,1101,1127,1101,1124,1087,1108,1110,975,949,965,934,948,939,968,948,957,953,930,968,982,973,946,962,933,993,965,936,926,938,955,961,964,941,955,954,964,955,947,955,968,947,753,794,764,770,786,767,770,828,774,755,779,750,908,912,864,928,871,897,885,897,840,840,848,861,842,861,849,857,867,835,840,830,819,809,819,817,803,835,806,817,830,814,816,818,809,844,835,828,798,774,781,779,782,789,802,766,776,794,780,771,789,775,782,1018,1049,1047,1043,1041,1035,1027,1022,1048,1043,1037,1035,1034,1042,1059,1025,903,941,885,926,904,913,915,936,910,850,967,898,948,997,996,1015,1004,1002,1030,1050,1054,1052,1009,1031,1039,1014,1031,1029,993,1005,1008,1003,1046,1051,1065,1024,1024,1045,1039,1036,1025,1047,1053,1048,893,932,905,897,919,924,934,900,883,871,903,903,896,889,899,701,706,729,743,697,691,720,714,690,696,714,679,720,713,1151,1226,1190,1162,1155,1136,1178,1138,1002,980,1008,997,992,1034,1002,979,1000,967,1000,1017,981,975,1001,985,962,1013,1077,1047,1063,1066,1064,1065,1089,1070,1101,1053,1058,1046,1074,1078,1082,1082,1098,1059,1055,1058,1072,1065,946,935,921,903,916,926,914,934,944,939,951,910,922,962,915,693,666,679,675,681,688,655,674,679,666,692,685,700,680,719,673,670,659,665,658,628,643,637,654,672,653,643,630,644,652,634,639,642,1199,1158,1137,1152,1143,1129,1263,1221,1172,1240,1217,960,1061,1002,965,1062,1037,1001,957,975,986,964,652,619,634,652,640,658,640,627,632,606,603,658,663,632,616,638,646,618,626,667,649,604,620,677,655,682,659,652,663,662,681,667,661,693,666,697,666,656,660,674,685,1056,1126,1082,1072,1085,1080,1051,1068,1070,1037,1065,1079,1047,1062,1053,1061,1053,963,967,977,946,964,981,966,958,969,972,975,757,764,779,798,766,780,778,687,699,703,712,690,718,705,695,698,725,710,694,674,675,676,649,678,660,662,667,685,659,673,656,685,666,684,679,1088,1045,1063,1084,1069,1117,1045,1138,1064,1010,1041,1052,1065,1080,1044,1040,1102,1119,1093,1112,1092,1111,1084,1100,1126,1098,1112,1088,1068,1088,1104,1080,1101,931,948,944,953,939,971,962,950,1062,1039,1050,1071,1056,1052,1044,1000,1015,1018,1055,1035,1032,1031,1030,1047,1023,1027,1029,1035,1036,1049,994,978,1001,1004,974,984,979,984,975,991,974,716,671,739,708,677,745,723,716,686,687,680,705,695,698,703,658,662,647,635,647,680,638,666,653,649,668,653,646,660,651,659,665,667,649,654,635,624,627,642,640,635,648,608,642,664,627,635,658,612,635,931,921,883,948,930,946,965,945,930,942,964,964,942,935,933,989,925,720,714,731,698,713,713,731,694,723,696,699,699,689,720,627,634,643,636,642,628,630,641,636,629,622,630,628,637,602,613,650,701,700,730,704,709,713,735,727,719,705,710,727,699,694,705,689,723,710,706,721,720,724,722,706,697,1070,1131,1118,1120,1119,1111,1148,1123,1106,1074,1122,1096,1115,1101,1012,1023,1025,995,983,975,988,1021,996,1007,994,974,991,1001,1005,1001,999,890,852,891,874,849,854,862,880,873,877,850,868,878,867,847,878,862,872,890,683,703,706,717,714,698,725,1143,1128,1081,1114,1092,1132,1112,1118,959,944,967,950,914,943,984,919,961,914,598,605,591,608,629,615,594,599,606,623,590,581,608,706,719,705,675,695,703,715,705,711,697,721,697,690,683,707,705,688,706,711,683,725,734,723,722,738,724,733,720,739,723,719,754,741,761,719,738,759,741,1001,985,1009,951,952,971,990,1001,973,977,996,988,975,1005,977,941,1009,1020,1008,1005,992,1018,1019,971,998,1008,1002,1000,1011,1014,1021,961,975,955,982,976,964,983,948,1044,1022,1047,1048,1025,1004,998,1014,1012,1007,1041,1012,1012,1036,984,1017,1010,959,944,964,970,952,972,973,951,962,965,915,942,941,933,968,899,890,904,893,881,903,910,888,882,896,890,910,907,893,851,819,817,826,813,835,843,795,831,828,822,810,830,839,816,825,811,799,680,727,721,713,740,720,706,735,743,694,744,713,721,717,724,721,726,681,684,679,683,686,683,690,675,687,685,676,666,691,964,901,951,973,956,923,953,938,963,941,925,986,953,948,752,756,794,787,737,766,786,816,794,787,761,784,777,740,956,973,963,958,962,970,965,953,949,946,1009,977,972,993,959,956,995,697,712,721,709,732,736,713,729,694,720,723,702,687,698,705,681,679,682,1137,1090,972,983,1021,1033,980,991,1008,1018,1003,853,854,843,869,842,861,875,868,866,863,867,850,855,864,1063,1053,1062,1087,1023,1039,1040,1057,1053,1100,1035,949,969,941,942,977,951,970,934,954,940,975,940,962,956,687,705,704,681,711,670,687,666,638,688,670,682,621,630,629,616,608,636,617,632,644,628,637,654,633,622,621,628,607,689,665,716,670,671,675,681,653,681,673,701,677,675,675,678,776,778,785,773,747,750,755,751,779,782,752,761,769,762,789,746,790,700,689,707,693,1067,1058,1061,1031,1057,1061,1083,1098,1039,1067,1068,1076,1085,1060,955,949,962,948,927,965,921,898,905,928,894,889,910,1001,945,974,987,979,985,1007,978,1056,1046,1046,1040,1093,1065,1097,1083,1090,1078,1070,1087,1069,1076,1087,1069,1082,1088,1083,1090,867,827,840,844,866,845,864,845,907,856,842,832,849,801,837,815,845,661,657,656,645,662,642,643,656,661,657,646,628,1229,1186,1219,1154,1192,1176,1205,1184,1139,1144,1170,1139,1132,1182,1250,1077,1061,1072,1070,1050,1053,1070,1052,1055,1066,1016,1036,1037,929,946,917,923,916,923,938,923,950,925,929,903,912,931,903,910,923,937,717,735,698,733,712,708,828,832,823,842,860,861,825,845,831,830,866,872,847,836,1097,1086,1080,1059,1062,1107,1124,1063,1081,1073,1089,1055,956,969,963,947,965,959,959,950,977,662,679,736,690,680,689,717,710,682,683,692,741,626,622,622,627,612,619,618,612,618,610,630,648,618,625,648,651,655,643,634,648,658,633,650,644,630,650,680,684,673,669,673,656,671,700,697,722,687,723,719,718,727,719,740,701,712,720,721,729,703,708,703,701,638,639,646,648,647,659,659,656,646,643,623,636,638,657,644,1007,1039,1044,1016,1062,1123,993,1090,1033,1043,1051,1068,974,967,975,948,961,946,976,968,957,965,957,967,953,942,962,994,978,969,808,788,784,805,789,796,1068,1100,1085,1099,1085,1085,1108,1061,1090,1082,1102,1088,1102,1084,903,873,882,885,886,866,885,887,863,880,890,866,889,897,897,882,896,902,902,912,890,905,886,930,682,695,697,700,684,1152,1204,1154,1126,1193,1180,1119,1139,1200,1136,1130,1141,1147,1157,1001,1039,1035,1054,1044,1031,1033,1040,1019,1019,1022,1022,992,1022,1010,735,772,736,721,718,733,742,699,686,689,701,693,671,686,684,654,693,681,698,685,711,692,699,687,693,704,713,713,702,703,699,705,714,699,689,698,666,690,694,702,689,692,704,671,707,690,702,696,678,924,912,910,922,918,906,919,925,896,951,880,925,960,839,863,867,859,845,867,851,854,862,851,861,756,732,748,738,742,753,756,724,732,722,742,714,733,988,1010,975,1003,1012,1025,972,993,1012,1019,752,779,733,708,768,726,757,753,748,739,747,651,645,645,618,630,633,626,642,640,621,639,632,590,596,608,592,591,586,609,607,591,613,593,615,587,703,713,696,687,695,699,681,692,715,695,701,718,716,701,695,720,718,724,711,709,710,688,692,696,698,719,701,723,710,688,1101,1109,1088,1113,1078,1083,1043,1098,1105,1103,1045,1109,1101,1094,1060,1059,1070,1057,1083,1076,1063,1074,1065,988,959,901,961,939,950,966,944,947,943,936,941,1023,1007,991,1017,1004,952,961,1050,1016,1056,1042,1008,1022,1021,1019,1042,1033,1038,1022,1022,1033,1015,1004,1033,1038,1022,1028,942,923,959,935,929,917,932,916,928,938,1152,1173,1220,1197,1195,1204,1190,1187,1204,1213,1188,1193,1214,1030,1035,1035,1051,1045,1034,1015,1026,1022,1040,1060,1042,1045,1001,1035,1033,1022,649,694,700,644,682,673,645,653,662,697,675,724,625,673,702,644,658,666,697,663,629,625,626,616,629,615,657,616,610,602,955,979,963,952,1002,973,973,928,983,988,964,975,725,759,733,751,740,730,1120,1154,1087,1133,1204,1183,1106,1160,1166,1194,1177,1113,1179,1159,1093,1154,1146,1168,987,946,1004,948,1002,967,977,1022,980,983,944,966,973,941,945,940,977,752,749,778,718,745,714,746,750,726,729,741,759,885,895,850,922,878,910,933,932,929,897,930,940,878,894,884,931,732,723,741,721,708,718,713,755,729,678,647,660,664,668,679,673,655,674,673,668,672,663,714,687,685,722,705,704,728,718,710,720,717,1183,1162,1135,1125,1118,1157,1155,1145,1162,1122,1162,1025,974,967,985,1004,1011,1023,1074,1072,1054,1086,1064,1080,1078,1064,1081,1105,1090,967,952,953,941,918,944,931,935,932,955,932,888,944,892,942,1133,1186,1150,1167,1164,1132,1192,1129,1191,1155,1198,1074,1034,1034,1044,1043,1040,1102,1080,1080,1073,1059,1047,1062,1087,1075,1071,1066,969,969,964,959,960,978,956,970,964,969,967,983,966,997,971,958,895,899,877,892,867,869,868,871,868,884,861,871,914,880,878,870,866,868,808,814,795,821,794,797,793,814,807,849,823,829,816,791,817,826,785,801,818,818,829,819,814,808,792,810,804,789,802,815,802,823,814,1081,1112,1128,1109,1072,1067,1094,1075,1093,981,1034,1023,1015,1027,1012,1011,1033,1013,1019,1002,862,851,835,863,832,854,862,844,841,837,841,835,886,846,846,863,681,693,679,653,697,687,669,685,660,664,687,686,1035,1020,1012,1023,988,1034,1026,1059,1005,1021,1018,1010,1041,1033,1033,1032,1023,1019,1029,1018,1014,1015,1061,1032,1039,1023,1040,1018,1035,886,890,887,873,915,916,890,884,876,913,923,708,707,723,698,691,707,691,711,710,707,709,710,715,692,715,709,728,750,743,746,738,750,753,783,763,748,1001,1031,1035,1041,1039,1040,1047,1053,1075,1032,1050,1038,1045,1053,912,890,885,909,904,899,914,917,908,685,708,708,748,698,706,695,720,693,730,701,682,707,717,702,967,962,965,913,949,968,943,916,932,953,938,722,721,744,730,759,768,724,726,708,756,722,706,682,736,760,775,937,907,930,906,939,941,907,940,933,720,679,715,732,700,687,705,689,727,713,1098,1057,1061,1077,1075,1072,1111,1086,1103,1110,1118,1130,1112,1076,1115,1108,1104,961,904,969,1009,942,972,979,942,962,944,951,939,962,959,922,690,686,684,702,680,688,658,675,672,676,693,680,690,681,692,683,695,675,681,677,694,698,702,1012,974,994,1001,995,997,1017,1024,994,951,992,990,1016,1026,1063,1044,1040,1036,1038,1041,1065,1042,1037,1053,1037,1068,910,924,886,889,906,903,880,903,935,914,752,724,718,708,709,717,736,882,858,876,840,841,848,858,847,838,880,858,716,717,739,721,727,717,719,725,721,716,724,701,747,737,715,718,740,722,722,746,631,621,635,647,622,638,621,645,1034,1066,1045,1037,1057,1022,1081,1040,1060,1025,1092,926,910,909,887,916,874,915,886,736,740,760,728,748,768,733,743,696,751,765,707,737,714,752,1153,1131,1107,1151,1133,1139,1121,1155,1178,1114,1141,1149,1149,831,845,854,807,862,866,812,852,806,790,882,893,906,871,900,914,908,887,892,866,905,908,897,901,912,879,889,864,884,818,803,807,824,820,817,801,824,820,804,805,809,819,818,812,725,705,696,690,716,707,718,687,719,692,697,697,708,704,713,717,724,710,692,833,870,838,842,838,895,862,913,1079,1048,1034,1057,1053,1062,1097,1067,1072,1083,1054,1047,1126,1093,1073,1009,1001,1007,968,974,1002,996,985,974,968,985,975,973,970,973,987,988,882,858,879,862,868,873,839,857,857,882,899,1045,1027,1029,1023,1054,1033,1032,1049,1019,1024,1002,1032,1029,1032,931,963,940,934,916,943,934,913,949,913,921,943,940,1225,1198,1229,1223,1221,1223,1046,1063,1049,1031,1030,1008,1055,1029,1044,1044,1038,994,1023,1004,1007,1026,1005,1029,1033,1030,1022,1025,968,950,984,969,962,977,961,970,970,957,971,985,973,1003,1000,984,996,1003,1010,992,983,987,988,1010,988,1000,982,1007,983,983,908,871,879,900,911,917,888,898,881,885,885,874,711,727,698,718,711,717,715,694,703,727,704,701,738,671,750,678,727,711,682,705,715,709,748,1162,1222,1207,1167,1176,1197,1194,1144,1239,1236,1245,1138,1212,1256,1107,1241,1196,1034,977,964,999,978,1012,985,978,981,987,991,1020,987,989,998,1015,991,1014,998,978,954,1014,1036,1001,981,1057,1025,996,1045,1036,1035,1039,1018,1032,1049,1053,1040,1031,1042,1026,995,984,961,983,976,984,974,970,988,988,969,981,974,847,830,832,846,858,856,803,848,823,830,841,841,844,851,714,703,737,747,712,700,673,706,694,722,735,722,702,706,695,706,681,684,696,700,690,670,667,718,687,679,698,692,686,676,688,673,679,706,1038,1051,1036,1061,1050,1059,1077,1055,1047,1044,994,987,985,997,989,1017,996,994,1001,1013,990,1009,986,969,999,1002,1002,986,993,1010,1003,994,983,995,985,979,987,991,1005,1047,1038,1039,1040,1071,1058,1046,1061,1071,1042,1071,1052,1028,1036,1057,1052,1015,1050,923,928,901,911,942,902,928,940,912,898,903,926,904,875,1000,1047,1047,1003,993,977,1010,1085,1006,1072,985,1029,1018,1036,1057,1084,1055,1045,1069,1052,833,891,840,896,910,904,956,849,904,874,849,916,872,577,594,572,600,557,595,578,584,602,582,602,581,600,622,617,602,580,707,670,679,651,658,675,676,690,670,659,688,714,684,716,703,717,725,715,721,735,705,731,715,725,714,703,1173,1224,1155,1147,1114,1152,1221,1162,1168,1154,1137,1205,1145,1176,1127,1138,1196,1134,1158,1137,1128,929,970,934,967,957,958,975,938,963,969,935,941,862,955,927,976,898,918,937,911,984,928,969,937,985,950,942,924,935,965,916,922,911,952,956,933,903,904,860,864,863,831,897,842,908,871,867,878,887,882,859,863,661,670,677,665,672,666,661,661,694,676,663,666,694,668,659,1116,1069,1092,1127,1111,1111,1135,1079,1102,1120,1056,1109,1103,1119,1130,887,947,912,963,979,912,973,973,955,956,963,950,935,970,691,691,705,683,686,725,686,664,729,690,723,731,724,705,720,730,708,751,726,726,723,735,721,719,709,673,689,688,680,683,682,687,681,673,688,688,702,638,639,617,628,637,654,665,647,634,655,635,643,651,657,632,658,654,661,650,655,1092,1067,1065,1100,1019,1056,1050,1051,1031,1047,972,977,981,990,958,981,975,995,953,947,950,1008,1009,1012,743,706,723,731,758,729,732,725,739,728,744,753,724,712,705,696,698,711,1080,1135,1164,1082,1111,1133,1141,1123,1173,1098,1121,1132,1152,1154,1168,1175,1018,990,995,1026,1046,1015,1012,1000,1005,1027,1044,1020,1034,1046,1019,1046,1014,898,921,891,860,901,879,887,880,896,893,905,889,925,887,899,893,894,889,810,791,813,818,838,823,836,839,807,807,819,685,678,690,677,704,691,689,719,717,722,676,712,688,692,694,706,696,708,729,708,719,702,685,745,763,761,753,762,768,732,751,956,989,973,950,983,963,999,992,1049,1065,922,936,918,930,941,909,957,926,957,933,939,927,943,934,945,945,923,930,932,987,678,655,685,672,682,713,690,683,675,672,673,693,690,667,693,672,700,1110,1117,1063,1108,1095,1081,1115,1075,1100,1093,1090,991,980,961,966,1015,967,958,965,971,976,944,959,994,946,996,719,714,725,731,737,728,691,703,745,734,717,739,717,724,722,732,684,944,951,941,916,951,957,941,935,910,953,967,933,963,965,934,808,814,815,823,819,808,808,795,835,826,805,796,799,1095,1094,1079,1076,1074,1073,1077,1054,1052,1082,1102,901,861,890,883,893,883,889,696,710,678,671,694,693,689,700,703,698,682,699,698,729,699,690,726,718,723,709,710,706,705,719,686,1109,1098,1094,1094,1106,1125,1113,1144,1077,1133,1126,1123,1110,1114,1105,964,958,994,991,977,960,978,972,953,975,969,968,955,983,957,936,981,979,938,957,983,990,937,660,616,590,599,604,585,602,577,599,598,598,585,592,592,602,599,642,625,646,638,625,622,622,617,648,1161,1146,1296,1215,1227,1195,1199,1130,1176,1248,1223,1226,1176,1158,1179,1218,1168,979,955,1000,983,952,998,962,973,939,1023,967,987,954,969,625,634,614,641,661,648,853,855,886,892,902,889,899,863,891,878,873,927,988,962,973,939,959,991,935,947,962,939,960,953,951,1003,950,925,993,977,962,977,988,987,990,984,958,993,989,956,967,991,1054,1049,1036,1057,1058,1049,1047,1044,1039,1068,1057,1057,1070,1066,1058,936,941,936,977,916,928,934,961,907,942,946,941,940,911,944,939,682,705,682,678,679,722,690,672,672,668,715,723,680,644,653,647,648,663,1119,1176,1192,1138,1129,1198,1214,1165,1202,1105,1161,1198,1155,1170,1148,1057,1038,1056,1057,1061,1050,1056,1058,1032,1043,1057,1027,739,695,729,727,743,694,716,703,719,716,704,688,698,732,689,684,676,668,671,665,661,658,672,676,650,642,683,674,666,666,674,670,665,669,672,676,682,914,956,959,944,951,947,941,968,926,926,929,967,971,970,944,768,775,809,761,764,759,790,739,768,777,759,934,931,929,882,928,923,906,893,895,905,939,967,944,935,942,939,960,688,686,677,745,718,725,684,723,688,680,721,1159,1163,1121,1167,1172,1213,1138,1093,1146,1157,1102,1166,1203,1213,1127,899,889,896,893,849,698,681,723,687,727,686,732,734,682,720,705,1010,1013,1001,1032,962,977,982,1023,984,967,1020,1000,983,994,1014,996,975,986,985,986,1067,1070,1054,1070,1085,1058,1055,1083,1069,1096,1073,1071,1071,1092,1054,1060,1065,965,985,986,979,982,955,951,964,958,922,1092,1082,1063,1089,1085,1094,1092,1082,1084,1057,1083,1068,1082,1102,983,1005,1002,1026,982,1001,1011,1009,1011,1007,724,747,690,723,700,742,714,733,787,767,696,891,894,881,907,887,893,899,886,867,868,875,822,839,827,818,856,816,819,818,811,821,801,820,809,815,812,738,719,733,714,753,728,718,722,1011,1010,997,1013,1020,1002,1017,1040,1022,979,1009,848,860,853,861,863,862,872,885,855,871,891,872,858,834,862,869,860,863,892,733,726,739,716,735,763,738,736,732,732,716,724,745,719,730,739,736,739,709,717,713,706,712,708,709,927,946,912,949,922,960,933,935,940,907,939,943,1050,1057,1050,1067,1044,1058,1054,1067,1043,978,949,973,958,958,961,966,982,974,808,816,824,843,818,822,826,825,831,806,835,849,819,988,1016,980,1013,1020,1016,1026,991,999,1031,989,1014,1011,1054,1045,1024,1013,1000,1006,993,994,1003,999,993,1020,1022,1002,1025,1002,998,1027,999,982,1001,1021,1000,1020,1043,1061,1043,1042,1036,1053,1065,1032,1061,1059,1053,897,921,902,867,898,874,918,905,879,910,917,1070,1044,1081,1049,1064,974,1077,1012,1050,1065,1004,1055,1068,1023,1040,1028,1042,1033,1018,958,937,902,904,907,922,909,920,920,940,919,947,908,909,909,917,906,910,923,857,841,836,867,861,833,838,853,843,824,876,837,824,875,693,678,656,676,673,693,689,1037,1058,1021,1029,1048,1018,1029,1036,1036,1021,1050,1037,1009,1027,1000,1006,1018,990,988,1020,1005,1003,1003,1004,1003,1002,999,1035,1016,992,1013,994,991,970,1014,900,886,909,912,936,894,913,875,916,900,917,905,1025,990,1071,1019,1062,1042,1016,1013,1034,1023,1019,1013,1040,1030,1035,1020,1029,1019,915,942,935,937,907,957,914,930,926,952,918,929,934,903,904,879,904,904,678,699,720,712,674,694,716,654,669,691,654,675,682,704,680,677,606,602,613,603,612,599,592,590,590,584,608,590,585,645,665,654,658,665,665,668,655,652,652,644,656,656,670,693,683,663,681,686,667,674,650,640,645,631,620,638,639,633,642,609,640,633,643,620,625,623,631,677,683,671,682,688,648,650,678,683,675,675,656,672,679,666,674,634,672,664,657,670,681,656,635,657,648,636,628,637,642,647,656,645,640,653,680,675,692,692,704,688,695,682,694,707,964,982,1021,1011,1010,1042,1051,977,1030,996,1003,1025,972,995,1005,833,812,816,811,813,836,777,838,824,830,964,973,979,994,1000,988,997,998,987,991,990,1001,985,990,985,1041,1034,985,1036,1044,1012,1021,1018,1029,1017,1012,1026,988,950,981,971,955,960,953,967,972,991,956,962,963,959,951,981,961,936,938,838,840,874,862,850,852,862,843,841,887,858,835,853,853,848,866,852,844,704,725,723,727,682,724,700,712,705,732,726,716,694,643,673,683,656,671,651,653,635,674,657,658,647,659,1083,1176,1175,1198,1169,1109,1188,1187,1194,1173,1171,1196,1173,1191,1201,1135,1248,1215,1159,979,948,1039,994,963,988,995,928,955,1018,975,984,730,750,735,721,731,777,746,735,755,743,731,762,835,843,841,825,844,860,835,834,840,834,836,818,835,832,1036,1007,1001,1017,1032,1025,1013,1054,1045,1017,1020,977,1006,1034,1022,1032,1034,1032,1019,1028,1042,847,872,862,876,849,876,860,857,868,712,718,678,704,726,688,695,727,699,683,910,852,872,870,852,893,855,868,874,876,851,911,841,873,845,1050,1031,1061,1018,1021,1006,1039,1001,1002,1028,1065,1038,1044,1042,1048,1056,1047,1002,1056,1050,1025,944,1004,938,972,970,995,948,973,947,1016,961,970,964,961,667,657,631,633,651,655,669,666,655,663,663,642,642,673,631,679,646,1047,1084,1059,1070,1056,1081,1037,1068,1078,1098,1050,920,984,983,907,950,922,1065,1069,1057,1103,1104,1079,1075,1097,1094,1106,1114,1089,1112,1093,1101,1087,1091,1109,1092,1094,1110,1082,1095,1101,1089,1103,1096,1086,1086,968,968,952,934,977,964,955,960,944,957,967,713,722,734,715,735,700,708,704,669,916,885,871,848,884,862,835,846,864,867,845,836,841,839,853,858,822,840,825,832,823,703,720,701,714,720,712,692,714,718,703,699,718,743,692,726,717,941,985,958,950,924,916,983,957,942,753,726,730,741,723,703,681,699,740,735,718,732,718,1120,1152,1100,1134,1148,1131,1111,1101,1122,1132,1100,1132,1146,994,959,994,990,971,954,949,971,976,953,964,972,632,650,659,630,650,663,643,612,690,669,650,666,669,664,689,699,659,682,693,703,688,685,700,669,684,674,691,679,674,685,676,685,680,679,694,701,677,714,680,715,681,696,645,667,636,648,673,627,659,664,655,642,647,642,652,649,664,659,649,657,646,635,663,644,643,636,920,956,936,975,976,932,967,984,785,747,754,777,770,775,761,762,745,759,754,723,733,763,695,718,699,762,720,730,703,741,721,715,717,703,696,751,740,746,752,730,737,765,757,742,729,749,731,759,732,759,747,703,694,675,676,697,662,667,673,678,676,691,695,674,682,690,674,669,652,623,627,618,639,639,632,632,661,633,646,626,646,614,612,628,953,943,979,985,965,964,991,1000,964,979,985,813,778,778,830,781,793,761,798,776,822,769,946,935,944,939,975,952,928,941,907,935,931,925,967,925,962,941,937,931,827,870,853,844,863,857,835,830,852,845,846,856,850,835,880,850,871,818,860,719,717,735,735,687,706,710,691,718,682,688,710,705,719,734,730,675,675,644,643,640,656,672,655,671,633,642,646,660,694,696,701,689,674,685,682,683,683,695,695,679,676,704,684,682,699,697,1122,1147,1116,1164,1160,1144,1123,1162,1188,1124,1163,1157,1133,1164,996,986,987,993,1017,1017,1001,987,987,996,973,1038,1049,1017,1016,1042,1024,996,904,899,922,913,857,919,891,875,873,921,890,874,913,884,916,919,881,1027,1047,1038,1055,1052,1040,1065,1044,1031,1037,1029,1037,1044,941,934,945,942,949,947,936,960,934,919,940,955,961,913,931,948,726,723,720,725,745,710,878,885,903,905,905,885,916,885,896,905,828,847,822,809,813,818,828,830,832,834,831,840,825,709,709,708,723,722,708,714,707,714,705,719,724,697,687,713,734,692,693,870,879,887,865,871,868,885,875,876,860,892,847,860,841,901,883,875,1035,1007,1020,1019,1022,1036,1010,1034,1028,1000,1035,1028,1020,1032,945,953,960,952,955,959,948,942,954,941,919,937,945,952,942,935,902,936,929,925,897,899,924,902,890,925,904,935,699,682,683,692,656,679,700,698,651,646,635,661,660,647,649,657,650,643,653,646,635,654,659,660,636,958,948,938,966,953,947,982,967,988,855,830,852,856,873,675,688,692,667,691,684,681,683,707,690,687,694,697,675,671,701,1076,1092,1087,1103,1087,1090,1095,1101,1108,1077,1095,1090,1065,1006,991,964,963,976,970,987,1000,1006,1002,986,940,874,932,888,905,889,889,887,881,887,893,886,1113,1097,1113,1086,1092,1113,1104,1092,1101,1101,931,915,884,905,951,947,949,901,956,904,959,914,600,614,636,638,593,593,620,618,641,656,611,628,641,623,637,640,633,1100,1109,1188,1169,1207,1121,1200,1193,1190,1156,1061,1048,1068,1080,1096,1061,1081,1052,1059,1091,1052,1072,1070,1076,1051,1070,1053,1103,1053,1074,931,936,915,949,959,936,938,963,962,908,957,938,931,960,831,815,798,772,788,777,774,811,782,823,999,963,945,940,967,966,980,970,962,971,980,973,959,949,974,1000,953,1051,1060,1040,1034,1047,1021,1047,1073,1058,1084,1060,1048,1056,1074,968,962,971,972,954,965,990,959,975,721,701,698,655,678,654,679,680,706,678,679,682,683,678,676,669,683,677,690,642,696,673,702,698,701,679,1053,1076,1037,1043,1018,1048,1014,1050,1037,1029,1044,1015,1023,1066,1057,1013,1031,1069,1036,1049,1080,1046,1056,1067,1060,1043,1058,908,943,946,924,913,924,907,914,932,937,898,920,884,919,919,904,922,919,1082,1086,1084,1136,1098,1116,1095,1116,1071,1072,1099,1097,1124,1104,1100,1089,1118,1086,1088,1011,999,1037,990,1013,1020,1002,1026,1000,979,1011,1010,1012,897,868,899,873,873,883,900,908,902,885,867,877,1047,1036,1067,1058,1060,1058,1056,1031,954,947,955,949,949,944,950,952,937,925,932,922,924,922,925,907,940,944,939,932,931,845,866,834,844,845,856,849,733,739,715,715,741,740,732,729,725,726,714,725,709,703,718,739,731,729,726,694,715,717,697,703,681,691,696,708,700,705,734,721,704,695,711,698,703,687,703,913,966,936,923,905,940,904,963,1022,1020,1079,1069,1019,1029,1048,1026,1017,1066,1059,1033,1059,1020,1021,1046,962,964,925,920,991,973,959,954,984,948,947,912,961,946,923,933,937,956,969,643,622,663,658,651,638,679,669,682,656,623,693,633,690,669,637,653,616,638,630,662,638,597,631,659,628,647,656,630,612,635,616,975,1007,963,994,940,947,977,1013,962,890,911,962,935,847,860,851,843,863,879,825,845,669,657,658,676,669,658,682,669,674,692,679,661,686,671,1071,1060,1067,1070,1077,1076,1062,1060,1073,1035,1110,1069,1080,1065,1086,958,909,877,910,924,915,909,930,930,919,891,906,928,926,924,902,647,671,667,682,709,683,675,669,670,664,684,658,681,673,652,713,675,679,694,657,689,686,677,1031,1037,1046,1018,1057,1013,1086,1042,1021,1029,1061,1030,768,762,732,755,739,765,759,762,1026,1099,1069,1106,1030,1064,1070,1037,1064,1044,1058,1073,931,906,939,939,890,921,897,912,620,647,649,687,629,667,663,629,635,904,935,924,934,895,909,959,929,936,838,848,840,831,834,817,837,833,819,820,824,860,857,836,717,689,694,703,716,672,719,691,723,1156,1168,1170,1191,1185,1184,1178,1167,1187,1170,1146,1183,1165,1148,1183,1191,1037,1031,1046,1053,1043,1038,1031,1057,1049,1000,1073,1043,1068,1054,1031,1024,1059,1020,1039,689,700,699,705,670,677,668,668,671,751,734,720,732,762,756,730,677,671,689,681,668,671,661,686,677,657,685,670,695,674,678,1137,1167,1155,1127,1119,1207,1135,1210,1155,1112,1131,1107,1209,1148,1016,987,1023,999,1039,1023,987,1032,1028,1013,1012,1031,1003,1071,1048,1023,1006,902,878,903,934,872,920,908,889,910,902,888,753,780,782,777,775,743,738,752,735,700,756,775,745,761,754,745,758,723,723,722,713,719,695,1102,1149,1137,1180,1136,1162,1141,1144,1156,1086,1112,1101,1098,1111,1050,1091,1091,1085,1074,1052,1100,1103,1123,1079,1018,993,1002,978,1002,975,979,1008,967,995,982,965,996,974,688,696,697,666,678,651,691,681,706,662,667,687,709,692,658,669,669,707,702,655,661,669,678,675,684,647,692,658,661,655,660,665,693,714,698,696,719,745,711,722,730,724,1008,1007,1048,1015,1023,1032,1033,1050,1000,1008,980,1001,969,1005,989,979,999,1018,727,727,728,710,712,744,740,731,1106,1085,1118,1114,1129,1044,1115,1086,988,1018,1001,1013,1036,994,988,1003,1007,983,991,1022,1022,1000,998,1028,1037,1030,1034,1025,824,824,815,811,815,851,832,831,812,820,825,835,631,643,664,668,655,689,659,652,646,665,673,669,641,601,597,620,608,586,587,599,601,608,607,601,602,592,595,614,618,609,660,660,652,636,644,633,644,652,644,636,661,1053,1044,1086,1056,1089,1055,1077,1064,1068,1055,1067,740,726,703,747,725,750,733,713,710,732,697,722,707,739,982,977,986,991,993,977,1009,1012,997,1004,999,920,959,926,979,978,966,950,926,962,968,952,936,1009,971,1004,972,967,953,962,980,998,969,990,984,966,973,877,855,887,856,866,900,866,870,847,859,894,857,862,893,881,846,859,900,852,876,891,638,641,632,657,613,639,638,615,637,624,649,632,642,632,656,655,1154,1146,1174,1183,1224,1253,1147,1184,1198,1167,1124,1055,999,988,999,1017,1021,1010,1036,1036,959,979,625,691,627,611,608,625,619,643,649,626,661,626,634,628,601,645,665,653,683,666,665,677,676,657,647,1047,1004,994,996,999,993,1011,1019,995,999,826,780,813,799,776,800,828,789,818,763,969,983,926,954,969,1006,951,955,691,700,672,656,700,699,663,719,683,691,701,684,693,669,685,702,665,683,704,1037,989,1016,1052,990,1028,1003,994,1049,981,1031,988,1021,944,976,993,958,1004,969,997,959,962,991,978,995,977,986,961,991,1009,944,991,1009,735,706,728,719,706,720,710,719,717,714,717,717,701,746,747,706,716,723,721,704,686,696,704,695,712,727,696,733,716,717,680,700,687,661,689,678,704,676,677,671,931,860,878,877,890,892,887,942,889,922,881,897,894,875,1119,1061,1089,1056,1117,1088,1128,1095,1103,1098,949,984,956,966,1007,971,1007,988,990,1011,955,972,956,986,1136,1150,1163,1181,1134,1155,1175,1158,1137,1143,1180,1190,1057,1091,1065,1080,1054,1052,1074,1084,1075,949,983,953,967,973,972,951,954,976,969,690,695,693,694,695,692,686,713,737,686,697,691,690,686,706,694,703,699,679,693,698,658,662,691,677,671,696,667,704,702,736,699,710,712,1057,1075,1075,1093,1101,1033,1041,1072,1072,1059,1010,1071,1049,1063,1065,1055,1048,1063,1076,1074,1034,1056,1058,920,924,940,942,914,955,934,912,935,953,928,902,922,680,647,670,627,653,652,647,660,638,729,768,731,725,746,750,781,758,749,766,715,709,702,724,720,714,705,721,724,725,720,714,713,715,932,925,961,936,933,970,910,921,949,903,916,918,938,908,899,922,940,898,953,883,714,697,705,698,696,712,706,740,733,693,739,716,725,709,731,698,585,585,607,607,579,596,595,607,599,600,593,605,606,588,605,697,702,699,705,701,699,693,707,698,675,703,694,683,680,705,692,706,716,715,699,699,723,698,710,693,710,705,702,702,713,710,726,721,694,701,717,713,692,710,707,1031,1045,1048,1053,1067,1052,1071,1069,1055,1077,1055,1052,807,810,804,782,771,751,787,737,784,769,781,804,849,820,861,812,849,865,839,838,742,734,754,772,751,760,737,739,743,773,772,943,977,956,936,951,1007,1009,1000,996,1009,1051,1011,1010,1042,1005,1029,995,1025,1023,999,993,1002,1009,1005,1006,1004,1029,1007,999,1016,996,1009,999,989,984,1014,996,1009,1022,991,1007,1015,1019,1000,1008,1002,979,1004,997,1032,1040,1042,1017,1035,1045,1041,1034,1022,925,909,934,928,934,906,938,938,915,968,901,915,952,926,904,939,935,952,920,914,913,912,688,662,663,651,637,664,656,680,634,636,685,649,671,654,655,677,643,676,663,648,648,657,668,630,675,659,645,636,661,1031,1001,988,951,962,981,979,935,958,995,944,991,953,1001,965,1026,1020,1040,1047,1015,1021,1002,1001,1029,1036,1035,1032,1036,1017,1035,1031,1016,1017,1028,884,866,874,875,871,917,880,877,907,903,1006,990,972,988,976,971,972,998,991,996,969,1004,982,1002,971,969,990,917,924,911,932,954,941,944,930,968,938,967,969,950,947,860,882,879,880,867,881,883,885,841,891,881,864,888,885,882,888,875,856,878,867,874,899,1049,1044,1049,1029,1045,1044,1066,1054,1077,1056,917,891,937,918,925,890,926,910,697,705,657,720,674,706,683,695,696,659,697,721,719,737,733,693,707,717,712,733,709,733,732,972,940,932,929,954,946,911,926,964,913,910,946,849,852,858,856,843,840,827,863,829,843,832,830,677,676,689,694,715,707,700,691,693,683,691,704,704,670,690,707,866,849,838,844,841,842,889,832,863,841,849,854,872,860,706,808,706,725,730,722,742,736,740,750,718,691,664,662,671,678,675,668,682,669,694,675,681,655,697,696,712,702,697,716,719,710,702,716,697,716,1104,1127,1107,1141,1070,1083,1114,1091,1072,1123,1169,1123,1130,1010,1027,1041,1018,1002,1007,1046,1006,1035,1015,1012,1011,1025,851,879,896,879,852,844,868,894,857,868,847,875,881,877,866,853,810,832,822,807,820,847,825,821,824,838,846,813,812,832,815,835,714,683,718,711,716,713,719,1159,1207,1232,1222,1212,1184,1237,1178,1200,1183,1176,1217,1205,935,935,983,971,968,929,951,951,982,955,939,968,941,948,918,965,951,975,997,1009,1044,1005,1047,1064,945,1012,988,995,1028,1004,991,1006,997,1014,1022,1002,1012,1002,1001,1019,998,988,997,1001,997,1003,988,984,1006,1002,1016,1007,999,1001,1007,986,1004,1015,899,899,868,873,919,877,670,690,677,647,663,653,643,658,670,651,639,676,654,666,675,754,739,725,697,695,710,704,690,699,731,726,726,695,671,675,678,672,672,679,683,671,688,658,671,676,688,1187,1181,1156,1201,1180,1188,1184,1213,1162,1148,1226,1170,1169,1182,1170,998,1004,1030,1005,997,1033,1008,1008,1013,1002,992,1039,1039,979,1017,984,989,967,1010,964,1017,1039,1040,1038,1032,1041,1017,1025,1035,1017,940,919,924,943,936,950,926,928,932,918,944,900,949,944,968,912,669,671,660,663,657,671,671,656,693,663,669,649,666,651,662,668,645,677,661,673,1068,1068,1003,1062,1056,1052,1057,1060,1066,1066,742,777,788,755,737,755,764,757,738,760,757,1142,1163,1160,1156,1145,1125,1170,1108,1120,1143,1152,1008,984,993,1000,999,1021,1000,1030,989,1021,1019,928,921,916,895,901,918,889,902,898,896,787,811,803,796,817,797,824,825,799,774,1067,1067,1083,1051,1061,1055,1068,1023,917,927,920,930,956,956,960,948,975,930,941,927,941,1095,1069,1082,1073,1076,1093,1087,1053,1103,1074,1092,970,933,917,902,929,901,887,925,929,937,943,916,907,908,944,619,625,624,614,606,620,617,621,617,613,630,622,594,1121,1120,1120,1068,1118,1085,1141,1119,1080,1108,1106,1131,1182,1151,1105,1153,1106,1120,1105,996,967,986,978,1001,997,1001,1001,978,992,971,982,964,954,1012,980,688,689,703,676,687,679,704,696,714,649,691,728,673,673,711,705,678,678,663,729,737,734,746,719,749,707,724,711,702,722,722,706,699,732,710,713,712,741,706,682,686,700,690,701,698,693,685,682,689,699,693,674,679,695,699,678,1007,974,970,974,1001,994,1017,991,820,803,821,783,815,853,814,825,813,815,831,806,820,768,801,826,789,779,800,1006,1010,994,1007,997,990,1029,1001,1040,984,969,959,937,943,939,942,924,941,949,942,937,935,784,784,778,788,1031,1036,1066,1067,1029,1056,1080,1023,1038,1058,1046,1057,1036,989,976,993,982,974,947,969,968,988,945,972,980,821,820,823,794,824,815,804,802,826,843,787,807,821,794,816,812,852,709,696,704,722,692,695,707,730,710,731,694,723,725,695,702,717,880,891,898,874,873,907,883,861,869,866,904,845,856,710,711,717,699,715,707,696,716,719,705,707,702,622,619,635,634,629,624,625,612,621,623,644,618,623,661,634,682,670,686,669,665,684,684,680,663,673,695,697,696,692,671,676,673,683,694,670,697,693,684,690,684,682,685,1117,1068,1150,1185,1123,1109,1136,1140,1079,1150,952,971,970,936,953,957,963,948,1100,1100,1080,1091,1081,1098,1081,1090,1096,1075,1087,1082,1095,977,953,969,973,980,976,1018,985,968,811,801,764,779,794,782,770,788,788,803,657,664,647,667,678,674,667,654,685,685,591,609,613,589,604,582,600,583,605,605,596,581,576,601,612,619,668,647,671,674,676,657,664,663,665,694,670,712,640,669,671,753,765,753,761,759,975,980,967,966,951,985,958,988,970,955,966,813,801,827,811,826,828,826,842,851,822,822,829,838,819,822,835,673,697,719,698,715,695,711,704,700,922,967,975,955,930,925,922,958,958,976,933,971,962,955,953,986,977,955,987,951,955,737,701,713,717,675,707,685,735,690,714,697,1117,1060,1078,1125,1086,1091,1036,1113,1117,1096,948,920,960,926,942,946,960,968,1007,938,956,939,950,922,963,940,931,938,889,878,865,869,888,871,866,890,895,877,864,873,892,875,871,880,710,711,692,683,723,706,704,688,688,698,707,715,691,687,680,670,695,703,700,683,672,680,701,669,703,698,706,686,679,690,723,962,966,943,953,958,950,936,986,971,979,978,952,967,975,973,932,779,806,797,782,813,812,803,951,955,973,967,964,1005,980,995,961,962,1002,937,975,965,683,686,686,703,711,708,707,706,717,693,677,677,702,1086,1119,1093,1081,1094,1089,1068,1054,1091,1063,1073,1106,1110,971,973,993,955,725,716,719,711,731,728,722,719,707,697,755,727,726,695,743,722,702,718,714,854,855,872,880,860,875,894,877,893,864,879,876,881,897,872,670,675,664,655,695,652,684,658,676,661,684,633,628,610,626,615,641,600,611,624,646,604,628,660,637,734,722,753,742,720,1056,1059,1068,1037,1046,1012,1051,1060,1045,883,831,850,850,869,846,830,880,868,864,877,861,841,856,1068,1048,1074,1085,1074,1086,1072,1081,914,956,921,966,977,974,957,934,937,939,914,945,970,935,954,995,986,1013,980,993,988,985,972,885,878,886,900,903,875,882,904,889,877,899,883,888,903,895,882,877,930,616,613,616,634,617,612,633,643,673,675,666,658,673,698,696,693,745,740,692,704,739,741,756,723,708,1004,982,1014,984,1016,1011,990,1002,998,1003,1008,997,1004,982,1000,1005,763,756,732,769,777,743,763,765,777,760,736,690,665,676,664,659,680,672,679,663,694,666,674,700,687,598,621,621,633,623,628,660,636,631,847,856,827,823,822,836,826,815,830,826,837,819,823,865,835,674,675,707,675,689,697,703,722,695,681,701,695,611,629,610,619,607,611,612,620,608,616,641,626,744,754,766,789,733,745,772,774,771,785,814,794,1057,1042,1053,1035,1010,1036,1044,1038,1036,1023,1036,1020,1010,1045,1054,1097,1066,1048,1071,1074,1097,1088,1052,955,909,917,944,907,916,911,928,935,942,994,913,915,956,941,908,922,922,894,923,965,941,920,922,667,641,659,626,644,627,625,635,666,650,647,660,656,630,641,624,639,1064,1009,1024,990,1018,1010,1020,999,1034,1033,1066,1085,1068,1076,1070,1074,1035,1061,1070,1054,949,955,933,974,979,940,919,943,954,964,976,952,693,682,636,660,648,655,707,695,667,664,669,686,666,643,662,628,621,626,619,621,610,627,636,609,631,624,644,635,637,612,1084,1043,1068,1027,1042,1083,1091,1026,1091,1085,1042,1076,739,742,759,745,765,748,741,781,1220,1245,1241,1304,1261,1200,1212,1282,1236,1237,1258,1000,1010,1054,1037,1032,1034,1006,1007,1129,1097,1128,1131,1102,1118,1134,1110,1094,1107,1111,1107,1116,1110,1126,942,940,940,960,948,937,973,929,945,931,947,952,965,1012,1004,1021,1068,1072,1011,995,1045,1034,1035,1038,1030,1043,1025,1050,1046,1035,1043,1051,1035,1017,1013,1017,1014,1019,1017,1029,1013,1040,1011,996,1007,1011,1018,1025,1019,1075,1117,1081,1097,1102,1087,1085,1078,1092,1065,1079,1088,907,906,920,897,900,925,906,913,901,930,936,898,932,1058,1053,1085,1070,1105,1068,1056,1067,1049,1035,950,967,953,944,969,948,969,929,948,920,960,943,941,937,942,968,935,950,635,709,681,678,672,662,705,662,684,678,699,1041,1020,1045,1039,1049,1052,1040,1046,1020,1047,1040,1034,1058,1024,1067,1047,1070,1031,1065,1024,1066,1045,1054,910,935,907,903,947,949,915,914,923,935,946,873,942,595,574,570,557,600,595,612,546,582,581,657,658,649,644,651,671,655,678,673,669,653,640,652,668,655,658,643,734,724,753,756,727,732,715,724,733,732,718,727,708,708,744,739,751,734,1041,1038,1034,1021,1039,1035,1027,1026,1047,1064,1033,1038,860,854,885,863,866,874,884,844,848,842,873,872,855,845,860,878,677,731,743,727,704,737,738,736,681,720,727,676,647,642,656,637,650,643,647,646,629,632,663,653,651,638,633,650,644,644,640,650,651,641,642,650,647,641,623,635,651,634,634,638,631,639,639,638,643,638,643,624,636,625,634,635,642,658,644,649,638,637,997,963,965,975,971,1018,988,977,922,950,986,985,966,964,963,908,977,989,996,998,934,739,732,765,738,721,751,751,764,736,763,791,758,754,744,741,692,721,708,704,706,796,815,804,814,779,817,826,809,796,805,815,802,811,818,802,830,823,725,726,728,722,705,718,725,703,723,720,723,711,713,722,937,954,945,917,936,959,910,921,933,949,938,922,937,962,956,917,926,1031,1012,993,993,1022,1013,997,1020,1033,1008,1033,1008,1043,1014,1008,1029,1024,915,906,909,923,912,917,876,874,878,883,907,887,880,896,1143,1116,1123,1130,1117,1113,1135,1121,1149,1019,1030,1004,1012,1019,1035,1017,1010,1037,1028,1021,1020,1039,1033,845,835,833,845,836,843,816,841,678,663,675,662,698,652,672,696,674,667,682,713,656,665,677,1090,1067,1092,1061,1085,1125,1055,1067,1063,1056,1071,1114,1099,1086,1158,1101,932,927,967,920,964,911,934,978,961,943,926,1012,1038,1059,1003,1009,1051,1034,993,1028,995,954,995,978,1034,1015,1006,1044,1048,1047,1043,1059,1048,1024,1052,1048,1030,1041,1050,1044,1017,917,927,952,937,912,927,923,927,904,934,894,886,908,901,905,912,795,803,814,801,808,787,835,844,798,832,1001,998,985,1005,973,1008,1011,995,986,1011,969,973,996,1012,992,983,995,989,993,1002,1004,990,990,995,994,992,1000,988,1008,1026,1009,1020,1004,1035,1016,1020,1017,1019,1005,1010,1029,995,965,960,970,948,937,966,936,954,973,957,954,963,713,708,727,702,700,736,680,711,691,731,720,728,716,718,721,702,666,658,647,674,671,646,666,660,637,639,656,642,639,674,1165,1108,1145,1101,1076,1120,1094,1080,1099,1107,1066,1123,926,943,926,935,923,940,933,936,925,704,713,730,690,708,720,699,689,725,713,701,736,1011,1050,1046,1033,989,1017,1010,1005,996,1050,996,1045,1033,1020,1033,1004,997,761,794,747,788,807,857,815,762,778,802,787,946,988,951,987,951,965,982,957,973,975,991,961,978,857,852,876,881,848,861,887,849,872,875,864,864,870,834,834,813,821,834,826,815,840,821,799,816,826,829,816,810,835,805,807,833,832,676,685,680,684,667,667,677,684,687,640,634,627,622,617,661,642,637,641,629,623,632,642,610,604,625,594,600,614,620,603,607,597,615,629,631,639,624,923,962,961,978,933,948,966,958,967,691,690,670,734,707,699,664,658,704,687,633,688,704,671,694,620,621,607,614,619,614,626,635,620,618,630,629,606,599,663,671,681,674,673,686,665,680,704,692,700,690,669,680,693,658,674,688,674,675,685,695,687,667,692,695,1062,1046,1004,1073,1026,1017,1027,1014,1019,1019,844,840,846,831,846,855,837,851,791,971,955,968,990,983,970,976,957,983,999,964,972,987,1003,907,891,886,883,886,893,897,867,890,901,909,915,680,704,701,663,698,684,680,688,668,699,646,705,661,645,634,641,637,636,617,644,640,635,654,655,637,1212,1234,1227,1200,1206,1183,1194,1277,1166,1168,1171,1204,1183,1149,1223,1040,1039,1046,1061,1040,1041,1079,1038,1029,1079,1047,1091,1110,1103,1112,1104,1132,1093,1107,1114,1122,1105,1123,1096,1079,1105,1096,1113,1094,1097,1018,1005,996,974,1014,986,1016,997,989,1001,1026,1035,1023,844,857,860,862,875,881,900,865,860,853,887,870,886,1067,1071,1068,1112,1089,1080,1054,1062,1068,1048,1076,925,903,936,958,914,902,898,896,918,900,933,927,934,896,943,657,641,676,665,666,623,684,685,664,651,1179,1203,1264,1177,1240,1152,1158,1200,1157,1197,1183,1107,1154,1157,1003,958,1003,664,654,684,653,639,649,649,624,676,627,648,659,660,645,649,646,636,672,1180,1153,1188,1146,1129,1193,1204,1225,1189,1185,1162,1159,1171,1239,1040,1090,1057,1083,756,730,720,744,772,721,726,763,738,717,693,771,688,701,682,680,707,691,708,691,695,693,704,676,712,894,859,900,878,905,894,896,881,876,894,895,830,878,887,889,874,922,911,903,888,901,1079,1041,1048,1086,1029,1088,1053,1085,1037,1037,1061,1051,1086,1053,1051,1057,1059,987,992,1012,974,975,985,962,1009,990,986,985,953,992,994,985,972,947,945,930,929,918,954,942,979,940,945,950,955,925,740,741,697,695,653,618,650,645,644,647,620,624,627,1041,1048,1048,1036,1039,1012,1035,997,1008,1012,1009,797,771,764,804,807,830,833,802,819,751,806,824,869,844,881,880,854,905,870,851,710,710,698,665,684,716,692,649,702,713,625,618,619,609,628,608,625,639,623,621,634,634,634,628,608,628,623,636,624,614,627,622,612,910,897,899,880,908,899,907,902,948,947,898,885,918,946,948,716,683,717,741,722,692,711,628,576,631,634,637,617,622,607,615,609,691,680,680,678,666,680,658,686,676,678,672,687,681,658,675,690,690,672,670,671,665,686,659,660,689,692,679,684,682,683,655,686,684,671,677,643,678,1002,991,1028,984,944,1029,1007,1059,1000,1016,1033,1031,1028,1017,977,1014,968,1017,1052,1043,1016,1022,890,877,879,833,928,847,888,870,865,905,885,888,702,648,651,683,665,641,679,666,667,612,645,668,677,673,653,952,990,1027,1010,1001,995,978,992,993,975,966,964,873,907,928,912,887,904,872,896,920,882,920,911,899,907,936,903,679,691,713,685,714,693,699,702,749,749,711,722,751,719,750,743,720,755,726,738,746,955,958,945,967,979,951,932,933,937,1003,958,949,947,942,978,1011,968,959,970,963,954,752,764,781,731,773,741,775,785,782,764,754,767,787,793,764,801,798,672,675,715,695,706,693,696,700,663,978,960,978,963,982,992,994,978,1000,982,951,965,975,997,977,975,965,993,998,855,863,823,1114,1083,1122,1070,1080,1115,1094,1090,1107,1063,1106,1095,1114,1092,1101,1097,1098,956,953,979,973,944,964,993,998,984,1015,969,973,863,856,847,861,854,872,844,860,845,843,852,844,740,716,702,734,724,727,744,725,734,708,719,738,735,733,732,634,634,606,643,648,659,639,651,642,636,615,647,618,612,612,638,610,622,622,604,635,619,622,615,606,696,704,696,670,681,692,673,696,682,681,697,680,676,669,688,699,676,656,690,745,703,755,695,732,723,744,720,735,727,739,663,677,671,687,672,671,674,1106,1110,1134,1121,1117,1100,1111,1107,1062,1141,1138,1039,1020,1073,1092,1049,1048,1057,1052,1022,1006,1042,1038,1032,1048,732,693,679,676,672,662,703,695,689,698,692,667,695,674,659,674,663,642,979,919,923,924,925,928,956,942,942,917,939,948,932,970,952,972,984,948,742,738,722,766,754,711,724,760,767,752,741,733,761,729,688,686,666,668,676,690,684,660,661,677,673,676,682,672,670,706,675,684,672,695,696,679,695,670,681,698,679,1052,1009,1015,972,989,968,995,996,1054,1026,1039,1031,1041,1051,1034,1030,1063,1043,1044,1048,1053,920,923,931,914,948,926,940,930,936,916,933,942,916,935,904,938,937,925,923,915,934,914,934,933,957,925,962,957,935,925,954,922,962,1040,1035,1057,1049,1071,1044,1059,1029,1042,1056,975,982,959,970,936,987,993,975,966,971,979,988,1003,941,966,973,691,676,697,672,695,691,688,699,678,681,689,681,688,661,700,685,688,659,1100,1096,1126,1116,1126,1119,1108,1109,1151,1068,1115,1114,1081,980,1001,957,966,967,992,956,971,964,989,960,974,987,972,953,983,984,1083,1067,1076,1056,1083,1068,1079,1091,1074,1091,1060,1071,1074,1069,966,988,943,949,966,950,960,1000,815,818,793,813,779,801,845,1182,1154,1160,1131,1138,1148,1156,1135,1211,1193,1149,1177,1165,1195,1166,1134,1191,1144,1211,1171,965,955,991,961,956,968,967,964,1094,949,952,972,935,957,951,937,941,922,957,958,945,918,941,935,960,688,665,673,694,669,695,654,657,666,671,675,650,638,668,656,646,655,628,657,629,640,650,659,646,634,650,659,994,964,987,977,1022,991,1023,995,968,980,968,742,692,727,723,724,711,713,714,689,730,714,715,733,710,723,740,628,636,632,643,633,607,657,645,625,643,634,926,895,907,896,886,915,873,914,860,888,901,949,920,954,892,883,767,751,757,734,755,751,763,747,760,749,747,741,719,667,681,680,683,665,652,674,667,647,680,674,666,647,661,661,678,1120,1157,1048,1086,1103,1094,1164,1137,1148,1140,969,921,932,908,917,947,904,899,994,943,975,959,648,658,655,714,691,687,664,665,679,657,1160,1126,1061,1049,1048,1063,1095,1059,1092,1075,1078,1066,1085,1078,1089,1060,1074,1072,1074,1076,1065,1065,1020,949,916,902,904,921,955,922,885,946,906,674,661,658,657,679,681,647,671,659,652,679,675,962,961,969,958,942,931,953,958,964,962,953,969,981,971,1040,1031,1025,1025,1036,1010,1027,1030,1030,899,917,901,903,873,865,918,935,922,903,1098,1075,1136,1075,1069,1068,1080,1105,1057,1118,1088,1042,1047,1062,1069,1057,1045,1054,838,868,849,938,845,837,870,857,829,848,887,870,864,860,850,650,623,641,615,638,631,646,642,634,656,620,647,1051,1070,1024,1057,1069,1028,1036,1052,1045,999,1035,991,1041,1031,1034,1044,1028,1036,887,900,852,875,877,901,910,871,873,903,864,885,1061,1028,1055,1068,1062,1066,1043,1049,1018,1044,964,948,975,994,971,983,976,973,974,972,980,954,987,971,963,972,901,922,899,924,891,906,896,916,906,904,903,1084,1083,1083,1085,1069,1012,1004,1001,1008,1020,1019,1026,1011,1026,1002,993,999,1014,904,938,928,923,932,922,907,918,913,910,934,916,946,710,702,740,703,699,713,684,712,677,692,697,1111,1120,1113,1091,1113,1043,1077,1095,1102,1103,1041,1056,1059,1087,929,918,927,928,957,918,968,905,866,695,690,724,682,680,678,701,703,724,701,707,737,730,724,702,734,744,688,708,732,713,1162,1145,1150,1137,1126,1105,1029,1072,1026,1047,1031,1037,1028,1018,1045,1029,1053,995,1033,1028,1062,1052,944,947,917,960,936,956,937,921,931,974,723,744,727,741,734,788,769,751,753,762,714,771,733,859,907,882,878,901,874,874,904,897,870,853,833,1108,1095,1111,1135,1131,1127,1123,1122,1128,1133,1129,1149,1141,927,940,909,941,955,924,932,938,936,944,949,891,930,923,919,927,943,905,936,735,715,694,717,686,717,720,692,681,676,680,678,700,695,694,714,702,671,694,1032,995,978,1011,738,743,739,764,729,751,737,724,724,733,721,751,760,759,744,738,732,734,747,1093,1063,1067,1068,1085,1069,1088,1042,1068,1045,1092,1090,1086,1072,1095,1052,954,994,983,998,983,1003,960,986,967,970,951,988,1002,979,848,840,878,871,864,881,750,725,746,773,753,756,732,749,729,747,745,756,736,698,695,697,702,678,683,668,698,702,685,700,687,692,704,938,964,955,892,960,959,990,940,962,919,965,973,958,957,977,1012,941,980,942,964,860,861,851,875,865,858,856,863,873,892,711,704,693,727,698,694,703,681,682,710,727,703,686,690,691,696,711,715,710,686,703,683,689,686,681,685,690,698,694,678,696,700,675,674,692,689,686,690,695,674,1085,1112,1115,1137,1132,1119,1091,1158,1147,1118,1099,1141,1131,1148,930,914,916,974,955,968,954,925,918,899,631,633,637,662,630,628,628,638,633,644,646,625,646,641,942,1022,987,950,983,963,982,973,994,953,979,962,974,963,997,768,779,785,756,787,787,804,788,786,765,746,786,757,765,783,813,767,725,755,745,732,770,752,754,739,739,747,748,737,738,752,731,731,756,776,745,752,751,745,712,749,985,953,977,939,935,1022,945,987,979,940,975,976,981,958,983,995,999,981,857,843,837,850,845,880,832,859,852,831,838,853,858,834,849,709,714,732,696,721,704,696,703,703,710,712,714,971,951,952,950,969,968,992,957,954,1002,981,989,956,983,956,963,982,996,943,987,982,966,965,1022,749,765,774,735,773,724,743,759,747,763,754,732,899,847,888,885,858,867,874,728,720,712,711,694,697,742,738,727,663,668,649,684,646,671,656,672,667,674,687,678,688,635,637,645,627,631,640,643,630,658,637,636,1061,1058,1029,1038,1084,1042,1041,1048,989,1046,1049,1048,1025,1004,993,1009,976,983,997,1018,1021,1004,1006,991,1002,994,982,1007,1021,1004,999,991,991,1005,983,990,1008,998,975,988,993,986,1003,976,1002,1028,1016,1007,997,994,1021,1029,1043,1000,1023,1013,998,1015,1010,896,899,934,940,905,883,886,905,886,909,633,652,621,614,610,652,632,600,613,617,616,615,603,694,700,699,697,704,700,708,693,700,683,697,698,701,724,699,720,714,720,729,704,725,1027,1071,1074,1032,1028,999,1037,1030,1003,1056,1029,1037,1040,1018,1053,1007,1054,1037,1043,1003,988,995,967,989,993,979,875,857,902,910,898,924,911,913,890,937,640,687,673,683,685,988,988,1019,980,997,1012,1008,1010,1025,1023,1005,1039,1032,1014,1020,1010,1030,1014,1007,1012,992,1005,1007,974,1003,1006,1041,1033,1048,1060,1054,1046,1044,1057,1050,1026,1052,1016,887,866,916,892,903,869,864,896,906,886,876,870,891,907,671,669,650,641,626,696,649,678,680,675,681,668,701,675,684,661,658,672,674,676,659,648,653,654,652,669,689,675,668,662,665,658,687,664,674,668,663,679,664,653,674,678,682,657,660,651,645,665,662,656,662,651,701,679,714,651,668,704,687,671,667,693,689,681,668,684,679,691,681,988,984,953,960,996,985,952,987,974,925,954,963,923,958,994,991,938,805,780,794,814,753,813,783,785,763,764,786,771,754,799,778,746,743,653,691,674,666,684,681,680,683,641,672,659,670,666,648,665,666,674,661,624,639,627,626,637,621,631,622,644,649,620,652,645,647,635,1002,1100,1071,1074,932,967,960,972,963,951,961,932,956,1046,1042,1027,1036,1019,1022,1020,1042,1026,1044,1043,953,940,927,954,938,942,928,911,899,953,942,926,935,927,929,908,861,857,874,869,843,862,860,857,820,822,887,824,849,855,871,832,825,831,738,738,686,725,697,708,703,722,748,732,636,641,640,630,638,639,618,643,636,651,642,660,639,668,641,666,670,651,663,667,661,662,658,661,657,666,664,653,659,654,645,666,653,666,659,678,702,698,687,681,695,695,690,711,691,694,688,641,632,654,657,678,675,649,644,641,668,645,650,654,646,653,642,647,1221,1137,1192,1204,1173,1081,1183,1121,1124,1103,1133,1153,1132,1141,1157,1201,1160,1100,1116,1090,1060,1094,1074,1101,1091,1071,1067,1078,1103,1094,1081,677,699,630,654,634,675,645,662,678,657,682,695,710,689,698,717,704,703,756,613,579,594,609,588,603,579,576,595,629,630,614,631,644,564,628,599,594,596,710,734,702,691,710,702,723,689,695,698,716,668,687,713,664,670,699,727,761,739,726,763,729,707,722,744,729,752,1047,1041,1035,1045,1014,1086,1045,1049,1043,1026,1028,1023,1063,1017,1040,1005,1044,1027,1025,1033,1053,1027,1033,1015,1034,1014,1003,1003,1005,1008,1026,1020,1008,1005,867,921,906,923,898,909,876,891,886,940,940,904,917,911,925,913,679,672,706,646,665,676,685,654,687,678,676,669,665,679,678,690,628,695,1043,1020,1045,1001,1039,1013,1027,1028,1031,1044,1033,1042,1062,1102,1074,1078,1100,1083,1070,1056,1068,1076,1057,1064,1069,1065,1057,942,962,926,961,949,962,957,955,907,941,936,966,955,704,678,755,730,731,710,717,729,712,750,1077,1090,1061,1033,1021,1014,992,1020,1044,1023,1020,1011,1037,1019,992,996,1047,1013,1037,1045,1034,1140,1114,1122,1122,1116,1105,1113,1103,1106,1120,1103,1117,1116,918,933,958,898,899,937,901,923,911,905,911,960,905,924,900,882,900,1036,1089,1083,1069,988,1042,1032,1075,1094,1121,1120,1043,1075,1107,1033,1058,1082,1053,1024,1049,1041,1038,1049,1061,1029,1044,1033,1048,1061,1024,1030,949,905,919,940,923,877,923,940,901,895,907,910,896,908,916,942,960,974,975,975,974,973,980,966,982,984,963,824,835,839,835,836,837,812,878,833,1066,1064,1083,1103,1105,1084,1077,1062,1099,1083,1081,1098,966,953,991,959,978,951,962,950,941,930,958,948,957,966,982,943,685,666,655,690,656,651,656,668,683,666,675,676,693,634,677,692,639,571,600,591,584,599,608,569,624,582,595,608,598,601,593,605,590,603,597,605,580,604,606,592,581,601,610,592,598,593,691,707,679,693,704,690,708,686,693,688,678,698,693,701,708,682,692,685,882,912,888,884,850,868,851,906,905,738,780,775,774,764,760,739,777,747,730,749,762,761,764,732,754,750,755,750,766,776,751,1142,1102,1136,1157,1128,1104,1133,1099,1108,1111,1139,1105,1113,1094,915,946,953,956,948,960,959,911,944,985,1068,1096,1111,1108,1103,1109,1100,1127,1106,1119,1080,1113,1100,1093,1113,1084,1102,1098,1075,1093,1118,1113,1096,939,949,918,949,945,954,972,978,917,964,904,913,924,897,956,944,945,671,659,650,681,658,666,665,689,669,667,664,661,652,702,684,675,687,708,701,699,701,725,685,706,700,1030,1034,1031,999,1035,985,1027,1050,850,785,818,822,823,826,802,819,834,837,835,828,843,836,827,820,793,838,813,953,924,944,957,946,948,930,938,913,936,898,933,915,912,932,919,926,923,921,911,936,916,924,917,928,907,921,974,987,848,838,873,870,859,848,834,854,839,837,882,814 0 207.073631 0 0 0 diff --git a/test/ont_friendly.exp b/test/ont_friendly.exp old mode 100644 new mode 100755 index 4095fea..dc5b68f --- a/test/ont_friendly.exp +++ b/test/ont_friendly.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN114 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t enum{unknown,partial,mux_change,unblock_mux_change,data_service_unblock_mux_change,signal_positive,signal_negative} #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time end_reason 00000000-0000-0000-0000-000000000001 0 8192 -26.892539 1536.598389 5000 20954 610,580,592,521,521,519,496,534,522,529,510,432,438,454,431,421,448,436,426,420,432,452,441,436,438,438,445,444,450,438,421,438,438,447,436,439,433,434,440,445,439,436,442,595,526,578,547,545,587,579,579,554,578,565,580,574,570,543,583,669,663,670,648,649,652,569,575,567,586,580,566,552,573,578,572,567,564,576,577,580,590,602,443,435,437,421,420,427,432,430,461,442,436,437,441,447,434,439,450,427,441,425,451,439,438,433,429,438,440,430,452,431,455,444,635,581,622,621,596,617,631,596,628,620,597,609,604,603,621,649,647,657,642,653,666,644,649,645,657,644,636,646,652,656,653,641,658,642,579,578,567,595,557,584,575,576,580,587,574,593,580,591,566,570,548,575,575,546,566,546,565,645,653,663,645,659,664,657,672,654,659,655,661,669,649,665,650,680,660,637,591,613,610,608,610,613,609,605,599,606,622,603,606,604,613,618,608,610,388,392,389,394,381,398,386,374,390,391,367,381,369,367,356,359,360,359,374,373,360,344,365,360,357,354,369,574,591,597,586,561,593,591,611,594,615,560,623,582,589,600,560,617,590,560,594,642,664,625,648,629,645,663,626,627,640,651,645,647,653,655,651,658,656,659,660,654,635,644,641,648,651,638,579,591,578,566,573,550,576,585,584,587,573,571,587,569,559,564,391,431,417,399,422,414,437,415,428,406,437,417,433,499,516,526,498,522,516,478,508,493,515,520,503,507,421,378,395,400,397,383,385,390,394,378,396,378,353,358,355,355,351,348,359,359,360,352,361,356,411,421,407,429,396,422,418,660,668,673,661,658,660,660,662,672,678,670,682,676,654,480,453,468,458,641,646,630,632,642,653,621,647,641,639,635,640,611,618,617,614,618,607,621,623,599,608,615,633,622,595,608,610,608,619,614,613,620,612,606,526,523,550,554,547,576,551,548,532,537,548,541,539,567,534,562,522,632,643,651,631,646,638,636,625,632,636,633,653,601,599,598,592,609,598,601,593,601,616,597,600,597,375,410,392,364,407,400,420,435,412,406,420,401,399,345,345,347,357,348,332,344,359,342,354,345,332,349,351,356,362,320,314,315,326,319,321,328,319,317,302,308,329,325,360,367,370,363,366,355,364,345,362,374,428,412,431,426,410,440,440,424,409,427,424,418,425,428,496,502,483,460,489,494,485,488,497,485,503,436,440,443,444,462,454,448,438,441,453,395,428,408,415,388,409,431,412,407,407,417,406,412,403,404,402,400,411,413,415,418,402,332,360,348,362,367,335,354,345,355,354,344,349,355,358,351,358,600,589,579,589,611,577,607,596,613,572,605,598,568,593,620,616,430,445,473,398,449,456,442,436,420,448,445,442,422,792,813,813,830,820,810,852,862,808,809,833,841,798,857,815,780,652,636,606,631,434,437,418,420,450,434,426,441,443,431,577,575,569,551,581,586,414,419,398,399,395,390,367,393,395,397,401,429,400,357,346,347,333,345,354,345,353,350,338,804,770,788,822,799,788,739,822,798,790,839,617,627,651,627,654,632,645,622,638,656,617,660,433,413,405,431,389,431,417,404,431,429,416,383,406,414,403,412,408,588,588,614,598,610,612,581,604,584,512,512,488,494,494,484,477,501,493,492,488,468,475,382,386,391,394,399,374,369,384,395,408,379,346,359,352,354,360,350,339,348,345,351,355,508,580,599,552,571,540,563,557,544,558,555,526,515,530,523,523,537,401,378,388,376,395,391,400,408,381,387,404,392,404,388,385,392,625,645,609,619,652,615,623,606,641,633,636,649,645,649,613,590,583,600,605,586,610,629,612,604,609,600,602,610,606,624,610,598,614,585,564,525,558,562,561,553,588,606,573,569,566,569,414,409,432,404,428,416,421,417,410,429,438,437,422,420,424,432,409,732,738,727,696,731,771,763,748,687,763,736,748,730,720,734,741,750,635,641,626,648,650,632,631,639,637,645,630,632,642,641,628,644,659,646,417,398,419,389,417,415,408,416,429,403,396,401,414,408,434,420,405,582,564,578,577,577,567,565,572,553,654,662,641,629,669,649,665,655,628,634,532,523,546,553,550,553,530,542,533,541,551,550,549,527,535,416,409,440,434,421,420,414,436,418,423,731,753,739,731,764,768,771,765,769,766,760,752,771,666,653,661,665,645,648,634,641,644,631,642,399,396,395,427,391,363,406,395,409,422,404,402,387,408,411,401,380,382,383,382,389,425,421,406,409,407,377,372,350,354,355,359,363,354,354,681,706,713,697,710,695,713,699,705,713,694,689,719,710,622,624,632,613,614,614,630,608,626,598,609,602,627,627,593,612,630,637,702,664,664,672,646,653,671,678,621,652,620,630,626,638,656,636,640,635,641,640,608,633,647,649,625,640,645,641,585,586,567,595,598,587,542,573,567,569,579,452,462,458,472,426,450,500,643,613,639,627,648,629,615,614,614,617,609,626,601,671,656,673,656,673,684,664,649,664,655,603,632,603,611,597,606,594,525,535,539,520,530,520,536,523,505,520,526,526,523,526,523,509,518,517,518,411,402,423,407,405,425,406,417,398,407,399,533,560,536,542,530,527,531,563,541,680,649,674,701,665,681,679,596,599,620,604,599,607,595,591,588,592,594,613,608,587,401,398,397,409,411,413,421,397,405,408,408,418,726,694,743,727,731,698,725,715,707,687,741,730,619,664,649,643,634,610,636,632,635,618,568,569,555,577,573,571,575,572,453,438,443,448,434,469,458,448,457,449,608,609,606,616,603,607,635,615,460,441,447,450,440,454,470,433,467,427,452,453,457,437,428,582,586,569,606,573,580,600,659,670,683,670,683,678,697,669,697,692,670,664,675,681,667,675,662,700,671,670,600,607,625,623,623,616,596,621,599,604,604,618,613,609,525,534,526,526,517,519,518,524,524,530,542,530,522,530,528,533,521,519,540,525,509,522,527,526,497,534,527,503,530,513,532,525,536,520,538,536,504,518,515,516,517,506,509,520,521,504,524,526,515,507,490,502,525,491,518,500,500,501,514,485,499,507,478,509,496,514,506,506,496,496,512,510,499,486,511,499,514,507,493,433,409,418,417,415,412,406,427,416,424,405,413,415,423,429,433,428,574,580,612,592,574,572,588,565,593,549,554,601,574,608,559,567,576,586,585,519,534,524,524,524,523,522,522,516,502,515,516,503,517,503,508,505,511,510,511,519,510,502,512,528,398,381,389,389,388,674,706,681,678,663,668,672,694,679,654,695,678,661,673,715,685,689,718,676,691,676,705,720,691,700,694,582,589,567,585,592,568,575,582,585,569,565,555,577,417,411,423,456,432,418,425,410,397,403,446,590,602,570,593,587,573,606,577,583,583,525,524,516,509,531,511,532,520,515,529,521,535,510,505,524,514,511,524,514,516,512,509,499,511,505,507,494,505,519,518,524,513,520,530,527,527,528,518,528,528,523,517,515,508,503,524,505,504,504,504,496,505,501,508,490,501,502,506,501,498,517,489,506,512,478,486,482,485,705,692,696,688,711,708,693,704,720,693,720,700,666,595,591,581,612,601,601,617,597,609,600,607,623,606,595,421,408,408,400,403,427,392,424,412,401,415,413,423,421,384,400,389,439,401,406,411,408,400,414,423,424,409,585,586,588,565,562,568,591,572,584,586,587,576,604,551,583,591,495,495,496,493,508,496,499,505,489,482,483,499,478,650,642,652,626,640,657,649,645,642,655,626,658,627,627,649,665,648,662,648,643,637,659,646,740,726,742,711,726,721,742,746,729,637,627,624,624,603,463,489,477,478,475,469,462,469,527,505,485,488,479,722,713,670,731,739,713,695,670,717,719,712,691,720,706,707,709,686,702,589,603,602,600,596,592,600,605,604,605,572,681,703,677,688,693,677,687,678,679,666,684,690,679,688,694,681,591,602,575,596,577,569,607,609,589,562,570,574,592,606,570,563,568,575,578,575,579,578,592,580,574,583,575,576,564,577,520,516,525,522,506,520,511,533,516,534,505,531,514,507,520,522,513,531,387,372,365,392,371,401,401,395,397,352,352,359,360,369,337,371,347,354,357,366,365,368,348,371,380,362,768,754,735,726,734,774,781,728,734,750,770,747,740,758,761,743,783,635,637,656,689,656,663,663,669,654,654,668,650,662,663,651,660,619,719,726,730,690,724,713,718,730,723,719,603,607,610,608,601,594,614,592,617,631,595,618,592,622,604,441,450,443,432,443,433,440,452,457,430,552,523,523,528,518,509,561,539,429,427,414,430,426,439,421,424,459,427,424,421,448,406,404,399,392,397,406,404,405,408,409,397,393,767,710,758,723,765,749,794,744,763,757,723,756,781,772,770,742,625,632,625,614,627,611,383,394,381,407,432,382,394,421,396,391,396,411,405,353,360,345,354,334,362,370,348,342,370,364,369,360,375,356,363,368,367,355,366,346,361,368,409,415,422,433,432,423,430,422,430,429,431,437,422,415,415,472,462,463,476,466,452,447,437,461,466,465,450,450,464,465,459,617,617,613,629,603,641,606,610,494,485,504,493,503,504,503,391,409,425,409,422,407,419,414,411,412,420,413,404,540,534,521,537,537,556,527,523,538,540,531,523,534,387,413,420,407,396,427,411,402,339,344,325,346,339,339,355,345,338,418,407,410,416,424,403,402,424,397,425,413,429,425,422,437,434,404,420,453,445,437,450,451,434,437,444,431,444,432,436,426,589,626,621,612,620,611,634,622,524,529,532,527,526,536,519,534,504,532,524,528,539,383,380,405,403,384,407,369,379,365,376,364,394,346,354,356,353,351,334,359,351,357,363,351,359,344,351,352,378,359,365,369,373,377,379,376,370,704,668,677,707,715,729,695,698,719,750,712,704,689,713,692,709,688,681,684,685,680,677,675,665,652,657,672,671,687,586,587,593,606,595,566,590,573,586,576,592,577,586,569,568,555,545,544,547,540,561,550,546,534,540,536,553,531,549,553,530,542,546,555,530,562,552,555,482,492,501,499,502,486,504,478,500,500,492,503,480,496,504,402,402,394,403,416,418,414,396,417,423,409,407,410,418,404,426,404,388,383,386,397,389,403,381,381,392,381,390,397,391,408,388,655,674,662,664,668,644,673,676,665,650,663,646,602,573,577,568,583,588,582,574,585,596,580,581,596,593,586,589,589,694,700,687,708,711,700,717,703,685,694,706,702,696,701,674,691,608,606,591,607,596,622,632,602,601,596,605,606,418,409,400,403,408,419,408,387,415,414,412,416,416,420,406,413,415,397,416,400,397,412,416,421,404,695,681,676,697,684,737,690,704,734,590,591,567,605,594,576,571,595,574,583,557,588,600,581,562,590,589,610,682,691,683,702,692,673,690,672,665,683,690,667,676,676,689,605,603,608,599,586,585,589,616,601,600,605,615,621,406,398,396,405,402,398,426,427,422,417,425,402,410,432,410,398,378,387,383,381,389,390,383,393,384,422,417,413,417,422,431,434,395,391,401,396,386,390,389,396,412,395,388,409,401,394,393,410,399,385,790,833,781,863,806,764,824,776,819,784,800,760,796,798,839,767,852,639,646,649,658,622,656,662,635,622,644,484,480,471,470,478,483,469,457,443,466,468,477,470,848,829,829,830,779,769,850,853,781,777,853,791,806,834,618,618,638,621,599,631,617,633,603,636,610,621,621,632,644,669,613,661,655,627,630,670,639,662,646,658,644,673,636,661,646,672,671,680,656,668,694,685,693,686,666,678,673,673,621,616,608,622,606,629,612,615,607,635,615,647,543,524,536,540,510,541,532,528,535,527,548,557,530,658,643,641,633,661,634,653,660,650,644,658,629,644,647,634,658,650,659,644,583,546,556,531,537,562,540,541,540,513,426,389,407,376,401,407,400,407,700,697,714,661,725,716,732,708,696,675,677,686,678,663,679,683,672,681,688,670,676,682,687,658,692,689,664,556,548,561,579,551,569,548,554,544,552,563,563,566,549,624,603,576,601,634,589,602,652,642,619,606,589,616,615,593,604,611,603,595,619,612,598,616,620,600,608,599,610,608,603,595,616,559,558,544,571,561,562,552,537,529,509,549,553,553,558,548,569,569,539,550,569,540,575,635,626,670,662,623,611,638,630,649,622,618,633,621,613,621,615,619,624,627,613,618,627,615,616,634,629,616,627,623,634,622,621,609,629,638,663,653,649,658,655,653,544,543,555,533,555,558,556,524,521,572,553,574,572,540,554,538,539,548,553,654,604,650,666,602,607,672,663,651,665,662,661,664,662,615,600,598,578,590,590,591,520,533,524,506,520,515,523,512,514,518,507,515,526,520,514,503,533,501,512,500,495,507,521,501,523,526,533,529,524,519,525,525,525,526,518,519,522,514,516,530,521,520,513,518,515,532,389,405,399,386,390,381,397,407,393,404,389,384,393,391,388,389,386,399,377,376,658,619,645,632,607,631,657,645,628,669,659,651,624,639,650,660,654,625,623,641,616,611,627,616,633,625,634,622,630,609,647,621,612,620,669,657,656,672,647,598,603,593,634,601,600,595,603,613,602,602,593,606,606,509,524,515,523,525,513,504,494,501,499,501,496,353,372,387,370,367,394,391,395,384,381,393,375,358,350,362,364,352,366,357,361,349,362,357,373,355,357,362,364,367,355,676,676,677,646,680,695,646,697,653,660,706,646,653,645,646,647,650,630,651,650,631,631,636,638,650,641,670,674,657,649,568,538,565,556,557,565,580,566,577,532,568,572,573,643,650,645,656,654,651,649,675,658,644,659,651,637,575,589,579,582,575,571,589,584,571,561,582,405,366,382,367,369,369,390,382,371,348,365,389,448,435,451,453,456,448,443,439,423,438,420,434,436,433,437,420,424,421,435,421,428,432,438,436,588,593,593,611,577,575,588,616,597,677,678,688,687,669,672,664,686,674,557,590,825,792,853,803,815,779,821,820,787,843,833,814,665,657,717,668,686,680,697,711,701,698,677,696,659,662,697,719,671,699,719,434,450,463,448,491,621,610,612,655,620,617,604,635,617,615,618,627,631,613,613,625,617,638,524,552,496,514,520,557,514,518,519,529,537,535,544,484,496,497,491,497,493,495,494,496,507,493,397,404,394,409,386,392,399,390,412,408,392,404,404,731,719,737,686,749,706,708,728,715,685,615,640,619,638,636,651,657,625,631,635,646,648,658,394,403,397,399,407,406,399,403,389,387,424,406,405,417,406,415,391,406,399,390,385,409,396,403,708,711,695,719,741,716,699,677,695,704,720,722,748,704,709,738,727,750,574,586,587,574,569,591,598,593,576,587,604,411,383,395,401,399,399,397,404,399,395,399,403,405,389,401,417,830,885,807,785,793,797,850,856,836,824,823,812,762,785,823,642,650,646,642,653,655,640,638,634,641,650,659,643,679,681,701,658,660,688,651,646,683,691,695,663,676,664,668,669,657,595,601,588,604,600,631,587,605,618,587,579,615,615,585,601,596,596,620,616,595,581,422,433,427,394,433,404,418,416,426,416,411,409,416,411,415,421,369,370,357,361,380,385,362,368,373,381,369,370,352,385,362,367,426,395,406,391,397,414,413,399,395,415,398,399,388,409,406,394,446,438,456,451,429,445,453,452,436,450,439,443,445,436,598,611,607,606,623,620,620,618,596,611,600,639,596,598,618,608,663,705,674,719,699,681,663,606,586,598,582,593,607,568,590,577,608,573,601,608,576,594,399,420,435,402,435,422,422,427,423,419,420,422,424,413,430,425,403,436,672,641,646,634,637,609,654,654,655,666,649,650,669,612,648,654,642,628,653,681,665,668,646,668,665,664,656,690,683,667,651,689,531,534,510,501,506,514,535,519,548,390,392,378,395,381,379,372,385,382,396,396,380,389,385,384,374,738,727,750,756,729,727,738,749,768,722,769,724,669,665,668,683,672,645,672,676,680,526,517,518,517,502,521,531,508,516,484,482,499,465,497,496,497,495,499,496,490,475,490,482,497,494,491,494,481,495,495,508,500,490,492,493,501,489,431,427,418,402,419,418,415,410,415,419,407,420,435,399,443,424,426,402,413,561,569,589,543,574,573,563,583,572,566,536,593,497,490,487,497,490,494,494,492,488,480,488,496,654,643,655,650,662,649,647,640,653,661,638,619,652,652,657,634,659,676,680,674,685,670,681,698,687,677,699,670,679,694,698,665,703,574,567,557,567,568,594,571,545,555,593,562,570,565,556,554,434,410,398,405,418,421,419,411,394,421,706,722,690,726,707,688,670,696,700,694,694,749,590,579,572,568,580,596,591,580,603,575,579,597,689,682,684,687,688,694,699,684,679,681,691,684,704,683,684,690,684,617,613,607,615,600,604,611,606,625,529,544,554,560,564,538,565,562,659,660,657,659,661,646,670,668,655,675,670,662,675,659,656,675,673,593,597,599,583,597,601,590,593,589,599,599,596,597,603,587,428,395,423,409,439,423,432,423,505,559,533,537,547,534,535,515,518,521,397,420,411,418,430,409,419,440,434,423,416,422,421,434,427,434,429,417,391,395,399,391,395,386,391,383,387,388,395,393,399,396,393,389,800,748,741,725,710,753,753,599,599,625,598,584,601,609,578,585,597,594,416,426,445,417,433,440,442,425,420,457,442,417,440,434,444,443,611,642,606,592,593,591,614,612,593,631,599,633,605,603,600,727,724,726,732,725,728,724,738,719,717,738,731,727,726,729,739,729,710,738,744,655,644,652,663,645,644,653,635,633,648,629,542,555,556,541,562,553,552,548,428,455,430,432,411,417,429,417,403,427,427,408,402,438,427,405,413,406,431,425,370,358,360,385,372,369,378,361,374,398,369,385,367,380,370,369,353,743,713,747,755,746,723,684,801,745,743,715,734,719,774,756,769,758,707,763,626,606,628,615,636,619,621,618,607,604,595,428,423,408,446,450,436,715,693,746,732,741,748,715,730,752,711,740,713,660,674,670,670,651,674,663,661,670,682,660,646,676,675,691,691,692,697,697,685,687,689,671,658,684,687,692,689,685,691,698,672,600,603,628,583,599,578,611,590,605,587,607,601,599,612,556,563,547,571,568,550,557,560,554,556,563,576,563,556,564,559,566,563,490,487,510,503,496,480,500,508,486,525,491,504,671,652,620,632,650,631,637,638,661,657,671,645,668,650,650,669,664,660,663,645,667,666,639,676,637,673,661,656,676,666,676,681,674,680,674,674,691,683,674,675,676,669,687,578,556,585,568,553,545,569,564,582,557,553,596,547,593,579,559,573,663,662,662,664,675,668,671,649,658,663,666,667,651,683,542,560,554,572,546,558,550,559,569,568,577,569,580,565,579,572,550,566,595,612,615,669,636,613,617,659,629,642,635,624,627,639,633,636,647,644,642,624,634,654,637,645,625,657,646,657,639,648,653,674,651,661,636,656,661,647,661,556,537,551,563,551,555,563,538,538,542,659,676,666,654,671,680,665,655,664,667,658,660,629,615,613,619,627,616,617,625,620,628,623,615,620,545,546,507,518,520,537,515,539,544,524,526,526,521,515,533,392,390,383,386,649,637,657,653,627,660,652,670,645,647,637,624,686,680,680,704,692,697,662,688,688,677,660,661,706,678,691,592,581,590,602,585,593,584,581,700,702,695,690,693,692,703,698,694,706,706,717,707,697,728,700,708,699,717,697,697,609,585,604,612,588,610,611,618,591,616,601,602,587,605,594,595,572,586,599,587,592,577,607,596,592,570,576,602,581,666,662,663,651,665,671,656,652,649,645,637,646,634,638,642,638,635,632,634,625,648,622,628,633,623,642,639,629,639,639,637,631,640,629,627,637,632,613,632,629,639,619,634,630,646,624,604,601,602,613,609,643,631,645,624,630,645,627,648,638,637,634,640,641,632,654,623,639,657,651,625,636,648,639,649,517,518,564,566,550,549,551,684,667,676,661,685,669,678,681,679,680,671,698,571,598,587,603,599,595,600,582,596,578,590,588,579,383,398,425,418,430,432,423,390,435,417,414,413,459,412,413,423,439,541,545,535,537,550,531,527,545,538,543,532,664,643,652,658,664,672,654,678,662,643,644,672,669,664,593,591,602,592,602,608,599,587,586,595,584,592,594,565,570,578,574,575,567,571,575,570,576,571,578,684,686,677,693,676,691,680,685,586,573,615,598,601,589,600,603,597,592,591,597,605,615,666,686,650,648,663,665,616,607,622,623,617,618,621,621,656,634,638,649,645,633,638,642,625,639,654,646,615,547,541,563,538,545,549,541,561,559,539,536,609,609,632,613,601,590,654,600,595,640,629,584,604,620,649,612,572,606,598,587,606,645,630,644,661,634,642,637,635,650,634,590,552,551,556,558,550,535,571,571,577,558,559,557,545,539,741,744,765,739,751,727,752,770,726,729,773,753,636,647,662,648,636,631,630,650,633,643,628,639,446,395,415,424,386,429,412,383,589,589,610,614,580,593,581,611,570,574,603,584,569,592,602,592,606,607,592,433,459,437,460,463,425,526,508,526,517,502,533,521,514,512,531,517,503,525,546,384,402,397,395,396,380,397,389,392,385,392,396,369,364,372,356,357,360,377,337,363,353,371,374,366,366,371,369,367,375,367,357,370,370,384,703,668,694,695,747,736,725,707,699,737,709,693,639,635,640,643,644,639,649,657,642,508,487,504,501,499,507,488,504,498,497,497,476,501,504,462,436,441,446,434,431,597,635,635,623,644,627,628,616,617,646,611,626,609,629,643,640,576,548,571,561,554,548,583,550,545,563,561,557,579,565,581,689,685,682,680,681,684,680,702,693,672,682,676,711,687,608,620,590,596,606,592,383,393,397,399,396,388,406,383,376,380,384,396,704,738,678,669,673,722,711,695,648,694,685,716,686,672,665,629,601,632,627,621,603,608,633,608,629,616,601,628,387,365,385,401,413,386,409,388,414,411,416,394,397,404,792,798,792,795,789,796,801,796,792,802,775,682,672,657,677,666,668,665,685,662,671,661,654,694,655,661,668,402,384,391,415,373,371,386,422,375,376,398,357,358,383,374,401,369,368,333,334,351,373,333,362,374,345,366,343,563,550,549,545,579,558,576,533,540,541,552,558,572,537,454,473,470,460,476,460,460,483,463,481,439,441,455,442,433,438,449,448,450,435,450,446,442,440,431,441,435,438,388,388,390,394,391,395,404,392,413,403,667,640,666,628,622,647,621,624,666,639,634,641,660,669,659,648,659,627,651,651,656,655,681,651,650,640,652,660,667,653,615,570,593,591,617,640,605,599,626,615,595,604,592,412,379,387,414,384,397,384,369,380,394,417,358,396,417,368,382,407,382,399,385,350,381,365,377,400,377,367,374,383,377,374,379,376,365,379,366,363,714,646,675,695,709,721,712,705,679,641,640,637,646,634,664,634,646,647,647,643,662,639,649,646,637,631,645,665,677,667,666,668,660,677,655,655,549,558,530,558,533,533,627,627,624,615,587,595,590,600,620,613,596,611,606,621,675,670,666,663,669,653,676,667,668,670,654,674,654,650,661,678,580,557,606,579,561,594,594,581,585,588,572,588,366,394,404,383,384,382,395,378,386,398,385,379,368,396,377,399,392,383,380,360,332,348,357,353,359,358,352,361,356,352,371,355,351,361,738,701,692,673,689,697,714,685,682,709,691,663,685,732,681,731,738,736,714,692,703,712,693,545,514,548,526,555,553,528,365,369,371,361,375,368,372,360,362,342,363,362,357,355,346,361,682,716,728,696,723,736,734,722,631,623,603,612,612,622,638,620,614,606,618,627,627,621,617,744,754,762,754,718,749,761,751,740,736,752,750,746,637,615,639,623,626,607,486,492,502,487,488,484,499,499,481,489,455,480,482,491,486,670,690,694,697,676,678,666,673,712,698,704,679,676,599,598,596,608,601,602,590,589,610,643,633,613,611,621,620,623,608,628,604,618,611,612,606,617,627,615,628,619,626,611,618,629,623,628,626,622,628,617,622,626,613,622,633,627,627,625,623,626,635,635,635,639,633,637,637,636,621,639,640,641,634,638,646,642,631,642,632,644,640,636,625,627,642,631,641,674,658,655,655,655,644,651,651,664,649,652,648,657,654,656,665,657,670,660,536,556,560,563,569,571,592,575,548,554,557,563,551,551,562,571,566,545,554,556,563,579,707,693,684,729,705,691,684,711,710,716,701,710,655,645,633,633,637,632,643,643,635,589,589,583,599,595,585,587,595,595,592,589,584,583,582,597,593,591,454,415,460,450,454,439,455,408,419,456,437,445,473,429,424,431,439,443,440,416,540,501,538,513,513,532,532,525,512,516,531,527,522,526,499,489,497,494,486,498,502,501,411,396,425,391,415,408,399,422,407,411,392,394,401,398,422,406,409,407,415,416,410,418,407,410,409,409,403,417,413,419,407,419,409,415,422,416,420,418,424,413,429,409,417,416,425,421,722,747,711,743,709,745,722,713,757,723,722,730,755,718,685,707,642,651,634,655,632,644,637,649,640,630,523,517,503,512,517,524,511,518,527,523,496,512,531,517,370,381,382,360,372,381,399,390,691,694,669,717,661,678,700,548,534,539,542,510,506,536,536,531,553,496,506,559,560,551,386,379,364,406,381,390,387,375,403,390,395,705,720,692,717,717,703,717,681,730,727,722,710,740,651,673,642,653,662,649,662,650,649,659,645,655,640,656,669,663,663,668,677,664,665,670,667,675,660,661,658,686,665,554,554,540,543,544,547,566,525,534,643,599,597,622,575,599,615,631,622,614,622,629,626,640,638,634,614,629,629,716,683,693,690,695,700,683,680,688,686,675,682,677,602,617,593,618,596,598,613,581,600,610,597,613,624,610,598,604,614,588,550,550,559,534,558,543,560,547,553,540,568,559,549,555,552,408,420,428,419,416,426,420,701,653,683,690,682,676,707,690,662,655,662,676,682,685,685,670,651,648,694,721,698,655,670,675,683,707,701,722,712,706,722,697,691,705,704,719,709,716,711,709,533,559,538,526,519,541,559,536,527,378,375,390,368,377,388,389,390,379,390,386,382,367,380,370,374,392,653,654,664,618,628,631,625,626,632,638,615,638,636,635,627,609,626,618,612,602,607,619,615,606,616,605,616,611,610,628,602,605,584,592,593,602,590,599,619,585,587,589,588,600,592,587,596,593,599,600,612,620,607,604,603,617,621,601,619,582,607,610,624,605,603,607,611,596,600,621,601,580,577,595,591,567,490,497,485,477,470,483,471,512,486,470,465,460,503,471,473,614,622,623,656,678,650,644,652,657,628,651,668,622,649,618,657,662,674,676,690,696,691,707,698,688,697,720,667,694,715,694,717,573,565,577,574,585,572,563,588,588,572,576,579,596,567,638,649,656,653,634,637,645,645,653,661,635,661,644,653,648,653,662,653,643,650,642,638,573,543,565,561,565,573,542,579,562,555,574,444,409,415,424,403,424,447,414,439,428,433,427,423,430,429,417,401,430,578,569,573,593,575,550,591,655,658,642,645,637,632,626,627,641,637,631,630,649,621,644,644,627,644,616,629,645,626,623,641,627,633,619,630,624,637,640,640,618,635,625,624,622,634,631,625,653,644,631,634,596,577,591,587,562,566,575,589,593,572,577,569,575,575,576,581,572,570,581,584,503,476,461,460,434,495,492,482,477,460,474,462,466,486,471,620,643,635,648,647,619,638,635,655,628,646,651,629,625,600,621,643,615,624,622,632,629,622,624,636,632,619,638,632,628,642,631,643,625,634,655,640,630,632,638,644,645,660,649,663,653,659,651,654,663,643,635,646,656,587,587,590,583,585,587,579,571,578,597,579,568,624,594,590,595,607,599,597,617,602,609,611,623,597,587,581,627,383,407,394,424,418,409,416,424,425,428,430,423,431,409,403,417,429,693,700,707,732,706,699,695,696,711,683,745,725,712,586,578,598,583,569,607,566,432,418,408,408,440,445,395,416,427,404,424,410,427,407,379,356,371,348,371,357,350,356,364,368,358,358,348,369,354,383,373,346,355,360,323,341,349,342,351,345,354,360,354,360,346,420,423,435,430,436,431,419,426,437,434,421,433,442,437,432,428,418,415,737,692,745,729,691,774,708,734,733,710,723,703,742,703,711,692,694,685,700,671,683,697,704,677,708,677,692,682,691,595,614,626,619,624,614,617,604,603,616,612,611,615,608,480,499,488,506,491,509,500,475,488,486,405,422,418,403,426,411,400,420,414,414,425,394,375,393,403,382,397,393,391,391,387,391,394,382,379,653,653,694,636,698,654,641,650,652,660,670,668,666,662,643,671,667,659,662,671,670,654,671,675,650,647,686,661,582,587,567,563,580,574,571,580,597,589,584,556,584,562,601,549,558,554,561,594,478,501,473,494,484,664,674,665,658,672,658,658,667,664,675,660,669,656,549,552,542,559,548,571,558,584,546,566,544,499,496,498,497,508,500,507,499,499,507,499,492,507,514,376,383,383,374,389,380,390,389,381,364,385,371,363,365,367,396,376,374,435,464,443,472,423,446,460,457,455,440,458,431,437,455,446,404,397,410,413,394,395,392,399,396,403,663,668,674,667,666,652,663,663,686,651,682,648,648,662,624,620,618,629,617,632,630,624,615,631,622,638,619,671,631,682,669,655,673,649,652,658,661,653,655,684,656,554,576,561,568,582,574,582,566,544,587,578,546,585,444,459,473,454,450,466,460,460,456,480,598,607,576,605,602,636,617,610,531,529,525,530,528,529,526,521,534,526,522,542,535,525,521,418,416,436,414,419,409,411,424,423,417,441,427,412,424,396,405,398,414,525,536,543,548,534,545,542,392,395,409,417,410,344,376,357,367,361,361,364,359,358,357,347,352,347,348,350,366,357,359,356,363,355,342,341,359,357,365,353,362,360,363,686,673,688,704,738,689,693,684,705,674,681,686,638,635,626,639,637,629,642,646,647,630,630,630,611,617,639,635,671,668,677,683,580,560,592,586,569,571,575,568,580,572,567,571,570,576,588,575,572,560,572,553,574,572,596,588,606,551,577,595,609,554,567,625,615,594,608,640,639,646,644,623,636,625,623,627,633,635,635,629,651,633,641,643,583,558,575,525,579,577,567,676,701,711,709,704,741,707,720,722,706,675,682,682,686,683,682,671,666,682,683,688,680,665,694,602,582,591,590,577,589,611,584,588,579,595,602,597,591,583,595,577,591,589,590,602,564,561,563,557,560,576,557,568,558,568,555,559,614,632,626,623,620,628,613,620,619,628,610,631,648,626,639,622,627,636,544,563,562,537,537,537,562,530,538,538,549,569,546,528,569,628,647,647,640,628,638,624,649,629,645,640,641,634,580,547,592,578,585,577,575,569,588,570,573,460,446,434,442,450,452,451,412,407,425,424,438,419,429,413,431,431,630,630,631,630,632,634,602,628,632,622,645,538,530,542,540,536,543,550,520,518,525,529,519,516,523,515,517,537,518,516,523,527,526,515,521,520,528,424,411,398,423,431,420,439,422,426,419,436,425,427,556,558,568,572,586,557,579,555,575,505,476,485,496,495,486,495,505,665,671,665,670,669,682,666,666,675,674,675,675,582,591,569,592,582,588,568,591,601,615,569,562,552,556,570,567,572,556,564,566,557,542,568,566,568,577,532,526,516,522,507,520,515,519,533,528,518,529,522,509,399,390,392,386,381,390,661,652,643,677,622,643,634,628,661,643,640,667,635,639,652,658,648,650,650,662,655,664,662,675,650,668,648,637,659,655,659,579,512,550,550,564,582,554,556,576,719,714,726,729,735,743,727,722,720,621,614,609,613,616,621,631,622,618,626,628,632,633,613,609,617,619,685,640,665,644,661,623,688,701,637,655,693,672,650,668,671,673,705,688,703,690,706,696,691,708,692,698,719,706,693,604,608,594,653,662,659,639,650,663,660,646,649,661,671,546,556,527,536,533,523,522,487,538,532,556,507,550,542,505,536,516,382,378,374,390,379,366,393,376,379,803,784,796,814,796,730,756,788,819,774,787,798,779,787,776,793,644,639,658,640,654,643,666,642,666,644,666,642,634,642,637,629,629,640,644,643,652,679,693,652,652,656,678,677,645,655,625,638,619,652,647,647,655,634,638,635,641,628,643,642,584,585,585,590,582,580,586,585,586,586,483,473,479,454,483,471,454,463,466,458,456,481,451,467,629,616,641,624,630,628,611,626,617,635,628,627,615,631,635,623,636,636,626,651,546,555,535,576,560,527,547,535,560,542,647,652,631,662,631,615,638,645,636,627,650,648,665,672,666,644,663,659,658,675,664,671,660,681,679,669,654,595,546,563,552,583,560,572,582,573,594,544,582,553,571,576,755,753,756,748,780,781,759,726,747,668,651,673,647,680,656,654,645,660,669,666,557,579,575,587,588,587,563,568,565,557,569,564,589,574,441,448,438,456,436,447,452,456,454,433,427,450,454,450,536,518,519,525,507,521,513,540,539,525,510,512,512,545,541,522,520,380,402,371,394,399,382,387,397,396,402,396,400,405,382,400,392,363,372,358,366,357,350,364,353,359,356,373,371,374,379,357,366,384,374,391,644,647,630,617,627,665,657,616,666,639,635,640,653,653,624,601,647,616,625,649,653,484,448,461,459,478,457,452,465,464,683,685,699,702,677,686,674,707,701,683,686,699,674,701,665,706,602,568,573,573,564,577,561,602,566,565,577,566,578,569,548,586,568,592,577,567,587,582,585,609,610,578,602,560,570,626,599,581,605,608,584,607,628,643,625,663,639,638,665,654,636,647,671,644,635,550,543,550,554,564,569,559,558,535,528,532,556,572,535,545,655,636,657,666,661,654,607,606,603,598,608,611,606,611,581,607,455,495,480,460,468,458,491,481,501,450,467,492,471,487,475,489,466,481,714,717,743,726,730,701,690,709,739,703,738,739,716,737,719,731,732,703,729,722,722,611,606,612,622,609,621,638,587,650,617,606,633,700,712,700,686,690,703,721,554,574,549,586,571,573,577,561,386,385,392,382,383,388,387,390,397,372,386,377,666,627,658,680,677,674,686,679,671,720,668,670,664,658,686,694,691,690,678,645,668,655,446,468,462,453,438,459,432,418,446,424,438,457,458,721,767,727,731,729,743,765,758,751,724,739,729,695,610,635,616,603,620,596,598,592,607,624,613,491,508,518,500,530,506,498,512,523,521,505,508,494,512,521,490,517,503,514,502,519,505,511,497,503,506,492,495,493,505,502,504,421,420,408,427,443,426,421,426,427,440,406,398,396,395,403,418,420,557,557,565,563,579,593,567,578,565,589,581,636,646,652,640,644,639,627,618,653,651,647,627,635,664,693,680,668,656,666,647,665,573,572,566,562,572,567,600,568,579,578,565,571,417,421,414,442,447,438,435,413,466,425,436,429,446,437,408,425,424,517,533,528,540,517,537,534,438,397,407,424,414,407,406,427,420,390,377,378,379,377,383,373,378,384,374,371,367,379,362,388,371,382,414,413,409,407,424,408,421,408,417,408,400,407,409,412,417,403,404,398,395,408,388,379,404,387,402,388,405,396,390,392,404,400,397,393,396,404,428,426,422,409,429,425,434,425,427,412,414,425,425,436,445,425,410,416,408,417,396,412,409,415,414,416,410,420,402,626,644,604,636,611,595,603,593,631,615,602,603,474,463,449,483,470,468,444,463,442,477,470,453,467,458,444,448,444,467,450,430,442,438,459,441,431,426,456,438,441,448,465,439,454,452,455,431,457,450,446,439,438,456,432,456,435,441,465,436,438,431,460,438,455,450,827,814,786,831,809,827,789,803,826,782,800,850,650,669,689,685,683,675,683,683,671,709,683,668,677,667,675,686,680,656,685,693,678,694,693,672,698,671,619,597,594,609,610,599,519,565,565,523,547,544,529,553,527,535,533,526,539,547,523,678,649,665,683,563,560,561,588,550,547,369,361,348,366,389,381,368,371,373,355,372,375,356,388,362,369,387,371,390,370,363,374,379,367,376,376,395,377,366,612,620,596,602,628,599,613,605,623,623,601,623,623,615,526,529,516,515,505,506,533,523,501,511,521,551,514,522,547,539,367,374,372,367,385,390,378,377,382,383,379,388,552,556,605,635,592,617,577,611,595,597,586,589,644,639,636,633,609,632,627,626,583,578,590,595,591,591,596,581,488,486,456,477,490,499,483,481,483,473,480,651,656,662,666,622,634,643,647,646,640,595,577,579,583,579,592,586,581,564,600,573,575,589,574,583,583,577,584,567,393,391,397,394,387,388,395,384,401,393,406,387,388,372,390,407,378,390,668,651,689,652,666,683,668,614,656,682,678,669,672,695,668,692,682,690,696,692,707,699,676,687,695,698,675,672,709,678,593,607,579,588,611,582,601,587,605,728,722,735,714,711,720,730,718,719,720,618,630,621,616,614,628,616,612,616,625,637,605,603,623,525,527,524,522,553,531,542,540,529,518,500,506,522,515,491,506,509,514,518,513,514,521,520,504,496,509,485,494,508,529,495,512,491,499,412,420,400,442,449,402,381,396,406,406,395,409,399,389,379,400,395,681,644,685,687,679,681,675,671,630,671,684,714,682,691,699,676,691,702,702,683,733,664,692,673,696,694,701,698,707,681,606,601,595,620,631,619,603,605,633,591,616,606,638,572,576,566,569,572,568,569,551,548,541,548,568,571,574,571,577,564,589,564,621,627,632,615,633,635,637,620,620,626,642,678,670,653,680,681,680,668,679,652,664,654,679,669,676,685,593,563,566,547,563,563,575,570,556,558,540,571,552,561,397,416,395,395,396,396,401,380,377,385,397,388,388,401,381,405,737,698,708,725,718,715,681,707,715,700,719,699,711,698,710,671,575,572,591,574,585,571,573,597,600,598,572,587,574,580,608,611,570,569,394,373,397,407,391,392,379,421,398,385,382,396,400,394,388,662,703,687,679,658,693,680,698,665,670,673,684,671,678,664,674,682,685,663,669,695,665,674,666,665,601,622,617,631,610,602,589,617,598,542,542,571,562,562,562,556,543,541,563,556,524,548,560,544,541,545,631,630,634,623,643,610,625,642,627,637,644,645,643,637,624,552,558,556,566,555,560,570,540,556,561,563,382,428,423,415,419,427,441,428,420,421,412,413,436,448,427,584,610,595,563,573,571,574,594,588,578,559,574,566,683,670,677,674,679,676,673,659,667,674,660,688,650,666,682,663,661,680,670,650,567,553,573,576,572,567,574,586,645,613,596,651,652,645,651,655,632,650,640,635,647,637,632,643,632,651,639,633,629,640,535,588,538,562,565,554,563,539,552,550,635,629,638,626,619,629,635,628,654,658,621,644,632,620,640,639,658,647,644,658,652,664,659,651,656,661,659,664,554,555,545,563,552,545,559,554,561,554,395,391,401,395,394,389,379,407,707,733,700,684,711,718,695,705,706,708,728,691,660,614,615,633,623,613,617,638,634,639,634,651,619,610,623,622,612,632,609,621,625,628,623,634,643,638,522,511,508,526,526,503,520,510,514,503,524,533,526,518,529,518,525,519,522,534,536,528,525,393,363,393,393,373,395,382,382,388,394,378,373,386,397,616,613,641,657,625,619,634,652,637,624,637,626,620,654,659,651,666,659,645,663,636,670,660,679,596,607,597,575,591,615,586,592,580,600,591,573,605,600,589,597,496,505,485,500,504,501,479,490,509,479,482,480,475,493,485,642,647,643,652,674,642,652,655,650,672,640,631,648,656,672,661,662,680,679,673,663,663,678,670,672,669,690,669,665,680,546,552,548,535,676,672,681,673,684,660,683,662,663,689,666,667,678,599,597,595,616,590,591,599,599,599,600,638,599,601,594,448,412,415,411,402,420,417,413,432,424,408,438,410,395,434,410,406,433,433,414,394,404,388,393,401,396,398,411,386,379,398,393,397,657,642,645,667,657,654,635,663,645,625,654,660,654,624,619,611,623,621,628,631,618,624,643,620,618,617,642,622,628,613,617,629,657,655,668,677,677,653,646,657,666,660,594,605,598,585,619,602,602,598,604,598,370,413,382,387,379,384,400,405,401,413,388,397,371,399,387,378,387,391,383,398,382,371,378,373,611,576,613,576,589,593,561,610,576,595,579,591,717,711,727,728,718,696,725,599,590,607,601,599,604,619,619,585,591,605,612,583,602,611,637,673,679,700,614,646,649,626,675,641,654,622,627,586,611,602,604,618,625,603,594,650,629,637,630,618,629,660,647,633,638,620,634,649,564,561,544,559,544,559,564,566,411,404,420,436,418,417,434,412,396,421,425,424,431,420,404,412,428,562,574,538,570,565,582,550,556,590,557,569,561,556,590,694,686,681,674,692,688,669,585,587,593,602,585,592,605,597,595,588,578,592,578,581,585,594,387,399,393,364,360,361,392,393,390,385,365,385,374,353,323,346,354,353,355,354,335,346,358,355,327,347,332,347,660,639,682,668,651,681,675,675,715,687,695,685,651,664,703,670,688,678,663,645,684,674,667,659,662,688,663,665,667,683,686,568,560,556,559,548,561,572,551,549,560,540,540,629,649,636,600,638,581,622,618,647,598,596,599,619,587,612,597,603,602,622,610,611,600,544,538,543,555,537,550,540,545,534,546,545,524,527,548,541,559,533,545,385,373,373,377,368,375,360,390,376,393,380,363,388,396,378,373,373,388,390,389,661,634,655,676,664,683,654,624,654,668,654,685,679,682,654,659,646,677,666,684,665,666,669,667,653,643,600,596,611,593,594,611,609,585,628,596,608,622,604,622,574,581,606,600,498,499,504,498,513,502,504,495,520,385,381,399,376,394,383,388,398,386,377,390,387,401,396,406,378,382,681,720,672,603,604,597,595,577,615,587,611,613,610,600,613,427,456,434,444,440,438,463,409,430,432,453,428,429,596,618,608,598,615,598,612,616,589,599,607,625,609,594,601,615,594,613,610,638,612,624,617,624,618,616,626,615,612,616,614,601,617,622,615,608,614,627,600,627,612,663,668,655,659,670,672,668,675,662,660,669,661,556,562,586,567,564,549,585,561,578,554,584,578,581,561,583,562,541,664,670,650,672,673,661,656,669,666,662,651,596,565,563,575,575,574,563,586,572,694,683,673,682,688,666,674,672,677,687,672,649,668,570,568,567,580,565,590,570,574,568,567,568,573,566,585,577,601,583,592,561,575,562,680,706,639,643,645,690,620,719,620,658,681,640,631,643,627,622,617,624,647,650,648,641,652,657,654,652,654,653,647,658,666,571,560,556,570,573,568,567,571,590,591,581,591,573,562,578,549,549,531,534,538,540,543,539,561,548,538,609,627,596,619,610,627,617,621,602,617,633,607,610,610,618,637,627,629,624,637,624,618,627,640,625,626,629,627,625,627,621,612,633,639,625,632,621,627,637,636,628,627,628,629,633,653,643,639,647,639,611,625,627,639,639,627,652,639,640,558,555,555,556,555,550,551,559,563,556,549,551,559,536,542,544,552,529,550,545,561,550,550,407,417,418,414,421,408,428,402,401,421,565,570,562,557,548,551,548,571,551,588,540,545,544,669,658,678,687,681,670,618,608,600,626,632,624,609,620,626,607,621,615,608,607,625,620,607,634,510,483,488,498,500,485,479,380,364,363,381,390,393,379,376,361,374,362,384,353,354,340,329,333,349,359,327,332,372,393,371,363,389,374,377,377,366,377,373,375,364,376,374,615,595,624,578,588,601,592,587,618,615,594,619,477,465,465,467,473,462,486,479,466,458,474,461,481,498,465,400,393,390,399,392,407,414,412,432,396,390,407,355,342,361,347,346,344,348,341,359,341,344,320,329,328,325,321,329,332,315,369,366,383,388,369,387,395,380,382,378,389,383,381,406,424,409,406,784,763,791,764,802,793,797,800,779,821,787,737,785,742,748,798,698,703,693,708,704,709,694,687,701,696,689,696,683,695,701,669,706,718,563,586,579,571,569,583,583,583,569,558,597,570,583,571,541,593,607,598,609,617,655,622,646,616,610,573,624,654,550,595,596,584,612,593,595,601,598,598,606,597,598,600,588,591,588,579,600,585,599,593,608,613,603,621,615,603,605,618,599,613,614,610,605,611,611,602,610,627,635,618,616,631,624,639,629,620,625,628,621,624,621,642,635,641,631,643,633,637,626,628,548,545,523,536,540,562,559,543,568,550,534,527,572,760,735,742,729,719,739,739,720,718,722,726,710,725,704,730,736,728,715,736,574,618,612,590,586,620,602,570,612,611,621,637,613,583,620,648,677,662,661,618,697,678,699,682,667,646,630,634,636,647,635,628,622,641,618,620,637,608,616,624,598,608,612,621,610,622,609,602,603,617,617,616,614,607,623,638,617,625,631,623,636,630,634,621,625,624,642,643,635,624,633,626,631,629,565,575,567,547,569,561,606,578,559,588,333,367,369,332,367,381,356,383,365,404,376,386,354,350,358,394,363,386,368,368,394,367,388,380,388,359,626,616,646,642,608,611,638,658,590,618,639,638,652,676,694,699,672,697,681,691,682,570,572,581,567,577,580,579,656,656,673,662,691,691,642,649,679,656,643,632,640,654,634,624,639,626,621,639,625,621,644,574,579,569,563,560,568,592,562,576,555,571,587,563,564,581,554,548,560,551,547,540,554,556,555,561,567,551,535,558,568,537,521,517,523,519,505,506,499,504,504,515,508,518,511,394,389,400,384,387,406,389,400,407,400,392,393,383,675,678,692,677,662,667,677,653,673,675,675,674,662,685,677,692,652,686,674,659,668,645,664,666,669,650,662,657,656,666,570,590,574,592,590,564,566,575,579,417,397,413,406,416,392,401,426,396,403,427,427,423,419,675,691,711,677,686,704,702,688,697,696,648,691,707,690,678,629,603,609,616,604,595,643,626,614,617,627,635,606,637,601,405,403,407,388,403,411,406,412,415,691,703,727,647,724,687,589,594,598,607,610,595,602,598,599,586,610,598,591,710,684,699,693,700,696,708,688,725,709,693,693,702,722,693,703,510,478,498,516,518,482,531,555,527,539,497,526,511,507,509,489,357,359,375,359,360,372,370,381,366,369,360,377,365,390,395,377,386,385,377,369,378,392,380,391,393,398,399,387,401,380,392,380,390,386,385,406,352,356,352,353,348,355,349,342,359,347,365,366,351,361,347,353,364,350,347,363,364,346,357,362,363,369,354,376,337,343,347,358,340,352,343,599,599,568,597,608,613,595,584,595,581,580,595,557,593,593,596,573,566,569,609,438,430,427,430,408,414,431,429,428,431,316,349,333,338,323,343,342,347,359,345,352,330,353,647,694,686,692,669,633,681,658,677,688,669,708,648,673,703,605,623,648,646,635,644,640,619,644,651,436,439,433,417,445,447,417,445,425,424,424,442,423,439,454,454,368,383,381,356,350,373,380,370,368,369,373,377,317,318,363,334,361,321,348,344,329,330,327,339,332,353,317,341,562,581,583,565,585,558,571,548,589,562,539,586,437,442,439,428,461,444,436,442,446,443,420,400,382,387,411,389,389,398,388,374,400,401,390,379,395,399,446,445,425,443,428,436,425,433,432,433,424,423,605,601,587,643,604,602,609,631,614,622,634,606,634,611,489,500,515,499,485,485,486,514,502,491,629,633,662,645,647,660,637,638,648,653,638,648,629,640,656,620,493,519,512,533,374,382,386,391,394,390,386,645,643,611,598,586,627,592,604,589,655,616,623,649,523,521,533,543,527,511,538,538,540,531,521,523,378,388,393,373,383,381,376,390,374,385,401,397,399,343,333,341,334,347,332,326,333,338,316,332,345,327,339,341,338,662,699,658,675,699,680,653,692,688,714,686,676,706,699,668,672,691,607,637,624,617,632,602,633,622,648,621,620,621,624,618,620,606,684,660,683,678,701,692,706,698,704,692,632,690,728,682,684,700,610,687,664,684,718,676,687,684,685,686,683,683,681,686,682,686,698,687,704,688,699,692,676,689,685,652,634,645,640,644,637,620,612,636,627,626,406,410,416,409,421,420,421,424,422,407,405,422,432,434,419,408,400,417,392,384,407,366,356,364,354,385,393,384,370,377,376,382,378,358,387,673,666,704,681,653,674,647,690,690,619,616,605,626,617,613,623,617,621,618,611,620,601,620,632,612,637,513,513,517,509,526,515,526,511,524,519,495,534,441,450,439,442,447,439,437,456,457,417,446,440,436,442,608,595,605,579,572,571,615,596,604,601,595,593,572,577,618,545,539,552,545,532,519,542,531,524,559,536,529,533,545,553,390,394,407,399,373,395,406,382,406,394,677,662,665,673,690,657,703,668,674,684,657,686,674,700,680,657,672,685,663,669,666,676,675,672,676,665,669,667,685,677,677,563,575,586,580,589,581,563,562,596,589,589,600,586,575,724,712,729,728,706,715,710,716,711,726,715,595,595,557,590,605,609,561,597,581,586,597,610,593,608,702,683,669,660,683,694,718,695,708,680,680,689,604,586,613,617,605,590,623,603,633,626,629,499,470,484,498,498,492,487,503,476,471,479,485,475,512,449,479,518,479,496,683,661,651,673,691,686,677,683,673,686,688,662,679,670,593,596,602,608,585,591,597,605,592,601,614,595,599,597,589,599,689,692,695,699,683,681,686,581,552,584,573,596,558,581,583,555,581,676,659,678,667,675,671,653,674,680,672,666,675,670,680,686,672,676,672,665,562,541,550,564,582,545,583,540,555,584,557,589,571,357,342,356,347,367,339,337,341,353,382,383,379,396,367,386,384,391,370,392,406,388,386,390,383,386,378,406,715,722,735,768,740,766,752,709,709,743,744,720,735,601,601,622,622,584,597,611,587,590,600,660,658,654,656,640,658,643,662,569,587,564,593,573,605,575,593,594,594,588,558,595,386,404,426,408,413,402,417,411,403,353,364,346,353,359,363,358,366,363,349,364,368,339,356,357,360,375,349,401,406,419,406,412,408,414,407,404,408,397,389,397,417,404,410,406,403,411,400,392,398,406,740,698,713,742,697,718,685,726,719,723,733,595,604,621,627,655,615,633,639,631,630,615,604,598,723,696,686,679,723,657,711,748,672,717,715,681,695,702,700,708,708,713,559,579,577,594,574,599,590,579,567,585,577,562,588,574,580,577,588,599,370,354,369,360,387,369,352,322,379,365,358,373,369,696,744,724,721,718,719,715,727,739,645,679,723,719,662,662,670,659,666,642,648,660,627,660,643,649,415,395,414,427,448,402,446,400,427,413,401,425,438,417,417,422,392,390,404,416,396,406,420,587,573,558,570,562,555,577,549,537,567,569,556,568,564,565,561,556,574,471,463,453,455,455,457,464,483,476,462,451,443,446,461,452,451,451,455,461,451,444,444,461,436,445,462,465,446,441,445,443,455,584,600,607,582,604,580,582,579,602,589,505,498,516,512,505,512,491,517,503,508,520,507,509,504,485,685,658,689,697,677,694,699,678,685,659,691,673,685,690,618,599,610,619,611,600,589,593,617,621,620,589,606,580,587,600,378,358,378,381,393,397,367,384,401,404,394,364,382,564,593,564,562,605,592,585,600,573,575,556,606,572,598,584,576,569,604,465,462,460,450,455,457,463,444,443,467,454,552,562,541,569,587,548,551,553,556,405,390,393,419,402,414,404,397,384,397,379,403,398,380,413,394,402,377,407,401,435,445,442,466,467,449,431,445,444,451,440,445,412,417,415,427,419,416,424,424,417,406,413,417,414,612,578,597,585,597,581,599,669,675,662,677,681,673,671,575,588,593,589,599,590,603,604,585,611,613,597,612,410,416,403,409,414,404,408,384,414,429,395,401,402,407,407,395,408,401,410,443,427,425,447,426,425,429,452,428,428,434,428,442,420,434,432,441,429,437,452,451,432,447,430,423,438,429,437,445,439,390,401,388,408,386,388,403,391,393,388,399,389,400,384,390,397,697,698,700,697,690,701,698,693,717,717,709,675,731,729,695,547,584,626,559,573,586,590,557,574,574,547,580,597,390,406,394,398,424,409,364,408,467,488,482,483,645,672,631,641,637,646,643,649,660,656,623,647,668,626,653,638,444,414,468,443,443,461,442,448,442,448,321,325,320,316,326,315,332,333,313,338,328,321,298,350,327,340,319,310,321,346,331,344,343,581,589,659,591,614,641,617,604,624,608,624,629,641,627,620,613,623,613,567,600,636,640,625,615,626,648,621,617,646,626,459,455,457,400,434,432,434,446,466,432,449,610,591,582,616,615,614,607,595,609,591,593,607,604,624,615,596,608,580,592,603,585,612,614,568,603,597,596,581,606,593,584,599,605,585,622,591,603,602,624,598,601,600,575,621,580,576,607,586,602,582,588,596,580,575,595,561,600,440,452,403,424,425,419,437,420,401,397,427,436,403,421,440,440,427,429,434,417,417,407,438,442,422,410,409,420,428,421,413,418,436,424,416,387,390,397,392,387,395,383,373,391,377,384,653,656,627,649,678,650,660,640,633,653,671,677,645,681,675,703,672,688,654,687,686,676,692,703,671,680,617,606,629,622,643,629,620,615,627,622,632,446,434,432,438,428,416,448,453,426,445,421,427,419,452,437,443,451,452,441,449,461,449,440,427,433,451,382,384,394,398,388,384,384,398,391,382,399,390,379,393,383,376,384,372,386,748,749,789,763,745,717,785,725,619,610,629,585,592,623,590,605,610,752,741,751,770,762,752,729,754,768,762,607,593,619,579,589,597,618,614,598,596,617,606,588,607,602,691,675,694,680,687,696,674,680,689,673,559,554,532,540,560,545,540,564,521,526,583,548,549,541,352,337,353,339,336,333,357,352,364,355,346,343,353,339,338,355,354,324,355,337,366,387,368,359,362,360,352,364,364,343,367,353,388,374,361,365,381,359,358,386,384,388,381,365,370,374,387,388,374,383,381,386,370,370,369,369,380,357,370,372,373,384,369,374,377,368,375,356,333,329,313,322,338,316,325,331,327,316,323,317,327,329,334,368,393,367,379,374,389,385,392,383,357,364,384,365,448,419,428,420,434,437,425,630,578,602,608,604,600,600,626,588,619,597,597,605,639,658,649,636,634,640,635,630,619,651,622,631,636,626,632,627,628,526,570,546,547,566,529,549,528,552,559,552,558,534,537,572,569,574,676,659,657,681,682,662,664,653,668,653,596,614,615,626,601,608,604,617,624,603,386,369,377,376,365,366,362,374,401,383,394,402,408,388,402,397,397,402,401,416,408,399,399,405,411,408,391,405,395,386,385,388,393,408,393,717,691,700,712,688,678,722,740,700,733,695,754,735,719,716,700,701,724,707,705,718,693,714,715,718,715,627,603,611,591,601,587,573,621,609,614,614,602,590,570,600,650,600,596,636,659,637,604,629,629,585,645,588,598,657,641,592,616,643,648,641,658,660,668,661,651,601,615,588,591,592,571,585,591,596,593,590,580,590,587,594,590,597,596,576,583,595,446,467,456,444,444,444,445,463,426,442,452,439,448,586,598,575,560,589,575,573,581,603,583,569,572,580,583,563,670,658,673,671,677,683,668,653,677,651,682,677,666,671,679,674,683,667,684,675,676,674,655,669,676,670,668,565,555,558,559,552,562,530,538,542,565,555,564,577,537,545,558,546,565,563,575,560,547,550,570,556,544,624,603,602,594,588,630,568,629,599,593,611,628,625,598,601,619,599,634,629,641,598,605,608,621,587,609,612,623,605,617,615,623,653,649,640,639,652,645,652,658,647,643,652,649,651,651,648,548,523,565,538,547,548,534,543,541,540,527,541,546,624,634,623,625,619,628,615,643,636,634,639,639,639,620,620,653,684,674,619,656,618,624,640,629,640,635,642,650,646,543,552,554,553,550,568,560,554,576,564,559,550,556,552,575,434,452,443,428,433,419,436,457,430,429,454,434,446,434,422,576,579,603,575,583,580,617,584,595,590,660,661,650,662,660,680,625,659,655,675,669,633,654,658,528,516,536,557,553,523,547,517,543,532,545,545,521,558,476,527,516,384,388,383,389,405,375,398,381,378,388,384,373,382,390,697,675,670,664,688,684,685,656,682,658,701,692,687,691,555,551,584,553,574,583,560,557,550,387,370,374,362,354,370,372,378,377,392,376,368,369,395,383,430,438,404,403,398,405,408,396,401,417,394,390,401,401,399,405,385,388,387,388,645,625,656,635,623,655,634,618,632,685,625,637,634,644,632,639,641,622,634,631,633,638,639,625,625,623,630,626,533,541,541,572,562,543,535,574,554,550,552,563,567,554,448,421,437,446,452,470,448,461,456,467,451,451,683,686,674,684,662,663,664,657,656,674,659,674,423,448,453,423,447,432,451,441,427,409,416,450,665,630,659,643,651,665,660,681,677,654,670,623,661,689,692,694,693,709,692,688,698,609,560,590,599,558,602,603,552,574,567,595,580,578,579,382,342,372,352,366,379,353,361,370,340,368,345,355,376,354,340,374,709,741,701,706,713,712,692,750,741,630,597,617,598,642,631,617,599,610,625,600,605,620,626,623,627,614,618,375,390,380,378,376,764,804,787,748,730,753,750,709,754,783,744,769,744,762,759,747,654,661,639,659,637,650,663,655,663,659,653,638,657,655,663,651,648,738,723,734,713,727,749,739,739,731,755,625,628,625,630,629,625,631,394,408,425,457,439,456,418,436,417,413,545,565,568,560,558,560,536,568,555,543,562,561,562,558,563,537,556,454,445,435,441,439,444,436,451,424,435,454,442,436,545,570,578,542,540,569,547,536,560,560,577,559,502,508,492,498,522,495,503,500,655,637,648,651,629,657,631,652,683,684,699,684,669,678,647,681,668,671,676,664,660,667,598,593,568,568,599,580,584,413,386,377,398,389,398,401,405,388,391,378,396,398,394,723,708,727,728,698,709,612,657,664,649,643,628,636,652,654,673,658,658,624,644,657,656,549,567,586,717,719,712,740,704,687,731,713,717,723,740,711,740,639,650,649,639,652,652,629,645,658,645,645,646,646,644,619,597,613,602,605,618,615,597,607,602,618,414,416,430,414,411,423,423,434,421,422,450,382,377,364,365,378,371,368,359,370,387,370,369,372,395,395,402,403,370,397,385,409,404,402,400,381,378,370,368,370,371,377,396,390,384,388,384,376,382,377,375,379,381,384,789,731,769,773,768,795,768,746,692,741,773,817,792,778,724,772,677,680,661,706,654,675,668,663,684,696,664,658,660,657,669,650,485,508,497,515,495,524,517,516,489,492,524,519,500,514,504,419,409,423,411,435,418,389,422,409,413,409,436,389,393,395,405,387,412,408,409,403,398,421,401,409,397,404,399,417,402,406,389,561,585,560,582,574,576,555,580,573,569,570,573,574,574,573,585,578,559,591,580,561,543,527,534,529,552,549,556,524,548,557,559,534,548,572,537,411,409,399,730,740,752,721,746,742,709,746,764,775,776,736,624,633,635,640,661,638,659,627,640,642,669,634,626,627,651,644,667,622,637,640,646,369,398,406,403,410,400,391,391,428,371,362,378,374,361,375,672,687,652,697,696,675,677,684,673,697,666,660,692,667,650,653,644,642,652,666,662,665,681,679,682,699,680,677,681,677,668,689,682,675,545,531,544,547,562,544,529,542,559,547,521,545,530,710,713,716,709,695,715,710,687,678,697,696,701,699,623,586,618,600,597,614,590,797,741,764,768,754,754,768,764,632,653,622,639,639,644,654,627,624,611,650,629,638,602,649,615,621,633,650,632,632,601,621,609,630,601,637,628,642,634,609,634,652,633,628,623,640,630,637,633,633,625,642,634,631,556,573,586,581,581,566,542,582,566,573,578,573,568,543,563,661,658,684,701,699,684,676,702,661,703,648,669,656,658,669,682,662,655,656,680,664,674,662,673,660,668,662,689,686,706,696,713,689,700,709,616,624,617,601,615,613,617,604,616,614,618,622,620,617,621,612,619,632,617,620,528,499,535,527,403,393,403,385,404,422,378,380,390,402,379,402,408,397,395,354,332,334,326,335,359,397,390,401,403,393,396,402,399,398,393,389,398,410,397,399,436,452,445,423,423,445,430,435,442,438,436,441,639,655,644,661,679,657,657,655,644,663,700,701,689,689,699,704,704,683,692,696,685,700,682,697,693,676,650,619,621,622,617,638,605,625,630,618,605,617,606,625,609,635,619,625,607,609,665,656,658,660,657,645,647,654,655,656,611,622,632,612,627,633,623,626,639,633,636,624,605,635,631,629,614,620,635,553,549,550,547,530,545,545,537,532,546,541,543,527,534,531,534,544,394,392,419,364,373,388,382,414,383,392,386,393,367,392,377,410,396,701,691,682,695,715,702,721,468,454,449,465,461,447,467,455,466,457,474,452,455,468,465,527,552,533,550,551,517,558,544,533,533,546,530,384,410,392,425,379,393,428,383,414,414,417,410,381,385,374,379,367,359,351,353,371,349,352,340,351,376,367,362,348,374,351,711,708,753,725,750,737,743,733,716,718,730,737,696,685,697,696,709,676,703,715,708,701,705,694,703,696,704,707,609,614,634,601,631,607,622,634,642,641,611,516,508,517,492,526,489,524,503,508,512,495,530,525,524,521,528,500,648,634,624,617,633,612,624,630,640,613,631,631,613,636,625,645,641,630,614,635,636,593,566,591,581,561,578,586,578,572,671,705,684,726,723,713,715,704,658,683,665,679,642,659,636,647,676,667,655,653,657,661,667,649,560,533,578,555,569,557,564,560,576,566,541,561,564,565,557,567,537,397,391,390,405,397,401,401,414,412,402,397,401,403,397,389,404,402,389,398,557,551,532,541,538,551,527,551,544,565,567,555,535,543,471,451,457,445,384,391,380,392,367,394,384,378,389,378,394,382,397,397,393,387,396,383,396,378,386,376,383,384,386,375,577,617,581,597,570,585,600,585,607,628,418,437,461,460,453,446,451,442,444,455,444,457,469,448,448,455,451,462,370,361,359,372,361,367,370,378,362,359,370,378,366,378,385,371,380,367,367,377,380,373,372,372,392,418,409,422,418,423,424,410,405,405,423,444,455,464,426,464,628,631,637,635,632,610,624,624,623,616,637,644,620,618,627,631,656,657,639,645,642,646,658,668,642,663,675,639,628,667,656,627,647,649,631,634,644,659,624,643,632,642,643,621,638,647,636,634,642,645,636,641,618,611,587,594,589,572,593,601,570,589,590,595,581,597,593,572,414,405,406,433,428,419,417,385,430,408,410,409,367,378,372,358,369,365,382,369,358,363,365,365,370,370,378,401,391,397,400,384,404,419,413,427,410,426,429,393,410,417,408,431,425,411,419,415,413,427,425,416,656,668,653,639,683,644,665,667,678,666,661,665,675,663,689,665,665,650,662,583,576,557,558,532,568,574,571,549,543,549,561,580,558,533,390,368,363,365,385,366,355,375,370,352,375,370,380,382,381,365,399,382,394,361,375,370,370,369,388,361,387,368,690,702,681,695,682,685,690,691,696,687,685,441,388,461,461,468,425,447,383,415,433,445,388,449,425,431,444,431,463,451,453,602,611,600,613,587,588,605,599,608,613,594,604,618,588,585,604,600,608,610,636,614,617,622,618,624,595,598,616,582,566,574,546,563,560,578,558,574,577,554,578,545,553,583,641,671,671,674,664,637,649,663,656,677,661,655,657,602,604,608,612,620,608,605,617,424,416,408,416,406,441,427,438,435,418,431,424,425,431,434,590,605,583,573,570,605,595,586,597,572,616,588,612,577,574,500,505,494,491,511,495,498,497,648,672,633,664,643,626,652,653,629,662,650,734,721,726,738,584,585,569,591,597,552,607,589,597,588,616,593,597,589,718,723,723,723,733,723,725,729,719,704,709,705,726,716,715,602,606,612,605,597,600,613,600,586,598,589,605,610,611,613,580,609,614,600,590,584,595,645,668,659,657,660,671,650,668,664,684,659,674,669,658,674,669,604,613,587,593,590,601,601,589,605,601,607,609,601,609,423,415,407,402,399,426,425,405,355,351,362,357,368,355,364,351,363,355,354,351,354,353,344,690,662,666,646,682,674,598,607,607,589,603,576,589,594,607,618,603,635,591,588,633,657,643,621,637,654,631,636,638,642,640,655,652,636,661,643,647,742,773,747,753,752,752,768,752,764,752,741,647,662,633,661,646,645,633,636,640,641,651,658,655,650,657,416,428,398,383,371,381,417,382,417,409,384,377,370,372,389,391,398,400,398,659,653,667,632,644,665,692,620,647,643,651,645,678,675,678,659,665,670,702,674,658,605,613,619,622,609,599,593,597,620,585,595,532,530,530,534,513,518,509,528,512,495,474,488,474,496,472,500,485,484,478,479,468,640,661,662,644,665,645,665,669,659,656,661,640,629,665,655,658,659,668,657,665,658,656,653,633,669,657,672,651,662,664,665,670,651,635,508,526,524,545,537,522,533,581,504,495,513,509,535,563,543,531,526,363,350,366,351,353,363,360,366,364,364,378,374,366,369,360,356,376,359,372,382,359,372,363,377,369,402,385,377,367,365,610,602,609,632,604,613,602,617,593,579,607,617,609,411,432,445,407,422,428,415,441,413,399,410,405,420,412,432,433,429,377,382,416,364,348,358,348,363,349,354,369,345,351,349,379,345,348,358,347,534,545,564,547,562,537,553,554,575,534,584,557,555,562,577,550,590,625,636,604,621,614,621,615,617,622,623,627,638,622,605,598,646,609,622,644,592,584,611,581,608,608,607,617,606,605,616,592,597,620,619,397,399,358,409,359,404,394,368,386,405,366,349,361,361,338,354,351,333,359,356,345,355,341,345,339,349,354,358,585,613,619,636,611,634,636,625,605,597,618,618,623,643,623,607,541,520,540,538,548,541,534,548,549,528,545,533,541,546,542,547,513,520,516,511,503,412,403,407,407,402,412,402,368,376,398,389,385,387,385,386,382,387,386,380,377,378,365,367,377,371,372,359,373,382,373,370,380,375,348,358,356,355,350,347,368,367,364,351,343,366,369,357,363,353,358,360,358,355,353,367,367,425,427,441,429,425,434,424,422,419,427,426,418,422,416,431,431,425,474,451,470,458,476,464,470,463,475,457,466,857,836,809,894,800,883,816,861,804,874,873,666,711,668,675,681,714,682,647,711,684,659,710,687,686,385,393,417,397,408,401,404,406,385,409,354,416,409,424,371,340,341,353,334,332,330,342,323,327,337,369,357,337,343,360,358,358,331,446,436,420,441,449,443,421,417,436,447,446,431,442,446,425,433,429,452,419,440,428,431,696,713,713,736,710,703,715,679,724,720,720,729,697,598,576,590,563,579,613,570,550,568,563,578,378,388,389,378,398,395,400,402,390,382,373,387,399,372,691,718,715,677,707,708,711,703,728,673,720,730,710,710,661,635,653,637,656,638,626,637,416,435,421,424,412,417,407,444,414,412,352,353,352,344,354,358,361,361,341,339,352,359,354,357,356,357,354,350,351,356,351,344,350,381,382,376,385,391,396,398,390,398,381,381,384,392,393,387,749,711,716,743,746,747,740,750,641,647,622,622,453,430,433,412,457,414,440,430,427,415,418,446,441,430,346,357,379,362,371,378,378,369,394,396,369,394,372,389,551,566,596,557,604,579,577,584,573,579,603,576,563,582,437,445,428,437,442,438,435,458,423,429,428,448,440,431,435,440,436,418,438,698,700,721,664,722,692,725,710,722,687,688,669,622,622,622,631,623,641,618,631,630,627,629,514,508,514,487,508,501,503,490,492,407,450,427,440,441,439,419,404,418,421,440,429,403,436,429,418,409,394,394,397,412,394,562,570,592,566,561,597,578,571,590,580,587,576,684,674,659,691,652,674,701,614,606,606,626,602,594,620,620,624,618,611,622,616,601,625,604,624,598,523,522,538,524,526,533,535,509,542,532,511,514,528,467,488,459,497,494,482,485,476,494,510,479,473,496,651,673,648,628,645,640,641,632,615,615,641,644,647,620,646,625,653,648,670,644,659,661,654,658,662,634,669,663,651,649,577,576,576,563,566,567,587,559,544,567,569,572,557,568,554,556,563,547,548,541,534,556,556,558,542,566,561,488,485,499,507,491,509,503,507,486,497,497,495,489,495,477,488,496,495,386,388,406,394,360,372,406,389,389,408,393,360,362,361,371,361,363,363,362,365,363,360,357,369,352,354,363,365,352,347,364,554,556,546,595,516,557,570,553,584,566,556,568,560,570,578,574,465,451,456,497,461,459,455,468,464,484,453,473,466,458,469,473,458,396,405,405,401,396,407,392,394,404,389,393,338,338,347,339,335,353,352,367,336,345,340,371,354,346,345,390,397,372,393,375,378,391,373,389,383,395,383,704,677,685,683,657,704,689,685,675,698,695,512,483,486,498,472,488,462,520,522,609,603,613,606,608,619,612,401,451,436,399,413,422,417,414,412,434,420,425,405,636,699,702,693,683,669,680,694,676,662,700,684,701,692,678,653,642,646,619,649,626,650,644,652,629,634,652,551,569,543,558,565,554,558,543,679,692,691,684,706,703,714,684,691,704,623,640,612,619,645,625,634,625,623,615,649,645,633,645,549,568,554,568,545,548,561,577,543,524,569,558,649,651,655,636,651,654,670,643,659,655,664,655,662,657,655,649,650,653,662,653,653,633,672,666,661,675,675,662,670,662,658,661,649,667,652,560,561,553,545,544,548,562,560,552,562,581,588,554,566,563,688,684,693,681,688,707,679,680,689,690,693,684,684,577,580,585,612,588,589,627,709,657,672,678,651,678,713,680,674,666,645,695,675,713,731,738,720,698,725,719,701,723,726,600,576,600,664,677,686,679,653,659,681,680,678,654,666,663,670,668,671,668,646,661,577,589,573,577,573,597,592,595,586,603,569,598,585,599,605,385,394,410,403,397,396,393,428,416,415,430,425,441,404,423,425,442,420,651,660,653,662,652,652,643,642,635,640,639,647,647,663,638,672,675,674,681,685,670,691,674,676,689,670,685,681,696,690,587,607,578,585,592,575,589,582,590,392,424,422,404,416,394,409,449,438,440,398,415,430,420,410,435,416,609,580,594,586,587,593,535,593,562,586,559,585,577,592,551,576,591,415,414,409,417,421,412,417,413,395,685,674,679,683,672,675,677,667,673,677,685,680,667,693,673,682,687,678,690,565,569,563,554,571,567,574,572,580,544,570,582,591,569,584,571,552,572,584,717,682,710,708,707,685,688,710,701,712,717,700,703,687,724,604,595,615,597,606,607,589,618,608,602,610,600,372,371,387,387,392,401,437,379,385,337,337,340,326,340,325,346,334,329,338,347,327,365,345,355,377,355,365,365,354,354,357,363,375,344,373,370,373,655,631,652,648,641,647,652,629,643,667,678,646,479,492,497,479,457,493,514,498,490,459,493,473,434,540,539,553,552,543,552,538,543,536,542,532,526,535,540,531,547,486,447,440,456,465,464,445,455,452,450,469,457,442,593,615,602,631,580,615,592,573,574,548,569,551,556,537,564,527,555,562,549,385,407,389,389,393,403,394,383,415,424,409,423,418,425,410,417,414,405,406,404,401,404,415,406,737,695,726,718,702,727,717,750,706,608,592,608,608,584,634,607,619,597,614,620,616,611,397,394,410,401,401,428,419,444,445,435,390,546,512,528,536,504,526,516,516,549,501,521,519,532,525,526,525,646,662,651,646,646,632,648,639,632,670,660,663,601,580,586,605,592,584,428,444,424,439,435,411,403,433,663,668,676,655,641,645,687,660,642,670,673,652,645,653,646,651,643,617,630,631,643,644,623,649,642,629,626,619,648,635,647,659,655,651,677,647,639,649,655,654,583,589,606,585,598,592,590,587,602,562,591,596,594,579,577,588,586,600,592,566,585,586,369,375,380,382,379,388,392,368,396,332,346,339,345,337,326,354,343,336,350,322,408,416,430,409,409,410,420,427,411,433,410,416,410,417,416,410,412,416,424,406,420,393,404,418,439,417,416,412,409,427,414,401,421,421,418,430,415,730,724,723,733,723,750,744,710,755,708,733,752,741,596,581,606,616,617,601,588,606,602,624,568,648,589,655,647,657,648,606,648,603,645,653,666,645,663,664,650,677,665,643,571,574,596,570,596,565,584,589,556,579,560,592,572,576,576,572,570,575,661,668,642,676,675,675,660,676,670,673,663,677,664,665,671,683,685,650,677,592,588,594,598,592,564,592,601,587,597,616,597,582,600,533,556,545,538,513,541,555,565,557,540,552,567,641,647,632,637,629,636,626,622,635,612,638,632,630,626,628,645,660,634,661,655,655,645,655,640,661,657,639,645,640,656,661,654,641,638,645,562,558,571,579,561,587,565,522,573,553,561,572,582,553,564,566,398,415,397,395,396,427,369,369,376,364,366,364,374,377,369,373,366,355,783,688,737,740,740,727,728,732,733,766,718,743,762,779,746,648,634,615,655,634,667,665,645,652,644,635,651,605,611,609,590,612,618,617,618,607,610,606,625,607,478,449,451,455,440,466,437,437,449,435,431,429,467,436,440,436,538,561,526,551,521,533,666,632,641,669,682,662,644,631,669,670,664,642,641,643,643,661,609,610,618,606,639,593,611,604,592,618,599,615,622,357,363,363,397,370,401,387,422,385,397,338,397,385,416,361,361,350,359,362,350,359,344,362,359,376,366,369,357,353,654,673,677,659,692,682,701,698,702,637,672,666,682,672,646,680,700,691,673,685,677,696,679,660,677,670,679,678,669,660,686,575,600,594,583,575,606,559,580,586,581,606,581,605,575,587,580,585,591,392,419,410,385,410,422,394,406,403,419,397,402,357,384,370,361,366,367,370,377,367,372,357,376,364,397,411,388,403,382,402,409,400,402,379,665,644,689,648,646,640,677,653,652,651,662,643,643,651,570,585,547,555,548,561,552,582,564,551,633,645,643,631,645,657,648,593,599,603,605,614,610,602,594,620,598,599,594,610,605,619,619,614,616,623,625,621,612,610,630,605,601,619,627,628,609,627,621,620,620,438,443,451,423,425,412,435,415,451,459,407,412,435,600,624,563,609,593,610,581,601,584,592,586,403,409,408,401,401,408,414,406,399,414,392,627,650,680,662,651,648,608,643,636,622,647,638,607,628,706,687,684,675,699,691,679,683,691,684,679,691,579,570,564,587,571,530,540,571,587,601,614,640,674,628,650,615,657,638,624,628,654,626,660,662,684,645,647,615,630,628,629,628,637,626,635,633,636,624,617,618,636,621,521,512,527,519,507,503,524,515,511,502,496,511,527,518,549,511,506,515,513,379,387,389,381,394,390,376,381,392,367,391,727,712,758,748,722,734,694,733,726,601,602,601,584,613,603,596,612,606,596,585,596,595,599,583,617,627,601,630,609,638,608,620,635,632,607,621,639,634,629,587,600,588,600,602,610,598,591,606,597,606,609,608,607,594,579,605,600,600,596,608,611,608,610,597,608,604,606,614,607,610,604,602,611,618,616,614,537,548,556,531,564,553,542,551,562,555,543,554,559,675,661,683,680,671,652,669,678,671,682,674,592,600,589,590,603,594,612,609,611,589,608,600,603,602,610,607,360,381,368,394,400,402,598,609,583,604,615,601,608,582,609,590,593,582,604,625,583,597,595,440,439,440,440,431,442,427,432,423,425,430,761,789,759,757,756,770,791,765,780,741,775,750,747,585,587,584,584,580,594,627,577,588,600,577,616,580,599,594,591,626,598,620,572,582,570,691,665,678,678,679,675,675,679,711,693,695,673,686,679,680,687,689,695,682,703,689,679,677,715,695,703,598,583,576,593,610,586,601,597,586,677,664,629,644,675,639,665,671,628,650,669,652,656,640,669,668,679,657,664,687,675,668,677,670,675,667,663,666,584,546,569,580,580,572,573,568,569,560,552,559,564,570,416,404,383,394,399,403,394,401,397,389,387,379,394,375,690,720,691,664,688,698,709,687,675,704,671,701,703,661,660,694,701,684,692,675,672,675,653,690,689,661,677,675,699,651,685,557,568,561,563,588,575,561,552,576,566,539,657,669,679,658,668,666,665,671,675,682,674,655,657,651,560,541,536,555,520,533,546,555,553,539,551,548,403,400,378,429,410,401,650,632,650,655,615,647,666,637,652,653,672,665,648,658,534,557,533,529,547,552,540,529,481,483,489,450,494,464,486,473,453,456,472,472,499,483,489,476,473,483,609,621,627,611,610,612,614,631,612,611,596,604,613,625,596,621,615,613,615,607,603,603,612,615,611,617,614,635,619,618,619,612,609,610,577,590,578,568,581,579,568,593,593,575,565,560,570,571,581,590,570,592,431,424,432,412,444,408,426,426,403,443,417,430,409,424,419,537,553,529,547,537,551,548,555,563,539,548,528,562,540,551,556,520,526,526,523,526,529,396,375,394,372,404,399,382,391,416,372,368,411,683,695,679,686,709,687,686,680,708,697,678,687,683,686,675,675,691,675,685,697,690,683,679,695,611,611,625,653,626,628,631,609,640,622,625,622,635,620,624,627,637,625,620,620,604,599,587,596,581,606,594,600,589,613,592,601,598,528,527,536,527,523,512,515,519,510,517,515,518,504,460,485,476,502,475,477,696,700,684,692,693,735,709,712,696,696,698,705,689,679,677,573,577,582,592,553,563,566,586,572,563,595,572,566,570,580,572,603,580,568,598,569,562,619,668,648,633,642,648,645,646,624,626,630,640,632,630,635,608,608,643,648,658,647,648,637,648,638,654,657,644,553,570,564,571,561,558,556,549,537,547,578,562,579,576,569,568,584,588,595,584,582,590,587,571,591,600,586,584,585,583,576,570,588,436,430,461,461,451,427,424,433,447,414,464,438,472,464,557,585,567,584,590,583,580,568,569,557,572,564,563,560,566,568,567,575,541,562,675,678,674,663,672,652,689,666,669,558,556,577,570,582,592,581,408,398,411,428,414,407,426,428,392,414,418,407,410,410,405,542,545,538,536,557,540,531,553,551,558,560,527,524,545,535,647,631,628,598,623,638,635,629,612,625,617,620,646,618,623,631,624,630,622,608,625,625,626,633,615,637,632,613,618,622,633,666,649,665,650,670,671,675,659,557,567,571,568,567,543,564,563,555,572,561,633,660,650,636,660,658,655,650,655,649,590,593,599,595,573,593,587,584,593,599,593,592,555,582,403,405,400,392,403,401,382,418,392,410,397,400,391,398,397,391,657,651,653,651,656,705,672,675,636,681,665,686,649,676,669,679,693,680,686,682,685,656,676,682,670,666,687,593,598,581,612,615,587,571,589,597,604,613,595,579,601,600,613,610,602,410,421,402,389,372,391,402,412,415,373,369,394,407,383,401,383,412,339,337,355,350,351,346,338,350,338,343,339,348,355,359,352,354,346,346,344,346,759,750,704,756,755,787,753,736,783,741,760,748,760,593,632,616,615,602,632,624,600,618,598,614,619,603,616,472,452,431,473,473,474,473,487,486,467,475,432,447,449,435,438,446,458,446,442,451,462,445,427,776,730,747,720,732,739,738,713,771,623,615,644,633,635,643,621,627,587,581,625,602,615,594,622,617,578,586,600,650,618,621,626,640,639,613,617,617,616,625,632,641,613,624,641,614,631,625,573,589,588,587,576,576,594,596,593,576,484,460,465,455,476,454,482,479,469,460,465,462,470,462,607,595,614,613,608,544,545,535,535,529,520,546,531,521,535,532,531,538,551,527,406,395,406,407,401,405,406,417,403,396,406,742,780,744,723,772,762,718,732,777,730,726,734,739,746,587,592,595,604,611,605,607,599,601,595,626,578,417,420,425,409,411,396,414,416,764,717,797,729,767,750,760,750,754,774,764,658,646,649,638,660,675,651,627,657,634,650,683,689,684,681,686,686,690,680,682,700,685,668,689,678,674,664,682,682,683,665,692,693,688,686,687,593,568,598,615,610,610,593,604,626,607,592,621,386,384,386,404,391,399,363,389,399,396,400,384,373,384,369,369,373,362,373,387,389,756,781,729,794,752,758,741,759,716,750,761,785,758,729,765,744,704,793,613,608,623,623,627,746,750,764,772,777,759,754,747,748,759,758,767,749,749,772,752,634,631,643,643,636,619,619,638,627,637,638,618,645,644,694,679,668,681,667,664,662,681,680,668,686,574,594,601,586,603,587,572,565,404,383,397,395,392,414,394,403,399,408,668,607,680,682,661,669,680,687,672,666,676,687,691,676,685,672,652,702,694,667,681,691,631,610,607,613,593,620,618,636,614,640,379,386,392,382,384,393,402,385,389,389,406,376,377,391,360,347,354,381,366,359,346,357,362,360,379,352,347,357,352,357,373,709,716,713,706,670,669,701,664,702,638,643,640,634,647,645,636,642,651,659,628,649,633,642,643,647,630,628,622,641,650,633,649,660,644,635,630,648,630,630,640,645,624,639,652,659,649,656,664,664,668,674,658,662,669,656,534,567,549,544,554,550,555,542,581,568,549,572,634,642,646,644,646,657,664,634,626,631,654,623,654,641,553,574,559,567,558,548,574,547,567,574,636,624,612,642,652,660,634,622,620,593,610,617,638,622,645,676,639,632,652,640,633,660,662,672,636,651,664,664,663,666,656,665,577,563,563,586,597,567,573,573,561,554,560,573,577,583,386,389,382,359,367,412,357,389,369,358,389,394,380,326,358,352,340,342,346,343,348,350,341,351,342,346,346,351,765,777,785,778,741,587,544,581,597,623,596,582,542,589,615,556,571,535,571,577,402,409,419,410,392,396,393,421,402,389,395,397,592,603,591,612,614,632,606,623,600,583,620,614,593,616,591,586,501,530,517,513,512,515,532,517,517,511,520,523,512,509,518,526,506,381,372,386,408,407,379,404,390,397,398,377,394,384,396,383,378,669,661,657,649,660,660,662,664,668,575,589,589,587,625,627,604,602,615,613,606,603,624,600,597,399,385,385,383,395,393,394,395,397,388,384,382,412,394,388,394,386,385,378,395,401,402,394,385,398,385,602,598,598,602,602,602,578,583,583,613,597,614,606,607,614,590,679,695,667,694,705,683,685,685,686,683,675,693,548,542,546,520,545,552,549,574,531,545,506,561,344,336,355,342,331,354,344,348,340,341,348,344,355,359,351,368,372,342,361,357,362,353,360,365,361,374,668,684,658,682,653,667,667,667,683,653,664,635,644,649,661,641,639,644,664,641,654,624,633,633,658,647,644,657,665,655,670,656,653,652,661,645,665,666,670,659,658,592,570,553,573,579,520,554,579,575,543,558,558,542,569,503,557,551,559,559,564,665,660,645,657,665,658,640,647,652,660,655,657,595,582,599,572,572,591,592,576,649,663,674,661,681,686,681,674,670,672,676,671,673,675,570,562,573,551,584,551,567,569,419,423,427,387,420,412,393,401,396,405,414,413,387,423,439,423,402,403,550,535,540,549,547,551,555,534,540,631,654,628,631,626,614,639,650,644,638,627,618,626,628,654,631,632,620,622,628,617,626,625,632,626,626,626,630,634,635,627,630,627,624,627,636,635,649,641,644,653,630,654,639,642,634,598,589,584,575,592,582,584,557,574,587,592,575,585,568,574,443,490,487,479,465,480,479,485,476,471,445,683,680,674,670,662,674,666,681,682,678,675,660,679,553,572,557,562,569,554,570,554,589,566,582,564,583,573,579,572,591,573,571,572,576,392,402,392,408,382,383,391,391,399,404,732,692,758,718,719,718,727,740,727,715,729,711,750,694,689,730,653,632,626,634,648,624,633,634,632,632,637,628,619,632,641,511,518,506,498,492,529,511,498,526,515,478,490,510,515,489,489,485,478,489,468,483,503,478,496,478,471,479,493,470,484,482,628,620,601,623,591,610,623,619,629,625,631,619,618,617,616,623,625,610,615,621,595,684,663,675,674,677,678,683,672,684,680,683,646,661,689,662,578,588,397,366,380,384,385,402,389,396,397,386,396,384,409,391,381,381,692,684,654,672,677,668,695,693,671,689,673,607,572,583,573,581,570,565,570,580,556,581,575,580,566,654,680,691,582,588,587,558,575,564,588,578,589,589,576,584,695,703,702,695,702,698,703,698,680,688,637,616,620,624,629,631,631,637,517,527,514,517,514,520,508,527,522,533,392,411,393,388,403,402,385,405,399,388,395,378,387,376,380,410,381,394,379,396,633,662,610,658,634,640,633,629,627,625,620,613,618,601,609,629,609,639,623,613,620,668,661,679,664,658,678,669,674,666,653,663,657,674,681,667,650,654,600,602,599,616,604,568,593,607,611,575,596,621,617,605,578,592,600,396,371,373,400,374,399,418,402,397,390,387,400,375,359,402,654,649,673,644,677,665,672,654,701,684,670,660,667,668,680,640,691,697,669,686,698,701,699,699,691,711,691,704,701,593,591,599,577,605,599,584,628,624,616,588,586,599,739,740,749,748,751,746,754,750,741,715,774,732,731,651,646,643,628,643,638,633,660,645,644,643,638,579,589,554,568,562,573,563,537,568,569,734,697,712,692,713,608,617,631,592,618,625,597,603,627,626,597,599,602,608,394,386,383,377,370,377,376,401,372,384,392,390,381,389,370,381,379,375,385,378,397,365,396,391,621,638,612,610,602,604,612,622,598,618,613,599,629,686,672,709,683,682,666,679,668,681,678,660,603,604,620,614,610,608,609,605,597,597,607,614,601,605,609,438,425,411,418,435,420,448,417,409,400,440,572,540,557,552,552,539,526,552,525,554,542,558,667,681,684,662,696,705,702,687,620,616,602,619,632,619,631,606,608,600,631,630,625,607,614,628,624,626,617,818,826,837,849,842,819,810,841,835,850,816,824,830,641,670,656,683,680,668,684,668,661,655,654,683,671,642,652,690,657,666,377,392,404,394,394,404,413,397,398,381,715,715,727,722,718,750,709,706,762,733,691,726,613,600,600,583,635,598,595,615,602,602,591,812,781,808,786,779,655,640,657,644,661,621,641,636,641,633,647,660,670,646,460,446,428,453,451,452,432,467,472,437,428,441,452,358,397,359,376,371,371,367,372,368,366,381,364,380,667,668,660,674,665,676,643,632,671,666,628,677,670,648,658,666,659,651,594,603,611,609,621,618,605,621,592,582,592,608,582,609,665,671,655,661,657,667,659,670,663,651,664,558,537,551,547,541,547,563,534,540,541,551,692,695,697,712,709,704,726,714,698,701,700,621,616,606,606,600,606,578,627,622,461,465,475,477,458,498,500,463,464,461,477,489,480,685,692,684,679,689,680,666,671,614,587,643,586,605,627,604,590,625,607,584,599,608,606,343,365,335,384,376,349,360,355,371,362,365,355,376,366,389,390,379,375,391,405,395,398,372,373,379,395,388,379,374,386,390,758,751,757,779,784,780,776,740,787,773,767,788,826,780,671,653,675,661,667,674,666,657,658,685,641,672,470,476,460,481,486,486,472,486,467,462,421,400,403,400,391,414,403,421,432,394,393,419,409,411,552,552,584,553,580,536,567,557,562,565,585,488,491,497,479,490,503,499,489,493,637,643,623,609,631,630,677,675,680,669,684,678,686,677,691,664,660,692,685,676,694,694,707,716,709,705,702,697,699,703,633,589,608,594,618,615,620,604,617,626,613,590,620,602,633,643,592,618,519,516,512,515,508,529,514,520,528,507,511,506,512,512,392,427,423,431,425,418,427,423,399,404,419,428,428,392,408,407,424,415,409,431,363,359,366,376,360,370,370,368,365,377,379,364,369,387,361,358,390,404,380,386,396,396,393,384,404,383,392,385,376,391,398,372,393,386,385,387,387,392,389,388,398,394,388,384,383,395,391,398,380,411,400,392,406,396,408,402,402,394,395,391,392,397,386,390,403,405,405,580,604,603,594,589,596,574,410,412,425,412,446,426,438,442,440,411,434,435,441,400,433,366,348,354,365,353,357,349,369,327,356,334,331,369,349,354,350,361,325,317,315,321,323,320,327,326,321,300,307,321,331,302,308,297,396,381,374,381,375,373,368,398,383,380,387,380,374,409,400,391,477,452,465,471,460,454,458,468,456,463,688,663,661,701,683,688,685,696,713,654,681,680,663,672,703,561,560,585,586,571,574,579,586,588,565,567,577,573,570,574,397,434,407,432,431,432,417,449,410,430,425,422,518,509,533,524,526,527,534,519,548,504,505,518,528,426,425,423,425,437,425,424,423,416,439,427,427,448,439,409,425,428,392,394,387,376,390,389,397,389,391,388,380,405,402,400,381,386,400,398,755,754,757,776,761,723,764,780,788,766,800,786,630,650,617,602,647,625,627,624,612,429,440,447,441,429,450,456,416,435,457,442,431,441,429,418,441,430,402,603,594,601,571,581,607,579,603,578,572,588,602,597,610,693,720,690,713,700,703,690,707,694,695,713,696,714,709,713,696,615,600,597,580,591,589,604,618,594,585,605,606,612,590,602,580,397,387,403,402,409,363,381,413,375,379,383,381,385,408,411,407,414,411,419,408,401,414,424,407,404,409,420,409,400,407,417,407,410,404,411,413,423,407,408,406,405,403,402,410,404,409,406,405,401,409,410,410,405,412,400,406,413,425,404,405,407,431,424,395,410,398,416,415,417,410,411,408,412,414,406,400,407,410,489,471,476,494,467,473,458,470,470,447,465,464,464,507,467,487,449,468,475,467,453,470,479,476,457,470,466,456,466,860,858,811,878,811,809,777,924,803,823,877,823,782,636,646,627,654,641,677,655,667,668,682,656,647,636,685,641,645,663,666,636,791,761,811,770,779,773,807,770,781,783,592,607,618,624,601,596,598,596,588,586,593,765,778,774,794,798,821,750,789,792,797,756,795,790,776,785,775,776,786,777,775,764,802,791,672,666,654,680,672,688,662,663,433,434,426,431,441,411,430,406,426,447,441,416,454,387,377,389,381,372,375,377,613,640,641,622,663,658,646,624,622,637,615,652,637,660,660,638,651,674,647,663,632,646,656,662,662,675,597,605,603,604,613,597,595,610,593,574,574,603,611,596,607,596,620,587,603,588,601,466,475,468,486,507,495,485,470,483,412,404,404,408,408,400,405,411,408,411,386,386,760,718,735,724,741,728,705,733,740,702,724,738,717,730,739,671,651,647,618,616,598,631,659,619,625,644,458,439,450,448,478,457,444,469,462,453,435,465,444,484,499,530,506,506,512,493,505,501,521,520,498,432,432,448,416,416,430,415,422,435,433,426,429,438,672,667,659,651,668,676,667,637,658,471,442,463,467,471,465,474,496,462,470,464,475,484,485,490,484,449,473,631,623,640,655,645,621,634,650,645,672,650,653,649,564,585,580,571,588,576,577,579,582,573,589,433,443,409,424,410,427,423,406,414,422,426,389,391,388,390,372,394,398,372,397,388,383,393,392,455,436,470,459,445,454,448,452,443,454,420,404,408,405,431,421,419,403,405,412,403,407,409,409,394,562,578,571,594,599,602,581,565,425,429,409,432,406,423,407,422,433,410,411,424,407,411,396,423,387,389,327,327,343,343,323,335,334,343,337,337,333,341,342,394,380,372,370,393,383,378,377,386,374,383,385,399,395,392,377,391,380,377,377,378,402,417,404,403,414,391,407,405,418,420,411,417,432,424,413,420,427,433,417,437,431,351,386,373,353,351,361,357,355,358,351,366,358,353,352,293,318,316,302,320,322,316,306,322,323,307,314,321,358,351,354,346,357,346,357,393,397,443,404,409,432,381,433,451,423,416,411,403,392,387,403,389,406,388,361,374,361,372,375,377,350,365,377,378,378,372,371,364,370,414,385,836,819,881,876,838,900,871,842,848,830,793,829,899,864,839,773,734,764,732,737,787,741,725,766,730,738,758,445,394,405,402,431,386,401,401,405,391,403,402,427,426,397,330,357,357,346,340,373,362,372,374,376,369,370,604,604,607,611,584,594,624,440,456,450,445,420,415,453,440,444,417,441,438,448,693,721,707,703,713,680,720,708,721,726,707,714,706,691,619,598,591,601,595,574,604,576,562,570,605,627,582,584,595,594,611,616,586,380,386,401,389,400,396,406,363,370,353,364,371,357,354,366,377,366,365,371,373,371,758,773,770,776,789,784,807,767,763,765,760,765,775,731,751,677,667,674,676,665,662,665,664,665,675,661,668,675,657,647,417,432,437,441,450,406,452,419,440,578,552,567,565,589,571,576,554,567,567,588,572,451,482,467,468,483,484,456,473,488,472,473,460,462,485,474,474,474,459,661,689,668,671,678,684,671,654,686,688,670,658,682,677,617,598,631,626,639,636,640,621,610,631,614,611,628,628,626,417,407,384,407,392,391,397,406,394,397,406,393,692,700,690,715,709,712,714,718,705,713,730,592,612,599,600,608,599,580,612,597,591,604,584,601,583,585,616,601,425,421,429,434,438,431,404,413,444,436,572,573,609,583,586,569,602,585,557,599,537,537,544,541,526,537,524,543,548,547,533,533,546,518,536,528,532,536,422,451,426,430,419,428,428,437,409,438,429,428,609,621,592,606,602,601,605,595,600,614,608,609,536,531,524,539,529,533,533,517,537,542,507,551,521,491,514,500,536,493,530,544,544,523,539,516,515,535,518,506,522,523,518,522,540,427,415,417,430,426,422,429,411,438,417,423,426,422,426,425,374,389,374,381,376,386,388,368,395,376,381,637,649,624,643,634,619,616,652,620,668,649,652,667,622,643,626,620,620,636,629,632,645,641,636,622,630,620,628,689,702,705,696,702,698,691,686,692,697,706,699,707,711,695,701,607,626,608,604,611,616,598,626,622,603,610,607,596,618,620,617,627,601,608,641,598,571,579,580,575,600,585,591,594,577,572,591,582,589,584,583,571,583,586,597,575,546,538,538,540,534,541,534,540,537,414,422,431,418,408,404,404,439,443,417,414,428,427,418,409,423,414,625,641,641,611,616,610,625,644,449,431,437,431,412,611,595,609,614,612,588,595,605,589,593,620,579,590,610,579,607,614,435,449,427,453,458,426,472,470,442,446,429,432,442,452,444,442,464,429,437,561,564,534,565,542,543,578,548,571,539,560,558,579,550,564,555,556,546,582,569,550,509,517,529,531,520,536,533,519,519,530,520,531,506,421,417,413,413,434,413,416,435,407,425,445,429,415,427,420,420,417,408,416,415,423,388,399,728,744,711,684,728,699,628,624,631,639,638,634,628,519,520,508,515,505,535,501,523,540,514,521,502,529,520,518,532,538,532,537,549,543,538,544,543,534,524,538,530,514,520,531,528,492,494,524,506,510,500,514,508,497,514,505,499,505,481,494,487,487,479,492,492,478,483,504,481,480,499,484,492,652,643,648,652,655,646,651,637,676,625,676,680,677,674,669,667,650,691,675,664,654,664,647,661,599,596,600,600,571,606,611,596,594,572,600,601,590,597,517,523,503,502,525,514,508,513,520,510,515,520,503,501,524,497,511 0 216.757027 0 0 0 0 diff --git a/test/r9_mfreq.exp b/test/r9_mfreq.exp old mode 100644 new mode 100755 index 6ef2d55..dcdc531 --- a/test/r9_mfreq.exp +++ b/test/r9_mfreq.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO002 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!10830!- 0 2048 -272.365141 748.5801 4000 97125 564,573,567,565,571,565,570,556,556,564,554,547,551,533,549,541,550,539,497,478,480,483,488,485,485,491,471,481,488,488,477,485,497,483,481,430,441,439,447,436,451,450,453,457,443,439,434,515,534,537,535,538,545,540,541,539,536,545,540,548,544,541,551,546,537,483,517,500,500,497,487,490,499,481,504,492,498,514,506,498,493,492,481,493,504,494,481,473,477,467,467,475,469,481,471,474,469,499,510,503,497,502,505,503,505,505,504,505,507,506,507,501,545,548,544,561,545,558,557,559,547,547,526,500,506,510,507,496,482,485,486,477,480,482,483,487,480,478,488,488,480,485,490,484,483,485,489,487,483,485,485,485,478,486,486,482,488,495,499,493,503,504,493,493,514,496,495,504,487,494,504,502,496,494,494,467,480,473,475,485,480,487,478,489,480,480,482,477,492,477,476,494,486,487,484,488,489,481,479,486,449,460,467,451,463,455,463,463,458,460,436,460,458,456,456,447,442,451,445,440,448,452,588,573,570,562,572,563,574,578,577,531,539,540,544,528,540,531,540,538,527,532,535,540,538,535,533,536,590,575,579,566,557,567,553,581,506,503,508,491,489,479,482,472,482,468,477,486,480,557,514,509,503,512,504,499,496,549,553,568,568,565,573,577,567,557,569,490,520,495,506,482,488,593,578,589,579,583,587,582,598,594,586,573,596,582,541,542,546,547,547,554,554,552,504,498,504,504,498,497,510,480,505,524,513,512,514,520,512,515,513,510,521,543,538,539,538,544,542,539,546,544,539,538,524,500,496,511,509,498,496,513,502,544,546,561,565,565,549,507,492,508,498,498,503,496,500,498,498,474,451,447,459,454,471,459,589,580,571,579,573,570,495,512,511,500,502,508,525,510,507,508,503,515,508,517,504,508,516,499,541,552,537,540,543,546,550,549,546,537,545,546,541,540,553,538,544,541,541,550,542,541,538,547,504,494,491,492,483,496,493,496,489,558,572,557,561,558,556,561,566,558,550,571,542,480,560,559,547,548,547,551,560,551,530,529,523,529,525,518,512,514,521,488,483,479,479,480,481,489,484,480,486,485,492,482,471,455,462,455,457,466,461,464,423,441,442,442,439,419,438,437,429,432,447,440,432,530,531,535,537,523,562,566,580,572,571,569,572,560,560,530,530,527,537,535,537,529,511,517,520,508,513,516,513,546,569,567,565,570,550,518,505,512,457,450,477,466,464,465,460,464,468,467,469,471,570,560,552,553,557,552,554,555,555,558,563,542,539,550,538,551,550,546,541,547,559,545,550,551,545,489,501,483,506,492,502,497,501,500,545,546,540,544,546,551,554,538,548,551,540,552,557,506,519,518,515,514,516,515,512,514,517,513,515,521,502,501,511,501,504,509,502,509,510,510,503,504,505,498,557,535,540,542,536,534,541,546,534,543,541,534,540,553,570,561,559,580,534,524,524,537,528,540,523,522,506,520,515,512,504,518,512,513,507,542,566,552,570,549,559,498,509,515,514,509,511,504,503,503,501,503,492,492,495,495,500,542,564,558,556,549,557,524,532,537,536,526,536,534,537,541,531,532,530,530,531,539,535,532,571,561,558,552,556,557,550,562,569,552,541,506,518,536,514,514,533,535,531,514,525,515,521,521,487,501,491,488,495,502,495,466,472,472,461,467,468,446,438,448,533,534,546,533,547,547,551,568,572,556,513,532,539,530,528,527,525,537,515,508,511,503,508,501,498,462,483,478,472,462,468,460,462,468,461,448,462,465,457,463,454,464,453,601,585,586,581,586,579,570,525,535,531,536,532,471,478,470,568,563,563,545,547,553,560,549,553,561,579,560,563,560,567,567,568,563,511,525,525,513,522,527,528,519,510,499,505,508,510,508,491,473,489,485,467,467,470,464,461,470,449,437,446,447,535,534,539,547,543,540,538,547,539,535,546,540,553,546,500,495,497,491,488,496,504,497,494,502,498,492,496,497,494,488,569,547,549,563,565,551,564,549,557,559,506,483,501,504,495,494,492,500,498,497,493,506,484,475,473,475,482,537,550,560,546,535,561,548,559,551,507,509,529,516,520,512,513,488,482,483,481,482,486,486,485,475,489,481,487,474,476,475,489,487,480,481,484,482,487,572,613,594,609,617,592,588,606,604,604,604,598,591,522,550,544,532,550,547,541,533,538,547,538,534,545,533,543,463,480,482,473,475,472,446,460,461,449,455,455,449,448,452,451,458,544,542,553,548,549,552,554,552,557,540,558,552,547,552,550,552,561,560,559,551,550,552,561,493,494,497,506,502,508,497,505,495,485,494,492,496,489,487,495,489,478,476,480,473,480,481,487,491,487,486,483,484,486,482,482,487,489,484,484,487,483,474,478,470,469,478,471,522,502,502,508,514,503,505,496,579,558,559,563,567,567,559,522,533,533,536,530,524,524,552,547,555,555,542,550,553,554,543,531,528,526,529,523,527,531,531,525,530,540,560,557,573,561,570,552,548,560,574,562,556,549,562,558,563,569,553,565,575,555,573,564,496,509,489,505,502,494,507,497,501,503,493,486,565,576,576,577,576,580,576,585,587,507,518,518,515,514,516,516,522,528,518,518,526,528,504,527,528,517,524,529,582,581,591,577,588,547,533,524,525,533,532,528,538,528,530,472,475,468,468,485,475,476,466,478,480,476,467,477,484,529,535,531,539,527,529,526,534,548,547,549,544,543,539,543,544,539,538,545,537,545,534,540,541,552,540,542,544,546,511,523,510,511,521,515,523,525,517,516,523,508,568,561,585,563,579,557,555,577,579,582,555,565,572,568,493,500,502,505,500,526,525,522,520,522,518,523,521,510,513,523,514,516,575,555,552,559,565,555,551,542,553,555,561,546,552,484,498,504,496,495,499,499,500,502,489,498,492,507,498,515,530,520,513,497,527,555,544,536,535,542,551,541,543,544,530,509,498,500,486,497,498,501,496,497,496,540,536,527,522,524,540,541,544,539,475,483,477,486,495,488,490,490,565,540,546,540,547,546,547,544,544,546,550,542,522,533,566,545,558,569,551,552,550,543,557,510,502,493,502,496,496,504,498,505,497,500,507,501,495,498,495,500,487,501,512,501,510,499,506,503,508,504,502,514,500,580,566,573,555,570,565,568,579,571,569,563,565,567,553,560,556,525,507,512,494,487,484,486,489,483,488,490,482,508,495,496,496,490,494,495,495,494,554,553,548,552,572,578,574,561,567,545,518,535,528,525,530,510,497,511,503,511,502,506,507,504,507,504,513,504,505,506,506,509,489,483,480,491,533,512,511,507,520,507,514,516,514,541,547,546,552,545,551,547,526,497,485,477,468,481,467,482,483,481,493,477,561,557,553,549,542,571,566,557,570,569,558,562,564,563,552,557,566,493,498,498,502,501,494,504,503,499,499,510,500,503,504,502,507,506,504,506,522,541,533,541,530,530,534,537,541,547,539,534,526,545,535,540,535,536,533,535,546,549,565,566,563,556,553,553,557,562,547,523,515,506,519,509,514,507,503,514,501,511,509,514,574,573,559,562,570,559,564,571,559,564,571,492,497,492,492,498,496,495,496,501,499,495,500,507,502,499,501,505,494,497,500,505,569,576,572,559,567,560,572,574,579,561,560,577,496,509,504,517,510,493,509,510,445,449,443,454,446,445,465,454,453,443,453,445,451,451,438,449,455,444,448,454,440,542,540,536,542,538,552,555,538,541,540,548,549,548,531,543,538,549,549,543,504,491,495,491,475,493,499,490,490,492,482,568,557,567,553,553,563,566,551,555,505,500,492,481,489,486,494,493,501,489,471,580,589,572,580,581,583,537,549,548,525,519,522,525,525,526,513,530,515,516,514,520,523,531,472,481,490,486,492,479,489,491,474,488,491,486,485,555,549,548,547,551,549,528,519,517,526,518,524,517,518,515,554,559,550,556,555,563,552,558,550,560,551,544,550,548,549,552,543,545,554,506,496,499,490,504,509,499,501,493,497,495,518,497,492,491,496,488,491,485,494,488,491,488,517,532,521,526,534,523,524,525,568,553,565,547,543,557,563,546,550,505,512,511,512,516,505,516,509,509,517,517,515,519,511,510,503,504,507,504,505,506,544,541,547,540,548,543,551,551,483,490,483,488,489,487,498,489,488,498,492,486,487,484,486,546,550,550,539,546,553,549,571,559,545,513,509,510,503,513,505,508,506,503,508,512,531,526,529,524,524,522,524,527,526,529,533,530,528,574,568,555,544,548,544,548,553,542,565,541,555,552,549,565,552,544,551,482,485,479,484,482,513,525,527,518,519,511,527,521,530,532,525,526,531,527,534,535,531,526,531,537,504,507,514,504,514,512,507,505,510,511,510,512,515,515,511,530,541,535,523,530,529,560,565,561,495,503,490,495,494,493,502,584,587,589,582,593,578,570,590,546,544,531,539,540,553,544,551,546,547,547,554,549,534,549,532,552,553,545,500,522,498,517,496,498,494,501,509,491,501,504,497,488,502,500,504,518,521,524,519,514,524,523,517,510,523,518,512,550,573,560,568,571,561,567,570,577,562,564,571,565,512,496,505,512,499,507,507,512,514,513,513,498,483,500,498,453,461,459,456,468,464,467,456,451,453,453,452,449,447,445,455,451,444,450,448,446,449,562,565,569,580,566,572,570,542,547,552,547,539,539,550,559,543,549,547,525,502,515,517,512,514,515,524,517,512,585,570,571,559,571,560,556,565,573,546,531,520,530,525,539,515,504,505,506,516,504,511,511,514,516,502,497,499,491,476,478,484,481,483,474,478,474,483,473,481,456,454,449,454,451,531,538,541,547,564,538,544,547,518,523,529,521,527,521,523,524,546,540,545,540,547,544,547,550,543,546,548,544,550,542,543,497,533,544,544,552,546,539,544,535,538,542,542,545,539,547,563,564,568,564,568,563,564,566,560,541,536,540,532,537,532,532,557,560,575,556,577,561,574,569,576,535,523,526,525,515,519,478,486,482,480,492,487,481,474,483,448,477,464,460,455,478,450,458,463,479,463,480,460,450,458,458,469,463,461,458,561,580,583,578,575,592,594,571,588,589,588,586,575,584,514,528,522,530,530,523,531,560,545,553,563,532,568,547,560,545,539,550,558,476,499,500,490,497,494,496,488,507,498,493,559,554,540,530,543,545,542,543,522,515,508,514,514,517,514,513,553,537,539,563,547,552,564,561,545,550,569,547,544,551,556,550,551,535,556,475,488,487,493,480,499,484,502,488,480,493,492,512,501,491,493,490,499,500,493,503,497,496,506,546,537,537,538,533,540,532,530,535,520,538,534,519,511,506,502,508,500,495,500,508,513,540,566,566,556,573,555,565,562,554,557,553,555,530,508,489,473,472,463,464,452,461,457,458,476,460,466,492,503,496,498,495,495,494,491,488,500,494,498,501,494,506,517,524,521,526,522,526,528,524,521,521,526,523,521,603,587,587,585,573,575,591,582,587,583,561,553,555,548,550,533,544,534,543,542,540,542,540,536,537,551,542,476,484,479,484,473,502,509,482,483,458,438,451,443,569,541,556,547,544,546,545,545,542,546,543,554,493,504,493,501,489,504,491,480,503,507,508,498,511,478,471,478,476,473,480,489,480,482,460,479,478,473,481,475,572,548,556,552,556,558,555,555,494,488,481,498,497,502,490,504,460,470,460,459,457,467,457,464,466,459,455,474,468,554,540,551,550,538,543,552,537,540,540,549,545,556,565,560,563,575,572,573,568,571,573,578,539,553,544,549,548,549,530,533,532,530,533,532,528,532,523,513,514,518,511,507,510,522,567,560,556,547,556,566,563,543,565,558,554,556,555,508,504,520,514,499,550,565,563,561,489,505,528,458,447,466,461,452,460,463,464,453,458,458,536,555,546,545,551,536,532,543,549,539,536,521,513,520,521,534,525,532,529,526,528,486,504,485,499,490,498,495,495,502,501,490,499,500,502,571,563,557,563,555,561,562,561,552,576,552,563,529,505,513,549,554,555,559,556,554,555,497,510,498,499,499,500,497,510,492,496,492,509,513,524,517,512,522,521,524,524,517,519,513,565,565,575,585,567,568,573,574,584,578,564,579,573,569,580,578,543,534,535,535,535,517,518,511,506,502,513,488,498,500,510,506,495,506,496,514,505,508,503,498,508,507,502,487,506,500,497,500,500,496,503,505,501,498,502,503,497,502,499,504,495,498,491,503,497,507,505,502,503,503,498,477,483,491,488,492,476,487,479,481,455,453,441,447,457,445,461,452,520,499,492,513,493,498,508,490,507,535,538,543,545,540,533,536,550,544,536,540,546,538,539,539,539,526,532,530,528,532,527,532,536,527,536,537,557,545,551,560,560,545,557,551,546,564,547,560,474,481,476,485,475,493,493,487,474,452,464,465,596,584,596,570,591,600,593,593,583,571,585,571,579,538,533,536,534,547,530,522,532,524,529,529,534,524,530,518,515,525,513,516,517,512,529,514,514,514,511,520,555,572,577,562,575,564,566,565,558,567,498,498,501,506,496,513,502,504,494,498,503,491,517,501,479,474,492,474,481,484,608,589,593,593,595,588,602,600,600,585,600,553,543,540,538,538,541,535,541,549,535,561,554,550,569,551,577,527,504,517,504,519,501,506,507,586,580,576,585,578,564,578,587,565,472,490,481,507,472,488,487,488,491,492,486,548,565,566,563,565,560,561,560,556,529,526,514,523,520,526,519,527,523,524,525,500,502,502,505,496,480,475,478,475,475,478,476,482,474,479,469,477,474,480,475,477,501,503,500,506,496,500,501,494,563,567,569,572,569,557,568,569,561,567,574,560,575,564,558,549,545,554,546,513,495,489,501,498,506,506,496,502,510,487,498,506,502,509,514,512,515,512,518,507,510,509,510,510,517,512,515,545,518,520,524,515,520,513,521,517,522,523,523,516,517,520,511,517,524,519,515,520,548,534,539,575,562,568,548,560,572,563,553,538,530,522,522,521,531,526,533,516,558,557,555,564,555,550,550,556,551,555,567,558,555,526,538,535,539,535,537,543,531,527,528,531,531,527,526,529,530,527,525,543,536,538,538,545,539,537,539,517,498,516,506,511,507,504,515,567,564,548,564,505,502,492,508,502,517,521,508,499,511,446,455,507,502,499,508,549,575,570,566,571,558,562,572,570,546,525,529,535,525,521,530,487,479,473,490,483,477,483,479,486,480,467,480,480,480,477,477,480,473,558,557,561,546,555,570,564,562,569,557,563,561,568,555,563,562,522,519,520,522,510,526,529,515,507,512,502,507,505,502,507,503,473,493,493,482,479,465,463,465,464,464,470,467,457,456,460,463,471,469,463,441,446,483,479,486,485,472,492,489,476,495,487,537,562,559,567,577,568,569,571,486,502,489,493,502,458,463,445,454,452,462,472,452,464,462,492,498,494,493,497,508,503,495,572,553,563,550,550,540,542,542,541,538,535,536,538,539,535,502,513,559,560,560,564,567,569,559,563,555,568,567,562,553,556,559,552,553,561,561,562,562,558,567,506,498,505,500,505,503,499,489,493,509,495,502,566,572,582,565,555,590,565,578,483,514,499,499,507,497,519,510,504,511,515,473,475,478,485,482,478,467,470,481,578,564,523,501,511,496,511,505,509,482,484,486,486,483,476,483,465,478,481,478,474,470,478,476,471,471,470,470,472,461,468,459,469,471,463,466,469,465,455,456,468,545,564,559,560,565,547,561,563,557,553,548,557,558,560,550,551,553,520,510,506,509,518,503,472,462,471,465,465,460,465,468,464,459,467,467,467,465,497,480,481,494,479,483,543,538,541,537,542,545,538,518,525,524,529,532,531,519,523,518,527,522,517,519,521,515,609,592,598,581,581,598,598,594,598,549,541,532,536,545,527,530,543,527,537,531,536,546,538,533,532,542,537,537,530,535,512,514,518,509,508,514,513,513,555,548,558,562,558,516,507,508,516,521,502,509,516,507,523,499,514,513,496,499,505,499,508,499,529,532,525,529,528,524,541,542,463,490,481,482,487,476,484,479,480,484,476,486,541,540,539,544,555,541,548,551,560,554,555,552,560,560,556,551,545,560,558,556,559,554,561,560,497,505,483,502,503,504,493,495,499,495,485,488,492,479,483,470,476,557,563,545,569,560,556,549,555,519,528,514,497,491,486,492,486,492,480,483,486,488,489,491,489,503,514,505,530,539,548,536,539,538,538,552,547,544,536,519,525,520,521,525,522,519,514,528,578,565,569,570,550,552,554,554,552,559,557,557,552,487,516,516,528,501,497,502,497,505,467,449,461,455,461,472,477,466,552,566,571,562,580,573,553,580,566,568,560,573,577,496,496,499,497,500,501,498,503,496,495,475,475,467,464,567,538,554,542,553,551,538,539,514,499,500,505,516,502,501,490,496,461,466,456,448,462,448,465,461,462,461,458,463,455,459,466,503,497,507,505,497,506,560,560,567,560,559,562,572,562,523,540,533,530,536,527,532,523,463,473,486,478,480,557,543,548,545,543,537,542,545,546,545,536,545,542,547,548,555,551,555,544,540,549,552,550,550,549,544,545,558,541,507,505,506,505,503,495,503,501,507,508,555,553,549,572,501,495,492,499,485,510,503,516,516,521,522,519,514,511,522,520,514,508,518,521,518,529,513,576,563,575,577,563,551,557,565,567,552,571,522,522,504,513,510,524,527,498,523,503,512,509,491,483,484,484,485,485,496,494,489,499,488,487,491,498,496,500,541,538,551,546,552,548,561,499,503,523,504,505,509,500,504,499,491,506,517,510,516,519,519,514,519,559,543,540,546,547,540,535,550,548,504,515,514,520,525,509,516,516,519,548,532,541,532,527,537,538,535,540,535,538,539,551,554,551,553,560,524,510,500,517,487,491,494,487,500,480,482,512,524,508,495,512,520,520,519,519,504,509,502,503,505,502,502,501,501,497,504,493,501,504,505,498,492,500,505,501,495,500,500,500,490,482,477,474,462,466,466,453,472,465,469,472,470,466,458,465,468,460,451,460,467,464,467,460,476,585,579,583,590,594,588,574,573,581,583,579,534,530,530,537,526,548,561,566,546,544,551,549,551,550,548,554,560,554,507,482,594,581,583,562,584,586,586,579,589,587,574,536,531,539,535,538,539,535,526,526,534,532,524,525,529,534,522,529,527,525,522,523,526,526,526,546,572,565,563,568,562,567,560,568,555,555,568,559,561,551,578,567,482,440,435,436,436,440,441,443,459,442,444,440,551,543,549,538,538,545,537,534,534,540,530,540,548,539,551,542,553,541,551,546,549,544,546,543,488,500,503,508,501,497,492,493,491,490,450,458,486,488,485,486,475,476,484,489,482,479,479,469,541,571,569,569,544,564,562,511,527,531,519,529,529,519,524,521,525,518,524,530,527,546,546,544,480,461,457,462,473,463,451,455,455,461,465,463,463,448,464,469,496,566,569,575,571,564,568,559,572,566,568,572,492,513,513,512,521,513,507,524,520,527,513,508,511,525,515,522,472,483,474,482,481,476,473,478,489,467,484,485,500,501,502,497,504,497,505,516,521,519,523,516,509,512,522,509,518,516,509,554,554,548,553,548,553,541,548,546,552,534,547,545,543,545,538,535,541,499,500,510,511,510,511,517,503,559,575,558,583,560,556,565,558,569,555,573,573,509,517,518,521,513,519,521,520,516,517,520,519,519,505,513,514,513,507,504,509,507,515,541,557,562,543,551,559,553,553,551,552,548,550,549,505,504,505,519,519,523,519,523,518,527,516,517,518,467,469,469,477,466,466,468,467,468,474,443,456,453,555,554,543,554,559,551,560,486,489,490,484,501,496,507,474,501,596,576,586,581,582,571,577,578,589,583,591,581,506,521,512,523,510,512,522,513,512,508,556,555,558,553,550,552,546,559,550,551,555,547,550,530,518,519,515,517,522,516,524,530,519,475,488,483,487,481,485,430,434,444,439,438,442,438,441,439,443,438,446,435,441,445,448,454,453,452,441,441,453,444,444,447,447,449,454,453,449,555,551,547,543,545,564,543,554,553,540,507,508,498,489,510,498,494,499,495,500,491,488,492,488,494,498,502,532,529,523,515,520,522,520,525,537,562,492,503,503,497,493,511,504,500,512,504,510,544,550,557,550,553,559,513,503,510,507,498,511,509,509,503,508,583,591,600,601,594,605,589,605,595,536,554,554,548,546,545,553,544,555,543,489,501,490,498,491,506,505,509,501,499,503,509,506,502,504,571,550,547,554,495,499,506,509,513,498,512,506,508,510,511,562,567,574,563,562,566,567,550,566,568,564,559,566,554,569,552,558,509,497,487,494,489,491,493,491,496,489,487,493,490,491,492,492,492,494,485,489,488,492,493,499,496,488,488,480,489,490,487,489,495,487,498,513,515,500,506,509,514,509,510,500,515,507,519,547,565,559,569,564,563,559,553,550,556,565,559,565,558,563,554,557,561,533,512,514,524,512,529,520,513,509,517,481,488,484,494,494,478,482,495,491,489,483,478,497,468,473,479,569,544,539,554,546,555,544,515,521,525,521,524,523,518,525,520,533,543,538,540,546,540,540,537,541,540,536,537,540,538,540,538,531,525,531,531,536,527,535,532,534,568,565,557,556,549,557,556,566,470,505,446,457,456,459,460,466,457,456,470,461,464,540,531,536,534,538,533,530,542,538,528,523,526,526,530,527,533,516,520,521,520,517,531,525,523,526,523,528,536,520,547,545,547,541,553,548,546,524,520,517,535,528,526,526,524,532,521,529,536,530,525,526,531,530,529,520,506,515,517,508,499,511,511,509,558,555,569,551,558,506,531,511,528,486,489,488,497,492,489,487,484,447,462,460,461,463,462,482,478,475,488,479,482,492,472,484,474,478,481,574,562,572,570,565,582,574,581,568,573,504,493,566,586,590,584,570,582,578,557,549,560,549,551,550,552,554,550,555,563,554,554,548,552,551,541,545,548,546,543,511,490,493,504,496,491,494,495,501,495,493,494,500,502,496,495,488,500,597,569,578,571,575,569,559,573,571,559,569,576,503,506,507,503,501,505,496,518,499,500,510,560,553,554,555,552,557,560,553,542,540,541,548,531,534,540,544,541,548,528,535,531,535,535,538,533,581,555,567,568,583,575,564,558,565,561,567,559,505,493,503,483,491,500,495,508,492,499,504,501,501,496,458,471,471,465,472,469,441,444,450,447,460,440,424,442,449,454,454,457,556,540,544,547,540,548,561,558,555,551,550,538,556,543,554,548,503,494,494,508,506,508,498,510,490,447,463,463,524,504,514,508,510,517,548,552,551,535,547,548,548,541,489,491,485,490,470,478,491,481,472,492,496,547,537,551,551,542,551,556,549,543,546,545,536,556,539,547,547,528,527,528,531,520,520,519,559,563,561,564,562,566,557,563,562,557,560,543,553,544,546,548,550,549,551,538,498,502,487,483,486,496,490,490,491,490,487,502,506,486,500,494,501,494,497,499,495,496,500,499,497,554,541,537,549,551,550,522,523,533,529,527,548,563,575,553,567,549,556,575,560,565,560,561,570,553,567,553,578,506,495,499,491,495,537,550,542,539,548,541,556,554,544,553,538,545,522,518,521,526,523,521,522,520,520,526,525,520,520,519,516,572,557,574,560,564,566,560,564,560,560,560,572,564,556,556,557,559,556,552,558,550,555,517,526,516,522,518,511,533,526,534,506,535,505,503,508,494,494,488,486,485,494,479,485,493,488,488,482,485,480,489,485,481,483,481,469,468,478,474,474,472,470,470,465,472,478,468,466,473,483,475,473,482,457,458,467,473,469,467,470,542,547,550,539,539,555,552,506,510,509,510,513,520,507,510,563,557,549,549,550,568,554,561,557,555,566,570,567,567,565,548,554,568,505,481,472,486,484,469,484,492,473,440,472,459,445,457,455,443,445,453,546,569,545,560,550,549,566,573,570,559,565,556,564,571,562,562,560,569,520,501,510,507,513,508,505,514,518,518,509,518,505,451,457,470,458,459,461,467,503,489,502,508,511,516,512,517,511,535,546,543,549,549,543,541,549,541,543,554,550,539,530,527,527,523,529,533,530,526,540,558,541,547,552,557,550,544,543,546,535,550,539,500,497,498,447,467,472,459,462,457,481,480,488,485,485,483,491,493,477,487,493,488,562,561,570,544,569,565,570,571,563,584,565,557,498,514,487,527,491,476,475,469,464,466,472,470,476,475,476,481,489,475,481,476,482,479,476,555,580,562,561,559,556,543,557,550,576,503,517,520,514,527,518,532,533,488,482,478,478,481,478,485,481,481,476,473,484,479,481,487,456,467,485,474,482,487,483,479,482,473,477,477,494,492,582,597,576,595,605,596,620,592,599,598,596,598,602,499,516,501,517,493,515,517,514,551,543,537,543,543,546,544,539,542,546,574,567,560,563,563,571,572,566,532,532,515,515,513,526,516,508,516,514,509,523,514,564,506,514,477,464,455,473,469,459,466,467,472,460,470,476,556,559,573,559,560,567,572,556,561,553,562,557,555,559,564,561,569,562,552,509,513,522,516,515,522,517,523,523,521,520,519,480,477,494,485,495,484,490,496,464,450,464,460,459,469,454,456,432,448,432,434,557,545,531,531,567,562,563,551,557,562,560,517,521,526,512,504,526,485,495,493,494,500,495,496,499,492,492,494,486,497,490,497,514,501,502,514,503,499,503,505,506,504,505,503,503,508,533,536,534,529,533,543,528,534,528,498,500,500,493,495,498,503,507,510,509,490,497,488,555,554,553,561,550,505,497,500,491,500,494,592,596,585,573,580,580,578,578,574,599,489,491,514,503,498,550,548,544,548,556,544,544,555,543,542,557,577,566,574,570,572,566,559,496,518,505,511,505,512,502,503,470,478,484,484,477,479,482,471,478,483,483,479,486,481,482,481,486,484,481,488,482,482,456,462,464,466,462,465,463,462,459,470,448,458,454,453,452,454,462,453,455,456,459,443,461,453,540,550,548,547,543,536,544,511,519,521,521,518,519,522,523,512,516,524,536,551,531,545,550,541,551,541,552,553,487,494,491,484,497,498,497,508,494,507,497,510,459,456,454,455,455,449,450,449,454,458,461,451,454,473,474,463,455,459,470,466,454,465,466,464,458,466,571,587,595,586,581,589,586,590,594,599,588,556,542,546,545,521,525,523,524,531,527,527,527,526,525,517,526,526,538,540,536,534,535,492,492,512,500,500,499,500,509,500,497,503,498,512,560,568,558,548,568,571,565,573,560,560,567,504,502,508,503,510,508,518,575,576,578,577,587,589,567,586,577,581,581,513,505,513,507,519,502,511,507,503,558,554,558,550,553,549,552,555,550,548,554,546,554,544,550,550,542,549,542,532,506,500,490,505,497,511,512,438,454,443,444,439,451,444,496,490,489,478,489,504,535,553,557,558,549,558,555,553,554,565,546,544,474,493,489,488,489,490,500,487,485,482,485,482,491,471,543,569,561,586,511,505,524,510,519,514,522,513,478,485,487,482,486,489,480,484,483,488,483,487,489,481,492,493,487,488,484,485,485,481,518,504,550,544,540,543,544,549,543,541,540,545,543,541,533,579,549,564,564,565,550,562,562,556,557,532,527,521,528,534,523,530,527,521,538,525,534,518,534,539,533,499,488,480,491,486,466,489,472,469,465,477,478,593,581,600,589,585,585,583,592,587,591,583,523,522,544,532,533,527,514,527,515,523,529,485,488,508,501,498,484,488,486,495,493,492,591,550,555,546,562,549,561,560,564,558,529,510,511,513,516,497,518,508,515,515,473,478,482,485,485,485,492,475,479,480,481,478,482,484,485,482,513,502,493,497,495,500,495,504,499,560,559,564,566,559,561,555,566,566,562,554,555,553,554,551,558,547,556,560,556,559,566,555,559,512,521,523,525,532,515,493,502,503,509,507,508,500,496,489,490,487,493,494,489,490,491,463,464,456,445,458,451,494,486,499,501,494,479,485,488,560,556,552,504,516,518,526,528,514,516,535,519,528,516,478,465,458,459,468,453,453,470,461,540,557,541,571,557,560,555,559,557,556,558,565,552,524,509,525,515,491,481,492,483,489,484,485,493,488,483,489,481,489,485,463,472,468,467,465,460,463,467,465,536,561,558,493,512,505,501,498,504,501,507,510,493,500,504,544,551,552,570,544,549,558,558,556,504,485,494,511,494,503,507,493,500,502,498,452,448,456,454,456,451,445,446,442,447,457,535,545,542,536,538,547,529,543,548,550,540,526,556,545,547,543,544,540,545,541,502,492,498,490,500,493,540,555,546,539,542,537,548,536,522,523,521,522,516,521,520,516,517,518,515,521,521,519,552,548,553,551,556,563,555,556,546,546,553,549,555,561,552,559,533,540,536,539,532,536,535,542,527,532,532,536,540,533,535,534,532,536,571,560,565,563,569,552,557,560,559,557,561,558,553,564,529,508,518,498,519,491,479,478,476,483,485,472,490,476,481,479,476,481,446,453,559,550,569,547,551,558,550,558,559,550,542,547,548,550,551,560,547,513,517,514,528,522,519,514,514,513,509,511,507,508,509,507,512,512,518,512,510,513,555,544,540,546,551,549,549,548,559,545,535,544,542,540,545,554,496,492,505,489,493,502,488,505,500,498,503,491,498,547,542,543,542,559,546,542,520,521,524,517,528,551,561,567,566,553,561,556,555,553,520,529,534,527,531,529,531,527,538,529,531,526,532,534,530,532,527,501,506,498,516,502,509,508,540,549,561,557,558,561,542,533,530,536,534,535,563,559,543,550,564,558,555,555,551,558,558,504,509,501,501,504,500,504,501,507,502,504,504,503,506,502,502,552,551,556,559,554,551,563,549,556,543,530,533,541,541,540,530,538,538,536,534,532,517,534,524,517,533,526,517,525,523,531,540,529,523,577,595,593,601,595,599,601,602,598,598,586,586,602,601,594,599,606,586,583,540,557,545,554,546,551,497,495,499,498,499,489,500,490,501,494,501,519,509,509,509,509,511,508,505,512,509,508,505,509,509,542,524,531,542,541,530,534,534,527,533,533,544,542,540,547,543,526,521,521,528,522,523,528,521,515,521,519,561,561,558,563,564,560,556,561,564,557,554,550,559,558,557,550,565,555,554,505,511,500,513,508,511,510,501,464,449,458,457,456,451,473,478,480,479,478,573,565,565,571,582,565,554,572,556,521,484,469,481,481,481,481,483,486,486,485,488,479,473,465,468,461,462,473,470,465,462,459,467,458,457,468,454,454,450,442,458,461,463,456,449,451,476,480,484,484,483,479,479,479,484,482,478,473,478,476,558,556,567,572,552,557,561,567,560,562,551,560,547,562,554,540,527,514,526,525,513,515,523,526,516,528,534,568,552,549,548,561,551,556,549,565,549,540,538,528,533,529,476,468,493,483,482,472,468,475,472,524,532,528,526,532,530,519,521,528,524,521,529,537,527,525,543,524,526,507,530,530,530,520,535,535,520,523,511,513,513,509,519,521,523,526,533,533,523,532,523,522,529,517,575,569,542,539,538,540,540,542,531,531,564,568,563,575,581,565,576,568,583,573,577,577,574,567,563,533,528,542,530,525,522,510,503,505,504,513,504,510,504,501,508,475,476,477,481,476,473,480,480,489,502,495,499,496,496,501,495,548,566,563,554,553,549,530,534,503,503,513,512,521,515,513,537,526,520,535,517,524,530,525,576,592,583,578,579,581,577,579,593,578,577,579,543,523,517,525,537,535,523,536,536,532,535,541,556,550,548,546,557,562,558,553,527,521,526,528,520,534,529,524,518,557,555,554,558,556,549,554,557,556,546,547,554,551,557,554,506,526,516,541,538,528,530,497,503,501,505,504,475,489,484,487,496,477,488,479,489,488,498,514,510,517,516,504,518,512,509,511,509,546,552,547,549,555,547,556,548,556,561,553,515,503,502,510,499,492,495,523,534,534,538,543,539,535,541,530,568,558,547,549,558,556,557,545,559,536,547,554,485,479,505,505,498,496,498,508,501,497,501,501,486,483,490,482,484,483,481,459,468,464,461,464,468,467,472,457,468,476,469,463,461,465,463,461,527,535,543,545,551,558,465,467,478,484,478,473,484,468,469,480,468,465,468,484,478,481,479,558,574,552,573,561,568,566,564,574,578,566,560,565,570,567,568,528,536,534,530,519,535,483,476,483,488,482,489,485,487,481,481,483,480,484,489,487,482,484,487,486,486,460,461,462,459,458,458,438,437,440,443,441,450,443,439,432,427,447,452,507,517,516,511,518,522,521,520,539,533,528,529,530,531,533,531,538,537,531,530,534,531,548,552,551,553,541,552,500,490,494,492,504,499,490,561,559,558,560,537,563,535,545,567,558,558,474,488,488,490,478,487,487,513,455,467,465,465,463,456,470,460,462,458,564,556,558,563,551,556,489,495,500,494,490,491,494,513,500,486,487,494,431,543,546,530,548,547,544,547,555,541,548,537,551,487,496,492,498,508,500,498,501,479,484,483,478,475,474,477,486,481,478,558,561,566,548,534,550,548,554,552,544,556,513,517,512,524,519,517,515,519,516,534,516,527,522,504,511,504,508,512,508,502,511,507,508,510,507,502,502,509,502,504,501,506,508,500,502,511,496,510,504,506,509,501,505,492,476,486,484,473,486,480,476,491,485,490,476,484,484,481,466,475,473,455,472,458,458,515,504,507,510,513,512,511,504,502,506,520,507,509,507,502,518,502,529,528,544,541,538,535,551,543,545,545,511,498,507,499,498,564,574,598,592,578,585,586,602,594,592,592,596,603,555,562,561,537,561,558,563,556,521,514,517,511,503,521,508,508,497,511,483,482,471,477,478,488,479,481,485,479,479,450,455,460,454,461,469,453,464,457,461,458,497,500,504,498,493,492,554,551,561,544,552,559,558,548,548,546,557,532,536,529,527,533,534,533,543,531,524,530,539,552,566,566,562,564,556,569,572,581,561,519,500,499,500,503,513,507,476,474,464,470,465,466,469,462,475,461,457,444,443,558,554,546,549,544,547,557,553,511,518,525,516,517,518,518,522,520,519,512,518,519,518,516,536,533,534,546,537,536,534,537,540,535,559,552,562,569,556,558,561,552,571,550,555,561,516,517,515,471,477,482,474,482,478,468,473,474,475,477,474,470,474,469,473,475,475,474,478,475,455,469,471,460,466,463,466,464,466,592,598,581,588,590,536,529,529,519,539,530,534,529,538,523,527,527,528,540,467,482,480,469,482,479,484,467,487,533,548,561,551,555,546,562,560,550,544,514,511,497,495,497,510,513,498,509,480,487,486,483,481,465,474,478,475,473,469,479,467,478,474,474,480,470,473,478,463,470,467,466,473,483,492,497,488,495,486,499,487,492,532,543,557,537,547,550,546,505,505,503,510,502,506,500,504,503,537,530,531,532,529,524,536,532,521,526,531,540,538,542,548,548,550,546,542,551,545,541,547,540,514,525,520,524,517,520,509,526,514,552,552,536,541,531,533,535,537,541,491,500,495,496,508,494,498,507,482,487,491,480,482,486,488,482,490,464,451,449,451,464,454,494,479,490,491,483,480,480,482,471,481,475,476,481,488,553,556,554,556,558,563,464,493,473,491,499,481,481,491,485,485,484,482,515,496,562,559,554,571,553,553,521,497,507,498,503,501,505,501,506,502,496,514,514,515,517,517,511,519,524,522,519,571,556,563,564,558,570,574,565,565,565,558,562,501,507,515,511,517,519,516,513,524,477,491,484,483,487,487,493,497,486,484,479,486,489,491,489,493,513,504,507,502,493,542,548,551,544,548,501,497,494,506,500,501,498,482,493,495,498,491,513,497,504,503,503,496,503,513,528,541,541,535,540,540,538,541,534,572,564,554,534,516,524,568,589,586,591,601,589,581,581,582,518,538,534,530,545,525,533,530,537,537,538,540,528,533,529,541,553,559,554,549,564,552,499,513,509,506,503,512,503,500,519,494,502,508,515,509,506,564,549,553,552,539,557,560,543,550,546,550,551,511,502,508,505,500,508,500,503,505,505,490,499,497,497,495,492,489,487,503,485,530,545,538,539,578,505,502,508,487,503,502,511,501,509,513,497,487,463,462,444,454,445,451,549,548,553,546,541,544,536,539,545,548,539,542,534,549,547,501,492,504,508,501,497,504,497,502,494,494,503,503,511,501,499,501,506,495,501,509,501,512,498,506,494,542,569,555,566,541,551,545,513,497,495,496,491,492,499,490,502,500,497,503,506,498,490,499,492,502,487,610,589,594,590,598,584,583,588,592,607,588,592,586,597,596,598,554,551,550,551,548,562,555,552,551,552,526,536,523,530,528,525,530,537,525,523,537,524,530,529,526,475,485,463,481,479,480,466,481,470,475,483,481,528,546,541,544,547,551,544,537,542,563,553,557,548,555,558,549,513,512,503,502,515,500,510,507,506,520,516,505,517,516,505,511,588,582,576,577,579,584,593,583,588,557,540,550,548,546,545,546,550,539,536,531,529,533,538,527,529,534,537,529,531,531,539,538,535,516,527,523,524,549,559,545,549,550,587,568,569,571,569,575,537,536,535,536,522,519,524,531,525,537,525,517,507,516,511,507,508,483,480,475,482,477,491,481,488,487,473,476,493,488,491,487,501,488,591,577,562,566,561,515,523,515,528,534,525,514,519,523,517,524,524,521,527,513,511,507,512,508,510,508,504,511,507,537,549,541,544,539,552,542,547,548,548,550,541,547,544,504,499,488,500,495,554,560,559,551,542,540,546,550,555,508,512,513,522,507,507,512,516,508,513,518,508,513,550,546,553,547,547,547,549,550,544,550,548,549,569,552,547,563,549,547,547,550,549,571,549,558,551,503,489,490,496,483,491,560,551,555,552,562,560,538,545,543,557,518,519,511,521,518,515,512,522,512,515,514,525,517,518,586,581,571,581,582,531,541,537,531,518,532,526,532,529,504,510,505,516,511,501,507,509,507,496,504,497,501,500,504,502,502,505,497,466,481,478,485,481,485,484,483,483,475,486,482,484,476,466,472,471,469,501,542,544,541,542,545,547,560,550,552,539,542,545,551,569,561,559,568,566,569,572,568,529,513,511,531,516,519,529,527,519,526,518,481,487,486,486,490,490,486,486,485,471,482,476,483,482,469,478,479,477,476,577,555,576,567,554,548,555,551,547,545,561,555,553,555,539,541,571,547,541,542,561,564,486,496,510,500,495,504,497,504,502,503,501,495,486,499,495,508,611,588,586,589,611,590,600,543,542,525,544,540,543,534,546,552,535,535,538,548,543,569,549,555,570,571,560,578,504,491,504,497,496,489,493,488,497,511,498,493,494,487,507,560,556,562,561,562,553,547,553,542,551,549,558,549,555,555,546,548,521,519,509,513,510,514,514,518,513,510,510,568,578,585,573,568,556,514,495,487,487,490,489,489,481,496,489,545,549,552,547,546,542,545,546,556,541,558,550,548,548,543,539,551,545,545,545,551,540,542,514,513,522,516,506,515,514,481,500,496,493,500,550,561,567,553,555,561,556,567,558,574,571,509,519,517,516,503,506,519,511,508,506,504,518,512,509,502,508,512,468,480,489,487,481,491,488,478,483,485,490,479,485,487,479,483,484,483,481,483,459,466,465,467,467,465,467,461,457,465,460,473,473,480,469,474,470,480,549,567,554,559,562,545,572,543,489,494,493,496,493,489,497,495,503,501,500,508,494,505,497,508,505,549,567,569,548,511,513,509,520,496,516,503,498,513,507,494,502,511,500,505,508,505,499,509,507,498,499,504,534,535,540,535,536,529,519,525,520,528,522,527,525,524,522,525,528,525,523,525,496,498,502,494,506,511,503,502,510,486,503,498,571,596,581,587,581,593,586,573,601,596,592,589,578,526,522,544,541,542,536,508,524,525,533,551,542,542,529,538,574,562,564,568,548,549,560,559,563,562,558,553,550,527,530,526,525,526,530,526,527,518,547,537,524,533,541,533,530,537,508,520,518,517,560,556,554,488,500,486,500,496,500,507,509,500,498,490,501,496,498,510,506,512,519,515,508,508,508,511,511,533,525,543,539,536,541,540,546,538,542,542,540,542,541,552,560,508,519,509,509,514,515,501,510,523,468,458,460,461,468,457,453,462,458,458,488,484,488,481,476,479,478,550,557,557,555,562,561,534,533,528,532,520,531,534,525,534,519,549,544,541,531,545,532,535,465,483,478,483,485,471,487,475,478,482,489,479,479,476,477,531,515,516,521,521,523,518,524,524,518,519,521,542,532,535,532,536,531,527,529,539,537,536,531,557,575,572,565,553,577,562,574,566,557,568,517,505,509,503,514,512,507,514,538,526,533,528,529,534,531,530,532,533,528,532,534,531,524,534,526,532,543,532,544,543,535,546,543,533,535,532,537,537,533,530,533,560,545,544,543,562,553,549,549,543,549,555,472,496,546,545,544,532,547,538,530,540,558,548,558,550,545,548,550,547,554,549,548,548,550,552,540,548,550,563,561,553,554,548,509,496,515,529,517,517,523,516,516,521,520,516,573,570,567,567,532,538,535,520,530,521,535,528,510,506,511,512,518,511,513,500,511,499,506,501,502,503,505,502,499,504,503,502,503,503,497,497,497,453,474,466,467,473,468,471,474,465,452,444,459,454,460,461,454,459,461,450,459,539,547,531,550,537,547,544,541,539,535,534,550,541,510,517,511,520,505,517,524,514,512,510,513,538,528,528,528,527,537,535,533,536,534,528,524,528,529,522,523,519,528,525,561,551,549,542,509,498,496,493,497,499,494,500,498,497,509,489,500,496,509,495,500,536,530,531,527,523,534,524,540,541,532,535,523,516,530,537,550,556,546,539,556,557,545,545,545,494,493,497,499,493,498,501,498,497,485,494,490,499,493,500,504,504,505,504,506,502,506,505,502,498,507,537,535,535,542,532,535,541,537,540,537,536,530,544,542,541,530,564,565,567,571,563,553,490,507,489,497,501,493,506,496,490,504,504,494,508,499,507,534,543,563,545,540,544,544,539,543,538,541,538,546,582,571,575,565,565,570,547,546,558,509,523,536,508,502,508,504,504,511,506,506,510,508,505,494,497,507,494,495,497,497,500,478,482,483,486,481,489,485,483,482,485,485,487,479,485,474,477,471,472,472,474,466,471,477,528,552,547,553,559,552,557,549,538,548,526,515,523,516,508,518,523,517,515,521,556,547,546,546,549,551,548,577,561,570,572,567,567,570,570,564,574,565,569,570,522,525,524,524,512,525,522,529,522,528,531,522,516,527,523,521,538,515,508,509,504,511,514,507,497,498,484,484,479,478,482,492,486,458,478,477,475,477,482,472,475,479,476,472,476,478,477,484,471,475,482,471,467,474,477,477,477,472,477,471,481,472,509,515,514,506,511,511,501,510,509,505,544,525,520,519,518,528,524,530,527,522,526,518,514,525,548,557,566,559,566,528,532,525,532,538,523,482,482,471,481,469,476,477,476,485,476,485,474,483,487,563,561,558,548,567,557,554,550,552,552,570,565,573,569,577,571,570,530,521,521,509,525,536,509,491,489,480,495,488,488,488,498,491,496,494,465,459,465,450,464,463,472,459,466,456,454,468,474,483,492,492,486,499,492,482,495,489,504,496,495,481,491,492,480,548,533,539,542,541,538,545,543,545,543,539,535,562,559,556,563,566,555,563,566,521,529,523,532,534,530,527,535,524,532,528,537,543,512,529,520,519,522,516,528,524,529,524,523,524,522,529,524,546,517,524,531,458,479,475,473,470,473,485,563,564,580,576,573,575,595,589,591,598,581,533,536,522,519,525,528,516,585,585,581,571,591,592,583,573,582,594,571,580,582,516,502,497,508,511,499,514,526,538,524,533,532,527,532,533,534,537,534,532,532,529,533,529,540,538,543,546,537,541,550,537,538,544,539,542,556,551,553,554,550,551,553,547,513,499,514,518,524,512,516,519,514,528,520,462,468,470,470,469,469,471,470,470,472,478,467,473,558,544,566,543,552,552,561,566,536,555,548,484,485,485,484,498,494,502,490,475,493,484,464,473,468,466,563,558,558,552,555,555,560,568,527,522,509,521,518,525,522,524,524,520,553,557,541,547,545,544,547,537,546,547,551,570,565,571,576,577,560,585,567,565,572,574,577,573,573,575,584,568,573,525,534,532,530,538,532,530,530,525,533,529,541,503,504,511,512,507,510,506,507,516,503,500,503,508,504,488,492,481,477,485,475,488,478,491,486,475,452,456,494,509,499,501,502,498,506,496,507,500,569,564,572,560,572,569,567,566,564,574,572,570,567,547,551,549,547,552,555,557,495,493,491,499,500,500,490,499,500,499,497,488,488,496,494,497,495,491,575,521,534,494,493,500,494,492,504,495,494,492,479,479,486,483,480,475,464,466,471,473,476,482,481,480,491,480,553,578,559,575,558,573,560,567,509,515,518,516,523,512,515,516,505,517,516,516,495,508,501,507,501,509,509,506,505,505,505,507,510,507,524,531,525,528,522,520,526,524,524,526,518,517,530,534,532,530,535,529,537,531,530,533,535,524,537,540,530,549,548,551,541,552,534,540,544,495,490,490,493,503,492,483,507,493,542,555,547,557,549,549,556,541,558,541,550,552,562,557,555,559,496,514,519,509,524,515,530,512,510,526,521,510,469,467,470,476,473,471,483,472,476,481,466,484,478,476,474,481,480,476,470,470,475,473,476,481,471,472,467,475,485,479,478,484,475,477,477,477,477,480,477,497,492,495,496,500,491,535,573,564,556,568,571,551,582,568,573,547,569,550,569,536,528,543,528,536,534,533,538,535,534,532,534,567,571,560,563,560,571,560,581,564,580,567,561,538,486,478,475,475,491,486,484,489,487,493,490,589,550,555,564,562,561,568,569,560,566,461,489,483,492,496,482,486,489,481,486,488,485,489,489,490,493,471,477,504,467,476,475,476,481,471,493,483,476,486,479,481,474,549,547,551,554,566,569,571,530,528,516,519,522,526,527,561,579,577,571,573,578,555,567,574,577,501,533,532,515,531,522,527,511,519,533,523,493,499,490,487,495,495,503,504,497,509,537,560,561,557,561,478,488,497,494,481,503,485,494,493,464,459,466,467,469,468,463,458,466,552,557,562,558,556,555,558,534,548,549,546,554,555,548,557,550,530,488,486,468,485,483,482,473,483,472,470,548,550,548,552,535,544,547,535,537,549,510,502,504,497,490,504,499,504,496,503,503,573,596,596,593,566,553,557,555,551,558,551,551,547,547,557,542,551,537,544,531,488,485,495,482,481,498,482,480,485,482,481,489,483,484,486,486,488,489,490,481,500,491,494,495,501,497,491,494,497,492,493,494,496,492,491,497,496,489,490,505,496,501,497,503,498,471,469,466,476,478,467,471,476,462,465,466,457,458,471,457,530,545,548,541,553,521,519,518,518,513,515,512,519,514,509,515,512,515,547,580,567,572,579,573,576,573,564,539,518,521,503,505,507,502,503,493,504,497,503,512,505,515,508,514,496,488,495,499,500,500,495,505,498,466,469,460,470,469,462,472,466,471,457,446,462,466,450,455,466,463,452,463,463,455,566,539,539,545,551,551,559,549,559,541,484,500,515,504,515,487,502,512,502,510,501,565,557,548,551,561,559,549,555,497,492,499,486,495,502,496,497,500,505,501,503,496,498,447,453,465,454,451,465,449,515,506,513,500,503,507,507,500,500,516,512,511,502,512,509,500,549,551,547,546,534,544,551,542,544,544,544,544,498,522,520,523,507,522,523,513,508,508,506,511,508,577,553,566,561,564,562,558,491,501,507,507,511,513,505,574,565,561,562,567,565,567,559,511,534,535,534,521,540,525,485,502,491,488,505,607,593,582,558,549,549,548,552,537,549,551,548,533,527,529,536,527,531,528,536,534,536,532,510,523,515,518,521,520,515,523,538,542,535,537,565,558,554,551,562,547,485,508,498,505,522,507,502,498,505,518,447,464,456,455,454,465,465,447,503,488,483,489,491,498,487,489,500,490,476,490,482,484,494,490,486,492,574,578,556,574,574,559,574,568,594,526,507,499,511,511,509,508,511,519,511,513,551,586,562,573,567,561,580,566,564,475,491,493,549,540,548,533,554,558,553,562,553,519,519,509,516,511,505,532,546,570,581,578,571,583,563,577,562,566,578,576,572,578,567,529,527,526,531,532,528,523,533,532,520,540,503,507,512,524,507,511,505,513,504,512,500,499,511,505,505,502,505,493,499,496,502,499,505,500,494,500,495,501,503,502,501,503,504,510,505,500,513,488,497,496,492,488,488,490,498,497,489,493,488,493,485,482,489,493,483,488,486,488,484,482,488,487,483,475,477,473,478,473,519,507,516,515,509,519,518,510,519,512,516,505,508,515,510,549,542,532,546,552,545,547,513,506,507,499,590,582,583,587,585,579,576,598,601,582,589,516,525,535,542,549,523,522,533,479,480,480,480,468,541,554,550,556,544,549,556,551,546,565,564,560,569,568,560,569,561,559,556,559,491,500,511,511,502,505,510,506,477,492,489,490,485,493,485,492,487,543,571,564,572,558,551,557,557,554,570,566,571,509,524,517,528,517,517,510,521,505,492,499,504,449,459,456,464,456,460,453,454,479,481,486,488,485,592,560,573,580,573,549,567,574,574,571,562,527,526,528,516,545,505,514,509,512,513,516,509,509,501,495,471,484,470,473,480,480,499,486,490,492,477,485,491,494,493,483,500,490,575,573,547,581,574,579,583,571,499,503,591,577,597,589,555,559,554,557,553,548,560,549,548,550,499,510,520,510,515,523,513,513,516,507,475,484,484,480,481,486,480,485,477,472,472,463,474,471,475,477,467,467,473,476,474,469,482,468,468,473,550,540,539,563,554,524,527,531,525,524,524,517,571,562,564,557,557,562,554,571,562,564,546,555,567,557,554,566,507,521,532,526,519,501,514,518,512,518,520,515,534,483,480,488,481,488,484,487,488,482,492,492,495,482,489,481,567,564,572,565,559,562,557,523,514,516,515,511,494,486,483,495,485,484,489,482,482,489,491,490,485,485,496,496,503,496,496,496,498,493,501,500,493,506,501,508,507,563,567,574,568,572,570,567,561,570,571,496,499,504,504,501,516,504,497,515,514,520,578,558,562,557,567,554,556,571,570,536,520,529,519,523,523,511,528,517,520,514,529,521,528,528,515,468,479,482,465,478,473,482,476,485,480,476,482,469,469,482,495,489,489,494,495,487,497,597,574,570,579,569,574,565,567,581,551,587,540,515,524,517,517,516,506,521,488,495,492,493,481,492,486,489,488,516,504,506,510,499,511,504,505,513,517,510,512,538,538,520,519,522,521,522,523,527,522,527,522,529,519,569,563,574,559,567,560,571,573,569,539,554,554,551,553,547,540,551,557,555,514,506,502,512,511,491,518,507,500,512,512,466,465,466,462,470,472,471,464,465,464,465,467,468,466,471,484,461,473,485,467,478,479,481,550,542,553,564,550,566,550,557,545,564,556,554,559,555,511,524,523,513,523,517,524,518,517,506,511,505,509,512,514,510,507,464,488,485,484,478,479,463,481,484,490,489,483,490,561,560,565,553,564,545,511,498,501,471,468,472,475,463,468,472,471,467,474,464,480,478,466,464,477,476,477,490,476,480,485,480,485,479,474,573,564,566,570,549,558,548,566,586,518,513,518,517,516,515,513,485,485,482,484,490,492,484,488,505,491,489,500,503,495,492,490,498,529,537,538,527,531,530,536,540,539,563,559,560,557,567,482,516,498,507,489,477,494,501,502,491,518,503,521,468,495,455,466,448,469,465,451,475,460,456,567,549,573,559,549,556,568,554,562,557,552,557,563,551,569,477,487,495,477,476,472,473,556,551,544,553,555,556,559,557,559,567,562,554,555,560,554,558,513,516,523,517,519,517,512,504,513,522,533,483,489,492,488,484,492,487,493,483,483,489,486,485,486,515,508,506,504,504,504,510,510,509,506,517,518,509,509,503,571,558,549,554,568,557,559,556,553,521,522,498,511,510,522,502,488,480,476,474,475,482,478,474,484,475,481,479,471,474,458,476,462,474,472,471,470,471,471,468,478,470,472,547,546,545,540,545,542,547,519,527,528,525,524,520,518,523,520,542,549,544,554,542,544,559,547,548,557,557,550,546,543,561,554,559,561,496,494,490,458,479,469,471,464,471,468,465,474,477,478,462,474,467,466,555,555,552,553,559,481,510,500,505,518,495,499,512,498,508,456,459,455,458,458,448,461,453,470,458,490,486,485,479,491,487,489,486,487,484,536,564,567,556,558,555,562,549,556,562,488,487,476,481,488,479,480,492,488,484,481,490,503,500,501,505,495,496,500,507,506,500,490,534,536,534,541,538,540,541,516,531,514,510,514,521,517,512,521,519,568,574,562,570,572,555,560,564,505,520,505,500,498,509,507,512,504,511,508,508,494,484,489,495,475,465,469,458,468,465,467,462,461,467,470,465,462,474,450,452,454,454,454,446,458,462,457,453,484,493,495,492,495,495,484,493,494,489,498,494,487,486,489,491,586,587,562,561,571,577,561,571,568,576,573,569,556,568,513,508,511,504,513,504,513,511,507,508,502,494,484,488,475,483,502,492,489,490,477,489,486,548,550,521,511,506,511,523,525,523,520,501,508,500,498,507,493,500,505,497,508,509,478,481,486,487,483,481,474,485,481,482,468,484,469,472,477,479,472,481,487,481,468,535,574,557,572,567,568,560,562,554,498,486,477,490,477,486,484,498,560,564,559,565,580,565,573,571,567,569,569,568,565,571,525,531,517,519,529,528,514,520,525,518,521,517,538,515,523,521,523,530,504,502,506,501,504,501,491,485,494,472,467,484,471,474,478,465,498,512,514,504,497,493,501,497,500,513,514,503,547,560,553,545,547,545,544,550,545,549,556,536,550,508,500,498,494,497,497,499,501,492,499,511,496,501,500,511,510,503,501,498,505,503,500,508,500,496,506,538,543,544,541,531,556,555,559,537,531,532,542,530,531,524,526,526,539,531,533,539,532,534,540,532,536,532,534,532,535,509,513,500,512,511,508,519,510,520,505,508,515,538,538,548,548,551,558,554,546,546,548,546,500,488,479,481,499,487,493,499,491,494,494,528,531,536,536,535,534,558,561,556,550,551,556,546,552,566,561,518,549,556,546,557,554,550,533,539,496,483,475,487,475,479,478,468,477,486,482,557,547,543,548,549,536,550,546,577,564,570,575,565,568,564,566,567,566,572,566,577,562,522,530,530,529,533,535,537,530,528,528,531,526,522,510,522,512,520,520,513,523,518,518,513,521,521,518,521,520,511,575,555,560,573,569,557,562,560,563,559,551,548,559,564,567,566,559,558,557,509,515,520,516,542,520,523,502,507,505,517,505,510,509,509,493,485,491,496,502,501,497,482,487,487,500,490,495,488,487,489,489,514,532,528,524,526,519,522,517,518,522,523,521,517,527,522,572,570,581,570,584,576,497,511,509,507,506,513,519,508,511,501,536,551,574,565,564,562,578,560,571,557,572,561,539,535,536,542,535,536,531,567,571,567,577,574,573,571,565,577,569,532,525,526,529,514,523,519,520,490,480,477,478,486,508,500,503,502,505,505,535,549,545,549,548,547,550,509,520,511,529,528,517,516,519,517,525,528,513,530,523,525,514,519,534,517,522,529,608,587,590,590,592,598,594,597,531,534,530,533,545,526,545,507,509,527,504,509,516,558,566,567,558,573,556,566,571,575,566,564,565,561,557,533,508,508,505,517,507,511,509,517,509,505,523,507,479,476,485,482,481,491,487,486,487,480,480,496,494,498,496,490,491,590,573,565,573,512,504,507,506,498,510,477,486,482,479,483,492,573,545,568,558,561,555,557,564,521,503,505,513,508,516,464,467,480,469,470,469,474,472,471,489,509,507,504,509,494,508,499,491,499,497,509,503,512,542,547,551,548,553,532,518,518,533,516,515,520,505,519,514,509,518,506,518,518,526,520,496,492,494,492,494,488,496,496,492,477,468,465,474,470,472,479,465,497,497,509,497,505,497,504,494,537,526,522,529,518,512,519,527,527,528,506,496,495,494,502,504,558,573,575,573,559,568,575,571,553,564,574,555,486,546,535,533,549,539,534,547,541,538,543,563,544,551,559,547,552,549,523,519,523,523,527,524,522,514,524,545,537,536,540,540,535,541,532,540,536,532,553,525,527,531,536,530,521,529,529,527,528,533,553,537,536,549,549,544,538,540,485,488,478,474,470,471,481,473,481,479,468,473,503,489,480,491,482,495,492,495,476,484,480,476,473,545,555,556,547,555,559,563,567,574,570,582,558,507,514,505,515,509,492,502,498,491,492,488,499,491,496,501,499,533,525,534,534,530,539,542,535,531,535,533,567,553,562,553,559,559,560,531,536,533,535,539,537,534,531,532,535,542,541,553,559,556,568,562,559,551,566,519,495,486,489,500,493,496,501,480,496,485,490,491,493,487,488,492,489,492,551,543,580,563,571,555,548,535,528,527,527,523,522,517,522,555,556,548,556,563,564,556,552,527,535,538,538,538,528,541,532,536,537,534,541,536,516,523,526,522,527,532,521,524,525,521,520,524,519,519,523,523,576,568,559,561,547,558,573,563,540,546,554,543,497,507,500,493,506,502,490,497,506,498,503,495,497,492,536,536,538,533,537,539,539,537,533,536,534,532,536,533,545,568,567,551,557,535,536,523,526,520,523,530,532,532,539,536,543,537,541,547,559,558,567,563,565,560,551,571,566,507,526,521,513,534,520,555,555,571,565,566,572,571,575,574,566,566,533,520,504,503,520,519,508,466,455,460,460,461,453,457,461,457,480,467,472,462,480,464,474,468,460,480,467,471,468,466,477,473,467,567,557,577,575,562,565,525,508,508,506,511,505,510,516,509,515,502,510,508,528,531,527,531,529,528,530,529,530,536,549,561,566,568,561,558,573,551,561,555,558,465,488,496,474,497,468,488,492,470,488,485,487,488,483,478,472,475,487,579,555,573,569,559,572,571,519,513,517,506,514,516,507,518,505,496,514,555,558,585,481,486,491,504,499,493,506,507,501,496,488,497,576,587,574,586,568,595,573,543,551,556,558,552,548,560,554,547,551,562,550,523,530,527,525,519,532,517,532,492,501,504,496,500,490,477,485,487,491,487,510,500,516,511,509,535,537,526,537,532,532,533,534,529,530,533,533,533,530,534,525,510,511,522,518,525,522,574,566,567,565,563,565,571,558,554,547,544,548,554,551,544,546,557,554,556,556,502,498,493,493,499,506,499,497,495,490,495,500,502,498,498,496,499,489,500,497,494,493,497,487,541,566,562,567,558,562,567,567,580,566,562,562,502,505,513,517,509,516,514,512,518,482,471,472,461,468,461,460,465,468,421,433,437,444,449,450,446,439,430,541,531,541,543,536,539,538,534,555,553,548,555,542,554,500,464,460,457,448,450,459,456,451,465,456,475,464,471,466,465,465,462,461,560,567,575,563,561,565,562,557,556,551,567,565,566,553,553,558,557,493,500,493,485,487,503,510,484,466,471,473,476,472,471,468,473,473,483,560,552,560,568,559,561,562,500,486,497,496,499,505,503,481,459,463,468,457,539,552,552,556,558,555,558,554,554,542,560,544,557,554,548,516,508,506,500,500,509,503,508,517,548,565,556,553,560,565,556,562,560,547,564,557,562,569,519,509,513,512,524,530,489,490,479,486,490,489,490,494,521,512,512,516,517,516,519,549,529,513,512,503,510,512,511,504,509,512,583,568,568,570,558,570,574,551,571,496,501,503,490,499,483,493,485,502,552,561,565,566,562,574,573,559,570,564,564,555,558,558,557,564,553,561,559,561,569,556,552,563,505,496,501,496,499,507,498,484,490,479,484,482,488,486,560,557,568,566,567,554,585,529,517,517,514,498,488,485,494,485,495,492,478,487,486,486,486,481,478,573,581,571,561,577,565,563,558,556,560,520,517,472,481,442,457,457,462,462,462,459,462,463,459,466,459,463,460,460,530,541,540,529,534,527,523,546,538,526,550,541,542,542,535,541,541,542,539,549,551,541,541,551,529,524,524,530,525,531,526,527,526,528,549,555,555,552,547,555,551,499,492,503,499,492,505,493,532,530,538,527,531,528,530,536,531,527,497,492,486,498,495,497,605,589,592,595,590,591,598,578,590,584,595,580,583,583,532,536,539,536,543,533,534,533,547,536,572,563,551,551,561,563,559,556,566,565,555,561,547,553,566,553,531,531,533,535,537,529,532,530,535,525,535,532,530,536,539,532,539,537,537,540,537,534,536,537,539,536,520,527,520,521,526,522,523,519,569,566,553,549,568,558,552,560,557,562,545,567,555,561,558,554,544,539,542,541,539,532,531,531,531,530,528,531,534,528,528,569,548,563,557,565,558,555,551,560,563,549,558,553,523,520,511,517,515,514,521,516,525,528,518,511,486,487,486,478,478,483,501,483,482,489,488,490,480,494,497,493,492,494,490,487,498,495,496,493,500,494,503,502,494,472,476,483,482,478,481,476,479,483,479,486,503,492,494,502,498,487,490,500,520,527,525,525,519,523,530,524,529,565,590,602,576,582,579,585,564,589,578,577,578,583,534,541,540,545,538,536,540,542,536,529,546,540,549,534,525,529,527,533,530,528,524,524,557,567,553,563,562,515,504,505,494,493,489,498,497,502,495,490,487,510,502,480,479,472,481,483,483,486,479,470,476,559,547,548,551,549,565,572,539,552,564,554,551,526,521,523,534,511,520,516,523,527,527,508,523,510,510,506,514,509,507,505,515,506,496,495,500,492,490,487,497,495,493,490,459,456,454,454,456,454,485,468,469,468,470,461,483,463,462,476,473,450,464,460,598,518,531,538,536,543,535,533,528,535,537,534,530,535,533,557,540,544,559,555,562,563,547,561,563,545,558,512,503,521,505,506,508,509,508,515,557,550,558,544,565,551,564,552,570,494,503,491,489,498,492,488,495,494,495,496,484,489,495,496,492,496,506,499,504,504,547,567,554,577,596,571,566,488,500,499,503,496,492,519,508,494,500,496,508,497,516,500,499,493,487,504,489,483,487,485,589,604,606,596,578,591,590,594,601,528,548,546,470,476,474,478,485,469,476,479,472,489,489,480,542,540,539,538,542,556,555,564,552,554,559,553,569,549,562,545,549,541,543,542,559,554,545,468,477,469,472,489,558,551,547,552,558,549,560,549,561,559,562,547,556,560,553,561,564,552,556,509,511,516,507,501,509,530,483,491,486,494,494,483,484,482,489,480,478,479,476,471,467,468,483,564,551,543,548,547,543,546,546,534,522,519,519,519,513,551,551,554,550,543,551,548,555,542,557,553,544,556,554,541,550,551,547,552,555,557,552,554,520,527,528,523,522,533,529,495,492,500,491,508,505,490,604,595,591,604,592,599,594,587,593,540,533,543,537,541,529,568,554,562,556,557,557,557,561,571,560,569,531,523,521,527,559,552,553,559,554,566,559,558,550,566,554,557,550,557,539,531,536,535,532,542,538,542,539,524,520,521,520,521,520,523,523,522,519,519,519,523,528,518,521,521,556,546,546,544,547,541,585,571,557,570,555,573,555,506,517,498,517,509,507,505,524,506,501,479,484,491,492,484,492,480,489,481,545,556,548,514,497,526,500,520,504,461,458,455,463,464,484,472,473,471,488,551,572,520,533,526,545,541,538,536,540,545,540,539,541,537,542,534,529,535,532,534,532,530,534,553,569,570,565,560,560,557,566,565,561,560,518,521,517,528,521,508,509,513,487,483,470,503,504,509,505,504,507,506,500,513,540,535,542,538,545,543,541,536,526,544,527,523,525,523,521,525,528,519,527,528,525,520,526,525,521,562,571,565,554,545,563,537,552,554,551,540,555,545,497,503,497,496,503,499,499,487,509,493,500,492,491,492,490,490,491,495,492,491,493,493,505,504,505,500,501,541,536,534,542,535,534,543,526,579,564,561,559,570,559,558,574,544,561,552,560,563,561,539,538,539,533,535,537,531,526,530,528,544,554,550,562,553,549,563,554,553,546,568,472,477,482,479,484,489,489,472,475,469,466,479,473,472,470,573,601,598,592,606,598,601,602,590,578,597,614,595,509,511,521,518,498,506,523,530,525,521,525,509,524,538,531,543,537,528,530,523,535,521,532,531,531,521,554,554,566,563,572,570,567,556,533,541,542,538,539,535,541,537,535,530,526,530,533,533,554,567,559,557,565,565,561,563,565,520,523,526,523,515,520,475,481,481,486,484,485,476,482,476,481,478,450,469,463,463,462,466,460,543,554,548,545,561,550,543,555,556,552,562,517,519,516,513,521,519,510,513,507,542,555,552,545,549,546,551,549,559,556,541,554,512,529,518,518,526,524,513,510,507,522,518,525,523,525,513,526,519,488,491,473,469,467,477,478,479,474,480,481,479,475,486,475,482,550,557,557,562,561,504,515,512,503,519,515,511,520,511,521,514,507,516,551,547,547,543,536,574,569,572,565,580,557,570,559,566,561,569,571,557,524,533,533,532,537,533,528,527,520,536,528,533,532,531,535,557,554,545,544,551,550,552,544,554,543,546,543,553,549,559,560,553,485,489,499,490,492,506,499,486,498,465,472,471,469,476,481,476,474,474,550,544,541,555,564,537,518,512,518,529,521,576,591,576,585,583,595,595,586,589,599,591,590,556,549,544,567,553,547,557,552,548,555,541,553,516,503,518,517,521,510,500,515,491,479,490,479,469,478,475,481,480,476,475,478,453,451,454,455,467,457,487,475,470,485,478,467,473,474,476,473,609,598,605,604,591,600,606,586,620,602,546,552,578,560,524,524,525,525,525,510,509,512,510,506,501,504,510,504,511,497,488,500,501,491,491,501,493,498,495,497,474,482,473,483,476,474,479,474,478,471,477,476,467,450,445,448,441,446,449,445,453,542,543,541,533,544,549,551,538,569,478,465,475,480,540,533,539,537,540,532,543,534,543,542,544,546,545,537,546,553,543,545,545,541,554,545,542,547,544,517,518,521,521,522,531,520,524,523,557,553,560,556,549,552,551,555,558,562,555,548,551,552,560,547,549,527,538,543,536,541,531,538,532,536,529,536,528,533,540,539,514,515,515,511,518,514,521,531,516,520,523,513,532,527,528,603,587,580,597,575,584,567,582,586,583,534,531,549,550,571,565,577,569,566,570,566,569,567,555,566,559,577,568,503,508,506,499,522,505,504,500,506,504,511,504,509,521,516,521,516,523,512,511,514,522,520,520,523,572,559,557,552,566,560,553,571,554,559,571,516,521,522,504,516,513,519,511,480,474,478,482,487,478,476,464,457,466,458,452,462,459,499,510,492,504,549,560,558,549,547,547,556,557,504,506,515,508,508,505,505,500,500,559,551,547,547,532,541,543,544,541,561,569,561,573,567,571,571,568,572,566,577,574,558,547,546,553,557,549,553,526,516,513,531,524,524,520,519,521,521,517,518,496,495,497,497,498,502,502,499,495,463,459,457,464,471,472,472,482,474,487,473,564,551,532,497,518,519,464,476,472,472,465,467,456,461,454,463,458,452,450,461,460,455,474,465,457,460,557,555,553,567,564,562,551,581,568,575,553,574,481,471,483,459,482,475,468,500,484,482,482,479,549,550,530,540,548,542,563,542,544,555,551,559,548,553,546,515,518,531,514,514,511,522,508,495,494,492,496,495,500,482,488,484,463,468,475,474,468,476,477,476,470,476,477,485,479,479,475,476,471,467,474,471,455,463,463,467,459,466,546,560,561,561,571,554,563,556,556,565,550,556,548,550,560,555,554,553,546,503,497,498,491,500,507,502,465,440,447,461,454,462,461,459,450,461,498,481,491,495,476,505,492,492,490,491,573,576,574,576,582,585,575,590,580,488,504,520,498,499,500,507,501,503,497,501,505,498,498,502,499,494,501,497,558,580,586,558,567,565,564,571,520,517,516,518,519,478,479,477,479,474,484,483,490,483,491,481,483,481,481,471,467,474,462,465,470,505,491,500,490,488,492,497,485,493,484,492,492,489,567,556,557,565,561,562,518,523,514,532,512,524,526,518,528,485,485,504,491,495,501,492,490,496,486,589,589,607,567,579,548,551,558,558,550,551,556,545,552,562,552,536,524,529,523,532,530,533,528,520,514,496,514,512,505,501,513,508,560,567,551,567,558,549,561,556,496,505,506,508,493,494,486,513,504,504,466,473,475,467,473,470,466,479,476,488,497,504,511,500,501,497,499,500,499,498,508,534,530,522,524,526,528,529,538,539,540,537,538,545,547,538,542,514,517,519,511,519,513,528,515,514,510,523,561,571,555,572,556,569,561,561,555,562,556,553,568,555,547,549,562,517,499,510,502,504,507,513,515,563,541,532,528,545,482,493,480,485,475,480,480,477,473,482,487,572,552,542,564,569,508,484,550,568,552,553,541,553,558,496,484,499,492,490,498,495,595,577,582,586,582,584,577,593,589,557,542,554,546,539,539,545,558,535,549,505,507,499,514,507,514,488,469,472,451,466,455,459,459,462,458,485,495,486,486,489,489,486,485,496,488,496,496,490,495,488,483,520,528,536,511,491,497,488,492,501,492,494,488,550,557,562,572,553,564,560,511,523,538,514,482,480,488,485,491,482,484,490,488,483,486,494,495,494,496,493,494,496,500,501,492,495,515,507,509,508,507,513,515,510,506,538,531,530,518,512,521,530,518,521,516,518,523,531,541,533,533,534,533,524,532,534,537,530,531,533,538,568,569,563,567,567,561,568,532,541,528,530,524,530,528,534,532,537,514,507,513,517,510,509,511,513,505,508,525,567,546,559,561,563,559,574,564,520,516,507,520,517,522,501,532,519,525,510,514,495,490,491,486,486,492,492,496,482,494,494,488,493,516,507,502,511,516,506,500,565,546,547,554,560,509,507,498,498,491,501,511,516,510,562,514,530,525,512,515,510,474,479,486,484,471,472,464,466,458,460,456,453,457,457,455,461,463,460,499,502,500,501,507,493,498,509,512,503,498,502,554,540,550,545,550,548,548,557,560,555,510,499,499,503,498,547,546,553,563,572,559,562,568,579,557,549,545,532,535,536,528,535,534,534,537,539,538,535,541,540,572,574,563,563,566,566,555,574,573,564,557,569,505,513,492,504,501,497,508,465,464,487,477,472,472,474,473,481,481,471,483,478,536,544,548,536,534,546,531,530,522,517,520,535,528,529,533,543,528,545,545,540,525,541,535,481,482,467,481,469,473,483,478,484,548,554,551,553,546,544,566,548,564,544,554,545,555,554,553,552,554,510,499,503,502,486,485,499,466,473,468,468,477,466,470,552,543,542,552,555,546,532,546,511,502,495,507,500,505,495,503,610,597,597,556,529,534,536,517,514,510,509,510,516,517,570,559,569,576,563,558,572,566,556,570,504,508,515,510,499,497,517,517,516,516,517,517,518,519,520,519,580,554,551,561,552,558,545,505,500,495,505,493,490,503,487,494,505,494,510,497,503,491,495,495,504,494,488,576,571,547,556,586,563,551,572,513,507,516,516,510,509,512,567,569,562,556,558,562,562,527,510,502,510,505,503,486,481,474,470,465,477,474,460,471,539,559,552,541,531,558,544,541,548,529,544,547,554,548,534,515,517,511,515,511,521,518,514,516,524,533,538,528,535,528,531,533,542,570,553,564,558,490,505,497,510,493,497,500,500,494,490,490,481,485,478,486,484,483,486,485,486,513,504,507,498,506,501,505,513,502,504,533,541,546,545,540,541,534,540,536,543,548,545,533,537,543,547,538,550,524,522,520,521,519,529,525,521,562,556,559,559,560,565,567,553,554,560,547,555,503,510,509,514,510,504,475,480,480,484,479,477,488,480,494,493,485,481,483,479,472,481,481,484,482,476,489,479,475,478,481,502,503,504,514,508,504,522,533,540,524,520,532,529,522,530,526,522,484,501,494,502,503,575,587,590,593,602,598,597,586,589,580,601,523,503,514,515,501,510,513,511,511,520,506,504,515,507,532,532,530,527,529,530,554,536,543,541,536,546,543,545,547,548,547,543,569,516,518,520,519,525,539,526,500,508,511,510,511,511,501,490,507,514,498,504,506,515,501,476,479,473,491,481,487,484,482,465,467,461,473,465,460,463,466,453,460,460,558,560,552,555,552,554,561,552,558,564,554,565,548,549,543,543,547,500,501,495,501,548,542,532,549,560,548,518,523,525,522,528,527,525,520,521,521,527,533,537,542,533,528,535,534,472,467,472,484,475,482,476,544,544,547,546,538,546,552,539,540,537,539,571,576,585,570,575,578,571,557,539,539,559,538,509,496,512,517,505,501,502,510,493,509,501,509,510,514,507,518,511,518,553,545,549,497,490,497,500,491,486,487,496,487,490,488,518,505,502,504,496,509,502,509,502,500,503,558,565,554,565,566,562,568,559,569,563,567,553,557,566,562,558,552,560,547,553,556,554,558,558,550,547,531,530,522,525,535,522,504,506,496,505,503,497,498,501,503,500,498,485,478,482,490,480,504,506,501,504,510,503,503,515,506,509,507,512,509,507,510,505,510,500,512,502,547,546,544,553,544,552,542,533,534,530,531,562,570,557,556,565,575,524,508,504,522,510,523,519,516,501,481,486,481,486,482,483,483,478,486,489,480,481,496,489,492,488,487,493,491,493,488,498,535,531,531,571,581,548,561,564,546,562,566,547,553,547,490,490,473,492,487,480,500,489,475,484,474,482,487,472,473,472,463,464,468,466,468,470,472,475,461,477,461,473,574,567,559,574,571,587,588,576,565,576,577,575,569,583,562,578,590,576,503,482,491,472,478,482,478,487,494,492,492,494,498,480,541,545,533,537,552,544,541,539,542,541,542,538,540,517,521,525,521,522,518,555,552,552,561,550,556,550,549,557,548,558,516,505,530,510,500,496,495,498,506,490,498,501,499,475,479,472,479,468,483,479,481,476,481,476,454,465,466,462,453,458,451,459,469,461,462,605,579,584,596,592,584,579,595,584,535,538,536,557,545,539,541,499,486,490,485,494,486,484,480,461,470,467,470,466,562,561,568,575,550,577,557,549,497,492,508,508,496,496,494,494,501,494,499,541,560,548,513,514,509,511,522,513,511,514,508,519,510,531,528,521,519,523,525,523,584,577,587,546,528,546,538,532,541,531,526,543,536,545,536,542,574,559,572,560,562,571,527,522,522,525,527,523,533,532,539,521,516,519,525,519,538,518,522,578,564,569,531,510,520,515,522,517,526,525,520,532,522,534,524,512,495,481,481,485,486,482,435,453,447,439,439,445,450,434,518,532,527,534,524,538,534,531,522,527,527,521,534,533,531,522,525,532,519,528,531,526,528,541,543,538,554,542,552,544,548,536,544,538,544,542,544,487,483,475,472,472,485,484,480,460,469,466,476,463,467,469,470,468,465,564,554,566,562,579,579,570,512,489,500,507,500,500,497,474,460,452,468,466,461,462,461,455,472,457,470,546,546,564,559,548,554,553,556,538,545,559,562,552,497,495,491,485,501,494,554,544,553,560,553,540,564,558,554,554,553,555,555,557,554,503,504,514,505,506,489,507,542,557,552,553,558,547,562,549,560,554,560,503,501,493,493,491,498,505,499,502,499,492,518,515,523,514,516,522,549,553,566,482,508,513,503,502,506,487,508,505,449,446,460,451,462,453,449,453,449,457,481,481,468,480,481,477,475,462,567,569,595,564,492,468,497,486,486,478,479,498,499,492,483,537,535,543,543,537,539,538,535,539,541,543,530,521,526,524,528,522,525,521,519,562,563,558,556,554,560,567,563,561,557,554,547,552,551,550,551,551,551,551,554,485,485,496,495,488,500,506,491,504,496,498,494,499,501,506,541,531,540,541,533,536,535,530,539,535,544,550,545,554,562,552,559,544,560,559,568,515,524,518,518,513,516,526,519,524,529,531,538,510,514,511,513,521,521,515,527,514,536,549,556,550,549,545,550,545,544,540,578,582,566,551,571,587,575,566,574,571,568,580,577,569,530,532,538,530,534,526,529,531,529,531,509,507,511,507,504,498,505,490,494,505,503,504,509,479,480,478,489,473,476,479,474,479,483,473,479,493,503,496,496,496,496,500,497,497,493,541,528,518,515,524,536,532,521,528,583,594,582,574,582,583,586,550,534,531,533,540,543,536,538,548,541,537,574,501,517,525,474,475,476,471,476,466,466,473,481,478,465,476,480,547,563,561,558,534,559,545,563,525,525,520,523,511,512,509,520,514,515,523,516,509,515,503,506,505,507,490,480,496,491,496,485,496,495,493,487,493,483,495,495,481,492,482,484,482,482,482,489,486,476,472,471,475,471,462,476,470,485,491,484,489,483,487,484,487,485,480,483,482,582,581,562,546,560,567,567,555,559,571,573,558,534,528,528,523,527,531,530,522,522,549,545,557,547,555,565,550,570,534,538,519,532,529,541,522,520,543,524,510,512,505,504,508,503,508,500,501,507,498,502,501,503,498,495,499,497,492,502,478,473,476,478,478,478,463,460,459,463,582,590,589,579,599,593,576,578,580,585,580,578,528,532,538,532,540,524,538,534,516,519,519,511,509,523,519,520,516,532,515,514,515,520,515,521,519,516,519,562,558,555,563,563,556,564,559,566,569,566,561,556,538,529,526,531,531,538,537,525,484,482,548,556,551,550,547,554,556,563,557,553,555,561,563,556,573,560,562,558,513,502,502,509,489,503,501,499,507,498,505,497,497,504,486,510,490,506,447,449,452,438,450,449,434,448,554,543,542,542,543,536,540,551,559,553,541,538,539,550,542,496,492,486,496,484,508,496,484,498,495,564,538,551,553,522,514,507,520,511,511,511,506,506,513,504,517,507,507,524,526,513,528,529,531,529,525,533,526,529,521,496,501,494,502,581,567,561,570,563,564,560,568,551,571,553,495,493,510,499,505,500,502,501,501,550,555,561,559,575,579,574,562,581,582,563,562,575,523,509,514,500,503,497,512,497,593,599,595,586,576,595,557,509,486,475,480,478,475,467,472,488,476,461,468,551,538,543,567,537,561,555,555,556,549,505,511,514,515,512,509,511,505,509,558,549,566,545,548,537,551,547,531,531,535,544,545,540,538,543,547,543,488,498,503,510,513,508,506,506,499,507,513,464,464,468,470,472,506,497,509,504,493,506,502,579,554,563,568,575,570,499,521,515,506,520,524,514,514,521,511,530,491,473,479,480,473,482,477,484,487,494,502,493,507,507,508,492,578,565,554,569,564,556,558,573,564,562,555,555,554,558,556,544,551,545,552,549,547,510,500,504,509,491,512,505,498,503,499,506,511,470,459,463,465,465,465,466,474,464,469,505,492,491,492,493,498,495,498,495,501,493,496,486,488,493,539,532,526,529,517,526,530,531,528,529,531,535,526,526,521,524,524,528,526,528,527,517,546,528,526,542,537,542,525,532,534,534,549,491,482,484,484,471,476,466,472,480,521,498,504,500,501,512,516,510,511,557,560,565,561,554,566,553,561,572,565,565,554,559,523,521,506,523,532,517,521,498,499,474,482,481,477,472,471,479,476,476,474,476,505,496,512,499,503,494,504,504,500,505,507,500,538,554,562,563,557,560,553,552,558,554,563,551,543,548,544,547,547,548,540,536,535,536,539,535,540,542,536,539,524,522,493,502,501,506,504,496,493,507,511,502,528,533,540,533,541,537,539,547,539,536,544,571,568,564,517,534,520,521,578,583,588,598,580,591,591,573,588,590,577,499,512,518,526,508,505,526,517,517,511,513,500,511,551,547,543,543,550,548,550,545,545,550,544,534,546,538,555,554,546,549,554,548,539,469,480,489,478,480,482,479,474,469,487,487,539,548,545,550,540,545,536,543,550,555,545,549,538,553,535,535,539,549,509,514,513,518,505,508,508,562,550,558,536,544,547,555,551,550,545,555,564,541,483,476,491,491,488,494,492,484,490,491,491,496,495,498,496,528,530,522,532,527,527,529,531,533,524,536,559,552,554,563,563,557,549,550,547,551,553,512,517,521,521,521,525,530,525,520,517,528,520,536,540,539,535,548,545,546,548,549,542,496,516,497,507,494,519,495,497,499,500,510,511,501,518,514,515,524,503,500,558,554,560,547,556,555,560,558,493,487,494,495,479,475,479,487,492,498,486,492,492,498,499,495,491,483,469,460,599,594,608,610,601,603,619,589,603,605,579,484,492,497,493,491,493,489,499,492,498,492,485,491,493,493,496,484,489,489,591,533,514,511,528,504,505,474,466,464,471,474,470,477,459,504,491,495,499,502,509,500,502,557,550,547,550,554,549,548,546,556,547,553,551,526,511,525,511,513,514,515,525,525,507,516,522,519,483,489,487,490,489,499,496,493,493,492,503,512,500,506,508,512,510,500,504,530,516,530,527,533,520,524,529,522,537,525,526,530,535,533,535,535,530,535,536,528,527,540,552,537,543,504,509,485,486,499,502,501,494,574,566,583,585,574,582,578,590,602,570,588,578,519,529,536,538,494,475,496,472,476,483,488,490,477,482,547,561,545,559,559,554,538,556,563,563,509,498,505,507,505,515,507,487,494,512,505,507,476,481,477,487,482,490,482,575,550,554,551,541,564,553,558,547,536,550,514,511,519,509,520,509,516,507,518,572,569,576,514,505,494,519,520,503,505,492,501,505,505,496,507,508,515,514,539,541,550,551,538,543,542,540,540,542,541,557,549,552,558,555,560,558,561,557,548,558,555,559,563,520,529,530,522,521,553,557,561,550,555,561,555,556,553,526,532,527,536,531,516,530,535,517,532,516,525,529,530,519,512,516,548,556,557,558,555,560,557,559,552,562,551,550,549,553,531,533,537,532,533,534,535,530,536,530,527,524,528,521,529,525,528,523,544,535,539,538,534,529,534,528,535,491,500,505,498,502,501,503,508,506,502,507,503,495,500,503,537,535,538,524,534,552,559,542,550,550,562,553,496,503,503,486,503,496,495,496,504,496,482,491,483,487,487,488,486,537,535,534,544,530,540,549,525,530,531,569,566,569,574,567,576,569,568,570,574,567,566,574,562,570,520,529,511,511,533,516,520,484,481,482,488,482,490,479,490,480,477,484,486,515,498,504,499,506,498,495,490,505,505,497,498,497,500,491,503,502,504,568,562,524,520,530,531,520,524,490,499,500,503,496,492,541,572,556,558,540,565,562,563,557,562,512,504,556,570,552,550,570,553,575,557,554,561,558,553,556,488,500,487,493,480,496,484,509,483,494,497,496,593,578,589,593,583,582,578,597,583,592,542,560,552,550,552,554,559,551,550,553,557,551,561,530,518,520,525,518,515,526,519,498,490,498,506,494,489,480,478,486,475,472,504,472,484,483,500,487,475,485,487,487,565,595,583,589,586,594,594,587,606,591,585,594,595,567,544,550,562,555,549,514,492,498,493,501,496,501,498,497,493,508,493,504,495,537,532,540,541,538,531,536,543,528,532,538,527,541,501,496,500,496,497,505,499,497,498,563,553,554,577,552,557,566,567,547,562,575,495,473,475,481,483,478,462,488,489,517,518,521,527,525,520,522,524,533,524,521,523,531,531,540,541,537,544,543,555,561,534,551,557,551,535,488,480,484,476,464,472,473,484,548,549,550,548,549,549,546,544,555,547,547,558,557,548,554,551,553,560,548,559,554,548,495,499,501,516,506,497,488,508,510,502,509,507,515,508,514,508,579,563,554,562,562,548,559,546,542,561,533,532,534,543,531,546,500,501,484,488,476,481,482,480,487,480,493,482,479,490,493,485,479,479,478,479,493,517,512,507,511,564,566,571,567,564,572,564,561,571,514,517,532,514,487,481,479,483,482,481,480,483,471,483,475,474,486,477,559,551,549,541,564,563,545,548,577,553,549,557,551,551,490,503,504,506,496,588,578,602,596,601,592,602,585,579,533,524,546,531,526,541,535,538,540,538,535,545,534,534,520,544,550,565,504,506,510,508,514,505,493,564,557,551,554,550,544,564,563,557,555,559,564,543,504,514,460,462,459,449,455,477,472,468,472,479,479,479,466,471,469,473,467,464,477,560,563,555,571,581,564,555,569,519,512,517,521,543,541,545,530,540,528,534,568,557,562,557,561,514,509,519,509,510,508,513,522,503,583,570,560,561,558,568,566,505,517,490,492,506,494,486,502,492,488,498,491,504,497,495,594,583,589,583,571,576,574,568,580,573,588,521,539,540,532,541,539,539,532,531,534,528,536,532,531,526,526,520,520,533,532,524,527,525,524,522,531,529,549,546,543,544,542,547,540,542,547,544,546,516,500,506,499,502,495,498,480,472,473,465,466,469,472,473,458,472,458,482,467,472,462,471,468,470,467,470,569,542,533,547,543,565,546,468,478,492,482,482,481,475,471,474,496,482,469,472,483,486,502,499,497,496,498,505,495,496,505,505,526,543,529,529,539,542,532,529,542,521,520,520,525,523,520,518,521,522,526,518,523,520,522,523,553,556,551,554,557,540,532,530,529,533,534,527,527,525,518,521,521,528,525,514,524,523,577,561,564,572,562,565,556,575,562,568,561,535,538,527,530,526,530,528,523,524,524,520,534,499,489,492,493,499,498,491,483,583,574,584,573,577,591,605,600,559,568,554,560,566,498,485,490,490,480,494,493,492,559,576,561,568,572,567,560,558,568,571,566,565,515,514,521,504,519,513,513,499,504,511,495,500,493,496,499,496,499,498,494,496,494,491,498,495,551,554,547,546,553,550,554,548,553,547,517,515,558,560,552,552,560,552,559,556,548,552,553,546,542,537,535,554,543,505,499,493,549,538,564,544,539,527,563,500,480,491,499,503,495,497,499,498,483,494,490,580,582,599,607,592,592,589,591,588,593,596,595,589,597,538,554,553,546,530,532,537,534,540,535,532,534,537,531,537,583,567,557,569,571,557,563,555,568,555,561,564,501,521,518,519,510,513,513,513,519,508,576,560,567,571,568,562,553,563,573,479,483,492,483,469,485,495,478,458,449,458,447,454,458,445,443,451,444,453,452,539,531,524,532,520,530,535,523,534,529,532,561,570,554,576,558,562,555,560,577,551,564,561,568,561,541,530,542,524,526,530,536,524,513,516,517,512,513,513,517,504,512,499,510,508,540,554,549,561,552,567,551,550,547,551,561,539,545,546,545,544,553,536,540,535,519,510,499,500,508,493,486,489,486,473,487,490,491,488,485,483,480,486,491,503,504,507,498,509,505,502,494,486,505,497,493,495,496,492,476,474,472,480,480,467,459,467,472,463,461,479,592,599,583,595,584,587,592,582,559,539,548,539,525,540,543,536,493,490,485,490,491,492,493,497,485,497,485,477,482,491,472,554,554,544,554,503,502,501,503,498,504,512,506,503,503,505,495,591,565,569,566,585,589,573,566,566,580,576,489,468,497,489,495,483,475,473,475,519,524,520,535,514,516,525,520,516,541,543,544,532,545,544,536,540,549,547,553,557,559,551,554,511,506,498,501,502,501,470,455,462,452,472,460,465,487,513,501,513,495,504,502,511,511,497,511,505,526,530,541,537,543,538,540,550,511,506,502,511,511,500,499,502,503,499,508,510,499,549,538,535,546,484,484,478,510,509,494,509,506,509,498,496,490,501,537,531,549,545,536,538,539,529,533,544,532,533,510,508,508,507,511,513,554,555,552,576,568,554,559,560,559,563,488,492,509,505,506,501,515,502,491,505,502,458,460,456,453,452,461,467,461,461,454,468,513,504,505,516,515,513,513,503,505,569,553,558,553,561,555,557,563,562,557,509,497,514,500,513,502,514,504,501,454,460,466,464,468,471,467,460,457,454,470,467,467,463,463,467,464,463,458,459,454,461,454,460,463,461,460,538,550,562,577,565,569,548,542,572,567,551,547,545,553,554,540,487,472,489,465,468,468,473,478,470,476,479,543,544,543,548,546,540,538,543,542,556,545,563,559,553,539,547,547,491,481,482,488,487,491,488,495,565,557,569,568,556,565,559,557,577,561,564,572,578,577,566,566,577,566,581,521,527,510,521,527,528,523,530,516,536,533,525,483,478,483,488,492,484,478,486,489,483,484,491,498,500,494,498,494,492,571,581,567,569,570,566,554,569,567,556,526,523,515,510,544,516,495,492,500,505,497,496,498,494,494,492,493,492,490,490,497,496,497,500,491,493,476,485,478,475,484,491,482,477,486,480,481,481,479,486,496,492,505,497,503,489,497,491,486,561,569,564,575,574,559,567,576,557,556,565,494,522,508,501,504,512,509,502,509,500,498,511,508,500,544,546,552,547,557,541,535,543,506,499,514,505,520,508,500,505,515,497,510,518,514,514,500,519,520,554,545,548,544,554,552,557,501,501,509,507,497,496,501,496,504,498,515,522,513,518,511,503,518,517,517,515,521,512,514,507,573,563,565,564,573,569,575,559,579,530,528,530,529,526,533,538,531,523,527,528,501,517,508,503,508,500,500,499,496,505,503,508,502,506,506,507,506,498,499,504,499,502,500,503,501,500,503,503,502,505,504,504,497,502,497,498,504,503,500,502,502,474,487,489,485,495,487,488,495,484,481,489,487,494,489,488,492,452,465,469,462,470,470,472,459,454,462,454,460,462,467,447,449,451,442,454,453,443,461,454,453,458,455,459,499,509,498,508,547,545,549,552,547,539,548,549,536,531,551,561,555,566,560,551,555,559,563,554,504,517,518,522,524,529,520,524,524,518,476,488,482,476,474,482,480,488,462,465,465,464,469,469,464,468,468,556,556,563,567,567,557,558,540,559,561,562,553,575,558,566,512,505,511,564,565,555,545,561,567,552,565,541,564,559,495,498,508,503,501,502,501,500,488,492,503,506,506,508,504,500,504,508,509,516,504,513,504,505,509,511,503,505,511,505,509,507,502,531,536,535,523,529,528,529,523,531,527,528,539,538,541,531,538,529,540,540,535,535,536,535,545,544,552,562,558,550,546,568,558,549,554,546,488,497,499,500,497,498,486,476,461,465,472,469,473,467,584,555,554,574,564,567,565,556,557,567,563,566,572,564,563,558,558,560,560,556,554,561,569,564,570,497,494,505,502,498,508,499,494,503,501,504,510,509,534,529,538,537,536,532,534,535,534,532,537,527,572,549,548,553,557,549,564,555,565,518,515,515,512,511,510,510,508,518,513,507,515,508,509,520,504,498,500,503,505,498,508,500,499,496,499,498,496,504,496,549,540,542,536,535,538,534,564,569,564,579,574,574,562,562,575,548,560,550,549,498,494,489,494,502,509,505,506,503,506,512,505,556,566,586,574,577,557,568,566,548,566,575,566,561,555,553,554,555,550,551,548,551,552,477,486,483,492,480,466,464,461,465,468,466,459,471,556,557,558,562,577,553,554,547,555,561,552,555,556,486,490,487,490,483,487,494,479,556,561,566,557,552,566,565,561,561,560,564,561,500,504,509,500,504,498,492,508,501,509,507,498,520,520,520,525,519,514,563,572,560,560,568,539,563,569,569,568,559,556,558,560,563,489,494,486,486,479,492,507,482,486,495,469,537,536,524,534,534,536,534,517,521,533,534,535,532,538,538,530,526,538,543,547,557,540,539,544,542,549,539,524,520,531,533,523,525,522,515,547,551,554,537,535,531,535,531,535,536,533,524,538,538,536,539,527,537,531,536,530,512,519,523,520,529,517,521,518,526,561,546,549,556,545,537,533,537,541,541,538,539,536,544,538,514,512,518,507,515,510,512,520,507,517,505,517,519,512,510,507,501,519,511,568,555,563,563,568,569,563,564,567,560,552,552,553,553,546,515,512,519,517,520,516,526,512,485,492,490,487,489,482,481,463,463,464,455,467,463,461,466,468,470,466,469,579,562,553,557,560,568,540,558,563,559,565,575,557,549,559,551,576,568,573,557,511,508,505,507,506,510,505,509,520,513,536,531,525,540,576,550,556,557,563,562,558,562,567,544,497,503,508,508,504,515,508,580,590,588,597,595,590,604,521,510,516,512,513,512,520,516,528,532,529,535,525,532,533,529,534,530,535,561,548,558,546,545,545,554,551,546,536,554,543,552,539,489,479,491,483,483,527,529,532,540,545,524,535,538,527,539,528,537,533,526,535,542,543,557,547,561,539,548,544,554,549,561,547,546,554,542,481,483,488,478,477,475,478,468,544,541,545,541,533,542,534,537,546,544,541,542,546,552,549,546,546,524,530,536,530,529,532,523,531,530,527,551,545,557,557,550,553,555,548,506,499,489,494,515,512,504,508,551,545,541,546,532,553,549,543,541,543,545,547,543,552,485,494,474,478,490,486,480,486,479,558,554,544,560,557,552,561,551,544,557,561,563,557,560,563,559,552,564,560,560,558,568,554,560,508,493,502,496,499,501,510,508,521,525,522,517,518,527,519,516,515,521,527,518,552,558,560,559,556,478,499,508,502,490,501,500,500,498,500,496,507,503,500,499,504,498,503,513,510,511,515,516,505,509,517,505,511,547,540,550,546,552,549,540,546,539,550,549,542,538,539,532,537,553,543,478,501,493,486,492,492,498,495,491,487,566,591,582,589,573,574,582,549,538,563,555,566,561,561,575,553,566,572,567,559,558,562,565,563,494,514,523,504,508,506,512,496,517,509,506,476,490,484,488,482,481,488,483,487,486,482,475,487,475,472,571,553,549,567,560,560,567,570,553,566,562,561,569,566,549,559,562,502,503,501,510,490,507,495,488,499,444,445,449,447,443,441,451,440,450,450,437,552,540,533,543,536,545,532,554,508,518,525,520,515,519,519,517,510,520,517,516,518,518,536,538,529,531,536,533,519,525,542,535,529,535,537,538,541,514,505,508,510,506,502,497,505,548,548,557,558,548,565,559,562,549,564,551,499,497,486,512,482,601,582,580,595,576,558,544,537,545,560,556,542,544,507,497,495,499,497,503,504,497,503,496,503,500,503,498,501,500,498,502,499,518,508,513,513,515,518,556,555,549,556,559,560,554,553,554,567,560,555,564,559,558,559,566,534,511,511,511,511,513,514,518,509,496,505,503,498,497,503,502,498,501,488,499,497,501,499,497,465,469,464,472,467,463,474,475,478,474,482,480,551,555,548,553,558,543,562,552,555,556,551,510,524,517,507,519,503,513,508,501,525,513,485,494,487,479,487,486,490,445,449,452,450,451,446,438,455,450,442,451,445,443,443,570,554,557,550,560,544,558,543,552,563,542,552,546,560,553,550,547,550,492,478,488,484,472,537,548,542,551,550,543,548,546,551,546,540,554,575,574,570,563,571,493,499,505,507,498,505,506,498,510,497,505,498,512,503,522,524,527,527,536,538,526,521,533,530,533,522,528,526,513,515,528,520,517,511,513,515,521,534,540,539,536,553,538,537,549,543,541,549,542,546,559,551,550,548,548,554,553,503,512,503,504,501,513,504,501,506,512,504,508,512,508,509,501,503,509,505,506,511,554,549,559,545,531,549,552,504,506,504,507,486,519,492,503,511,505,503,507,492,501,507,493,544,538,537,539,513,519,511,520,517,523,519,511,515,519,545,543,540,536,544,532,542,540,537,532,557,557,549,548,570,548,523,519,531,531,527,527,528,529,526,529,549,547,551,541,540,531,536,538,506,484,480,488,496,533,549,567,548,570,571,552,556,469,482,481,489,478,485,484,489,540,537,531,535,542,534,534,535,541,538,537,542,536,528,542,537,542,542,540,537,540,541,554,544,547,557,544,461,473,461,462,485,485,457,475,471,466,476,465,469,532,528,519,522,526,523,517,511,522,515,520,522,518,510,522,539,526,525,529,528,534,527,576,554,558,552,572,565,565,561,562,564,541,505,520,530,500,486,495,490,493,490,496,489,491,495,562,559,555,547,512,491,490,483,493,508,507,444,448,456,450,450,447,444,446,458,458,451,452,535,537,546,538,546,544,552,542,554,551,556,555,553,533,556,485,460,473,455,482,456,462,465,468,466,477,467,526,528,528,535,558,564,553,562,573,550,549,544,545,552,547,539,542,547,496,454,454,453,457,457,459,461,460,467,464,462,459,516,504,500,506,501,505,512,514,508,563,561,574,566,498,498,504,502,492,491,491,497,499,494,503,501,488,482,492,478,491,485,495,498,564,543,568,562,563,555,557,561,543,546,477,496,488,489,472,484,473,492,484,483,499,500,500,506,502,495,497,498,495,499,502,534,543,544,532,539,524,542,535,539,514,508,508,501,512,515,504,510,500,504,508,504,509,508,506,516,509,500,509,543,564,561,551,553,559,561,549,560,564,527,512,507,501,508,534,490,487,483,480,488,494,484,491,490,492,486,483,482,469,471,477,470,474,474,472,472,473,483,487,480,481,482,487,490,485,486,593,594,600,607,593,600,616,594,592,610,588,599,515,512,509,502,507,509,501,527,531,529,521,530,521,528,529,519,534,525,542,544,537,536,541,547,546,546,540,539,554,544,567,558,550,548,555,552,548,510,489,504,488,503,496,519,505,507,508,506,517,518,512,530,537,541,540,543,544,550,545,527,535,534,543,530,466,451,449,454,461,459,445,461,447,525,540,538,539,525,531,532,540,529,543,569,565,568,560,569,563,571,571,563,561,569,556,542,545,553,549,549,545,551,536,533,533,534,533,527,532,541,535,529,522,507,505,504,514,510,515,515,510,515,508,514,506,510,512,512,509,554,556,531,562,511,508,500,512,511,499,514,499,525,511,593,609,613,599,600,596,594,596,585,603,558,577,565,571,564,559,553,560,559,565,528,525,507,526,518,527,523,524,525,512,526,523,512,496,498,503,498,496,500,505,496,499,503,504,495,482,491,491,487,483,487,482,488,482,482,486,487,485,511,504,502,506,503,515,501,510,512,513,515,512,513,553,547,561,544,560,564,558,558,549,551,560,485,494,483,495,489,499,492,495,497,495,490,493,477,479,483,489,491,486,489,478,487,479,485,484,557,576,590,565,569,573,583,572,575,567,597,588,589,467,487,468,490,488,473,488,472,486,541,539,545,536,552,546,541,558,550,542,549,542,540,542,486,497,495,504,501,544,540,538,547,554,543,536,486,460,482,475,472,486,478,490,484,484,485,489,494,493,490,488,517,508,508,506,502,508,506,512,512,501,511,511,516,505,516,527,529,526,522,528,530,531,517,522,512,521,519,515,519,516,521,525,514,518,517,515,519,522,529,530,524,532,522,529,520,522,518,526,536,525,522,531,523,527,539,531,544,553,542,548,520,506,513,514,515,521,512,522,522,527,526,532,537,532,525,528,571,556,554,548,561,546,558,556,560,547,516,530,525,522,525,530,524,530,523,523,527,526,521,528,557,544,550,547,545,515,522,526,528,525,526,550,569,557,553,554,551,564,570,565,565,554,555,571,509,507,512,507,530,517,518,521,528,520,511,513,514,513,513,511,519,522,514,539,526,536,537,531,530,524,537,536,533,528,537,479,476,484,472,485,479,484,482,484,560,549,564,555,553,552,560,566,569,571,579,569,574,582,569,572,514,515,510,491,495,502,509,495,503,500,503,502,503,499,501,506,502,495,496,496,498,495,494,564,561,578,577,568,572,561,565,568,567,569,553,560,578,581,500,512,511,511,509,518,514,521,521,564,561,556,547,562,548,538,486,484,489,480,488,476,484,490,498,490,490,498,492,508,503,543,534,530,541,540,527,533,536,531,544,543,520,504,506,508,502,531,529,527,540,531,525,531,532,537,531,545,540,530,534,512,511,517,512,517,513,511,507,520,518,512,506,537,532,532,532,531,531,540,545,535,528,534,515,516,520,522,520,512,515,514,513,513,518,519,536,526,537,535,529,542,532,524,542,540,541,540,533,540,554,577,544,567,566,558,561,553,561,559,530,531,523,539,532,530,549,545,535,552,546,546,557,546,552,540,480,473,483,475,483,486,483,483,485,459,571,587,600,585,600,572,585,589,588,589,565,553,550,549,562,545,553,551,491,491,495,492,490,489,498,493,496,501,487,487,492,490,488,565,558,567,571,561,568,576,564,563,557,562,561,572,561,565,549,560,538,530,537,543,538,531,534,532,534,530,554,505,516,510,518,522,514,523,521,524,502,523,499,481,484,489,491,491,490,485,485,488,487,488,484,481,495,503,505,494,504,502,510,507,504,510,506,505,529,527,528,536,537,535,518,524,519,516,523,514,522,527,559,561,569,565,567,569,568,560,560,575,561,548,561,559,554,558,539,528,523,490,504,504,491,491,498,454,458,468,460,461,459,453,447,450,453,454,454,446,452,451,451,460,585,563,567,534,530,527,528,532,535,531,541,517,526,525,529,521,533,524,521,521,525,529,522,548,535,532,547,540,548,487,503,486,480,480,480,476,481,481,476,480,470,489,477,476,464,463,457,456,461,449,452,459,456,459,455,456,443,455,463,453,452,458,461,461,552,558,549,550,538,543,541,555,536,558,545,494,500,501,497,497,504,494,488,495,505,480,572,595,592,517,538,528,524,537,531,528,529,527,530,488,549,563,549,570,579,558,584,480,473,490,535,520,523,528,521,531,521,511,512,517,511,514,513,514,517,516,523,532,530,536,525,568,576,564,577,574,559,570,580,559,550,549,562,547,541,485,489,493,493,496,503,513,515,508,514,509,507,512,508,537,528,528,529,524,529,537,532,536,533,532,529,533,535,536,532,534,529,552,539,554,543,545,550,552,534,540,547,544,537,567,547,549,531,469,457,488,484,476,483,553,544,548,547,543,540,545,532,551,554,546,507,517,522,520,512,515,522,521,514,511,511,509,516,516,562,561,565,578,569,570,574,572,569,570,571,567,578,510,515,513,510,517,501,520,518,464,466,473,463,469,470,457,456,461,459,466,470,453,456,547,546,547,553,558,482,493,498,501,494,516,492,496,491,490,503,503,496,475,477,469,471,481,464,469,475,474,474,467,514,513,503,512,499,504,503,526,536,534,535,540,542,535,532,536,517,501,506,501,512,505,504,505,508,500,502,496,538,556,507,520,521,524,527,526,586,563,570,559,589,573,591,574,578,584,565,564,509,512,481,508,505,505,489,492,503,506,503,463,448,452,447,441,438,459,452,458,449,443,447,465,446,459,560,559,547,558,551,556,556,558,557,550,540,540,549,540,547,545,554,495,488,495,492,495,489,483,493,498,546,555,557,548,549,551,540,549,553,548,550,549,553,550,555,556,550,524,532,529,532,534,533,533,537,536,527,535,535,533,531,553,555,545,547,548,553,556,549,556,502,504,497,507,496,499,501,506,502,544,541,541,546,552,537,553,548,545,539,578,567,571,560,573,562,552,550,563,558,560,563,521,505,505,513,500,510,600,584,582,581,587,584,586,588,585,581,583,596,580,590,578,537,539,533,530,535,540,532,528,522,532,538,527,535,535,528,498,504,552,564,556,575,562,568,558,551,564,557,561,541,536,481,482,490,497,486,483,483,481,485,485,477,487,475,476,537,554,551,552,545,563,555,566,555,564,561,562,563,551,554,491,502,494,487,501,499,490,498,492,506,504,503,505,508,507,508,502,506,502,494,506,510,506,509,506,501,510,509,504,502,547,542,537,545,538,534,534,545,542,532,537,542,533,545,546,557,566,561,566,563,573,570,529,534,533,538,570,554,562,558,562,550,550,553,563,523,514,577,572,571,572,567,574,553,556,570,562,573,565,497,507,506,505,501,511,496,517,507,498,576,583,584,575,574,577,579,579,578,588,557,540,543,537,544,545,550,562,546,565,547,553,545,496,507,506,487,503,510,496,497,457,447,450,456,459,439,452,448,458,450,456,450,451,447,454,462,448,449,562,557,557,564,557,562,557,552,554,553,540,551,545,550,541,551,555,541,467,476,483,467,476,472,473,483,482,474,472,474,467,467,478,470,472,545,560,587,568,562,576,573,571,552,588,573,497,508,495,507,511,519,515,504,520,506,545,548,551,545,550,546,538,538,553,548,473,473,490,480,479,481,477,473,475,497,516,503,491,558,563,553,546,561,548,554,561,562,471,499,496,489,499,489,488,447,461,461,464,460,461,454,459,460,456,461,528,538,538,546,530,533,536,543,537,552,548,555,556,550,545,546,548,548,544,559,548,551,550,547,551,564,517,518,524,525,522,530,517,521,518,508,505,493,502,498,497,505,502,493,451,454,467,464,460,471,463,487,507,493,492,502,510,503,496,495,548,537,537,538,547,539,472,473,482,477,475,462,468,475,535,558,544,551,543,552,536,547,548,547,589,579,565,575,571,575,548,550,545,548,552,549,548,557,548,547,540,548,551,505,505,495,507,501,502,503,496,497,490,504,497,509,523,522,524,517,563,553,558,568,553,562,560,565,509,507,507,498,492,504,501,510,501,491,496,485,518,511,511,512,506,511,509,517,512,509,512,516,541,541,539,532,540,539,544,549,541,539,537,548,545,488,503,502,503,506,497,493,492,491,499,497,498,496,586,585,593,595,601,583,590,593,578,594,587,508,515,510,513,512,511,523,512,511,512,516,504,503,534,527,542,529,534,537,537,526,521,534,527,536,533,533,534,532,531,527,543,546,539,543,546,531,557,562,554,515,495,514,508,499,503,512,500,501,502,505,511,434,451,452,442,447,440,523,517,527,527,521,520,521,513,516,532,534,526,532,528,529,527,535,530,527,530,531,537,528,531,531,574,560,540,534,536,537,526,534,521,530,532,566,563,554,563,564,566,560,555,558,572,559,553,564,551,564,559,529,534,540,532,532,526,534,528,538,526,532,525,525,536,534,546,544,536,542,526,492,493,499,499,496,497,489,499,494,494,602,580,589,583,602,592,604,553,546,545,536,537,547,534,573,555,548,566,571,557,565,567,560,566,559,559,508,524,500,513,528,505,520,442,443,444,451,446,448,461,461,464,446,478,477,479,600,597,599,555,552,553,556,556,550,550,552,554,493,490,494,509,509,500,495,503,496,516,518,523,518,512,515,512,521,507,531,516,521,514,522,516,517,512,577,574,568,571,574,575,556,564,573,517,510,506,507,477,483,481,474,489,480,481,470,484,484,478,476,472,475,484,507,501,493,493,494,495,502,499,550,549,543,557,550,567,550,552,552,554,559,557,542,535,542,539,543,541,544,540,543,532,536,521,509,496,519,513,504,512,510,549,547,549,550,555,547,549,547,533,536,540,539,544,538,535,529,542,538,553,509,510,507,513,515,512,558,552,561,551,549,551,559,551,560,536,542,535,540,528,534,539,549,536,492,500,486,490,504,465,479,475,473,470,470,469,486,490,490,493,482,495,484,480,487,488,494,486,488,495,527,521,528,525,521,525,525,557,563,556,548,554,549,562,559,545,556,547,526,509,519,519,533,537,528,530,537,535,534,531,538,529,542,523,524,520,526,524,565,506,515,510,491,507,507,485,496,478,486,490,489,478,473,477,479,477,476,477,471,480,502,502,505,498,509,500,501,498,498,505,500,502,504,495,503,507,502,504,501,496,584,575,555,568,585,573,565,574,582,571,504,522,526,524,511,506,517,509,512,513,513,512,505,508,516,512,512,510,511,513,516,511,507,513,499,508,494,491,486,485,498,493,483,484,489,485,479,488,486,490,489,465,483,477,477,483,476,555,572,555,567,564,556,556,548,545,573,557,511,508,511,507,503,509,512,514,465,462,465,465,461,462,469,460,483,482,476,480,484,492,489,493,568,570,567,566,583,567,562,590,583,560,572,571,562,588,521,521,528,517,531,526,529,536,521,503,493,500,509,505,496,456,464,468,461,462,464,455,453,470,466,467,459,455,495,504,494,489,487,509,504,507,497,502,499,501,506,491,539,550,538,540,538,542,535,545,533,554,540,539,543,542,533,522,472,473,480,539,543,539,546,546,544,542,548,543,544,536,550,544,530,562,558,544,541,545,540,549,548,545,546,548,494,485,481,493,572,586,571,589,559,586,576,584,579,534,544,532,531,542,538,538,537,547,579,564,575,575,561,574,569,572,573,564,510,532,517,512,524,510,524,514,521,526,527,525,506,512,510,511,471,464,475,482,472,476,472,483,471,454,439,440,437,430,440,447,439,436,436,439,440,431,506,490,502,497,476,487,492,500,496,538,543,539,539,541,537,544,543,538,534,527,527,527,528,529,525,537,531,530,541,535,541,539,539,539,541,541,541,539,534,530,532,460,457,475,480,482,481,537,551,542,536,550,549,570,562,557,551,575,565,573,572,501,507,505,493,499,506,505,500,507,506,528,529,537,528,523,530,535,538,527,532,527,527,526,528,529,532,527,531,549,544,546,537,551,545,540,525,522,519,532,526,542,558,552,552,549,544,507,526,509,501,524,515,516,505,526,507,472,482,492,481,476,473,486,482,479,477,487,475,479,479,481,459,431,430,434,439,441,448,443,444,552,540,537,575,568,554,566,572,573,563,570,576,565,567,559,564,532,541,555,533,546,542,555,551,493,497,505,503,504,497,496,490,493,487,491,487,484,497,490,497,506,502,503,505,499,502,502,490,506,501,507,544,551,537,539,531,543,563,572,577,566,560,565,564,563,563,560,572,571,523,513,522,525,529,519,524,528,520,512,517,546,553,552,561,552,564,544,549,545,541,521,525,526,523,526,514,527,515,554,538,536,536,491,479,486,486,496,494,483,479,477,480,492,476,487,484,483,435,452,450,461,451,450,442,441,447,441,447,450,536,536,536,539,551,533,537,519,516,523,521,518,530,528,530,531,520,523,541,545,538,545,547,550,548,501,493,498,502,505,563,540,551,547,548,541,566,567,569,567,562,562,560,557,485,496,499,511,508,494,507,504,511,507,470,465,480,460,473,467,469,593,570,557,573,571,471,476,484,466,482,470,526,525,523,524,519,517,525,530,516,528,523,517,519,520,531,530,532,524,523,529,525,532,535,535,540,541,532,539,543,544,545,542,542,542,516,496,494,512,509,513,500,513,481,497,497,469,471,462,471,468,469,473,473,462,426,437,435,435,435,443,451,439,448,446,442,441,443,534,528,530,539,519,527,537,526,528,527,532,527,528,525,530,535,522,513,514,513,513,512,510,516,533,580,566,564,563,566,580,574,570,563,572,569,562,568,543,550,546,543,545,546,546,550,545,548,522,534,523,521,523,531,520,529,523,516,533,525,478,468,551,533,551,549,550,551,551,557,565,557,556,494,492,463,468,475,474,469,467,472,461,527,540,529,534,542,521,544,546,533,536,521,516,513,520,529,519,524,520,517,517,540,535,524,518,525,543,533,533,540,549,509,543,532,484,465,468,465,469,462,457,453,458,460,467,461,465,569,549,560,561,555,554,550,560,564,562,552,553,520,526,530,521,515,524,516,528,517,493,499,501,502,500,494,489,498,499,479,482,478,478,464,450,547,552,542,546,553,538,547,556,543,536,545,541,546,539,483,469,480,457,486,478,476,469,470,470,488,478,474,482,477,478,475,482,484,477,472,544,561,570,564,564,547,570,553,555,555,561,568,513,517,518,516,508,502,507,497,480,473,482,495,483,486,481,481,488,485,491,501,492,496,497,496,496,497,501,497,500,505,491,496,495,497,495,504,498,493,496,502,477,482,506,503,545,552,548,551,544,544,540,543,532,495,497,497,487,487,503,496,484,498,494,503,557,551,562,560,576,561,566,560,486,498,482,491,479,491,486,478,498,487,497,557,561,562,550,559,563,551,559,563,557,566,556,553,549,563,556,563,567,560,555,566,561,554,560,563,509,500,495,506,506,510,507,512,491,513,499,509,502,508,513,518,517,519,516,518,551,536,533,539,549,532,532,537,534,540,530,531,536,540,483,492,496,494,497,505,496,507,482,497,495,499,552,557,566,551,572,549,568,566,499,511,500,516,501,492,501,489,494,491,501,493,490,512,512,501,505,508,506,511,502,501,510,505,525,520,538,530,528,542,529,536,522,533,527,491,494,483,497,502,502,492,498,492,488,488,489,595,577,603,595,584,596,592,586,581,558,555,555,564,557,556,565,560,565,563,575,558,570,562,562,510,514,514,508,512,506,523,512,472,477,479,480,473,485,479,478,483,483,478,506,515,512,514,497,505,515,503,515,512,542,549,545,542,474,474,484,474,488,486,478,471,472,474,476,481,483,477,526,536,532,519,533,519,527,517,523,521,518,530,518,528,531,533,517,524,525,527,530,528,531,527,530,524,526,532,525,550,535,547,544,545,530,541,550,547,544,538,542,533,544,540,545,537,545,558,556,550,555,552,561,541,500,513,509,510,498,494,501,506,506,509,502,505,502,506,535,532,530,535,538,526,534,531,529,529,536,524,530,538,530,538,543,529,532,559,556,543,558,553,519,521,519,517,524,546,550,543,544,543,551,539,545,554,541,552,545,549,495,501,496,492,494,500,493,504,498,508,509,514,504,508,507,507,509,510,551,539,537,536,535,542,534,535,534,533,542,535,578,552,561,559,570,558,574,572,562,553,565,562,533,546,542,547,542,536,544,538,540,533,541,538,539,528,530,511,528,512,517,515,516,519,535,528,537,530,531,540,534,529,534,522,518,517,512,513,513,512,535,542,535,538,551,537,543,545,542,540,544,555,570,560,562,542,549,555,567,572,564,553,562,556,575,519,499,516,503,507,510,517,507,517,519,515,505,514,577,598,585,588,593,589,591,585,589,592,586,594,586,544,542,536,540,541,547,554,542,539,551,520,522,519,523,521,518,517,518,516,521,521,518,518,561,562,558,565,567,562,563,549,554,553,551,554,546,551,551,556,551,505,496,504,499,502,508,501,497,493,511,512,507,509,513,516,513,510,509,511,508,515,518,509,541,543,528,534,546,534,538,540,535,541,536,543,535,533,539,496,506,498,589,580,584,583,554,559,553,552,565,556,494,500,496,484,493,492,503,493,500,453,458,455,460,448,456,454,457,465,463,456,458,441,457,454,461,496,513,507,505,508,490,496,490,500,503,493,498,504,500,549,535,544,534,548,536,540,545,545,543,545,543,518,517,520,518,520,513,515,518,517,513,508,550,552,550,546,555,569,553,580,572,580,571,561,567,558,575,564,558,515,497,496,503,505,493,501,502,496,495,503,498,485,482,493,485,491,498,483,493,493,546,561,555,533,559,553,557,562,564,563,569,560,562,560,512,514,519,510,520,508,516,518,510,519,516,517,513,535,549,539,543,536,547,542,534,544,521,519,534,524,524,519,529,526,528,526,555,553,551,548,564,559,564,547,566,558,475,493,483,483,479,486,493,474,485,474,473,468,484,464,460,453,460,471,465,462,460,479,469,458,470,461,466,611,611,599,550,545,539,550,548,570,580,571,562,555,567,554,572,563,555,506,504,506,513,522,515,496,487,482,483,488,492,495,486,482,482,483,556,562,566,560,570,554,571,553,488,492,497,489,497,487,488,495,487,501,495,499,496,515,515,514,514,523,516,521,523,523,525,513,534,556,551,562,564,554,560,560,557,551,560,555,556,484,477,472,475,468,478,470,480,481,476,467,558,555,556,555,561,557,549,543,569,500,505,506,517,561,534,520,536,519,514,505,516,512,506,521,525,515,469,475,473,478,462,471,470,469,461,475,455,472,472,430,436,443,444,437,453,449,443,532,532,546,539,551,540,538,548,539,541,536,530,538,541,543,538,535,537,540,530,480,484,478,481,477,482,470,486,466,480,471,480,487,488,496,493,540,528,544,535,546,537,538,541,544,548,530,526,532,526,527,529,529,535,534,535,534,537,542,504,521,507,518,509,518,517,519,568,568,564,556,560,566,563,563,561,565,515,519,530,509,520,534,523,515,493,488,487,489,491,499,496,493,496,544,536,546,534,521,559,543,546,553,557,543,546,558,548,540,543,494,485,474,484,479,482,472,481,490,492,493,492,488,489,491,481,491,486,485,493,493,497,532,533,566,567,562,568,551,558,559,552,546,554,502,507,513,516,500,503,509,516,523,510,518,492,510,498,509,503,497,505,502,504,546,496,500,494,499,512,500,502,493,508,490,482,493,493,485,486,485,499,482,488,484,486,559,570,580,509,524,510,519,513,524,512,527,514,495,479,492,490,490,492,496,488,488,492,506,501,512,506,514,515,511,501,514,509,504,555,564,562,560,569,562,561,567,553,493,487,500,505,496,499,490,464,470,473,465,467,463,467,468,476,500,493,492,490,489,489,526,543,533,535,521,531,549,502,494,496,499,504,493,498,504,528,532,541,537,535,529,525,540,530,565,543,544,538,551,567,554,497,497,486,475,476,471,485,480,473,467,494,476,487,484,490,451,460,448,442,441,447,448,452,451,448,525,532,529,534,543,525,525,525,525,525,521,527,520,521,525,531,514,522,527,542,544,541,550,543,545,542,545,540,540,547,539,541,510,516,517,516,517,511,538,553,550,541,547,551,553,553,544,502,498,504,512,508,494,516,505,505,505,499,516,502,452,458,457,455,458,451,455,455,455,456,444,460,449,451,449,451,474,477,470,478,463,479,574,562,569,551,551,554,558,554,486,490,440,441,439,446,455,444,435,451,448,445,452,455,429,447,538,542,549,550,547,547,549,545,550,536,545,548,545,563,567,567,570,580,575,568,571,503,500,489,506,499,508,495,503,507,521,507,493,548,542,539,540,543,568,559,571,559,567,556,560,564,563,527,532,535,533,542,531,535,525,528,525,523,532,522,533,540,532,542,474,471,475,476,483,475,483,526,515,521,531,523,528,525,532,524,526,525,528,524,525,527,524,536,520,542,535,535,531,547,538,533,534,533,534,537,541,541,550,536,542,547,558,541,542,548,547,539,543,538,477,479,460,472,465,477,477,479,472,482,461,470,483,472,443,446,448,434,441,446,455,442,446,541,534,532,528,536,548,532,530,542,536,539,540,522,539,543,540,542,538,535,543,539,542,538,547,550,540,539,541,519,523,520,514,522,520,526,520,521,523,523,526,566,565,556,557,557,553,551,555,539,523,525,528,533,532,529,528,520,533,527,520,494,495,496,496,497,489,499,506,512,586,599,589,578,585,608,586,569,567,563,563,562,560,562,560,553,543,558,563,567,524,519,510,513,528,503,507,502,498,506,504,497,484,478,481,480,478,506,502,509,504,494,497,500,505,494,504,501,556,550,546,537,544,542,550,552,569,559,564,552,555,548,556,564,573,557,575,518,524,526,527,521,566,574,575,569,583,587,498,503,506,508,508,500,506,508,504,494,506,497,501,522,520,513,520,516,516,518,519,513,510,517,556,534,551,540,531,533,548,543,495,464,479,499,475,480,470,546,555,554,543,560,557,550,559,562,577,569,572,564,579,583,562,565,567,507,503,501,495,507,495,493,497,497,561,553,565,569,563,562,576,536,519,518,515,511,515,513,517,514,516,508,516,519,478,478,502,488,491,504,536,536,536,547,542,555,549,490,495,493,492,500,491,488,488,490,493,492,496,486,483,489,565,571,546,560,557,562,555,573,569,496,495,510,490,500,519,506,452,471,457,455,461,450,458,450,451,454,453,469,453,451,502,498,501,493,502,499,501,495,504,502,491,548,554,548,542,555,553,560,542,549,555,546,555,554,552,557,516,500,496,513,549,535,539,533,526,529,543,533,532,536,538,542,545,546,538,545,539,535,541,534,546,543,541,540,551,553,552,548,551,550,557,501,511,488,499,493,491,487,509,491,497,465,477,473,467,478,470,462,470,464,572,577,493,465,471,475,479,491,480,554,541,542,544,550,550,550,544,550,544,546,559,549,541,549,548,492,472,498,496,480,492,497,486,489,484,491,487,497,561,564,564,564,562,568,561,565,561,554,552,556,552,545,558,543,558,555,550,556,560,556,557,556,562,549,554,518,505,499,504,495,500,501,503,512,500,508,505,497,487,487,492,480,489,493,487,482,486,486,486,491,493,524,518,512,521,518,525,521,528,523,574,588,586,564,575,584,525,531,529,522,527,527,517,541,537,596,596,583,576,581,584,598,589,595,582,563,551,555,546,547,540,550,543,547,551,550,557,519,497,516,505,502,512,513,504,496,497,498,497,505,511,472,465,455,474,465,479,440,438,449,440,440,450,450,439,429,522,539,539,538,541,545,526,531,527,528,536,528,549,540,549,540,547,563,543,550,545,553,548,537,546,549,490,486,502,485,480,482,499,475,481,493,563,563,573,584,575,595,592,582,545,532,535,537,570,571,568,566,569,562,564,560,577,522,531,512,511,526,530,522,511,492,435,454,450,459,449,460,450,534,563,552,541,564,552,571,553,556,555,557,568,552,559,561,556,549,563,556,556,548,561,548,558,558,552,560,561,501,510,504,511,502,493,503,505,517,510,517,523,515,516,520,520,562,572,575,573,572,574,569,569,532,516,535,525,515,529,512,528,533,529,526,526,502,502,508,505,503,498,501,500,501,500,498,480,480,475,478,473,481,486,480,476,486,476,493,485,490,488,488,482,494,480,488,486,562,583,559,558,521,503,508,508,507,514,498,502,510,502,514,525,519,482,488,485,487,482,482,488,488,466,476,475,482,477,477,481,483,478,477,470,478,479,475,472,472,479,485,485,483,493,488,479,479,485,475,472,482,476,474,472,472,490,488,491,490,488,485,484,489,483,482,498,488,495,492,493,491,498,493,497,493,484,485,470,468,474,489,478,478,481,475,479,480,473,469,473,456,462,469,460,457,462,450,457,460,451,467,466,465,462,483,484,484,473,486,484,477,569,576,586,583,564,585,571,571,572,572,557,558,504,494,505,576,565,582,570,515,512,505,509,523,524,527,528,531,527,532,544,537,528,527,531,539,536,540,533,539,533,528,566,564,574,559,564,566,558,558,575,568,556,569,565,531,531,538,535,531,529,535,518,515,517,520,517,511,509,519,518,514,519,560,572,559,563,551,550,569,567,557,561,559,567,563,508,531,509,508,509,527,531,518,525,530,518,478,486,478,468,490,481,479,481,470,465,458,473,466,462,464,458,588,569,586,508,507,510,503,505,503,516,511,502,525,528,529,526,531,527,526,532,525,514,522,519,525,517,522,512,524,517,524,540,535,534,532,533,542,535,532,534,536,540,533,535,540,537,548,534,540,530,536,551,542,540,538,487,471,474,474,466,477,463,475,474,480,484,491,493,481,486,500,562,560,570,562,564,564,558,557,559,578,553,553,577,551,552,547,543,553,557,557,545,538,547,495,496,493,486,492,498,492,490,499,506,511,504,502,508,507,506,508,502,506,511,509,508,539,540,525,528,512,523,528,524,526,537,539,530,544,534,530,537,535,537,535,533,532,549,555,548,544,545,546,543,555,543,541,561,552,519,496,504,510,496,500,505,501,608,596,570,571,557,555,565,552,567,567,562,560,565,514,522,525,528,532,527,526,534,496,492,497,497,497,496,508,494,502,499,483,487,484,484,487,483,492,483,485,484,487,488,483,482,487,490,484,479,486,488,479,499,475,494,477,477,485,470,483,486,557,565,557,556,560,563,565,523,517,517,515,520,515,508,509,507,495,497,499,504,493,502,490,474,461,460,457,462,460,456,455,466,459,458,472,581,573,562,566,568,565,559,537,500,517,512,516,519,517,512,503,500,492,527,522,511,514,523,430,438,440,439,441,441,442,445,446,438,435,431,443,456,465,469,471,470,465,569,553,565,558,568,577,572,570,559,564,497,515,515,514,526,532,470,468,469,463,462,469,475,437,456,448,450,449,449,437,497,509,491,506,504,496,499,504,503,497,511,567,570,563,568,535,541,530,532,526,533,527,467,477,474,462,480,474,478,494,475,476,476,469,472,487,478,544,536,541,533,548,542,547,536,545,546,539,550,542,534,568,565,565,502,500,498,492,501,498,500,496,542,541,541,545,544,566,574,573,562,569,546,532,535,534,541,539,538,525,539,515,516,510,514,514,515,509,515,506,512,518,512,516,520,515,511,515,518,516,514,520,522,528,531,526,531,533,526,529,547,561,544,558,551,564,548,505,515,515,515,511,511,504,567,563,560,555,555,557,570,551,495,492,499,512,543,540,550,543,539,547,539,542,550,543,524,509,522,518,519,520,516,515,520,523,529,542,545,558,578,546,557,558,574,555,572,496,494,519,524,516,516,510,514,502,506,509,512,513,503,509,497,515,503,507,600,599,599,593,607,609,602,605,552,553,560,559,560,544,559,555,549,562,559,547,486,490,495,516,514,519,515,506,518,512,512,510,537,484,476,468,466,463,466,481,465,476,480,472,470,464,472,483,483,477,476,477,467,469,571,566,539,563,557,572,578,574,563,501,515,518,500,565,564,563,564,568,560,560,560,559,558,552,554,556,528,508,508,508,507,514,504,508,513,507,516,506,514,503,513,487,500,487,490,487,478,490,496,489,480,483,487,480,485,497,487,492,490,487,487,490,489,485,489,489,477,461,455,461,454,455,488,488,491,496,490,491,494,483,501,490,488,526,534,532,528,534,544,533,535,562,556,563,548,559,560,562,564,544,570,549,557,562,559,559,493,486,502,496,489,502,488,496,497,477,494,491,483,496,445,459,452,467,463,466,457,475,599,581,587,587,578,585,579,568,581,566,552,560,553,533,554,557,543,561,559,544,562,551,547,555,544,502,482,496,497,497,487,485,484,467,479,478,483,482,476,480,479,546,558,560,550,561,565,559,557,554,554,530,520,517,510,509,503,513,522,520,526,521,523,518,513,520,516,519,479,484,470,486,483,437,436,435,435,437,444,460,449,440,445,452,438,439,452,445,444,442,542,535,536,537,543,534,532,538,534,532,540,542,538,543,535,543,544,547,539,544,540,542,545,540,538,546,544,554,545,554,559,554,555,553,549,553,559,556,546,562,490,500,481,480,489,494,493,564,555,550,558,550,544,475,480,507,486,480,467,486,507,468,456,459,454,449,571,585,581,584,569,588,576,506,507,508,513,511,526,523,514,521,519,522,523,520,527,520,544,543,553,565,566,557,554,561,562,555,564,555,557,565,516,531,525,519,513,486,482,484,493,493,492,493,486,484,510,492,495,491,496,493,496,497,494,538,537,530,533,535,535,545,543,563,558,571,554,564,548,554,553,559,556,499,495,510,512,501,558,553,550,557,543,555,558,554,557,542,574,551,557,548,545,483,494,501,486,469,468,474,478,479,486,472,469,472,478,473,467,539,556,546,539,471,463,482,472,477,469,478,480,503,508,508,504,513,502,507,501,500,509,508,575,560,560,566,555,562,558,560,566,558,561,558,531,528,517,504,523,515,514,531,509,505,510,524,512,464,475,483,473,477,467,472,474,473,475,473,475,472,460,454,465,465,465,454,566,584,571,590,578,570,591,518,528,523,516,525,520,514,525,517,512,525,518,517,525,568,576,579,567,587,568,578,582,579,591,576,587,582,572,576,513,529,527,529,519,527,524,540,533,513,532,517,591,591,572,574,579,576,575,578,583,530,549,532,521,534,533,533,525,532,546,532,539,532,533,516,515,516,512,519,515,516,512,521,517,554,565,548,542,552,550,565,492,512,495,503,498,498,499,503,498,504,502,501,501,501,496,498,507,503,511,508,497,509,513,509,509,552,549,543,533,553,545,543,532,539,529,548,544,577,569,517,533,524,528,530,525,491,496,498,482,489,501,503,501,496,589,586,577,581,582,577,589,584,585,575,592,586,580,597,546,541,539,547,531,540,534,549,532,536,547,546,555,515,524,518,515,514,514,516,514,518,518,546,543,541,538,543,543,550,547,548,554,550,542,573,561,568,565,574,570,572,567,497,493,506,510,501,501,509,500,504,498,503,504,497,500,508,506,499,551,561,572,566,556,502,483,480,485,476,484,480,489,479,481,487,476,484,481,488,485,484,478,486,490,488,493,595,580,587,567,569,569,570,560,514,504,495,512,503,500,501,536,550,536,543,541,537,518,515,523,521,509,518,516,518,536,539,557,538,564,560,563,553,562,527,523,525,533,528,531,554,558,558,558,555,560,563,559,556,568,564,554,562,552,564,555,551,554,544,554,544,551,538,541,551,539,481,502,490,499,489,491,503,506,502,505,505,498,498,501,500,501,496,505,501,535,535,532,542,535,550,534,530,531,535,527,528,522,529,526,553,551,550,556,550,548,512,510,512,521,526,482,479,481,462,454,461,452,462,464,467,459,465,460,466,461,457,480,488,484,480,485,481,557,572,578,568,583,562,563,572,574,557,584,567,592,575,490,497,518,512,499,510,505,505,520,510,507,501,504,513,512,556,554,543,543,534,554,541,542,545,501,495,496,500,500,505,509,505,576,582,595,592,546,541,551,538,542,544,525,537,531,535,530,532,530,564,545,557,481,490,492,494,502,488,481,491,495,482,493,513,489,504,495,471,464,466,460,460,473,467,467,456,462,467,463,461,468,465,456,564,561,574,547,562,558,555,556,556,564,562,560,556,554,570,568,509,496,497,498,497,497,502,494,494,498,503,514,504,498,505,511,510,516,508,516,509,518,519,513,516,506,513,512,546,551,547,547,543,543,538,548,547,540,554,529,530,538,536,533,535,531,531,531,549,564,551,550,511,491,510,503,488,493,478,483,497,486,470,458,460,457,462,448,457,463,467,459,463,547,547,539,540,547,544,555,544,542,543,549,552,566,567,572,562,567,563,569,578,569,568,570,566,574,572,569,574,564,566,570,558,558,550,548,541,549,551,551,552,549,550,557,484,495,490,490,500,489,475,486,470,462,463,455,555,554,557,556,557,551,547,555,552,545,495,489,495,476,480,484,500,481,482,490,548,553,548,534,561,500,495,507,502,515,509,501,500,506,506,501,499,565,551,555,567,559,559,558,547,552,559,557,549,553,540,581,489,500,491,490,485,450,453,457,528,515,522,531,526,533,515,529,525,523,528,530,532,531,526,528,524,536,527,527,528,546,552,547,542,549,541,534,544,544,539,547,546,540,521,524,522,524,516,515,514,549,553,557,553,568,552,552,565,551,556,558,551,557,528,523,511,503,508,509,501,500,499,498,508,501,500,504,496,504,499,501,469,490,479,484,484,483,490,488,479,486,481,496,495,491,493,504,499,505,500,504,497,498,501,491,500,547,552,540,557,543,540,544,551,548,502,502,499,501,506,503,542,537,535,542,520,525,533,534,538,535,539,534,538,520,540,535,531,536,542,551,546,542,522,525,521,526,516,520,518,520,521,522,520,526,518,520,524,519,549,555,539,536,533,547,544,540,517,525,516,521,530,522,511,522,511,605,585,587,592,575,586,601,588,603,596,601,593,592,557,544,551,543,551,551,543,535,521,531,517,529,528,528,476,491,476,484,485,477,479,489,482,483,555,558,560,558,552,548,554,542,545,560,563,556,549,560,566,513,487,492,505,498,500,508,504,505,509,513,502,505,510,502,510,507,500,501,506,510,513,512,510,506,507,500,533,536,543,529,541,539,539,536,537,545,542,534,505,508,509,516,515,513,504,553,558,570,571,575,562,567,503,500,513,494,507,505,512,514,508,503,505,495,462,464,459,454,461,501,499,486,509,505,495,541,539,532,532,549,540,524,512,521,510,577,562,566,571,566,579,562,557,573,570,585,560,572,560,570,528,529,525,524,532,528,523,509,535,505,517,514,516,504,511,513,517,514,515,508,510,505,508,510,503,501,504,501,502,503,505,496,500,502,496,503,499,502,499,503,500,500,495,508,501,502,498,475,464,476,477,470,474,438,438,439,438,432,436,443,436,430,436,494,491,489,483,490,485,557,549,553,545,542,547,549,544,537,541,499,499,502,498,493,503,510,494,552,553,547,555,544,563,567,577,570,574,561,535,531,541,543,537,539,537,541,544,529,537,531,542,542,562,567,569,563,561,567,506,500,515,511,515,521,513,515,518,519,542,551,541,549,534,556,537,528,514,517,517,526,524,524,524,519,557,568,556,563,561,531,535,533,538,533,522,532,479,481,484,484,469,488,480,479,491,544,552,574,568,548,558,560,565,553,551,551,550,552,558,566,559,557,565,560,563,562,558,565,557,567,567,565,561,497,505,505,501,495,498,504,502,505,503,510,525,526,517,522,520,513,518,521,524,516,527,512,514,556,574,561,566,561,558,558,569,556,549,564,563,552,574,566,559,552,562,560,496,501,481,509,488,492,485,506,493,497,490,496,495,500,492,573,562,559,555,574,502,518,506,506,510,503,506,451,540,538,544,535,543,543,547,539,548,532,545,552,534,538,530,541,542,542,547,541,541,545,551,499,498,499,493,500,497,490,493,486,551,534,544,546,541,524,526,524,522,528,523,527,524,523,522,523,529,522,525,524,531,527,523,535,536,534,542,538,539,543,538,546,536,541,538,531,474,472,476,479,478,469,466,465,556,544,538,543,542,547,542,537,540,532,540,563,556,573,576,523,536,535,532,535,536,529,468,480,477,472,481,468,483,496,491,504,491,493,495,487,494,485,500,486,494,535,518,524,514,515,511,525,527,529,518,563,587,579,577,582,580,576,579,590,575,591,582,591,573,587,577,584,582,501,526,507,516,511,509,548,542,549,547,558,548,560,546,541,549,547,486,467,482,473,465,479,468,461,545,536,527,532,523,539,533,537,538,554,534,549,559,549,555,544,496,499,510,503,509,510,501,509,509,508,504,507,508,519,520,519,517,525,505,520,510,520,590,574,585,588,570,579,574,536,533,537,542,539,540,544,542,546,533,559,558,556,552,578,565,569,491,494,505,488,497,495,498,492,485,562,559,559,556,557,552,558,554,561,543,548,546,556,542,545,556,548,552,558,552,520,528,525,526,524,525,526,520,525,522,524,524,529,542,546,536,436,453,462,468,453,450,455,454,453,513,522,522,535,516,529,527,516,518,532,520,523,516,524,532,541,531,538,534,550,540,541,539,552,548,544,552,549,548,544,545,546,545,503,511,510,504,523,497,504,505,503,565,555,499,494,496,502,503,494,496,495,495,509,497,514,518,511,519,515,518,519,505,549,542,554,549,546,543,547,540,543,543,524,526,526,524,526,526,530,535,531,533,531,533,527,535,533,532,536,535,541,533,508,501,503,587,593,603,593,595,572,540,534,532,530,535,543,539,546,537,536,534,538,511,497,506,499,510,502,502,498,508,510,516,510,501,499,500,501,546,555,550,552,547,551,530,532,537,527,539,535,536,569,562,557,557,557,566,568,521,525,522,538,527,520,520,477,481,477,487,478,477,452,441,455,435,445,446,563,562,538,547,547,533,548,538,541,548,542,540,543,480,484,470,466,473,475,467,475,478,478,482,481,478,480,476,463,481,484,558,558,566,557,563,554,556,551,553,487,500,508,506,518,518,508,500,515,516,524,502,501,494,511,455,456,454,455,461,455,459,451,451,451,455,451,465,465,459,465,464,464,461,467,453,465,467,460,463,454,465,563,546,556,548,560,558,552,561,565,556,547,554,561,552,542,555,556,548,552,554,550,549,551,554,546,545,545,547,553,529,527,532,537,545,552,552,558,561,556,557,566,561,562,556,556,557,551,555,496,499,494,496,500,490,495,498,499,509,506,501,509,506,553,532,531,521,524,515,528,506,517,516,463,483,481,483,474,480,485,481,579,597,579,582,581,599,596,575,590,590,577,580,586,536,527,527,535,530,533,528,533,533,533,533,522,557,560,559,560,559,560,557,553,560,534,534,533,539,537,538,525,530,552,555,553,553,553,554,549,560,556,555,561,506,500,502,499,499,499,515,516,508,521,513,510,505,508,507,513,521,508,510,550,542,542,542,544,539,519,503,495,497,561,551,569,565,546,560,553,556,549,519,519,526,523,518,538,537,533,532,532,533,526,525,524,528,525,526,536,541,539,537,540,543,548,539,539,546,528,535,514,521,526,511,513,510,522,522,529,516,514,553,501,502,517,506,507,509,501,503,503,507,507,508,501,505,511,507,501,510,503,503,510,507,508,507,528,522,527,537,527,528,529,529,524,526,526,528,530,527,533,533,527,515,519,520,518,521,518,526,528,526,533,526,520,524,579,570,565,575,574,572,573,574,565,573,567,576,564,566,549,557,550,545,558,556,562,555,550,555,545,545,526,532,526,536,524,539,529,530,505,502,505,497,511,506,514,514,551,561,544,537,524,538,532,527,534,525,540,525,529,528,537,530,543,544,514,515,515,508,518,513,517,508,515,510,564,567,570,562,560,579,561,567,571,499,501,494,500,503,501,500,497,508,494,569,570,570,565,573,576,557,558,577,566,574,567,582,579,574,520,519,531,524,529,536,520,532,517,526,525,511,510,506,513,501,510,502,473,475,474,475,477,474,484,481,475,481,497,565,558,554,580,564,482,487,486,472,486,476,489,489,472,473,462,473,472,461,563,555,564,553,549,573,560,565,559,571,567,522,526,527,527,559,559,568,557,547,552,549,567,553,560,559,556,558,557,521,525,503,507,507,500,506,510,505,505,507,503,506,493,505,490,478,486,482,483,494,497,499,482,486,480,486,480,481,486,481,472,487,495,484,493,493,493,499,493,489,488,462,469,448,454,464,474,471,475,473,468,476,469,476,478,467,472,580,559,555,570,557,572,581,568,501,516,498,501,500,507,513,506,542,546,543,548,550,541,542,542,520,525,523,528,524,519,523,521,520,531,522,547,540,542,536,474,477,471,492,474,475,491,472,479,471,471,468,473,473,475,474,479,463,480,470,543,543,563,576,574,574,580,577,567,539,537,532,540,541,534,570,553,574,577,583,572,510,508,506,501,504,501,502,501,511,510,509,502,506,514,508,516,509,508,515,550,563,573,562,559,564,577,565,554,557,563,538,534,528,528,537,540,533,526,520,517,511,509,570,549,553,556,559,551,559,507,498,512,505,486,495,493,500,494,484,490,499,488,492,493,537,548,541,547,535,547,535,529,550,573,570,560,491,507,509,497,510,498,519,503,501,487,482,483,484,492,483,483,480,487,480,490,478,469,470,478,471,478,469,470,472,474,487,479,480,477,487,473,477,465,600,597,600,599,604,585,529,556,532,549,544,548,552,549,541,543,558,559,540,545,489,498,493,490,493,507,494,465,474,475,478,478,471,464,448,448,460,459,469,460,450,458,475,487,486,487,489,475,490,486,494,564,563,558,549,567,555,536,531,530,529,520,523,524,522,529,531,508,522,527,476,479,478,475,478,467,471,482,476,481,468,477,466,481,542,544,527,523,531,530,523,526,537,537,543,539,538,541,537,539,546,536,536,535,545,547,549,551,548,542,543,497,493,503,501,492,493,499,491,495,498,496,502,499,492,494,543,545,550,548,526,529,526,527,564,563,555,558,557,563,562,560,568,561,558,562,509,520,522,522,503,520,531,542,525,518,524,522,532,529,529,522,523,493,493,494,497,492,496,501,482,488,466,461,460,445,455,457,453,446,458,447,456,444,451,447,450,443,569,563,563,570,559,553,563,572,561,566,585,578,559,572,565,553,562,560,576,564,568,582,576,496,487,495,497,500,502,500,489,504,502,495,505,499,471,472,467,468,460,465,460,464,457,461,550,550,557,552,565,560,555,552,566,571,568,555,556,565,563,493,500,490,499,562,561,562,561,564,560,574,560,565,557,554,563,565,556,561,560,565,560,556,568,563,566,565,511,507,507,499,508,506,503,510,512,506,513,508,508,513,508,507,508,513,508,563,558,551,564,559,561,569,554,555,556,542,540,539,532,542,540,536,533,540,534,540,549,537,536,504,519,523,511,512,516,517,509,516,523,518,516,563,569,563,591,569,563,555,569,518,527,528,520,526,500,518,523,521,529,487,488,488,486,490,487,492,483,497,504,491,500,497,499,498,495,497,493,494,502,553,563,571,563,560,566,567,572,572,566,557,556,551,556,547,548,557,546,511,523,519,525,517,497,509,500,498,507,503,501,504,484,488,494,487,488,482,480,483,487,476,485,482,489,459,463,465,461,461,462,466,452,457,457,460,463,468,466,460,455,556,548,554,550,545,557,554,548,555,546,559,550,550,546,563,552,559,558,556,551,555,553,545,557,555,527,519,528,518,519,545,549,547,554,548,547,541,544,561,568,578,569,578,577,566,571,567,561,579,560,504,498,508,504,496,502,508,504,504,502,505,507,506,498,502,496,574,570,567,575,566,574,581,562,574,556,523,526,525,517,510,507,509,514,509,506,508,513,503,508,502,499,503,512,472,476,475,476,475,485,480,485,486,489,495,543,575,573,572,577,587,564,554,579,573,506,498,510,501,511,504,488,499,539,553,554,540,557,559,559,550,556,522,518,519,520,520,517,523,508,523,533,531,527,532,530,522,529,534,526,525,549,559,550,560,556,547,560,523,523,527,528,516,530,527,518,528,520,523,532,525,512,525,554,553,564,560,558,546,560,559,556,544,517,513,556,537,528,515,520,517,496,500,492,500,495,503,493,480,487,483,482,485,482,478,475,483,482,481,503,505,496,494,504,487,565,550,574,558,558,578,552,565,560,568,514,512,493,489,494,494,488,491,493,489,488,491,490,494,490,496,530,535,538,548,536,545,546,540,531,543,569,505,499,504,516,497,500,509,497,482,484,488,481,493,481,484,490,491,514,518,515,517,509,518,501,509,515,508,511,523,513,506,507,518,508,498,497,504,497,493,500,505,494,504,501,504,505,495,486,482,480,483,491,485,479,483,487,493,488,489,511,517,514,515,513,515,516,506,520,547,488,500,484,504,498,467,452,459,467,466,464,461,528,545,563,544,553,552,552,550,564,544,557,547,520,521,517,517,519,513,524,529,531,531,528,528,527,532,509,513,513,506,496,506,501,573,559,556,558,553,545,556,554,553,557,551,488,472,469,458,457,441,457,455,458,534,544,541,541,549,544,545,545,547,543,541,540,545,548,539,545,543,549,550,547,551,537,550,551,548,550,541,554,550,519,517,515,518,510,519,514,506,518,518,519,517,511,510,511,517,515,508,543,553,537,553,541,538,545,542,493,489,498,489,485,500,489,486,489,498,491,515,498,502,501,508,500,515,499,562,566,563,560,568,566,561,555,571,562,571,566,540,557,554,545,501,504,497,489,487,493,485,497,498,486,469,475,488,482,476,476,480,484,486,471,479,480,467,476,466,468,612,581,595,594,593,599,586,594,606,587,592,602,600,555,564,552,556,560,549,540,552,555,547,552,551,553,553,553,550,553,545,548,555,517,517,484,482,486,484,481,477,477,483,486,480,482,479,477,479,471,470,468,474,479,471,476,549,547,545,545,543,555,549,540,520,523,524,517,526,523,524,527,526,522,532,540,543,535,540,530,535,537,543,516,525,512,517,508,522,515,513,510,566,555,553,559,551,551,556,554,549,562,560,562,562,562,554,526,528,523,516,531,522,521,496,489,492,495,503,495,490,488,491,492,500,514,511,503,511,509,517,515,521,511,498,500,502,503,492,501,502,501,502,477,500,502,499,507,498,498,509,497,501,498,499,493,503,499,536,546,544,565,559,556,563,545,553,549,542,539,539,546,537,546,575,581,577,570,568,583,559,572,560,580,582,573,564,503,502,494,524,485,479,477,472,478,462,470,476,483,572,563,553,562,558,562,558,567,558,553,563,557,564,557,562,512,500,496,502,512,514,510,497,501,507,493,490,487,486,486,488,503,505,497,503,507,509,494,507,503,498,502,500,501,501,501,505,502,505,495,500,498,499,503,503,502,509,502,500,501,505,505,500,507,510,510,486,483,490,472,473,482,486,487,478,494,480,480,480,460,464,469,465,471,463,465,470,466,458,497,486,490,482,533,572,573,507,518,514,510,520,530,521,522,524,519,522,518,510,510,512,508,581,577,548,567,491,512,512,508,498,543,557,569,570,557,569,556,554,545,559,564,556,520,514,518,524,519,524,528,549,557,559,560,560,549,552,553,563,560,561,565,550,552,544,559,556,549,551,525,529,531,533,529,519,517,518,527,522,513,527,498,509,504,508,507,510,506,502,510,502,495,500,492,500,495,500,496,504,497,478,475,473,480,482,470,486,478,481,507,495,498,500,504,495,503,493,507,499,512,497,572,542,555,554,561,557,526,537,536,532,530,534,543,542,510,519,515,513,521,514,520,529,588,586,580,586,580,591,580,574,577,580,581,582,585,571,579,579,531,536,528,525,539,530,556,553,551,546,550,551,558,554,518,526,520,532,519,525,526,513,520,520,554,544,542,556,554,498,500,494,495,500,507,506,503,509,500,511,505,499,548,548,543,555,563,571,571,564,575,579,560,563,563,568,502,511,519,521,529,525,531,530,487,486,491,486,485,489,491,490,493,487,567,566,572,572,560,568,570,560,555,551,549,552,551,551,539,526,518,526,528,514,522,527,518,513,536,523,510,507,509,508,504,505,510,493,482,484,483,489,489,491,482,481,487,505,509,501,516,503,497,507,510,515,560,540,546,544,552,565,565,484,497,486,489,489,485,489,493,484,494,458,442,441,445,446,557,549,545,574,561,558,563,557,561,558,560,554,562,518,525,477,484,474,475,475,492,478,483,479,481,483,482,497,479,459,466,482,462,618,592,579,603,590,579,575,594,607,540,550,536,551,540,544,555,550,551,551,549,547,547,549,553,547,548,547,533,537,528,531,533,535,536,540,531,526,529,546,533,529,475,484,472,529,535,523,528,523,533,524,526,545,554,563,560,558,576,563,568,551,559,556,559,562,555,556,560,527,525,511,523,527,529,532,523,514,529,528,524,510,511,504,513,512,516,516,510,513,515,503,496,499,492,498,498,492,497,493,495,493,463,458,455,458,459,455,460,452,463,452,478,476,482,482,488,481,481,477,475,472,473,479,477,469,476,481,557,561,567,569,565,550,513,523,517,488,514,521,524,481,491,487,481,482,482,487,473,474,479,478,474,470,476,475,474,471,476,469,470,475,498,490,487,486,485,485,489,494,489,481,555,569,561,558,571,559,502,501,495,498,504,480,500,513,518,514,483,482,473,484,478,484,483,487,476,476,479,558,554,561,553,557,551,551,552,569,570,561,562,552,499,497,490,500,491,475,494,490,499,505,483,497,485,490,497,497,497,493,486,479,459,459,458,464,454,462,463,463,468,468,461,465,462,463,553,535,534,543,532,534,531,544,539,534,543,541,535,541,537,535,540,535,538,538,546,546,539,545,537,540,539,553,552,539,540,548,541,538,552,548,545,549,546,503,502,500,503,502,498,491,497,554,537,548,513,504,516,504,514,574,570,583,574,570,586,567,578,580,512,503,497,516,508,492,511,440,449,437,448,450,446,443,456,460,524,518,522,511,527,519,526,526,520,529,529,519,521,526,529,529,534,521,526,521,525,535,531,524,565,567,556,564,564,570,557,557,562,568,537,541,535,543,542,545,561,573,576,561,571,568,572,572,567,531,525,545,528,536,534,530,526,515,505,505,513,511,505,504,506,510,515,507,509,508,507,505,500,507,500,507,510,485,488,488,488,480,480,478,480,486,502,491,483,479,485,486,476,471,470,475,476,455,434,449,435,436,449,439,437,487,477,474,470,469,478,477,472,550,574,572,573,557,568,567,560,567,583,510,526,514,524,518,529,513,524,517,511,508,469,476,465,471,473,470,472,467,467,456,461,455,440,468,456,460,457,463,459,456,552,560,563,563,549,495,480,490,488,493,495,477,490,493,501,493,500,500,587,578,593,568,591,590,580,584,596,585,576,576,594,534,551,526,543,541,534,538,535,543,527,543,540,548,580,568,568,562,567,574,572,580,574,567,568,578,573,567,525,520,534,521,529,536,525,529,540,530,525,514,503,509,510,507,506,489,485,485,488,488,472,483,459,461,459,462,448,450,458,458,465,456,456,451,459,479,465,462,467,458,475,488,481,479,481,470,472,476,605,589,611,607,608,608,531,544,551,537,549,551,545,554,574,577,577,566,566,569,572,531,527,526,521,524,529,529,538,523,480,485,479,483,484,485,488,508,504,489,504,502,505,502,495,503,494,493,497,493,557,562,556,552,560,561,562,550,568,554,548,563,562,540,532,540,544,534,534,537,534,534,534,520,527,518,515,516,516,523,518,525,525,523,524,515,523,521,556,542,549,547,561,564,566,580,570,554,570,516,532,531,536,532,518,531,518,520,525,524,533,525,504,499,506,496,497,501,500,451,473,457,455,459,457,458,459,462,500,501,504,499,495,502,496,500,509,509,507,502,500,503,505,504,488,556,565,565,557,567,567,560,562,559,550,571,559,527,536,511,524,517,521,519,520,524,522,517,526,502,516,474,472,477,478,478,481,476,480,509,509,508,508,501,503,513,510,501,506,507,540,543,545,537,547,538,553,538,546,523,515,519,520,514,515,543,537,569,561,553,553,559,562,556,560,550,551,561,559,546,558,526,536,535,530,540,533,532,542,532,560,565,556,565,564,563,567,547,569,561,557,566,557,513,518,517,513,513,530,524,507,514,518,518,525,514,521,500,496,497,505,501,502,495,498,494,469,464,471,472,462,469,462,473,466,474,466,485,473,455,462,474,465,463,472,560,546,542,548,547,511,528,516,520,517,509,511,513,579,574,573,571,581,564,561,562,560,580,575,568,537,512,527,508,532,523,521,522,525,536,515,529,534,477,482,486,486,486,479,488,484,467,465,457,464,455,460,462,465,454,458,455,463,466,503,495,505,502,502,498,505,493,494,495,503,505,497,506,564,553,556,575,560,534,555,540,546,551,542,542,547,551,552,541,547,553,546,538,553,545,555,487,490,502,502,487,480,498,495,485,487,464,478,476,481,472,480,543,536,536,543,536,557,535,552,551,541,550,539,555,544,547,545,545,543,554,524,521,518,522,529,528,522,523,525,525,530,526,528,556,551,552,549,541,544,559,547,553,484,492,494,492,486,493,492,485,480,474,468,485,547,567,557,565,561,556,553,557,550,547,551,557,553,545,563,514,512,508,512,508,520,471,466,476,477,466,463,464,469,458,463,469,464,476,442,442,446,542,524,531,535,531,528,526,534,540,541,549,540,541,527,527,521,524,527,514,525,520,527,528,551,555,553,551,546,534,554,552,555,552,547,551,552,546,506,497,496,487,489,498,487,496,502,508,495,493,491,492,493,494,490,498,556,565,571,567,566,560,577,578,573,512,506,495,508,511,511,500,503,505,508,495,513,494,508,474,488,485,478,466,470,471,477,477,543,545,546,543,540,547,540,568,547,479,481,482,470,484,480,487,498,499,496,492,502,503,496,492,505,541,545,549,533,535,533,545,538,544,481,469,474,478,478,488,486,480,485,483,483,484,485,492,476,557,567,548,551,553,563,559,560,558,553,554,566,565,548,495,494,503,494,512,501,489,498,492,504,500,505,502,490,499,479,481,490,484,487,479,481,480,482,479,482,483,478,482,489,488,487,561,561,547,572,576,551,557,527,508,512,526,517,513,514,520,516,505,508,511,491,478,486,480,477,478,479,473,470,471,460,476,472,472,467,475,475,471,474,469,476,473,471,467,450,439,437,430,427,431,441,429,445,549,541,544,545,548,538,546,538,550,548,537,528,535,577,569,571,574,572,576,564,567,565,575,548,560,552,561,553,531,532,485,488,486,476,496,504,501,499,492,492,491,499,498,497,493,502,569,561,562,567,548,560,562,571,571,567,569,566,514,504,506,509,512,515,505,509,508,502,496,496,499,495,495,500,547,547,552,545,557,544,548,544,552,542,548,548,545,537,544,552,554,505,494,494,509,502,499,502,497,501,505,550,545,546,548,542,552,547,555,544,559,562,554,556,563,556,565,569,563,561,529,521,517,530,526,522,509,519,526,527,516,530,528,525,518,520,520,591,583,592,580,591,581,578,590,591,528,525,542,528,530,530,525,528,534,525,538,563,542,559,571,559,561,517,520,550,566,553,558,563,556,559,556,545,556,559,504,492,488,495,499,486,495,485,486,505,516,513,511,514,520,513,507,518,516,505,505,515,512,515,554,561,563,545,493,487,490,495,493,479,479,549,567,534,529,525,519,529,522,522,518,522,514,526,518,553,547,553,541,554,549,554,550,554,534,549,557,489,504,493,495,496,501,494,498,490,488,496,492,494,491,487,480,485,481,482,481,483,485,477,552,547,560,549,573,581,556,567,567,559,519,523,525,509,510,514,511,506,506,508,510,504,511,492,490,492,481,492,499,484,489,479,485,481,476,477,482,478,489,494,492,491,490,487,491,485,485,496,472,465,464,467,474,469,462,472,498,497,498,487,499,493,501,500,493,501,497,507,497,494,499,492,524,532,531,529,524,523,534,523,532,531,519,525,510,490,502,497,493,500,495,503,499,499,495,507,490,544,552,554,541,539,535,522,520,516,548,546,544,552,549,542,543,531,539,533,535,587,575,579,578,573,589,587,578,508,531,525,529,521,519,518,526,521,522,516,524,481,484,491,480,485,478,474,485,489,473,471,470,457,465,472,469,567,569,562,562,563,566,561,568,574,554,558,563,559,562,521,504,501,514,502,511,513,510,508,457,452,504,506,543,532,536,545,532,531,531,529,537,530,545,543,478,485,482,476,489,479,478,484,492,466,488,558,557,556,553,551,543,555,558,552,551,561,559,559,550,570,573,563,568,569,566,572,566,572,529,516,511,527,536,523,533,521,518,520,518,506,503,507,503,508,504,497,505,478,486,487,482,484,492,479,479,487,483,485,480,499,502,514,510,509,523,514,508,510,514,549,544,552,541,539,539,542,536,539,535,550,546,527,522,519,531,527,525,524,518,523,529,522,525,523,538,549,544,539,550,562,552,556,543,549,554,536,538,538,575,580,521,525,529,524,523,538,533,518,536,508,498,504,509,510,511,482,483,486,486,487,488,484,488,493,477,489,490,488,489,492,485,506,506,505,500,508,503,543,547,535,546,533,543,553,559,491,491,487,487,490,494,498,491,489,492,501,490,500,498,500,506,511,499,498,505,505,501,510,529,531,541,540,555,554,546,545,551,544,494,478,425,440,437,443,453,444,449,447,436,437,535,544,543,541,547,542,543,505,494,504,493,520,488,486,488,512,485,511,489,503,501,467,464,468,476,471,477,473,475,464,478,473,476,469,473,479,555,571,571,547,558,564,512,518,512,514,502,504,515,513,500,508,503,517,512,508,505,511,500,516,453,460,463,460,456,453,458,461,442,450,469,458,466,463,458,459,457,571,550,575,577,573,564,568,562,569,563,572,576,570,525,516,523,514,514,516,507,504,512,514,509,508,509,505,508,505,505,506,501,506,482,487,483,481,483,474,469,463,448,459,462,462,467,451,454,456,457,500,495,499,496,507,503,499,504,505,499,503,498,548,557,557,556,536,540,534,548,542,535,535,540,540,541,536,569,571,558,576,566,569,563,571,532,507,516,513,504,517,511,500,516,484,478,467,473,475,469,470,466,470,468,478,471,472,477,496,500,498,493,497,491,499,507,511,497,500,515,502,560,506,508,523,517,506,511,512,517,505,517,478,484,477,480,479,478,503,513,503,507,511,503,506,511,513,513,504,510,507,506,546,553,549,541,545,546,548,540,543,546,520,507,518,517,521,514,515,507,520,518,514,501,516,511,506,511,563,556,550,547,558,552,554,568,555,556,559,553,563,552,574,555,555,557,561,567,562,546,566,505,499,499,496,503,508,503,501,504,485,491,497,505,496,502,504,557,585,568,553,570,567,558,580,567,565,566,512,504,505,515,507,518,503,520,486,486,485,483,486,580,582,568,565,557,551,537,520,533,525,519,512,510,508,509,513,511,515,509,507,508,501,511,505,499,503,510,497,504,504,511,498,502,497,494,473,486,480,480,478,478,488,479,475,478,503,503,502,498,574,563,577,566,576,563,571,557,557,555,564,552,553,551,553,564,552,560,557,551,538,521,522,524,520,503,524,525,531,525,523,521,511,508,536,531,471,478,477,471,477,484,482,472,478,475,473,483,481,466,464,462,558,554,559,561,557,551,555,563,552,560,568,558,559,539,547,546,557,549,548,558,541,546,547,550,541,558,514,510,515,516,520,516,510,524,514,526,509,514,516,564,574,567,571,568,584,569,574,583,571,563,514,510,506,505,498,507,497,514,505,513,498,510,605,576,582,567,572,569,584,593,588,587,556,556,563,485,500,491,500,476,483,490,479,492,547,541,540,538,540,542,535,540,539,538,540,533,542,549,545,542,538,547,563,556,561,551,550,556,555,502,504,499,512,507,514,511,506,511,588,590,592,595,597,608,551,555,561,557,543,552,552,540,551,540,565,551,556,480,485,484,486,490,481,481,491,475,478,481,485,476,484,482,497,442,441,442,438,446,446,433,440,447,442,435,437,435,446,447,540,531,527,536,529,531,527,541,525,535,538,529,535,540,540,538,549,543,546,546,547,540,550,544,549,545,541,543,544,558,547,556,549,559,555,560,557,553,554,554,553,554,523,525,516,509,533,520,497,495,494,490,488,492,493,498,493,497,501,492,497,492,495,502,496,508,511,528,498,507,497,509,496,503,514,497,513,510,519,507,493,507,500,507,491,512,482,479,484,481,486,477,474,485,483,483,459,465,467,468,465,471,465,466,464,469,462,457,471,459,565,559,562,554,565,558,565,562,559,554,555,558,556,555,562,562,506,526,500,506,518,506,511,515,515,521,530,525,509,519,511,463,476,470,467,466,473,479,469,471,469,468,460,464,454,458,464,458,467,462,470,461,472,463,551,554,545,542,545,541,540,547,556,544,547,548,474,469,478,481,479,477,480,476,481,482,490,482,495,486,486,490,496,508,499,501,502,502,502,498,509,502,509,508,548,539,551,545,535,548,542,548,541,544,569,561,560,564,564,564,581,564,570,575,571,550,558,555,554,549,530,511,503,527,525,520,469,484,480,472,481,478,474,481,477,481,483,502,500,505,513,501,497,495,496,583,574,489,497,500,494,505,515,492,493,480,470,469,576,558,562,554,558,556,565,561,578,564,570,566,571,566,562,572,572,512,525,527,525,528,530,525,529,482,486,487,484,480,481,475,495,484,496,492,482,500,570,566,558,551,577,566,543,526,499,510,478,480,477,472,477,478,478,477,482,480,473,478,485,477,483,481,480,481,478,474,498,494,494,491,560,546,541,543,545,522,529,521,519,518,525,524,526,520,521,529,516,511,606,579,587,577,578,583,585,584,601,598,545,544,533,543,547,544,545,539,537,541,536,532,557,570,564,573,562,566,550,510,512,520,526,511,509,510,518,507,456,451,458,467,461,461,453,464,505,494,499,501,505,508,502,504,512,505,511,575,568,560,547,570,571,565,560,561,563,561,557,561,524,509,526,533,535,522,511,506,498,493,504,499,484,484,472,487,460,464,476,449,459,462,464,542,541,539,540,530,544,537,536,545,540,542,543,538,540,544,543,531,538,549,515,530,515,517,522,517,522,525,521,523,550,563,559,563,562,556,514,530,523,526,527,525,529,531,533,525,530,531,526,490,476,482,470,521,516,511,494,493,491,505,503,511,537,539,548,536,544,541,538,539,534,544,542,541,532,502,514,521,515,517,517,514,515,519,521,515,522,525,517,519,526,522,585,582,572,588,576,570,585,580,593,574,583,517,516,514,547,551,553,559,546,555,554,555,552,553,552,560,552,566,557,546,547,563,550,558,491,498,495,503,494,515,493,512,509,516,513,513,531,524,525,517,522,522,552,561,553,552,571,561,558,509,492,500,497,499,487,495,493,495,491,498,480,475,480,477,475,474,555,584,550,484,491,477,485,481,486,486,483,478,482,481,487,482,484,470,487,479,489,556,551,573,573,559,572,571,567,572,511,504,502,508,504,507,506,496,510,507,502,498,525,519,524,532,527,535,535,526,532,530,525,525,527,530,529,528,544,543,544,543,547,534,550,542,539,543,536,537,541,537,509,510,507,512,511,511,508,502,503,532,528,536,532,527,524,533,529,531,539,537,539,537,540,533,538,567,561,548,559,573,549,555,552,561,553,553,523,526,526,526,523,515,579,578,563,579,568,576,573,591,570,557,571,581,505,508,511,508,504,508,506,512,479,489,488,484,488,479,487,553,567,566,566,556,559,555,559,561,562,478,493,484,511,496,490,498,499,496,458,460,456,465,462,455,456,470,470,462,446,449,463,470,594,605,577,591,586,584,587,520,539,540,544,533,545,545,484,493,491,490,492,488,486,477,480,497,510,502,502,513,509,511,502,507,504,528,533,532,526,528,522,527,532,513,505,512,508,511,515,513,505,511,551,561,561,551,572,568,565,569,560,555,558,568,557,510,513,517,514,515,515,516,512,512,514,511,509,501,457,462,472,466,469,472,466,466,472,481,471,469,466,475,566,551,565,563,572,566,507,520,512,515,516,527,521,516,517,509,504,505,498,502,504,504,503,511,498,533,526,529,528,539,533,537,545,540,545,560,558,569,561,564,556,564,543,548,557,560,499,497,510,495,504,503,462,458,449,466,465,452,461,462,466,455,463,453,466,550,549,548,552,567,563,568,575,582,578,576,576,569,564,574,535,536,537,529,533,532,535,539,540,588,569,554,567,555,568,574,558,558,566,569,560,565,571,566,574,566,511,523,488,480,488,484,488,484,481,491,481,482,493,489,484,491,457,463,462,458,461,463,462,467,463,458,457,458,463,462,456,448,459,463,459,456,458,453,460,463,464,461,534,534,529,541,542,540,538,532,538,536,531,538,557,539,541,551,544,547,546,548,550,552,544,498,500,501,505,486,499,487,511,496,489,546,540,544,542,558,553,546,544,557,539,545,513,510,509,523,513,510,511,510,513,522,507,504,509,537,539,539,542,548,546,547,545,547,536,534,535,548,543,545,563,567,556,562,560,555,533,534,543,535,533,531,535,544,537,535,534,540,535,531,570,566,550,574,556,568,554,570,565,569,567,566,573,561,559,561,568,564,561,560,504,512,516,496,511,513,504,509,497,495,483,487,488,494,489,485,491,491,488,484,483,487,480,495,484,492,559,558,569,553,580,576,571,521,522,518,534,532,525,527,521,531,535,522,520,519,531,519,507,512,507,514,511,506,512,503,499,499,499,496,496,498,485,483,486,485,477,474,471,475,476,469,463,467,465,472,543,555,550,539,541,566,550,536,535,547,520,524,518,524,516,519,523,519,525,539,547,538,539,535,544,534,545,538,535,531,571,550,558,566,561,563,563,555,559,554,561,560,567,563,512,459,471,473,457,459,460,470,464,454,460,460,463,458,553,555,563,553,557,551,565,552,547,547,550,547,558,548,545,548,491,500,500,496,497,500,503,499,506,503,507,508,512,501,500,513,501,566,552,549,549,563,550,555,497,505,506,510,505,514,496,499,500,508,515,511,510,514,556,555,547,556,556,551,556,555,553,558,556,556,563,485,490,499,493,478,495,487,491,499,494,510,500,500,501,499,490,497,495,495,501,500,500,504,569,549,543,571,578,571,586,552,559,563,561,563,573,527,531,539,531,530,540,531,530,520,527,511,498,505,501,504,502,506,504,506,500,509,506,508,507,502,506,501,478,486,482,484,479,478,479,485,478,476,472,486,482,488,566,578,572,556,553,576,515,519,523,517,510,516,509,502,498,504,501,510,508,507,509,507,510,507,508,504,491,488,487,487,490,483,487,487,491,480,493,486,483,490,491,479,488,470,476,479,478,477,480,486,478,478,478,484,475,476,478,499,586,566,573,564,576,523,535,535,522,532,530,519,531,532,529,527,519,531,493,498,496,500,494,503,498,503,470,495,502,495,498,491,491,508,499,499,502,532,534,539,535,532,535,528,530,533,517,507,507,517,508,511,508,515,511,500,505,551,561,560,559,561,520,525,526,520,522,518,525,525,570,571,579,592,569,572,571,581,575,579,563,574,511,490,493,506,504,512,490,507,503,483,466,469,478,469,469,478,458,467,464,478,480,474,557,563,577,571,566,554,555,568,559,562,566,559,555,560,565,571,571,557,554,568,507,500,500,495,491,503,496,499,507,496,477,474,477,490,465,473,475,476,480,481,542,555,546,552,555,555,544,552,549,566,550,546,530,526,528,522,526,527,529,535,519,568,516,522,523,531,526,511,510,514,515,525,508,515,501,528,511,523,473,477,477,484,474,486,485,480,483,482,483,510,510,510,527,550,546,542,541,557,540,535,552,530,528,530,558,539,550,541,539,502,480,446,428,446,433,442,441,443,442,438,428,448,434,450,443,440,524,518,524,534,517,524,522,518,514,523,520,555,547,543,546,541,553,543,553,560,547,552,560,529,522,518,522,522,525,506,516,531,521,528,525,516,518,486,490,489,483,481,482,493,489,490,497,484,501,509,506,516,502,512,508,513,509,509,513,510,542,542,511,524,526,522,523,523,522,516,525,528,525,523,522,521,556,557,553,552,557,558,555,555,550,522,520,525,521,523,517,520,523,518,529,524,477,475,489,474,479,470,479,480,539,543,581,555,566,514,510,506,499,505,507,508,507,502,503,508,501,555,553,556,555,571,566,551,550,545,556,543,562,548,560,549,504,491,495,507,498,502,497,488,494,506,504,508,506,503,504,508,537,550,546,547,543,544,537,542,582,550,554,547,564,556,518,522,510,512,512,587,578,567,565,581,572,570,585,584,577,565,498,490,479,487,498,490,496,473,549,552,553,548,553,549,547,542,550,550,547,552,558,546,553,550,549,552,498,511,498,492,498,493,500,491,486,476,482,477,476,482,488,481,480,477,488,478,481,572,556,564,554,488,495,508,502,485,495,511,507,491,482,456,454,461,454,445,540,548,553,556,546,539,541,535,552,535,538,549,495,493,492,494,496,495,485,506,498,498,495,491,495,553,552,541,518,521,527,515,540,546,542,553,537,545,538,546,547,566,571,566,582,559,556,573,577,561,558,573,515,508,491,503,510,518,495,501,518,521,517,521,510,521,563,562,560,567,556,566,556,560,557,498,508,491,510,511,491,500,498,514,503,491,502,501,504,499,500,507,502,499,502,501,498,495,504,507,514,505,513,508,514,511,508,524,523,541,534,516,532,537,530,529,525,534,532,530,534,531,542,530,523,530,525,534,535,537,535,546,548,535,532,549,553,542,546,482,483,491,556,547,556,546,552,560,544,556,563,557,556,567,559,554,555,546,529,516,529,531,520,524,519,528,523,516,521,520,531,519,536,529,535,525,508,512,505,506,503,508,493,494,493,495,496,487,492,490,488,491,486,489,498,492,498,483,503,494,501,491,498,491,497,493,495,495,500,491,493,487,503,500,499,504,505,501,503,503,507,499,503,506,505,504,503,498,503,500,507,503,499,501,500,494,496,496,490,495,492,492,491,490,491,493,473,474,477,466,471,473,470,472,463,470,475,492,489,481,483,483,487,483,504,509,499,504,498,511,504,500,508,508,507,501,508,508,499,545,553,543,549,550,553,551,555,550,557,552,549,549,549,551,550,547,551,551,549,519,522,516,513,500,505,519,502,503,502,509,512,510,512,508,510,500,502,503,505,510,508,509,535,531,540,537,548,504,503,509,515,511,506,516,515,513,513,521,579,552,505,510,500,509,486,492,507,514,494,498,468,464,462,468,477,474,465,471,477,462,474,475,462,470,563,559,569,558,556,564,554,563,545,556,551,554,567,559,555,559,566,507,493,502,497,494,493,503,494,490,491,501,496,492,533,542,541,563,547,519,517,517,525,525,525,519,517,532,521,518,505,573,578,564,563,570,572,573,556,570,556,570,570,504,501,498,496,507,507,507,501,510,494,510,472,477,476,478,477,473,485,485,481,555,562,555,559,558,496,501,489,501,495,492,496,488,496,497,493,595,603,568,606,596,595,575,596,585,595,596,581,544,542,552,550,542,552,548,546,560,549,556,559,549,556,552,566,553,564,554,557,555,562,560,559,558,553,558,552,561,559,500,519,504,521,517,527,513,518,520,526,513,493,500,503,499,500,502,500,497,495,503,498,499,501,496,493,505,497,496,497,497,500,488,491,491,486,483,489,488,474,467,467,455,461,471,463,467,470,440,434,436,492,486,481,496,503,499,536,539,542,534,538,534,546,544,537,545,540,539,534,543,517,516,519,524,517,512,522,515,527,536,545,541,541,541,540,537,535,542,544,562,563,568,559,577,555,566,571,495,508,487,496,504,560,561,556,563,571,558,551,560,564,557,553,543,560,569,565,505,501,504,511,500,509,505,509,510,497,505,492,504,500,510,496,516,498,515,519,526,515,553,533,548,555,557,549,553,550,546,504,502,509,513,496,490,503,501,512,517,513,498,516,516,513,508,549,552,535,550,548,542,548,505,504,497,496,496,507,493,506,491,489,503,497,497,491,494,493,495,486,491,487,545,550,544,549,549,550,545,546,556,545,541,574,559,567,569,564,572,569,585,558,564,587,520,528,525,530,528,527,531,527,520,516,539,515,486,485,489,484,477,486,478,489,488,485,485,481,477,488,486,502,508,501,497,504,492,499,488,504,496,560,554,564,554,558,569,562,561,556,561,529,524,533,527,533,532,526,520,535,532,517,508,497,495,512,506,512,509,552,562,563,562,567,564,572,547,546,556,559,551,558,504,514,519,500,515,520,510,480,506,491,489,515,506,525,518,465,471,470,466,467,464,469,463,467,462,475,475,467,469,474,467,470,471,471,478,476,475,472,469,474,557,561,556,556,557,555,566,547,547,555,560,505,496,501,497,508,500,509,508,514,503,503,558,569,557,555,572,559,550,564,556,565,553,526,519,505,518,520,512,519,496,498,497,468,470,487,486,483,481,487,486,478,465,457,455,454,461,460,452,454,458,464,454,456,447,445,442,434,443,434,425,436,422,429,430,433,440,430,428,515,507,520,517,509,515,520,518,504,523,527,528,509,513,518,512,518,535,532,520,524,532,534,532,527,531,538,570,571,577,574,569,567,574,572,573,578,569,575,555,558,555,559,556,554,546,558,528,501,514,520,522,528,511,512,527,514,510,483,478,482,470,475,476,481,481,484,480,497,499,513,502,502,497,505,491,505,500,508,501,506,494,497,562,552,556,556,549,548,562,556,548,551,551,550,532,547,533,542,568,559,574,562,583,579,580,502,492,506,513,517,510,501,510,506,504,503,490,502,495,498,500,573,561,574,578,574,565,553,565,561,552,563,529,520,517,520,514,520,522,522,513,518,519,524,534,525,528,528,523,520,523,523,573,588,585,589,592,577,590,589,586,540,535,544,544,536,545,534,542,539,540,544,534,536,536,570,563,558,563,553,566,563,559,568,566,562,568,569,527,518,510,527,524,513,513,513,513,513,523,522,457,458,462,463,452,474,477,484,489,477,489,481,480,486,488,555,583,580,575,580,571,522,505,515,495,500,500,502,488,490,491,501,497,496,514,469,459,462,447,467,545,552,548,544,545,551,556,557,570,563,577,578,580,572,572,569,532,521,530,530,521,537,530,531,527,526,527,529,537,536,537,526,476,477,485,487,484,481,476,479,473,475,550,542,553,562,558,552,550,552,552,544,541,556,550,567,559,552,563,572,551,562,553,523,504,501,526,509,513,514,499,512,515,465,468,451,463,475,471,437,432,438,429,444,429,447,435,433,507,521,506,513,506,513,517,515,503,522,517,532,567,569,553,564,573,581,584,572,576,564,500,509,511,521,508,514,513,516,505,516,510,505,506,503,505,506,554,542,566,550,553,552,556,554,561,555,558,560,553,561,555,500,504,497,498,496,500,501,500,503,498,497,499,501,502,495,547,554,573,580,567,583,559,575,567,559,591,566,573,573,581,498,498,499,511,496,515,515,496,503,507,492,513,509,512,496,565,559,561,570,571,561,558,568,566,515,525,531,520,520,516,497,502,504,486,495,504,496,500,499,456,464,450,461,465,468,457,461,490,490,483,483,488,493,486,554,547,538,543,550,546,545,550,576,566,570,569,572,567,567,567,573,524,526,522,525,525,517,521,516,528,534,526,524,535,494,480,479,481,482,488,481,484,487,485,483,460,468,459,467,454,459,456,463,461,462,462,459,467,463,457,467,556,558,550,549,554,554,545,546,551,550,541,552,542,545,544,546,541,546,490,501,479,480,494,490,482,484,486,490,492,487,491,579,532,532,525,531,543,554,554,565,563,554,554,552,537,534,538,528,529,529,532,528,534,534,536,534,538,538,538,538,524,518,511,512,520,518,525,566,582,579,556,586,570,576,563,570,549,517,504,522,527,515,517,524,531,512,515,491,499,493,490,500,508,549,555,540,553,546,537,555,534,549,550,497,493,494,487,487,493,486,497,494,509,488,498,498,555,562,561,565,566,560,559,561,564,578,559,528,511,520,524,524,535,527,531,528,525,493,478,474,485,476,473,485,490,480,477,478,552,562,546,555,559,537,541,554,563,568,558,558,574,558,559,563,562,570,559,561,558,562,509,505,510,527,513,510,515,503,508,465,460,452,454,457,466,464,452,465,454,466,471,468,463,478,474,464,598,585,596,596,612,595,600,586,583,583,595,605,530,537,525,525,536,531,541,527,535,529,522,528,558,550,564,548,563,557,553,513,491,486,570,554,556,550,547,551,555,558,553,548,549,551,556,491,493,485,489,501,492,502,502,502,506,488,504,538,553,550,559,543,554,551,562,553,545,563,543,490,507,508,482,485,490,493,496,488,493,547,564,556,559,552,566,552,556,560,502,498,493,492,489,493,498,499,502,501,498,494,490,497,495,485,490,499,505,506,504,506,507,508,507,502,505,501,555,545,546,550,556,544,545,544,552,535,519,519,525,527,521,522,521,514,518,512,525,574,595,586,599,591,571,582,589,592,584,600,509,502,515,533,536,543,550,543,545,534,540,548,545,536,534,532,569,567,565,569,557,519,529,533,527,525,530,527,523,547,552,547,569,541,538,549,562,557,554,501,521,511,509,503,513,505,507,510,516,560,567,566,558,569,569,563,550,569,557,564,562,483,506,497,494,484,464,465,465,478,459,462,464,469,461,458,464,528,529,520,520,517,526,529,520,525,526,525,525,519,523,508,517,522,522,514,518,521,515,515,537,544,550,550,552,562,553,523,525,515,522,513,525,523,512,515,511,519,479,484,494,478,477,487,489,488,488,483,479,491,488,508,501,503,505,503,504,503,503,497,500,549,545,543,542,553,554,542,543,550,545,539,568,567,569,577,582,571,558,561,508,512,500,486,489,546,551,560,554,563,561,562,575,562,559,560,564,548,556,553,562,562,564,489,492,489,492,497,486,473,503,479,495,538,531,542,541,533,534,532,535,536,534,537,533,536,533,538,542,547,551,532,535,536,548,529,533,534,545,509,502,504,509,512,513,518,508,511,504,510,514,541,506,523,544,517,506,508,511,548,558,570,564,566,547,567,571,561,501,496,495,490,490,491,491,500,492,488,506,497,502,510,506,453,438,443,447,426,440,436,452,440,443,440,532,523,518,515,523,514,517,523,530,545,547,551,547,540,561,556,557,566,555,568,556,549,555,559,553,514,509,515,527,510,515,530,528,510,523,508,514,494,472,479,481,475,471,487,480,470,475,473,560,554,551,555,554,562,563,562,552,551,536,564,510,507,510,517,514,515,515,515,517,520,510,508,521,511,566,566,584,581,562,589,565,564,585,514,506,491,503,502,495,503,499,493,496,501,485,491,492,494,494,561,499,499,493,506,506,495,507,498,500,493,501,501,496,574,579,570,571,582,514,521,520,523,512,526,527,587,586,589,581,592,583,583,580,584,590,534,541,545,542,535,540,538,545,543,537,540,545,550,528,533,525,533,532,574,564,574,565,570,563,568,564,564,535,543,538,531,535,536,537,553,546,542,550,557,563,562,563,554,546,559,497,509,502,497,502,502,508,500,497,498,499,501,499,499,501,497,498,506,511,547,537,543,556,536,558,563,558,567,558,569,575,558,557,566,564,565,563,551,542,543,544,545,546,543,547,542,530,543,534,548,540,553,476,488,489,491,487,491,492,482,473,485,480,488,467,474,470,475,478,470,470,465,479,477,479,472,474,475,474,548,563,565,565,544,555,562,543,547,550,537,544,541,494,498,489,496,493,499,493,500,492,496,501,448,445,443,437,450,439,449,447,438,447,445,447,525,537,533,529,538,526,528,524,532,534,530,537,514,511,506,517,509,512,519,513,512,518,517,515,533,534,531,525,530,522,528,533,529,530,530,529,532,527,533,553,569,569,563,561,540,539,532,536,542,537,541,539,524,523,527,523,530,521,525,520,523,525,529,527,538,533,545,538,542,533,538,483,476,479,482,486,487,481,478,488,478,468,494,500,545,549,548,542,545,554,542,548,542,561,548,549,547,561,545,552,553,521,529,526,526,525,526,525,528,549,550,535,534,541,542,519,517,508,513,517,511,515,514,518,510,510,512,511,524,524,523,572,593,599,579,590,593,590,585,593,597,581,591,553,554,546,549,554,557,559,550,551,550,558,557,554,530,522,519,518,527,525,524,526,528,505,508,500,509,511,504,504,502,501,503,501,501,508,509,512,504,471,481,478,482,479,478,467,472,476,477,470,477,473,475,475,477,475,475,477,478,468,476,476,507,501,499,505,536,535,539,512,532,533,521,530,508,536,486,475,469,471,480,480,470,476,475,470,482,464,604,583,591,584,592,578,574,577,605,505,516,516,508,510,526,531,522,520,516,523,531,522,523,522,538,528,531,530,533,523,521,528,535,572,575,556,572,522,522,520,536,521,525,565,518,503,532,544,550,538,552,542,536,531,555,555,545,510,507,503,505,566,559,557,583,573,567,563,556,567,573,559,555,562,565,554,561,514,508,498,504,505,507,504,514,497,497,501,486,471,481,482,487,473,465,475,467,472,472,483,475,476,478,474,548,544,522,516,532,517,520,511,522,482,477,476,482,487,483,488,437,446,442,443,438,446,455,454,447,448,456,448,445,446,452,443,448,537,530,529,542,530,521,531,526,513,518,513,516,520,532,529,527,523,523,528,574,555,567,569,575,576,573,565,575,560,566,575,552,543,542,546,541,545,546,554,540,545,547,552,533,535,539,540,536,522,522,521,519,524,516,520,519,522,533,539,539,543,536,537,534,538,534,528,538,532,556,556,556,553,511,528,507,511,507,492,507,502,501,511,501,542,534,548,536,541,546,545,541,546,545,542,552,575,554,564,564,512,508,536,550,544,544,547,546,544,548,541,567,562,565,566,568,570,564,561,552,543,548,549,544,542,553,553,549,555,551,552,554,500,513,507,507,512,507,505,509,502,471,486,479,476,487,480,484,469,485,477,477,474,484,484,481,483,482,484,484,479,481,478,482,486,481,478,482,478,483,475,481,446,452,443,443,457,447,457,443,488,498,492,491,487,486,497,494,492,541,533,536,532,535,533,528,541,539,557,549,561,556,545,561,564,487,503,485,496,497,490,432,449,424,440,449,429,436,435,433,518,512,523,516,520,511,519,520,509,517,521,511,516,518,512,514,525,514,514,523,523,519,523,547,539,539,540,543,540,538,532,532,540,535,541,552,551,550,513,520,509,514,511,512,516,513,512,513,514,448,455,456,456,449,451,463,459,450,458,466,475,461,586,598,608,593,605,590,586,590,601,514,500,506,513,500,507,513,532,538,546,547,543,543,547,566,562,563,558,554,569,569,556,566,540,531,533,537,522,530,532,525,534,530,533,522,512,513,516,512,513,510,510,516,540,563,556,549,551,555,564,542,484,496,504,498,510,503,474,471,470,468,460,471,468,463,459,466,470,501,502,507,497,493,497,503,499,507,498,506,551,554,553,557,521,517,519,518,517,517,535,506,526,517,489,500,496,494,490,496,458,449,456,453,458,455,453,448,461,452,452,552,562,568,552,555,555,566,563,558,559,558,561,532,559,544,538,548,549,538,550,549,556,544,551,540,552,506,495,501,507,490,504,500,510,504,487,512,508,499,583,596,596,591,600,588,591,595,555,557,554,547,544,559,556,552,553,550,557,531,529,524,527,517,534,522,524,526,527,528,474,475,485,476,465,467,486,468,468,474,474,548,535,541,530,534,526,572,565,571,563,570,568,568,576,564,562,547,541,538,535,548,540,545,541,540,539,532,539,541,535,541,544,537,535,533,539,538,539,537,516,524,535,523,522,536,532,533,526,523,529,522,529,571,558,553,553,577,512,506,513,517,518,515,517,519,510,518,512,512,522,525,526,527,529,524,533,536,528,528,528,497,507,511,516,515,505,507,515,535,532,530,524,469,479,470,461,470,465,479,474,469,469,471,479,472,481,480,474,471,474,596,606,588,584,578,584,584,589,588,587,588,580,586,524,541,528,513,517,519,515,512,577,587,592,550,540,534,539,538,536,531,530,563,558,548,554,551,561,557,547,548,550,552,543,480,476,480,473,487,478,470,472,479,480,468,487,483,485,491,487,489,492,483,487,500,499,502,510,498,498,499,502,496,496,504,507,548,553,542,539,548,537,537,546,551,547,554,549,562,571,570,557,569,570,555,561,567,560,567,531,546,556,553,543,554,540,539,533,546,496,491,489,495,480,495,494,489,492,479,492,490,473,478,549,555,541,550,538,553,545,545,543,551,549,543,547,522,529,527,528,526,519,525,522,530,527,525,525,523,527,528,534,535,540,543,544,532,533,498,501,498,502,594,583,597,582,597,594,590,575,589,589,570,585,583,596,604,587,587,566,570,567,571,564,559,558,564,565,569,519,519,512,520,507,516,517,512,514,507,492,488,491,486,475,479,509,503,516,507,507,510,510,512,509,508,567,554,550,544,547,548,563,555,546,555,559,554,554,564,492,495,506,490,510,500,503,493,501,497,497,461,464,451,460,458,453,455,462,458,459,466,450,453,467,461,459,458,530,530,536,530,537,530,550,549,549,552,550,554,540,552,548,550,545,542,535,530,546,546,552,548,548,546,542,547,542,484,474,471,480,471,472,476,479,476,477,468,476,466,476,470,467,464,475,469,583,577,558,560,575,573,562,489,502,480,473,474,477,481,483,509,527,535,528,523,536,526,527,537,538,526,561,574,567,568,571,570,575,565,570,568,563,567,570,569,570,572,564,541,551,540,545,543,547,550,550,551,548,545,545,498,492,496,493,496,499,505,498,495,501,502,499,538,543,528,526,530,534,548,532,534,543,541,560,561,554,554,567,565,560,562,485,512,490,486,493,493,502,491,432,444,438,436,434,445,446,445,429,434,432,437,432,432,437,522,516,517,509,517,517,521,516,509,522,523,517,541,533,540,528,533,552,528,534,539,545,547,558,538,546,545,548,550,548,492,493,502,490,480,478,500,484,493,557,547,540,560,555,560,547,517,505,507,504,508,509,506,507,504,505,506,502,514,505,513,507,507,505,517,520,524,587,581,581,576,593,584,583,576,588,590,579,581,556,559,553,558,556,561,551,550,549,554,560,558,559,553,546,555,551,557,548,556,556,551,556,559,554,511,513,524,529,528,531,508,515,527,500,503,511,500,502,509,505,511,501,494,492,494,489,493,490,490,489,496,493,490,490,491,495,502,456,463,455,454,462,464,454,462,465,461,461,462,502,509,505,515,491,502,497,508,509,507,491,504,510,510,495,542,558,558,556,547,554,559,563,498,495,491,499,499,501,516,498,502,498,498,503,494,509,504,506,517,508,509,512,497,502,504,505,505,514,508,504,509,536,531,531,545,533,549,548,481,487,491,501,501,576,538,498,511,508,504,515,509,511,563,563,563,559,558,556,555,558,562,557,526,532,521,527,521,528,536,544,532,537,542,540,534,534,538,535,537,536,534,520,519,524,525,532,519,521,514,521,521,524,524,568,578,566,577,575,572,563,558,574,572,568,552,539,551,560,546,549,559,504,508,505,524,507,517,509,504,507,466,467,463,472,460,476,472,474,459,467,470,467,461,467,467,463,466,462,464,461,474,473,479,464,478,472,466,534,547,478,483,492,473,531,542,531,528,532,538,534,537,537,539,535,529,533,543,539,541,541,544,541,547,548,545,545,539,548,553,539,539,546,549,550,551,545,540,548,544,548,502,497,486,492,502,510,498,486,507,491,495,447,438,438,432,519,526,521,519,525,519,520,523,533,524,522,524,532,540,535,544,545,545,539,537,547,541,543,544,538,538,548,557,544,542,510,503,508,506,509,507,505,509,512,518,577,563,563,559,547,552,557,554,568,550,552,568,533,531,529,524,529,522,527,523,529,537,522,532,530,525,538,534,531,531,502,488,479,482,472,485,484,482,537,547,566,541,547,546,549,498,480,482,477,484,493,488,484,481,493,485,482,485,487,492,500,503,503,505,532,524,529,523,535,524,528,533,529,527,523,531,525,534,536,532,533,535,549,551,558,557,474,493,484,487,498,493,480,508,491,479,493,494,493,479,560,559,560,559,569,561,553,550,558,555,562,567,555,559,559,546,558,496,485,497,504,500,513,506,496,511,452,440,444,438,458,454,443,449,449,533,542,530,534,542,535,541,537,547,545,541,541,531,543,543,545,542,535,538,534,516,523,522,513,523,520,516,518,513,521,512,522,529,523,530,530,533,523,534,530,534,461,473,474,472,481,479,488,483,479,477,482,478,539,546,542,540,552,540,558,548,553,549,559,555,562,554,553,571,553,560,548,545,557,482,469,486,479,479,475,550,554,547,557,553,555,549,550,560,548,544,560,558,559,551,564,550,568,552,554,550,561,510,502,507,513,500,494,502,502,497,516,513,513,522,514,517,519,546,545,536,539,541,547,534,539,537,504,502,491,493,497,499,503,498,496,504,501,551,550,515,534,506,526,524,518,518,517,513,532,561,563,559,556,561,560,563,553,549,555,556,556,557,570,555,551,560,549,548,559,549,548,552,552,556,556,498,529,514,524,523,519,516,510,527,519,518,521,472,477,476,485,479,485,488,492,480,481,513,515,513,502,509,509,506,509,514,520,506,511,519,509,563,560,559,566,561,565,556,580,505,506,504,494,502,500,502,497,497,493,497,493,492,497,493,558,574,561,565,581,570,580,569,557,559,577,509,523,522,514,521,515,508,463,477,458,483,465,469,441,442,433,445,436,437,435,436,431,447,437,516,526,524,514,529,522,521,526,525,524,543,543,540,537,540,535,550,535,544,542,543,539,544,556,541,558,558,548,558,541,510,504,502,518,510,511,492,494,501,502,497,557,575,571,563,553,564,573,564,560,563,567,565,552,553,565,564,558,559,516,560,543,543,555,567,552,507,499,521,496,488,501,492,496,491,504,507,521,523,527,510,521,523,519,526,563,565,561,559,564,559,565,551,559,564,560,567,560,562,502,500,491,486,504,493,503,459,456,452,536,528,527,533,536,541,537,532,552,548,559,549,545,551,551,549,540,544,551,545,552,543,548,544,548,546,508,504,508,508,500,522,490,492,492,486,486,490,490,487,489,532,518,513,522,519,519,519,527,575,566,576,575,586,583,583,591,591,576,552,543,554,538,541,534,535,539,537,539,539,499,495,500,542,530,527,534,526,533,531,542,530,529,533,534,530,536,526,532,538,533,532,565,568,570,571,569,505,510,512,519,519,508,518,511,506,509,512,549,555,553,560,555,554,549,567,562,565,563,557,563,567,565,566,527,531,524,527,523,531,534,518,521,518,527,526,536,532,521,521,509,514,518,516,508,508,511,506,514,513,496,496,495,505,509,501,497,483,479,481,484,484,492,482,486,488,483,476,487,481,484,488,483,485,487,470,484,475,479,479,483,486,478,471,466,453,449,465,456,463,451,458,459,450,454,449,462,452,463,458,551,555,550,547,553,552,496,557,559,563,559,559,552,567,535,549,551,553,499,506,496,502,500,501,496,506,499,508,500,505,494,553,559,548,567,544,552,562,499,499,503,492,503,497,491,497,501,488,490,500,498,505,499,495,463,468,469,473,457,482,471,468,565,573,575,566,573,559,564,465,469,514,520,521,516,519,527,515,527,532,520,522,541,537,544,542,541,537,539,547,540,549,543,548,537,543,545,546,544,551,550,552,541,542,520,519,514,517,514,516,518,521,580,588,579,575,577,582,568,506,512,502,497,490,495,492,503,495,498,483,484,589,588,595,583,597,600,607,595,602,599,598,601,609,595,596,597,605,609,607,568,565,560,562,560,581,564,561,571,546,503,500,495,493,489,493,497,501,499,490,500,491,491,493,493,501,563,549,558,562,569,566,576,567,567,570,565,557,510,518,502,497,496,496,500,497,497,499,496,495,540,555,557,555,561,552,526,530,530,531,528,523,530,527,532,527,531,529,533,535,530,529,520,520,526,523,522,521,523,521,555,556,559,561,557,556,564,558,561,545,541,539,541,536,539,537,540,536,532,538,534,541,542,542,537,530,530,526,536,523,544,527,538,533,532,539,533,540,535,501,508,496,502,506,506,488,604,586,590,581,593,535,550,549,552,536,541,524,527,522,523,516,522,526,515,567,572,561,558,562,562,566,572,565,561,553,563,532,526,526,533,522,477,476,468,479,476,481,486,478,534,533,523,527,523,525,540,529,538,531,523,531,530,525,547,551,544,545,551,555,565,554,556,561,551,556,557,525,513,527,522,478,489,480,485,483,480,477,489,462,466,458,465,454,452,458,583,592,572,602,585,589,608,592,584,590,594,609,585,598,588,585,552,545,543,555,549,544,549,540,549,552,550,512,501,494,500,510,501,515,511,504,515,496,492,484,483,478,489,477,473,479,477,476,476,476,479,476,458,471,470,470,470,472,476,471,479,483,481,473,475,478,464,505,518,509,508,509,504,511,510,520,509,500,495,513,505,499,476,480,483,474,480,476,485,480,476,477,477,483,481,473,474,470,478,481,480,478,481,491,583,571,584,568,574,574,558,572,563,588,563,574,520,501,523,508,512,508,527,522,508,545,568,554,554,549,565,554,550,492,493,496,496,499,503,505,505,491,496,499,498,510,497,503,507,504,506,501,502,501,506,512,519,511,511,516,508,514,509,511,510,511,512,503,506,508,540,522,531,530,527,527,522,531,530,522,542,541,538,539,542,544,538,564,555,553,564,555,570,559,548,553,553,562,556,542,522,508,514,523,516,517,513,517,522,515,502,519,509,525,489,493,494,487,489,490,488,488,490,489,488,484,490,489,523,514,523,522,529,531,524,523,513,522,516,517,529,521,569,534,527,543,531,526,530,521,538,530,527,520,523,592,587,577,584,568,584,573,584,589,583,509,512,503,523,521,522,514,507,517,525,514,532,510,556,553,545,559,555,551,559,559,552,548,541,544,547,547,540,543,549,554,540,546,549,547,494,506,505,474,475,476,477,477,476,478,478,477,481,480,479,477,477,482,485,483,511,504,510,496,505,497,508,505,503,502,506,536,549,558,551,550,561,560,554,519,510,498,503,508,506,509,521,502,509,509,466,460,460,464,461,468,474,476,475,462,436,431,446,439,449,438,428,431,436,438,518,513,515,517,510,509,519,526,532,535,527,532,528,529,527,525,572,572,559,571,564,579,563,575,571,568,573,574,573,503,507,508,519,560,550,550,552,549,547,547,553,550,551,545,549,549,521,516,518,520,525,510,523,514,520,521,578,570,567,564,582,566,560,573,496,511,496,503,507,503,508,494,507,501,499,503,508,506,512,507,502,512,517,513,561,566,560,561,566,558,562,570,535,546,545,540,549,476,495,482,481,488,483,481,508,496,477,482,473,474,489,452,458,449,456,445,455,453,455,454,568,559,547,572,556,552,553,553,562,555,557,554,554,548,553,560,551,564,554,561,501,500,503,510,504,499,496,504,509,508,512,506,507,506,503,503,507,509,507,507,538,554,556,555,547,565,559,566,560,551,551,561,502,495,501,502,501,445,441,429,440,429,448,441,453,433,437,428,436,442,433,441,507,524,526,519,520,523,527,511,528,523,543,545,551,542,549,541,546,543,550,570,555,552,567,558,558,554,551,559,557,512,529,510,515,527,482,478,482,483,485,476,582,609,606,542,549,521,541,544,545,525,539,527,536,499,490,491,484,500,499,494,501,504,492,592,600,575,559,553,551,551,556,538,541,546,554,560,561,535,496,491,503,499,518,515,510,499,499,519,487,515,517,508,510,507,506,506,557,550,563,551,565,567,556,568,539,511,510,513,516,511,532,516,528,522,532,506,518,526,526,480,478,483,474,466,459,449,460,458,461,461,456,471,465,460,456,462,466,535,539,537,531,534,535,536,535,533,536,535,532,547,543,541,551,545,548,550,540,547,541,528,473,479,475,483,474,483,481,483,465,476,474,478,478,478,482,472,470,482,581,558,558,495,507,491,499,512,499,494,491,490,480,486,493,550,557,557,554,556,548,561,558,556,550,565,558,554,558,563,550,538,558,501,501,507,501,507,509,594,593,591,587,608,600,602,597,548,548,536,540,545,534,547,537,547,544,543,525,520,527,524,525,541,540,540,536,544,540,540,538,542,541,540,542,532,494,499,510,497,504,504,515,552,555,539,545,553,552,558,531,532,533,536,532,556,565,559,563,563,559,564,559,569,562,558,570,566,574,559,506,521,528,518,522,501,526,526,522,521,506,525,518,523,486,484,488,482,479,482,486,477,480,480,482,485,473,482,481,499,497,501,494,495,498,517,514,513,520,511,509,510,511,556,562,561,552,557,548,558,554,557,556,554,561,560,561,561,570,566,573,559,533,525,529,518,534,522,531,533,529,519,506,509,514,502,504,502,506,504,508,507,515,509,509,506,515,514,485,484,484,490,482,482,472,477,466,474,469,459,459,468,562,557,557,565,550,559,566,559,570,553,553,549,548,548,546,557,500,500,518,501,499,501,497,500,500,506,502,513,503,494,499,498,513,594,615,587,591,589,606,592,598,586,587,598,598,604,592,596,599,570,550,556,497,504,501,506,498,500,494,495,506,493,484,476,485,472,480,479,483,489,483,480,480,485,480,484,477,480,482,477,490,487,491,489,521,511,519,514,512,514,510,500,504,514,511,511,542,544,535,533,539,542,540,542,536,533,537,543,547,539,545,532,542,545,538,540,538,546,508,516,511,518,512,540,530,512,532,539,446,459,449,458,453,457,451,453,457,452,460,515,521,525,523,523,534,526,524,523,525,532,524,532,531,537,543,539,532,557,551,551,555,550,511,498,518,528,496,499,507,518,506,520,512,440,442,445,439,440,442,443,448,452,444,443,435,453,464,484,476,474,464,478,482,468,458,472,475,551,566,561,553,571,576,566,566,523,509,517,508,516,508,498,508,506,503,561,573,478,498,479,446,442,454,435,440,440,444,439,441,435,435,442,436,533,543,545,531,533,523,535,540,531,538,537,551,543,561,552,539,543,550,552,552,550,514,499,490,494,491,479,498,511,453,435,436,440,444,438,430,447,442,440,516,526,515,528,520,523,521,537,536,535,539,539,538,536,536,533,538,533,533,538,562,539,550,559,533,541,539,557,546,540,547,553,497,504,498,503,499,500,499,495,499,496,462,470,475,552,548,548,545,544,530,540,543,532,543,536,530,530,533,525,525,528,529,521,525,528,529,559,568,562,567,557,565,552,561,560,556,568,546,559,554,523,531,515,534,527,523,519,513,527,529,529,496,500,496,493,497,491,491,446,460,460,459,457,463,452,465,454,454,461,454,473,459,465,478,466,464,466,465,591,597,586,602,593,589,565,559,556,565,564,556,564,562,560,556,570,563,564,490,493,492,499,494,485,484,475,494,496,495,494,461,455,460,464,457,557,556,573,560,549,563,563,567,560,560,561,556,564,548,554,557,545,550,547,556,555,557,498,454,429,440,522,531,534,528,519,517,535,535,544,522,531,524,545,547,551,543,548,560,550,561,555,550,550,546,546,548,511,511,499,507,513,506,510,498,497,512,519,521,527,520,516,519,511,512,567,577,577,583,581,577,573,584,529,520,532,534,536,542,534,533,527,537,519,533,532,532,531,535,531,544,557,529,550,552,562,564,490,487,498,500,513,504,516,507,510,514,519,498,508,498,567,565,547,556,541,551,553,497,495,496,513,483,480,491,481,492,485,486,488,472,479,473,467,479,482,481,500,506,504,496,505,509,500,517,500,493,499,494,571,570,568,578,568,571,586,580,529,516,525,530,529,524,529,533,529,522,513,518,513,504,511,511,513,510,508,511,507,505,510,516,503,475,495,470,476,487,481,488,488,482,472,488,476,474,466,464,464,463,464,463,456,464,467,456,454,458,463,461,459,461,548,550,556,553,549,552,551,557,559,561,560,557,556,556,549,552,553,551,545,543,493,489,489,482,488,494,486,485,494,496,489,571,587,587,580,583,578,563,570,575,584,503,504,522,532,519,525,533,535,537,526,535,537,535,529,529,535,534,530,534,532,528,566,562,564,560,519,515,508,506,508,518,517,501,544,554,551,550,549,554,549,548,542,552,549,543,543,540,555,516,518,515,506,518,520,524,519,517,526,564,570,567,576,582,576,572,576,584,583,576,573,582,510,503,500,504,515,494,503,510,503,498,500,500,496,506,495,506,500,500,501,503,508,508,584,563,576,571,567,574,568,573,583,584,571,559,575,579,559,579,574,579,509,506,517,494,458,464,474,467,468,465,469,466,466,458,455,562,562,546,554,567,553,567,552,547,540,542,543,561,558,561,546,547,541,558,548,549,503,484,483,484,490,484,501,471,489,580,592,590,580,579,562,582,576,558,555,557,554,553,551,559,551,543,552,557,559,554,546,552,553,543,545,538,545,548,492,498,498,487,501,497,498,500,495,503,495,500,502,499,500,521,516,518,518,501,511,513,520,507,517,515,513,509,554,559,557,550,552,547,559,554,549,566,547,555,550,556,554,558,550,550,549,546,559,553,550,519,526,527,528,525,519,519,517,523,519,519,484,481,499,483,482,457,441,458,455,453,456,446,439,450,444,459,576,586,579,572,549,547,541,549,553,553,538,549,545,550,555,554,556,555,544,552,504,503,488,498,499,491,497,497,486,457,464,453,461,457,461,455,461,457,452,466,456,539,531,534,531,526,537,528,521,533,525,533,530,531,530,534,540,533,529,532,526,528,535,529,535,532,537,539,557,567,558,565,555,562,579,553,557,528,532,523,525,523,526,528,531,525,536,535,521,522,517,525,534,528,562,554,561,565,557,556,561,552,558,552,554,556,553,551,490,498,508,509,496,506,503,495,496,509,501,499,505,540,540,533,549,544,549,527,528,528,526,536,519,524,528,532,530,529,533,565,562,572,567,571,557,515,519,512,516,518,503,513,512,516,502,473,487,475,510,508,517,511,516,511,517,528,513,559,552,553,554,568,562,563,556,561,552,558,501,486,499,498,510,497,505,505,504,513,508,514,508,514,509,539,522,521,529,522,523,530,529,522,554,564,566,554,564,575,573,560,563,558,552,568,570,526,525,534,532,522,525,526,524,525,497,502,508,480,500,492,490,492,489,592,584,595,582,580,586,584,574,579,606,562,557,558,551,560,556,553,564,556,550,550,547,548,547,554,550,549,549,542,547,499,482,502,491,462,461,539,535,525,543,550,542,536,544,542,545,543,538,544,549,549,539,537,550,542,544,526,521,528,512,518,518,513,524,510,576,562,574,575,583,562,563,582,576,516,500,523,515,519,532,515,515,526,514,531,522,533,530,485,492,494,489,490,486,490,485,493,491,489,492,477,487,486,485,483,485,476,478,489,480,487,478,486,480,488,489,567,554,563,554,557,555,561,561,567,490,503,494,496,499,494,502,500,497,494,502,503,504,507,505,510,502,538,535,532,528,537,534,531,531,533,529,543,538,557,552,556,563,485,497,495,501,489,440,438,447,436,443,503,515,522,519,518,521,520,523,520,520,524,523,522,526,535,536,529,539,527,523,543,540,543,536,545,538,544,549,551,533,549,542,546,518,502,511,508,518,511,500,507,565,556,571,568,553,557,568,582,580,563,563,573,560,572,504,471,494,496,479,502,512,512,496,490,499,432,440,540,526,536,535,540,546,549,553,550,561,547,556,476,465,476,475,544,534,543,540,539,541,530,543,548,542,554,529,538,536,550,550,542,547,544,492,496,496,500,497,486,495,493,479,557,554,547,555,552,557,550,554,560,545,545,549,547,502,503,507,508,508,504,515,508,502,508,501,504,564,557,555,552,557,549,564,559,558,553,485,495,498,503,496,495,493,487,503,510,506,504,500,509,506,503,503,533,528,543,534,533,536,534,574,556,560,554,550,556,545,550,454,474,481,480,488,477,475,451,473,479,480,480,470,529,519,527,523,518,529,526,524,532,530,516,514,514,521,516,521,514,515,518,513,525,528,524,524,523,536,529,526,521,537,575,567,565,560,573,565,566,505,497,505,507,516,507,506,505,505,530,526,534,533,533,532,536,531,531,529,533,528,545,541,546,543,541,539,545,548,542,549,539,544,541,493,504,510,506,500,506,508,503,502,499,500,548,552,551,558,511,506,520,512,518,510,516,523,495,488,501,487,486,488,492,497,495,496,488,489,495,493,485,480,488,494,494,494,496,500,493,498,496,504,496,497,497,501,496,494,497,469,483,479,493,490,485,508,522,513,512,512,551,535,539,539,547,541,490,493,494,501,498,601,589,594,586,594,595,583,535,547,546,552,556,549,552,545,544,551,549,545,547,545,546,516,523,521,515,527,520,519,516,522,530,483,501,500,499,499,500,498,494,489,503,550,553,568,571,553,560,568,561,497,496,493,501,490,492,485,491,485,493,488,490,494,502,502,497,495,497,498,500,505,500,499,501,498,499,575,565,554,559,575,572,572,567,565,573,565,575,578,572,535,512,523,516,523,525,510,521,522,524,528,528,507,520,523,532,511,489,472,482,482,485,472,464,479,465,476,447,439,445,430,435,434,472,482,498,473,486,484,480,539,557,508,499,504,501,503,498,533,533,534,536,534,526,531,537,530,532,535,532,531,533,529,533,531,536,529,533,525,528,528,525,547,545,544,545,532,542,548,557,554,543,546,491,504,486,512,501,499,499,505,560,561,551,562,573,553,475,491,472,471,492,477,545,541,547,556,545,542,548,536,554,543,542,551,557,549,546,583,581,566,572,575,569,565,530,534,529,538,526,534,533,533,563,547,567,550,556,551,559,558,557,556,492,503,496,505,493,492,504,515,504,506,520,515,484,485,496,489,490,486,484,486,476,474,467,478,473,471,465,464,464,479,428,439,435,452,437,435,441,491,482,486,472,485,475,485,481,488,479,491,482,479,488,485,479,508,506,506,503,504,507,505,529,532,527,531,533,529,532,527,527,533,532,535,531,538,536,538,540,533,551,503,512,506,508,512,501,502,516,517,511,504,513,500,507,509,514,558,570,524,519,529,517,525,522,521,503,488,480,485,483,480,482,479,488,478,480,561,565,573,558,522,518,532,521,529,514,494,503,502,501,509,499,512,507,505,487,482,487,492,495,505,506,499,507,504,526,531,534,533,536,536,526,531,532,515,518,515,519,522,561,550,558,553,551,560,554,559,559,549,561,552,550,529,508,523,523,513,517,509,523,524,520,470,475,474,481,474,475,480,470,481,486,484,464,474,593,570,586,577,586,581,587,590,584,579,577,562,537,531,534,536,523,532,522,531,536,535,537,527,537,535,533,541,559,557,546,563,563,560,561,550,560,497,508,512,506,550,569,559,559,558,534,548,560,526,525,534,528,530,529,531,539,548,552,554,566,556,552,546,560,550,494,498,488,490,494,495,495,493,497,502,491,491,491,492,495,499,488,500,549,575,568,558,553,550,582,552,559,558,547,550,530,529,542,535,531,530,535,530,540,533,532,540,529,567,565,568,568,562,503,533,515,519,532,525,522,519,529,529,520,522,533,520,516,520,525,499,477,471,481,483,480,480,469,481,476,481,480,481,448,448,438,447,524,527,521,515,520,519,513,527,530,530,531,524,534,526,581,582,570,510,509,496,506,507,499,515,500,536,529,535,527,535,535,533,542,546,545,542,536,541,546,551,561,563,563,552,547,551,548,545,557,519,515,526,525,516,526,523,529,513,527,512,521,521,518,514,479,494,484,488,497,492,496,489,494,486,482,495,475,483,483,482,479,488,482,485,481,474,483,484,456,439,451,444,447,446,546,546,555,556,549,554,566,558,556,549,562,554,548,550,541,538,542,548,539,543,551,552,547,540,514,513,503,509,521,521,552,555,564,559,562,514,504,512,508,512,502,502,504,506,567,573,571,571,570,576,566,582,568,578,563,484,478,485,486,494,488,474,484,477,497,475,481,479,498,474,475,525,517,540,542,544,536,551,546,541,545,542,541,545,542,548,537,554,548,540,518,510,517,510,519,514,502,522,515,514,518,518,573,569,559,569,560,591,586,575,574,569,507,500,493,500,508,507,510,510,498,503,493,503,473,473,478,470,470,488,467,477,480,537,538,567,550,541,558,543,558,544,555,557,557,551,477,481,479,471,478,505,488,494,502,495,566,555,557,565,559,553,555,562,556,561,556,554,538,538,543,530,526,532,529,525,529,524,526,528,521,544,542,541,545,544,538,528,518,520,514,519,518,521,521,525,524,531,542,530,535,533,531,542,560,559,557,560,556,561,566,566,561,499,506,502,498,495,482,486,493,488,479,488,476,476,477,476,549,573,544,563,562,560,555,559,553,555,548,540,562,545,549,495,504,462,478,463,466,468,461,479,472,470,474,478,559,555,549,551,556,559,554,560,552,548,550,561,553,557,554,552,556,552,555,556,543,547,532,527,522,529,519,531,523,552,568,560,559,565,550,556,565,558,555,549,539,545,544,543,543,498,483,491,486,486,486,489,495,484,484,473,492,459,462,472,464,474,467,477,467,468,559,564,558,558,559,576,553,562,559,554,569,561,563,554,499,500,512,498,492,501,494,503,494,500,542,542,556,537,553,551,542,549,558,553,500,509,521,509,524,517,523,533,522,531,532,521,520,523,528,531,519,524,525,531,526,561,576,581,592,582,578,586,583,589,531,543,540,539,541,540,545,541,537,546,518,511,519,551,550,546,547,543,543,542,547,566,567,561,546,559,560,509,505,515,503,525,512,506,500,507,507,533,532,543,536,534,538,535,536,528,531,531,530,527,558,562,567,549,551,555,561,549,563,564,525,505,516,519,513,487,481,481,482,484,476,478,483,482,472,487,485,477,488,485,489,484,486,477,492,473,572,566,580,563,569,565,570,568,563,508,518,521,513,521,520,528,520,529,528,521,509,516,522,515,519,508,530,478,484,479,482,483,483,486,481,481,487,481,472,483,483,485,483,487,491,498,484,489,482,486,489,489,485,487,564,586,581,580,555,573,507,501,487,516,508,557,552,521,513,521,525,516,518,518,562,550,555,562,557,559,566,561,558,571,562,560,547,558,530,530,527,521,529,528,517,495,495,501,502,514,488,553,565,566,505,516,514,505,502,502,556,555,556,555,550,554,561,561,557,561,566,560,560,510,521,512,516,521,519,511,506,476,480,491,477,490,491,444,431,450,551,543,549,565,568,564,574,563,575,569,562,571,565,566,532,533,535,533,507,494,507,501,506,501,500,510,495,511,509,504,501,515,503,505,569,559,563,546,547,573,553,546,563,562,550,527,516,525,520,518,512,526,517,513,537,545,540,535,532,536,533,535,533,540,538,576,554,563,555,568,489,516,515,500,479,506,499,499,494,470,474,468,472,468,474,501,510,503,507,511,509,510,494,499,512,502,497,513,506,500,499,550,554,553,546,547,549,507,514,510,505,502,498,516,498,502,514,503,465,470,462,466,462,461,463,465,465,466,467,468,465,466,461,463,462,458,462,556,567,558,564,563,569,549,558,483,502,495,491,487,495,477,457,471,462,461,464,461,465,455,553,544,553,538,496,500,500,505,503,502,514,517,504,513,503,505,513,535,533,528,540,532,535,533,539,526,530,540,538,536,545,547,535,546,550,540,467,480,478,477,484,479,481,487,480,485,492,486,489,481,506,505,494,506,501,522,542,531,535,537,533,539,535,536,532,535,541,496,505,491,498,501,583,581,581,587,573,580,580,593,595,591,530,531,536,505,517,512,504,513,508,508,511,517,505,516,511,511,557,559,551,559,540,558,568,552,571,572,565,552,559,564,511,504,511,503,514,511,525,521,536,521,523,521,521,524,564,563,567,572,534,522,533,509,514,537,509,506,508,509,500,504,506,499,502,500,501,498,501,501,501,498,497,503,496,502,496,502,496,465,477,466,465,462,469,477,466,469,470,476,464,465,459,464,467,465,465,464,466,467,464,462,464,546,537,548,542,546,544,526,541,529,477,475,468,477,475,479,477,487,482,489,470,490,495,490,484,492,481,489,486,512,523,519,519,517,522,577,577,583,590,582,579,584,583,540,543,543,544,535,543,545,542,536,533,538,549,545,529,539,534,527,520,528,526,530,527,519,585,565,581,575,563,557,562,502,499,478,490,480,469,471,487,531,534,539,546,538,528,548,541,537,532,535,548,541,540,543,541,544,535,535,543,548,546,556,533,547,547,499,478,510,496,497,498,496,499,483,498,553,542,552,553,552,556,549,543,550,538,549,550,522,523,516,514,515,515,514,508,516,521,510,517,516,546,541,553,541,545,549,549,549,550,545,544,539,543,548,544,572,581,558,572,561,527,515,516,514,511,514,507,526,468,455,460,457,455,461,462,465,458,455,455,459,472,461,466,461,471,470,464,471,465,484,478,481,485,473,484,483,482,474,475,566,552,586,480,491,475,496,524,535,537,539,536,531,534,532,537,531,539,542,524,528,528,528,528,521,530,535,532,532,532,542,532,534,543,534,532,548,544,501,510,513,506,538,557,545,549,547,557,505,503,513,501,505,508,503,509,493,502,508,501,502,504,488,491,490,485,492,489,486,507,507,504,510,516,508,543,537,543,537,541,540,543,547,541,554,549,556,552,552,476,474,477,475,463,475,486,470,475,457,466,523,530,519,516,519,524,525,518,520,526,536,542,535,535,536,536,532,533,536,540,539,534,529,554,554,550,549,540,544,546,555,543,549,540,526,527,526,525,523,518,519,557,551,571,562,555,556,561,554,552,534,538,532,544,536,540,542,538,541,541,542,544,536,533,533,540,533,536,529,527,527,530,522,529,528,539,537,539,541,540,535,528,521,524,528,534,520,529,521,520,526,523,528,524,529,543,537,538,520,534,540,535,538,529,543,534,533,468,495,493,487,488,482,487,560,547,538,544,538,550,550,549,549,554,527,523,526,532,524,523,532,533,529,525,534,535,527,534,524,529,557,566,561,567,565,565,561,563,570,516,508,530,509,524,523,526,528,525,518,530,516,534,521,518,496,497,482,496,490,465,472,465,467,468,477,477,469,469,477,471,472,469,474,464,470,470,470,469,472,469,546,547,541,551,548,546,561,541,547,550,565,546,552,499,508,489,491,496,497,500,501,494,510,493,496,513,596,605,592,590,592,595,596,589,597,539,549,552,550,536,534,544,529,536,559,566,550,564,568,567,560,555,556,572,573,561,557,555,522,495,511,498,507,498,506,460,465,463,457,457,456,444,462,468,509,500,509,513,506,503,512,496,542,536,548,545,542,540,535,541,520,523,525,520,521,523,528,514,523,535,524,558,541,537,546,542,551,511,509,510,506,530,532,524,530,520,542,528,542,526,531,529,532,528,529,532,578,565,573,574,567,567,572,571,569,496,510,556,555,563,561,554,548,554,556,564,563,554,559,557,559,556,556,564,563,566,563,518,517,524,516,482,484,481,477,479,474,487,486,485,471,463,463,465,468,463,453,470,465,462,460,462,543,562,559,563,553,562,563,563,548,554,550,546,567,548,548,481,476,468,460,463,456,467,483,470,465,463,468,453,467,482,463,533,533,530,529,517,574,574,556,573,571,530,526,521,529,534,527,538,534,509,513,518,505,511,515,503,514,516,515,514,516,508,566,568,565,568,567,565,560,575,553,572,562,521,530,523,524,511,515,513,505,514,483,489,482,490,493,494,493,492,489,488,494,489,497,491,487,482,484,481,486,490,487,485,491,484,482,483,492,501,492,494,496,495,496,493,492,494,494,491,494,495,496,499,468,473,482,476,481,481,477,479,480,481,484,481,478,480,463,459,470,462,471,465,463,464,468,463,468,567,568,568,555,572,574,474,493,494,492,494,497,495,479,495,495,500,493,481,488,556,543,546,547,548,542,552,547,549,561,560,551,541,545,557,542,546,522,507,511,509,515,509,511,552,553,549,545,551,548,547,553,547,548,548,546,552,539,552,549,554,553,550,553,532,536,530,535,532,533,534,498,500,502,500,497,507,495,496,505,550,562,553,567,541,565,555,559,509,501,515,540,540,551,549,533,538,538,534,553,551,556,547,518,525,529,527,526,519,527,541,533,542,533,541,516,517,520,511,513,509,515,558,564,562,555,569,570,575,558,570,556,572,491,511,509,504,502,506,506,499,505,515,508,508,520,519,517,515,517,523,525,523,513,517,544,554,547,552,547,553,542,555,502,496,503,500,501,499,496,505,501,500,488,498,494,489,488,494,499,488,506,502,507,504,500,501,501,511,506,539,533,540,540,537,539,540,542,562,568,564,561,558,563,571,533,519,531,526,532,537,537,530,538,537,536,529,530,532,529,550,560,559,559,560,553,530,525,534,530,533,527,529,522,534,534,533,531,530,534,538,545,540,540,543,538,531,536,533,539,535,538,537,533,535,537,530,534,532,509,518,527,522,526,521,520,529,522,522,522,520,550,547,555,550,546,557,548,555,558,546,554,540,541,536,545,536,542,535,541,542,536,538,509,506,508,515,514,502,509,522,521,512,519,516,506,560,569,565,571,568,561,552,566,563,566,566,564,565,563,562,567,565,559,563,564,560,518,509,515,514,521,518,527,523,510,520,496,508,506,495,490,503,502,487,481,489,489,485,493,487,488,482,483,492,481,482,491,449,449,455,426,441,443,435,445,432,442,437,437,438,441,429,435,433,426,438,536,528,534,533,531,527,542,543,549,539,546,544,542,543,546,538,545,546,537,485,485,491,497,480,490,579,582,577,575,582,535,530,526,530,567,549,552,555,553,558,559,518,508,515,510,507,516,515,526,527,533,533,532,531,533,537,515,531,534,521,554,557,486,488,481,483,470,485,481,473,477,482,491,478,479,476,533,537,541,530,536,540,533,542,550,553,540,550,548,549,545,531,550,543,473,490,488,496,490,492,493,496,481,492,478,591,571,575,570,587,586,579,590,590,592,556,551,547,545,539,546,546,544,541,554,542,545,545,530,534,539,536,531,535,560,560,559,567,559,503,518,514,482,479,480,481,437,445,444,448,446,458,438,450,439,444,531,527,532,529,523,521,530,523,516,521,522,518,510,506,517,523,512,517,521,524,518,540,537,529,534,530,539,534,530,538,527,541,548,545,544,539,551,544,542,539,543,543,551,543,524,523,529,524,529,525,528,522,526,521,523,537,537,533,544,541,538,533,543,526,529,526,523,524,521,523,524,529,528,542,541,543,536,536,533,538,526,524,559,564,553,551,555,553,549,554,553,548,558,562,552,558,546,533,530,534,530,533,529,534,536,535,532,541,517,526,531,532,519,541,540,533,535,545,533,531,525,531,517,528,540,446,450,446,449,459,457,542,531,533,529,535,539,541,528,536,541,540,564,568,573,570,570,576,568,569,549,541,527,505,520,518,531,523,520,502,495,489,492,482,494,492,493,484,486,456,457,454,459,463,468,454,476,496,522,528,528,520,524,528,529,589,584,587,573,579,579,576,582,582,587,588,526,515,510,514,508,529,527,532,535,527,530,529,519,520,519,526,521,518,523,522,512,524,526,522,517,519,525,517,518,522,531,530,522,526,527,546,542,547,540,540,547,522,526,526,528,520,556,554,558,544,556,550,551,522,524,514,527,513,511,525,520,513,517,526,510,509,526,521,510,509,511,502,485,478,490,485,488,482,483,483,493,481,486,488,494,482,483,488,478,480,478,460,457,461,457,455,468,467,482,466,474,473,486,465,472,472,465,471,464,598,608,580,593,593,594,601,596,602,601,610,549,551,547,553,541,541,541,530,545,540,573,563,572,573,567,573,583,576,572,523,520,520,533,526,474,484,477,491,487,477,485,459,464,462,461,470,467,458,472,451,470,555,558,550,553,547,560,554,567,557,564,557,551,559,544,555,556,549,548,553,554,548,552,556,547,544,550,549,560,547,556,493,509,493,494,490,501,502,489,503,485,502,499,483,495,491,501,492,504,497,489,502,497,488,494,493,503,501,494,528,526,524,522,520,522,525,527,523,485,492,507,505,500,497,503,494,499,494,504,503,497,498,565,555,565,565,484,487,467,489,472,489,500,464,472,486,480,563,544,534,552,556,545,541,554,540,559,549,559,547,558,547,541,543,546,555,558,559,541,553,555,548,555,502,505,495,501,498,522,513,507,513,512,489,476,484,482,484,483,477,475,484,482,475,479,478,476,475,474,479,472,477,473,475,487,474,516,511,516,512,519,509,520,513,526,506,521,565,554,556,570,571,531,519,512,520,509,518,507,482,487,488,481,483,473,481,477,484,488,480,488,478,484,488,482,477,481,551,571,561,572,569,555,559,547,498,503,496,493,510,495,492,497,502,502,502,498,504,504,504,502,502,508,515,532,518,528,529,602,584,592,593,578,586,589,586,594,524,534,531,530,538,532,534,542,533,548,474,487,475,475,486,495,484,483,471,532,553,547,534,550,543,537,541,547,543,535,550,544,545,559,544,555,546,556,558,562,551,555,557,475,476,472,480,460,481,517,519,512,516,521,521,521,516,515,515,518,527,520,535,531,531,529,527,520,531,527,576,558,564,560,555,557,546,563,560,564,563,521,522,524,521,525,520,515,517,521,583,584,577,584,586,587,574,580,584,585,551,547,545,542,542,545,549,541,553,544,552,535,537,541,539,543,538,570,561,563,568,557,563,560,577,510,504,511,502,518,516,514,516,518,513,519,543,547,542,540,549,547,541,539,548,535,547,540,540,538,497,493,506,501,487,506,600,585,579,592,586,590,594,590,593,586,590,543,547,549,531,550,548,537,531,536,532,535,539,527,521,513,524,516,518,523,522,518,518,526,540,548,550,546,556,552,539,556,556,553,542,552,544,533,546,534,564,573,582,509,501,512,493,509,503,502,503,505,502,503,501,502,506,506,500,506,532,529,523,530,587,582,586,586,580,583,586,577,582,578,585,586,586,580,536,522,526,538,542,537,541,518,517,514,518,517,518,517,517,525,513,523,519,552,548,545,553,553,548,547,553,546,551,546,533,531,525,531,529,532,531,530,537,536,532,534,537,528,556,570,569,578,569,567,567,562,573,568,563,558,567,525,527,526,523,519,520,529,529,520,534,533,527,531,539,530,527,525,533,564,491,494,493,497,502,487,578,576,588,582,593,573,514,514,512,506,520,511,530,513,506,504,522,518,524,557,557,557,551,547,553,552,547,549,545,565,551,558,493,488,549,558,545,552,552,552,547,551,550,550,550,553,555,546,530,523,527,537,526,527,527,529,526,527,530,522,525,524,525,528,527,553,554,553,565,492,495,493,500,494,493,493,495,502,494,499,479,478,479,488,482,471,568,559,557,564,557,556,562,505,507,516,515,511,524,507,505,513,505,483,471,476,473,471,478,494,545,532,544,541,525,538,537,539,542,535,568,577,567,559,561,558,516,531,525,514,531,530,533,520,528,524,526,505,507,502,505,495,497,503,497,499,462,462,467,463,485,477,478,475,493,483,488,475,491,483,478,579,578,559,565,535,521,518,519,515,522,514,526,517,513,519,477,499,490,482,489,478,482,475,486,481,463,460,462,462,463,467,469,451,461,473,472,459,532,550,540,556,558,561,548,520,512,524,513,514,510,521,519,529,535,530,534,530,536,532,528,531,531,525,525,527,531,528,522,565,565,564,556,568,535,504,508,512,504,512,511,513,503,504,507,504,500,489,496,496,499,495,498,504,499,471,474,482,473,479,485,473,473,481,484,486,476,483,471,472,483,481,481,480,481,477,487,445,444,453,446,437,449,436,554,566,554,568,561,549,560,543,548,550,544,549,555,555,551,542,544,552,556,554,551,554,505,514,509,500,504,499,509,504,508,508,502,509,509,504,501,507,553,551,536,535,545,542,536,498,506,501,492,497,499,494,505,496,501,495,492,488,493,496,494,491,499,493,500,495,500,501,503,507,498,504,504,496,505,506,537,536,545,538,530,546,539,530,548,543,533,537,563,574,571,562,564,562,562,563,535,529,530,532,535,542,529,540,533,510,522,521,522,509,514,515,519,517,559,569,571,556,560,573,567,577,570,558,578,568,577,552,554,549,548,483,491,494,492,487,492,498,499,489,500,498,488,491,495,490,494,536,549,550,554,554,548,551,556,556,551,548,557,531,525,530,540,527,539,536,535,536,537,536,530,539,540,512,510,508,513,509,507,504,509,511,510,516,503,540,543,542,545,539,547,541,544,547,551,548,543,546,552,553,550,555,533,545,544,545,550,543,547,504,506,503,514,507,507,503,502,512,507,517,520,515,512,513,518,523,510,512,517,525,518,514,517,528,513,518,581,587,580,579,569,586,582,583,574,578,588,587,575,530,528,548,554,557,550,548,553,563,552,556,564,550,511,513,515,513,504,555,557,557,567,498,498,500,485,498,502,503,496,506,502,502,504,498,502,508,491,492,499,502,504,498,507,584,567,569,589,583,557,573,574,581,565,579,530,536,528,524,520,505,523,510,513,502,491,496,499,490,506,497,489,498,503,502,501,501,497,509,513,511,501,539,531,547,527,520,538,537,534,536,532,529,510,488,488,495,499,484,492,492,500,498,495,493,493,600,588,597,589,591,602,593,581,597,495,508,510,504,509,513,524,547,546,548,546,542,545,544,542,548,543,539,548,545,505,514,501,502,510,496,505,565,562,565,566,552,546,557,548,556,552,511,508,501,510,518,510,509,526,510,516,520,523,514,507,527,515,518,517,512,482,485,482,484,481,478,481,480,479,481,474,474,474,467,469,470,475,472,475,470,477,475,475,479,471,469,474,500,503,502,489,503,502,513,509,513,504,505,504,493,552,558,559,548,562,558,553,544,499,459,472,465,467,464,460,468,461,453,456,462,461,463,462,543,552,558,545,546,561,547,553,565,553,561,524,531,498,506,491,502,517,488,502,505,445,436,449,444,436,444,445,445,448,567,568,555,562,568,568,567,571,561,561,569,563,558,558,563,555,561,576,573,559,578,581,563,567,584,564,573,576,524,512,517,517,511,521,517,510,490,484,475,486,484,482,499,502,497,497,501,502,498,500,496,492,496,500,497,498,489,489,504,508,510,505,509,510,506,507,504,508,511,509,539,550,540,550,538,541,542,542,551,539,569,553,570,565,565,575,563,571,577,566,571,574,544,555,544,544,540,552,541,546,548,546,544,546,546,549,490,501,491,493,497,496,496,503,488,499,493,494,501,498,499,497,494,499,495,497,498,496,503,493,495,491,498,524,519,523,528,524,527,528,529,527,527,528,588,586,577,574,583,580,588,590,547,540,540,529,543,539,532,542,573,558,575,570,572,561,573,565,481,493,503,483,490,539,540,545,541,535,534,542,536,543,540,541,539,537,540,536,535,538,547,537,539,542,541,538,541,541,547,554,553,549,483,539,538,550,537,545,535,532,552,545,551,562,553,551,560,555,524,506,509,508,499,505,521,525,512,517,456,469,465,464,465,463,465,465,457,461,470,469,454,458,467,464,460,466,466,466,466,467,457,458,459,465,472,561,582,567,581,559,568,571,572,554,562,561,572,482,485,470,474,491,462,469,481,472,482,472,483,484,547,554,555,552,553,554,565,557,543,547,560,556,552,541,549,556,560,557,556,508,502,509,499,499,492,509,497,501,514,491,497,523,522,526,516,513,516,520,511,514,560,562,555,552,562,570,563,561,564,554,557,570,570,564,496,492,499,497,496,498,496,492,501,487,483,485,477,483,481,487,478,489,478,490,487,479,484,485,485,573,547,571,566,560,548,556,514,531,523,527,516,529,529,519,520,521,526,524,525,520,527,548,541,546,537,551,538,542,543,552,499,486,485,487,487,492,489,483,476,486,474,470,468,477,471,468,463,464,470,474,542,567,555,564,553,556,551,556,569,559,506,495,506,507,495,501,513,521,521,512,508,512,493,545,547,539,511,529,516,518,523,524,526,500,520,524,520,518,520,524,498,493,498,498,498,490,487,490,493,493,499,489,494,489,462,460,464,456,467,479,492,476,479,479,480,580,569,555,565,575,576,561,565,575,565,499,509,513,516,524,520,521,521,513,516,513,522,520,518,515,520,518,549,543,560,561,565,563,545,551,508,489,486,460,448,447,451,458,446,528,535,534,541,532,556,541,548,544,542,540,538,545,551,563,549,555,559,560,561,553,491,468,473,484,479,545,541,540,541,543,547,546,546,543,549,534,552,552,544,542,489,505,489,500,505,498,500,589,612,589,597,574,548,524,527,535,530,527,524,533,548,552,555,553,539,544,563,547,549,549,538,553,527,515,506,517,562,544,546,543,544,545,547,548,551,546,543,547,553,546,549,545,546,545,549,526,538,537,541,539,540,540,478,472,482,478,478,484,475,464,462,483,464,470,482,532,533,541,528,531,529,535,531,532,528,546,546,550,549,549,549,545,550,555,551,539,551,548,557,551,553,560,565,552,546,558,558,499,502,495,502,503,504,495,496,502,508,565,581,582,571,574,581,574,560,526,522,527,534,526,527,525,526,526,524,527,510,524,521,498,487,488,487,485,498,477,492,489,478,483,487,484,492,483,485,484,485,488,487,487,482,478,477,446,437,458,446,444,439,455,450,451,441,453,549,554,543,557,555,565,556,548,558,553,561,556,559,557,553,563,561,564,569,520,517,519,533,523,521,527,521,519,482,491,489,478,481,484,478,486,475,480,484,502,508,562,570,564,577,566,562,569,566,534,534,525,532,541,528,526,484,486,478,486,486,481,473,477,555,552,538,554,543,572,547,553,556,556,550,551,554,556,566,552,560,557,565,558,563,503,506,501,498,502,502,500,499,494,501,505,500,512,501,508,505,507,500,503,500,507,513,512,514,519,516,514,509,511,543,548,546,547,545,535,544,537,549,538,530,540,550,547,546,547,499,499,502,487,499,493,485,487,500,494,550,553,562,546,554,541,557,544,559,553,496,506,517,520,516,500,505,510,511,518,503,495,503,512,505,469,459,468,463,468,462,459,458,462,453,459,466,469,464,470,461,470,475,458,468,556,557,560,477,469,483,467,482,487,486,476,488,489,492,483,488,540,519,530,536,533,531,528,529,532,537,533,531,525,529,533,522,530,526,533,528,531,533,532,528,531,535,528,532,583,573,562,564,562,563,564,565,575,553,546,537,548,546,537,546,538,537,526,534,539,538,532,534,528,537,536,532,537,533,538,530,536,522,516,520,518,514,523,517,518,517,512,514,521,514,512,513,515,512,514,507,503,511,504,534,524,537,538,528,527,531,522,526,531,530,528,521,523,518,518,514,513,517,517,518,514,518,515,513,520,523,515,516,513,517,521,514,513,522,518,517,519,538,545,547,537,546,551,553,550,550,562,548,552,545,551,553,553,497,496,499,506,496,491,461,470,468,470,460,469,465,565,554,570,562,503,504,501,487,497,488,491,498,542,553,553,551,553,487,471,486,475,470,473,485,466,460,475,479,478,468,441,452,451,446,456,448,451,458,533,536,530,539,538,541,544,536,527,533,535,544,556,547,542,547,554,557,553,543,561,555,556,553,565,507,496,495,495,508,501,494,494,495,504,496,507,499,501,504,494,483,485,487,489,485,490,481,487,490,488,493,485,567,562,564,574,573,572,567,507,512,503,514,507,501,512,515,525,510,528,531,527,537,530,532,534,530,527,542,551,548,543,547,480,475,487,480,475,472,479,480,475,488,496,507,507,512,498,493,489,505,497,526,539,542,532,534,539,537,534,530,531,539,544,537,543,540,498,505,541,558,509,505,505,495,487,506,500,506,501,501,537,550,539,539,536,534,542,541,538,551,511,519,514,522,518,527,517,516,513,521,518,524,523,547,543,546,556,543,529,528,528,519,532,537,535,542,534,536,582,557,565,574,569,568,568,571,566,551,553,572,573,533,520,524,520,522,522,522,519,552,543,551,554,555,551,555,551,556,548,553,551,554,554,556,555,555,562,552,560,558,555,547,549,551,564,555,557,553,549,559,557,501,490,487,485,484,485,479,490,488,489,500,490,492,492,487,499,497,491,489,500,499,500,499,490,499,505,494,491,495,501,483,473,491,483,482,497,506,509,500,498,499,502,502,551,547,547,547,539,551,547,547,548,547,547,548,539,557,567,568,557,557,571,561,565,564,572,551,569,562,567,537,530,533,531,520,519,521,525,525,483,487,474,481,481,476,482,481,484,487,442,449,437,438,443,445,449,455,459,458,574,592,607,590,585,584,587,550,561,556,551,541,565,542,565,556,475,481,482,479,483,480,468,445,444,444,455,442,441,449,451,449,447,547,539,538,534,548,535,540,543,548,552,551,541,560,547,550,547,553,546,548,543,546,539,541,494,492,495,498,506,565,560,507,503,518,500,490,496,501,490,554,546,551,555,554,553,551,563,565,555,560,554,557,553,562,552,545,499,494,489,506,492,498,492,470,477,469,472,476,471,482,477,472,473,484,476,559,563,564,544,553,546,556,564,560,548,558,554,560,547,543,549,505,476,477,477,479,485,474,469,480,478,469,482,548,548,549,565,550,555,506,516,518,505,511,507,513,521,510,531,533,522,527,527,532,530,526,527,533,532,524,526,530,526,520,586,586,592,587,578,591,580,582,596,544,555,557,560,552,560,558,555,556,516,526,520,519,517,506,517,510,533,517,519,507,508,499,511,502,503,498,500,503,501,497,486,489,501,503,497,496,505,494,538,547,546,551,553,540,550,542,547,523,521,516,527,528,528,516,516,520,523,521,516,522,597,587,586,555,555,550,544,548,554,560,551,552,557,557,505,499,514,493,503,495,495,510,498,503,500,503,507,511,506,513,506,513,510,506,513,513,505,514,545,541,544,549,552,524,521,528,517,524,531,524,546,527,528,532,527,540,533,529,542,534,528,537,530,525,539,547,537,483,494,504,511,501,508,497,504,487,494,490,511,491,493,495,551,561,566,561,574,561,572,568,548,549,553,562,548,568,566,561,567,558,565,571,512,506,514,517,510,508,506,520,519,506,509,522,477,481,482,477,490,482,482,479,470,469,473,467,471,460,460,460,452,455,463,457,462,464,459,549,558,495,501,499,495,482,503,496,493,500,482,478,501,484,587,584,539,536,538,513,525,523,526,529,517,490,504,497,486,495,571,601,576,597,607,570,582,532,528,540,541,540,537,539,526,543,536,520,473,479,492,482,482,484,489,554,549,548,549,557,556,557,552,561,559,556,557,560,524,518,511,519,479,476,476,469,469,481,481,470,472,479,475,472,479,480,464,477,483,566,554,559,564,548,559,552,552,572,550,555,555,556,535,524,509,532,532,512,511,504,513,504,480,484,488,483,489,481,481,489,484,485,484,507,509,512,500,523,509,515,525,526,507,537,541,543,551,549,537,541,532,550,536,548,543,544,547,522,522,511,514,513,513,516,519,520,565,567,560,562,564,562,585,565,570,529,518,526,524,536,525,529,521,532,526,537,524,524,512,509,504,516,512,503,506,503,515,511,505,523,471,477,474,473,480,483,473,467,475,473,474,483,482,479,488,484,483,487,487,493,584,586,577,577,577,585,584,603,477,473,486,478,534,516,530,524,527,514,520,528,526,527,513,523,516,522,519,523,522,533,534,533,534,535,530,536,546,542,541,545,553,543,549,548,551,539,539,540,515,520,522,518,522,521,517,519,528,524,550,542,544,498,498,495,500,504,502,503,504,551,542,551,545,541,538,551,546,548,549,545,557,545,556,571,564,564,563,559,567,554,561,520,529,533,526,531,538,529,534,527,530,533,531,535,519,527,532,537,489,503,501,498,505,499,500,515,507,558,561,546,566,571,551,551,512,523,503,516,558,557,560,546,554,552,555,546,562,568,561,547,493,495,508,484,504,492,491,501,497,510,507,510,498,456,457,451,456,464,552,556,561,564,555,562,543,552,531,548,549,562,560,548,551,555,548,551,541,549,544,547,550,545,549,542,548,509,511,513,514,507,504,521,504,576,562,573,565,558,565,561,485,507,529,507,503,512,505,501,506,502,498,511,509,510,498,522,485,482,482,484,486,481,487,493,484,483,458,456,467,465,459,472,462,460,466,441,441,450,439,446,437,432,444,430,439,442,512,518,515,513,514,524,518,520,515,510,520,521,516,513,507,513,524,517,517,519,514,521,517,515,524,532,532,523,538,539,531,539,559,549,549,492,486,487,488,494,475,486,536,529,534,535,538,544,534,522,530,532,522,527,529,515,528,530,529,534,533,535,524,522,541,546,548,548,548,544,537,540,541,542,548,551,553,563,498,498,506,497,497,496,504,497,497,496,499,492,480,495,494,490,485,485,485,475,497,482,552,561,573,563,562,555,559,563,558,560,562,499,503,497,525,512,515,511,522,514,509,514,520,522,546,548,546,538,497,503,498,506,503,495,508,505,588,593,588,595,592,605,589,588,598,589,596,565,572,574,575,545,544,563,547,544,560,559,492,503,501,487,495,504,500,494,504,499,493,502,500,497,502,508,508,495,485,487,489,484,483,487,487,486,487,490,514,526,520,521,530,525,521,509,518,570,576,583,586,586,583,584,593,574,577,581,569,542,545,539,557,548,547,555,546,550,552,554,545,527,527,528,494,487,488,495,493,490,503,485,493,500,487,585,582,593,586,588,574,565,577,600,588,592,570,577,581,555,559,552,559,561,558,550,558,560,555,554,553,557,553,556,551,554,551,555,552,550,548,553,520,518,516,526,512,524,528,524,516,530,519,521,518,481,478,477,476,478,487,485,478,477,516,511,489,505,499,505,499,501,508,504,504,556,569,570,572,565,559,575,565,527,510,520,480,479,489,487,491,481,501,487,487,479,474,441,448,446,434,543,534,552,542,536,543,537,547,551,543,551,552,547,553,552,556,553,557,482,502,511,513,492,521,500,495,505,495,495,494,497,517,429,439,447,441,440,436,440,437,442,440,471,490,495,473,486,481,462,487,577,567,557,556,574,566,560,558,563,570,572,563,570,564,563,566,565,551,556,557,552,559,560,554,561,554,557,521,484,489,486,486,477,484,474,475,483,480,483,491,498,499,488,489,508,500,499,505,503,501,498,495,495,494,491,484,538,534,527,538,537,539,536,540,538,535,534,561,565,561,555,556,557,547,553,563,488,473,477,472,494,481,493,481,536,542,540,534,538,533,539,543,535,526,533,527,537,532,537,494,488,489,468,511,472,488,500,569,581,586,588,584,581,581,545,532,530,527,533,527,541,530,505,509,511,512,505,510,517,516,510,511,509,517,546,563,550,561,544,552,555,507,509,509,514,566,587,582,553,545,567,564,574,569,556,562,510,499,513,502,506,501,501,516,588,568,603,586,590,589,538,545,533,525,539,547,534,531,481,474,483,481,479,485,478,492,464,556,557,552,549,552,558,541,558,542,532,476,484,482,475,483,473,493,498,499,499,502,508,497,510,499,542,538,541,536,544,533,537,542,532,534,499,506,491,500,503,500,504,498,515,548,556,571,563,555,562,558,559,569,552,494,492,493,497,506,498,500,493,491,490,504,578,571,584,572,565,577,570,585,575,547,554,549,539,550,542,546,541,539,537,528,537,533,531,532,533,536,537,528,536,534,528,530,537,539,537,534,528,532,535,556,546,561,555,496,498,497,501,490,493,496,496,482,501,501,499,499,497,502,505,511,510,517,517,510,514,504,514,511,510,518,536,537,546,540,545,544,530,538,537,531,508,512,504,513,515,512,511,501,513,515,514,510,514,520,525,542,530,529,532,528,525,517,524,537,523,471,474,477,484,567,566,568,562,556,562,562,558,506,492,487,487,508,480,496,494,492,501,492,556,546,562,552,554,556,557,566,551,560,558,562,551,555,557,518,516,512,511,512,510,517,510,509,525,505,512,508,519,466,473,465,473,466,453,458,483,473,471,474,477,471,470,477,463,453,466,456,465,465,432,451,448,443,439,440,438,442,443,446,536,543,530,535,539,533,546,537,539,539,555,551,568,558,570,560,566,570,560,563,557,501,508,488,490,503,495,502,488,493,493,494,491,488,489,492,494,488,583,581,574,584,576,586,486,477,467,482,492,485,489,491,479,496,491,485,476,540,532,534,536,537,536,547,547,543,545,542,541,483,493,490,490,503,489,488,475,493,506,484,481,477,476,593,585,583,583,590,564,593,584,582,586,583,567,528,528,528,528,547,559,550,558,549,562,552,559,575,559,567,526,528,518,522,521,523,529,522,525,523,515,528,536,529,529,532,539,535,570,555,549,570,575,494,476,485,485,478,542,547,539,534,540,531,524,537,540,538,543,546,545,542,542,551,536,549,542,553,542,513,512,503,506,558,563,552,561,558,520,512,518,521,514,516,519,518,518,522,524,491,485,496,487,506,508,506,513,544,544,535,546,551,523,522,521,528,515,554,553,543,539,544,542,551,552,549,546,539,509,524,499,509,511,507,517,516,512,512,512,568,564,567,569,565,564,563,560,560,564,554,562,553,558,558,557,568,561,562,504,487,498,494,496,494,507,497,499,505,499,495,500,497,495,498,500,504,559,556,565,566,565,576,570,578,560,576,490,492,506,499,467,464,464,463,458,465,456,456,463,456,465,456,459,453,463,590,581,584,537,533,536,532,536,535,533,532,533,535,534,541,534,530,527,532,522,525,520,516,527,521,514,520,514,521,520,519,527,516,571,584,581,575,541,537,541,535,546,539,536,537,540,534,537,509,511,515,511,513,512,516,504,493,505,512,544,542,533,543,543,545,541,545,546,539,535,540,566,571,558,567,561,561,555,556,520,512,514,530,524,525,526,525,518,525,517,518,580,590,575,574,587,572,589,580,578,573,572,575,576,520,528,519,525,525,535,525,531,578,592,592,592,573,576,595,592,591,568,545,556,566,551,556,550,550,564,553,563,563,536,524,506,525,517,529,529,493,535,512,506,504,504,497,512,502,498,506,508,504,510,506,510,507,505,503,507,506,508,499,494,493,488,492,485,491,494,500,488,479,483,495,486,484,494,490,488,490,495,490,488,486,491,490,484,486,489,482,488,487,488,499,492,498,492,498,497,498,512,503,508,509,504,502,505,510,508,503,506,489,495,498,488,492,494,476,484,483,481,482,480,478,478,483,477,487,483,482,486,486,476,479,481,478,488,479,474,478,472,471,481,475,470,473,474,472,473,480,472,459,462,474,468,467,455,458,465,467,467,465,467,569,567,570,557,586,571,567,564,560,497,486,489,495,479,494,484,492,495,484,500,485,501,483,575,580,575,573,586,577,518,522,508,530,514,510,518,508,556,560,562,552,554,560,560,549,555,558,563,560,555,560,567,550,561,559,551,553,561,515,519,527,528,498,507,499,493,511,508,502,505,506,462,462,454,457,463,455,457,452,450,457,563,544,554,549,546,551,547,538,554,557,546,543,549,551,556,558,552,558,542,545,556,549,549,550,555,542,495,585,579,576,596,585,601,570,586,582,559,556,553,554,549,562,555,559,557,557,520,527,522,526,533,514,521,507,521,523,503,502,504,501,505,507,497,503,507,502,494,497,501,495,492,505,497,476,471,464,467,472,471,471,477,469,468,462,468,535,544,561,536,549,538,541,542,548,537,482,472,481,479,487,463,495,485,487,490,483,482,488,489,477,487,479,483,476,571,565,512,509,507,494,507,505,501,507,504,503,508,505,505,508,519,509,504,504,508,507,534,547,540,559,547,546,540,547,542,542,571,564,567,573,566,534,529,532,536,544,525,531,521,523,512,520,521,523,510,515,522,518,520,520,566,558,565,566,570,554,563,568,562,530,518,536,535,533,513,527,534,521,526,528,525,525,521,530,525,521,491,495,498,503,489,507,497,591,605,590,592,590,583,587,591,596,552,565,565,559,558,566,558,575,575,549,564,561,563,569,518,508,504,516,532,520,515,518,523,519,461,475,466,474,476,477,467,473,466,465,472,469,466,461,474,454,454,453,465,459,463,551,549,552,548,566,545,558,515,505,500,507,506,521,510,512,516,473,462,462,466,456,449,457,460,458,450,445,447,451,481,482,483,477,548,570,555,572,556,565,576,561,561,567,553,577,574,485,511,510,497,507,504,520,485,511,498,504,509,496,508,568,539,545,556,557,552,565,505,497,493,497,502,471,479,474,472,470,470,483,568,555,538,547,540,556,541,517,515,521,523,517,478,474,471,484,480,482,474,438,440,442,441,437,436,434,438,444,445,453,447,435,453,453,448,446,450,448,448,549,549,550,546,547,557,556,544,553,560,557,547,548,546,557,521,524,521,520,526,521,526,525,512,523,514,543,547,544,537,545,549,541,547,538,537,542,550,569,574,570,560,560,570,566,568,549,561,561,552,568,561,572,570,495,526,494,501,508,502,496,499,508,519,501,509,499,460,480,468,468,474,468,477,466,467,470,480,468,558,558,545,568,582,563,553,549,514,517,511,504,505,499,492,486,509,493,508,555,556,566,559,497,493,489,489,502,498,484,495,496,494,497,495,499,494,502,509,502,500,505,502,503,502,505,496,560,568,559,568,569,573,567,568,564,559,511,502,511,506,518,510,563,560,562,530,528,529,523,523,533,543,540,540,535,539,543,540,540,532,539,538,540,540,543,521,513,508,515,511,525,514,506,515,517,513,519,519,508,505,513,498,512,506,504,511,505,501,507,507,511,508,508,505,529,528,527,536,530,528,521,519,518,518,536,543,529,543,533,537,535,545,540,528,545,542,545,529,527,542,536,527,536,551,555,539,551,540,498,498,500,504,504,515,511,502,499,516,580,594,605,593,604,534,525,553,538,542,542,545,543,545,530,542,544,543,544,550,538,519,520,527,521,520,521,526,513,540,548,549,547,543,525,513,526,519,524,519,509,525,529,527,591,588,530,531,533,520,529,520,518,534,528,526,531,521,576,590,567,579,585,576,575,581,594,586,583,584,596,585,508,506,510,524,520,521,501,533,515,514,548,555,555,555,558,563,556,558,556,557,558,549,558,548,553,551,552,569,557,557,510,528,514,531,527,521,525,523,533,527,518,529,529,528,508,507,507,511,507,503,505,510,507,507,511,511,514,487,498,496,494,494,498,485,485,485,481,483,485,487,483,487,480,486,474,467,472,477,471,477,468,475,474,476,478,468,458,460,553,550,551,553,546,549,553,540,539,586,573,574,569,566,571,569,573,565,530,533,528,529,534,540,526,523,541,535,537,532,541,539,541,538,534,561,558,568,570,553,558,555,558,554,508,511,525,519,523,511,516,505,575,552,567,564,553,574,556,564,565,545,515,523,529,531,514,524,522,526,519,524,531,543,557,552,541,556,550,548,540,539,584,576,570,566,487,495,506,498,501,509,483,499,486,513,500,509,493,449,452,455,452,448,452,441,442,537,534,544,544,548,537,539,535,549,535,548,544,544,542,542,539,497,480,482,483,554,558,509,508,510,505,511,503,500,497,499,548,544,552,566,555,549,562,554,555,563,550,555,499,505,512,501,519,502,459,468,454,456,457,461,459,466,458,462,461,462,462,461,452,466,461,450,448,449,462,447,455,450,455,459,554,549,543,552,546,551,556,551,552,555,547,546,485,494,494,484,493,478,484,487,474,478,493,496,489,484,579,581,575,579,585,594,583,575,565,585,559,545,545,553,548,546,553,552,544,554,553,550,540,545,553,542,510,521,508,506,519,504,514,523,505,509,517,510,481,485,476,478,473,477,477,478,474,477,481,462,464,463,463,460,465,484,490,481,503,495,502,492,487,485,496,486,571,573,561,581,564,580,575,556,568,513,529,513,521,520,527,523,518,522,525,510,524,482,466,477,469,474,476,476,485,464,486,473,471,473,430,431,443,430,433,431,433,436,435,447,434,443,437,492,477,497,489,481,480,482,569,566,560,562,565,564,576,552,564,554,554,551,550,564,560,552,499,488,487,488,490,501,497,493,498,496,463,477,474,485,477,476,483,476,486,479,598,600,590,596,590,589,595,595,607,585,596,588,586,589,501,504,518,508,512,508,517,517,514,515,497,504,520,507,520,507,514,531,534,536,532,531,533,532,538,543,540,534,541,548,539,540,548,545,557,555,546,549,543,524,515,559,544,560,564,570,529,527,534,527,519,531,525,484,485,485,492,465,467,462,468,469,464,467,458,466,442,451,451,440,451,444,457,451,451,506,505,498,492,506,505,502,495,570,560,557,560,565,562,541,552,544,550,545,554,551,496,487,478,490,487,503,495,492,491,490,484,480,496,518,516,526,516,515,521,514,521,528,519,518,523,562,572,563,559,556,554,556,557,554,566,561,519,508,496,505,517,497,525,477,484,482,477,480,476,456,469,480,473,465,466,472,474,474,477,476,476,568,566,558,561,556,547,550,566,568,545,501,509,510,505,490,499,500,509,488,477,481,481,478,475,443,451,451,465,454,451,454,448,454,480,488,477,478,474,473,478,474,577,572,559,568,575,569,559,569,562,515,505,514,441,446,436,445,507,512,513,514,531,534,534,536,526,532,536,534,532,572,564,578,567,569,575,575,572,567,568,562,578,553,485,491,490,506,493,497,496,490,497,488,498,500,491,493,499,496,496,502,498,500,497,579,566,563,571,583,560,567,573,524,516,524,531,532,529,526,531,526,518,514,504,511,505,506,516,516,515,508,505,475,479,473,472,482,475,474,484,477,480,476,471,479,471,486,487,487,578,583,582,593,573,593,591,576,582,564,588,585,582,482,479,543,536,534,528,536,540,530,530,530,537,546,539,534,560,553,563,558,560,559,563,567,560,562,571,572,557,555,490,494,501,498,504,495,496,507,495,504,500,541,546,540,549,544,556,550,560,566,562,562,572,563,566,568,548,553,534,540,538,552,539,539,543,553,544,548,499,461,463,463,464,466,463,466,467,468,466,472,463,464,461,459,456,468,455,453,550,559,537,475,481,477,476,518,524,533,521,514,540,542,532,540,547,546,542,536,548,557,548,555,556,557,552,546,547,558,557,551,547,521,484,479,493,486,487,479,495,486,492,482,481,483,483,482,487,483,481,486,487,480,479,481,478,501,507,496,490,489,500,498,493,489,497,489,482,491,490,481,491,486,495,494,497,493,493,498,493,499,495,492,496,497,499,489,494,488,480,497,488,479,487,482,480,483,477,480,484,472,482,481,482,479,479,475,479,490,492,478,490,565,564,564,566,546,558,504,515,513,521,513,521,517,510,518,512,515,519,489,499,466,466,465,460,461,458,478,491,462,490,474,493,474,490,488,485,573,567,562,561,549,569,565,568,578,561,570,562,560,498,506,496,496,506,502,505,495,509,508,502,504,510,502,512,512,509,520,501,515,554,566,575,568,568,571,536,528,522,532,532,532,537,532,533,538,526,536,513,525,524,476,480,541,552,549,554,548,545,557,552,549,546,546,548,551,554,551,551,548,562,553,544,541,557,548,551,549,551,550,538,506,507,506,512,507,511,507,509,508,506,504,508,506,523,518,559,566,571,555,559,559,551,555,570,553,521,523,520,523,522,524,522,526,521,521,520,518,525,529,528,522,524,539,525,532,533,537,532,536,532,540,535,527,540,495,505,508,503,503,512,543,527,528,541,551,558,549,545,507,504,514,504,509,507,511,499,512,513,563,560,562,559,565,556,546,562,553,550,554,554,560,549,499,500,497,492,489,504,504,492,493,489,496,505,490,494,497,510,514,521,525,514,523,516,523,516,519,521,517,515,526,521,518,518,546,551,549,551,553,545,552,549,502,497,498,502,489,501,499,504,503,500,499,500,504,495,498,507,501,506,509,496,502,525,526,535,539,533,526,527,528,538,527,532,479,512,506,494,486,488,485,486,495,494,484,497,489,495,495,586,596,576,600,583,613,590,587,599,612,593,570,560,543,559,550,551,555,539,547,493,509,502,512,506,509,504,503,501,502,501,516,505,462,469,475,468,465,472,464,467,464,455,452,458,468,469,558,550,552,552,544,544,544,547,564,536,555,545,504,504,500,506,509,500,502,512,498,503,488,478,485,484,479,500,500,501,502,501,492,495,492,499,491,487,488,492,492,494,490,488,484,481,480,480,484,487,487,480,476,473,460,469,477,478,466,474,465,474,483,472,512,501,500,497,507,502,506,509,502,551,554,562,558,563,569,547,555,552,561,520,520,521,510,501,512,509,526,517,489,489,492,478,483,489,485,483,484,490,487,489,486,480,484,482,489,484,491,487,466,481,472,474,478,502,495,488,502,501,500,498,500,496,494,495,491,494,499,493,493,538,538,537,534,551,561,550,554,554,505,499,507,512,508,505,503,508,503,546,548,549,546,551,537,559,556,555,504,506,513,497,493,503,500,511,500,503,500,497,493,495,494,501,495,534,528,537,547,538,540,530,538,531,530,544,529,546,546,551,557,548,545,551,552,516,503,500,489,501,498,514,491,498,481,503,489,505,506,496,494,497,503,502,500,527,533,530,535,522,517,513,516,505,508,509,505,507,510,505,502,506,505,526,535,523,530,532,531,527,524,518,533,538,540,533,534,539,544,538,541,546,540,538,540,546,540,540,554,544,500,494,500,513,505,495,509,500,501,510,509,504,492,477,481,489,481,486,487,488,485,486,483,474,475,483,477,474,476,477,481,482,484,479,478,477,475,483,487,483,485,486,483,485,483,458,444,453,446,455,470,462,474,478,608,585,588,590,602,582,609,581,587,580,597,595,578,582,599,532,524,531,538,523,521,522,514,593,587,586,591,585,581,588,602,590,533,522,533,542,537,535,532,542,527,532,509,513,511,503,520,511,504,516,513,506,516,504,508,555,576,555,570,548,562,560,523,510,521,568,562,562,546,558,568,556,553,556,570,573,566,549,528,524,521,517,521,522,522,524,513,521,558,556,552,557,559,558,551,558,559,561,561,560,561,553,562,559,558,528,538,541,542,534,541,540,538,540,538,531,541,499,493,498,498,499,493,495,498,492,494,505,492,503,491,493,507,479,500,501,501,502,496,501,499,506,505,507,507,552,547,536,548,549,536,548,539,540,551,496,490,496,486,504,498,498,493,490,504,501,498,508,489,492,489,498,499,490,489,492,491,497,491,499,491,497,498,496,503,510,505,498,509,502,505,513,499,540,536,561,567,567,566,553,502,493,497,514,507,512,500,504,506,490,503,494,534,536,536,543,539,530,536,541,534,565,558,570,571,571,548,550,549,555,545,546,552,554,553,557,551,553,556,555,504,517,526,523,482,477,479,486,484,485,480,474,482,479,461,469,460,459,457,461,458,536,543,536,544,534,546,528,539,537,537,530,535,545,533,548,543,551,545,551,551,549,544,542,548,554,553,558,560,562,552,565,557,557,564,564,560,554,512,521,520,515,516,524,509,512,524,523,514,510,493,488,489,484,492,494,497,497,497,497,502,498,490,499,493,566,561,558,548,552,567,568,567,561,561,565,563,531,532,528,525,526,533,529,533,534,525,533,508,494,501,490,510,498,568,563,564,552,569,563,557,566,555,550,560,545,573,558,495,504,510,503,505,487,503,490,486,561,552,546,549,568,572,553,472,496,473,475,481,469,543,544,541,547,550,546,535,525,532,524,526,532,525,525,527,526,529,523,528,542,542,541,531,536,534,539,540,541,508,517,512,500,516,511,518,502,559,555,548,565,552,551,556,551,558,551,557,555,567,509,511,515,501,508,503,502,520,498,499,496,561,560,565,562,567,563,562,555,559,564,569,559,560,560,548,554,555,543,545,551,551,550,512,531,522,512,520,509,482,484,479,469,461,463,459,468,461,547,567,558,560,550,561,562,516,500,495,496,507,504,505,493,496,494,496,493,501,524,521,531,524,520,521,522,526,534,518,527,529,469,480,486,481,479,489,469,470,479,487,471,481,553,546,543,542,533,537,544,541,551,546,548,557,547,543,561,539,537,490,502,500,511,507,501,503,505,500,509,504,516,505,501,502,510,510,553,552,558,560,501,506,502,493,493,497,497,490,493,503,484,520,523,518,524,526,519,521,515,561,558,558,566,575,554,530,510,530,531,526,519,526,518,527,520,528,513,496,506,497,476,478,485,474,483,480,485,471,475,469,469,473,469,462,466,469,466,468,463,470,469,442,439,437,436,434,442,436,435,446,431,442,516,522,522,526,529,527,520,518,522,524,520,523,515,530,521,517,538,531,525,535,529,536,528,573,564,571,555,554,568,564,571,539,529,523,537,525,523,531,525,524,523,484,478,478,484,472,474,483,466,480,469,474,532,517,536,529,528,529,524,529,537,528,532,532,532,527,531,541,547,546,547,546,546,550,545,551,550,558,552,557,561,556,561,516,507,517,514,459,458,463,460,462,458,453,450,462,452,476,462,470,464,464,476,464,458,468,466,604,592,590,581,582,592,591,578,589,599,594,583,553,508,535,568,511,510,519,536,462,466,471,463,457,465,456,464,571,555,558,556,573,565,562,556,556,551,538,562,568,552,557,556,555,556,556,562,558,513,516,514,503,521,515,511,530,504,481,488,488,488,487,489,483,481,467,464,470,460,467,470,460,469,469,459,469,478,580,563,553,567,559,551,550,558,573,568,565,553,554,565,546,571,566,558,558,492,501,500,497,481,490,485,485,498,489,502,497,502,485,500,496,553,566,569,565,546,553,539,494,475,467,473,480,472,473,470,477,477,470,467,480,550,554,553,561,539,549,553,542,544,562,553,548,536,545,539,537,539,551,538,545,545,540,550,542,473,475,483,479,470,477,471,485,482,491,486,477,480,489,484,483,484,584,577,577,557,574,561,577,582,535,515,528,523,521,527,531,518,530,486,487,488,491,486,483,494,485,481,477,474,481,479,475,475,469,479,475,542,552,551,546,556,549,559,554,489,468,467,478,473,482,467,469,473,480,471,471,466,467,472,486,485,493,504,497,493,492,490,525,530,545,533,537,534,513,503,503,505,507,499,508,509,512,497,500,531,535,535,541,528,555,558,556,563,547,556,553,550,559,551,551,563,531,541,533,537,532,540,533,527,531,545,529,528,537,550,547,551,548,552,551,566,560,554,555,555,553,554,487,485,479,489,489,483,489,455,445,456,445,436,436,448,448,441,447,454,436,448,441,531,548,553,531,545,536,544,543,545,560,541,525,534,539,542,541,554,545,550,554,558,492,474,479,475,477,478,488,476,481,483,467,475,475,524,523,524,521,524,518,521,519,525,524,524,520,520,537,533,538,527,525,556,545,513,518,517,516,511,513,532,535,538,539,529,533,536,526,541,536,532,533,533,541,560,567,559,544,567,567,560,548,554,560,570,558,547,560,550,556,559,561,491,491,492,504,511,505,516,492,502,505,480,512,467,458,547,563,553,573,547,554,547,545,548,548,553,554,557,558,557,498,507,499,503,506,512,519,497,552,559,568,565,571,532,521,524,527,520,532,530,534,528,541,523,512,509,509,515,511,517,514,511,510,518,510,511,511,500,492,501,484,484,486,485,486,489,485,480,483,480,481,486,488,491,490,546,566,576,562,550,566,588,559,522,527,523,524,541,534,524,535,530,503,504,512,507,508,516,512,519,477,472,478,471,477,480,471,481,477,479,470,472,483,476,490,603,607,594,598,595,585,596,541,546,545,541,540,543,535,544,544,541,541,530,539,562,550,568,556,553,558,556,511,510,509,506,511,496,517,500,500,502,507,507,507,495,498,500,504,503,537,530,530,535,533,534,539,533,516,518,519,519,520,527,508,516,524,520,522,519,508,525,518,518,572,561,562,573,563,570,562,550,565,574,567,532,540,533,541,533,538,544,535,541,535,538,529,511,516,523,517,516,512,516,516,520,523,521,518,548,571,562,578,571,555,563,558,568,494,507,485,488,482,489,478,481,488,480,603,585,593,604,606,602,594,561,551,545,495,498,499,494,489,497,490,502,497,492,501,508,508,502,498,508,503,503,500,502,510,508,554,558,559,561,552,567,556,563,560,562,563,565,540,534,531,526,526,531,532,533,523,525,524,523,538,536,538,531,537,539,537,535,535,542,534,539,539,535,521,517,518,521,523,559,551,554,554,548,551,552,551,549,550,560,542,539,539,532,540,534,531,522,513,523,525,531,525,533,522,595,592,521,527,524,521,522,511,521,550,541,551,539,537,536,548,541,540,549,555,539,535,549,543,554,543,539,550,496,499,506,494,494,506,502,500,498,504,506,543,551,546,546,555,487,486,482,481,470,479,469,491,482,473,539,540,541,535,543,536,540,530,523,525,525,538,537,552,545,542,538,546,548,543,538,532,532,558,540,566,545,554,551,553,566,550,554,558,566,548,547,561,555,559,506,500,499,499,503,496,512,501,496,500,495,495,495,498,494,494,492,544,573,571,564,534,521,522,530,523,529,510,525,517,549,549,553,546,551,535,538,541,542,536,509,515,505,514,518,511,513,518,509,512,565,553,549,555,551,566,555,559,554,560,565,558,542,543,543,546,554,545,546,551,520,498,509,508,510,522,510,522,515,567,564,571,571,573,583,572,570,584,569,480,490,491,488,480,484,500,494,544,540,536,538,542,534,540,541,544,541,537,535,544,547,538,539,537,541,536,539,553,545,529,520,515,526,526,519,526,523,522,526,525,526,541,534,528,544,530,550,532,533,535,542,527,495,508,502,504,507,502,501,492,509,502,498,506,502,505,495,499,502,530,533,530,528,525,526,528,541,543,508,509,556,559,545,543,546,548,552,549,546,515,508,509,498,507,509,591,573,576,580,567,571,589,568,564,571,494,510,509,511,519,525,502,506,503,508,508,510,453,440,450,452,445,447,448,445,438,553,547,559,546,555,550,547,545,554,548,551,553,548,552,548,554,544,503,510,507,516,508,511,495,479,480,482,482,481,485,487,484,472,473,479,478,468,477,475,463,472,499,500,505,497,495,504,497,499,490,502,546,546,539,550,547,542,545,548,543,540,548,543,558,568,564,558,549,568,568,557,567,577,548,567,552,554,514,512,499,512,568,564,580,555,561,552,546,569,552,570,551,488,509,502,493,500,497,481,488,482,482,493,502,504,525,535,528,533,533,517,528,536,530,520,543,547,543,538,540,545,536,540,539,542,553,538,543,541,541,545,538,549,563,558,553,501,507,486,496,492,500,502,492,508,501,501,502,498,495,496,445,437,461,448,439,449,440,445,452,441,456,452,527,519,519,515,524,524,524,529,525,529,520,529,531,533,528,520,521,528,523,551,564,570,565,563,561,575,568,580,567,569,563,560,564,571,546,543,548,535,543,542,548,543,541,538,537,536,529,538,531,537,538,521,524,528,524,527,525,535,527,525,524,532,523,527,530,538,536,543,535,539,541,537,538,546,537,544,537,537,543,545,538,536,540,527,527,534,539,533,529,535,529,537,524,526,532,553,560,554,561,559,521,492,500,496,500,495,458,458,457,452,517,505,503,489,488,507,552,555,551,547,557,557,559,552,557,563,555,547,488,516,484,495,507,508,503,469,467,504,497,499,493,494,488,500,493,500,503,487,496,493,538,518,533,526,529,544,520,472,476,475,475,482,469,475,490,476,556,544,563,559,557,551,558,561,552,566,566,489,497,496,501,488,486,508,496,509,495,507,494,484,494,464,464,467,472,462,457,467,457,452,470,542,535,534,527,538,539,539,538,536,540,531,540,543,538,536,539,543,540,538,550,541,533,512,508,510,519,513,515,517,522,515,510,507,509,511,510,517,529,528,534,484,472,474,492,477,480,479,471,488,475,475,476,471,469,470,490,584,560,576,563,565,577,576,575,580,477,490,474,481,478,479,475,471,476,465,473,482,474,514,533,528,525,530,537,528,525,526,530,531,531,533,526,533,528,568,561,569,563,574,575,570,567,497,502,499,513,490,504,491,543,543,543,538,538,553,561,566,564,563,572,577,567,560,574,565,567,531,528,523,528,518,523,521,567,562,551,549,550,562,548,562,542,558,519,519,521,520,516,523,522,523,512,518,530,531,525,530,522,522,521,530,499,502,502,498,488,501,563,559,546,559,553,502,509,489,509,521,501,492,492,502,502,482,499,487,505,490,552,543,544,559,545,550,545,552,555,549,556,550,522,524,521,519,517,560,559,554,551,554,549,556,557,564,553,556,501,513,511,518,502,510,522,516,486,483,483,490,491,485,484,485,490,491,508,506,504,513,506,506,504,509,500,503,512,511,548,540,534,534,520,538,529,534,538,533,529,532,535,476,465,473,483,483,480,479,483,486,477,468,478,519,523,520,524,526,531,528,534,533,538,536,531,531,537,559,568,559,557,518,512,516,525,524,521,512,529,521,523,581,575,572,586,582,573,580,571,572,590,577,542,530,530,533,531,535,530,539,540,526,537,531,540,514,517,513,519,515,518,524,513,516,518,519,516,578,562,562,558,569,572,542,512,519,526,507,527,522,528,474,474,481,478,485,480,480,476,485,475,461,455,460,453,461,460,458,455,456,460,454,549,553,550,556,550,544,544,539,545,550,545,569,573,559,580,566,572,568,568,566,551,556,554,555,545,551,549,559,550,551,546,556,555,548,553,549,551,548,559,550,505,512,528,533,511,519,514,516,518,500,505,494,484,490,485,484,483,491,490,487,486,479,485,476,479,474,477,461,474,506,506,502,504,520,523,517,515,510,512,514,502,515,498,506,549,545,551,550,563,552,553,558,559,568,486,483,493,486,493,474,455,446,435,446,434,429,442,532,531,527,528,532,523,537,528,559,557,571,565,553,556,554,551,546,547,556,548,546,546,549,548,548,545,553,549,543,521,532,523,526,523,512,525,525,522,516,522,532,507,508,506,511,502,509,508,506,484,484,493,475,491,493,476,491,484,458,459,466,458,454,457,454,463,462,452,455,451,454,465,454,521,533,524,532,534,534,533,534,530,530,536,529,533,530,536,559,570,565,574,563,575,570,576,579,571,504,501,507,505,510,514,548,537,542,533,544,541,541,534,540,540,545,537,537,546,536,539,541,545,550,541,498,506,514,506,511,513,512,507,509,496,496,498,489,496,499,497,494,499,491,500,504,496,496,538,535,538,540,526,542,540,543,538,535,538,535,543,546,537,541,533,552,559,562,559,561,565,569,569,566,569,566,571,573,557,566,512,521,529,525,520,583,588,590,586,584,585,588,587,537,535,543,525,529,531,473,469,494,469,491,470,476,482,484,482,476,482,559,557,554,547,541,556,547,558,562,557,558,563,564,558,521,526,520,523,510,533,508,513,527,518,477,491,490,494,483,487,488,479,487,490,483,483,479,476,484,482,487,481,453,458,457,455,455,455,486,499,482,475,469,489,476,560,588,584,574,586,583,572,578,557,567,572,578,503,502,507,496,496,501,506,504,503,502,498,501,577,567,577,574,574,556,504,520,514,511,520,508,509,513,498,514,525,525,454,458,458,456,454,464,455,457,457,458,464,469,484,569,563,572,568,566,550,581,501,469,471,489,473,477,480,475,473,474,468,550,550,550,547,552,561,554,540,518,516,515,484,483,485,485,487,489,496,489,486,488,481,485,464,467,459,461,460,454,458,453,469,478,475,482,464,476,500,476,482,483,472,494,481,488,573,571,564,583,558,569,564,572,554,550,571,563,565,515,507,506,513,517,514,511,515,522,513,510,516,507,504,559,568,560,565,552,573,574,556,559,566,569,556,533,522,523,527,536,528,525,518,515,525,526,508,519,515,505,512,512,509,518,509,517,497,507,502,500,496,496,502,506,505,498,498,491,498,491,498,466,474,474,473,504,491,495,508,500,489,490,497,500,489,488,526,529,536,529,531,526,525,532,534,526,523,525,514,517,510,517,513,520,521,514,506,507,508,504,510,504,508,499,507,502,504,505,534,526,527,537,529,533,541,521,523,539,523,522,518,533,523,518,518,520,516,523,517,529,537,528,524,524,524,531,526,532,537,550,558,542,541,552,545,551,544,546,548,548,553,550,550,532,528,524,534,538,539,539,543,542,533,543,546,540,536,546,534,537,510,511,512,522,512,510,505,510,508,507,506,509,504,499,504,500,506,507,536,530,532,528,535,538,515,523,523,522,516,518,527,519,516,523,515,521,514,511,521,524,514,514,528,517,521,520,549,539,545,537,550,544,538,537,544,538,553,534,543,540,538,550,553,563,558,561,566,557,568,526,521,517,519,517,518,516,530,528,514,527,518,512,517,521,491,489,492,492,495,488,490,499,493,497,507,499,505,534,530,539,529,534,526,541,535,538,507,514,517,514,515,514,512,519,512,513,507,509,535,537,533,532,535,525,528,533,529,529,529,559,545,561,553,549,555,557,557,560,552,554,553,553,550,560,505,487,489,505,508,508,510,498,490,484,492,489,589,569,578,571,580,582,579,580,500,508,499,512,510,526,532,529,531,527,530,530,532,529,523,529,525,536,533,533,528,523,529,526,526,531,529,526,528,525,526,528,527,531,531,531,540,541,526,542,532,538,540,540,539,534,542,533,534,515,508,524,512,516,512,515,518,512,507,514,518,518,537,536,534,539,541,535,525,509,522,514,520,511,516,516,517,519,528,577,587,589,596,592,525,541,536,535,536,548,528,537,535,533,540,515,524,523,584,597,584,591,584,585,536,538,533,533,539,529,534,536,540,537,546,539,562,566,555,564,563,536,528,535,529,537,535,531,535,535,533,534,528,527,531,537,534,536,552,544,542,556,491,478,483,501,487,480,465,464,468,470,475,469,464,461,470,463,463,469,467,458,551,550,570,558,564,566,559,556,564,557,558,550,568,512,503,514,501,516,503,503,505,509,503,512,509,512,517,563,550,551,567,548,559,547,555,560,568,547,491,497,505,510,508,512,512,512,506,509,519,510,500,558,568,570,580,571,575,560,564,562,522,537,533,531,524,533,532,527,528,527,531,526,530,471,464,471,474,474,477,461,473,469,477,488,485,525,533,528,529,536,523,528,538,534,528,525,526,525,522,522,525,535,553,558,556,558,563,560,558,559,518,512,508,524,517,526,519,522,510,519,516,480,484,479,482,481,478,487,476,483,490,484,498,508,499,497,504,499,501,497,549,556,544,544,540,542,545,546,540,539,548,532,536,528,532,529,526,534,533,530,568,560,556,545,564,550,554,555,563,546,535,475,481,484,484,484,481,477,477,479,497,493,489,562,555,554,556,551,548,550,551,551,552,557,554,540,543,545,556,541,545,548,541,553,543,539,535,545,532,544,545,540,494,493,504,490,490,457,464,461,462,460,462,456,450,463,465,465,467,477,475,472,469,473,468,469,461,472,474,557,556,552,554,563,558,565,549,555,556,532,556,521,510,500,512,525,521,521,509,513,513,502,520,509,522,520,518,516,483,487,490,493,483,483,483,486,487,494,489,465,468,471,468,545,577,560,556,562,558,564,551,497,491,489,512,495,494,480,487,433,443,456,445,448,442,451,447,443,454,454,550,534,534,543,538,546,540,542,536,540,539,545,542,555,555,541,548,508,517,516,516,515,519,504,502,564,516,516,563,582,573,564,585,571,577,575,585,592,576,499,487,483,496,489,511,505,505,498,498,509,461,470,461,471,476,473,465,461,550,553,553,555,553,560,560,556,562,548,545,548,544,545,541,545,542,506,504,573,576,575,595,577,568,571,590,581,579,585,541,527,527,530,526,532,533,522,530,526,575,554,559,550,556,561,550,568,553,494,485,482,482,479,495,473,489,487,479,479,474,485,477,544,537,541,547,545,555,556,557,538,550,550,549,544,546,541,548,548,547,506,499,499,504,505,489,502,484,508,489,500,506,492,493,499,499,528,531,533,527,531,533,536,529,539,522,535,530,526,517,512,514,514,512,520,512,508,505,506,504,504,504,504,501,499,509,533,528,525,525,530,529,533,539,535,523,521,527,519,518,520,511,520,530,520,526,513,526,525,531,521,523,522,533,533,567,571,566,568,568,562,525,516,529,523,527,597,577,602,583,592,588,592,586,588,588,590,554,543,559,563,559,532,514,524,502,501,499,499,502,497,504,496,498,493,489,492,489,488,481,498,489,489,485,487,493,487,492,493,492,488,493,490,486,513,512,500,505,505,507,504,528,517,511,516,517,530,522,538,530,531,525,540,524,524,525,559,566,568,560,558,566,565,568,558,550,557,518,526,541,520,495,500,497,506,498,501,507,505,499,503,505,498,506,501,497,495,507,532,550,549,547,542,550,546,547,537,543,551,564,517,510,509,519,496,516,514,520,507,506,511,501,501,501,532,533,544,529,463,470,474,467,474,470,522,528,519,524,518,526,523,533,524,530,522,525,532,536,531,535,538,527,536,541,528,524,525,551,582,570,558,543,548,543,539,554,539,538,534,554,545,492,487,486,493,497,490,494,500,490,490,481,478,476,482,480,482,482,477,480,483,489,474,478,570,567,503,507,494,472,469,466,454,477,465,464,471,474,548,563,541,558,551,553,564,559,554,541,550,512,517,506,502,507,511,515,514,507,543,553,555,537,554,555,542,556,557,550,532,531,536,528,530,527,531,531,527,528,529,537,528,530,526,528,530,523,519,513,522,517,523,522,515,524,522,520,523,561,574,563,566,575,560,572,561,572,575,570,572,563,564,580,552,551,551,548,489,509,494,502,486,494,486,500,487,488,493,498,499,500,502,497,494,492,498,491,502,498,497,544,549,538,538,539,552,550,548,553,536,553,544,544,496,503,500,498,511,498,502,511,496,492,519,530,536,537,533,513,520,514,513,520,509,517,512,514,530,515,517,538,537,540,547,545,534,546,535,536,558,549,551,555,557,551,554,559,554,563,509,504,494,495,499,498,494,500,507,507,484,487,486,487,488,481,487,565,556,561,558,540,570,560,543,549,554,567,549,567,555,513,523,513,513,510,529,513,506,507,512,466,473,474,470,466,468,470,469,464,476,473,460,460,463,467,545,539,543,543,550,538,557,528,549,543,538,509,512,507,515,514,573,564,566,572,558,561,568,571,573,581,565,567,572,569,569,566,562,567,576,490,513,511,507,492,486,512,499,510,509,504,507,513,506,511,508,511,514,513,507,509,511,560,560,558,552,560,554,561,559,541,542,541,541,535,538,536,543,544,545,533,531,527,534,526,530,532,530,531,536,534,528,527,532,533,527,536,527,531,533,551,548,549,554,555,553,498,503,499,510,506,498,487,506,507,507,500,506,504,507,528,511,498,507,511,528,519,511,521,513,525,548,549,552,543,548,539,554,544,486,479,486,482,486,476,483,493,480,483,486,490,489,442,443,454,439,444,449,454,447,452,562,549,548,562,544,560,552,553,554,551,567,550,552,555,556,561,561,562,558,564,565,563,559,556,552,563,552,524,520,519,522,535,528,537,531,523,533,513,514,503,513,497,504,505,512,503,508,507,511,486,485,487,485,475,487,479,482,495,509,509,511,497,508,515,509,506,511,544,543,540,540,541,544,552,545,543,541,538,544,518,524,529,515,523,521,521,519,523,515,513,559,553,554,549,564,541,537,538,535,542,540,539,523,526,528,525,529,525,596,594,579,597,577,579,599,602,581,581,507,555,548,544,554,553,544,544,563,550,554,552,551,549,547,546,551,546,551,556,557,545,495,494,517,498,493,494,512,502,500,503,460,449,465,468,451,458,500,515,502,520,515,526,506,507,502,518,505,520,555,553,560,569,568,554,560,569,543,568,563,560,563,508,508,485,501,500,499,498,506,501,518,503,505,511,511,509,517,511,507,513,510,538,536,494,495,588,606,583,583,580,587,538,539,542,536,543,537,527,538,533,542,513,542,559,541,549,544,552,537,542,531,543,540,535,539,536,534,538,539,532,539,533,540,540,540,522,517,519,516,523,521,526,525,541,542,539,535,535,543,535,534,552,558,563,565,550,568,562,558,514,523,515,523,520,518,524,521,522,519,521,515,516,520,520,569,577,555,552,560,563,566,565,557,546,568,565,559,513,522,501,515,510,510,510,548,565,576,566,570,555,577,520,512,509,511,507,516,503,581,563,569,560,576,568,554,555,562,570,570,559,508,514,515,519,535,518,529,516,503,474,462,475,466,473,470,461,472,473,461,469,465,463,470,457,458,457,459,461,462,461,465,470,513,502,498,496,502,506,507,503,506,506,499,496,527,527,528,530,533,533,521,532,492,495,494,500,500,497,511,581,589,575,612,589,589,594,607,583,512,512,518,509,511,533,522,512,526,526,531,521,520,523,521,522,524,526,523,523,519,529,511,527,537,531,532,530,529,533,539,521,533,567,565,581,553,563,570,573,587,586,587,567,510,506,504,500,534,521,531,535,535,519,533,550,543,543,542,541,551,543,537,550,542,535,539,562,559,555,553,560,568,562,565,524,520,521,525,526,516,526,504,509,516,516,509,511,510,510,509,510,493,492,486,489,492,500,485,481,481,484,484,485,497,490,491,497,483,477,473,483,482,478,470,475,473,463,467,469,473,476,477,478,536,558,556,553,566,543,486,473,474,465,474,481,467,475,474,469,467,475,472,556,575,568,570,552,554,572,563,560,577,508,510,498,490,494,496,487,494,588,594,590,594,596,584,582,592,596,586,548,551,555,542,555,553,492,496,500,490,493,501,493,494,493,498,486,479,486,483,485,557,559,584,579,570,568,557,494,506,503,505,491,486,501,501,500,582,585,581,589,585,569,585,578,596,532,519,518,515,518,519,510,513,510,519,518,546,548,540,550,549,558,556,541,561,569,572,565,568,560,572,564,565,500,511,519,526,507,508,519,530,518,524,522,523,514,523,523,570,564,565,564,563,563,568,528,521,532,512,514,527,527,511,524,527,526,517,516,517,533,525,499,501,503,500,500,497,479,484,489,476,492,476,482,476,469,470,470,465,466,475,472,471,468,466,471,469,469,466,472,467,473,460,470,472,459,469,470,470,463,467,555,547,560,549,563,552,562,557,514,497,504,499,515,496,516,493,503,505,497,502,507,498,504,500,503,498,507,536,549,560,553,544,548,559,552,494,497,505,504,516,501,512,501,511,496,512,478,478,478,484,482,484,455,460,458,456,458,459,463,458,459,451,454,460,457,454,458,458,476,482,476,474,479,467,619,584,597,547,537,531,536,538,546,530,533,542,541,561,569,556,563,528,508,493,505,504,516,514,523,503,500,499,444,442,438,434,446,444,445,437,439,439,440,479,470,466,477,481,468,474,551,567,569,561,561,545,517,513,514,512,506,511,518,478,480,481,498,489,491,495,495,490,492,492,494,488,497,497,492,497,461,460,462,462,462,454,467,458,460,454,459,446,446,452,457,450,456,453,446,452,543,534,550,543,541,544,549,539,556,547,542,544,542,550,542,543,541,539,536,520,507,518,511,518,513,511,510,509,510,507,520,518,504,547,556,558,556,563,545,564,565,530,515,525,527,531,522,539,520,520,525,531,524,523,482,472,480,484,488,478,480,484,478,481,478,478,483,482,487,474,492,547,559,562,563,558,553,550,566,555,565,576,567,562,559,568,571,572,575,574,511,499,511,509,493,491,489,493,490,495,485,492,482,487,485,495,482,496,494,483,481,485,486,562,562,569,578,579,589,571,574,566,587,567,553,563,503,506,497,510,498,492,525,493,508,489,599,587,581,581,595,556,557,543,549,561,504,497,495,486,502,500,484,485,496,500,489,499,497,500,494,493,504,563,561,576,563,575,572,556,520,515,520,516,515,578,564,562,581,522,524,527,534,528,525,512,497,500,501,506,510,514,509,480,484,488,483,485,483,480,481,483,480,484,483,485,479,489,485,477,487,483,485,546,548,563,553,564,552,559,559,487,497,502,493,502,497,524,515,519,520,523,530,525,513,520,519,528,513,568,566,567,565,567,566,565,564,511,509,518,521,515,478,478,486,482,473,478,472,480,471,483,481,479,444,444,439,449,531,529,525,524,533,534,514,509,524,514,515,512,517,516,519,523,528,513,523,534,528,534,535,528,565,564,559,570,557,557,561,562,564,566,556,555,564,562,565,563,556,559,533,528,527,528,524,522,530,546,560,564,546,557,565,534,559,497,491,516,508,504,512,498,500,504,542,485,506,497,484,494,492,494,503,488,495,505,510,485,490,489,487,484,487,491,480,482,477,483,487,481,480,489,480,485,484,482,489,485,466,460,457,471,468,463,468,465,466,460,447,493,490,492,500,493,492,500,517,514,518,506,513,511,514,519,558,559,559,555,558,558,556,550,561,546,559,546,554,495,481,442,445,435,452,439,452,440,448,442,449,456,445,459,524,513,520,520,522,535,533,521,525,528,532,524,527,533,554,580,568,563,558,581,577,573,576,567,577,577,567,575,567,563,570,560,498,496,499,508,507,495,511,494,508,500,496,502,488,504,505,505,499,511,544,536,536,537,534,536,531,539,535,542,537,531,540,562,570,573,561,556,568,566,569,546,550,556,541,551,554,547,555,551,555,555,544,540,536,542,541,543,540,544,546,546,545,545,513,512,476,478,485,478,480,476,478,473,480,474,472,468,468,457,471,436,454,442,439,431,431,427,434,435,450,441,444,447,447,436,451,534,533,552,543,546,530,534,545,542,543,547,562,548,553,549,555,558,558,556,553,544,552,558,554,556,540,475,469,478,472,546,536,533,541,541,535,546,537,539,554,544,535,544,546,504,513,511,508,507,511,500,544,560,556,547,560,553,553,550,493,496,491,497,497,489,492,497,506,492,506,508,506,504,503,510,511,515,508,508,512,503,508,509,506,506,545,540,537,545,544,540,545,544,545,569,569,567,570,492,511,499,511,547,543,548,539,539,569,573,568,565,573,568,578,561,564,567,574,564,576,560,570,541,546,500,499,498,509,500,501,494,508,502,504,501,507,513,511,508,515,523,509,548,538,548,540,549,530,528,538,533,533,567,565,548,558,564,554,565,570,534,517,523,521,523,522,489,484,489,488,483,481,485,476,489,485,485,490,484,490,484,493,491,509,507,502,508,513,504,509,507,505,535,525,522,524,532,535,533,527,523,543,542,533,542,543,545,548,539,541,544,539,542,535,541,538,535,546,536,548,547,538,544,543,548,558,544,543,472,464,478,477,480,431,445,442,449,458,454,528,531,537,527,526,527,514,524,518,530,524,522,523,529,528,532,522,530,524,574,564,512,520,506,513,515,506,517,508,525,546,553,549,550,552,548,550,533,546,551,561,542,554,546,554,545,551,539,541,497,507,508,509,513,497,502,507,507,508,513,594,607,614,586,602,589,598,592,586,601,584,586,546,547,534,504,494,503,494,490,488,490,488,498,589,602,587,597,567,591,591,603,582,586,585,586,513,522,512,515,520,527,521,525,507,547,550,551,544,545,545,539,547,546,536,551,544,555,549,559,476,476,470,470,484,474,471,521,528,523,523,519,521,524,526,525,515,521,519,509,520,511,513,516,514,521,532,526,532,516,553,574,547,566,562,569,560,524,521,516,509,508,521,524,523,517,569,581,578,581,589,574,587,593,528,529,531,529,530,527,537,532,559,561,561,568,489,465,502,488,474,482,471,471,480,486,526,531,529,528,528,530,539,530,541,545,562,572,574,575,570,556,572,553,575,563,548,542,540,547,542,543,550,536,546,553,544,554,503,495,500,497,504,503,500,502,502,557,542,555,560,562,557,562,551,561,557,564,500,510,517,509,494,507,513,508,472,473,473,479,481,476,479,486,488,490,499,488,493,489,495,468,471,455,466,468,461,466,464,474,466,459,462,438,446,446,427,514,514,526,526,519,523,521,524,523,513,513,519,520,539,528,531,541,540,535,541,532,538,532,558,551,551,556,551,543,544,548,555,522,520,523,525,526,517,509,514,508,507,505,503,504,519,520,513,526,522,523,520,524,514,519,523,526,539,531,528,535,530,529,528,531,536,536,536,578,545,572,548,548,543,541,543,546,546,552,540,490,481,490,486,493,502,477,482,486,478,478,476,480,458,445,451,457,449,449,447,450,447,457,450,557,549,553,547,558,552,547,559,554,549,552,553,561,547,543,552,547,554,555,541,544,548,536,532,509,517,512,519,514,515,520,514,518,522,516,580,574,565,557,569,579,566,587,571,577,576,578,566,585,578,576,588,585,575,529,516,520,518,529,517,527,521,515,521,524,531,534,481,478,482,482,483,482,485,481,490,483,492,489,489,485,494,482,487,489,490,584,562,571,551,559,519,491,503,510,513,483,488,489,480,483,481,486,488,485,485,483,483,497,502,505,504,507,510,505,502,506,560,547,558,549,553,551,562,554,553,565,548,560,545,555,555,548,548,555,560,560,555,544,543,497,498,508,506,505,502,505,506,507,503,507,504,515,505,508,503,513,510,503,509,498,504,539,532,541,542,530,535,561,562,564,565,561,556,568,573,554,530,526,543,534,538,529,524,527,519,517,520,516,524,523,526,523,591,583,590,598,594,608,583,567,600,597,596,509,514,512,523,514,507,516,506,503,518,518,510,523,507,531,526,528,531,532,534,541,544,541,539,539,544,544,533,540,554,557,554,552,552,546,555,549,517,508,522,520,519,507,494,499,503,487,490,494,488,486,490,480,495,490,470,464,474,464,461,472,469,440,454,455,447,450,453,454,442,455,452,455,479,478,478,481,482,467,461,472,471,620,603,595,591,593,598,602,594,598,588,588,533,517,519,538,533,538,543,517,527,521,584,586,589,592,582,584,596,582,585,592,586,579,562,547,545,537,543,551,553,558,540,554,550,508,488,490,486,506,492,497,499,498,508,500,505,503,509,506,503,506,494,504,500,500,504,509,557,477,475,471,472,467,467,469,469,472,466,487,472,478,469,474,449,472,467,453,470,473,477,466,473,592,611,584,578,590,593,605,597,593,509,509,508,503,523,489,503,527,508,509,519,504,514,529,525,532,524,532,533,517,518,520,519,517,521,536,531,530,533,527,529,550,543,544,544,544,542,556,546,471,481,458,474,464,469,460,537,526,537,523,537,546,532,527,529,534,528,544,568,570,575,563,578,567,575,568,542,550,541,545,545,495,482,500,505,497,499,502,494,493,500,497,499,500,500,491,500,503,502,502,503,497,502,503,499,501,517,521,510,499,511,512,511,515,508,515,518,513,517,517,541,534,540,540,532,537,534,544,541,542,536,545,539,546,547,537,548,542,541,505,504,505,515,519,509,507,510,520,506,504,504,503,507,507,505,519,539,532,527,532,525,528,530,530,528,533,529,516,512,515,521,515,514,513,511,514,515,523,518,525,517,536,520,534,536,536,533,541,539,536,558,574,556,563,558,570,567,566,557,570,555,560,529,538,535,529,537,542,539,504,510,514,515,512,512,507,513,506,505,516,507,513,526,521,525,527,524,529,525,522,523,522,522,527,581,589,580,573,592,604,591,591,518,506,530,546,546,536,536,571,561,573,572,572,567,558,534,526,524,522,521,526,528,474,477,468,475,478,481,486,467,474,477,485,480,467,467,489,467,477,483,455,519,518,524,531,519,516,530,522,521,531,534,530,576,567,572,573,570,565,565,568,576,564,563,572,569,551,549,548,555,551,554,552,549,546,552,551,550,552,560,551,551,562,549,535,529,533,525,518,520,532,526,530,523,522,518,532,529,504,510,501,507,503,505,509,510,499,506,498,503,507,500,500,499,499,506,500,500,488,486,488,485,486,491,489,488,492,488,490,491,491,494,491,495,490,496,495,512,509,516,505,510,507,509,505,512,502,508,546,545,556,559,557,549,552,546,545,550,545,541,541,547,495,497,502,509,497,494,488,488,478,475,476,482,480,483,478,474,473,473,475,476,470,474,470,479,480,483,479,477,469,516,519,513,508,513,515,515,510,517,520,502,508,518,514,565,562,568,572,569,561,557,558,567,559,565,565,563,523,522,524,532,532,519,476,473,479,480,485,470,477,474,454,440,438,444,447,528,521,514,530,526,526,524,524,531,526,529,535,532,532,535,540,530,531,527,535,539,533,564,542,541,537,553,549,532,544,540,551,546,487,495,494,486,481,476,579,594,591,579,581,575,589,575,585,595,579,594,532,521,531,542,533,540,532,533,509,513,505,502,519,516,502,502,504,513,523,513,514,507,561,561,563,558,571,561,560,571,559,552,557,515,521,516,532,534,528,533,531,517,515,520,511,491,486,488,484,491,483,484,479,477,491,484,485,483,483,488,486,448,448,448,449,454,452,441,449,462,451,457,447,456,454,446,448,529,539,527,529,526,530,526,536,531,528,528,525,527,527,526,525,528,524,510,514,514,516,519,515,513,521,522,520,518,528,513,531,533,541,527,530,534,538,537,545,529,525,535,534,573,546,555,543,546,555,556,554,505,503,496,497,507,515,500,507,492,607,617,595,565,601,593,604,588,604,586,593,612,600,565,573,558,522,513,520,535,518,518,523,507,508,511,505,495,512,500,503,501,487,494,491,496,461,465,458,457,456,458,452,454,459,462,502,511,504,482,499,506,493,499,506,559,536,544,555,553,540,552,551,551,551,542,547,541,505,496,505,505,500,509,515,502,505,504,500,499,495,491,497,555,552,548,547,558,546,543,547,545,557,569,565,568,563,566,566,566,504,503,532,522,519,509,519,479,486,490,486,489,484,486,490,492,490,494,491,495,490,496,485,482,482,479,474,560,560,550,543,565,566,560,575,510,509,504,496,511,511,501,463,456,464,468,458,465,446,458,460,458,464,460,461,472,492,494,509,513,506,508,500,507,501,501,496,537,544,532,547,537,535,533,474,472,472,469,481,475,484,489,471,477,532,516,533,542,539,539,536,543,552,557,543,496,490,496,490,481,496,491,494,508,490,489,538,553,542,550,551,545,541,540,547,547,536,509,516,508,520,526,512,515,551,540,538,527,537,498,478,494,467,466,467,466,499,507,507,518,506,514,509,514,501,560,558,552,546,560,541,553,560,563,551,485,497,497,495,497,476,475,485,479,473,469,474,468,484,478,476,572,546,547,535,560,555,565,564,568,566,489,489,498,507,499,519,499,498,500,501,500,514,499,585,590,614,589,590,588,600,593,582,595,597,602,599,592,594,532,544,536,536,532,533,538,566,567,537,538,535,533,528,532,533,538,542,536,541,542,540,538,537,536,531,530,530,531,535,535,533,530,531,559,579,567,562,561,567,559,515,528,516,514,516,526,516,497,505,525,526,531,518,485,482,475,489,480,480,487,478,477,493,498,498,495,536,529,535,532,585,591,587,575,581,585,519,514,523,516,524,526,525,508,523,516,525,525,519,519,507,524,516,558,561,555,558,559,560,562,554,559,552,560,558,567,563,564,560,566,563,563,558,569,541,529,519,525,529,537,535,521,526,525,519,508,515,508,506,510,504,506,500,508,508,506,504,510,507,505,473,487,492,484,479,487,479,489,454,452,464,463,458,465,460,461,460,465,459,465,454,452,461,466,481,481,480,491,478,482,581,564,565,576,559,571,577,567,562,561,509,497,513,496,515,511,513,493,512,513,549,555,545,541,541,548,546,547,555,510,504,509,511,516,572,571,565,574,563,571,565,558,567,571,572,559,559,533,514,523,526,507,520,516,507,519,518,526,518,515,526,527,493,487,483,486,486,479,491,458,456,455,453,452,451,451,463,458,449,453,451,459,454,449,428,444,453,438,453,453,446,439,455,454,574,569,589,574,584,597,582,560,561,549,558,542,502,509,499,514,510,506,522,512,500,517,509,514,498,500,506,499,507,502,503,501,503,503,527,532,530,534,526,540,528,527,533,538,518,518,515,518,515,520,520,513,522,530,560,558,554,545,555,557,553,555,558,558,533,523,529,526,528,531,520,514,504,504,506,511,499,506,500,502,506,498,504,516,499,505,480,483,482,480,481,485,481,490,481,474,479,481,478,475,489,485,491,493,481,494,490,493,493,560,578,553,558,552,581,548,555,563,570,573,569,547,560,564,554,546,568,521,527,525,528,523,527,524,533,529,526,518,561,553,553,561,549,568,545,545,554,552,539,535,491,503,492,498,505,485,505,497,504,492,503,507,493,500,491,504,508,497,489,489,491,501,486,487,492,486,490,491,493,541,542,530,532,535,542,529,550,529,539,536,542,530,536,534,540,531,542,571,551,540,559,566,563,565,555,571,566,543,551,559,538,565,483,470,484,493,488,482,488,496,489,484,472,486,488,484,489,484,482,566,583,580,584,602,578,592,483,508,506,510,505,508,502,500,505,491,505,498,498,505,499,500,570,564,569,583,566,561,583,501,499,511,507,498,496,491,485,491,484,492,496,497,501,557,564,558,567,571,565,562,564,577,559,572,563,559,502,499,509,481,508,498,518,520,514,511,502,494,456,459,453,459,464,455,459,553,534,561,554,540,541,538,523,529,527,520,521,525,548,560,555,554,552,552,553,542,549,555,505,511,518,515,501,514,511,514,499,523,514,523,486,486,481,486,481,483,487,485,474,478,484,483,477,486,480,482,487,553,559,562,565,549,560,557,558,518,505,523,522,521,517,520,487,479,484,488,478,485,481,478,484,481,461,472,469,456,462,453,448,455,460,464,455,455,499,490,500,493,497,495,494,494,503,502,501,494,504,503,505,511,505,504,509,505,512,502,539,538,543,536,538,579,557,571,570,551,514,526,524,521,543,484,476,470,466,480,474,477,479,472,468,472,467,468,569,553,543,561,553,552,552,560,572,502,498,502,502,522,512,513,501,496,517,505,505,509,503,507,510,502,509,533,528,538,528,531,560,567,543,557,553,541,547,482,488,475,482,461,487,456,452,456,463,446,454,438,446,462,562,562,553,570,566,573,572,568,567,570,560,571,570,570,570,576,570,560,557,562,577,524,529,511,528,537,535,527,533,525,526,530,526,508,507,507,511,513,517,517,515,504,506,505,477,483,478,481,484,454,462,458,462,460,463,465,450,460,451,466,459,544,536,532,542,539,527,539,536,524,538,541,524,514,522,519,521,510,520,509,520,530,534,529,535,529,532,535,524,532,529,530,530,527,538,531,534,560,544,566,549,559,576,564,566,553,567,569,564,586,564,567,561,559,569,530,531,538,533,524,521,547,542,530,526,536,530,516,506,512,513,516,511,510,508,508,514,511,564,564,565,558,573,557,562,569,562,521,518,529,520,515,536,514,535,492,490,496,497,493,487,495,507,501,504,503,493,507,506,498,500,506,534,543,535,537,532,531,542,542,535,534,536,533,534,537,501,512,509,514,519,507,510,502,524,525,522,520,516,524,518,513,518,523,526,529,583,583,578,573,589,583,581,585,590,598,589,529,530,522,515,528,516,523,518,525,520,556,558,554,564,558,549,555,559,558,561,562,560,555,566,564,554,557,566,562,524,538,529,521,516,528,521,527,518,504,511,501,507,513,506,510,511,507,506,511,505,512,511,485,501,493,493,476,492,487,488,488,497,480,494,487,478,484,485,476,479,483,484,486,488,478,484,482,478,481,487,479,474,475,471,472,477,478,481,481,479,454,461,453,448,448,442,463,451,436,450,544,555,559,545,556,543,547,557,551,548,557,551,553,541,548,552,505,502,504,487,503,503,487,502,497,509,501,503,491,513,491,516,517,449,451,450,457,456,491,480,492,475,475,483,586,575,573,577,583,555,501,509,492,499,484,505,486,489,492,499,566,578,580,576,577,572,600,581,507,516,504,503,499,515,516,504,500,500,547,544,540,543,543,545,538,545,546,548,539,542,558,554,558,569,561,569,569,563,565,567,562,567,564,565,527,533,539,536,533,534,541,533,530,537,528,531,536,533,531,534,515,519,524,516,517,522,523,524,523,522,521,551,548,541,539,549,556,540,547,540,548,541,546,551,552,547,504,509,500,507,507,500,503,507,495,507,507,508,493,502,531,526,541,539,529,536,536,542,529,524,533,528,528,537,531,539,533,553,483,476,477,474,471,479,484,481,487,485,465,558,552,556,560,562,564,556,559,555,568,544,548,554,512,517,519,514,513,516,534,547,544,545,550,549,545,541,547,544,544,553,546,545,535,542,487,467,488,476,478,477,476,478,479,478,528,535,532,537,528,532,529,539,527,527,524,527,534,538,539,539,546,542,543,543,541,540,538,543,541,547,541,545,544,540,539,555,554,544,552,546,545,555,503,508,512,503,513,513,503,512,504,508,508,459,463,464,473,475,449,461,468,462,461,458,457,487,485,489,479,486,484,492,481,491,487,491,473,490,483,548,550,545,552,546,551,560,556,555,558,546,560,553,518,523,537,526,521,470,479,474,487,480,511,497,516,509,511,511,498,520,500,518,512,511,498,515,552,544,500,491,501,507,491,503,503,496,501,501,500,498,502,498,493,496,507,516,508,521,513,512,507,510,508,513,510,508,534,552,504,525,511,519,506,501,506,512,561,555,573,557,568,559,503,496,501,509,497,498,484,484,476,480,489,486,487,492,491,487,489,486,490,486,491,485,456,456,453,457,455,461,459,458,459,509,496,496,498,507,499,570,546,543,483,485,483,476,490,478,481,497,496,492,495,493,492,468,463,474,464,462,462,469,469,470,567,574,569,554,568,570,559,562,470,467,465,482,469,475,482,457,483,486,527,528,519,522,524,524,543,539,544,540,545,545,548,538,544,549,547,552,547,545,551,552,547,544,554,551,558,544,555,546,545,546,542,510,509,508,512,515,511,497,511,506,510,514,506,517,513,509,513,561,564,556,555,561,546,566,556,559,554,557,563,516,518,516,524,521,516,505,500,495,461,468,458,459,457,454,460,461,452,459,459,463,467,458,447,449,449,453,447,457,453,445,456,462,444,553,555,540,560,550,551,557,549,551,544,554,555,559,552,548,549,544,494,476,486,511,489,493,550,557,560,555,549,556,484,488,490,489,483,489,491,483,581,577,600,576,580,569,583,587,584,563,586,584,580,580,580,540,540,532,549,544,545,545,527,520,521,523,527,521,531,525,526,523,530,501,495,503,498,494,497,508,501,506,502,500,502,517,508,512,517,514,513,512,511,556,560,555,558,554,552,558,552,563,552,552,558,567,557,555,557,551,531,524,524,528,530,528,528,529,520,541,524,508,513,508,509,501,511,501,514,503,489,486,486,483,481,481,513,511,509,508,509,500,522,541,551,543,548,545,548,545,538,543,542,552,540,541,554,535,532,535,528,531,533,537,528,531,546,562,548,553,561,553,507,501,505,494,506,500,494,499,485,502,500,503,506,505,502,503,504,540,535,534,541,536,540,542,539,548,570,564,560,556,555,561,553,559,554,570,571,525,534,529,529,529,523,524,520,550,547,552,554,552,529,534,531,534,538,533,538,531,526,533,524,521,525,525,523,526,520,550,554,557,548,561,554,554,553,555,549,544,551,544,551,550,548,548,549,547,553,546,545,542,531,515,510,517,516,517,518,523,513,514,514,516,507,502,506,503,502,505,503,508,507,509,498,510,507,507,504,507,508,499,526,521,528,524,522,523,535,546,537,539,539,540,551,541,543,554,536,539,532,559,568,556,558,565,554,553,559,559,550,552,526,518,527,511,508,511,520,515,510,510,511,493,477,489,485,480,481,482,479,488,468,469,468,464,454,466,552,568,562,571,567,557,558,570,561,563,574,570,566,484,496,480,489,483,504,486,464,497,482,483,507,489,484,493,486,491,492,443,460,458,455,454,441,453,442,453,459,452,452,452,460,452,454,447,586,588,580,571,566,576,570,545,549,553,543,543,551,550,543,546,526,522,517,530,527,525,529,472,482,476,472,471,555,557,560,544,569,547,553,549,556,558,554,555,551,551,561,554,560,499,506,506,498,505,492,490,502,503,505,498,502,504,492,480,491,479,485,478,481,484,480,483,484,483,481,549,552,559,553,555,502,504,504,501,490,502,501,511,499,501,510,507,501,500,500,503,545,547,556,554,569,547,555,548,520,513,515,511,505,508,516,511,502,513,506,579,563,583,569,566,583,562,511,512,511,512,515,567,572,563,560,550,550,559,549,502,491,491,499,497,487,492,492,484,488,485,481,487,483,480,481,479,469,593,589,588,605,605,542,547,525,529,538,534,544,534,535,526,534,534,530,528,533,537,530,525,491,491,505,487,489,493,496,490,495,603,579,601,583,586,573,588,588,601,553,561,560,559,562,566,569,558,550,558,498,512,499,507,511,494,502,506,491,508,490,505,505,457,449,458,456,455,461,450,454,454,461,446,451,459,456,458,455,446,461,432,447,446,443,447,441,437,448,445,444,448,436,552,538,548,544,570,577,574,574,579,566,569,575,576,570,568,575,581,572,577,573,553,546,554,541,549,541,548,499,495,497,482,498,500,496,500,498,503,498,496,499,498,512,515,510,514,511,516,520,514,514,513,510,512,544,538,541,536,541,541,535,554,548,533,546,541,536,539,548,537,544,548,548,551,547,550,516,517,514,516,510,517,512,519,518,515,528,524,508,513,570,555,548,560,554,553,547,566,546,546,559,544,553,567,525,521,505,527,507,490,514,494,496,503,516,509,494,496,500,530,521,530,539,547,514,522,527,527,529,522,520,520,484,477,476,478,478,479,473,461,548,552,534,542,543,539,541,544,545,545,532,546,549,564,550,550,542,559,559,552,549,557,558,540,558,566,464,472,492,479,486,468,484,482,475,481,556,557,548,538,543,550,551,550,548,544,544,549,556,569,551,558,542,545,555,554,494,508,502,495,493,517,514,508,512,501,509,478,485,477,486,479,481,481,493,548,553,556,552,554,544,556,487,498,491,502,505,494,491,505,502,499,501,493,496,502,493,498,496,499,544,553,549,551,546,541,503,513,509,514,517,509,512,513,512,517,506,501,508,506,559,560,555,553,557,553,562,558,560,563,555,549,559,557,560,488,497,475,478,491,487,483,499,484,496,493,491,538,541,536,539,545,534,527,535,536,539,541,541,540,541,539,538,549,540,554,549,554,554,547,546,551,567,564,564,556,558,560,558,556,560,523,523,523,526,521,523,525,523,499,497,500,502,499,493,498,499,467,467,470,470,469,469,471,470,479,480,482,483,475,477,478,486,475,479,475,486,476,481,485,471,481,523,509,519,515,519,517,506,506,503,514,524,587,570,566,572,583,586,579,582,584,584,578,578,576,576,582,585,544,543,541,546,551,533,541,539,545,539,536,544,532,516,517,523,527,521,517,529,527,524,528,520,521,525,548,570,572,566,568,528,524,520,529,520,521,515,527,543,552,543,549,536,547,549,552,554,538,547,560,554,497,498,506,506,506,512,500,514,503,509,510,514,516,536,545,539,534,547,530,531,520,529,525,521,518,539,548,538,542,538,543,543,544,552,547,518,516,516,510,516,525,522,518,518,520,526,524,586,593,591,593,587,538,531,540,540,528,543,540,545,548,529,519,510,510,514,521,519,521,520,520,518,585,591,606,593,597,594,597,588,595,597,572,589,595,552,549,553,548,542,548,557,546,539,558,552,532,532,522,527,536,525,532,526,533,521,535,536,499,513,494,500,496,502,496,494,572,563,578,548,564,482,482,480,479,486,490,478,521,520,527,526,530,520,529,524,522,515,542,542,549,551,544,541,550,550,537,549,551,562,557,564,562,561,558,556,559,550,557,522,520,506,519,514,511,526,522,521,528,522,517,521,504,510,504,511,497,499,494,501,502,505,501,507,467,469,465,473,466,473,476,486,471,465,467,475,468,474,485,481,546,559,558,522,501,518,515,522,514,513,525,515,510,526,503,519,524,510,490,488,486,489,495,484,481,511,512,509,518,546,533,547,549,527,478,474,477,474,477,475,554,543,542,548,556,544,562,544,548,544,545,551,556,547,549,556,551,541,551,555,550,555,557,497,506,490,493,510,498,498,499,499,494,498,495,493,492,491,492,491,485,492,499,501,490,497,493,498,485,519,514,532,521,521,520,514,521,518,524,513,522,523,519,525,539,555,555,550,553,555,557,558,557,515,521,516,512,515,521,520,521,518,516,524,514,522,537,533,528,522,523,523,530,524,533,531,479,486,487,473,462,476,557,552,554,566,549,548,539,560,560,562,553,559,564,562,562,575,564,502,493,512,501,491,506,500,518,515,516,520,525,530,520,524,516,519,561,546,565,559,549,554,553,499,491,496,498,485,493,494,498,498,503,508,507,504,505,500,510,505,508,566,568,553,558,561,556,564,538,539,543,528,535,531,529,533,521,525,517,520,519,514,521,523,519,517,522,519,519,529,529,534,525,536,527,524,539,530,524,532,529,524,532,529,534,529,561,559,556,559,570,566,471,477,477,488,482,488,481,475,478,494,481,488,483,467,492,463,497,481,467,540,541,541,539,541,548,553,547,552,546,550,544,552,490,497,503,498,509,495,498,493,490,444,439,432,430,433,444,435,436,452,443,449,435,443,442,436,433,443,521,514,514,519,519,522,515,514,515,514,515,517,520,530,520,518,520,522,516,532,537,536,528,533,537,538,533,535,520,532,539,530,536,545,542,541,542,548,544,543,523,515,522,524,525,527,526,541,542,550,547,500,509,499,506,505,502,497,511,499,500,530,533,531,529,527,529,531,533,540,533,529,509,520,508,511,525,525,518,516,519,520,516,515,521,514,518,521,520,514,514,513,514,516,520,516,517,541,544,537,545,539,539,546,539,542,539,535,537,544,545,546,552,555,541,546,548,552,544,550,508,497,504,503,495,495,489,489,491,490,491,495,492,497,487,490,494,489,487,508,508,503,504,514,500,501,503,507,505,543,540,537,544,538,541,529,564,572,571,572,564,578,553,567,575,573,553,507,504,502,507,500,497,499,495,507,497,506,499,539,537,537,537,546,530,534,532,539,540,535,553,563,568,568,538,546,544,545,540,541,547,543,546,540,540,533,530,529,533,542,533,535,534,532,532,530,535,539,534,533,534,537,535,535,533,538,527,526,564,560,553,564,555,560,556,557,560,562,505,494,498,492,505,500,493,497,484,479,489,483,480,489,488,483,472,479,485,479,483,564,567,567,593,579,585,573,564,585,571,573,499,491,509,485,495,495,501,502,491,497,511,499,509,505,576,529,532,525,519,528,524,527,532,518,526,520,560,556,559,560,554,521,527,529,516,521,519,519,521,523,528,521,516,527,529,524,526,533,521,533,526,525,530,532,524,528,532,531,527,535,531,532,480,468,480,469,476,527,524,527,521,521,526,525,524,524,541,523,530,525,520,531,535,540,523,530,525,515,535,521,520,521,519,515,516,513,517,508,517,513,516,522,549,546,535,539,543,547,533,538,546,560,553,555,552,551,556,561,552,558,556,550,549,551,490,496,507,493,502,506,505,506,509,484,496,493,494,492,494,568,573,571,573,565,579,567,581,584,581,579,564,569,563,515,509,503,514,511,503,517,506,511,504,506,521,515,515,519,557,546,537,514,516,506,504,507,500,571,557,565,556,569,572,553,562,562,556,542,564,546,552,535,534,527,531,527,526,529,528,540,544,535,540,475,471,459,489,481,475,469,470,476,484,481,483,544,545,542,545,537,550,543,542,541,545,551,543,550,538,558,543,491,500,484,488,499,500,479,576,591,571,587,588,588,550,549,535,532,542,559,496,484,482,488,493,491,484,488,489,485,478,484,483,476,553,568,564,576,568,569,563,556,570,570,565,563,549,572,580,560,508,527,516,508,516,490,486,489,477,479,485,481,487,480,440,444,448,440,448,443,447,445,447,452,445,522,536,530,531,533,518,531,520,523,516,519,522,517,512,523,521,518,516,520,522,545,546,540,549,549,552,543,540,552,539,545,539,540,550,564,556,556,555,562,559,553,565,563,563,525,528,483,492,489,483,483,491,482,489,491,485,501,505,493,495,510,498,508,497,503,502,492,501,503,510,492,549,583,572,506,501,497,498,507,501,503,498,514,519,506,510,510,509,509,557,538,540,533,541,519,521,516,521,519,517,528,518,517,510,553,538,539,555,548,548,552,552,575,575,563,572,582,528,527,523,524,541,526,529,532,538,525,510,515,509,503,503,496,502,507,501,499,498,501,504,512,484,480,488,482,476,474,479,480,487,479,480,481,486,499,503,499,502,504,494,508,501,506,497,503,541,543,541,555,538,540,543,547,548,561,556,571,570,581,553,554,556,571,558,572,550,562,508,495,485,478,556,559,549,542,559,572,566,559,569,571,570,563,580,570,575,577,539,541,533,535,541,542,534,520,513,512,511,514,517,504,512,518,514,501,506,504,506,498,506,509,502,504,503,499,506,506,498,507,504,543,536,546,548,540,545,539,538,550,551,569,573,578,565,571,567,542,550,549,551,549,554,546,542,495,494,493,504,496,559,558,597,574,576,572,568,564,515,510,511,492,504,513,495,503,498,506,496,451,466,468,465,468,463,600,583,583,591,589,590,576,585,591,570,580,547,531,527,533,540,523,527,540,558,567,558,517,503,508,507,507,502,511,506,500,452,468,470,466,451,451,464,459,460,459,453,455,461,461,525,510,500,522,519,513,516,559,557,567,564,566,568,554,502,501,496,498,497,505,501,499,490,497,503,500,505,500,533,529,530,527,534,524,537,564,556,562,567,564,567,498,501,502,506,498,507,489,493,515,484,498,462,452,466,456,466,454,460,467,465,444,457,464,458,456,561,552,562,545,553,539,541,543,552,525,513,516,507,512,509,513,500,506,506,556,554,555,560,518,529,482,483,476,499,488,493,472,487,488,481,445,440,443,435,437,443,531,548,528,569,562,562,565,564,569,577,562,574,558,556,545,554,545,553,543,548,544,547,531,526,525,528,528,528,528,527,493,500,500,506,497,499,493,608,591,599,589,591,584,599,598,529,523,537,527,526,526,524,527,535,531,527,529,535,522,529,525,530,589,586,582,582,597,584,584,583,587,548,549,540,539,538,543,534,544,579,566,563,580,572,560,573,572,574,508,490,512,496,522,499,473,459,464,472,474,471,461,467,577,549,550,557,568,555,563,561,558,558,548,553,552,547,556,553,561,559,558,556,554,555,560,556,494,498,509,484,482,484,487,485,480,485,466,464,460,470,461,467,462,439,447,441,439,441,437,435,445,442,438,443,434,540,543,543,544,540,542,540,532,546,539,530,538,536,533,537,547,549,551,549,554,557,548,550,544,544,550,552,506,502,508,497,493,506,494,505,491,510,464,452,447,462,468,458,457,456,501,511,512,502,501,502,503,507,500,516,508,499,503,508,500,553,543,551,551,554,541,536,550,526,524,521,517,533,520,517,518,596,598,607,596,589,607,587,600,589,597,595,613,554,553,545,551,550,557,557,552,554,551,552,549,501,496,498,497,497,499,509,504,515,499,505,510,529,518,511,514,525,502,516,521,517,520,557,558,571,556,563,488,493,496,480,494,487,501,488,498,498,459,457,465,468,463,469,471,470,472,463,464,464,552,557,552,557,557,550,552,558,547,545,566,566,476,474,477,474,483,480,479,462,483,470,474,474,460,523,525,520,526,517,519,522,523,526,540,546,546,540,537,542,549,539,543,538,541,561,554,545,546,543,512,500,510,509,498,490,487,494,511,504,512,508,491,502,507,509,493,444,462,456,453,470,454,460,461,457,464,454,462,494,492,492,492,498,492,488,481,490,586,584,572,511,501,508,509,520,509,493,497,485,483,481,485,477,486,477,489,564,562,566,574,559,493,504,489,497,508,494,508,497,503,504,451,443,444,450,462,549,545,555,542,546,543,546,542,546,535,545,544,537,537,542,543,544,541,544,545,538,542,548,539,546,555,505,483,487,497,485,484,490,485,490,588,586,578,567,574,580,566,586,573,535,529,530,539,548,551,545,556,565,553,557,554,561,480,480,479,479,469,483,472,483,472,474,473,463,451,446,453,448,448,455,455,454,442,548,555,550,551,557,550,545,552,553,547,544,546,494,496,491,494,484,488,498,489,492,483,494,482,493,480,494,577,583,579,571,582,593,580,530,530,532,531,529,533,520,530,528,528,529,516,512,527,522,583,576,599,581,595,590,584,570,580,591,600,595,596,595,590,536,537,548,539,538,533,546,531,519,510,515,518,521,511,512,516,515,515,509,521,515,529,533,532,523,525,526,528,529,531,526,532,562,554,546,553,562,560,561,560,564,553,554,524,513,512,515,519,515,515,513,507,551,548,554,560,535,545,539,546,551,552,547,546,518,512,512,521,517,512,510,529,472,476,595,592,582,579,579,590,584,587,510,514,525,504,505,511,505,508,500,497,515,508,505,550,541,545,541,547,553,549,539,551,542,550,543,543,539,545,541,535,553,569,543,536,550,546,548,542,473,465,489,484,486,478,471,491,492,475,484,483,478,468,484,483,485,474,479,476,546,547,554,542,537,546,528,470,477,485,481,481,483,484,468,487,491,482,489,495,560,572,565,567,572,563,561,551,553,554,548,546,558,550,506,504,498,488,493,505,514,510,524,515,511,512,507,557,558,544,567,563,548,556,556,553,561,488,488,482,486,487,443,443,452,446,430,450,436,531,537,523,527,532,527,522,535,532,532,525,535,525,539,537,538,544,547,532,540,543,486,478,485,551,541,536,545,533,543,544,537,541,539,546,535,537,543,543,543,547,537,552,538,479,486,474,477,469,477,488,484,534,548,546,547,552,564,560,550,552,563,554,564,570,565,555,560,518,521,506,502,511,509,515,521,497,586,589,606,606,525,526,537,534,538,540,523,493,502,501,501,504,502,508,568,606,594,572,600,598,589,587,528,532,540,518,522,535,541,539,490,487,488,507,485,493,489,496,500,495,493,500,490,497,498,589,609,589,597,580,597,597,583,591,585,545,550,550,538,544,553,544,541,543,537,551,554,561,560,568,559,552,561,554,566,567,558,501,494,511,505,499,504,504,514,513,506,512,508,507,510,503,506,574,566,563,560,572,567,574,555,551,543,553,551,551,556,551,540,551,547,548,552,551,544,502,494,490,495,497,495,476,486,472,472,475,477,594,610,594,598,601,596,584,591,593,602,581,592,600,590,603,599,588,510,508,498,513,501,517,495,507,543,536,539,538,535,544,539,542,546,538,578,561,521,505,492,497,513,493,498,496,541,536,547,541,542,545,544,540,546,546,541,562,557,567,513,517,505,511,512,508,545,540,536,546,544,542,546,540,540,549,546,545,543,552,555,539,537,546,545,549,504,505,510,497,502,509,500,514,502,505,505,517,517,513,516,579,582,586,579,579,504,507,502,508,509,504,508,513,512,502,511,510,509,549,542,542,529,536,540,544,539,542,531,542,564,575,563,573,567,564,556,553,569,562,556,576,560,580,561,567,575,504,493,512,508,506,549,553,546,548,552,546,548,547,564,566,566,569,573,562,572,540,556,540,550,529,547,543,537,548,544,516,509,499,507,500,505,504,467,461,463,456,469,476,467,467,437,441,439,449,445,446,450,441,446,426,429,540,537,540,541,537,553,546,534,538,547,529,544,532,550,552,547,549,553,553,558,543,550,557,501,511,498,500,493,486,490,501,509,503,504,476,484,479,504,498,504,499,493,500,499,495,489,480,479,478,483,482,480,477,468,508,504,513,506,548,546,544,552,546,546,538,551,554,504,492,498,509,504,498,509,513,512,507,499,522,500,513,509,503,518,506,508,518,507,556,544,550,548,556,548,553,562,508,499,514,507,509,486,491,489,491,488,476,479,487,475,478,481,479,479,483,479,483,482,481,484,485,476,475,472,475,479,470,477,481,471,471,472,478,471,470,474,465,552,557,554,547,554,559,562,559,544,547,502,516,506,495,489,508,503,495,510,506,480,498,493,493,500,506,504,493,499,497,496,499,493,501,503,494,533,523,533,534,520,526,526,520,525,530,519,518,514,512,516,511,513,514,514,515,518,514,513,520,555,560,556,567,559,557,555,564,552,555,561,563,552,559,554,558,516,523,505,512,533,482,479,480,482,478,479,487,485,482,480,486,479,471,462,462,456,456,466,467,462,470,458,457,545,540,549,535,534,550,548,554,569,571,558,577,569,563,551,557,546,550,555,557,551,552,556,555,557,520,529,530,521,533,526,519,509,520,510,500,495,506,499,502,506,504,496,500,502,505,506,504,498,507,497,500,493,498,503,499,496,495,495,497,500,493,504,501,492,496,469,465,462,435,437,447,439,515,522,519,527,527,528,526,515,537,538,534,536,539,537,537,535,535,532,532,538,548,528,545,538,546,544,525,525,515,521,514,526,519,524,515,525,525,546,545,541,546,542,541,547,541,548,545,548,515,504,514,501,521,504,510,503,507,505,502,566,559,553,562,559,558,559,563,548,554,549,556,544,551,546,547,551,516,503,490,491,500,483,502,506,492,494,514,495,500,493,506,477,477,481,488,485,561,549,552,557,566,564,535,567,551,569,554,559,555,565,560,560,495,493,485,481,478,481,482,477,486,492,477,496,483,488,612,605,585,595,590,523,530,527,529,521,545,534,531,526,501,495,492,493,480,486,485,484,496,498,498,496,486,503,593,587,606,594,575,580,601,588,600,571,587,506,517,506,517,507,516,505,525,501,521,511,502,511,540,546,547,536,546,540,558,566,563,568,569,561,570,551,536,546,545,541,532,548,494,485,494,497,489,495,485,482,498,487,497,492,496,491,487,495,482,494,473,473,470,473,481,466,484,540,542,548,549,554,550,551,521,528,519,520,527,520,517,522,556,558,561,558,556,538,529,537,529,535,529,532,537,534,533,513,508,502,506,505,508,511,512,517,513,508,509,505,509,558,553,568,563,539,536,561,550,566,521,524,511,522,516,522,520,512,527,530,522,523,526,523,524,525,517,526,522,527,524,586,586,578,577,583,590,580,590,594,581,590,590,588,592,545,540,528,543,542,534,540,538,541,542,529,538,534,542,550,506,508,512,517,501,507,502,513,576,564,571,563,568,559,573,565,572,579,477,488,498,494,495,492,549,556,560,556,559,569,558,560,565,551,553,557,557,552,556,554,558,491,492,498,499,480,491,515,482,507,465,461,437,447,428,448,446,450,439,449,441,554,547,550,555,544,549,553,548,538,532,539,533,538,542,543,530,552,538,546,543,539,468,470,470,464,469,478,480,473,469,469,469,472,469,469,467,476,467,475,468,473,471,578,554,547,552,567,559,551,554,556,558,559,571,502,494,503,509,498,499,498,500,519,511,505,508,482,484,483,486,478,484,481,484,486,486,488,487,485,482,527,518,516,514,520,514,514,522,511,516,511,518,514,570,574,566,582,580,587,585,582,596,547,564,548,556,556,552,557,563,559,561,559,553,562,562,528,522,525,509,521,524,512,510,486,487,483,481,486,487,483,478,493,493,494,486,503,497,497,498,495,503,517,526,525,531,533,527,589,577,574,575,581,575,515,508,497,506,505,511,521,505,528,511,518,506,539,538,552,538,541,539,534,567,572,561,561,557,563,556,561,563,565,556,570,551,560,566,567,507,512,500,505,492,504,493,510,509,509,488,545,536,537,537,534,547,537,544,561,562,570,566,564,561,564,552,563,555,570,491,498,509,501,507,501,539,537,544,560,550,550,550,551,550,561,572,564,559,559,561,558,578,561,529,532,533,533,526,531,530,542,533,534,544,539,528,541,531,529,529,564,565,564,511,493,490,495,493,506,489,492,505,494,486,509,480,478,476,472,481,480,479,477,475,583,591,590,595,593,592,595,603,545,531,534,539,547,536,537,536,539,532,540,541,537,521,517,518,520,517,548,539,543,543,540,542,504,501,510,499,559,546,540,538,553,546,550,543,553,539,572,581,569,570,562,574,553,568,502,506,508,501,503,500,540,533,540,555,532,543,537,542,562,562,573,573,565,499,500,512,494,498,494,495,507,504,515,541,542,553,546,549,541,540,548,534,545,536,545,562,561,552,572,562,557,562,565,524,524,525,521,522,523,525,528,538,533,535,528,523,479,499,491,491,497,570,584,586,580,602,596,577,587,594,524,539,546,545,527,544,534,538,532,535,547,522,527,518,513,518,526,522,526,515,526,515,523,528,596,585,587,586,590,598,581,598,588,586,587,602,593,535,496,491,496,489,503,495,494,498,496,486,491,579,586,576,578,577,587,592,587,581,588,526,530,536,533,550,543,543,534,560,559,514,523,527,512,516,522,515,516,462,468,464,465,467,470,463,467,462,468,461,457,459,462,480,477,481,476,479,474,473,483,478,478,477,482,475,483,469,452,450,460,457,453,463,457,459,463,464,461,457,461,457,480,469,465,473,472,473,546,542,549,548,551,545,551,557,551,545,537,548,519,511,508,515,513,512,525,515,512,515,517,520,498,493,499,498,489,485,498,498,487,495,490,494,481,483,479,487,499,499,500,497,500,508,505,505,506,504,507,477,490,479,485,481,488,475,458,461,468,455,459,464,503,521,513,501,519,513,508,517,509,522,507,512,516,503,554,555,571,505,496,491,503,498,509,496,486,497,488,488,495,488,570,557,562,560,578,565,567,562,563,561,558,563,554,560,576,530,532,531,528,534,531,527,543,535,535,539,539,509,511,508,504,514,506,507,504,512,509,510,517,516,517,500,511,508,502,508,512,508,513,503,512,547,556,558,500,505,499,515,517,511,506,509,519,504,513,510,509,503,571,568,517,501,507,509,507,507,511,501,507,515,495,507,556,551,560,558,547,554,543,554,511,501,522,503,508,510,501,505,510,510,517,486,496,511,517,476,478,479,475,475,475,485,473,476,471,473,473,477,471,483,472,479,478,478,495,500,497,494,502,496,497,491,497,498,496,501,497,559,566,560,561,560,555,562,560,544,543,550,544,555,550,552,548,553,547,555,550,496,498,482,501,498,508,487,494,486,454,455,464,457,466,458,463,537,543,529,535,534,541,548,544,549,546,544,549,551,549,547,549,548,564,550,551,563,564,558,519,524,510,517,514,517,514,520,517,521,518,507,524,524,484,488,490,497,496,492,500,506,497,492,497,498,494,494,499,496,495,523,524,538,526,535,538,534,532,533,584,581,568,580,582,588,582,584,576,587,575,533,536,541,538,533,529,532,520,529,513,528,520,523,521,513,519,573,573,559,570,560,564,553,562,557,561,555,558,561,561,548,552,544,564,513,501,493,503,498,506,491,509,499,503,455,452,459,464,462,458,459,457,459,456,454,451,487,474,484,485,489,494,513,514,527,524,525,522,530,531,528,525,529,530,539,588,586,586,578,584,585,597,584,575,578,587,587,580,568,581,587,578,588,529,541,527,537,540,524,527,530,540,539,526,519,530,532,525,482,491,491,487,490,491,502,497,490,588,587,601,581,599,583,584,579,585,598,602,586,604,615,595,587,563,569,554,560,568,570,551,555,570,566,561,553,564,530,509,514,509,504,526,505,513,524,516,481,486,487,484,503,493,496,492,494,508,497,512,558,569,525,518,520,527,507,530,526,518,488,483,484,483,488,493,494,493,483,491,485,483,484,489,479,479,487,477,482,480,482,479,486,474,556,545,558,577,566,554,551,556,568,566,493,514,502,502,498,494,499,485,472,473,477,475,481,488,474,487,554,548,555,550,546,543,545,552,536,554,551,559,570,557,551,552,501,502,494,499,509,504,503,505,505,502,512,499,503,562,565,564,564,557,507,505,509,513,503,520,507,510,514,509,501,501,504,557,540,553,560,547,547,559,498,493,495,503,497,496,510,502,500,494,503,494,507,496,498,501,497,567,570,561,571,559,557,560,569,552,552,562,569,520,535,529,528,524,533,530,504,503,510,509,497,510,555,553,559,557,550,544,554,556,565,510,511,519,521,516,513,519,519,521,515,523,521,518,522,522,524,589,581,592,593,581,592,548,544,551,554,545,549,548,550,549,548,540,551,538,531,527,538,530,529,536,532,534,527,534,529,537,524,513,513,517,515,519,520,515,526,531,528,521,527,522,528,519,521,589,587,590,582,587,589,588,586,587,578,589,584,586,537,528,541,532,533,493,501,498,498,490,488,488,496,491,494,497,498,496,489,496,486,601,597,612,572,591,589,593,596,550,539,542,540,542,550,546,552,555,534,542,584,579,580,569,580,568,567,576,568,563,574,579,558,578,567,540,521,531,526,519,529,538,536,518,486,470,479,482,482,480,474,476,480,486,481,484,487,485,480,476,484,591,604,604,597,583,604,591,591,605,556,569,563,561,558,566,558,483,494,485,484,499,490,497,499,495,486,482,481,482,484,481,479,484,486,483,565,558,567,546,564,565,574,529,527,522,514,515,519,518,514,508,521,511,511,527,541,543,550,548,546,546,546,550,545,543,547,552,552,556,545,544,555,550,554,556,546,543,548,485,493,483,496,479,495,488,486,485,491,491,488,482,460,464,475,562,574,561,498,480,481,494,491,460,471,463,464,461,466,468,545,557,533,559,557,547,544,538,555,553,508,511,497,506,494,511,512,507,503,506,499,508,499,498,565,555,546,574,516,521,512,523,504,511,518,515,490,498,492,486,491,482,492,486,482,474,480,489,480,478,479,480,487,487,496,579,582,562,558,554,548,560,562,561,564,506,474,493,503,497,498,493,507,464,469,463,558,547,541,550,551,548,578,572,575,565,571,565,582,577,582,575,578,544,553,550,548,550,547,545,552,504,524,501,512,494,503,490,452,445,449,453,457,463,455,460,462,468,456,464,486,486,474,480,480,474,481,478,464,478,480,484,486,475,482,476,486,489,570,559,568,580,543,563,560,565,565,520,523,520,512,523,520,525,523,531,536,531,534,540,558,572,565,559,562,560,559,557,565,555,554,563,566,567,573,556,557,559,555,505,491,500,498,502,487,506,479,500,485,497,499,490,488,437,441,435,439,433,444,449,529,531,522,530,534,527,533,528,531,528,546,547,547,540,542,545,548,545,546,538,540,525,518,524,524,524,515,525,527,517,527,524,531,555,555,563,552,551,556,557,555,558,551,568,514,522,519,533,519,513,518,520,489,498,505,494,501,499,503,495,499,499,499,507,481,486,482,484,486,481,485,469,475,483,478,477,449,457,445,449,438,444,438,444,437,530,534,531,519,517,510,517,517,514,517,518,519,515,523,525,510,513,537,534,532,536,536,540,543,538,545,527,536,537,533,535,552,553,548,550,551,546,546,547,513,509,517,523,514,507,555,559,552,559,563,548,562,554,559,553,562,561,550,477,485,495,499,503,492,502,497,493,501,511,504,493,541,547,554,554,540,550,496,500,494,500,496,497,508,501,507,510,509,504,496,498,489,500,504,526,537,527,542,540,530,540,530,529,485,489,496,501,494,501,583,587,602,532,538,528,517,531,531,534,535,538,526,542,561,550,537,549,564,553,544,552,545,537,536,523,516,517,513,514,514,547,551,546,551,558,556,553,561,549,556,544,553,543,530,529,536,530,533,534,536,532,531,535,534,531,529,531,532,532,537,531,534,538,542,537,535,537,552,557,551,543,555,504,497,509,494,507,499,508,514,514,512,506,503,514,507,513,508,514,543,544,546,549,547,544,550,526,529,556,548,546,557,508,499,512,457,468,468,463,473,471,467,464,459,461,466,469,471,509,492,493,496,494,501,501,536,528,541,554,539,546,536,550,545,553,539,543,538,486,503,487,503,502,490,489,496,489,486,467,466,470,467,459,459,459,462,463,470,457,468,456,491,489,498,502,498,491,526,526,538,529,529,526,528,584,583,587,579,583,580,593,576,593,593,585,590,590,541,533,535,542,537,529,537,539,536,480,476,482,477,476,481,483,538,530,536,536,529,527,540,540,544,542,536,544,541,538,542,542,541,537,563,542,547,538,545,551,554,558,548,545,542,541,551,549,543,550,539,520,523,517,527,525,513,517,528,504,500,501,508,507,502,504,500,511,502,503,503,536,539,552,540,546,540,543,533,569,567,571,561,564,561,565,560,565,565,574,525,531,524,529,526,559,563,545,555,552,510,496,499,505,489,509,500,494,510,503,501,511,488,545,538,540,538,547,536,544,543,548,529,542,552,540,515,516,522,511,513,524,515,515,516,522,557,544,542,551,540,542,529,527,537,547,547,533,507,490,506,493,497,490,498,464,474,468,475,468,466,471,436,439,430,432,436,435,435,436,428,445,548,534,541,549,550,552,537,541,544,541,533,561,570,564,566,572,577,568,578,568,559,580,547,540,546,555,543,552,558,538,540,544,506,500,500,501,503,499,498,504,506,503,494,500,503,504,535,536,536,540,531,530,537,537,541,549,561,562,508,507,499,503,499,511,497,493,504,507,507,502,551,545,551,550,532,543,558,569,521,515,509,508,513,511,516,576,564,563,512,511,516,508,519,520,534,515,523,518,506,521,473,474,469,468,476,470,476,482,464,469,470,474,468,475,463,469,514,500,486,497,498,497,500,494,549,545,550,552,542,544,547,556,536,545,553,548,549,541,504,504,529,510,466,470,473,475,478,477,482,485,484,476,475,472,473,473,500,506,496,503,504,495,507,494,505,533,537,543,537,545,541,535,540,543,535,537,532,521,516,516,519,512,506,517,514,514,516,513,509,515,503,503,503,508,502,501,498,508,504,505,545,531,538,541,544,540,543,545,559,563,564,559,563,562,556,570,524,518,522,526,530,535,530,596,586,582,583,587,543,524,532,543,481,474,475,491,484,486,481,485,482,474,476,486,469,552,543,553,562,545,555,551,556,545,556,553,555,574,563,561,564,566,564,563,553,568,557,570,569,527,524,524,512,510,511,521,511,521,506,483,490,495,491,496,493,484,485,491,491,489,482,481,478,466,480,478,464,474,558,557,553,559,556,517,514,511,525,515,509,520,506,521,508,506,512,508,507,532,529,524,526,525,529,532,530,543,531,543,538,544,535,538,534,535,544,541,549,550,550,554,548,560,559,554,551,554,500,513,503,497,506,508,506,512,592,601,594,602,607,597,591,612,556,485,493,486,499,487,492,486,495,493,492,486,475,478,470,479,480,471,468,484,469,482,477,476,576,585,609,601,605,607,586,589,554,550,540,546,538,539,539,560,535,506,498,505,495,502,507,512,501,498,500,528,522,540,532,529,526,526,531,536,538,522,534,542,531,535,533,530,530,534,529,538,543,525,536,529,573,529,526,538,534,523,525,531,534,531,497,489,490,494,489,591,594,574,588,573,603,584,584,586,582,584,592,594,599,554,563,558,558,552,556,516,528,518,503,505,512,482,472,476,479,465,478,481,434,445,438,441,449,527,548,545,538,551,549,550,551,548,531,536,541,533,534,565,574,573,558,575,568,561,574,571,561,570,551,557,553,551,562,561,564,554,546,564,557,528,531,532,522,522,519,514,520,520,505,504,505,512,511,506,512,505,512,502,497,492,487,500,499,499,506,498,492,500,489,496,503,490,479,483,479,473,476,476,468,473,466,471,483,552,562,563,545,549,540,564,555,553,557,552,548,554,474,471,488,482,483,483,487,479,481,480,484,480,476,479,482,486,480,485,570,565,583,575,578,565,576,561,503,473,488,497,549,545,550,543,550,552,538,550,544,536,543,571,575,570,564,572,568,568,566,569,570,536,541,539,546,532,537,539,541,531,527,542,530,537,535,535,541,531,525,523,521,530,539,543,541,541,550,542,541,511,513,515,508,512,523,513,524,534,526,522,528,523,525,524,520,535,531,530,591,580,583,595,580,580,572,584,576,587,587,573,515,512,511,513,512,540,552,549,548,541,539,547,545,539,540,540,539,509,504,506,503,511,507,503,555,563,552,551,544,544,563,560,553,555,554,559,555,553,561,561,497,493,489,493,490,489,493,507,514,512,506,507,509,515,550,552,553,554,506,512,513,513,504,498,503,503,516,544,552,554,545,545,536,544,538,545,544,539,541,536,538,545,544,545,535,541,538,523,517,520,509,516,515,506,526,511,514,524,515,534,533,532,536,533,534,533,532,522,531,512,515,510,513,516,515,513,517,512,516,512,511,503,499,505,539,538,533,543,534,543,551,539,546,540,536,576,564,565,566,568,571,559,560,565,525,538,536,527,536,537,538,532,527,536,541,533,538,536,574,562,565,539,561,553,565,564,574,507,512,504,506,500,504,507,590,598,593,609,591,593,590,582,549,543,540,544,546,540,551,540,535,532,536,540,540,533,525,532,530,530,533,528,532,528,532,533,530,544,542,553,547,548,553,557,549,547,543,557,553,543,536,555,493,488,486,482,471,490,489,483,488,493,485,490,486,471,453,561,568,553,559,478,483,486,500,486,496,484,497,499,568,581,582,587,574,527,521,524,528,527,521,532,519,520,534,527,519,491,504,499,508,499,499,497,484,595,593,586,582,583,581,586,597,588,595,579,531,536,531,531,544,551,526,517,522,517,511,527,513,564,562,562,557,560,553,561,561,552,556,559,558,561,563,559,535,525,535,536,520,513,506,508,504,508,504,505,503,509,504,509,509,506,506,494,491,496,488,486,481,487,491,484,485,485,481,483,487,478,477,482,481,484,482,544,568,566,545,494,498,500,486,487,488,484,488,505,505,512,508,515,507,512,513,512,506,547,552,554,549,507,510,502,502,506,503,499,535,532,537,537,535,529,538,538,540,537,543,526,530,535,530,551,534,557,546,548,540,539,541,551,535,539,550,545,531,534,481,463,476,475,487,534,539,536,535,536,545,551,542,536,554,546,552,546,540,542,550,551,549,548,478,507,500,494,493,505,494,482,516,497,480,497,497,452,459,458,457,462,460,466,536,545,547,546,538,562,540,543,549,547,546,538,524,506,512,521,517,514,509,512,536,534,527,537,528,524,522,522,522,519,519,516,543,549,551,548,551,534,528,526,527,524,529,530,518,510,535,558,547,554,550,547,547,506,500,500,504,536,529,537,535,533,530,533,532,547,530,536,540,538,541,537,538,548,555,541,551,540,553,535,549,501,512,493,501,480,504,497,498,506,468,470,466,473,468,473,471,482,463,456,469,457,454,454,459,463,465,469,463,458,459,467,457,462,552,560,548,553,548,555,559,574,558,557,573,491,504,505,499,495,503,550,548,558,555,552,559,553,559,559,544,554,509,510,512,489,502,504,502,502,515,509,499,510,492,509,477,488,479,480,470,480,480,472,480,477,486,496,496,489,487,488,501,490,490,493,490,495,470,469,462,465,473,469,479,458,461,475,471,478,462,468,477,462,547,541,562,550,547,543,550,496,478,558,552,547,551,550,545,551,551,546,553,463,479,466,470,473,470,473,471,476,509,516,517,536,528,530,521,530,530,530,532,552,541,548,550,470,541,549,541,540,544,547,543,539,551,556,542,547,551,544,549,541,549,543,542,542,527,526,523,525,527,522,555,557,563,534,528,526,536,531,531,530,530,524,540,526,530,529,522,491,494,495,494,501,598,584,584,576,589,596,533,540,528,536,547,511,505,505,508,505,512,518,552,563,565,558,570,575,564,562,566,560,573,478,487,498,561,567,562,565,554,557,552,566,525,509,522,519,511,517,525,513,509,512,515,514,514,511,474,478,467,475,464,473,466,473,464,460,447,463,452,453,454,454,536,540,544,541,544,544,545,539,559,543,562,531,529,527,521,525,541,555,560,550,555,560,556,525,510,511,521,529,519,522,503,515,528,528,519,510,518,524,495,497,484,478,483,480,486,453,457,459,456,459,460,460,462,467,464,456,460,463,449,467,465,464,459,466,448,503,498,496,489,494,486,496,530,541,533,526,525,529,520,533,522,524,527,531,523,551,550,548,555,551,553,552,547,546,494,497,491,487,497,503,476,483,477,466,475,472,468,466,467,563,560,540,508,510,517,514,517,515,512,512,506,504,508,511,510,517,508,510,505,507,508,513,508,535,536,526,533,534,519,535,530,529,528,517,512,514,519,514,515,517,523,520,518,516,517,516,513,527,528,532,523,557,556,558,560,562,580,565,559,576,564,567,524,528,524,524,526,518,520,531,523,530,557,561,546,564,493,498,493,505,549,551,561,553,563,555,568,546,547,564,501,492,491,482,500,496,495,468,505,483,497,506,577,568,506,505,508,499,507,505,504,512,507,533,528,524,524,535,531,531,525,534,523,532,520,532,524,541,535,536,541,545,535,540,548,554,548,549,542,538,549,538,461,468,469,476,486,479,468,483,472,474,486,470,478,474,448,443,452,453,443,439,443,446,441,530,522,522,533,536,526,526,534,530,528,524,530,530,523,533,540,529,532,541,542,534,557,557,568,570,563,561,571,563,525,533,532,545,540,538,538,541,542,531,543,543,537,541,504,503,496,497,492,491,498,498,498,471,474,478,472,466,478,474,474,473,475,473,475,494,513,509,504,510,505,504,507,506,508,511,511,543,548,549,546,548,559,543,501,502,506,494,505,497,508,511,511,511,512,507,511,509,513,511,541,557,546,537,537,553,544,545,553,538,547,531,506,506,513,518,505,524,520,522,512,518,518,576,564,554,551,557,564,564,558,566,555,560,571,571,512,540,532,532,529,533,527,520,523,520,532,517,496,493,487,488,494,490,492,492,494,487,507,489,494,488,490,486,494,487,497,499,556,553,550,557,558,552,552,555,553,554,555,554,548,541,546,545,544,544,549,545,511,522,530,521,535,523,516,446,465,456,445,549,550,542,564,547,572,549,560,573,559,547,567,563,561,577,547,575,558,566,549,567,493,488,509,505,490,505,497,509,494,511,491,487,492,495,491,496,499,489,495,505,559,569,581,555,566,555,557,539,532,539,562,574,557,559,519,510,519,516,526,518,515,513,481,490,477,482,484,485,485,484,480,486,471,490,491,501,499,497,496,498,496,500,504,504,482,497,495,494,492,532,543,538,538,530,533,541,539,563,554,567,554,552,560,504,507,499,515,486,502,503,468,459,453,479,465,460,466,547,503,486,487,550,544,547,538,544,551,545,537,547,520,519,520,524,532,518,518,519,526,518,513,528,517,523,560,574,564,569,552,563,565,563,567,559,563,572,564,561,562,558,564,567,561,558,564,559,562,553,548,555,554,551,549,553,551,551,550,498,489,486,488,505,502,505,509,501,501,504,507,508,565,570,558,566,565,565,566,555,549,559,549,552,549,548,492,493,502,492,495,496,490,487,476,493,488,491,489,490,487,488,575,566,569,574,556,555,555,568,563,550,511,531,520,522,522,496,508,524,531,519,520,465,467,472,471,466,469,471,460,468,455,460,475,453,457,460,462,461,463,456,454,479,492,489,481,488,488,485,481,506,504,505,503,505,499,504,505,503,508,503,499,539,528,543,539,530,567,563,564,570,564,565,564,574,548,549,540,546,547,543,555,545,553,546,547,544,547,543,540,512,506,509,505,506,511,512,514,514,509,554,556,543,511,507,497,496,495,498,505,491,490,495,493,509,503,504,500,502,499,505,508,505,500,505,503,540,546,535,535,535,560,567,567,560,564,556,567,567,538,524,534,536,538,545,532,518,519,519,514,524,526,522,545,537,546,539,553,533,543,545,562,568,556,572,569,565,562,569,578,569,573,563,505,506,521,505,505,510,504,498,476,477,480,486,487,477,478,493,479,562,557,553,550,562,573,564,548,548,564,558,552,560,545,571,556,549,511,515,517,510,511,514,514,512,512,515,516,507,466,468,469,472,476,462,472,478,443,434,450,433,433,432,438,440,438,438,447,432,531,520,538,539,536,522,525,537,539,530,533,523,531,530,537,522,536,532,536,534,549,546,552,560,474,473,458,474,469,480,473,466,534,538,540,532,524,539,534,528,568,556,560,564,569,551,562,567,548,559,566,560,542,540,571,567,572,581,577,571,569,581,572,572,507,512,498,499,508,510,508,505,491,488,493,492,491,489,488,498,487,492,492,492,492,492,564,572,501,514,510,501,504,496,498,511,489,496,499,512,512,439,439,440,433,456,453,448,533,535,537,536,536,544,540,540,537,542,535,541,548,547,548,549,555,552,537,540,501,504,510,506,508,507,501,509,564,566,562,566,552,568,555,512,517,489,483,487,485,482,477,482,478,484,482,483,486,486,488,480,489,486,478,482,601,597,615,543,540,531,540,540,546,534,549,545,523,522,519,515,518,520,518,516,518,576,557,570,574,556,581,568,563,551,574,559,547,549,541,534,475,481,503,479,485,484,484,501,487,495,487,490,483,473,450,435,439,431,440,440,443,436,439,446,521,520,526,535,518,527,523,529,524,529,515,521,517,514,516,514,515,519,509,530,535,532,535,533,528,531,528,525,533,567,563,573,566,571,562,560,572,553,546,542,548,542,544,543,557,544,555,554,559,551,542,554,555,554,512,514,522,529,522,523,523,506,516,513,523,520,496,500,499,483,490,482,493,493,493,490,489,458,464,459,450,458,472,454,460,460,490,505,554,556,550,556,555,561,551,556,570,554,564,562,552,559,555,548,559,548,555,548,495,502,498,496,505,505,500,500,499,503,507,510,507,504,503,542,538,530,542,533,546,536,530,536,540,563,558,549,570,568,560,568,559,573,527,526,535,540,532,533,523,534,529,540,511,528,525,522,528,518,512,512,520,516,589,586,578,581,586,595,588,589,598,588,577,588,596,609,589,604,590,594,540,527,531,535,528,536,558,554,568,559,564,567,569,569,570,479,493,493,467,468,477,483,494,494,486,496,494,477,559,547,548,551,555,554,558,547,551,552,559,555,551,559,559,556,556,561,507,507,509,496,502,500,511,505,499,498,508,506,514,503,500,521,512,512,506,515,514,516,520,513,517,514,548,548,554,554,551,547,541,543,545,541,551,519,512,513,516,516,517,516,522,512,519,526,514,507,502,542,539,539,540,540,534,542,573,566,525,534,530,527,524,524,523,525,528,523,562,554,489,493,508,505,506,499,504,555,544,565,544,562,549,549,561,552,559,526,519,525,519,515,512,487,485,475,482,486,487,479,468,471,460,464,462,471,469,465,462,465,461,461,463,463,471,468,469,471,463,471,470,472,469,474,471,474,476,477,480,469,471,459,461,464,468,468,469,561,574,567,564,556,563,570,474,464,477,485,478,479,514,518,517,522,513,519,519,515,529,537,528,530,527,565,557,566,567,569,560,561,563,566,563,509,524,524,513,520,519,512,567,582,569,579,590,575,584,589,555,542,540,545,545,546,540,521,526,533,521,531,518,527,520,512,528,525,518,520,527,597,600,585,581,601,583,590,587,544,540,553,541,542,549,535,539,542,537,547,538,568,565,564,572,570,550,581,574,554,525,524,516,522,532,520,519,529,530,525,521,526,506,503,511,511,518,509,505,513,510,509,502,495,489,486,487,492,487,494,488,491,492,494,486,485,497,492,492,479,482,479,487,479,489,478,480,476,484,488,495,491,496,492,495,495,486,490,501,496,460,460,456,453,465,460,454,458,458,465,451,463,463,453,474,481,486,486,480,494,494,493,493,582,592,576,570,581,579,584,578,500,504,503,494,495,517,497,509,482,467,474,456,464,470,464,525,533,538,538,536,528,530,532,538,536,536,535,528,538,570,574,575,510,500,508,516,512,517,502,503,531,538,525,528,530,521,523,514,521,525,533,542,528,540,534,533,536,537,537,530,529,545,551,547,548,541,546,556,541,554,546,546,551,548,544,511,507,520,501,526,514,504,508,518,499,508,474,471,481,479,473,481,453,464,459,462,464,452,460,462,491,478,484,482,478,476,479,474,498,507,496,505,500,504,538,527,531,532,518,526,526,523,524,527,522,545,546,541,547,539,542,551,556,555,555,563,564,556,559,558,505,515,517,524,517,514,513,523,489,484,483,490,485,483,490,480,478,488,474,483,483,481,480,477,479,489,485,459,469,464,463,470,464,465,465,493,491,485,509,502,491,493,496,501,501,491,491,531,528,531,531,532,533,531,530,514,528,523,526,530,527,526,521,516,556,550,568,568,566,561,547,547,556,548,509,495,519,515,495,523,503,520,514,519,470,471,466,472,477,473,473,469,474,468,464,472,477,472,476,475,473,467,479,468,476,480,471,559,509,502,505,498,510,497,498,511,502,511,499,509,463,482,473,472,468,473,471,473,477,489,489,481,506,490,497,546,558,550,545,554,555,550,543,548,539,532,480,487,495,490,454,449,436,444,440,446,440,448,522,528,517,523,524,518,518,516,528,527,524,524,528,531,522,526,526,524,526,560,571,560,566,565,575,568,557,578,558,569,563,575,500,494,513,507,512,541,537,534,543,547,556,566,567,573,559,563,571,559,556,517,522,512,516,520,527,516,522,528,525,521,529,587,576,575,588,577,590,589,582,579,573,577,575,588,595,538,545,534,536,563,554,554,562,562,564,497,503,505,510,514,493,504,496,501,449,443,446,444,443,436,448,437,443,442,443,445,441,437,440,446,455,443,446,455,442,444,449,448,444,438,451,531,536,536,548,548,549,554,553,553,556,553,556,553,558,555,550,552,550,553,555,498,495,497,490,498,499,488,499,510,508,503,500,509,513,543,542,538,545,546,542,545,549,543,542,550,557,548,525,527,519,523,525,528,529,533,527,527,528,540,546,540,515,526,516,517,517,515,532,525,514,518,515,518,515,513,518,516,514,508,514,502,502,500,500,503,500,502,505,506,504,504,511,522,525,511,520,530,531,537,528,531,532,522,532,537,533,530,568,561,555,560,557,559,569,552,574,557,579,567,557,560,526,525,523,523,529,515,522,518,528,521,533,533,529,549,571,553,557,545,562,550,561,566,503,489,499,503,506,511,511,495,495,500,536,545,538,535,552,546,531,526,527,527,521,522,527,528,529,526,529,559,560,562,555,568,565,571,551,555,555,549,559,501,500,487,494,492,486,485,485,492,474,480,473,476,469,468,470,485,483,473,479,484,472,469,482,481,482,589,579,603,583,593,603,577,590,584,583,581,557,549,539,549,528,539,537,538,532,536,536,545,514,502,512,498,508,499,506,536,535,539,532,540,533,537,535,531,530,535,531,540,539,524,533,537,538,539,542,541,540,542,535,542,541,541,551,540,545,547,549,554,549,551,551,553,542,491,506,507,510,510,494,517,500,506,496,494,496,469,468,464,467,472,463,471,469,468,468,474,457,449,459,452,461,456,453,454,563,554,563,539,567,562,542,551,562,562,551,554,552,513,512,517,514,524,513,513,512,516,531,526,511,491,487,475,485,478,469,487,488,483,481,564,547,467,489,479,474,487,504,499,509,495,504,499,560,567,557,553,565,565,556,540,527,516,521,521,521,485,472,488,474,486,489,484,489,483,488,480,495,481,482,479,484,579,592,595,590,586,593,583,574,581,582,581,560,574,592,568,491,490,475,489,474,490,481,520,523,528,524,524,523,510,522,523,506,529,524,524,512,523,535,535,529,528,531,535,580,557,558,573,555,568,528,531,531,525,521,529,539,539,534,530,531,526,519,514,520,520,520,523,524,516,524,520,521,516,515,557,552,554,557,554,555,549,551,554,543,533,534,538,538,536,538,539,546,545,542,544,545,533,534,572,577,594,579,578,582,579,524,519,531,530,512,529,530,530,526,525,526,530,479,485,480,485,487,487,477,482,478,477,487,441,457,450,456,451,459,457,464,463,466,454,455,549,562,554,551,562,543,545,545,547,554,581,580,567,570,579,581,571,553,551,550,551,546,547,551,543,548,549,551,517,521,517,517,504,513,515,521,516,495,493,490,492,502,462,471,467,459,485,489,478,475,484,483,479,485,483,481,483,480,482,485,481,482,501,502,509,503,502,498,502,497,499,493,503,496,526,522,520,526,526,533,526,527,532,518,526,538,554,544,539,545,541,545,554,556,556,557,555,555,557,550,514,523,523,517,499,515,501,515,528,527,502,521,540,517,517,491,481,472,480,482,487,488,448,440,442,451,436,446,445,445,459,456,436,517,535,536,533,535,529,520,523,517,529,528,520,546,542,542,539,547,545,543,543,552,537,539,544,545,553,549,553,552,545,544,550,545,544,501,508,500,505,510,516,500,505,495,501,508,492,481,489,487,492,490,489,497,488,489,481,516,524,515,525,596,586,549,550,549,551,555,533,527,531,530,531,537,527,531,535,532,527,533,527,537,530,522,514,526,524,516,524,528,521,519,525,525,524,528,516,523,571,561,561,557,563,567,570,563,551,554,558,559,552,493,490,499,498,500,509,489,500,493,494,496,493,505,499,502,491,500,500,499,571,573,571,578,576,592,578,570,595,570,507,502,510,491,497,495,493,497,490,490,500,500,495,500,495,576,558,566,568,564,555,576,557,571,475,478,475,474,471,482,485,484,477,478,476,486,485,477,486,484,475,479,575,570,578,577,580,564,564,558,562,579,562,517,527,518,530,531,517,512,528,506,523,515,519,518,530,479,475,465,461,460,461,466,470,461,450,453,451,456,451,460,461,454,458,582,600,601,589,589,606,587,592,601,585,593,603,557,544,530,512,494,488,515,495,503,499,497,511,511,502,496,507,511,500,500,498,500,533,545,535,534,536,536,528,518,523,520,523,524,542,538,543,541,533,539,534,522,537,533,532,536,566,564,565,533,536,513,539,528,514,518,536,535,516,516,522,525,533,515,506,507,491,484,488,483,484,495,493,496,496,500,491,556,553,567,557,559,550,558,550,538,531,535,524,516,518,524,524,521,522,526,519,501,505,500,505,506,509,511,498,492,515,504,508,476,482,475,481,481,484,483,481,486,481,479,483,483,489,478,454,456,460,459,458,457,540,540,538,542,539,543,542,548,559,557,548,566,486,486,483,485,496,484,487,476,486,491,488,495,495,485,501,538,535,550,536,535,536,541,537,538,541,541,533,540,542,546,544,549,535,545,543,544,544,549,554,551,534,534,537,532,526,527,536,534,537,532,525,535,531,531,569,558,563,559,554,555,571,561,557,524,508,527,513,517,531,505,511,504,486,483,486,488,483,488,485,485,482,485,487,489,494,490,489,492,496,492,488,510,511,517,511,515,519,506,507,515,520,548,556,555,560,556,566,559,555,555,564,555,556,565,556,559,559,567,565,567,557,558,525,529,529,532,510,515,532,523,519,525,530,526,527,518,512,516,518,527,509,510,515,510,507,516,503,511,506,506,499,515,509,503,505,503,505,507,506,507,509,477,487,477,475,491,485,479,494,464,463,458,458,454,459,461,469,456,452,483,479,472,482,486,481,493,494,485,486,478,567,569,561,571,576,586,556,571,570,495,494,507,483,500,496,516,493,504,502,576,580,576,585,578,579,597,578,567,566,581,574,539,540,543,543,526,526,536,540,535,532,560,571,565,554,564,556,556,555,561,565,558,550,553,512,505,480,512,497,483,503,486,504,497,494,491,488,512,509,453,461,456,457,461,456,499,501,500,547,548,546,537,542,546,545,541,544,540,552,551,547,518,513,513,515,512,525,516,511,526,530,519,524,521,524,525,524,521,591,573,573,570,566,580,576,582,587,512,523,518,531,520,528,524,513,528,520,516,520,526,532,531,581,583,586,572,582,582,573,581,579,576,578,587,586,528,542,539,543,540,538,541,544,511,500,506,519,508,510,507,505,566,556,570,554,568,570,566,569,561,557,572,547,564,568,575,558,566,560,557,566,568,551,553,559,565,495,506,504,495,498,491,518,503,494,464,470,463,466,460,470,461,470,458,458,455,467,462,530,526,534,534,524,528,528,533,527,533,526,535,551,570,557,565,560,567,577,545,544,535,536,543,539,534,538,538,509,502,498,507,510,508,495,495,506,508,531,527,524,538,533,540,544,534,531,533,529,534,529,522,528,527,528,534,529,523,526,531,524,537,550,536,548,551,546,539,548,542,539,540,545,537,557,517,516,512,517,512,520,515,518,529,535,527,532,531,530,528,525,519,523,531,527,527,529,524,530,526,557,557,555,547,554,562,561,556,544,513,520,518,504,510,516,521,508,504,515,462,463,463,465,459,461,465,467,462,464,465,462,467,545,540,540,545,540,535,541,549,540,532,549,533,465,477,468,485,471,487,480,485,475,502,507,504,508,507,564,548,561,563,567,568,562,553,499,498,489,502,492,490,500,491,450,468,469,459,454,464,457,462,462,540,536,544,535,537,531,537,538,537,536,533,541,537,541,539,534,539,536,546,544,534,538,551,546,543,548,490,490,493,495,483,487,484,469,579,577,574,577,585,589,583,595,580,548,544,549,546,546,546,546,548,545,524,531,526,531,516,528,522,524,526,526,525,527,524,561,561,555,560,552,563,555,556,558,558,559,553,554,561,561,553,566,556,557,554,558,526,527,527,535,530,525,533,540,531,528,524,534,477,479,474,480,471,483,474,482,480,480,504,500,497,513,511,496,499,554,559,556,558,569,578,554,560,555,563,492,496,503,490,512,487,508,502,489,493,489,491,466,458,452,463,457,456,467,458,463,462,520,531,525,536,538,524,536,536,536,534,532,518,532,529,517,531,531,532,535,537,533,534,520,564,555,553,570,566,561,569,567,533,532,536,540,529,531,526,528,559,554,499,509,527,517,518,525,520,513,480,484,493,489,492,485,486,481,485,486,493,489,485,480,501,506,502,502,501,499,505,505,506,507,501,539,535,538,531,541,533,539,529,529,526,526,524,552,512,516,510,512,503,517,505,501,510,503,510,517,464,470,459,460,472,471,456,462,467,477,463,465,466,436,439,441,439,426,425,437,435,438,447,448,449,443,436,447,439,544,533,533,535,537,532,546,550,554,543,541,550,543,549,544,548,549,502,506,493,502,501,496,506,512,499,512,508,491,494,497,499,481,471,481,482,486,480,482,479,484,482,482,448,455,454,459,445,449,471,488,479,477,485,489,484,487,490,481,559,568,567,570,563,566,583,507,520,532,525,526,528,523,531,482,483,485,486,486,485,477,481,483,486,489,462,459,470,459,458,462,451,454,458,457,454,462,457,466,531,536,538,544,540,540,543,538,531,541,546,548,550,546,544,547,552,554,552,562,559,543,553,551,552,556,553,550,509,504,496,505,497,501,510,503,506,495,523,562,551,559,481,498,511,508,490,501,456,462,450,466,463,454,456,462,457,449,462,533,523,526,541,536,526,519,538,522,533,531,527,536,532,535,531,528,533,531,535,528,532,527,533,573,562,563,565,559,556,568,559,553,534,541,537,549,542,540,549,545,540,550,540,553,551,553,547,548,546,549,550,554,555,565,556,558,560,555,554,558,549,500,504,492,499,500,493,493,494,492,493,503,508,508,505,514,511,503,509,508,500,505,557,560,563,561,517,511,518,518,520,517,514,526,525,520,488,474,466,484,472,471,480,464,476,477,479,484,477,477,484,481,472,580,577,576,582,574,578,582,587,584,585,585,534,526,532,529,522,531,524,515,528,529,520,522,524,520,575,573,589,582,591,588,588,583,580,591,588,579,572,537,544,532,539,546,541,544,545,538,560,563,567,561,567,562,578,562,567,573,574,572,579,570,524,521,524,527,519,531,532,517,527,508,507,518,504,517,507,513,510,511,511,512,514,511,510,510,515,496,485,501,494,485,484,494,487,488,492,481,497,494,496,492,487,494,486,484,484,481,481,482,491,477,485,468,473,477,476,480,478,476,478,499,496,491,493,503,493,522,534,529,524,525,526,526,530,528,590,581,587,586,586,585,570,574,579,599,532,534,530,528,535,538,526,541,538,524,532,532,537,559,551,560,556,561,549,573,561,561,561,556,566,567,530,525,531,529,532,533,529,535,532,536,543,536,537,531,539,537,540,530,539,532,530,531,533,524,519,531,521,522,519,514,545,546,545,552,537,550,544,550,548,546,506,504,503,499,492,500,500,512,501,552,537,550,543,538,548,559,532,537,533,539,537,533,529,509,508,513,514,497,503,502,506,503,512,523,571,563,566,560,556,561,562,562,570,568,559,563,557,557,511,508,505,518,525,527,516,514,524,520,513,513,518,482,482,492,483,483,490,488,489,483,489,497,495,493,497,497,496,495,496,501,498,496,506,509,508,505,505,512,512,509,507,506,501,507,544,539,530,536,533,548,539,547,545,544,547,546,540,546,561,569,574,574,563,570,566,562,567,556,519,525,519,519,517,524,517,522,510,520,575,579,583,577,571,585,580,512,500,506,500,509,508,523,495,507,513,540,548,544,548,540,546,545,548,543,546,551,553,547,544,566,560,570,570,559,559,545,545,541,562,519,519,511,498,512,517,509,516,515,501,492,477,491,478,474,485,482,485,482,484,483,487,479,495,505,496,496,493,497,495,499,494,492,492,497,498,489,503,491,497,494,566,555,564,564,570,568,565,565,567,544,548,547,552,550,549,550,546,555,542,549,546,559,503,495,503,504,486,500,486,491,492,493,481,465,472,476,468,489,616,596,594,606,566,557,551,561,563,564,562,507,523,514,513,505,516,499,513,512,507,499,510,501,497,502,507,503,504,497,496,505,508,498,502,490,506,497,502,501,474,469,479,427,434,442,438,430,437,448,477,488,489,488,488,487,487,490,500,495,502,486,555,549,546,544,539,548,543,550,544,544,543,550,543,560,488,508,461,455,470,454,436,434,437,439,434,517,518,520,519,514,520,510,512,540,541,542,549,539,537,548,550,544,542,537,559,550,552,544,546,544,553,548,554,542,558,496,505,499,497,521,498,502,489,502,501,498,470,441,456,439,532,540,521,532,532,529,527,529,522,527,525,510,522,525,523,514,515,519,520,508,517,524,503,509,507,513,507,518,502,518,508,520,537,538,537,530,535,537,538,532,534,566,562,573,566,558,569,561,549,535,530,530,531,541,537,543,529,529,538,531,526,520,537,529,538,536,550,514,527,508,556,561,568,560,559,570,571,563,561,567,522,524,521,530,512,536,520,531,479,492,484,483,488,487,489,486,490,498,511,506,519,508,517,511,509,505,508,512,502,509,557,554,550,564,552,546,545,552,542,551,482,494,493,490,493,483,456,462,459,467,463,466,458,470,545,546,547,550,552,562,566,549,548,549,548,554,551,511,513,513,523,512,515,518,509,520,514,511,551,552,554,560,555,559,560,556,555,557,557,548,556,526,519,524,517,520,537,532,521,518,524,519,504,504,498,506,499,512,508,505,507,498,500,502,508,501,496,492,488,494,489,498,498,502,497,494,487,494,493,498,461,448,462,450,459,478,470,475,466,471,481,474,472,470,467,472,469,566,563,567,570,574,568,576,581,500,489,468,485,494,478,483,489,486,494,478,481,483,496,477,544,539,560,541,550,552,550,540,556,546,557,558,555,552,506,499,500,504,493,486,485,496,519,501,496,513,506,450,464,446,451,449,445,442,539,555,561,549,563,553,553,553,560,562,553,553,553,542,560,556,552,549,494,514,507,501,500,510,502,500,504,501,496,495,492,496,493,497,556,557,541,534,535,534,533,537,527,533,535,529,532,530,533,536,520,525,521,516,512,531,533,525,520,524,523,522,524,529,527,525,537,550,565,559,553,547,568,546,555,510,527,521,523,528,521,520,545,547,545,542,488,500,500,510,483,495,489,496,502,500,499,507,508,505,471,473,482,483,479,482,482,479,484,475,485,479,483,469,479,477,478,472,473,474,473,478,481,475,480,472,477,481,463,453,453,469,463,462,455,463,449,460,460,470,465,456,471,587,568,592,552,554,553,537,549,553,545,540,541,555,551,498,492,498,503,494,494,498,499,500,494,510,500,490,501,495,540,544,536,537,547,546,544,542,568,516,510,503,479,496,491,490,493,491,505,515,505,502,505,502,462,465,455,462,459,468,458,460,466,520,518,514,516,509,516,515,563,552,563,546,558,561,494,501,509,513,516,510,509,518,518,511,500,539,551,546,554,545,545,546,542,548,548,534,543,518,521,528,522,516,516,518,517,560,553,566,558,552,557,556,548,551,523,534,532,534,528,530,533,532,529,534,524,516,526,527,527,528,527,529,518,522,521,530,527,527,521,519,542,550,537,531,529,525,525,526,540,532,526,536,531,522,532,527,526,529,529,531,560,555,554,554,520,522,506,498,514,511,514,509,498,508,559,546,566,572,571,565,564,566,553,558,561,509,489,496,490,495,486,490,500,492,487,492,492,484,483,497,486,490,485,488,494,485,493,563,577,588,569,574,588,594,565,587,573,579,566,575,583,579,577,570,504,506,498,506,495,512,507,562,551,556,553,549,550,565,558,555,549,516,509,512,507,518,499,465,477,467,481,469,470,491,490,480,479,484,487,490,486,492,487,486,493,484,543,558,520,519,527,528,535,526,483,479,478,476,481,470,550,546,554,542,538,541,537,545,537,545,543,555,555,547,552,554,547,550,542,557,551,558,526,550,555,552,557,555,549,561,553,548,553,507,500,505,506,490,502,490,497,506,502,492,508,502,502,500,501,496,499,546,553,547,542,543,575,525,521,520,519,516,509,508,516,512,526,512,522,519,511,524,461,464,463,453,458,460,458,454,460,462,456,464,459,466,456,454,464,458,452,447,450,451,448,457,462,449,450,449,460,544,546,552,547,549,550,552,559,558,552,547,550,552,549,550,551,543,546,540,563,554,559,556,557,561,558,564,543,548,555,551,556,549,558,563,544,566,478,474,475,479,470,499,547,548,548,550,540,558,557,546,558,551,504,501,506,497,504,502,510,497,503,480,480,475,489,482,482,492,483,556,562,555,552,539,548,549,554,558,547,556,556,487,499,492,500,500,499,496,499,501,494,502,501,501,487,496,502,492,498,562,571,562,563,562,555,570,569,544,536,545,548,558,556,557,544,556,555,529,526,519,524,531,527,517,520,509,515,484,472,477,466,471,472,477,480,475,471,473,478,482,475,489,474,486,474,479,484,478,474,485,479,593,595,586,603,591,576,554,554,554,573,558,553,562,559,560,512,504,495,507,501,506,457,458,457,457,456,453,457,458,448,459,457,451,473,479,471,469,467,486,469,470,475,473,468,561,568,563,569,548,571,553,578,495,503,507,553,549,543,548,554,554,556,551,556,552,542,500,496,497,496,513,496,501,497,506,500,500,503,510,504,504,503,487,475,494,500,504,514,484,457,443,449,451,458,517,508,503,503,503,510,541,547,544,546,539,536,538,540,549,549,548,529,494,498,506,503,494,507,494,502,584,585,587,588,583,589,598,592,569,584,585,537,549,527,532,541,537,543,513,497,504,521,509,502,554,549,558,559,567,551,558,561,557,560,561,553,553,555,567,501,505,508,520,502,514,508,524,524,505,508,508,499,500,508,507,508,503,500,506,513,507,533,536,537,521,525,544,532,536,537,522,480,484,496,500,498,488,491,497,490,487,489,492,496,572,584,581,606,583,581,589,599,586,601,599,572,604,588,594,547,558,556,556,555,556,565,567,551,571,495,492,492,488,489,497,503,489,492,488,489,483,492,490,489,489,494,484,490,491,568,564,561,565,573,509,515,513,500,509,499,498,503,501,471,464,463,464,461,442,595,592,582,592,593,589,593,591,580,580,517,534,520,530,520,532,522,526,529,522,577,590,581,584,583,579,543,560,546,543,493,484,490,488,494,479,469,472,476,468,476,475,465,474,469,458,470,465,472,476,472,568,554,574,552,570,574,554,502,506,514,485,488,486,493,502,513,500,509,457,454,443,444,453,467,459,465,473,483,492,489,488,478,480,483,496,481,485,494,490,483,494,567,556,567,560,567,568,518,520,526,515,514,523,521,533,528,531,531,531,530,529,532,538,537,536,529,529,528,535,542,550,553,555,554,547,504,498,500,494,501,496,496,557,551,512,506,506,489,479,479,484,490,484,481,487,489,479,481,487,485,489,486,474,466,470,472,474,479,475,465,476,471,464,473,477,461,460,458,460,459,454,456,453,455,461,543,541,550,531,568,574,571,573,570,569,574,565,568,545,546,553,558,547,548,545,544,554,526,520,528,528,528,533,522,531,504,494,509,491,502,499,496,498,498,495,494,589,583,579,586,592,606,593,594,539,541,546,541,531,541,542,547,544,546,544,541,563,576,571,554,568,572,563,504,503,505,514,506,516,512,516,484,482,478,484,490,475,481,482,560,557,552,566,561,554,491,477,476,554,543,560,560,548,558,548,549,551,543,477,483,477,486,482,476,470,474,481,474,482,476,482,484,480,547,550,545,538,546,549,545,539,548,545,535,514,514,516,512,507,512,521,512,512,550,566,572,553,568,491,509,512,499,514,508,503,513,507,513,509,514,507,500,510,497,501,497,558,543,536,534,547,529,535,542,481,489,477,482,489,476,484,484,482,489,478,473,505,490,491,485,491,484,499,486,497,490,490,527,503,497,502,501,503,495,509,498,541,548,546,548,542,556,574,560,566,570,558,564,570,567,569,581,559,564,564,564,524,533,535,528,531,516,519,523,528,524,529,528,546,547,558,558,552,552,564,552,558,508,515,506,518,503,506,512,513,506,495,510,564,573,553,557,564,557,522,531,520,528,520,534,516,518,519,516,511,503,515,506,496,506,500,509,501,509,507,505,508,509,483,473,486,486,488,484,485,488,486,483,507,508,504,504,501,544,537,543,543,537,542,543,547,542,537,552,543,540,546,541,546,550,540,542,550,548,533,518,525,516,523,524,529,520,527,544,530,540,531,538,535,505,511,508,510,515,533,535,533,537,536,525,538,537,533,538,529,534,524,527,521,529,525,532,528,530,520,536,530,531,561,560,548,561,555,554,556,552,517,517,525,522,472,473,483,478,478,486,469,479,481,477,483,462,467,457,470,458,459,461,460,471,462,468,464,464,460,462,461,455,459,471,453,464,458,463,461,466,548,541,532,532,535,534,542,537,542,534,532,534,525,521,528,520,522,522,520,524,523,528,519,522,521,518,529,532,544,537,536,538,536,536,540,541,544,543,532,497,495,479,482,508,497,474,463,466,472,475,459,478,468,500,504,499,503,508,507,499,508,510,512,514,513,509,491,541,554,551,542,553,550,554,556,550,539,558,556,542,489,492,482,486,480,481,475,490,485,475,446,439,439,446,429,443,435,525,524,529,518,516,522,516,521,524,524,540,538,535,529,527,529,535,540,533,538,576,569,566,563,572,574,574,557,574,550,555,549,553,553,557,549,557,546,550,556,553,560,552,553,517,511,513,528,525,499,504,494,505,494,501,507,506,505,477,480,474,476,473,489,487,471,467,470,467,468,463,468,465,466,461,456,458,452,551,554,558,557,549,549,548,546,561,551,553,572,553,521,514,524,531,536,542,544,506,507,497,498,502,472,474,476,476,474,484,477,487,482,476,478,471,484,486,483,473,481,469,455,460,457,469,481,481,480,486,484,483,484,481,482,480,483,481,477,490,477,479,481,480,499,495,498,496,495,502,502,496,504,499,495,506,485,479,472,480,487,474,481,481,486,481,481,487,474,481,488,487,478,485,479,479,462,467,461,469,454,460,465,465,464,557,556,566,569,559,550,566,559,566,561,554,572,559,555,550,549,551,535,553,549,551,553,547,545,556,550,550,485,470,485,471,468,473,485,469,472,480,474,478,456,464,471,472,472,461,463,597,600,598,583,587,591,599,582,580,591,586,594,500,498,521,484,486,496,500,550,546,558,551,550,545,541,544,525,524,529,523,536,525,519,528,532,527,558,561,558,561,563,557,558,555,563,565,562,497,508,508,503,500,495,501,504,512,505,500,512,508,506,504,511,509,509,505,515,548,542,545,539,537,539,535,543,541,532,528,528,535,527,533,533,532,531,530,535,527,542,549,560,541,546,551,540,543,544,487,501,498,499,503,494,488,501,501,493,501,494,491,503,468,479,471,472,469,468,475,471,479,475,475,472,476,476,503,508,514,509,513,498,491,506,508,511,512,495,543,548,544,544,534,542,494,484,490,492,494,497,499,494,498,506,491,494,499,549,548,535,544,540,536,548,544,518,516,522,506,520,532,512,527,513,523,520,522,519,515,526,515,515,527,589,578,583,583,586,586,580,601,587,576,541,538,538,537,533,524,555,557,554,558,562,552,556,559,564,487,478,467,486,493,479,485,501,480,468,476,470,467,469,554,558,559,558,555,576,568,567,530,563,557,558,561,525,524,528,532,517,528,533,551,552,550,547,555,545,543,556,563,555,557,557,559,521,506,522,517,514,529,514,537,536,503,520,513,523,530,514,517,481,478,470,477,476,483,486,477,485,484,485,488,483,485,487,488,482,485,480,580,559,566,550,575,557,550,572,557,571,558,561,519,527,521,524,519,531,530,520,521,524,524,527,520,532,537,529,527,513,516,514,498,520,516,514,512,509,513,567,556,574,565,567,569,570,564,530,541,531,508,510,510,512,509,507,511,516,509,493,499,502,498,497,493,490,500,500,501,502,498,506,501,494,487,479,488,492,491,486,491,486,482,490,470,471,461,465,472,476,475,468,482,468,468,443,435,441,447,448,437,437,443,445,436,435,444,476,474,475,468,483,488,487,475,537,516,526,524,524,522,525,534,520,530,526,520,580,602,580,588,585,581,591,586,589,578,590,536,546,546,547,540,493,480,494,495,485,479,485,503,493,503,484,498,477,483,477,471,479,485,476,475,559,542,572,563,573,551,547,571,583,486,486,495,480,500,484,485,468,489,478,497,489,475,479,480,486,558,558,570,548,555,555,563,553,555,557,544,553,546,545,554,547,544,486,461,478,467,473,485,486,441,442,450,446,451,444,453,444,447,448,448,447,446,522,532,537,519,526,540,535,534,532,536,534,533,532,531,534,528,529,535,529,565,577,574,571,561,556,562,569,569,563,553,558,563,531,532,530,524,517,527,524,527,513,516,561,548,568,561,561,561,471,487,489,468,485,537,524,530,563,568,564,568,567,528,531,534,537,535,527,539,533,520,518,519,524,562,562,565,559,566,546,570,561,552,563,554,568,551,548,552,547,547,550,554,548,502,492,497,499,507,501,497,500,494,497,497,506,494,490,496,488,493,568,584,576,580,568,589,579,578,560,587,564,588,579,571,565,487,552,538,543,546,567,563,571,561,564,542,552,552,558,562,545,547,546,562,559,556,552,554,556,551,562,536,547,552,544,546,549,535,536,547,537,500,499,507,514,503,509,507,505,513,473,469,497,494,494,487,533,524,525,523,529,525,528,528,519,525,528,520,520,521,521,521,524,519,519,529,517,521,521,524,524,521,549,547,553,543,515,511,505,502,500,496,511,506,513,528,541,532,531,531,538,541,527,530,517,516,515,515,514,517,523,519,515,520,519,524,520,526,516,517,528,503,538,550,551,547,549,544,549,551,509,505,505,504,508,507,509,500,488,492,494,499,493,491,496,492,495,489,500,489,510,505,510,506,505,511,524,521,510,520,518,517,513,520,515,515,525,522,522,528,527,525,569,555,556,569,561,569,535,548,528,536,537,539,539,525,513,509,501,509,512,508,507,540,531,529,533,537,532,534,537,541,529,529,520,519,513,518,519,537,532,527,533,531,553,497,510,504,512,501,511,505,564,544,574,563,559,542,558,557,551,551,566,565,497,502,506,505,502,509,503,503,507,508,501,508,511,511,514,515,510,510,511,507,504,509,532,528,535,534,528,523,535,524,526,536,531,529,531,532,542,550,541,540,544,544,533,546,544,537,561,555,556,551,549,560,525,520,521,534,517,523,520,531,529,521,529,518,517,511,509,512,509,510,516,503,508,484,484,481,482,485,483,486,491,467,468,470,464,470,466,463,473,470,560,550,564,555,545,566,553,555,560,567,560,548,557,549,557,543,539,547,543,540,520,524,528,517,524,522,520,529,521,524,520,527,523,552,552,558,555,552,561,536,536,544,537,536,539,540,530,531,532,529,560,560,558,556,557,556,563,557,554,557,556,559,556,550,516,507,516,481,476,481,467,475,469,467,480,464,473,474,467,438,434,441,436,432,448,447,442,444,457,438,439,441,436,433,446,444,545,553,558,541,547,545,536,560,539,545,537,574,572,568,576,568,576,566,576,562,568,548,545,542,537,550,552,547,552,539,547,496,506,500,504,510,511,520,524,520,515,563,564,570,567,566,568,563,558,570,561,565,560,570,557,564,565,563,569,582,496,487,465,538,533,534,540,541,528,530,535,540,538,537,538,540,539,540,537,534,547,540,537,535,542,552,541,544,535,548,476,470,482,520,510,524,527,528,529,542,538,534,550,542,541,544,545,543,546,542,557,551,548,558,551,556,554,501,502,493,507,506,494,488,499,512,458,465,459,453,467,463,463,451,457,483,477,486,477,480,477,473,480,481,572,567,575,557,567,570,574,567,562,563,554,585,569,564,583,519,508,514,514,506,500,495,504,503,500,506,496,504,506,509,528,528,532,531,538,540,543,533,537,532,538,533,539,530,549,535,553,546,555,539,541,545,550,553,527,516,512,521,518,512,513,523,512,523,517,522,518,525,516,585,567,586,588,568,566,571,583,572,578,488,495,497,491,514,499,498,496,477,482,476,469,480,480,481,482,491,479,487,490,486,488,486,488,596,594,594,599,594,594,610,594,602,594,598,595,559,557,559,553,556,552,550,558,553,553,553,553,550,555,555,558,553,499,520,518,522,512,523,484,484,481,473,484,476,476,478,477,481,485,507,502,502,548,554,558,550,547,562,553,553,553,552,561,561,546,551,557,506,504,498,505,506,509,504,499,508,508,508,495,506,504,510,506,511,534,516,532,531,533,526,546,533,534,534,538,534,536,533,527,530,541,538,539,528,564,571,564,546,554,560,570,560,563,539,529,527,531,528,530,525,528,535,526,523,533,532,527,529,526,531,532,533,542,484,499,483,483,480,478,478,482,479,493,482,435,523,526,527,519,523,518,530,526,525,526,518,532,525,530,534,522,561,574,568,562,548,535,539,546,538,542,540,535,534,535,531,536,542,539,531,526,534,538,529,540,534,538,537,530,537,527,533,534,560,562,562,565,567,566,568,572,520,527,523,523,532,528,530,510,524,510,508,501,502,502,503,502,506,504,491,505,495,495,487,481,493,486,489,495,491,511,508,501,499,500,508,514,502,503,503,537,533,536,542,536,533,537,545,536,533,508,510,514,512,513,507,506,511,503,551,540,543,542,543,548,539,536,557,542,537,538,551,549,547,537,533,542,493,488,499,502,489,499,498,493,553,555,551,548,549,549,551,556,541,558,540,510,517,511,479,465,475,471,460,478,467,475,469,470,473,470,483,476,478,489,484,477,476,485,480,485,478,482,483,484,484,499,508,519,512,510,509,512,549,548,556,556,551,554,553,508,500,502,504,509,513,510,512,495,505,482,489,485,489,483,484,483,493,478,492,490,494,498,490,492,508,516,499,496,500,497,503,499,496,508,500,499,500,500,501,500,502,508,501,496,492,498,495,496,495,460,463,460,462,462,454,460,458,459,459,466,468,460,456,472,473,481,546,571,551,574,508,516,525,522,522,517,525,520,519,515,521,558,560,566,563,558,560,556,557,556,554,555,555,561,551,547,543,545,549,545,558,550,531,523,518,531,522,530,516,498,504,501,507,514,504,495,501,499,502,481,482,478,486,485,480,480,479,497,504,500,502,508,504,496,568,573,582,583,575,566,576,572,502,512,500,499,507,516,501,488,489,483,494,494,493,486,491,486,489,493,493,569,536,554,554,552,569,583,567,554,566,556,557,554,568,491,509,517,504,497,500,497,495,497,491,495,495,497,502,504,499,495,496,500,539,521,530,531,534,542,465,471,473,460,459,457,468,470,473,472,464,584,586,606,580,594,576,586,601,527,531,531,528,522,530,525,526,521,535,524,588,497,516,511,515,520,514,504,496,508,514,546,549,554,539,541,546,556,543,534,553,544,543,554,518,527,529,526,525,529,527,527,536,527,533,532,482,478,476,484,487,485,486,481,480,550,560,548,552,549,558,550,552,547,563,571,563,557,555,561,569,565,562,568,563,561,558,563,560,571,514,482,478,450,449,447,438,436,440,440,453,442,438,534,527,519,520,524,546,544,549,541,541,552,545,553,557,529,526,534,520,529,534,525,524,528,528,524,503,501,495,499,503,501,495,501,511,505,504,499,470,474,474,485,468,470,475,472,460,478,472,462,448,468,466,579,594,597,577,577,580,592,588,585,580,586,591,576,600,525,531,544,539,536,536,536,522,524,511,530,522,524,518,517,516,520,519,523,519,522,562,565,568,563,558,567,571,562,568,558,562,553,547,553,547,553,554,552,548,493,499,502,497,497,509,508,518,524,514,569,553,562,551,557,559,563,559,566,556,579,574,496,503,497,497,493,504,498,508,497,490,492,485,490,492,572,578,576,549,573,568,482,498,502,490,492,500,490,565,559,559,571,553,560,553,556,566,561,563,559,565,557,554,547,544,547,554,553,556,550,550,549,476,465,467,479,476,456,464,472,476,475,467,467,465,460,580,582,565,570,570,570,581,559,568,581,581,570,594,554,470,481,478,480,475,478,549,550,544,543,562,563,545,546,553,540,538,541,542,536,546,547,548,543,540,533,531,539,540,551,524,474,480,476,482,481,476,487,489,487,490,482,510,506,504,506,507,511,506,508,506,502,507,512,519,530,524,530,524,526,530,517,526,516,518,519,519,527,532,532,526,533,526,532,535,559,556,576,559,557,577,518,525,526,524,519,511,531,520,523,525,530,583,586,579,576,593,562,584,583,579,515,513,511,515,516,508,518,518,510,528,530,519,532,535,523,529,530,513,519,523,514,524,509,516,515,511,518,517,518,514,517,510,519,539,543,534,536,537,539,535,539,546,524,537,540,539,547,555,549,551,555,507,493,506,519,501,516,502,522,502,510,519,506,504,508,499,508,466,473,467,474,471,477,465,469,468,468,468,471,467,458,464,461,469,460,463,460,462,459,463,461,462,465,461,460,459,465,462,479,471,474,477,471,473,470,468,475,554,556,556,555,559,566,573,573,565,567,550,482,492,490,469,474,479,486,484,483,493,477,478,494,532,525,536,534,526,534,536,533,539,547,535,536,531,568,564,561,571,565,567,566,576,565,547,549,558,556,544,553,546,550,546,543,545,530,520,528,524,524,524,510,523,511,508,500,501,510,509,507,506,507,503,503,508,500,499,509,499,498,489,496,494,484,489,488,492,493,499,487,478,480,485,478,476,479,491,479,482,479,483,476,483,480,481,494,487,497,493,498,495,468,464,458,469,466,462,469,466,441,443,427,429,445,438,441,450,531,531,537,528,532,550,542,541,541,544,548,542,546,550,532,552,538,537,540,543,495,483,486,503,480,495,490,497,488,504,488,491,586,588,589,592,588,580,575,572,531,519,525,521,539,551,475,475,474,475,474,482,475,487,477,553,559,552,562,551,544,558,564,555,549,550,557,550,554,558,556,548,547,558,555,571,562,531,515,530,531,522,527,529,520,532,536,530,521,492,492,501,496,498,498,497,493,494,495,489,506,491,493,509,497,498,461,460,463,459,448,462,451,462,457,458,459,450,452,460,450,453,512,491,488,488,495,542,545,550,550,556,554,552,545,555,543,565,548,557,504,507,492,499,504,502,507,495,489,503,496,546,546,546,532,540,540,542,569,562,557,558,572,566,562,527,547,546,542,541,544,559,545,554,548,516,504,456,469,473,469,470,462,468,472,460,463,446,453,443,446,455,435,448,445,455,443,449,467,447,446,441,501,502,501,503,553,545,552,562,547,558,490,501,501,494,501,495,501,508,502,505,496,509,507,499,550,538,550,552,549,538,538,550,540,539,545,544,542,563,573,556,573,565,558,564,512,519,526,530,512,521,516,513,525,525,593,589,572,592,585,574,599,584,587,581,576,591,583,575,590,583,587,554,552,543,556,550,551,552,550,547,548,545,558,547,550,501,503,502,498,495,506,517,513,520,515,522,514,523,518,516,515,520,546,558,558,554,557,561,561,558,575,491,504,504,494,497,501,498,507,509,506,511,510,513,514,509,509,510,545,548,539,546,530,546,533,544,549,546,537,543,523,519,523,523,518,522,524,524,521,521,524,542,549,542,546,546,525,524,523,533,527,520,529,526,524,528,527,562,574,567,561,558,569,552,564,560,586,559,513,511,508,508,517,553,553,541,553,507,504,502,504,506,496,560,566,570,584,565,563,570,563,571,560,571,560,501,501,485,500,495,445,446,451,436,451,446,457,444,453,534,539,543,542,540,532,541,529,533,530,543,547,548,543,552,536,531,532,526,530,530,531,536,528,531,531,554,549,557,553,510,500,488,492,490,494,494,501,511,507,559,548,545,550,553,546,550,521,543,537,528,537,537,530,539,533,537,536,531,530,539,531,557,565,567,568,568,552,572,570,556,567,561,563,526,508,515,500,525,571,575,577,588,584,575,574,571,589,564,570,579,571,586,560,482,494,506,474,480,549,540,552,543,543,549,545,554,544,556,544,557,550,553,551,552,553,561,549,555,546,555,546,501,503,512,500,502,502,500,508,503,495,497,492,502,495,499,494,494,494,495,487,495,494,535,539,536,537,534,530,529,538,545,543,523,503,509,506,507,501,503,506,498,504,545,548,542,552,542,537,533,551,559,557,560,551,560,561,559,520,510,518,510,511,502,498,502,502,505,506,504,504,505,506,501,502,501,501,506,504,548,529,537,543,533,532,539,534,531,528,538,514,511,528,518,517,522,529,524,522,546,533,522,537,541,540,538,532,519,542,536,473,487,476,483,470,487,487,556,564,560,569,544,560,554,526,522,521,520,510,520,492,512,470,469,472,469,470,479,469,470,465,465,453,449,451,448,449,462,447,451,453,454,450,451,448,491,502,496,500,501,502,504,501,500,511,499,502,558,562,564,555,569,555,558,561,562,556,563,559,558,556,553,558,556,558,557,557,556,562,557,552,548,553,548,561,489,498,502,492,504,494,494,495,492,497,499,491,491,496,491,497,496,488,575,565,580,577,576,569,574,572,559,571,582,521,510,508,518,521,510,512,511,512,529,518,517,478,467,486,475,486,473,467,472,477,468,471,474,465,470,479,477,474,475,489,498,493,488,488,490,486,529,527,526,533,519,523,526,520,526,528,526,521,519,520,520,519,523,517,516,522,539,544,544,543,544,542,541,545,537,537,543,543,533,514,522,513,509,522,526,511,519,521,515,511,517,502,506,505,506,514,512,514,510,508,508,549,538,545,544,546,546,551,547,545,535,548,549,541,556,543,553,551,546,552,547,545,558,546,548,552,544,540,542,475,466,483,457,478,468,469,460,466,479,485,485,487,552,551,558,547,548,550,541,541,546,535,542,552,545,540,549,537,551,547,546,549,550,501,510,510,504,497,507,508,512,505,502,552,559,548,564,563,496,523,495,505,511,517,519,504,515,503,505,507,504,509,511,496,506,512,499,508,539,549,543,550,535,553,541,555,495,483,499,498,492,488,499,493,498,499,506,506,504,506,566,564,568,575,574,576,561,566,573,559,552,555,555,553,550,557,552,506,506,502,489,494,498,497,504,512,516,505,512,511,507,511,509,515,504,513,506,520,511,505,541,535,543,536,547,549,544,542,552,513,519,518,516,519,510,516,511,505,508,512,511,523,516,522,517,513,579,567,576,558,567,560,573,509,528,521,522,537,517,511,503,507,506,510,510,508,506,507,506,513,485,489,491,491,487,491,494,497,489,489,495,488,493,475,477,470,478,473,476,476,479,478,475,459,460,458,458,461,467,465,470,463,459,502,515,503,521,508,502,512,507,506,548,542,543,547,540,531,548,543,545,553,545,549,520,528,524,538,537,542,537,546,542,541,542,538,534,525,530,532,528,528,527,525,530,531,548,556,554,549,548,547,554,545,544,548,551,541,490,499,491,511,485,496,491,495,496,491,493,494,501,498,496,497,494,494,491,496,494,503,489,496,497,540,554,541,544,554,545,541,515,521,513,513,522,513,518,521,509,522,519,592,599,594,588,593,593,589,551,559,557,556,550,563,558,543,556,559,564,558,551,554,557,562,552,549,524,513,519,533,526,529,531,523,495,504,510,503,508,509,492,488,497,494,490,496,491,489,471,464,469,504,502,507,508,486,507,499,498,504,491,507,545,547,555,555,547,536,542,560,542,490,497,492,499,494,490,489,488,490,493,497,494,497,495,496,494,504,498,493,493,491,568,567,559,583,522,513,502,501,499,503,491,465,465,465,461,465,464,461,461,466,466,470,459,464,468,557,562,561,549,557,557,557,567,549,541,554,552,511,514,524,516,518,518,519,520,543,524,528,520,525,482,474,469,469,482,549,554,565,554,563,552,547,561,555,563,531,537,533,541,528,529,534,527,518,520,521,520,527,524,529,524,517,522,549,558,550,553,557,548,541,554,554,538,539,536,512,515,516,501,510,520,515,508,508,542,559,557,550,555,536,547,534,532,554,544,548,552,552,539,542,530,539,545,550,552,546,527,537,525,529,528,526,528,524,525,526,523,528,554,547,542,548,547,549,558,552,542,546,544,483,500,503,513,499,508,499,505,504,501,496,479,483,479,480,491,483,485,486,487,501,505,495,500,498,500,498,500,495,505,471,486,480,479,488,464,455,461,459,458,464,461,456,459,466,495,481,482,477,476,491,489,473,488,559,583,569,549,584,561,568,568,568,583,566,575,506,495,513,439,447,435,430,518,519,531,533,529,525,526,531,532,535,528,529,575,563,561,570,565,564,573,558,551,542,551,553,551,550,547,555,514,517,513,509,518,522,506,507,502,505,482,480,485,486,483,482,480,484,486,478,491,501,496,496,503,501,498,501,494,500,502,545,550,563,544,552,549,541,552,542,550,543,544,545,553,538,546,543,544,543,511,515,509,506,460,458,450,452,452,448,456,447,538,539,541,567,572,572,569,568,566,563,575,564,529,531,522,542,530,540,523,525,529,531,525,470,466,480,478,541,562,546,557,553,549,555,553,541,546,555,552,545,548,548,562,549,544,557,499,504,507,502,500,560,558,565,557,572,560,565,569,559,560,570,506,460,467,478,479,476,467,461,542,543,561,542,562,567,551,560,560,545,547,551,488,470,477,474,479,480,484,474,483,468,478,481,551,554,552,542,557,545,551,546,553,549,559,566,574,570,567,585,579,573,570,575,527,524,527,541,538,489,497,486,490,491,508,509,504,503,505,560,553,555,556,546,558,546,543,562,559,545,551,546,516,507,511,514,512,522,490,494,491,486,492,487,451,462,466,448,459,464,459,452,470,457,454,485,496,489,493,487,483,496,544,543,546,546,536,550,545,540,542,533,566,563,557,550,576,557,557,565,551,554,502,518,502,512,513,502,522,510,576,578,522,514,501,511,510,528,510,517,519,525,521,515,517,513,512,518,512,526,514,512,585,579,596,576,579,584,588,547,549,557,539,543,538,550,541,545,545,553,510,504,514,498,514,501,502,498,506,504,501,507,452,467,462,470,466,461,465,467,457,459,459,464,461,476,464,452,442,446,444,451,448,453,452,435,448,440,444,438,449,441,446,578,575,582,575,573,581,572,569,566,574,572,540,539,534,541,536,537,531,522,528,532,524,532,535,518,532,529,534,566,581,570,574,567,561,565,563,566,562,571,572,576,570,564,576,581,567,577,559,517,521,511,519,523,501,508,543,542,541,543,545,541,548,551,563,570,557,568,565,559,568,558,567,559,576,563,567,567,530,529,533,535,526,527,539,530,528,534,529,532,553,561,566,561,554,552,555,572,562,562,571,566,564,557,524,505,512,499,459,454,456,455,457,455,455,461,460,448,457,455,469,466,462,558,555,563,559,558,567,561,550,551,559,539,546,548,548,542,548,549,552,547,499,506,497,498,499,476,489,499,502,511,504,504,500,499,508,537,544,548,533,536,527,550,535,475,474,480,486,471,482,475,487,493,468,497,506,504,508,507,496,495,501,497,499,507,536,531,546,535,541,499,508,506,489,499,509,501,489,507,549,550,571,545,581,504,523,509,514,506,538,511,529,570,554,562,563,552,556,572,563,560,572,564,559,560,556,567,556,489,495,505,501,519,482,519,500,501,509,493,503,447,448,447,451,439,447,446,448,442,443,443,442,449,512,497,501,507,484,504,496,483,557,555,575,554,563,562,561,503,494,494,489,497,496,500,496,496,500,491,497,499,495,505,498,488,574,594,571,560,588,571,569,565,565,582,570,576,564,570,570,541,529,528,520,519,526,520,522,531,529,486,481,476,490,492,482,481,473,475,480,480,472,464,459,458,457,459,456,459,461,531,535,531,528,533,532,538,535,541,530,532,530,533,532,522,531,528,527,529,529,521,526,528,526,525,528,530,527,529,531,545,548,553,554,548,564,552,549,546,554,551,541,572,556,551,557,559,550,549,498,499,502,503,496,502,514,501,521,518,512,521,521,512,518,531,517,515,516,515,561,545,564,555,496,507,514,516,515,514,510,515,507,514,511,513,515,512,545,549,548,495,504,503,503,511,494,498,502,506,496,504,493,515,499,498,496,490,501,502,495,493,500,530,542,529,534,535,538,528,482,476,480,470,534,523,518,528,520,527,528,530,529,526,527,526,529,518,531,535,539,540,532,536,531,540,538,530,544,549,544,554,549,543,543,548,533,510,517,499,504,505,511,510,516,505,511,520,488,483,476,480,472,458,461,455,457,458,454,457,459,460,458,458,463,479,479,485,487,473,467,472,543,554,550,553,547,555,560,567,549,513,509,515,517,515,512,507,494,495,490,489,488,487,487,490,497,484,484,478,481,479,490,483,553,558,539,557,558,550,553,496,493,506,496,495,489,497,499,492,495,485,492,499,513,510,501,509,550,560,553,563,535,535,534,540,531,535,533,536,527,530,536,535,536,538,535,540,567,554,561,566,551,552,565,563,565,507,518,517,521,514,505,509,516,518,516,536,520,518,520,479,487,476,480,482,478,480,478,482,478,475,481,485,477,477,497,476,482,480,559,565,568,560,571,553,565,559,563,561,559,497,484,501,494,500,504,495,493,502,489,485,492,477,479,471,472,476,470,565,563,552,555,552,567,495,503,504,488,512,492,514,499,497,504,494,516,506,502,494,494,502,508,502,497,492,495,501,531,525,512,513,519,520,519,517,538,548,550,543,537,544,554,542,494,505,502,541,547,541,549,554,542,554,543,536,546,543,544,557,566,561,556,557,567,560,569,557,505,507,504,505,502,500,534,524,531,535,533,526,527,527,525,535,525,531,530,533,542,547,549,536,542,543,538,533,539,561,552,558,481,497,498,506,492,487,506,492,478,453,474,461,451,458,462,469,474,460,471,581,587,586,584,602,583,599,596,599,604,590,551,550,513,527,523,509,511,521,523,504,516,518,472,483,478,476,482,479,483,479,472,482,453,457,463,459,458,558,548,557,561,552,546,553,545,545,544,544,551,543,543,538,545,554,549,547,547,544,560,545,534,572,559,571,559,571,564,566,570,518,527,516,524,521,531,531,529,583,592,586,586,585,587,589,544,549,557,549,556,542,549,538,483,483,483,479,484,468,465,464,460,459,464,469,465,453,459,450,467,467,555,551,551,540,506,513,512,519,507,506,514,510,513,505,519,511,506,514,550,558,547,550,551,551,553,554,552,549,528,527,533,534,534,533,529,542,532,531,540,528,535,536,531,537,563,565,564,571,568,567,554,565,560,560,523,522,534,525,532,522,527,520,529,501,492,504,496,495,502,502,497,509,481,479,486,489,485,477,477,481,486,489,484,476,477,461,462,456,456,457,464,568,554,551,550,545,553,559,556,544,542,546,546,545,550,570,584,566,558,562,572,564,560,574,541,528,539,532,531,521,514,519,522,514,554,558,575,563,563,562,558,510,523,522,511,517,480,479,472,480,480,485,481,474,474,478,484,485,486,466,467,462,465,474,469,462,471,463,472,482,549,553,537,572,562,496,500,487,496,507,501,480,483,485,486,485,480,487,482,491,485,498,495,504,497,511,494,499,522,527,532,527,544,542,552,538,549,552,541,552,550,545,550,561,544,556,554,551,554,558,553,549,550,560,560,559,551,503,500,498,504,510,499,501,499,494,499,527,516,518,522,520,521,566,577,572,568,572,574,581,559,565,574,529,521,504,502,498,502,499,496,501,506,504,498,482,475,473,484,471,485,470,485,477,478,484,573,589,576,578,596,594,578,585,598,594,535,532,527,531,534,535,493,553,562,541,551,561,547,553,558,559,567,557,552,550,538,550,544,534,540,542,547,546,546,546,546,527,518,521,515,521,524,517,518,508,524,519,476,465,469,473,481,485,470,484,471,476,483,484,471,565,589,590,593,570,586,587,582,600,593,598,576,592,585,587,582,575,536,520,532,530,523,531,520,527,530,529,563,547,550,557,551,549,558,516,511,511,515,519,518,521,524,559,564,548,552,554,522,525,526,524,536,524,530,527,530,527,503,504,502,507,507,505,561,551,541,503,500,501,510,527,519,515,504,502,514,483,477,483,481,474,471,480,478,482,478,478,478,474,476,473,478,475,477,443,450,446,429,452,449,445,451,443,444,448,444,450,452,447,450,516,520,527,524,513,514,527,520,521,520,525,518,521,540,530,534,535,537,534,528,537,524,525,531,557,568,559,554,563,565,564,564,560,558,568,571,566,584,533,540,520,531,522,521,529,518,564,558,549,547,557,561,550,541,563,539,542,540,544,536,537,540,541,531,540,533,534,530,539,532,530,530,532,537,531,534,565,561,556,571,558,553,565,563,561,556,506,496,504,499,499,503,500,506,492,503,497,503,502,509,496,485,486,486,483,488,494,565,569,560,465,475,486,455,472,480,464,474,580,598,578,602,577,585,579,592,599,588,548,538,541,546,542,536,542,540,538,524,545,548,536,543,522,523,518,523,526,521,528,525,521,529,520,523,524,529,540,548,536,541,537,538,546,541,539,543,522,522,519,515,516,516,522,517,512,520,510,517,510,518,521,508,503,499,499,501,504,501,499,543,543,536,532,546,545,550,549,544,557,560,574,572,568,557,568,576,556,565,579,562,552,561,570,565,540,539,537,526,533,541,512,532,530,518,502,509,501,497,521,553,557,554,555,560,569,507,519,500,518,510,504,506,519,488,488,472,486,484,489,488,485,472,472,471,465,470,476,475,434,434,428,565,551,553,554,553,547,547,547,508,500,502,504,498,506,506,495,502,505,507,503,523,496,488,481,473,490,480,479,494,491,485,488,484,490,496,495,498,495,491,493,493,492,495,489,490,491,497,490,494,497,471,473,472,459,464,469,479,471,495,492,497,484,493,493,492,500,495,497,497,503,492,530,529,531,529,532,539,532,530,527,527,523,526,521,530,527,527,525,521,526,531,528,521,529,527,523,530,536,536,541,535,536,539,479,471,473,484,487,475,468,485,480,488,482,524,526,523,534,523,533,533,528,527,534,521,529,535,537,537,546,542,538,538,544,541,545,547,540,542,545,542,543,546,541,549,547,553,546,549,547,547,547,500,497,501,499,486,497,508,494,440,447,452,446,441,438,436,433,442,447,459,448,450,447,527,540,533,531,529,532,533,543,540,539,544,535,537,542,545,538,533,524,536,525,524,527,530,533,461,472,475,483,486,465,479,465,482,469,464,544,544,546,542,538,537,543,549,553,535,538,554,574,575,576,569,572,570,568,565,578,528,535,532,532,536,521,530,521,528,485,474,478,480,485,465,474,471,475,476,474,529,528,527,532,543,536,541,546,540,547,539,544,543,549,551,544,553,540,548,547,509,487,496,491,492,491,500,485,461,461,469,461,463,469,541,546,546,464,476,476,488,480,477,477,472,479,490,490,489,502,494,487,500,488,496,549,530,544,539,544,532,537,534,527,540,525,524,522,520,523,521,558,557,555,569,554,545,551,553,546,554,543,548,501,506,495,495,501,503,500,494,500,506,491,499,500,495,502,499,499,504,504,500,503,502,507,499,498,533,533,543,579,503,496,516,502,520,519,516,497,523,511,510,512,504,520,437,440,444,470,478,463,475,475,474,476,486,567,578,552,577,574,568,557,564,572,562,509,513,457,455,468,461,464,468,454,456,453,456,459,456,459,462,461,503,506,495,500,494,499,505,571,565,554,557,557,571,557,499,508,501,500,500,506,499,503,507,496,501,505,502,487,458,449,461,455,453,458,443,457,451,454,459,450,447,455,455,463,453,471,468,479,458,467,472,471,464,579,586,601,596,597,595,591,588,595,548,550,561,544,534,550,564,554,559,560,562,541,537,510,496,492,498,497,499,466,456,468,471,460,465,449,460,460,456,462,460,462,450,456,454,459,454,454,455,544,548,552,547,553,554,536,574,570,564,571,571,566,567,569,579,531,525,536,526,524,532,524,535,532,557,560,559,556,556,563,521,526,528,522,527,526,521,525,521,530,528,524,524,553,553,553,553,551,556,549,550,561,553,554,542,553,557,524,537,539,540,531,530,533,534,538,533,533,516,516,522,509,515,513,517,519,516,518,508,558,552,568,583,580,564,569,532,525,534,518,522,540,504,507,507,506,507,504,507,502,491,498,500,497,500,498,484,492,487,493,491,490,473,488,485,496,499,494,498,495,496,506,507,504,499,487,496,503,500,496,559,558,563,552,557,567,555,560,555,520,519,521,528,526,525,529,524,527,493,489,497,499,498,504,483,597,589,584,579,568,559,561,548,554,547,563,561,563,554,558,550,521,518,507,523,516,508,522,502,519,523,530,514,507,512,515,518,521,508,521,533,491,491,484,481,483,482,486,490,481,488,489,487,485,484,493,486,512,504,511,511,506,508,508,505,537,531,533,534,533,531,535,528,537,535,533,532,528,517,520,514,515,512,515,515,517,519,509,516,516,516,510,518,518,510,529,525,532,528,525,528,522,528,559,569,567,564,581,575,564,507,501,492,501,511,504,509,500,524,530,538,529,518,532,537,525,519,522,521,520,528,525,530,518,523,529,563,547,546,548,547,546,551,543,540,553,554,546,546,505,491,502,493,498,507,511,498,497,497,499,502,505,503,509,500,556,553,537,536,538,511,518,507,518,511,517,515,508,516,520,551,551,559,564,551,552,565,548,542,547,553,543,545,547,537,549,486,484,482,496,479,494,502,489,489,506,491,505,507,503,501,440,447,458,451,444,443,440,445,539,534,540,547,537,537,533,534,527,536,547,552,547,541,543,551,547,553,550,549,507,501,505,509,513,454,453,454,456,452,453,450,451,456,467,453,453,483,487,496,493,576,573,546,574,563,579,572,562,563,575,571,491,518,502,483,497,507,494,505,490,489,455,472,466,460,468,455,463,460,463,468,592,579,597,586,571,597,579,589,589,568,594,589,594,575,515,508,504,509,500,507,501,512,512,507,550,557,546,548,551,556,560,554,540,547,542,535,556,541,539,541,549,544,479,482,475,474,482,492,476,456,448,457,457,453,453,447,440,453,445,446,457,452,563,552,555,563,549,560,559,552,552,557,544,543,557,550,553,555,554,506,501,522,505,503,507,566,572,565,571,568,567,562,564,572,560,525,517,516,520,513,524,537,514,535,465,467,455,451,447,440,449,453,452,455,460,461,463,449,460,466,459,458,535,544,540,541,533,542,545,538,533,533,538,538,553,548,553,546,545,546,555,549,548,555,545,545,544,553,561,565,557,566,563,554,561,561,561,555,558,525,532,521,519,518,522,520,502,504,504,506,486,490,487,484,494,486,494,496,489,490,480,481,477,478,472,479,471,481,480,473,484,472,470,466,463,470,468,471,468,465,473,472,474,475,472,477,471,480,471,471,476,479,479,478,483,477,479,484,479,475,475,486,492,488,490,499,495,487,493,567,563,567,559,573,554,573,566,565,565,536,535,539,530,528,532,530,569,572,558,562,559,566,565,564,557,563,559,564,571,554,523,526,526,520,511,502,498,501,500,505,508,509,480,479,475,481,473,479,467,479,483,480,473,484,482,459,458,460,459,464,463,456,450,466,459,454,461,465,462,536,527,538,536,530,528,543,537,537,534,534,545,541,541,544,544,554,538,541,542,551,544,538,544,543,555,540,511,502,504,527,501,493,509,508,501,509,508,430,437,453,475,489,494,501,494,495,486,488,499,486,488,537,536,536,531,538,548,469,464,475,478,470,466,480,465,478,546,539,535,533,549,525,564,568,562,564,573,577,569,566,556,564,578,570,560,555,566,549,535,537,537,528,549,539,545,544,540,538,547,551,542,541,548,558,559,557,558,552,556,551,556,561,558,553,551,532,529,539,538,538,526,538,534,527,534,487,474,478,469,469,480,478,477,484,471,470,549,562,550,557,552,502,508,517,494,495,474,464,480,478,477,476,495,488,489,487,493,489,487,462,465,467,471,474,469,468,466,446,452,456,460,453,547,549,552,564,553,563,564,541,553,541,542,548,487,499,496,501,511,589,587,596,587,590,580,577,551,561,558,548,545,558,555,548,550,549,518,518,505,482,482,484,482,477,478,491,478,475,477,462,462,462,458,464,533,530,526,532,524,527,533,532,531,541,530,537,537,534,536,533,530,533,532,538,532,541,533,535,526,571,562,566,569,578,558,581,567,568,571,502,495,494,497,514,500,510,512,533,530,530,526,523,526,527,521,530,519,527,533,531,529,527,526,522,529,523,529,526,530,533,531,527,536,531,535,531,526,545,538,530,537,545,535,529,513,514,509,511,509,510,501,512,560,558,566,564,561,565,570,562,556,548,564,556,551,554,565,564,563,557,567,561,562,549,553,551,547,544,542,554,549,547,486,494,483,490,486,480,480,494,488,490,502,493,493,457,469,455,452,452,450,452,456,464,459,466,460,542,538,539,543,536,551,549,552,550,553,550,559,552,553,551,551,552,568,566,556,547,557,557,557,554,551,560,549,554,559,559,494,496,490,502,487,489,506,493,490,490,462,467,460,465,477,459,463,462,457,466,468,465,532,531,524,533,533,531,526,534,526,525,521,534,534,536,537,530,526,528,532,526,566,565,569,569,578,564,571,576,577,567,565,564,573,550,551,554,550,551,549,546,554,546,557,552,541,543,545,550,547,554,550,517,517,522,519,523,523,521,521,506,527,522,517,528,534,513,508,503,499,505,511,514,512,508,504,497,511,506,502,510,505,504,499,506,501,501,499,494,499,504,496,497,490,504,499,494,499,505,499,471,468,453,462,463,455,463,456,451,472,457,465,453,467,461,453,554,548,569,551,554,567,556,548,547,545,544,501,492,491,484,493,494,494,502,483,502,593,570,566,577,584,589,585,584,582,520,523,521,526,522,533,527,524,522,527,555,547,547,556,562,566,552,561,530,524,524,526,523,519,524,521,521,524,529,521,544,553,549,555,548,549,552,556,547,543,492,490,493,493,498,463,463,456,458,460,465,460,553,540,566,580,569,568,568,571,578,567,536,532,529,538,539,527,535,527,510,507,513,503,511,515,516,557,512,520,517,510,510,505,507,503,507,491,490,492,491,482,492,486,488,517,522,526,519,528,523,513,528,524,522,567,576,578,578,574,575,586,574,575,570,578,577,583,578,515,511,505,513,515,504,507,510,515,510,501,501,515,513,502,533,527,523,520,521,534,530,532,532,523,521,513,520,511,513,518,525,517,514,519,517,515,513,509,512,522,516,528,529,533,528,526,536,533,532,520,532,571,558,571,567,568,572,583,571,558,575,567,558,570,585,572,550,544,547,506,511,513,513,510,519,519,504,513,517,502,518,507,479,477,478,477,478,473,481,476,480,476,444,469,452,473,466,455,454,456,498,508,505,507,506,511,503,508,501,502,506,541,540,523,530,531,537,551,529,535,459,450,453,456,454,445,460,446,458,529,523,535,537,528,576,558,560,568,564,563,567,566,555,543,538,535,548,538,545,541,545,542,539,550,508,519,525,516,529,524,519,524,516,511,528,521,519,526,529,478,484,482,480,479,486,477,479,480,479,474,471,482,484,480,470,565,562,569,569,549,560,579,566,558,568,565,561,551,566,567,558,572,547,500,495,500,539,553,538,553,540,553,546,541,538,543,516,515,519,517,523,515,518,520,514,519,513,560,555,571,568,559,568,567,567,562,559,561,562,549,560,562,553,554,515,510,520,529,512,487,486,490,483,481,480,483,488,491,501,513,513,519,509,509,509,570,561,558,564,558,557,556,557,555,493,497,488,491,492,497,485,496,483,480,491,488,462,472,457,465,461,457,526,533,535,538,532,539,535,527,520,538,528,528,530,535,538,526,571,569,568,578,557,557,573,557,569,558,530,531,530,527,526,530,531,526,534,536,521,526,504,499,491,548,556,558,552,556,556,559,555,570,548,549,557,554,512,507,505,501,517,514,504,516,512,527,516,519,520,515,518,520,514,521,511,520,518,518,518,596,578,571,590,572,581,525,538,540,541,542,534,525,541,529,541,534,504,514,490,504,500,494,497,502,508,507,503,485,491,496,567,569,489,472,475,479,475,475,486,495,457,480,469,495,533,533,534,521,539,543,533,530,533,544,562,565,566,557,566,571,564,564,556,574,577,522,533,525,533,532,530,533,547,526,523,532,520,524,526,525,515,521,534,523,519,524,518,521,520,529,544,540,535,537,534,526,528,474,498,501,494,493,516,525,536,539,528,538,539,551,534,539,526,502,499,505,498,512,499,479,487,508,515,509,505,508,519,504,505,510,550,483,492,494,487,485,493,492,488,472,476,481,479,465,478,483,479,489,463,468,475,558,548,545,550,548,537,549,560,571,552,559,551,494,513,516,511,503,506,511,503,506,499,498,554,566,556,562,559,533,534,520,525,529,533,527,526,524,531,528,527,536,533,533,542,539,538,537,535,535,521,522,515,515,514,519,517,520,513,545,548,545,554,545,548,543,549,547,544,543,543,546,544,545,543,547,541,539,534,543,544,530,535,519,511,520,520,519,527,527,515,530,521,524,522,515,524,598,597,581,592,581,596,597,581,599,532,529,525,525,519,505,513,518,507,520,522,529,521,520,552,556,554,552,564,562,552,561,558,554,555,558,558,555,549,560,562,555,559,554,556,554,552,548,553,545,555,559,550,558,550,559,548,550,549,502,506,505,499,500,492,505,497,462,453,475,468,463,476,472,469,469,465,561,546,578,565,557,567,556,544,567,565,554,573,490,491,485,486,482,488,486,594,579,579,596,579,584,579,585,581,556,549,493,495,499,487,493,484,495,495,498,500,494,500,501,494,492,499,499,505,581,569,582,556,573,577,519,517,527,527,522,537,534,531,499,510,500,478,470,475,475,482,470,475,479,479,480,484,482,474,481,459,465,456,456,456,456,471,459,461,466,464,582,589,550,549,551,552,549,553,547,550,548,544,541,541,545,539,487,488,479,480,489,480,443,446,440,459,447,447,443,443,443,442,543,539,538,534,554,545,554,535,552,548,539,556,551,574,559,549,550,548,482,525,534,537,539,530,536,516,529,526,532,564,580,563,566,558,565,581,570,560,572,566,573,574,557,540,532,544,535,539,540,543,529,548,544,549,531,495,485,450,451,451,442,436,440,511,502,494,487,488,482,497,566,553,565,555,552,560,573,572,563,561,570,554,572,557,562,565,551,525,540,518,524,542,520,521,518,523,522,516,513,501,497,500,489,494,497,481,481,486,484,476,475,485,480,490,477,475,461,467,467,459,471,466,466,466,465,460,464,469,548,568,552,518,514,521,520,515,514,527,524,525,535,524,526,529,532,526,529,538,528,527,531,530,525,520,530,525,529,506,507,510,513,508,502,508,503,495,508,571,562,560,555,580,572,554,512,490,508,506,518,504,522,510,525,497,508,475,485,485,482,480,475,474,483,482,488,492,488,491,494,487,491,498,495,490,486,485,490,491,503,504,506,498,509,513,510,501,520,529,536,529,528,525,523,521,529,523,527,528,537,537,553,538,538,541,546,541,541,536,544,551,541,543,539,531,519,527,529,524,522,514,523,521,526,524,526,526,524,529,563,559,564,561,558,562,557,564,559,556,564,557,559,559,549,545,552,539,549,554,552,553,554,549,548,550,494,507,508,506,504,510,497,503,496,503,537,535,530,536,536,535,552,537,535,539,540,523,523,524,520,522,521,520,522,521,519,517,537,485,475,479,484,469,473,484,478,470,484,484,471,486,472,482,474,566,558,554,552,560,554,504,512,508,512,513,516,506,514,511,530,540,526,539,543,533,537,541,531,534,536,549,560,564,569,557,557,524,519,547,521,517,536,528,507,514,527,519,495,484,488,497,487,495,494,492,488,485,492,495,486,476,482,488,487,476,487,483,482,494,490,492,491,497,490,491,489,485,464,455,463,459,460,457,460,460,461,469,461,456,446,448,458,457,453,451,459,447,445,449,464,447,459,457,457,447,587,570,569,511,505,511,516,502,531,534,526,534,535,547,569,565,497,493,491,500,493,494,495,504,489,496,495,547,557,561,565,552,581,564,572,564,558,564,521,526,527,519,519,524,523,521,539,533,510,505,512,509,504,519,527,535,523,516,514,526,513,523,529,527,517,523,523,525,591,586,582,587,595,583,584,588,586,585,591,582,567,563,565,557,552,550,556,547,560,515,536,519,526,518,521,532,506,493,504,506,496,505,502,499,503,501,496,501,504,486,475,487,492,476,484,482,490,481,481,491,487,486,484,483,483,472,477,481,482,455,452,453,456,458,460,452,463,468,463,469,469,466,470,469,465,464,467,464,477,473,468,478,558,545,543,548,546,539,552,556,541,543,543,504,503,498,496,496,513,487,499,496,494,500,502,490,503,498,559,555,561,553,559,555,550,563,567,561,562,518,514,520,530,524,518,523,519,521,526,520,493,487,497,496,502,491,585,591,598,592,583,599,586,605,574,594,605,604,580,546,547,544,519,508,497,511,509,507,498,507,502,470,478,475,480,484,476,475,478,477,484,460,460,460,464,454,455,457,455,457,457,451,492,488,486,500,490,489,482,482,493,483,484,536,546,544,548,548,543,543,547,553,546,550,547,551,549,539,546,535,522,537,533,533,538,535,530,530,529,533,537,529,532,527,528,560,557,551,554,561,550,509,533,522,524,508,517,509,519,514,513,480,484,491,486,489,489,480,478,486,485,481,485,481,480,485,482,483,483,487,485,485,478,475,471,476,478,473,478,477,454,447,453,440,446,453,447,447,443,447,448,449,441,443,447,530,546,538,537,538,536,542,558,543,557,547,544,553,556,552,549,558,555,548,543,478,487,489,463,487,486,484,465,482,469,483,464,477,476,486,487,544,551,543,551,546,545,545,548,548,547,558,545,550,548,541,543,547,551,548,553,540,543,551,554,546,507,504,495,494,501,510,505,497,491,499,498,504,512,498,596,602,579,582,585,596,582,597,615,591,593,587,552,540,545,485,478,477,481,480,490,500,501,496,501,515,530,541,546,535,538,546,538,530,529,548,537,537,534,517,511,521,514,503,522,518,513,519,523,516,558,551,558,561,550,567,558,560,550,542,549,558,514,507,501,507,501,506,516,494,508,500,502,507,508,502,506,556,566,545,502,496,493,497,492,487,503,500,515,495,491,491,471,468,471,468,471,464,475,470,455,453,467,459,461,466,459,464,460,460,458,551,558,563,561,548,560,569,492,505,498,509,500,500,501,505,504,500,511,496,497,560,546,559,547,529,548,541,532,536,495,490,493,502,500,505,567,560,553,577,559,559,549,559,563,554,562,550,560,558,517,515,511,526,519,507,508,538,532,549,549,541,534,543,535,545,532,536,539,535,541,539,541,541,535,542,541,533,538,542,541,540,533,539,536,537,543,535,542,538,534,540,537,524,519,527,522,523,516,520,521,518,577,581,591,583,588,536,545,547,541,553,541,519,513,512,522,521,522,517,520,508,512,521,531,462,454,470,456,456,469,447,476,562,557,550,552,547,556,563,550,552,570,553,549,554,560,559,560,556,558,562,558,558,556,564,552,518,518,502,524,515,519,523,515,518,492,483,487,494,491,485,490,485,488,484,528,522,521,519,521,523,569,579,578,589,568,577,582,526,541,538,540,545,541,542,541,534,541,535,529,547,537,529,517,520,525,521,518,516,526,522,518,531,536,531,540,525,545,541,543,540,537,539,538,532,537,533,527,517,519,512,547,528,531,530,528,531,529,511,511,505,507,511,513,510,506,511,504,556,556,557,560,561,547,559,566,503,507,516,513,509,514,508,498,475,466,470,465,468,436,434,435,433,431,439,540,536,535,548,542,543,529,563,570,565,565,568,537,533,548,533,540,532,532,539,522,523,530,524,525,523,526,521,544,555,538,535,503,508,495,501,487,510,501,505,493,496,497,459,456,462,462,460,465,468,470,477,466,464,471,469,536,493,498,499,497,503,486,501,501,513,517,542,550,545,544,540,523,522,522,560,550,554,559,556,538,534,542,533,540,528,516,519,528,521,519,525,517,528,524,524,528,528,528,528,531,525,529,561,560,556,553,559,560,559,559,569,554,520,513,509,509,510,510,511,511,512,515,513,520,523,535,535,533,536,538,537,531,538,534,537,537,536,533,533,532,556,552,549,555,560,554,566,557,562,550,555,560,506,509,506,512,508,509,512,512,510,509,518,506,508,572,573,571,574,586,583,588,581,482,501,473,494,478,486,500,519,519,524,524,531,521,522,524,528,510,538,543,538,548,542,544,542,544,546,551,554,555,540,535,544,560,503,498,494,495,505,508,496,468,473,469,466,471,476,472,463,473,470,455,566,577,575,551,578,567,574,569,486,474,469,458,470,481,518,534,528,522,525,529,523,534,524,566,562,560,569,571,553,569,553,575,549,553,554,545,560,557,552,556,560,551,556,546,560,547,546,535,541,538,539,534,546,539,482,489,496,490,481,484,472,479,471,484,475,486,500,499,491,448,449,433,440,527,530,537,525,526,535,531,526,529,529,526,532,516,515,514,520,504,512,515,517,518,514,523,513,514,517,527,516,526,532,522,531,530,526,525,529,563,568,578,561,572,568,570,502,519,509,516,509,554,553,554,557,553,552,545,546,550,548,548,555,549,550,553,551,549,555,541,552,546,541,551,505,509,505,501,504,516,521,491,481,491,483,488,487,483,479,487,475,491,484,484,491,493,485,499,502,490,496,500,496,491,497,496,497,468,470,478,479,478,475,479,473,475,472,475,476,474,488,479,472,488,472,479,484,479,480,480,480,478,474,617,603,602,596,619,603,593,509,517,506,510,494,513,499,507,538,545,538,548,544,548,547,539,543,547,557,565,556,568,579,574,573,562,557,557,561,560,568,532,536,528,533,525,512,515,508,511,508,513,513,514,576,558,568,559,557,558,561,574,569,556,561,557,564,560,518,522,526,526,530,526,530,517,522,520,511,510,507,507,507,509,470,479,475,465,479,473,436,434,435,470,465,455,450,451,464,461,589,601,598,599,575,581,592,589,600,592,595,614,570,547,554,555,553,544,556,561,564,553,557,490,492,486,484,488,485,481,487,495,489,481,485,485,485,473,482,481,465,460,470,464,466,454,460,468,466,553,547,558,549,556,538,541,539,545,545,546,548,551,557,511,508,508,514,560,563,562,557,556,560,560,555,565,558,556,545,556,552,556,547,518,504,509,512,510,516,515,508,504,520,513,504,487,487,488,489,490,489,487,491,489,485,489,489,491,487,486,538,526,521,523,528,522,570,583,572,580,579,573,575,578,586,567,574,584,584,580,576,574,594,590,583,587,536,519,523,516,523,532,519,461,479,476,482,473,474,477,479,479,476,475,597,589,540,519,527,519,524,520,531,512,501,505,503,505,502,499,504,506,502,501,509,564,552,550,553,559,550,554,564,564,561,553,551,547,548,543,558,552,556,535,537,536,539,545,538,528,546,558,570,575,578,575,591,589,579,574,573,579,529,520,532,521,527,487,480,479,478,487,484,480,482,486,480,476,483,469,465,468,470,470,455,459,475,459,471,461,462,471,600,577,591,585,591,584,597,587,585,594,603,550,563,543,544,550,555,555,520,524,513,510,520,502,521,472,474,474,470,475,479,483,487,479,489,548,558,561,552,563,552,556,566,548,552,475,490,483,471,472,490,479,484,487,491,490,488,490,508,504,511,512,512,502,506,509,515,525,539,532,540,525,535,531,525,534,526,521,537,533,532,526,523,545,546,538,529,537,543,531,535,541,538,551,557,554,552,563,552,561,550,554,517,511,512,505,514,521,507,509,512,454,458,454,458,451,457,453,462,461,477,466,462,461,468,466,470,474,606,583,589,600,585,596,588,589,523,533,537,548,530,537,544,539,499,501,487,488,488,485,481,496,495,495,499,492,492,495,487,496,511,520,527,530,520,530,518,525,499,512,507,507,503,517,498,505,516,503,513,510,508,508,562,556,560,562,540,563,562,559,571,552,564,557,535,526,523,523,525,525,519,508,519,516,531,527,532,529,528,485,495,508,495,538,568,566,563,555,562,552,555,544,562,544,558,561,563,485,489,493,505,496,495,501,492,493,489,508,514,510,513,506,505,510,515,504,513,505,509,504,509,505,543,548,551,562,559,565,563,549,564,574,565,547,563,569,512,507,503,509,520,497,511,517,572,555,560,562,563,555,547,568,507,503,497,487,502,513,512,516,501,495,497,493,493,493,494,493,489,495,490,551,545,550,542,541,547,551,530,528,533,529,534,530,526,537,530,533,531,529,526,530,525,526,529,525,520,527,528,526,521,521,515,517,515,522,523,526,568,573,540,540,552,553,544,556,555,546,555,536,556,501,501,499,501,495,511,501,492,493,506,503,495,492,490,487,484,488,482,488,487,490,487,489,488,484,483,488,517,517,526,519,520,512,519,583,585,570,582,572,585,568,574,577,556,541,533,537,538,542,543,529,540,537,539,540,507,509,509,499,497,504,502,509,506,495,504,510,505,490,539,529,538,532,534,534,531,538,528,532,540,533,535,540,539,531,536,536,537,532,540,544,538,539,536,534,553,556,540,545,543,549,479,551,563,555,547,547,547,550,547,550,522,522,520,519,525,523,517,519,564,555,558,555,560,543,560,547,543,552,520,520,519,512,529,526,525,525,518,519,512,529,532,523,528,526,517,515,458,446,438,452,458,457,441,444,452,444,455,453,533,569,564,561,559,560,561,563,514,511,505,517,516,503,515,510,539,551,541,546,542,551,542,546,544,535,557,539,546,548,539,547,554,548,544,536,546,540,524,526,533,522,531,532,521,526,531,553,548,546,540,545,547,545,556,546,553,551,548,540,544,552,551,510,515,502,506,497,506,489,491,491,491,481,489,489,482,483,483,481,486,487,483,493,498,494,496,496,491,499,494,484,486,486,493,491,490,490,485,492,490,483,483,489,483,482,495,499,495,488,484,478,482,480,484,453,453,456,466,463,459,459,457,500,502,500,502,501,494,500,552,555,554,555,554,558,539,553,540,555,564,508,506,504,504,540,548,547,540,547,548,545,540,552,551,546,546,547,551,534,546,536,524,517,513,507,506,515,512,521,513,530,528,537,535,532,530,543,548,537,539,469,475,481,490,496,483,486,483,479,467,476,478,473,471,478,467,473,474,491,471,477,477,549,551,546,559,551,557,543,536,549,556,555,549,561,562,553,563,560,514,521,516,514,507,510,494,507,526,511,514,488,496,493,488,497,486,502,499,496,495,499,494,484,491,492,565,549,555,556,554,528,538,532,534,530,540,531,535,524,533,523,523,517,521,520,520,527,535,522,537,537,539,545,533,530,537,535,558,558,551,560,554,562,566,553,558,560,554,498,501,498,502,494,508,493,496,515,496,512,515,472,478,470,473,477,478,478,484,474,476,467,466,553,555,561,553,546,561,552,551,553,472,473,483,470,472,476,494,486,481,531,535,524,530,524,536,540,529,531,532,536,535,530,536,534,533,563,565,565,556,541,528,527,515,511,528,530,532,533,532,517,506,500,499,496,504,499,501,504,567,557,555,563,556,550,548,562,555,559,555,556,553,558,556,544,550,545,544,551,548,552,548,552,545,550,530,543,539,537,534,542,539,539,541,531,535,529,530,535,531,528,529,530,528,531,530,523,534,531,532,532,537,542,534,534,535,539,504,508,506,503,513,518,552,563,541,561,558,567,563,546,545,550,517,512,509,494,509,500,515,493,511,512,505,515,509,493,482,478,487,492,492,484,480,486,481,489,484,482,479,480,489,479,485,480,478,484,482,479,484,490,465,467,475,468,468,436,430,430,437,433,434,432,489,497,493,494,486,488,495,506,492,485,488,503,498,495,561,559,565,556,561,556,560,563,559,571,522,525,514,517,518,522,524,514,521,515,522,521,504,506,494,503,499,499,500,509,504,498,509,462,470,473,465,477,475,476,442,447,441,430,437,442,442,437,431,429,433,440,431,453,492,490,485,487,498,486,482,492,495,495,536,544,540,542,537,539,535,538,538,533,535,534,522,529,522,527,518,517,516,524,523,523,560,560,552,567,563,567,556,549,553,565,551,560,551,560,519,510,514,523,519,529,529,510,479,480,484,477,478,477,475,482,475,476,479,459,478,470,465,463,470,461,465,467,467,468,461,468,483,556,551,557,563,561,570,496,500,489,494,488,481,492,491,499,494,499,496,492,487,494,492,489,585,580,568,578,574,578,531,525,520,526,514,523,522,528,522,530,581,574,582,587,576,587,590,538,542,538,534,530,537,518,521,518,516,551,554,555,543,556,556,562,558,531,535,533,528,539,532,538,531,540,533,533,535,535,518,518,523,518,522,531,521,519,514,519,517,513,518,519,536,537,534,526,537,540,538,542,536,557,556,556,560,554,559,556,561,558,533,538,533,530,533,530,532,536,534,532,531,525,524,536,537,546,544,534,536,542,527,533,539,492,468,477,475,466,481,472,478,475,485,474,471,503,496,500,558,560,565,556,557,550,544,517,526,522,522,522,479,485,475,484,480,533,536,544,550,561,545,559,538,544,549,557,556,558,520,517,516,511,517,506,511,537,537,558,558,559,557,559,564,559,505,504,531,515,508,488,517,508,520,496,512,496,456,453,453,460,458,459,441,453,456,459,467,461,461,465,453,484,478,482,475,483,475,554,575,578,570,556,556,580,568,558,569,518,518,516,507,506,521,513,534,539,544,544,533,546,532,546,541,542,538,537,503,509,499,498,495,505,507,500,505,503,501,497,501,508,503,502,545,543,545,552,548,543,546,546,541,548,543,534,555,567,576,564,560,571,574,559,566,530,537,532,550,543,541,544,532,540,541,547,491,491,497,470,469,463,471,468,472,476,467,470,470,467,476,432,430,425,436,440,442,435,441,440,428,438,435,529,545,538,535,531,545,536,538,534,533,576,558,567,570,565,559,517,561,551,554,544,569,560,517,514,529,530,539,529,533,534,525,531,525,530,527,529,533,528,537,556,552,558,556,557,532,530,531,527,560,569,566,558,561,558,554,558,568,565,555,549,550,545,567,548,543,556,545,556,557,502,499,511,493,505,488,489,488,488,485,488,525,514,522,526,529,583,586,594,587,581,580,594,583,584,589,588,549,558,494,494,510,502,505,498,508,567,571,558,533,534,532,534,527,514,514,519,511,525,505,518,520,516,516,512,507,578,558,552,564,557,575,561,559,567,565,559,495,507,509,507,507,507,510,514,520,516,521,516,520,518,514,520,522,521,523,515,522,522,521,521,547,540,542,553,534,549,548,541,540,533,545,535,547,512,510,503,505,514,510,505,538,530,554,542,538,553,558,547,555,546,541,470,469,479,477,499,495,492,499,493,487,546,556,552,565,559,565,552,558,558,562,559,552,532,536,529,529,527,529,539,532,512,512,502,497,519,514,514,513,511,510,507,509,514,510,556,559,567,549,554,561,558,554,550,564,554,558,572,498,517,497,519,503,508,499,514,507,505,525,497,485,488,489,484,481,488,482,486,479,482,481,457,462,467,464,454,458,456,459,455,455,450,461,456,541,543,553,552,558,529,541,554,545,533,553,527,526,515,518,525,550,533,550,541,548,534,536,537,546,538,483,490,496,475,495,484,438,455,439,438,439,432,439,443,433,443,524,539,540,534,554,574,567,571,543,537,539,532,539,536,495,494,493,499,506,473,469,470,468,470,474,499,512,501,498,506,503,495,505,497,502,492,495,534,527,528,532,531,527,524,531,544,537,518,528,480,490,492,495,584,600,581,594,580,577,601,567,548,550,530,531,533,535,534,539,541,528,538,542,539,482,494,494,500,492,495,492,448,462,459,452,502,501,509,502,506,503,504,508,510,506,528,549,537,528,547,538,528,542,462,458,455,468,458,457,460,449,458,451,526,520,522,520,518,532,515,523,530,525,534,538,544,539,543,540,542,542,538,532,546,545,541,544,544,542,545,540,551,549,548,536,541,538,470,481,478,475,489,479,473,473,477,473,488,489,482,474,481,473,472,480,484,481,469,478,581,556,549,569,560,555,573,560,563,559,542,567,509,507,509,498,522,498,492,494,498,511,503,509,453,467,467,458,468,463,462,459,450,468,461,465,505,506,501,514,505,514,513,503,503,501,519,507,517,502,542,542,545,546,526,525,534,523,524,527,528,542,546,540,537,539,534,537,541,542,531,539,530,538,543,504,517,513,514,507,519,514,511,514,541,555,548,555,549,550,507,517,519,517,509,518,527,519,517,518,513,484,485,483,482,463,481,475,478,483,482,478,480,481,486,482,478,480,488,482,483,520,520,518,520,517,522,524,521,519,516,520,566,549,549,562,554,564,565,545,545,557,491,476,465,479,492,471,528,529,523,548,533,526,528,543,532,525,537,522,528,572,583,573,568,568,569,565,573,566,564,546,551,559,543,510,531,514,500,509,474,475,478,486,479,477,483,484,445,440,451,454,439,434,448,442,455,454,447,460,541,554,562,552,556,560,541,548,552,549,542,552,546,542,505,508,493,502,496,506,506,502,484,484,485,481,479,486,482,476,483,456,467,455,505,501,508,496,491,505,554,557,562,558,551,559,565,559,542,573,572,554,569,550,557,541,530,548,540,530,530,545,534,531,521,534,531,497,502,500,476,476,488,482,483,488,518,507,509,509,499,508,506,505,556,531,538,532,541,534,535,534,528,539,538,504,506,508,509,501,553,552,552,550,545,536,545,545,549,557,538,493,502,506,500,495,499,542,538,536,530,529,540,533,533,528,538,529,539,517,512,514,516,522,520,517,518,513,519,518,530,510,516,514,523,511,510,513,517,505,515,513,508,526,526,533,530,527,528,524,529,535,538,537,527,527,534,571,569,556,569,573,580,570,556,584,549,544,542,540,541,542,554,554,546,549,539,536,546,546,498,490,503,495,493,485,488,507,493,496,496,493,497,491,495,494,491,507,495,498,499,502,501,510,507,502,507,507,505,506,506,511,508,506,502,508,503,539,547,536,545,536,540,561,557,569,562,564,563,572,569,566,564,526,536,527,527,535,525,535,539,534,534,534,556,558,562,560,551,565,553,519,530,523,515,526,521,516,520,541,545,537,570,572,567,572,511,523,515,532,519,527,520,491,498,490,483,489,495,491,492,491,501,503,480,492,496,493,492,494,487,503,499,502,558,548,559,562,552,561,557,549,552,544,560,552,555,531,529,533,535,537,537,540,532,537,537,533,536,535,529,536,534,534,537,535,531,532,538,534,538,567,560,564,558,551,551,564,551,560,561,559,557,571,548,521,523,514,520,483,478,485,487,477,484,480,458,461,468,467,463,456,459,458,462,467,469,551,552,557,537,536,545,547,556,544,546,546,552,551,514,513,501,512,517,514,504,511,508,512,513,558,552,564,548,555,570,560,549,565,556,554,551,548,554,565,523,525,525,522,527,497,498,493,498,493,497,492,504,589,597,589,601,595,595,588,597,518,497,508,507,507,519,508,509,516,517,517,528,508,509,510,524,532,534,528,540,532,523,543,539,553,542,538,539,531,549,544,537,559,547,563,554,556,551,564,567,523,525,531,524,514,523,526,493,504,508,494,497,510,494,456,461,466,458,454,459,456,460,471,461,458,474,481,480,465,474,470,479,472,461,589,556,563,581,586,496,490,487,494,490,486,481,492,483,478,552,546,543,554,549,561,541,543,493,495,481,483,474,479,476,482,470,489,484,474,482,467,480,475,481,506,497,494,493,491,497,496,488,502,497,488,544,524,541,530,547,536,549,528,529,546,533,528,524,533,485,483,469,466,477,467,475,478,475,469,474,554,559,557,539,554,560,536,538,541,514,513,510,517,509,514,519,513,507,512,537,532,540,537,539,535,544,519,528,527,517,520,521,522,594,594,592,597,532,537,540,539,536,537,537,531,543,535,555,561,554,548,557,564,562,565,555,561,551,564,571,561,552,484,486,479,484,481,475,488,480,500,470,481,490,490,564,556,577,574,586,562,573,568,583,580,586,562,573,532,542,530,533,520,531,528,517,522,528,494,504,496,491,493,501,504,494,454,451,463,457,450,459,452,452,488,488,489,499,497,484,489,500,490,499,488,503,493,495,485,544,539,548,540,539,544,513,517,522,524,517,516,518,519,527,513,513,516,520,522,522,523,520,590,594,592,605,583,595,584,575,590,582,590,594,584,597,545,541,536,535,540,518,521,511,519,512,523,581,588,582,603,589,581,591,589,590,592,585,597,583,587,585,575,550,540,533,537,530,537,528,532,533,540,534,534,532,537,529,526,523,520,521,522,524,530,523,530,529,522,531,544,548,546,549,548,538,557,536,544,555,541,544,552,542,520,493,504,507,494,504,456,473,475,470,464,468,459,467,461,470,455,463,471,464,454,464,454,454,456,451,455,585,582,578,580,584,578,590,584,571,595,584,522,519,521,529,517,512,536,528,518,515,525,514,523,524,529,519,515,518,528,516,574,579,576,556,548,560,561,553,550,545,554,562,553,557,556,551,547,553,520,533,525,499,501,492,498,494,503,495,502,501,501,499,498,502,496,483,480,486,482,485,487,488,488,494,494,493,493,492,499,500,548,559,553,555,559,559,558,558,556,558,550,537,534,529,529,530,536,532,523,523,532,523,528,523,531,538,522,525,526,531,540,532,535,522,532,533,525,528,530,554,477,482,485,490,494,489,489,494,483,481,482,500,541,540,550,551,565,544,549,529,536,537,520,522,523,518,525,519,523,526,521,538,548,555,542,559,555,547,543,544,545,550,561,543,545,497,504,500,498,508,511,483,496,493,479,474,475,475,479,477,474,462,466,465,470,472,470,470,502,494,495,499,501,499,500,506,498,504,524,531,527,532,537,535,533,536,536,538,538,525,539,535,539,518,515,517,522,522,516,528,517,520,524,522,527,533,526,532,523,520,532,471,481,478,473,479,477,482,580,567,584,578,585,588,585,576,576,576,580,588,582,546,534,542,520,516,509,511,516,518,539,548,544,537,551,556,492,496,493,488,499,496,491,499,447,465,454,462,462,466,450,466,460,470,506,511,494,498,493,488,507,506,500,497,497,509,556,558,529,518,524,516,525,524,532,533,529,533,527,550,584,556,568,552,576,561,571,562,566,506,518,511,517,505,505,509,566,559,553,559,577,567,529,532,519,535,534,520,528,522,527,513,534,503,496,503,512,512,506,503,482,491,479,483,480,481,484,488,488,481,491,502,509,503,507,509,500,507,507,508,510,502,510,557,548,505,505,514,504,502,496,495,497,499,507,470,463,472,465,471,470,466,463,471,465,499,504,565,516,519,517,516,505,501,519,516,507,482,488,476,477,483,481,476,477,486,475,497,488,502,500,490,499,486,502,486,546,561,557,559,563,557,562,561,557,502,512,516,489,508,507,500,507,501,496,463,465,468,463,470,458,469,469,451,443,439,444,438,445,449,453,455,450,543,548,538,551,546,536,551,549,543,547,553,542,544,553,551,505,494,494,504,501,516,498,498,494,501,430,443,451,419,445,455,439,493,491,501,486,487,532,531,545,523,528,530,531,530,534,530,543,488,476,468,481,470,483,484,484,474,478,483,538,545,548,563,485,494,491,497,501,492,518,482,495,493,490,485,578,563,572,551,478,469,459,478,476,457,471,478,465,474,475,470,472,471,478,483,470,472,523,520,522,518,514,526,527,528,523,540,521,519,525,521,525,526,525,517,518,513,513,509,522,532,528,559,558,570,548,569,572,561,554,560,580,572,563,560,566,562,516,520,520,523,521,519,523,526,520,569,573,593,581,576,586,571,578,539,514,508,497,522,522,512,507,539,515,444,466,448,450,445,465,453,559,553,548,552,548,554,541,555,542,548,549,551,551,553,556,554,544,553,541,551,511,510,508,485,483,476,485,482,483,481,484,490,482,471,476,474,478,473,478,468,472,475,481,504,510,496,507,499,498,498,497,496,496,502,496,509,560,565,557,563,565,576,561,566,557,550,557,548,552,551,548,559,549,543,493,517,517,500,523,485,488,489,477,483,486,489,481,486,466,468,462,460,468,476,471,423,423,438,439,429,430,440,497,505,502,554,558,553,512,518,520,519,519,526,518,529,529,510,523,518,509,522,492,498,493,495,490,491,488,501,490,483,470,471,470,474,471,466,470,471,466,480,472,474,473,482,484,488,480,503,512,514,518,520,512,509,516,507,519,572,584,581,577,574,584,571,577,527,538,515,523,528,527,521,525,525,593,595,590,582,596,585,583,584,592,589,588,588,574,601,594,559,551,543,549,544,554,548,548,551,548,527,522,504,487,504,500,499,487,497,492,497,491,497,494,489,587,593,606,589,524,514,517,525,512,511,537,544,547,549,552,547,547,553,541,539,548,546,544,548,552,544,542,544,548,525,529,519,520,522,525,520,525,513,528,527,552,546,552,536,549,546,541,501,501,502,499,516,527,524,516,531,516,531,525,538,537,528,525,537,528,526,522,525,535,528,532,531,530,528,573,560,571,567,566,565,569,561,559,561,539,544,548,541,534,480,471,469,475,480,449,460,463,454,461,449,445,574,575,568,560,587,577,568,572,570,541,536,531,540,540,539,540,536,532,529,537,538,535,532,522,530,515,526,526,521,522,537,530,532,542,533,534,535,537,527,526,526,519,519,517,518,522,520,560,553,559,551,545,553,541,558,552,549,550,549,554,549,544,548,551,548,546,542,543,543,552,547,538,547,548,542,506,483,490,489,483,488,502,485,491,492,491,494,426,445,431,441,430,436,442,490,484,493,497,497,486,481,493,495,490,481,492,495,504,492,500,550,550,558,544,545,552,554,555,547,509,507,508,502,510,508,506,510,506,503,502,508,485,479,484,484,490,481,482,469,484,479,493,473,477,475,475,473,474,467,469,474,476,474,507,502,507,509,500,503,501,548,545,534,541,534,541,537,538,554,568,583,565,569,572,568,574,572,572,569,534,511,517,510,516,537,502,518,513,518,522,511,519,517,510,451,460,460,453,458,464,453,464,462,456,462,455,472,480,468,462,485,472,463,480,478,461,478,464,471,566,576,572,580,562,562,561,562,580,501,487,516,506,503,502,505,495,498,483,505,489,511,559,548,535,549,550,542,553,545,508,499,510,505,507,500,512,531,533,533,531,532,529,536,533,527,533,528,532,560,545,555,558,564,563,553,558,571,567,563,481,494,493,481,475,486,477,486,471,473,547,570,558,558,559,563,485,505,489,486,474,476,480,480,485,476,461,462,484,471,474,467,591,590,593,592,593,596,589,596,537,532,538,547,545,553,545,559,529,545,538,539,544,540,538,544,490,493,486,473,480,482,471,478,484,497,484,488,490,487,491,489,480,488,527,522,512,520,519,528,520,520,523,521,523,551,546,560,551,553,520,523,524,521,523,526,527,549,552,546,544,550,491,497,499,498,497,498,511,519,506,511,516,516,508,508,542,545,543,544,540,547,544,545,542,550,541,541,533,525,523,528,529,528,524,526,530,520,526,529,538,548,550,542,541,548,544,508,493,493,487,484,481,499,496,498,445,436,437,445,439,440,429,433,440,442,490,481,489,494,487,491,492,492,494,495,548,553,556,559,553,558,555,497,510,507,503,504,502,497,519,504,521,484,483,487,488,489,486,485,490,489,481,476,468,475,475,475,492,504,504,499,507,506,507,499,503,504,556,556,556,558,567,558,549,564,567,557,560,563,562,561,558,518,527,518,482,498,492,501,504,497,485,491,499,572,577,574,547,549,568,505,518,521,507,520,519,515,518,516,518,527,494,487,496,497,493,500,513,503,508,507,504,509,511,503,512,503,547,541,542,547,545,549,551,539,550,551,546,544,492,494,488,483,493,489,491,490,500,492,494,498,495,489,549,548,560,551,545,558,552,544,511,524,523,526,513,526,524,523,522,520,518,521,520,517,525,522,517,511,555,573,573,565,564,564,549,571,530,525,524,518,525,527,523,552,545,550,547,550,550,549,545,550,550,556,553,555,543,551,505,507,499,511,505,522,509,518,497,507,509,510,513,485,476,477,482,476,483,478,481,469,487,478,484,488,485,483,476,481,482,483,484,483,486,486,483,481,481,494,482,488,463,445,459,467,453,454,455,499,475,573,566,562,564,560,560,559,560,505,521,467,444,446,471,463,459,467,472,462,461,466,449,453,510,503,492,507,533,553,542,548,550,552,549,553,536,545,543,549,558,539,548,542,560,553,491,503,486,498,508,512,501,508,490,470,466,467,445,439,455,447,445,450,438,453,439,446,442,540,545,561,557,552,540,544,550,542,546,550,545,552,516,514,514,517,513,513,517,511,517,532,535,529,539,519,523,526,523,528,535,583,577,587,585,559,521,547,528,519,493,518,500,538,525,561,537,513,465,556,562,564,556,570,544,496,494,494,500,501,483,487,480,486,495,476,487,486,573,580,579,574,578,582,583,571,586,564,537,531,546,537,540,526,521,524,523,514,518,522,525,522,526,517,524,566,557,558,562,501,513,501,496,504,495,514,505,496,573,582,582,579,578,582,582,578,589,597,590,547,550,561,543,546,554,495,494,492,512,515,537,543,542,546,531,544,551,481,482,477,479,514,503,509,518,503,512,550,547,545,545,546,545,484,495,500,494,497,482,488,488,475,479,482,474,477,485,485,484,492,479,564,572,567,558,550,561,496,492,495,507,495,486,467,457,475,473,479,459,464,486,470,481,466,567,556,566,570,563,560,562,550,558,559,558,561,503,500,496,505,501,496,487,497,500,491,492,502,502,498,445,454,465,455,446,460,450,442,449,449,464,453,451,449,550,560,547,557,554,542,549,543,555,539,541,556,562,547,548,491,481,490,493,493,488,492,496,565,564,565,574,568,493,491,497,501,495,499,504,497,493,460,470,476,560,552,564,563,554,552,550,560,544,544,543,549,550,554,540,549,557,558,555,540,556,551,549,510,511,508,504,518,507,505,560,555,549,569,556,560,571,523,520,518,520,521,519,510,524,520,524,532,525,534,533,531,527,528,560,550,552,528,522,521,509,514,513,525,521,527,529,539,530,513,519,508,523,483,483,487,559,556,564,550,508,499,503,518,499,485,491,500,490,468,464,468,465,464,465,470,463,465,468,477,471,463,459,447,456,454,462,456,456,450,553,549,544,571,546,534,553,556,561,525,519,516,514,521,521,522,516,516,524,507,522,512,515,539,527,532,531,529,527,532,513,512,513,517,522,512,518,517,513,540,538,546,544,539,550,545,553,546,547,542,572,577,569,574,579,574,565,567,576,576,511,512,520,531,513,515,517,520,527,532,526,514,509,488,495,500,487,495,496,495,487,495,517,505,501,500,499,506,502,495,510,535,535,527,502,498,489,494,483,506,490,509,493,504,564,559,572,549,561,563,551,522,530,525,522,532,517,541,536,539,545,538,547,531,541,541,539,542,551,541,538,495,499,492,496,486,484,487,495,506,498,491,546,565,563,564,563,568,560,553,559,529,539,529,524,541,525,538,538,542,537,537,495,500,489,486,493,488,474,479,470,478,469,475,470,472,477,453,468,459,475,470,475,543,543,551,554,561,556,537,543,539,554,545,475,480,468,480,483,476,478,472,479,475,467,498,506,496,505,493,512,496,503,496,496,500,544,545,546,549,541,546,547,551,489,492,490,486,501,497,497,495,505,500,506,489,501,493,496,494,509,507,495,497,566,558,554,547,560,557,552,564,561,550,555,562,530,532,533,530,536,532,524,526,528,529,527,529,525,526,524,532,525,525,529,528,527,540,542,537,537,542,531,530,530,529,536,533,526,531,530,531,553,550,558,559,563,553,550,561,557,555,497,505,512,510,506,501,509,516,519,507,504,509,506,497,453,453,459,463,461,453,454,451,453,455,460,465,462,449,460,446,450,445,456,452,456,541,532,534,540,529,526,522,523,526,522,529,530,527,524,529,534,530,540,550,535,543,543,542,567,557,560,555,560,548,558,553,559,529,530,526,517,533,523,527,505,499,503,500,508,498,500,506,478,482,485,480,483,480,479,480,473,479,481,477,481,474,480,482,487,455,439,456,452,431,446,451,447,462,456,455,458,455,438,546,550,559,552,552,549,542,547,546,546,559,567,551,561,555,564,551,561,553,549,522,532,533,519,537,454,458,446,450,449,447,454,455,444,456,525,533,522,515,520,553,537,547,545,545,550,548,549,544,540,537,539,549,542,549,549,561,545,556,552,549,552,552,549,545,561,551,502,512,514,514,514,519,521,521,485,475,487,498,483,494,488,493,491,488,491,485,488,487,491,491,471,474,478,476,477,476,471,482,478,472,465,466,466,461,468,449,463,458,508,504,506,505,504,512,512,513,512,505,561,549,563,561,566,560,566,560,556,557,556,557,564,559,510,508,504,504,507,512,448,451,452,459,453,457,455,469,466,467,466,469,462,586,597,605,531,541,538,533,541,541,541,537,539,542,533,541,564,555,561,554,560,556,560,554,558,564,570,558,566,564,538,532,540,530,555,556,557,558,565,560,553,563,557,558,564,561,562,528,516,512,519,530,520,519,507,504,500,501,504,505,506,504,499,499,506,499,493,475,485,487,478,481,459,452,448,453,455,451,442,452,452,487,468,469,470,468,468,472,465,462,467,462,475,476,581,569,575,573,568,574,570,584,573,594,575,557,548,544,542,550,550,550,552,542,543,539,505,499,490,508,501,508,496,497,491,496,483,492,487,491,495,492,494,492,491,496,483,481,480,476,486,475,478,473,480,478,469,479,443,443,445,434,448,443,539,535,536,543,549,566,550,549,551,549,541,551,489,490,497,491,494,494,484,495,505,496,436,445,440,447,444,538,535,545,540,537,546,528,539,536,532,532,540,531,544,545,545,547,553,550,553,544,543,548,543,550,553,549,499,484,490,500,491,501,430,436,446,442,427,444,438,446,431,431,452,428,437,516,529,513,526,533,536,531,533,537,535,536,529,529,532,533,533,532,549,542,481,485,486,474,489,484,485,471,485,477,478,469,476,537,536,535,540,534,534,534,533,543,533,545,540,543,545,548,543,557,545,527,522,521,527,519,524,522,516,518,522,522,523,539,549,551,542,558,544,539,548,552,548,514,532,531,531,523,528,556,565,561,522,505,516,515,510,516,475,486,475,481,493,485,473,471,461,463,467,465,462,459,462,464,457,471,457,467,473,473,476,471,470,468,472,490,497,489,488,489,490,495,492,498,493,494,490,467,467,472,473,469,471,478,477,467,467,466,465,464,466,464,469,473,471,462,466,479,470,463,473,474,480,459,466,460,462,465,540,545,548,532,552,539,548,544,534,557,557,519,520,503,514,515,518,514,517,516,515,512,522,502,563,569,571,574,579,564,576,575,564,574,579,524,524,519,530,515,536,534,513,533,522,525,520,535,519,520,524,482,479,482,477,478,482,478,483,486,483,482,487,476,510,499,496,496,500,503,509,509,498,505,505,500,498,553,561,547,506,499,505,503,506,506,507,503,515,507,532,540,548,530,543,536,534,546,544,541,549,542,539,543,545,553,560,552,563,552,552,563,549,557,553,562,555,559,555,557,557 0 233.909891 0 0 0 diff --git a/test/rna004.slow5.exp b/test/rna004.slow5.exp old mode 100644 new mode 100755 index 79a9b1e..483925d --- a/test/rna004.slow5.exp +++ b/test/rna004.slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO004RA +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna004 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 2048 -298.95198 299.432068 4000 50368 737,798,704,819,691,722,748,767,674,714,708,761,661,716,713,697,697,693,724,761,731,775,762,792,746,769,741,741,673,724,736,737,1018,1037,1036,1047,979,1039,1009,1014,1022,1028,1058,1064,1023,1068,1100,1003,1049,1039,984,1036,1039,1031,1041,1064,1041,1031,1041,1083,1035,1007,1043,1009,1045,975,997,1044,1003,1027,1062,1008,981,998,1024,1026,1003,1023,1032,1009,1010,1038,1051,1001,1006,1036,962,1036,991,988,1039,938,918,936,901,914,941,946,978,931,983,976,905,962,894,931,948,902,908,948,937,926,910,950,921,930,921,973,908,856,856,825,856,860,830,825,886,831,855,830,882,835,887,837,875,826,828,855,868,824,845,835,843,898,829,821,838,868,828,845,825,1063,1068,1060,1071,1038,1020,1045,1049,1041,1080,1039,1041,1021,1033,1001,996,1042,1026,1048,1009,1032,1032,1079,1012,1018,1039,1058,1040,1069,999,1046,1043,983,1005,995,1000,993,965,973,952,983,985,975,968,991,985,949,981,1014,990,981,999,943,950,987,983,996,958,976,989,980,912,897,902,873,872,873,943,898,917,923,948,923,939,941,946,919,877,915,887,907,922,932,915,881,894,919,894,938,883,958,923,896,888,821,851,839,837,816,857,795,802,826,868,823,849,824,860,885,822,822,850,821,874,822,811,866,822,860,862,824,825,835,806,766,843,782,778,803,782,827,820,787,822,848,771,732,806,798,819,771,803,844,768,776,782,759,725,813,803,779,793,817,808,724,811,793,1026,1080,1060,1034,1010,1029,1077,983,1028,1051,1055,1019,1035,1039,1046,1034,1052,1031,1036,1021,1038,1047,1063,1058,1062,1061,1048,1043,1043,1049,1021,1058,1035,1009,985,1013,978,1001,972,949,951,994,988,1007,934,927,988,927,964,982,977,963,965,963,1026,960,993,987,954,974,908,870,927,789,892,844,933,846,948,946,922,902,870,832,900,994,956,840,901,1026,858,928,912,826,1092,1100,1115,1082,1104,1099,1144,1098,1072,1091,1104,1084,1107,1111,1141,1153,1093,1143,1081,1142,1110,1087,1106,1137,1070,1145,1091,1108,1102,1076,1037,1018,1050,992,1113,1061,1063,1035,1115,1080,1038,1090,1123,1042,1076,1044,1097,1062,1012,1036,1045,1045,1044,1040,1052,1030,1058,1031,1052,1057,1022,1040,1029,1020,1045,1083,1010,1051,1049,1041,1085,1022,1000,1056,1043,1032,1067,965,1009,1031,1013,1037,1042,1016,985,1019,1058,991,1066,1056,995,932,936,916,908,926,942,907,913,887,915,957,916,922,972,917,940,877,906,967,966,936,922,918,961,905,916,892,932,929,911,942,930,902,895,943,911,955,837,835,842,849,875,856,851,852,869,865,877,835,849,871,848,859,875,850,851,829,868,827,856,845,838,847,843,838,861,851,874,864,858,841,888,1093,1081,1134,1134,1058,1127,1117,1152,1146,1081,1067,1094,1083,1095,1093,1155,1123,1094,1111,1112,1088,1131,1061,1024,1074,1036,1093,1089,1048,1087,1147,1079,1175,1133,1110,1024,1020,1052,1031,1028,1052,1029,1050,1044,1032,1003,1048,1035,1069,1028,1009,1038,1061,1066,1017,1034,1049,1071,1043,988,980,994,1011,950,984,952,1028,978,962,997,995,986,1001,998,970,1010,934,957,1018,971,964,966,945,969,960,968,996,933,964,963,980,920,972,965,1011,985,954,933,954,955,948,1022,999,1013,974,946,991,1054,1004,1014,983,947,951,964,1020,972,979,935,1003,993,850,861,872,875,833,805,843,843,852,872,866,880,886,837,854,891,874,864,873,846,876,856,840,925,894,873,893,858,862,880,888,882,887,858,918,866,869,829,852,849,860,925,894,851,863,790,856,898,867,887,883,836,875,865,858,878,861,882,931,839,863,834,861,876,878,831,852,823,850,819,825,831,825,810,838,838,862,817,795,833,838,831,826,854,841,867,811,853,793,825,820,865,804,814,849,887,910,843,856,832,814,821,790,798,811,825,761,829,779,819,766,785,786,795,809,801,812,785,817,780,814,817,810,814,822,804,795,801,794,793,798,801,803,804,772,791,758,777,789,782,767,785,775,802,744,761,803,740,790,790,808,778,834,769,785,750,789,780,798,761,717,744,770,778,753,1004,979,1013,1029,1003,1038,1016,986,986,988,1025,959,994,990,1013,998,990,992,961,993,1026,996,1013,1040,1053,982,915,962,981,1054,961,945,864,878,857,863,866,846,846,873,871,836,860,843,867,882,850,870,841,818,884,863,808,849,823,884,864,847,883,868,907,924,861,818,811,858,884,884,814,853,828,808,863,810,876,831,827,866,848,901,784,788,800,853,811,811,774,801,782,766,857,791,926,1016,1035,1035,1043,1035,1012,1021,1016,1053,1051,972,997,997,1004,1044,989,1039,1018,1047,1005,1044,1000,1029,1032,989,1027,991,1062,1025,1000,1029,1027,930,1013,913,909,1007,1042,977,1014,935,1009,1006,1120,949,976,977,1014,1015,1010,972,927,1032,982,1036,1023,1018,982,1001,934,1176,1156,1118,1119,1118,1103,1137,1178,1117,1169,1097,1167,1155,1088,1116,1171,1134,1150,1131,1139,1110,1121,1163,1137,1134,1122,1130,1129,1155,1124,1131,1121,1109,1123,1161,1115,1100,1146,1087,1133,1134,1120,1090,1081,1059,1092,1073,1096,1119,1123,1107,1083,1120,1073,1085,1132,1127,1112,1138,1013,999,1044,1009,1050,1031,1019,990,987,1035,1047,1015,1031,1025,1014,982,1011,1048,1035,1043,1044,1056,1022,1009,1044,1023,1026,1069,1046,1018,869,847,916,902,868,867,890,934,852,885,882,866,953,873,881,882,831,877,892,863,903,846,918,924,906,904,865,908,878,881,920,839,926,939,893,778,810,793,795,787,762,773,759,799,786,826,798,784,799,776,821,789,802,804,806,793,791,805,785,822,787,806,782,752,771,776,743,736,734,716,747,773,736,749,752,747,737,764,740,769,761,745,754,736,756,734,743,741,752,762,769,734,788,773,744,797,770,769,766,741,752,785,779,760,792,786,758,775,792,782,799,790,773,753,781,774,778,764,755,781,781,787,809,773,807,764,771,787,757,788,779,802,774,782,766,769,767,766,767,787,794,794,792,810,771,771,764,754,762,785,766,777,799,783,805,777,777,759,747,756,759,761,761,755,790,745,746,780,754,717,738,742,761,766,750,779,753,771,760,759,754,746,757,760,795,744,772,694,725,689,674,758,731,754,694,733,746,741,725,737,761,747,742,752,720,748,711,750,729,721,717,723,700,728,726,733,708,753,708,686,701,697,666,715,725,683,688,737,687,711,683,705,691,700,699,743,700,687,724,717,727,722,719,756,693,700,684,705,726,704,695,761,701,691,667,698,678,687,650,685,742,743,754,739,674,702,682,732,750,703,743,752,711,715,706,768,726,761,754,747,735,746,698,766,742,902,990,982,911,1004,875,953,879,974,977,904,917,989,900,924,948,941,928,959,943,1005,906,923,873,881,875,940,876,923,908,785,773,785,801,825,821,788,773,796,797,819,805,797,783,781,797,759,809,783,801,795,817,816,766,836,764,802,787,772,747,756,742,774,744,806,761,768,783,799,743,757,831,770,778,773,774,759,809,763,785,766,810,789,760,751,733,741,777,748,740,802,865,838,872,857,836,826,849,791,860,833,859,880,826,842,829,820,810,831,841,855,877,860,857,833,843,848,846,837,862,838,861,829,843,866,783,812,831,810,817,832,835,824,822,792,798,803,855,736,820,844,821,782,789,826,800,825,803,802,818,807,861,821,796,766,943,1031,1000,966,992,1011,986,987,1018,948,980,996,989,957,973,991,974,977,990,1029,995,966,1005,983,996,1010,898,866,861,911,879,891,909,900,905,907,877,916,892,882,895,877,911,887,899,896,892,871,913,936,905,882,883,907,904,931,913,917,918,904,882,830,851,809,869,832,844,849,845,845,844,851,841,850,838,840,817,835,834,840,857,879,823,829,822,823,818,854,873,838,813,847,830,893,908,888,923,895,893,901,878,870,865,888,868,842,887,904,810,892,907,918,847,890,893,878,872,902,876,868,868,890,882,906,893,881,861,794,857,838,887,868,858,823,816,836,868,851,872,857,870,849,859,883,862,854,859,873,869,836,796,834,799,841,801,816,841,812,804,810,818,826,847,818,815,828,812,837,810,818,809,854,825,850,842,827,828,820,819,814,1024,1002,987,1050,989,966,993,1012,1004,982,982,1054,1010,1006,994,1017,987,1023,990,1045,1023,1026,1032,1013,1017,1031,994,1002,1057,1011,1050,1104,1034,1007,970,1010,1013,1049,983,1003,967,1036,987,1065,1000,982,973,1025,1057,1019,1051,1019,992,978,1040,1008,994,988,1050,1029,1022,994,940,915,932,906,931,949,944,893,940,925,930,897,936,937,967,925,953,940,946,920,969,905,968,944,956,919,906,901,950,901,964,898,937,826,846,824,828,803,839,809,860,842,860,853,833,813,868,833,840,824,834,840,835,810,823,825,1038,1058,1023,1074,1025,1094,982,1069,984,974,1094,962,1006,1052,1089,1069,1007,1014,934,1043,981,1019,1019,980,1014,1084,1114,1078,1038,1054,1049,1169,1015,1001,993,1026,1131,1081,1022,1111,1010,1014,967,1022,1035,1084,1021,1078,1047,1082,1078,1050,1074,966,864,858,878,855,829,865,867,884,827,843,851,878,831,831,874,834,876,912,871,874,893,879,848,843,843,856,856,833,829,817,822,815,813,811,814,817,841,833,854,818,841,828,836,826,841,827,824,835,829,845,840,828,837,837,791,836,819,924,918,926,926,920,859,908,842,864,873,938,966,899,907,925,922,884,898,880,906,951,918,853,901,862,940,877,843,893,866,877,875,882,858,856,853,869,896,834,847,877,893,853,861,883,898,865,854,836,901,852,868,863,881,853,889,883,892,859,851,839,852,853,870,846,897,844,849,849,848,845,850,793,828,803,888,808,872,846,861,877,834,855,829,867,787,856,855,838,845,858,819,836,809,844,817,837,805,827,817,842,862,837,829,823,827,849,844,843,845,841,869,806,864,817,847,840,839,836,874,808,756,783,779,820,785,807,782,799,788,778,786,776,773,815,769,803,765,796,824,752,800,789,769,784,767,775,794,751,827,787,749,774,778,727,747,765,787,747,766,775,759,783,764,746,751,742,793,819,768,790,744,745,763,742,787,769,756,772,736,725,718,790,707,818,780,988,1001,1003,966,981,981,956,975,1027,973,1019,963,974,984,955,992,967,996,1016,996,1022,1026,999,981,962,1004,998,992,978,979,987,944,867,909,939,897,937,930,940,888,914,909,936,955,916,913,876,946,909,875,929,903,927,886,919,924,913,885,904,901,890,924,916,940,953,935,878,899,874,858,910,861,852,869,853,900,893,890,859,865,854,874,884,876,909,845,874,907,878,879,882,864,865,815,827,821,839,783,823,847,825,768,823,817,838,800,822,811,845,803,828,823,793,814,792,792,818,803,796,830,838,782,810,804,819,878,910,890,891,924,882,915,904,869,857,877,885,898,889,856,875,866,856,895,895,897,928,872,886,893,930,915,865,876,849,878,885,877,859,897,841,868,879,868,898,851,848,880,904,878,870,871,881,920,902,890,890,909,914,908,899,926,896,903,899,836,830,821,855,791,856,851,804,840,833,849,833,826,839,830,841,814,807,828,847,856,851,835,845,838,813,821,798,834,802,782,788,785,768,799,797,784,807,777,794,785,814,738,783,826,803,782,761,789,774,782,810,811,797,801,772,752,793,786,810,835,803,805,811,775,784,789,815,805,814,830,811,772,805,757,797,803,775,774,808,808,809,797,790,794,765,777,810,803,962,915,926,937,896,924,904,860,951,895,897,927,940,948,895,908,873,886,900,879,893,875,939,901,923,878,928,905,900,914,945,933,886,923,849,849,809,823,845,808,844,797,849,862,862,783,842,865,815,834,827,789,827,802,864,845,893,834,784,803,827,778,885,950,941,925,973,972,984,912,972,880,907,941,908,955,918,964,948,939,970,962,923,946,937,923,1035,985,944,943,954,980,916,1007,1045,1013,1006,1041,1006,988,1041,1035,994,1000,1021,975,990,985,952,1017,978,983,1007,1015,1030,1024,989,1012,1002,1037,987,999,1011,973,1010,971,1003,973,991,1015,977,1039,982,980,990,1005,957,980,988,994,975,991,1033,999,983,985,1013,1008,980,971,970,1004,998,971,1076,1103,1087,1100,1045,1132,1095,1111,1104,1115,1065,1051,1090,1106,1081,1088,1080,1096,1067,1072,1128,1140,1084,1044,1083,1067,1124,1056,1066,1077,1057,1030,1059,1081,1055,1027,1087,1065,1059,1033,1037,1099,1036,1049,1119,1112,1086,1057,1079,1047,1078,1024,1019,1068,1100,1078,1064,1045,1068,1073,1094,1091,973,1001,1003,1010,1053,1021,995,1004,981,1014,1046,1014,1060,1007,1047,1044,1012,1017,1021,1040,1046,1011,1028,988,935,1029,1023,1010,972,1018,972,989,959,903,946,972,894,954,983,1012,926,924,935,964,993,982,947,935,974,964,978,968,937,927,943,951,927,962,949,1083,997,1086,1070,1051,1045,1094,1058,1043,1036,1072,1082,1061,1102,1056,1090,1010,1019,1082,1041,1080,1076,1047,1065,1064,1054,1052,1041,1043,1051,1055,1070,1029,1076,1109,1065,1026,1054,1043,1066,1018,1074,999,1013,973,1040,1060,1105,1076,1036,1027,1023,1026,1002,1039,1062,1037,1013,1027,993,1053,972,1095,1018,1071,1053,881,885,931,884,873,939,924,911,945,900,888,926,918,893,891,891,911,888,853,883,859,867,885,944,927,925,903,938,911,973,933,960,908,1056,999,1011,1068,995,1033,998,1019,1006,1040,1076,1074,1009,1016,1050,1031,987,981,1006,979,1023,1073,1095,981,999,1005,1033,978,994,978,990,981,947,951,970,997,986,969,1034,988,1003,988,1008,1022,993,1015,930,1001,1022,1027,986,1017,972,981,957,993,988,1011,1018,1025,932,1021,968,963,899,1034,983,972,945,968,1034,978,1025,1039,955,961,1080,1028,939,981,956,985,1029,994,1019,865,839,842,841,858,846,850,839,806,867,805,831,823,845,848,841,810,823,809,840,821,881,825,868,841,839,825,843,808,821,827,832,825,843,839,864,829,849,842,773,768,758,784,780,783,777,769,777,774,769,785,769,786,750,755,773,757,778,782,746,782,776,795,797,749,804,763,778,844,739,723,776,838,711,791,742,726,825,756,791,700,763,847,773,728,863,769,781,770,816,769,743,767,750,739,794,718,959,980,944,954,922,972,989,969,982,968,1002,990,983,971,958,955,959,934,914,965,987,1005,975,933,974,976,985,964,966,996,1000,952,1001,989,970,958,858,873,840,854,807,859,834,814,862,854,867,812,811,832,853,838,852,850,846,843,868,870,823,863,815,797,846,864,870,827,825,882,938,951,826,824,891,848,834,873,881,899,952,876,857,839,845,831,899,812,823,838,876,801,900,931,851,891,822,860,870,818,861,853,787,802,756,802,841,815,773,801,843,871,833,767,826,800,834,836,814,791,816,794,829,805,797,833,790,813,822,794,791,854,777,995,991,1043,1007,1004,990,1026,1029,1004,1058,1000,996,1046,977,1001,1017,1008,1019,1010,984,1065,987,1017,969,1040,1031,960,1057,979,993,963,996,948,1004,986,964,991,972,974,987,952,1027,971,998,969,1017,944,987,960,977,964,1010,952,1020,996,971,955,972,985,958,1106,1064,1126,1156,1075,1114,1083,1089,1102,1084,1115,1092,1086,1048,1122,1135,1098,1120,1082,1052,1102,1121,1085,1029,1088,1083,1103,1078,1113,1106,1089,1049,1078,1064,995,1048,1055,1060,1083,1031,1067,1053,1054,1040,1048,1072,1062,1016,1026,1044,1062,1084,1057,1049,1037,1117,1028,1069,1025,1072,1079,997,1020,979,980,986,950,1004,958,1014,1005,1012,982,1013,1044,989,987,977,962,1016,1018,989,992,999,1004,970,1001,959,999,967,1016,1043,991,1003,966,1033,1034,1049,1052,986,1031,1045,1054,1022,1001,971,1013,990,1008,1008,1063,1005,978,999,986,1032,1030,1005,1013,987,1002,1010,1057,1017,996,1042,1037,980,981,994,1017,1016,991,964,978,989,1001,1031,1015,1008,1023,986,978,1029,1034,1000,968,1031,977,1024,1027,983,971,1011,1009,1012,1002,999,1008,1009,1005,1019,978,978,969,982,1053,991,1048,986,982,970,979,987,1012,973,1041,910,982,1026,1034,938,986,936,927,972,1032,992,1033,980,972,1030,1021,955,928,1059,986,939,970,1013,1007,985,952,1046,999,1019,984,934,1054,993,988,1021,1011,938,972,1037,957,967,988,996,1029,1013,988,985,884,854,859,886,823,859,853,884,890,882,851,917,869,888,821,873,883,855,855,836,881,820,872,842,859,899,867,852,859,850,887,851,878,862,839,941,943,946,977,930,1072,874,879,938,898,854,973,839,974,878,904,990,869,941,980,1006,904,959,1044,923,930,887,961,1033,1048,1023,1015,1020,1019,1026,1035,1087,1017,1037,1041,1017,1014,1044,1049,1057,1059,1006,1056,1055,1075,1004,1057,1049,992,1037,1089,1038,1007,1006,994,939,1029,964,1034,1037,1069,1027,1079,1008,1069,1058,973,910,953,1018,990,1070,930,1043,1030,1026,996,992,1034,1008,1085,1009,960,1012,1044,881,1085,930,862,832,832,875,807,874,806,806,854,840,851,818,804,858,837,836,861,829,859,913,793,775,807,834,830,825,821,893,847,818,849,857,775,850,753,828,796,807,794,758,855,779,787,708,820,822,814,839,762,807,795,708,824,794,748,908,774,861,736,756,795,866,805,835,749,1078,1096,1088,1064,1035,1058,1058,1166,1128,1100,1085,1121,1034,1107,1037,1107,1074,1124,1104,1118,1065,1052,1057,1139,1089,1082,1142,1087,1100,1104,949,937,890,928,935,922,920,888,960,954,936,896,950,909,876,909,945,913,929,936,895,931,895,888,940,910,904,944,898,919,922,959,956,994,930,924,907,923,916,940,926,899,814,871,954,1014,948,925,917,994,1017,925,955,978,930,982,920,932,934,931,926,953,861,968,1039,1039,1059,983,995,1066,1017,995,979,1028,1048,1032,991,1090,1067,1029,1045,1023,1019,1046,1054,1066,1022,1062,1062,996,1036,997,1006,995,1037,1002,965,965,972,973,983,947,1019,996,1012,1012,1018,1018,995,977,1069,1049,1039,1030,1012,947,963,987,976,1048,1021,1048,1042,960,1011,1033,1001,1049,1000,1001,1042,983,1018,1009,1008,1025,1014,987,1034,984,1000,1025,1082,1026,983,1023,998,1023,1033,1002,1049,1056,1035,990,1027,1048,1030,979,981,1015,1001,946,1022,984,1089,996,1019,975,964,1009,968,969,965,1037,998,1022,1017,979,1054,972,972,974,941,984,985,961,990,979,1030,997,987,1020,1024,1050,992,976,1021,1072,1001,1029,947,1023,962,1005,1015,977,989,935,1010,1040,992,1031,935,1000,1029,987,966,982,986,1049,981,996,985,1015,999,985,988,999,1043,1013,1064,1009,1049,974,1031,1034,996,1029,1034,991,1050,1016,998,1000,948,1033,995,980,1056,1027,1028,1053,1065,1022,1009,975,1044,1034,1069,1014,1021,984,966,1118,1005,1010,1059,1007,999,1032,1013,1019,1022,1016,983,1076,1035,1020,1009,1057,1039,1105,990,1045,1036,1016,988,982,837,791,836,844,855,846,772,850,880,852,911,833,807,853,838,898,925,938,821,835,890,920,839,855,792,781,881,865,907,893,709,689,760,711,732,780,698,714,751,761,735,775,688,769,752,668,728,731,784,808,708,714,763,717,748,732,674,719,745,701,713,677,734,779,754,971,942,941,969,967,973,991,983,957,968,933,956,931,1005,987,967,962,994,956,919,970,926,993,914,947,913,912,963,953,955,953,939,905,940,988,1000,1044,1018,1020,1008,1052,947,1084,1044,1026,951,1034,1068,1020,1023,970,1063,1022,1010,1009,1038,1012,980,1055,1044,1006,1050,1041,1026,949,994,1032,1003,941,968,920,989,946,934,906,929,1022,975,998,977,904,940,960,1001,987,951,920,945,948,960,971,927,951,975,984,928,976,980,990,950,1006,973,907,941,862,972,956,986,958,959,954,973,916,939,882,931,986,958,1016,978,958,971,1006,908,985,956,993,925,920,968,933,959,972,977,864,913,1017,1044,1071,1004,1071,1033,1060,1072,1046,1043,994,1097,1026,1028,1084,1060,1030,1090,1041,1056,1008,1061,1070,1082,1026,1054,1092,1082,1076,1031,1040,1126,1048,1049,1102,1024,1064,1013,1040,1097,1039,1110,1039,1018,1028,968,1089,1099,1107,961,1044,1070,1066,988,1032,983,1102,1057,1013,1028,1016,1057,1066,1046,1077,1068,982,1055,1045,1045,1067,1011,974,1008,949,995,993,983,1041,968,1080,1029,976,980,1039,1035,1021,867,806,905,948,887,893,768,764,838,824,839,794,805,829,866,807,818,852,872,808,814,838,863,838,881,866,849,886,815,838,762,806,810,748,758,811,784,812,790,791,838,808,776,792,796,796,804,763,816,794,751,837,803,794,822,784,763,746,726,661,737,734,679,792,706,838,674,771,761,796,815,661,823,711,700,690,845,819,787,759,787,797,693,688,621,763,691,758,763,1126,1062,1046,1106,979,1070,1096,1087,1101,1074,1006,1031,1099,1093,1080,1046,1098,1037,1068,1101,978,1095,1091,1070,1113,1032,1057,1042,1080,1102,1055,1055,1072,1027,1065,1080,1060,1041,1046,1074,1054,1055,1052,1084,1089,1048,1031,1079,1038,991,1070,1097,1067,1128,1049,1063,1064,1043,1059,905,921,913,878,850,923,902,911,899,900,912,887,894,935,907,891,901,888,930,977,906,849,903,894,919,905,896,891,865,938,906,805,788,819,811,835,772,807,833,818,781,810,824,781,801,778,839,815,823,817,819,810,830,821,860,813,800,831,825,847,802,809,807,818,854,813,792,779,861,888,803,823,888,860,863,838,843,826,853,847,837,840,836,814,843,799,840,800,819,799,861,825,897,784,760,807,774,775,785,773,758,780,806,766,762,776,793,787,793,791,778,787,744,769,787,816,778,783,786,860,840,782,810,819,847,810,821,878,873,802,818,855,849,850,816,814,842,808,819,869,810,796,813,811,841,813,831,889,819,803,782,1021,975,972,1036,970,994,1001,954,946,1021,987,943,983,973,998,1010,950,997,980,941,982,986,982,1037,1067,1022,1010,862,892,842,838,897,864,894,867,910,866,854,899,864,835,904,896,876,838,845,876,923,875,873,859,882,885,860,891,858,863,884,902,941,884,876,903,874,844,907,844,844,887,873,869,890,895,853,887,879,885,853,911,862,850,850,814,905,915,820,856,800,867,809,881,841,792,816,862,854,804,868,847,848,840,840,874,805,851,881,861,865,826,848,875,859,866,843,808,782,789,782,783,810,794,762,765,793,789,806,798,802,776,760,779,775,769,808,798,783,786,769,812,812,787,781,742,795,801,823,732,820,721,816,804,825,784,786,784,791,777,803,782,740,810,811,809,839,798,800,787,835,796,787,804,798,807,798,1051,1062,1097,964,1056,1070,1083,1073,1011,1097,1000,1078,1119,1018,1096,1016,1040,1097,1035,1019,1005,979,1004,1069,1034,1057,1053,1084,1080,1067,1035,1021,929,940,957,935,964,913,930,948,957,910,969,932,898,892,901,959,928,943,947,961,909,919,1004,950,950,912,936,961,929,950,962,952,917,973,883,861,847,843,869,865,862,843,858,894,883,871,844,894,870,872,854,841,852,860,877,868,854,845,843,866,876,911,827,843,855,889,833,802,792,765,776,802,782,773,812,781,765,821,827,815,821,735,801,766,803,831,789,828,837,770,777,770,823,807,746,793,796,822,811,798,762,818,847,828,820,818,815,828,773,810,822,870,734,757,830,850,875,848,828,770,823,814,827,826,849,792,803,798,1009,1044,1023,1052,980,986,972,979,1010,1020,1036,1018,1020,1028,989,1021,1026,1003,997,983,1038,1029,1012,1012,992,967,1020,932,960,979,970,1039,995,982,970,1010,963,996,1006,1017,1009,971,1017,977,1023,1009,939,981,933,1015,1005,986,996,980,911,964,946,936,934,963,908,948,945,940,976,970,961,982,926,927,924,955,941,905,931,901,884,937,928,922,926,968,934,919,885,885,888,897,879,904,864,939,899,916,897,921,915,940,922,890,883,858,884,867,861,908,900,898,909,888,934,903,864,799,817,860,845,846,832,860,869,895,860,827,883,835,824,891,863,867,865,894,819,811,876,884,856,837,866,855,881,860,873,865,869,826,921,819,796,781,817,819,842,830,771,786,816,820,813,810,808,819,791,799,830,825,817,820,771,818,789,812,779,837,811,850,809,803,756,783,782,773,811,787,733,776,800,794,755,773,780,785,771,800,796,782,753,803,771,788,789,799,772,768,781,758,747,820,753,803,780,793,764,771,797,832,811,806,823,780,816,768,818,792,751,811,791,814,808,786,821,777,781,779,832,769,800,814,812,812,987,995,1010,968,1001,1000,992,1019,990,1030,1032,1021,979,975,998,993,1020,993,974,1011,1035,1028,994,973,1058,998,979,1013,1015,1030,995,1045,1018,899,949,989,970,984,1051,989,961,965,1012,992,1036,1026,985,966,970,1006,949,1015,936,1008,941,986,998,930,919,985,870,854,894,877,872,848,916,889,897,918,898,876,932,887,863,884,930,874,906,900,910,916,909,908,908,890,901,897,903,894,886,894,787,829,856,787,806,821,814,843,786,794,827,836,827,793,782,796,827,846,839,830,789,820,815,780,839,824,854,804,833,802,753,711,759,774,813,842,774,764,754,768,807,814,768,787,807,753,796,764,788,818,758,805,778,757,800,766,791,803,804,762,1006,984,970,974,981,954,886,926,912,899,1003,943,1009,921,989,927,929,929,949,921,963,899,981,937,994,974,951,957,972,952,986,1001,995,962,960,1002,1017,978,1001,1004,960,934,994,959,920,965,958,1014,995,970,912,969,973,1002,954,1020,960,975,988,960,1011,820,883,847,868,874,894,858,867,820,856,832,870,883,852,852,843,863,798,887,869,860,862,869,900,860,870,837,835,882,827,883,848,1040,1033,1018,1037,1043,1034,1031,977,970,1023,986,1051,1085,1000,1003,956,958,1010,1016,975,1067,984,1073,1027,1005,1093,1083,1065,1017,1038,1096,1094,1093,1006,1093,1071,1087,1104,1011,1110,1051,1059,1036,1084,1119,1082,1111,1045,1112,998,1123,1062,1086,1012,955,924,905,900,894,903,903,906,949,909,968,929,948,938,894,901,963,866,941,929,879,917,931,916,926,913,906,905,832,987,757,676,745,812,754,711,727,710,744,714,777,767,796,726,759,801,755,773,798,722,791,753,726,795,804,788,811,755,789,733,735,851,730,888,834,716,897,755,778,719,748,846,793,874,761,799,814,725,818,830,861,748,650,774,676,773,740,794,749,831,771,851,1098,1157,1147,1086,1072,1103,1105,1093,1112,1087,1116,1134,1116,1145,1122,1095,1092,1116,1118,1097,1086,1103,1147,1119,1149,1101,1109,1102,1100,1098,1130,1092,1141,1073,1037,1097,1092,1097,1102,1074,1091,1108,1058,1095,1080,1063,1107,1105,1046,1050,1030,1117,1037,1128,1047,1075,1102,1066,1063,1036,1048,1072,1022,1004,1084,996,887,966,960,998,986,1011,986,999,937,1005,1040,1004,1028,920,1040,949,949,949,1027,1024,982,1056,969,916,1045,1050,1045,1016,1032,1038,1022,1075,739,746,743,770,764,776,774,740,770,755,723,740,764,746,725,775,784,747,753,802,773,763,769,736,769,717,753,749,750,755,781,735,745,785,769,755,686,769,819,776,923,800,729,740,796,850,775,793,868,706,957,857,841,843,786,801,778,775,833,866,899,782,645,744,791,683,795,779,1139,1128,1123,1119,1118,1084,1102,1096,1103,1126,1118,1084,1082,1078,1114,1092,1141,1146,1151,1124,1124,1121,1120,1092,1126,1106,1107,1139,1124,1091,1170,1141,1103,1112,1049,1128,1103,1091,1076,1046,1059,1165,1049,1067,1127,1099,1066,1088,1126,1086,1163,1113,1115,1088,1116,1080,1088,1066,1018,1059,991,1046,963,997,971,1001,1041,1005,1021,1000,935,990,1074,1037,1040,992,942,969,1043,961,1007,981,1041,1006,1025,1032,1049,1018,969,1014,956,964,959,994,757,811,758,773,786,740,731,762,789,836,748,741,874,778,843,773,765,834,838,759,766,771,805,731,774,774,764,876,787,722,688,715,702,712,704,713,663,685,687,681,741,712,703,665,700,691,663,725,726,702,624,720,668,683,682,718,678,672,666,699,678,702,665,679,711,691,666,683,727,698,672,647,708,672,716,673,652,697,699,718,665,706,672,694,668,699,711,706,717,732,723,755,698,717,733,708,709,692,693,696,714,714,695,739,740,716,707,706,734,726,740,710,740,709,709,825,831,821,797,806,776,789,809,763,795,812,796,794,808,786,793,795,817,798,818,797,813,796,773,759,744,748,797,775,780,772,788,801,774,773,778,796,780,763,737,795,795,818,787,765,740,807,795,763,785,785,764,763,778,779,815,849,885,860,859,865,898,836,780,790,893,854,902,800,837,792,868,848,846,882,804,854,864,816,804,813,835,902,890,874,896,833,883,762,888,790,866,755,855,890,735,755,863,838,876,923,786,891,812,868,855,781,873,967,817,867,892,872,798,815,900,836,831,1128,1130,1117,1126,1106,1150,1138,1136,1149,1152,1153,1129,1142,1163,1155,1115,1119,1106,1177,1142,1168,1137,1153,1160,1122,1106,1063,1042,1046,1089,1106,1056,1172,1094,1073,1013,1130,1070,1093,1061,1121,1120,1131,1139,1106,1091,1059,1076,1153,1062,1151,1098,1133,1096,1123,1117,1032,1004,1017,991,1053,1023,1032,979,1033,992,977,1025,978,1023,1008,1021,1038,981,1048,1010,1035,1031,1067,1026,991,1010,1041,977,1051,1050,824,844,831,880,834,892,870,812,834,833,842,803,893,812,822,806,780,837,819,880,825,861,842,835,856,825,791,840,850,994,1013,975,952,1016,1016,1026,1046,1007,1022,1042,986,1020,1025,1008,1042,1069,1006,1020,983,976,1032,1036,1019,1020,1006,1007,978,1030,1060,1044,1045,1011,1026,978,960,974,983,950,918,923,909,965,929,976,935,964,999,963,954,933,954,960,929,923,950,1011,888,881,926,968,937,943,927,936,964,968,861,880,922,906,884,878,895,868,876,906,895,866,849,921,892,919,909,935,901,905,856,859,885,870,900,931,860,873,900,913,881,854,828,815,850,864,844,852,856,809,816,829,817,841,807,839,850,834,847,827,837,847,825,803,818,823,825,835,810,824,824,850,845,819,804,868,986,933,971,919,929,945,942,932,938,952,946,955,927,983,945,965,938,957,914,963,935,969,895,971,913,892,945,971,965,1047,1012,1036,1006,999,1019,1001,1036,1009,982,1021,996,1032,998,1028,992,1016,991,996,1004,1001,1025,1004,1016,993,1017,1033,1028,1048,1017,982,1008,1018,1013,1019,1005,962,1166,1193,1150,1113,1102,1157,1144,1157,1140,1138,1162,1167,1114,1098,1135,1139,1144,1144,1180,1118,1191,1166,1148,1210,1138,1111,1130,1174,1158,1106,1115,1072,1033,1139,1072,1027,1077,1079,1080,1073,1115,1063,1035,1098,1055,1120,1109,1127,1070,1088,1082,1030,1063,1131,1089,1011,1059,1036,995,1082,1056,995,969,964,1011,1000,1012,967,962,963,979,1024,1014,985,1014,951,994,1003,959,981,990,1001,1007,970,965,1005,996,987,958,963,1002,972,993,1034,1149,1091,1131,1148,1130,1146,1115,1115,1094,1111,1141,1133,1123,1140,1126,1128,1103,1118,1124,1126,1140,1101,1157,1166,1137,1114,1103,1083,1107,1101,1052,1060,1075,1077,1108,1031,1133,1100,1042,1095,1052,1099,1108,1072,1111,1065,1071,1059,1076,1087,1084,1100,1091,1085,1061,1087,1063,1101,1099,983,1011,1003,987,1020,968,1007,968,961,963,949,978,984,979,995,990,1041,987,1029,982,1034,1018,1001,1049,1026,983,1031,1020,999,1040,959,1001,937,973,979,961,959,979,968,936,905,1006,934,979,983,967,974,977,967,969,937,935,958,992,940,980,923,995,975,933,894,940,1015,988,855,1007,940,953,972,920,966,944,954,911,961,920,882,950,968,997,987,919,938,932,930,921,924,941,1116,1126,1120,1100,1084,1097,1123,1169,1088,1190,1126,1175,1166,1157,1164,1148,1117,1094,1107,1157,1077,1116,1107,1088,1133,1135,1146,1131,1116,1131,1137,1108,1101,1161,1111,1098,1054,1039,1029,1044,1101,1043,1079,1046,1017,1044,1063,1045,1057,1030,1022,1118,1091,1047,1060,1065,1080,1038,1019,1042,1042,949,1022,965,981,932,994,965,968,1031,975,938,954,979,966,946,980,917,966,956,953,955,974,946,932,954,946,978,965,944,1004,965,953,947,1082,1057,1098,1083,1051,1094,1070,1073,1088,1086,1078,1045,1055,1077,1080,1094,1086,1086,1055,1051,1051,1080,1082,1095,1050,1087,1028,1014,1083,1064,1028,1038,1044,994,1018,1031,1053,1015,1048,1043,1024,1065,1027,1007,985,1049,1066,1056,1022,1031,997,1045,1025,1023,1039,1006,1037,970,1014,998,987,1013,1018,950,975,1033,1023,952,985,981,998,990,1022,977,1051,1014,1000,1006,936,961,994,997,993,960,1037,976,984,999,983,970,983,1062,952,978,1018,1049,982,1080,1013,1090,1043,1009,1107,1046,983,996,1104,1013,1002,1013,968,1054,1046,1030,1074,1046,1013,1015,971,1070,1016,1060,1036,1041,1018,1022,1000,813,784,842,809,803,823,808,832,761,818,836,806,766,848,759,773,834,797,777,834,839,848,852,835,805,788,768,799,860,806,828,856,815,902,822,779,866,891,746,783,798,831,724,765,810,850,800,758,800,827,811,806,892,847,814,832,878,868,876,907,1020,928,977,940,950,979,929,863,976,966,960,993,931,990,968,994,926,952,938,938,963,954,1002,956,978,963,944,933,960,933,954,935,976,982,979,1005,905,979,959,930,924,966,968,940,947,976,984,934,977,985,912,984,914,948,893,960,927,969,995,981,958,1073,1078,1061,1067,1085,1093,1101,1089,1058,1102,1125,1107,1105,1075,1060,1132,1075,1062,1118,1105,1099,1081,1049,1113,1100,1109,1068,1089,1105,1073,1090,1107,1044,1047,1021,1061,1059,1078,1045,1065,1090,1084,1098,1085,1069,1027,1068,1076,1021,1057,1059,1064,1062,1033,1035,1072,1061,1069,1083,1086,1006,1008,1025,996,1035,1039,1069,987,1053,997,1039,1027,990,1050,1050,1019,979,1042,1051,1004,1021,1054,1039,1038,1082,977,1044,1041,1018,1042,1008,1059,981,1043,931,883,850,842,918,888,858,850,868,901,883,855,846,895,875,898,940,907,894,852,901,842,901,813,930,881,895,898,895,827,776,791,795,809,825,799,790,786,815,808,814,766,812,789,817,825,816,782,817,804,781,802,799,803,854,800,811,771,787,825,790,825,854,960,912,953,953,994,970,981,959,984,920,958,977,895,941,980,943,967,960,978,941,937,954,897,941,963,926,947,954,1015,983,1036,946,1037,974,1003,1047,1028,1027,1011,1047,981,991,1016,976,1013,1007,1029,1028,1027,1011,999,1034,1055,1023,971,1041,1017,1016,1029,977,1054,988,1025,1003,1012,958,1000,978,977,958,995,990,999,1032,957,1001,997,1025,1020,994,1017,1021,982,973,1017,1008,1029,1014,1022,1004,970,972,951,984,996,1086,1099,1111,1098,1107,1092,1159,1137,1135,1160,1131,1102,1154,1105,1091,1149,1156,1093,1116,1144,1149,1139,1137,1135,1097,1081,1155,1146,1097,1086,1070,1142,1112,1117,1011,1055,1075,1031,1081,1066,1079,1066,1082,1145,1002,1035,1069,1101,1124,1104,1078,1065,1110,1131,1050,1075,1115,1188,1092,1039,1102,1031,1083,1160,1054,1139,1131,1087,984,969,983,953,1015,977,940,954,991,1005,1035,1064,986,986,1057,994,976,939,960,979,997,1019,984,1002,1048,988,999,1017,960,965,785,825,823,798,819,784,863,820,785,830,784,819,801,812,807,833,785,786,780,840,794,894,801,789,796,789,788,821,824,788,847,848,761,770,781,756,768,762,791,767,757,766,720,743,715,781,775,754,763,760,789,734,752,758,784,773,739,690,704,775,659,818,747,735,733,770,678,668,730,821,715,745,695,730,727,692,711,712,779,812,828,703,769,842,730,724,697,697,775,1000,977,1019,994,1002,1025,1025,1033,988,1006,1021,987,968,1006,1019,1002,967,990,990,972,1064,999,1039,1005,1030,1019,1026,1031,978,1012,1008,986,918,935,949,924,897,944,979,958,958,925,941,957,877,937,969,1007,952,933,925,935,939,909,952,941,951,945,949,932,928,953,919,866,836,874,878,865,876,842,857,858,857,881,880,868,849,864,874,879,873,850,867,838,862,882,854,847,832,856,883,863,874,894,875,867,865,816,926,859,886,860,946,890,873,822,830,850,836,947,845,843,862,945,865,892,869,839,863,841,850,868,861,858,873,841,883,852,838,881,840,846,916,886,844,916,883,830,826,882,853,884,890,905,883,858,868,840,913,823,835,876,792,775,803,863,805,832,832,844,831,878,827,888,858,821,851,831,810,806,844,781,816,841,801,830,823,822,836,856,983,980,1001,982,963,1010,983,980,998,1001,961,991,967,996,965,1001,1004,995,1011,959,982,988,989,1008,1000,1014,1045,993,1006,1032,981,999,1064,1027,1044,1085,949,972,1057,989,975,1013,986,1038,1016,1056,1066,989,1043,1037,1051,1068,1060,1080,1020,1073,1023,1033,1008,1063,1056,1070,1030,1018,962,982,1060,1053,1005,993,1017,960,984,1048,976,1028,1018,867,985,927,981,966,951,1097,967,958,972,1050,874,1004,1037,1005,854,879,904,901,904,897,894,865,900,870,935,876,904,862,881,984,863,874,910,880,898,887,868,836,915,854,918,879,868,841,913,829,782,786,804,824,822,823,828,848,816,832,828,824,801,823,811,813,837,819,834,789,817,824,806,818,829,811,815,828,850,798,823,815,833,810,802,810,830,776,834,806,823,820,843,830,821,808,831,826,840,834,842,798,781,819,801,815,824,821,829,789,776,820,828,830,803,765,753,793,776,755,758,789,765,735,772,777,747,806,729,777,772,776,765,782,773,773,763,754,761,803,778,780,792,753,768,766,783,756,780,807,788,810,800,774,770,783,780,777,804,817,792,780,784,769,789,796,792,753,752,764,767,752,795,765,803,773,772,754,791,789,784,760,764,751,796,763,769,785,759,793,745,791,764,746,758,736,752,750,736,770,757,753,771,763,763,751,758,793,778,774,786,793,789,805,802,790,817,791,817,775,812,777,769,803,766,842,743,802,795,796,791,784,787,773,745,791,821,787,937,832,832,947,915,933,861,916,876,996,879,927,893,860,903,942,913,930,886,845,855,914,918,851,886,918,909,839,924,1153,1153,1188,1164,1183,1170,1205,1148,1108,1174,1151,1154,1207,1166,1191,1139,1204,1139,1183,1137,1228,1142,1177,1147,1200,1175,1174,1228,1053,1110,1124,1069,1073,1054,1057,1060,1095,1053,1111,1036,1048,1095,1056,1075,1104,1090,1103,1109,999,1100,1101,1105,1065,1064,1106,995,960,1024,970,976,1007,990,1046,968,982,984,1017,1036,1009,1017,1035,977,1020,1026,1000,1021,1044,997,1044,967,1004,988,1012,1049,1002,989,1015,1072,1030,1035,1078,1086,1038,1033,1046,1045,1012,1073,979,1013,1027,987,982,1009,1025,1042,995,1022,1021,1037,1004,1005,999,991,968,994,1059,927,944,973,935,928,944,947,929,948,963,964,891,943,995,955,942,916,919,940,934,987,996,962,991,988,975,983,944,987,915,927,957,956,852,890,908,873,917,881,857,844,865,866,847,881,900,899,851,875,852,871,876,849,881,889,858,847,854,803,835,791,784,806,774,789,830,766,754,798,793,783,792,806,811,796,778,795,821,787,812,776,788,771,802,806,781,793,751,781,789,792,773,832,833,866,785,855,732,870,759,898,822,855,816,768,827,836,761,860,785,841,824,796,890,758,841,851,841,818,876,784,1060,1055,1071,1051,1036,1065,1098,1058,1028,1031,1060,1035,1060,1017,1083,1077,1062,1074,1054,1067,1093,1037,1056,1030,1013,1064,1070,1034,1029,1049,997,1002,986,1005,957,967,959,1047,984,967,1019,1001,947,1000,930,980,983,1034,956,1022,991,960,979,1012,1042,995,967,959,983,953,921,948,924,925,937,925,928,959,934,947,928,936,934,939,951,938,913,878,962,938,903,916,918,929,970,949,920,921,923,925,928,922,916,929,932,911,920,971,951,903,864,844,846,871,835,847,855,860,847,856,858,860,867,822,850,843,850,857,853,873,845,849,840,877,836,864,849,830,841,893,886,888,895,875,846,873,851,868,846,898,914,876,855,887,867,850,856,872,875,869,828,862,865,847,882,861,865,884,875,950,926,916,942,937,934,941,894,950,900,908,933,925,932,933,948,914,883,936,918,963,911,967,910,946,931,931,860,861,880,880,886,868,878,841,869,862,888,862,838,856,863,884,846,844,847,846,873,834,826,814,871,892,878,887,859,890,834,808,855,844,828,823,833,863,832,819,827,848,866,838,867,834,820,830,813,797,857,805,808,842,823,826,842,832,818,837,834,819,889,906,891,894,891,849,960,894,901,878,869,870,874,906,868,895,923,875,920,867,883,890,917,899,914,888,860,872,883,892,1150,1191,1096,1110,1124,1186,1112,1108,1175,1118,1132,1166,1140,1138,1153,1184,1177,1134,1144,1133,1132,1154,1165,1163,1152,1121,1145,1114,1124,1144,1126,1143,1118,1044,1086,1111,1130,1054,1089,1140,1108,1090,1097,1084,1120,1057,1075,1057,1103,1081,1064,1101,1100,1074,1091,1056,1101,1018,1037,1021,985,1030,1086,1032,998,1045,1068,1015,1048,1045,1050,972,1037,988,1063,1020,1037,1008,1040,1012,1044,1046,970,1005,1023,1010,1018,1043,1025,1112,1075,988,1020,1054,1040,954,1002,1055,1004,1103,991,1002,1009,1039,1032,1009,1013,970,1011,1028,1001,1058,981,1009,1055,938,1025,1024,799,780,876,757,793,743,865,774,898,846,791,767,848,870,864,810,836,822,831,852,831,814,798,801,846,865,840,794,817,882,873,797,828,850,818,864,1005,960,1005,925,1027,970,984,956,1000,1010,1010,937,966,958,939,936,966,969,1001,986,985,1017,949,972,953,915,950,912,896,1025,1049,1103,1128,1107,1188,997,1139,1047,1063,1025,1082,993,1135,1059,1037,1055,1050,1024,1139,1120,1102,1031,1038,1083,1060,1122,986,1073,887,1029,992,998,942,988,964,1056,944,982,964,987,938,1015,1011,1022,942,952,980,1044,911,1106,991,928,972,1048,975,977,1023,946,939,988,1035,966,955,997,997,994,976,1011,994,989,979,998,895,925,1000,997,980,943,1028,996,1033,949,923,976,930,987,917,889,840,856,842,838,852,862,866,838,902,847,869,854,822,845,882,854,848,837,841,868,835,861,839,871,853,849,879,865,829,828,846,839,860,810,853,816,840,844,844,828,832,871,839,787,869,855,853,805,817,856,822,854,861,828,848,830,832,871,805,905,798,915,812,864,856,856,852,820,832,863,885,806,804,868,880,889,886,831,879,882,879,884,852,919,845,804,868,831,837,892,883,845,1146,1151,1141,1123,1135,1143,1131,1110,1118,1130,1140,1081,1140,1171,1154,1140,1176,1153,1105,1104,1140,1158,1113,1127,1141,1135,1132,1140,1144,1111,1104,1169,1128,1194,1154,1123,1137,1110,1082,1080,1085,1125,1110,1103,1072,1121,1047,1126,1085,1085,1071,1077,1045,1031,1130,1134,1101,1097,1123,1088,1098,1139,1072,1120,1097,1122,1120,1125,1110,1119,971,942,939,962,966,986,985,1002,975,958,992,982,941,994,941,1015,965,1006,1019,936,904,1000,914,961,997,1009,977,952,944,977,976,965,964,1022,1031,980,997,986,1026,970,1009,1068,1020,1039,1025,994,998,1003,1009,1021,964,945,960,990,969,1079,987,995,954,994,973,981,955,928,956,943,954,913,934,935,927,919,946,980,895,906,963,937,940,934,963,960,904,910,980,937,968,934,918,953,885,944,938,928,871,925,954,853,915,957,994,940,916,965,971,940,873,955,937,921,919,888,961,909,951,896,923,894,903,859,957,887,914,913,920,884,986,957,977,945,990,959,939,955,968,987,1009,986,1001,959,909,1044,945,986,984,998,951,1004,1041,1025,985,907,852,885,840,866,864,905,822,837,873,894,827,879,903,868,862,829,869,904,873,904,875,836,837,869,881,839,879,819,850,911,852,883,841,843,882,834,886,846,887,883,871,882,828,836,886,880,833,862,913,853,871,839,935,880,865,805,906,832,899,895,834,834,826,862,842,862,809,856,876,840,838,847,850,828,798,846,821,828,855,865,852,818,832,830,874,831,873,852,785,773,815,790,784,784,757,779,773,756,776,759,790,807,812,763,795,823,776,792,800,761,754,805,770,817,788,765,799,723,799,826,846,764,789,833,787,789,797,803,824,828,771,790,828,822,803,779,862,846,792,833,812,834,783,818,772,798,864,787,839,1045,1031,984,1038,1079,1093,1088,1058,1107,1083,1034,1093,1020,1076,1076,1035,1112,1063,1081,1112,1156,1118,1027,1034,1025,1007,1016,1047,1072,1013,1003,956,1062,888,912,918,920,930,960,908,975,936,947,921,898,905,981,933,910,897,880,947,962,908,877,921,897,896,903,973,880,972,928,914,891,872,915,927,983,907,902,915,976,921,876,927,848,930,906,861,966,940,919,878,923,927,919,812,934,933,966,863,867,911,931,918,987,1022,1034,1021,1076,1019,1022,1032,1032,1002,952,1028,1015,1002,1104,1035,1031,1022,1070,1154,1045,1018,1012,1007,1042,1080,1041,1020,873,903,961,847,884,900,918,885,927,928,891,867,887,871,860,891,893,907,911,974,901,916,887,964,859,886,881,913,896,915,871,988,931,916,910,892,873,890,925,899,912,894,957,868,950,896,941,877,910,930,893,905,915,904,930,916,886,903,918,992,946,938,866,945,789,841,848,833,872,848,836,849,818,810,842,824,839,837,866,841,844,855,828,859,838,862,828,797,846,808,829,818,832,856,825,835,757,781,752,773,766,775,814,787,785,788,780,808,788,780,770,770,803,771,772,777,783,770,749,761,760,790,786,768,799,789,766,754,794,771,776,801,804,812,829,757,791,811,776,802,801,814,768,785,800,789,803,803,824,782,800,779,780,773,783,791,762,805,803,796,802,807,768,791,758,776,756,752,785,765,804,745,774,793,768,769,815,780,792,757,788,747,785,801,733,810,798,805,785,781,803,765,893,910,866,857,893,842,837,881,900,859,887,816,815,868,843,859,834,853,923,789,858,854,846,888,853,819,854,870,881,862,878,877,846,899,812,857,850,893,882,812,850,879,892,839,873,887,914,873,837,857,852,859,894,851,878,945,959,982,971,936,965,924,916,926,983,919,1001,974,951,955,947,948,988,999,902,911,912,862,914,975,964,889,996,978,991,983,962,941,930,996,965,981,1019,953,979,938,963,950,954,965,967,971,941,937,968,976,907,958,949,904,920,944,929,960,968,975,981,975,1001,958,932,942,916,977,955,846,848,830,801,828,831,823,814,832,831,831,834,800,809,837,860,892,846,822,827,823,780,759,851,815,795,778,1004,976,1025,1045,1003,990,994,1021,996,1012,995,1009,1010,992,975,1037,1016,982,991,999,987,1007,1010,1027,1038,967,998,998,1029,1039,1012,1068,987,1112,984,1125,1016,974,1055,1028,1050,1081,1004,983,1023,1039,1033,984,1061,962,1037,988,1042,979,1035,1002,966,1080,1039,1080,1010,981,967,1045,988,1023,1006,960,1045,956,997,988,1005,1002,955,990,1000,944,968,988,1028,955,957,1021,1016,990,935,1053,990,999,1011,1014,997,1025,1012,980,920,937,949,943,979,942,1002,977,969,962,968,992,971,1001,942,949,946,962,995,900,940,965,952,920,989,977,1019,1005,967,1022,997,939,965,1010,950,895,953,979,913,976,877,942,926,962,862,968,984,931,998,962,877,919,862,833,854,883,969,961,877,965,907,912,1021,1124,1120,1178,1127,1146,1144,1121,1092,1167,1119,1115,1112,1097,1158,1144,1069,1139,1104,1108,1126,1166,1169,1133,1195,1114,1110,1140,1116,1096,1165,1084,1117,1116,1113,1040,1105,1106,1138,1167,1088,1037,1090,1085,1130,1076,1087,1141,1124,1128,1153,1038,1076,1119,1076,1021,1074,1164,1159,1148,1142,1146,1098,1138,1113,1109,1195,1123,1079,1147,1110,1132,1069,1132,1182,1126,1164,1171,1087,1114,1080,1085,1118,1120,1104,1155,1148,1063,1098,1157,1090,1088,1162,1084,1062,1070,1109,1074,1084,1076,1086,1098,1113,1064,1043,1033,1165,1121,1113,1103,1061,1059,1110,1096,1064,1040,1057,1093,1141,1096,1111,1111,994,978,994,1008,993,1023,994,1024,1006,1006,1023,1002,998,1025,1010,953,1002,988,1032,1038,991,1018,963,1041,1002,969,988,1013,996,967,1039,1080,1015,1035,1003,957,971,984,915,967,915,940,931,948,959,951,936,984,971,955,952,947,960,948,961,941,984,957,930,969,959,993,938,944,975,973,968,979,961,894,1011,1092,1145,1112,1105,1128,1135,1119,1113,1121,1120,1078,1171,1080,1125,1140,1132,1103,1069,1131,1146,1101,1101,1150,1141,1099,1104,1113,1123,1104,1109,1114,1117,1138,1051,1116,1098,1068,1133,1107,1123,1120,1047,1090,1074,1097,1067,1081,1086,1089,1079,1093,1047,1114,1038,1112,1092,1089,1102,1097,1086,1055,1085,1038,1133,1095,1035,1104,997,1062,1047,988,980,1003,1105,1110,1057,1057,1078,1078,1118,1042,1096,1074,1073,1062,1115,1112,1077,1078,1091,1038,1087,1054,1121,1117,1082,1100,1042,1087,1102,1019,1113,1114,1112,1086,1074,1081,1065,1056,1049,1049,1079,1133,1019,1071,1095,1102,1037,1096,1080,1046,1091,1104,1062,1123,1125,923,907,927,898,929,955,801,899,990,887,908,918,846,903,907,910,864,850,858,888,920,927,948,871,868,818,830,840,831,820,863,830,819,826,833,839,868,821,832,843,875,843,874,849,866,847,814,803,848,833,810,857,855,824,838,843,864,898,808,882,871,900,853,872,884,852,890,855,896,856,863,870,841,881,876,883,872,828,877,842,836,843,866,870,899,900,894,801,782,785,795,808,775,792,828,770,798,799,789,780,820,773,783,800,804,806,794,804,778,772,825,804,774,812,808,805,772,805,825,821,819,845,848,807,818,824,875,863,808,833,828,828,826,869,838,825,841,846,813,857,836,835,812,829,818,794,765,851,794,842,764,786,802,733,746,783,771,764,780,758,760,782,776,800,802,790,782,733,793,845,824,830,754,797,759,779,859,824,693,804,684,753,1145,1126,1112,1178,1127,1144,1099,1112,1102,1153,1130,1116,1164,1176,1169,1097,1128,1096,1098,1146,1162,1115,1095,1148,1107,1193,1092,1172,1140,1114,1113,1079,1080,1041,1081,1043,1077,1081,1043,1013,1052,1041,1084,1010,1082,1043,1050,1012,1019,1060,1014,1043,1039,1055,1039,1035,1040,992,1052,1043,1035,1054,1063,1046,980,1001,981,983,972,1012,1009,966,945,984,998,982,1011,962,916,958,947,1001,949,984,967,979,1012,956,971,984,938,970,996,993,959,899,954,937,989,987,983,1003,968,977,1002,940,970,969,977,964,978,921,986,991,1001,962,980,944,987,935,962,987,958,992,958,965,976,1000,974,912,978,923,954,944,974,966,972,964,935,993,981,990,929,950,949,913,989,930,925,945,907,960,978,898,935,972,954,977,1011,940,960,918,935,974,981,892,952,946,939,954,937,980,941,987,962,962,987,955,942,974,1040,972,1014,965,959,959,899,982,933,961,965,1009,1126,1153,1144,1160,1131,1085,1165,1143,1171,1115,1133,1150,1116,1130,1154,1151,1129,1135,1118,1191,1120,1155,1133,1172,1134,1164,1134,1078,1115,1101,1140,1167,1077,1113,1107,1163,1152,1094,1130,1079,1103,1097,1116,1120,1080,1118,1069,1112,1081,1093,1076,1096,1145,1162,1121,1126,1075,1119,1044,1078,1115,1130,1098,1148,1061,1001,993,988,1031,1051,1049,1051,1035,1040,1036,1058,1051,1006,1068,1052,1065,1016,1058,1057,1020,1028,1000,1083,1034,997,1017,1014,1022,1051,1009,815,782,937,864,894,868,882,918,855,934,812,861,828,886,865,923,835,867,864,797,909,836,855,825,850,841,832,833,887,845,971,978,1000,961,1014,959,1037,1022,994,1005,1010,992,977,937,963,976,1012,984,997,1012,995,914,995,943,976,991,966,1014,993,967,996,983,965,955,923,940,969,946,930,979,977,980,926,918,945,949,932,954,955,981,915,914,971,963,971,925,945,958,978,995,883,853,896,870,933,901,864,834,914,864,891,849,902,920,868,882,910,892,888,902,886,881,897,905,919,878,909,901,840,868,900,896,883,899,1047,1039,1102,1032,1071,1134,1109,1099,1065,1099,1070,1046,1044,1036,1098,1077,1125,1095,1153,1086,1064,1126,1190,1086,1033,1085,1063,1116,1125,1072,1000,1031,1123,1023,1037,1054,1097,1149,1126,1049,1085,1076,1034,1087,1053,1068,1048,1065,1026,974,1120,1107,1097,971,983,1104,1017,1141,1007,1046,899,933,916,909,913,907,893,895,885,906,900,908,882,913,891,894,912,960,884,919,871,900,907,906,886,888,906,910,876,886,886,904,927,920,857,933,931,983,913,1005,931,908,954,959,911,979,894,961,908,929,942,957,974,965,916,873,963,971,902,1008,922,939,923,929,953,1045,980,854,1034,999,1040,1044,1044,983,1033,1016,1016,1003,976,1003,998,993,1042,990,961,1039,1033,993,1054,1027,1002,1010,1018,1037,1011,1036,1019,1008,967,981,1002,1052,1003,1000,1009,999,966,958,1001,1042,991,976,1016,1007,1017,937,1010,974,995,1002,1050,994,987,987,1034,1029,952,985,1022,947,979,1010,1016,975,989,1141,1099,1114,1068,1167,1107,1090,1133,1099,1125,1158,1128,1156,1159,1109,1088,1162,1105,1117,1113,1185,1080,1140,1081,1105,1102,1099,1105,1098,1093,1106,1137,1082,1031,1102,1056,1082,1075,1074,1084,1051,1098,1084,1101,1044,1129,1067,1119,1068,1114,1116,1071,1063,1105,1083,1090,1095,1046,1004,1009,964,1019,1003,1019,988,1006,971,966,975,1003,974,988,990,934,999,991,959,1018,998,971,978,1029,958,1033,984,1031,1035,1023,950,973,1001,992,886,817,852,841,860,869,875,848,868,879,832,851,860,868,821,889,841,813,869,834,855,845,820,847,832,820,842,840,870,841,865,842,839,877,875,829,835,855,858,838,815,855,807,859,879,872,831,838,821,846,863,831,843,823,803,809,872,825,834,817,851,851,847,844,835,878,840,817,832,804,830,820,815,824,816,812,817,809,789,863,842,844,805,841,793,814,814,823,823,805,835,813,819,833,818,761,766,770,765,763,778,759,764,726,783,768,805,762,779,757,748,764,764,746,755,791,747,799,774,748,745,767,752,734,744,895,906,901,865,923,906,973,958,896,911,919,894,945,939,979,880,887,953,905,913,910,883,897,915,893,930,945,933,826,967,920,932,817,801,785,811,804,812,793,797,779,762,781,804,828,800,809,811,793,851,800,831,819,802,779,826,785,827,810,761,818,976,957,862,886,922,917,914,920,873,836,919,913,877,918,849,943,816,887,942,829,870,872,832,895,776,978,812,922,872,999,937,937,863,893,900,913,855,883,959,852,866,922,920,849,896,815,861,935,902,872,879,888,861,931,919,987,873,883,960,898,868,841,796,827,827,859,801,816,837,835,811,845,843,790,838,867,850,843,809,851,820,818,816,799,858,823,819,796,786,809,810,823,818,835,802,813,843,793,776,813,812,767,784,798,791,792,804,773,790,803,768,770,791,792,752,794,773,774,815,793,800,781,783,784,810,784,785,776,809,778,869,997,895,877,911,903,796,882,872,967,932,873,946,931,945,893,923,925,898,923,938,875,972,891,863,954,1137,1140,1145,1156,1117,1171,1134,1126,1165,1129,1138,1116,1126,1182,1127,1131,1132,1139,1158,1153,1155,1141,1132,1124,1129,1143,1168,1135,1143,1100,1077,1142,1074,1062,1086,1103,1112,1116,1122,1088,1054,1097,1104,1063,1103,1110,1106,1119,1149,1091,1126,1049,1141,1080,1106,1085,1141,1066,1031,1033,1042,1092,1057,1036,1045,1077,1040,1046,1026,1068,1059,1008,1067,1078,1116,1018,1005,1048,974,1044,1083,1052,1083,1038,1042,1057,1064,1035,1033,1059,1026,1020,998,1053,1074,999,1000,962,1048,987,1053,1013,1019,1044,1043,1012,993,1070,1034,942,968,1066,1116,1073,1146,1064,1111,1124,1095,1082,1079,1126,1128,1083,1132,1081,1002,1122,1106,1101,1099,1112,1182,1128,1085,1047,1099,1112,1096,1061,1061,1055,1105,1137,1084,1016,1063,1127,1114,1096,1106,1113,1117,1111,1109,1047,1056,1096,1046,1095,1142,1072,1078,1142,1108,1081,1087,1087,1080,1109,1088,1063,1128,972,972,971,1011,1025,996,944,989,936,979,961,1029,944,982,1059,1054,999,954,1012,982,1015,950,976,966,931,957,935,938,979,920,928,968,1007,985,943,776,744,741,756,770,773,788,752,774,745,754,743,767,750,740,733,780,760,782,778,743,761,784,764,766,757,765,769,745,758,753,736,747,786,835,757,800,776,771,725,800,797,826,804,813,762,787,791,807,816,792,817,746,782,791,821,756,790,746,805,761,785,787,783,835,777,1039,995,1017,1068,993,1019,1019,991,1034,1012,994,1038,987,1019,998,992,962,1001,1001,991,1002,992,1000,971,987,996,934,999,986,1023,995,978,967,880,910,894,876,884,877,843,856,907,846,903,891,898,884,885,879,882,858,925,894,905,903,862,883,863,953,888,906,912,940,905,931,814,780,828,818,844,866,839,828,865,881,834,833,875,888,813,835,791,813,716,825,832,813,755,776,806,860,877,792,784,832,840,858,879,852,867,803,913,912,834,930,895,917,863,881,856,946,875,840,917,852,874,814,812,909,857,854,968,881,844,849,951,893,876,920,1005,1052,1066,1064,1063,1052,1033,1048,1023,1049,1029,1009,992,1111,986,1010,1040,1012,1084,1021,1031,1023,1057,997,1041,1075,895,888,895,876,891,882,888,890,899,871,913,887,898,888,884,885,974,855,908,910,931,890,920,897,882,904,915,892,895,903,931,916,903,825,825,858,857,819,814,826,834,859,785,841,809,823,829,842,824,809,826,791,809,832,808,825,826,848,834,783,782,784,817,837,994,1002,1045,1038,1039,1021,1035,997,922,1033,1014,1027,962,944,1045,976,962,1003,930,996,1015,1023,989,961,1009,1020,1007,1071,1019,1049,974,884,924,904,974,962,959,941,909,913,948,930,918,936,890,938,908,953,920,929,919,936,924,947,965,901,910,942,929,894,886,917,956,840,836,872,865,835,827,861,840,823,857,864,852,841,860,838,864,871,887,838,828,849,843,852,854,822,787,830,837,815,802,717,745,729,729,718,734,740,717,699,732,755,760,756,705,715,749,703,735,765,756,719,749,731,747,725,695,829,826,834,837,831,827,861,826,861,808,865,871,856,862,816,817,850,842,834,827,802,849,803,841,835,854,840,862,843,861,844,804,834,900,935,895,881,899,896,887,845,888,931,955,904,931,930,919,905,909,907,888,938,894,906,894,905,954,896,909,864,896,949,913,967,901,950,888,885,1035,991,993,1038,1039,1049,1017,1098,1112,1006,1003,974,1004,1084,1024,1027,1066,1034,1022,1024,1020,1017,1028,1058,930,1056,1031,1034,1035,963,1007,913,939,900,874,930,844,895,918,876,908,887,936,925,892,910,913,938,898,919,905,924,956,936,856,839,846,850,856,815,832,820,821,859,830,840,844,824,836,833,841,820,839,813,841,804,847,836,823,828,861,834,820,820,956,959,932,979,915,919,876,968,952,993,928,953,943,919,958,934,956,979,979,936,974,953,979,939,984,920,960,917,947,965,995,933,1031,957,1026,1032,1014,1016,1009,1024,1020,1019,1032,1053,1045,984,1011,996,1007,1026,1025,965,1025,1020,988,1018,987,1023,1020,1030,1034,997,1032,1032,1007,994,998,1024,1009,995,1004,1010,1004,953,1036,1003,1003,1022,1054,1021,941,1013,1029,1052,1024,1027,966,1017,993,1020,963,982,1029,998,990,986,1002,983,954,992,998,965,1013,1131,1166,1166,1168,1137,1164,1094,1175,1126,1134,1147,1173,1107,1151,1122,1123,1110,1150,1152,1148,1142,1132,1158,1129,1175,1112,1135,1149,1028,1144,1143,1126,1127,1149,1091,1168,1070,1066,1034,1031,1075,1128,1092,1135,1080,1074,1129,1097,1145,1079,1105,1091,1030,1095,1072,1086,1106,1084,1014,1037,974,1032,1014,1024,1035,1010,1004,1009,1011,950,1006,1049,997,1060,1009,1050,1008,982,995,1005,1009,997,1018,966,1019,993,910,972,1013,961,976,913,1016,907,933,945,947,936,914,944,896,966,974,929,951,944,961,977,935,985,924,971,929,968,954,943,942,843,811,808,851,801,811,838,825,823,824,825,767,837,831,848,813,850,783,855,815,815,824,862,814,817,836,817,803,809,832,798,799,893,853,737,779,788,758,765,748,799,773,782,754,765,752,758,759,751,773,771,791,764,737,773,765,778,740,791,829,770,785,728,744,786,786,761,781,728,748,797,738,702,758,776,731,729,758,764,789,763,708,712,772,739,721,727,813,734,775,738,727,733,732,775,770,707,730,714,735,753,952,913,857,901,897,929,893,842,889,853,957,957,926,913,914,981,875,937,917,941,884,958,881,899,979,883,934,935,952,906,926,943,936,940,965,946,975,937,939,959,978,988,946,962,979,959,943,925,950,952,968,942,967,959,988,913,937,918,936,950,920,943,966,959,978,973,880,788,856,841,846,898,837,848,851,858,821,832,824,836,848,856,872,824,835,822,862,840,844,847,864,850,874,844,830,831,781,785,795,763,771,812,825,816,819,783,779,848,817,813,791,765,809,788,805,780,787,772,820,821,821,805,797,796,785,843,784,823,880,897,910,875,876,846,909,888,890,912,897,909,872,881,927,891,901,903,880,895,893,894,837,930,882,891,887,897,869,894,854,892,783,819,774,809,781,781,799,797,823,800,783,789,779,768,813,768,804,793,759,813,791,771,799,759,785,812,789,860,950,960,940,933,898,825,959,924,813,865,840,858,781,895,882,842,855,841,878,855,858,862,896,899,1132,1114,1095,1152,1141,1057,1127,1132,1064,1144,1176,1068,1126,1096,1119,1146,1145,1151,1094,1094,1130,1164,1094,1146,1106,1145,1087,1145,1144,1089,1076,1058,1078,1115,1056,1108,1126,1112,1139,1132,1123,1095,1098,1077,1119,1102,1116,1078,1090,1115,1102,1079,1053,1125,1094,1103,1110,1089,1143,1088,1092,1078,1065,1079,1121,1060,981,1063,964,1020,1108,1057,1123,1125,1086,1074,1010,1022,1111,1029,1020,993,1020,1039,995,1043,1096,1044,1070,1121,1116,1110,1008,853,946,868,883,835,837,867,926,799,917,868,928,844,918,854,827,941,913,938,854,881,836,909,865,937,909,765,856,885,899,862,824,830,868,846,849,818,847,865,805,840,819,856,819,847,858,803,842,851,857,838,841,846,846,830,843,897,855,941,961,948,880,920,927,923,957,933,910,921,879,924,898,933,895,911,965,888,952,897,950,888,962,895,924,897,961,946,970,929,914,1021,994,991,1008,976,1017,964,980,977,999,943,987,990,952,982,971,1037,969,995,982,997,1046,978,1010,987,995,1011,979,893,983,967,995,967,981,999,960,971,991,1014,992,996,980,991,996,951,987,970,986,955,986,1013,973,1005,983,978,966,1002,986,947,993,993,982,988,977,989,984,1007,1008,991,985,996,1010,976,993,979,996,971,963,989,962,1002,967,964,988,973,947,981,982,970,976,974,970,957,972,951,981,976,991,992,965,980,986,948,968,990,953,947,963,976,970,975,998,957,972,970,952,955,981,929,940,968,919,929,909,946,919,942,973,952,944,985,928,942,914,919,921,926,951,930,962,936,945,937,939,925,885,925,935,911,931,896,802,935,873,897,855,883,813,830,778,872,839,907,856,847,828,901,859,838,858,884,834,862,846,865,845,843,785,844,874,864,1105,1042,1066,1155,1103,1093,1060,1082,1134,1096,1023,1123,1083,1064,1094,1128,1073,1129,1033,1072,1004,1102,1073,1085,1082,1098,1123,1065,1077,1030,1025,1115,1097,1039,1097,1039,1055,1003,1070,1054,1054,1060,1068,1060,1036,1028,1097,1020,1058,1014,1176,1026,1053,1072,1055,1053,1022,1052,1034,1030,1062,1088,1068,859,878,856,918,900,883,855,879,926,921,954,904,907,903,914,967,870,900,942,861,929,838,940,844,912,895,900,806,905,852,875,851,861,876,884,885,910,813,885,881,875,872,897,895,848,925,881,919,894,913,918,901,904,894,889,843,896,932,783,738,778,780,810,791,777,822,771,764,766,776,832,750,750,779,752,798,788,766,761,777,775,816,845,807,811,755,798,781,944,969,954,967,947,980,1027,970,955,845,987,921,968,953,988,945,973,946,908,962,966,928,910,927,960,936,843,1021,978,996,964,936,890,1001,951,1009,976,969,975,995,914,976,955,983,1011,967,1027,934,1023,983,969,987,966,974,905,969,991,977,1006,1011,1003,918,931,923,960,910,936,933,908,915,935,967,911,952,912,909,939,917,929,917,928,917,910,927,934,957,932,965,963,901,856,858,849,901,908,836,845,874,852,830,867,898,845,837,876,833,894,863,864,861,873,843,843,838,857,827,879,837,857,891,883,849,836,862,802,788,767,805,801,804,803,782,791,800,798,793,791,776,804,765,800,794,805,801,793,788,787,798,754,797,759,774,840,885,836,827,855,874,863,878,852,847,849,827,848,864,854,877,865,886,785,800,849,898,807,855,845,857,824,848,870,879,846,851,932,875,1117,1092,1071,1072,1134,1113,1111,1130,1119,1069,1113,1092,1121,1117,1129,1107,1100,1107,1106,1075,1160,1121,1126,1140,1125,1119,1160,1136,1160,1123,1097,1063,1081,1114,1085,1044,1140,1075,1061,1083,1085,976,1094,1086,1071,1063,1099,1089,1149,1026,1123,1125,1085,1090,1123,1073,1077,1053,1076,1034,1080,1115,993,836,928,930,918,968,972,946,939,880,867,852,987,870,924,940,970,807,952,922,857,980,924,936,920,923,957,961,876,915,909,793,809,821,798,811,820,825,796,774,815,817,841,781,828,827,832,824,832,810,823,813,819,800,805,812,832,798,830,811,822,803,827,795,796,848,761,804,816,831,809,791,812,823,807,811,808,762,818,817,800,803,821,791,825,801,790,797,826,781,805,822,800,866,788,817,853,868,842,799,842,871,832,827,799,816,831,804,865,838,816,843,827,825,763,824,843,829,830,801,919,968,947,953,913,925,927,963,958,980,951,930,919,946,944,961,951,930,928,942,968,998,948,911,973,912,930,922,939,930,955,941,909,1008,1002,963,999,981,975,1038,980,1007,1042,1040,1008,1008,1004,1042,970,1024,1027,983,1040,997,994,1026,1017,971,982,1007,1028,995,1026,1015,1018,1003,975,1022,989,973,1002,972,963,1008,982,1020,973,1023,989,1016,1018,1009,977,1035,985,1006,987,971,987,1021,992,963,906,878,907,858,811,899,840,833,872,884,867,773,817,816,851,855,862,867,858,852,862,839,862,913,841,828,896,836,893,960,957,933,937,869,900,909,962,920,849,969,958,934,847,926,954,839,1058,897,914,892,954,888,921,898,862,909,961,931,950,982,1001,972,1000,1047,1080,1017,945,1031,1011,990,1022,1013,1024,979,987,1030,998,1015,989,1002,961,1003,974,990,1037,1016,962,967,1015,928,985,944,960,980,975,962,951,988,976,973,957,1010,977,974,983,992,949,987,997,967,998,972,966,972,981,948,960,983,808,806,842,864,858,817,812,870,859,793,820,828,842,890,803,872,856,840,749,791,856,790,813,800,787,816,873,802,841,860,829,821,1005,982,981,954,934,984,985,980,990,972,957,912,960,977,969,1031,954,930,988,950,981,935,924,922,948,940,978,957,1004,946,1015,804,836,817,836,814,779,816,789,834,817,816,818,777,822,836,816,788,791,787,820,849,777,809,824,819,801,835,803,795,834,808,815,817,770,834,838,802,742,773,797,819,765,836,764,752,777,782,814,809,763,808,781,798,820,819,770,787,814,827,791,816,821,733,773,776,766,799,889,948,885,927,946,941,958,979,913,935,959,976,980,963,977,966,934,908,960,962,934,952,938,949,957,975,917,978,983,909,951,926,895,810,876,865,862,861,884,896,887,850,881,893,852,895,890,899,870,875,859,878,916,897,874,909,880,918,874,928,849,841,828,841,852,851,844,830,858,837,860,843,860,860,845,857,823,828,834,886,843,832,848,873,857,855,889,931,905,915,1004,944,952,964,1015,958,980,971,962,931,959,958,1028,938,978,975,989,931,952,935,924,951,972,920,981,980,984,1061,983,998,1018,1055,1037,1050,1046,1047,971,996,1045,1051,1030,1063,1002,1026,1076,1001,1047,1039,1015,1062,1049,1032,1019,1051,1037,1011,1042,989,1013,1006,1055,998,993,984,1002,1047,1002,993,1023,1016,1033,1005,1004,1034,997,1021,1002,1015,1047,979,1020,1002,1025,1011,1004,1050,973,1020,1022,1070,995,989,960,951,1019,1009,986,1009,971,1001,973,982,985,985,965,963,995,980,977,930,996,945,999,1006,992,964,984,968,956,973,987,990,950,909,973,964,939,969,940,951,964,992,992,954,977,995,962,911,971,954,967,1014,929,980,951,1091,1113,1101,1063,1068,1085,1083,1058,1101,1085,1051,1077,1049,1102,1077,1119,1091,1084,1073,1090,1063,1109,1073,1098,1072,1096,1088,1053,1132,1135,1011,1066,1054,1056,1055,1069,1058,1097,1053,1053,1062,1041,1062,1067,1084,1017,1110,1095,1062,1096,1083,1068,1074,1097,1064,1052,1081,1049,1050,1054,1051,1043,1020,1011,1047,1056,971,1071,1051,1067,1056,1043,1078,988,1040,1060,1039,1016,1026,1063,1078,1069,988,1093,1086,1030,1043,979,980,983,990,992,947,1037,978,986,1057,973,1043,957,1001,981,1035,1026,932,921,996,1021,1008,1008,1013,1040,989,949,1080,795,778,785,774,812,821,754,766,799,783,783,785,797,789,739,784,787,784,800,808,769,787,816,782,792,746,801,758,768,835,869,838,840,873,867,804,852,804,848,851,857,855,856,852,828,792,823,872,829,806,898,804,852,826,860,857,903,848,832,836,813,804,855,844,910,889,920,874,941,905,895,880,932,898,946,904,924,914,872,889,898,829,881,885,944,840,981,870,943,872,898,913,896,844,923,899,877,1076,1087,1064,1052,1098,1026,1078,1014,1078,1108,1104,1093,1056,1118,1093,1067,1085,1080,1065,1001,1017,1081,1052,1023,1112,1030,1061,1065,1123,1077,973,1035,1071,1037,1081,1081,927,909,911,969,920,929,921,927,897,969,925,951,937,900,931,948,933,911,959,854,926,919,925,936,918,919,903,921,895,943,921,949,953,911,909,884,894,987,877,923,934,990,941,926,941,927,1000,988,925,938,935,937,1029,953,991,918,901,1018,959,892,990,995,1001,835,1059,1001,1016,1042,1005,1058,1043,1082,993,1052,1093,1045,995,1078,1087,1046,1052,1067,1029,1038,1062,1044,1033,1014,1005,1057,1067,1034,1026,1062,1141,955,971,1009,980,922,982,1030,959,987,993,982,975,1007,1008,996,1014,985,972,1019,975,1005,988,1021,997,1000,971,1009,975,1008,989,1022,982,954,968,953,951,928,938,974,969,938,925,968,953,954,974,975,925,947,993,982,965,929,987,952,978,989,927,984,955,950,964,956,968,1003,924,967,971,953,939,899,923,916,840,997,937,997,917,1040,927,919,976,897,876,883,912,847,952,894,908,895,918,866,870,948,960,930,1107,1036,1074,1079,1110,1046,1109,1104,1055,1052,1085,1114,1139,1108,1107,1101,1070,1090,1066,1074,1055,1066,1106,1082,1109,1051,1158,1077,1105,1113,1053,1081,1092,1072,1016,1076,1064,1047,1065,1084,1056,1059,1025,1090,1025,1020,1105,1067,1056,1002,1088,1089,1071,1064,1057,1014,1075,1067,1040,1068,1024,1115,1032,1051,1014,1027,1026,1044,1025,1032,1044,1043,1036,1048,1015,1074,1052,1055,1056,1023,996,1009,1013,1041,1039,1011,1041,1048,1080,994,1050,1052,1059,1067,1018,1076,1002,1009,1006,997,1039,985,1036,973,982,1010,974,973,1005,981,1009,996,1028,963,960,999,974,988,1030,971,986,957,1009,971,925,991,936,967,929,930,941,943,934,922,948,933,952,959,941,972,929,956,950,980,933,940,917,947,886,920,922,930,911,930,889,910,910,883,955,892,910,907,901,878,916,891,933,936,945,922,865,847,920,943,935,872,890,951,899,879,874,854,837,844,870,899,840,858,860,884,876,886,846,892,813,883,816,826,847,848,878,843,864,856,860,854,908,831,868,853,836,878,876,918,897,902,954,909,936,916,900,928,881,870,941,907,945,920,937,883,895,935,919,940,926,932,881,923,929,945,911,795,801,805,845,792,853,811,799,784,791,812,826,802,808,778,797,772,797,826,768,814,812,808,832,814,794,772,790,804,791,792,754,751,786,762,761,796,763,731,788,761,762,785,782,765,763,808,756,791,786,753,768,796,813,774,756,762,797,785,777,774,785,799,831,800,776,807,795,775,756,814,782,776,812,764,801,802,820,825,782,787,842,821,788,797,796,788,793,803,791,803,811,830,781,794,814,780,779,774,805,751,768,784,760,783,762,781,815,784,772,771,796,813,781,784,759,796,770,756,813,835,768,790,855,790,789,791,712,701,738,715,722,746,770,732,748,739,720,707,719,727,720,754,749,702,745,715,732,706,735,746,717,748,723,781,698,717,755,709,718,746,771,721,751,740,767,755,720,746,743,729,714,733,762,742,751,768,769,748,768,779,699,751,748,746,734,744,756,730,762,753,760,734,759,785,754,773,721,792,767,794,759,767,761,770,759,774,796,759,742,746,758,786,756,798,743,749,768,799,846,777,798,791,816,782,761,785,756,776,791,725,781,791,771,775,804,823,812,788,814,800,853,833,857,862,835,895,864,833,863,812,859,901,864,804,926,842,810,872,914,853,847,874,841,909,914,870,848,895,864,903,893,844,884,914,933,919,943,932,973,918,910,955,983,963,933,974,916,951,958,945,976,949,943,912,962,935,934,933,946,949,937,1103,1122,1082,1093,1077,1106,1126,1088,1125,1120,1081,1090,1096,1151,1090,1140,1065,1112,1132,1091,1107,1117,1097,1097,1119,1098,1120,1110,1146,1100,1117,1101,1061,1145,1094,1051,1087,1083,1079,1100,1069,1088,1126,1184,1139,1099,1055,1065,1081,1084,1081,1060,1027,1120,1079,1103,1035,1035,1150,1063,911,1067,966,938,962,1016,985,935,1026,925,968,920,993,980,992,999,995,996,1018,937,1041,1009,1001,957,919,965,979,1060,838,796,790,847,728,802,785,804,775,774,752,815,806,773,744,785,732,844,835,789,856,779,871,765,718,816,845,805,729,738,802,831,811,840,841,788,768,823,794,797,818,798,839,799,829,818,850,822,842,816,817,807,832,787,838,795,802,803,808,789,814,856,823,819,917,868,890,892,904,913,892,869,923,921,906,882,842,941,906,924,861,868,887,887,845,846,912,949,867,872,884,865,868,871,841,877,876,840,884,863,826,841,864,819,857,843,855,873,801,845,842,863,815,801,859,830,867,865,847,836,897,860,846,887,830,843,802,878,856,838,798,798,852,855,825,851,839,868,829,863,865,824,864,830,822,843,832,835,820,851,806,842,824,834,834,979,984,1009,986,986,973,981,997,976,987,960,975,1008,957,984,1023,992,1004,926,1017,984,1004,980,1015,992,985,1004,989,1052,984,1032,1048,1033,1069,1036,1010,1041,956,1032,1013,989,1030,1017,1027,1082,1078,1022,1055,1045,1067,978,991,1004,1071,1018,1022,966,1011,947,1018,918,980,1025,1115,937,1003,1066,1003,950,1003,926,1069,982,941,956,1028,900,975,1055,993,995,964,1008,913,908,894,905,906,913,907,933,928,858,902,888,866,904,842,858,911,856,876,898,900,889,940,865,869,911,887,888,882,897,915,909,814,798,812,827,787,805,866,804,783,838,817,792,847,818,800,845,829,818,792,803,835,790,810,801,816,821,794,845,832,816,803,847,750,768,786,801,763,772,765,748,764,773,758,766,742,747,760,766,777,773,769,762,777,745,764,797,740,778,762,757,725,752,717,727,777,754,757,757,772,742,770,733,773,783,769,725,771,752,771,748,734,756,693,797,760,740,781,729,754,727,782,846,861,858,808,858,863,885,868,871,814,839,880,838,833,815,900,821,837,859,831,865,869,857,821,849,786,897,884,853,831,843,846,836,835,923,957,949,885,964,898,911,930,933,918,932,975,896,942,947,885,951,912,947,910,914,919,937,900,967,933,944,918,933,915,914,958,924,894,1028,912,873,927,931,931,951,949,888,942,950,916,1005,961,994,959,896,962,932,940,980,964,921,928,974,946,949,990,969,927,976,965,977,927,929,908,852,878,897,883,882,836,860,865,830,895,902,879,851,902,850,856,860,878,853,869,894,862,880,863,835,837,848,885,833,879,825,832,816,822,826,826,829,830,841,841,834,825,807,820,820,837,817,787,815,838,825,813,839,811,792,796,831,986,1025,981,962,989,1003,988,1005,979,944,979,971,960,964,1009,1051,977,980,990,982,1021,1019,1018,993,991,986,923,933,1020,939,991,1033,896,914,965,1015,966,956,976,1061,982,971,1005,1002,941,980,994,1025,1004,1003,956,975,959,1023,977,986,989,961,906,900,936,946,914,913,900,944,935,925,904,886,892,924,905,888,910,951,964,904,944,969,868,922,920,940,925,935,921,891,917,961,863,870,970,899,888,932,888,978,885,900,869,893,915,936,951,893,1001,953,960,949,873,950,954,868,880,928,994,873,914,946,923,935,926,991,941,899,912,892,879,931,954,891,860,925,923,907,870,848,933,866,956,900,859,945,869,938,870,920,904,918,914,889,926,856,839,829,860,861,826,860,847,810,836,835,843,838,841,856,850,845,833,829,826,859,848,818,864,855,863,845,830,860,845,839,851,825,995,890,912,938,935,915,989,959,987,1000,957,969,977,951,957,976,958,974,936,923,998,953,957,928,1011,981,984,958,982,949,918,956,949,965,1013,993,1041,986,1037,1016,1022,1053,1024,1009,1046,1048,1042,1055,1032,1038,1023,1010,1007,1078,1059,1030,1050,1035,1056,1062,1069,1061,1041,1044,1022,1020,1002,1065,1033,964,1042,990,1042,979,943,998,1021,1066,997,996,1016,966,980,1064,1041,975,1100,1005,981,945,991,994,1040,1059,1056,1007,1006,959,981,992,970,1089,838,819,830,818,833,835,801,856,848,831,823,836,808,832,824,837,811,839,845,825,858,845,829,802,860,827,830,804,834,839,811,834,827,840,826,835,836,841,868,777,850,830,894,872,841,873,856,885,853,844,840,851,857,815,842,850,858,865,843,834,850,835,881,874,864,855,824,909,892,950,926,870,908,898,922,909,874,927,896,886,869,856,897,928,903,884,881,883,907,870,901,875,890,935,904,892,928,857,821,837,827,797,828,867,841,820,856,820,848,862,828,863,872,812,793,819,826,812,834,825,818,834,825,798,858,856,817,832,783,866,826,892,908,968,946,933,967,918,908,971,937,920,934,948,897,928,948,898,970,882,901,894,897,944,930,925,876,947,875,931,900,912,968,909,959,988,937,943,969,954,947,976,950,932,960,932,995,1006,948,945,941,957,951,967,903,971,982,912,967,929,948,952,1009,935,943,994,955,982,1007,996,867,884,851,890,883,861,892,830,932,867,868,868,854,914,865,855,956,878,816,891,900,963,773,895,906,854,903,902,887,947,940,860,952,1116,1095,1169,1096,1089,1112,1172,1128,1107,1118,1082,1112,1118,1168,1080,1125,1129,1055,1099,1081,1085,1110,1119,1080,1113,1070,1091,1081,1159,1095,1194,1035,1018,961,995,985,1019,1002,1023,1020,970,1079,1027,1006,1016,989,967,1005,995,974,1002,1014,992,1074,1024,1006,1022,1017,983,954,988,895,962,924,915,986,922,953,957,941,922,954,958,988,924,936,966,871,973,998,913,917,881,878,896,869,937,946,1117,1112,1159,1052,1098,1086,1036,1097,1059,1053,1052,1117,1088,1087,1081,1082,1074,1122,1108,1119,1124,1083,1107,1080,1077,1080,1060,1097,1060,1045,1006,1057,1056,1075,1058,1054,1058,1074,1028,1077,1035,1016,1071,1096,1019,1037,1068,1073,1043,1031,1056,1105,1071,1080,1031,1048,1072,1091,1039,996,934,935,965,950,941,950,975,980,986,984,1012,980,925,953,952,944,950,928,922,973,927,992,968,853,786,898,851,841,833,839,841,880,816,868,824,837,857,840,871,785,860,798,854,868,789,806,799,843,981,991,966,1015,1002,997,1014,1021,983,1026,991,964,1013,992,994,969,1016,1005,946,1026,1014,1006,1019,959,1038,997,1009,1006,993,1001,1092,1043,1000,1037,1032,1057,1104,1067,1100,988,1072,1018,1038,937,1070,1073,1035,1015,996,985,1072,1004,1073,1022,1058,1033,1030,983,998,1091,1034,1063,985,990,1034,985,966,1021,1051,1036,915,1003,1027,986,1020,1054,987,985,1004,1012,1001,1028,1050,985,1049,1012,1024,1000,972,1059,1062,966,855,898,847,894,867,818,852,807,857,848,877,872,849,808,845,820,846,880,825,791,844,847,874,806,838,823,845,880,818,832,888,832,869,874,948,872,897,962,908,985,917,944,955,960,970,964,960,951,919,961,956,930,936,917,937,950,908,933,997,976,848,908,1012,925,947,926,1030,1109,1027,1140,983,1060,1036,1072,1078,1072,1000,1081,981,998,992,1083,1116,1013,1130,961,1112,1047,1013,1101,1094,918,943,1033,909,985,918,1007,917,947,975,887,933,1046,1024,910,991,902,996,1015,954,893,873,1028,960,994,948,992,984,1050,1027,1005,1043,979,884,836,882,888,825,852,842,882,875,875,878,865,838,833,856,866,840,844,904,864,847,870,862,822,840,910,894,860,992,1011,1078,998,1058,1057,977,1032,1037,1030,976,949,1051,942,990,947,1059,1018,1021,1021,1041,1053,1066,974,1060,1004,1047,915,1086,1021,1008,1039,1013,1042,1038,1022,991,1006,1084,1013,1011,997,1031,1160,1037,988,1015,1033,1034,980,1071,984,1084,1047,1069,1005,1061,1067,999,1023,1027,1114,959,1003,1059,1048,857,946,917,905,880,912,905,899,902,912,871,873,921,881,923,880,876,896,899,882,898,895,901,862,905,889,876,905,891,860,904,924,881,915,950,917,887,872,861,884,873,857,881,881,929,877,852,893,893,877,917,881,872,837,874,869,871,818,857,826,857,862,863,880,881,868,855,866,883,891,996,960,977,934,968,968,976,925,898,982,964,948,975,949,945,932,993,940,941,941,964,964,969,966,951,972,931,960,939,938,919,954,857,851,846,846,872,824,866,840,876,840,867,819,871,827,841,834,835,825,839,834,863,858,828,858,860,889,885,890,878,878,963,895,905,962,884,948,866,864,886,891,843,841,891,897,884,871,889,921,888,845,882,915,931,861,838,849,857,841,886,850,816,845,890,857,843,840,837,844,850,843,838,867,835,812,838,867,817,834,840,862,832,891,897,906,872,923,896,862,897,915,898,862,929,908,995,947,863,862,915,916,897,896,928,902,864,877,882,869,881,934,874,904,844,950,957,975,1013,975,979,969,958,983,940,972,977,983,987,965,979,1011,953,910,979,970,989,980,978,968,964,989,919,976,991,984,981,988,838,805,833,795,794,811,826,818,817,836,827,823,832,818,838,822,821,829,823,841,802,803,825,819,849,809,819,805,812,809,840,833,820,814,815,816,840,838,828,819,841,846,828,832,813,831,818,848,835,836,825,790,820,846,871,831,840,852,781,839,802,773,768,806,790,819,800,819,760,828,813,798,791,806,790,793,794,805,823,764,805,796,789,783,823,776,800,800,790,798,820,781,830,793,778,862,814,787,854,803,857,821,796,816,852,794,804,815,849,765,838,822,826,826,805,818,830,835,831,810,808,883,919,837,872,872,877,852,848,892,979,874,896,879,921,874,939,946,849,935,869,840,916,892,921,917,920,899,907,857,934,907,790,878,821,878,861,842,821,862,869,804,858,835,806,823,854,860,821,882,830,873,903,779,853,864,837,857,824,826,842,796,846,909,844,847,899,885,864,887,982,939,910,948,943,973,968,944,931,1019,952,975,973,934,923,967,978,1013,959,974,936,970,1010,960,1029,979,971,936,975,997,1044,1017,1007,990,1001,1006,991,999,1005,974,994,1015,973,998,1022,1001,1019,1023,994,945,1001,1003,1044,1004,1011,999,999,974,973,987,1006,998,1019,1089,1097,1083,1113,1089,1093,1132,1084,1084,1122,1153,1113,1063,1045,1090,1124,1116,1123,1105,1151,1110,1088,1121,1145,1128,1136,1068,1088,1118,1055,1079,1104,1108,1068,1075,1102,1029,1082,1065,1105,1072,1097,1054,1067,1085,1050,1085,1041,1094,1067,1078,1071,1088,1079,1074,1045,1032,1096,1098,1078,1068,1031,995,994,1015,1039,1083,1012,1053,999,1049,1091,1016,1035,1033,1074,1001,1043,1025,1024,1026,958,1014,1035,1000,1062,1024,1051,1028,1038,987,1069,977,958,944,968,1034,1003,979,974,949,963,971,932,965,987,991,911,991,941,961,955,949,984,959,924,966,1017,994,967,1103,1099,1065,1094,1121,1108,1112,1077,1087,1136,1136,1084,1095,1082,1067,1105,1083,1062,1128,1128,1022,1084,1096,1110,1114,1079,1082,1070,1115,1071,1078,1076,1081,1055,1074,1117,1041,1053,1072,1028,1110,1065,1061,1038,1070,1068,1075,1041,1016,1071,1018,1027,1011,1017,1070,1017,1091,1105,1046,1070,1030,1081,985,1013,970,987,1004,967,936,933,951,986,981,977,1013,1013,942,1001,1012,964,978,978,988,948,962,1001,983,989,987,1004,1006,991,1016,1002,819,860,810,840,845,818,824,824,863,841,841,854,835,828,836,869,830,853,832,856,852,847,852,841,854,834,800,839,847,806,833,851,900,881,882,862,823,852,904,844,820,861,820,848,836,811,805,856,854,857,823,862,853,840,827,840,825,843,864,806,889,834,830,813,815,780,831,807,831,812,823,825,777,839,790,831,760,813,797,842,839,832,805,841,792,799,823,816,799,813,768,825,796,848,780,778,775,794,837,822,960,959,920,925,953,971,932,935,911,949,933,951,958,957,955,935,961,910,1002,952,981,952,942,938,943,987,948,928,983,929,932,950,938,859,869,834,842,772,847,824,830,873,859,867,844,824,837,866,864,869,809,859,840,841,877,833,879,868,830,831,861,879,842,888,868,838,814,843,839,747,820,922,843,878,900,896,862,862,862,927,868,916,852,873,821,854,878,833,848,913,847,907,835,905,834,832,849,871,836,854,865,881,834,845,808,865,824,861,822,855,862,834,808,812,831,834,856,843,859,851,777,810,837,794,779,801,855,798,797,822,813,818,801,808,792,788,789,764,777,803,761,811,791,771,816,791,814,813,806,825,784,784,819,835,756,750,797,832,784,817,749,764,798,825,754,836,764,791,801,818,785,814,823,797,846,773,819,813,792,802,762,1033,1006,1042,1019,965,981,1006,992,1020,1020,977,1021,990,960,1007,971,1015,938,994,964,1035,992,1005,1006,961,1031,1032,1019,933,979,1055,996,963,944,778,830,791,798,810,768,810,832,783,814,815,823,827,801,846,812,822,816,818,791,807,782,797,822,822,811,800,833,834,688,737,787,834,855,860,809,742,789,817,718,760,846,851,737,720,661,790,704,620,790,738,701,723,725,746,759,656,1219,1167,1173,1185,1172,1162,1146,1144,1162,1183,1152,1145,1166,1221,1150,1191,1164,1185,1165,1175,1145,1173,1181,1181,1209,1146,1181,1139,1159,1166,1158,1157,1142,1222,1111,1077,1121,1102,1051,1086,1091,1039,1067,1081,1059,1113,1095,1100,1026,1060,1106,1066,1090,1082,1072,1125,1082,1045,983,1007,1006,992,994,1033,1013,1009,975,1039,1011,995,1005,1039,1005,1015,999,1034,1022,977,981,1030,999,1006,1010,972,999,999,964,972,1024,988,1109,1112,1087,1118,1086,1140,1108,1087,1090,1117,1148,1133,1096,1118,1099,1097,1104,1133,1065,1168,1085,1139,1135,1109,1118,1108,1103,1138,1078,1080,1138,1125,1098,1169,1103,1067,1063,1085,1080,1069,1051,1089,1023,1073,1079,1055,1093,1094,1089,1034,1053,1034,1083,1064,1125,1075,1055,1033,1092,1057,1066,1045,1109,1128,1084,1105,1057,1066,1053,1042,1020,1042,1060,1049,1057,1070,1051,1120,1067,1047,1076,1051,1031,1095,1058,1048,1116,1048,1036,1050,979,1033,1056,1035,1026,1073,1068,1102,1079,1070,1089,1051,1050,1104,1073,1036,1084,1058,1067,1022,1016,1037,1130,1082,996,1094,1084,1105,1084,1016,1069,1077,1080,1081,1013,923,976,1040,979,980,972,973,1018,1000,1057,1089,1012,1074,1070,1048,1079,1026,1119,1064,1035,1041,1049,1014,1004,1003,995,807,864,940,889,865,882,907,844,910,873,918,886,888,854,869,937,922,864,884,893,841,829,949,781,863,831,876,849,795,816,773,796,778,819,754,799,764,817,747,783,799,815,818,780,764,784,790,759,790,784,781,754,804,749,851,801,794,784,760,854,795,827,779,770,811,756,748,783,737,715,765,735,721,735,754,753,738,768,813,755,751,755,734,737,734,763,760,725,734,725,763,747,722,761,756,774,753,778,738,783,770,759,779,769,784,751,745,787,774,761,773,768,755,781,768,766,747,771,774,725,801,780,734,758,770,796,804,787,813,873,984,924,955,926,898,903,952,816,821,960,959,937,906,897,870,902,897,802,926,904,981,914,912,895,923,949,919,895,992,950,944,734,756,714,737,745,740,742,742,755,750,758,713,756,792,759,725,734,737,767,775,746,759,769,746,770,728,766,752,739,735,765,760,693,732,695,639,855,682,806,821,573,671,806,680,685,660,710,773,882,620,753,758,813,642,854,782,731,814,721,779,689,798,739,833,795,1048,1087,1029,1020,1133,1061,1066,1053,1113,1098,1030,1080,1093,1024,1095,1117,1081,1074,1075,1106,1104,1059,1049,1062,1016,1089,1056,1039,1104,1055,1084,1087,1085,1041,1047,1052,1063,1045,1029,1035,1066,1069,1027,1085,1050,1044,1081,1051,1019,1039,1044,1005,1053,1046,1032,1053,1064,1067,1066,1053,1024,1065,1032,1049,1076,1042,1026,1025,1018,1009,1038,1001,1002,1063,929,994,1052,1047,1020,1025,993,1069,1033,1037,1015,1027,1002,996,1013,953,985,1043,1029,1007,1001,878,931,949,903,934,927,904,881,872,875,904,879,846,873,820,854,840,898,877,901,884,827,840,853,858,855,792,718,744,787,838,785,786,723,741,736,751,797,748,794,751,785,742,789,808,761,762,724,819,832,796,829,1012,1015,993,1060,958,985,993,1007,1005,981,1028,991,984,970,1016,1019,1013,972,966,994,950,1042,1007,1000,983,1020,987,1031,1056,922,938,976,911,915,959,964,960,935,904,964,944,966,962,943,905,986,955,910,992,936,908,973,905,925,891,1010,961,967,938,902,993,978,959,905,872,936,904,956,906,895,881,929,896,893,945,885,935,941,879,931,951,943,926,890,903,887,875,897,886,928,901,1003,944,931,927,841,872,914,909,1043,1014,1038,1069,1067,1071,1044,1021,1034,987,1045,1037,1036,1085,1029,1021,1021,1025,1045,1009,1011,1020,995,1043,1019,1039,1071,1040,1016,921,935,925,947,880,895,919,901,930,950,888,907,916,944,940,919,948,888,955,943,895,928,907,942,921,907,908,907,924,940,914,914,937,931,896,928,857,865,894,843,823,878,847,864,871,853,917,862,879,865,842,858,878,888,808,860,840,880,854,863,877,867,814,910,886,872,889,884,860,879,828,861,848,888,831,845,868,827,872,888,843,893,847,807,884,875,895,883,882,873,874,873,893,833,882,853,874,848,820,818,825,832,834,798,839,809,837,820,805,811,805,786,840,869,816,802,843,858,816,828,795,828,831,833,831,834,802,806,792,783,795,774,813,794,765,766,790,758,763,768,788,788,778,794,793,765,806,794,810,806,769,767,779,766,756,737,769,806,761,816,766,742,757,772,746,721,740,752,733,732,742,712,715,712,719,741,718,738,725,733,720,733,704,692,714,735,722,677,696,678,673,693,698,663,670,719,681,681,710,731,698,700,699,722,707,663,690,707,691,689,695,726,701,698,710,721,730,719,717,696,708,681,728,671,705,678,716,705,692,687,693,684,691,675,698,718,694,692,723,671,676,693,695,723,718,700,673,724,754,759,730,713,708,718,710,748,723,773,768,675,637,684,673,679,640,738,729,751,723,740,701,723,687,667,700,660,712,683,706,1010,958,956,947,915,892,960,934,970,971,953,938,980,950,965,911,882,999,935,968,967,941,916,971,899,971,958,819,868,865,859,870,834,840,861,883,835,861,854,845,834,836,864,853,861,856,838,857,830,871,853,861,881,879,848,851,841,875,815,821,792,782,817,812,812,807,844,818,835,778,836,838,823,794,821,795,839,821,838,810,820,835,806,814,808,802,796,804,812,780,771,773,770,802,742,772,788,789,788,746,739,790,739,743,762,755,766,773,761,798,768,750,809,720,758,728,770,753,798,741,741,792,842,824,854,835,819,832,842,818,841,848,818,870,923,830,868,849,849,821,787,831,846,809,787,828,868,847,809,805,832,773,839,843,851,832,787,802,790,790,783,799,768,775,800,784,783,795,775,779,775,816,777,800,795,792,790,796,785,805,831,796,814,816,783,792,793,786,787,832,819,843,855,851,819,845,770,789,822,812,811,833,811,818,801,786,855,819,838,798,809,822,798,788,834,840,819,821,852,799,812,766,779,797,818,753,768,798,734,762,779,817,726,725,797,775,743,801,794,799,772,749,761,787,770,763,773,1106,1118,1131,1097,1095,1108,1124,1106,1074,1086,1082,1054,1119,1060,1086,1123,1156,1099,1101,1078,1076,1146,1150,1178,1091,1071,1109,1056,1024,1045,1072,1052,1018,1000,1040,1036,1066,1039,1048,1003,1071,1038,1046,1056,1059,1000,1051,1033,1063,1064,1009,1043,1019,1019,1098,1041,1088,993,883,907,917,903,883,894,901,941,911,873,910,875,879,900,897,868,887,863,877,923,907,914,919,904,919,937,882,916,913,896,915,795,820,789,821,856,810,818,804,829,827,809,807,789,814,796,789,821,857,802,821,802,816,824,797,806,836,797,767,826,790,789,771,787,795,781,789,802,784,811,756,794,788,807,769,753,765,752,789,796,782,821,779,825,795,780,749,786,995,1020,1027,1076,1000,1046,997,992,1060,1001,1047,1045,998,975,1011,1040,1096,1062,1024,1112,1034,1059,987,1072,972,1027,1018,1027,997,1035,1040,1022,1054,1052,1100,1028,1037,1014,1081,1013,1034,1055,1075,1006,1063,1056,986,1091,1044,1051,1100,1091,1037,1074,1009,1001,1091,1011,932,885,925,917,929,902,870,927,920,849,901,866,913,920,887,904,870,951,893,949,952,979,905,889,895,914,920,860,854,847,861,861,864,854,868,892,844,871,882,816,844,840,864,898,815,946,868,882,825,928,960,849,862,894,935,860,856,904,901,785,830,935,917,890,861,1008,1003,946,1023,966,962,972,981,986,1037,966,1030,1011,939,957,986,1002,971,984,981,952,1002,950,990,1001,953,919,987,975,1006,1118,1097,1082,1142,1102,1085,1112,1138,1102,1146,1125,1074,1101,1103,1091,1085,1104,1070,1055,1088,1108,1089,1114,1067,1033,1049,1001,1027,1084,1030,1084,1045,1029,1016,1055,1020,1061,1054,1091,1047,1053,1023,1031,1078,1007,1073,1074,1034,1009,1039,1058,1062,1052,991,1057,1030,911,1033,1045,1003,1070,1031,1057,967,1022,1005,1032,1014,1009,1008,1047,991,1057,1020,987,1021,1084,983,1052,1039,1044,1012,1013,1017,1041,1062,1024,1010,1032,1054,1041,1040,974,1007,1033,1088,966,924,1019,1023,987,1031,977,1020,948,1040,989,1043,1037,948,1009,991,992,971,1016,1018,974,955,1050,946,954,1001,1064,1002,996,997,909,1017,938,801,795,820,818,826,832,805,825,820,830,835,844,815,747,787,816,760,813,809,799,849,804,811,812,807,830,792,831,805,829,776,801,753,795,794,812,775,834,772,744,776,762,802,812,812,769,771,823,778,832,780,797,787,753,809,823,804,784,791,771,821,774,833,867,845,863,861,866,885,893,854,887,855,874,887,843,867,837,867,842,870,872,861,892,841,849,844,857,890,831,900,892,891,881,872,860,773,792,779,765,768,786,801,778,774,766,807,794,783,767,787,786,770,791,772,784,784,782,782,737,763,780,742,810,765,767,804,746,801,831,770,843,819,832,833,900,814,808,861,839,797,802,794,808,797,844,825,860,858,844,808,884,840,806,805,802,811,809,785,844,858,855,777,880,813,1076,1068,1044,1096,1069,1058,1075,1103,1096,1073,1064,1088,1060,1070,1067,1045,1043,1044,1071,1064,1055,1065,1093,1037,1061,1087,1048,1095,1089,1075,1019,1028,1016,1038,991,1033,1033,1034,1030,1001,982,1024,1026,1036,1014,1027,987,1018,1018,1017,1067,1040,1007,1040,1007,1026,1035,1050,1055,1012,1032,961,990,1035,1004,906,967,948,1002,996,974,984,938,982,966,955,950,1009,979,993,966,970,1026,980,973,1003,1014,956,1011,984,1044,1014,1003,1056,1013,994,1038,1052,1035,999,1023,998,1050,998,1029,1058,1000,1051,995,1015,995,992,998,1001,1023,1021,1046,1044,979,972,967,921,938,955,942,935,922,962,926,983,1016,922,967,933,941,893,916,933,961,956,930,925,932,926,919,985,930,910,928,961,891,857,865,868,894,867,832,839,857,849,849,853,897,870,835,858,836,837,863,860,820,838,855,842,850,823,899,854,839,817,831,837,886,861,881,869,888,881,877,888,917,896,878,870,875,899,916,906,857,891,887,896,933,861,905,850,916,903,954,913,915,893,864,931,929,885,883,886,860,868,910,884,879,872,848,929,875,858,933,890,895,903,939,903,890,855,936,885,927,920,809,805,845,848,820,802,814,739,840,838,849,846,837,793,826,798,858,851,854,823,874,856,749,820,869,795,1079,1032,1034,1062,1007,1056,1046,1026,1041,1070,1014,980,1027,1051,1048,1101,1079,1023,1030,1072,1010,1032,1029,1049,1031,1021,1069,1073,1039,1027,1022,1096,931,926,954,912,954,927,1010,931,946,915,934,927,941,922,921,963,940,949,936,962,955,938,915,938,916,934,982,882,930,887,907,958,873,935,1006,872,872,975,949,915,945,892,971,919,926,873,943,936,896,891,965,866,910,838,920,919,919,969,1051,1010,1051,1027,1038,1044,1053,998,1069,1062,974,1044,969,1018,1032,1002,984,1028,989,1018,1003,973,969,970,965,948,947,878,857,838,835,800,813,831,839,852,833,843,826,803,760,804,837,809,837,807,833,833,799,811,837,852,825,821,682,803,805,760,773,819,836,739,779,759,779,764,764,700,776,705,798,828,762,773,829,766,771,770,748,760,854,788,798,807,1048,1080,1086,1001,1139,1074,1059,1088,1050,1043,1150,1057,1095,989,1105,1020,1135,1053,986,1157,1180,1069,1110,1128,1042,1088,1143,1193,1070,1022,1034,852,921,912,861,880,927,894,920,939,870,884,945,953,953,919,941,913,883,856,911,927,876,927,951,956,831,969,886,891,914,938,977,959,880,797,865,850,822,883,831,845,845,870,852,828,867,857,865,817,866,862,858,802,857,857,848,831,841,802,849,818,830,870,956,913,914,989,929,941,957,942,953,928,915,898,966,980,939,945,930,898,939,910,945,916,934,915,939,981,799,775,846,834,852,839,865,833,858,787,815,869,830,833,808,835,853,843,880,867,810,844,851,810,822,832,856,835,809,1014,1091,1016,1014,1031,1014,1045,990,1107,1022,1041,1060,1040,1058,1057,993,1040,1021,1020,1033,1037,1038,1028,1047,1066,1032,1049,1048,1049,1024,958,1036,1042,1027,949,1025,980,956,960,983,965,949,1030,1000,956,975,1007,922,928,1002,953,973,983,976,930,981,961,1035,999,988,1026,947,982,965,963,1009,998,1101,971,1026,1042,993,1075,1019,1039,1025,1067,1008,1103,1069,1058,1034,1059,1036,1081,988,1108,1017,1034,1021,1047,1093,863,942,957,915,909,855,890,953,905,877,869,905,915,895,877,906,913,945,886,861,924,921,904,877,915,970,918,933,924,872,908,953,919,925,1023,980,930,931,881,912,953,950,950,857,1008,893,978,1049,945,1011,1043,1030,968,1011,1013,1016,915,1001,921,939,1009,997,1056,1055,1039,1096,1118,1137,1094,1076,1036,1032,1034,1078,1077,1092,1068,989,1052,1070,1091,1036,1092,1134,1054,1030,1116,1064,1063,1067,1131,1062,1124,996,1077,1070,1120,1135,1191,1141,1105,1172,1154,1195,1119,1183,1164,1088,1135,1136,1138,1157,1145,1118,1143,1158,1141,1095,1149,1129,1128,1147,1143,1186,1119,1135,1092,1078,1056,1054,1039,1018,1109,1000,1034,1067,1094,1071,1067,988,1066,1106,1051,1086,1026,1026,1051,1071,1055,1048,1045,1059,1001,1063,960,950,968,953,921,939,990,958,948,1015,942,1010,928,1009,953,960,948,931,943,942,982,994,1017,940,995,978,979,969,922,950,1030,1087,1068,1115,1119,1095,1099,1137,1107,1131,1078,1101,1119,1122,1124,1094,1158,1088,1130,1108,1125,1098,1130,1120,1062,1157,1141,1122,1086,1088,1183,1017,993,1026,1029,1038,1052,1016,1028,1034,1040,1018,1036,1016,1113,1091,1112,969,1075,1012,1032,1059,1068,1051,1014,1075,1039,1081,1075,1066,1030,1051,982,970,982,954,932,959,914,908,970,988,969,957,958,995,950,988,986,966,980,955,962,921,939,983,943,932,962,953,993,985,913,1001,943,1052,1034,1003,1020,1064,1000,972,1035,1045,1022,1045,1004,1003,1019,1048,983,1064,974,1047,972,991,1044,1028,1001,995,1019,973,1010,1087,865,795,830,786,809,831,776,858,811,843,851,786,804,825,855,827,860,844,743,818,820,835,815,792,856,811,738,812,798,813,845,850,830,705,766,775,823,753,920,760,757,721,745,701,793,827,847,759,705,812,755,751,759,830,778,702,743,803,733,781,785,803,847,1076,1161,1067,1140,1056,1081,1158,1119,1090,1097,1157,1098,1202,1118,1175,1047,1154,1108,1099,1083,1118,1122,1085,1085,1079,1095,1087,1120,1074,1058,1077,1109,1148,1150,1114,1063,1135,1061,1057,1129,1062,1082,1042,1035,1107,1089,1035,1063,1051,1068,1101,1116,1052,1140,1052,1106,1140,1133,979,1107,1053,1059,1066,1087,1087,1099,1096,1089,1066,1107,1027,1144,1086,1032,1040,1080,1007,1121,975,1104,1019,1029,1009,1007,1084,999,1099,1034,1034,1014,1007,778,858,758,848,809,805,753,845,832,856,800,883,762,748,871,788,867,853,838,852,794,838,887,874,844,811,885,741,791,826,848,812,811,832,794,827,808,887,860,859,859,817,839,779,831,864,834,811,821,777,846,876,939,931,899,949,954,915,933,954,873,913,888,898,930,944,925,896,895,924,916,945,963,932,928,954,948,926,980,891,950,1088,1157,1111,1110,1081,1065,1123,1099,1105,1101,1098,1125,1110,1140,1141,1096,1066,1146,1115,1130,1123,1136,1102,1126,1095,1132,1124,1070,1169,1115,1122,1051,1031,1056,1070,1078,1071,1086,1080,1068,1048,1050,1022,1050,1065,1136,1027,1114,1103,1076,1042,1053,1119,1071,1035,1044,1064,1073,1048,1084,1066,1042,1070,1039,1033,1013,1056,1050,997,1012,1094,976,1052,974,1033,978,976,1053,1053,1006,1011,1030,1040,1028,994,1009,1040,1067,1026,1043,1011,1052,1017,1060,1037,1003,1002,1002,965,965,985,968,953,962,969,961,1001,947,942,1013,966,936,946,940,985,1017,967,946,929,955,976,955,956,957,921,956,935,1128,1075,1084,1119,1062,1086,1108,1115,1095,1100,1071,1114,1123,1077,1094,1082,1116,1135,1084,1030,1066,1119,1072,1116,1128,1102,1089,1084,1055,1093,1052,1085,1068,1056,1052,1097,1038,1022,1031,1040,1014,1034,1038,1037,1037,1064,1046,1080,1058,1019,1089,1041,1034,1042,1090,1035,1076,1026,1052,1019,1101,1093,1072,1063,1064,1010,1064,1059,975,1034,1068,1039,1044,1016,1075,1075,1029,1034,995,1037,1093,1027,1069,1027,1054,1009,1049,982,998,1041,1014,1073,1063,1088,1002,987,985,967,963,992,961,972,976,980,1009,980,950,973,955,988,989,966,1009,998,975,965,988,965,1026,947,963,951,959,980,973,991,999,976,930,901,899,872,914,889,873,920,872,897,904,882,893,916,899,863,882,873,870,862,909,900,913,905,905,891,908,923,878,882,892,889,876,912,880,867,879,903,930,868,942,926,879,905,889,852,901,876,922,926,939,907,881,919,878,864,851,887,880,911,906,877,902,916,889,822,997,993,935,968,971,985,960,997,994,945,950,957,950,967,939,959,1009,980,997,895,1005,965,971,974,903,990,968,1009,939,949,997,954,910,1075,1012,1004,978,995,1001,921,914,982,896,991,938,1002,938,940,955,1009,958,1024,937,959,936,917,923,1037,952,983,964,1017,990,1057,966,1002,1044,1002,941,955,979,1020,1038,996,973,1039,1033,1003,957,1045,1042,1001,982,1020,1037,975,1021,986,1007,1007,1006,997,1043,1028,1044,1066,1046,1014,1008,999,1003,1004,991,1009,999,987,968,990,882,929,859,890,913,777,913,952,882,917,939,829,921,886,850,923,869,840,871,888,813,861,865,890,887,877,973,890,901,861,935,799,794,808,830,810,819,770,838,819,825,836,796,772,823,786,819,811,817,860,818,796,823,831,852,757,837,816,847,803,854,820,1078,1072,1098,1083,1131,1107,1121,1106,1047,1096,1048,1021,1074,1163,996,1144,1118,1113,1112,1070,1110,1057,1051,1100,1023,1062,1129,1104,1090,1105,1084,1072,1070,1048,1058,1076,1008,987,1119,1043,1044,1043,1081,1059,1057,1031,1049,1123,998,1058,1075,1023,1036,1026,1046,1099,1060,1078,1080,1091,1048,1009,1086,998,873,924,883,904,818,900,872,827,870,894,866,854,925,927,903,888,865,894,837,850,918,885,883,861,852,850,870,885,877,854,855,795,880,835,800,859,823,807,862,815,770,811,864,841,850,832,857,849,827,820,850,864,850,827,849,817,831,794,941,892,899,929,976,940,948,904,976,967,945,929,904,962,941,900,917,959,894,922,898,960,929,951,889,947,900,956,949,936,982,955,924,957,962,1017,922,973,963,937,923,962,901,960,960,990,959,959,956,965,954,956,939,892,1015,942,957,979,960,946,946,934,1060,1019,1071,1045,1090,1022,1042,1114,1048,1083,1071,1082,1059,1060,1075,1074,1026,1026,1020,1118,1118,1080,1091,1029,1040,1055,1076,1054,1028,1117,1042,1029,946,892,954,822,859,946,904,850,942,982,911,906,927,922,910,970,956,899,926,953,908,914,914,923,895,890,951,945,916,950,954,959,901,894,984,958,981,887,1095,905,900,1024,979,1038,940,1028,928,942,1011,912,1001,955,994,867,887,979,938,968,905,1014,969,990,1024,1041,1063,1063,1061,1033,1015,1042,1039,978,1036,1036,1016,1003,1081,1083,1057,975,1066,1014,1068,1058,1027,1089,1025,1032,1070,1042,1048,1052,1092,1051,1038,1002,946,1091,1061,969,1003,1127,1097,1036,1074,1060,1049,1024,1065,1028,1058,1079,1051,1040,1074,1108,1087,976,1014,1055,1040,1019,1051,1023,1010,956,966,957,953,974,928,958,968,952,963,951,929,953,954,972,948,953,973,901,939,929,950,942,959,922,954,994,862,884,866,856,873,847,861,872,838,864,868,857,874,856,876,912,873,860,897,888,843,905,889,871,885,891,890,825,825,920,967,961,932,931,954,1008,911,976,1002,956,985,911,1013,951,955,944,950,932,978,1039,955,963,1017,1030,921,960,934,1002,1030,997,1066,999,1017,1026,994,968,1011,1014,1021,992,1018,1006,1027,1041,992,998,1002,1014,1010,1022,1023,1015,1020,1050,1024,1030,985,1014,1002,1018,971,998,1151,1158,1181,1198,1138,1158,1183,1154,1116,1242,1102,1178,1195,1189,1178,1160,1108,1175,1117,1197,1224,1142,1081,1154,1151,1204,1122,1146,1160,1156,1133,1137,1093,1103,1095,1105,1082,1060,1094,1031,1068,1066,1080,1045,1079,1091,1092,1043,1076,1049,1065,1025,1128,1131,1083,1071,1082,1100,1072,1097,1071,1071,1042,1052,1093,1024,997,971,976,998,996,986,959,936,998,1001,980,973,985,990,1010,1001,979,998,1004,1024,951,976,1009,953,980,1019,1029,1006,974,1053,1003,1040,1023,1001,1045,1026,969,1061,1008,1094,1077,993,1053,994,921,1031,975,1008,1024,1036,989,1010,1024,1037,998,1097,857,864,869,852,921,871,837,891,837,913,853,887,839,884,904,912,874,870,861,852,902,865,881,840,852,907,890,807,849,863,838,832,842,872,822,791,810,876,827,827,782,888,824,849,830,791,845,818,797,847,806,754,858,801,786,977,1021,974,941,969,1022,961,940,991,979,967,918,989,1025,987,964,961,973,952,998,961,966,946,944,987,990,916,959,966,1009,975,970,1086,1072,1101,1097,1129,1084,1107,1157,1140,1100,1071,1145,1111,1112,1095,1119,1117,1120,1087,1044,1148,1094,1072,1125,1090,1104,1073,1109,1125,1099,1108,1073,1052,1063,1071,1081,1013,1059,1002,1086,1028,1031,1101,1116,1088,1093,1037,1086,1073,1025,1074,1044,1077,1079,1045,1004,1083,1095,1070,1141,1030,1029,1076,1045,1075,1038,980,986,898,954,997,934,938,982,926,959,950,988,938,948,874,911,897,880,939,923,892,915,1009,915,931,932,976,937,880,863,860,802,810,834,838,913,845,860,853,835,849,851,844,879,859,874,862,852,871,841,860,865,873,855,869,843,821,857,888,858,866,822,851,893,863,871,853,830,891,855,855,868,831,853,884,849,862,849,858,888,860,827,847,845,846,848,842,845,854,890,856,854,857,864,880,915,879,848,851,820,801,837,848,865,833,934,788,845,836,825,849,860,802,899,871,886,854,931,1081,1072,1106,1077,1091,1048,1045,1066,1011,1054,1051,1071,1045,1048,1069,1081,1068,1052,1067,1071,1056,1031,1067,1044,1088,1067,1059,1075,1033,1064,1046,1046,1055,1016,1010,1007,1046,1014,1045,1058,1032,1012,1010,1061,977,1029,1025,973,976,1024,1024,1033,1004,1041,1040,1045,998,1040,1021,956,1002,994,995,1005,1029,1020,1003,982,1004,1012,1026,1007,974,996,1000,1047,956,1023,1003,975,969,995,1005,1003,995,1006,1040,1034,954,987,986,967,898,920,980,992,1044,926,991,968,935,883,953,940,981,922,945,934,987,972,934,925,991,970,959,1140,1109,1135,1123,1097,1086,1136,1127,1125,1140,1112,1084,1137,1109,1094,1110,1118,1122,1138,1173,1115,1106,1106,1134,1104,1083,1131,1151,1113,1172,1127,1082,1146,1067,1144,1163,1110,1103,1079,1059,1064,1078,1111,1048,1057,1093,1086,1075,1041,1069,1112,1081,1109,1078,1076,1071,1091,1094,1012,1062,1110,1122,1069,1102,1038,1096,1081,1102,1102,1120,1093,1099,1067,1097,1147,1125,1148,1085,1099,1115,1150,1095,1119,1092,1147,1106,1085,1070,1151,1134,1170,1079,1124,1127,1086,1148,1145,1096,1088,1059,1093,1115,1081,1060,1065,1087,1090,1129,1081,1112,1092,1138,1072,1061,1082,1099,1074,1067,1094,1089,1043,1074,1068,1118,1101,1170,1101,1147,1025,943,918,951,990,979,907,968,957,883,977,926,934,938,939,992,963,908,989,966,970,921,951,967,983,965,944,950,941,964,1013,911,970,944,929,904,899,931,970,954,931,947,963,941,972,1016,932,939,946,909,906,888,907,926,932,967,901,921,894,1012,920,980,999,997,1036,1033,1005,984,1000,980,1017,1002,1006,994,991,1016,984,996,996,1020,1056,1015,1022,1051,1013,1000,994,1062,1038,998,1055,996,979,946,928,984,940,949,975,1004,981,925,934,928,1002,960,945,954,997,956,948,953,994,971,968,986,971,980,939,961,991,915,948,945,964,861,887,821,862,841,940,899,854,904,848,823,875,838,829,872,880,926,843,866,857,839,871,896,850,867,873,883,852,885,841,821,829,899,871,820,1109,1116,1116,1109,1049,1117,1125,1078,1156,1167,1099,1122,1113,1189,1096,1155,1057,1071,1161,1171,1121,1098,1057,1106,1115,1063,1115,1131,1090,1070,1097,1200,1056,1110,1083,1055,1060,1048,1055,1057,1021,1066,1068,1033,1047,1058,1082,1038,1032,1045,1047,981,1044,1031,1073,1024,1104,1075,1087,1006,1033,1043,1071,1068,1011,1036,1042,1047,967,991,972,978,947,958,992,982,989,997,975,1007,982,987,975,1001,1011,988,981,974,1004,939,975,980,964,988,994,992,983,988,971,973,960,1001,978,974,996,967,994,966,957,934,956,984,929,930,941,952,947,935,966,934,958,959,956,930,946,1003,978,968,935,948,984,962,983,958,974,942,963,887,929,926,949,931,897,931,956,902,890,930,929,930,968,905,912,950,982,960,912,962,915,989,972,943,899,912,921,938,919,947,925,945,968,897,917,901,907,918,949,967,888,906,1092,1050,1076,1008,1091,1091,1126,1036,1109,1079,1061,1079,1095,1082,1095,1088,1100,1069,1069,1055,1046,1023,1016,1076,1031,1046,986,1025,1032,882,910,898,933,820,969,875,942,959,896,920,899,956,919,929,869,886,923,947,935,901,880,930,892,936,944,956,968,913,992,940,1109,918,936,985,1042,1024,947,924,1075,1018,899,904,979,1033,1026,977,1010,912,967,1018,1024,1017,1018,972,891,1015,1022,885,1016,1071,1013,970,1025,1124,1096,1014,1034,1070,1020,974,1057,1036,1060,989,1048,1055,1048,1034,1106,1017,1027,1037,994,1035,1044,973,1050,1037,1009,1025,1053,1059,1062,1069,1036,1043,1099,1137,1125,1039,1146,1118,1040,1122,1048,1058,1059,1130,1135,1099,1055,1062,1108,1090,1080,1078,1083,1038,1059,1082,1020,976,1018,1016,1055,1104,1092,1080,1049,1052,1084,1070,1058,1083,1023,1044,1109,1007,1027,1079,1139,1081,1059,923,962,946,926,921,940,997,913,919,926,924,904,940,960,982,919,950,937,930,883,952,954,977,901,892,896,964,902,931,906,963,836,784,795,804,853,833,816,778,770,787,788,826,822,796,822,807,822,799,783,788,820,825,812,800,811,791,773,779,803,848,836,788,817,777,761,759,790,806,770,768,790,761,795,830,760,750,791,806,774,762,761,775,718,767,769,766,794,769,758,777,734,795,755,804,726,763,771,967,1028,1022,1003,979,936,1020,943,1009,1062,1077,930,1020,979,1023,976,985,984,983,959,1078,1020,1023,989,1027,1048,976,990,1038,994,995,1022,1008,954,1026,942,920,955,991,931,904,941,921,975,947,934,962,953,998,924,960,912,991,965,944,936,959,901,959,918,997,948,919,954,883,902,852,836,941,789,883,866,880,887,874,870,912,809,820,856,884,875,822,800,803,808,843,843,824,816,841,825,815,855,858,878,849,774,848,748,718,763,762,765,763,733,725,772,767,724,749,762,771,743,753,719,709,753,722,746,767,749,747,769,753,732,715,755,750,800,752,782,739,706,749,754,746,726,792,755,794,730,722,764,727,761,776,732,718,740,684,789,761,763,743,750,753,783,819,724,792,775,799,801,783,810,799,813,766,774,759,776,770,747,826,765,794,756,741,789,807,763,827,743,815,770,810,796,769,838,807,742,771,763,767,768,794,767,773,765,848,749,808,746,791,780,781,768,812,789,767,787,763,803,897,915,917,955,907,924,909,861,906,896,867,911,917,943,852,974,869,919,898,884,912,908,911,874,923,913,969,896,887,896,980,1011,978,955,989,964,967,1001,1002,1001,982,979,951,972,960,983,978,943,977,964,961,980,974,997,962,986,974,983,900,884,877,883,875,831,852,908,828,863,863,872,847,899,866,889,854,843,902,858,842,878,880,857,883,878,889,856,855,802,919,904,937,964,901,974,924,937,942,955,910,956,922,943,914,986,924,901,920,1013,946,984,955,961,952,934,908,1029,1056,1012,1044,1007,1005,1019,1030,1019,1007,1003,1029,1013,1021,1009,1009,1056,1027,1013,1020,1060,1008,1040,1031,1042,1042,1062,1052,1063,1043,1006,1008,1055,1034,1038,977,971,1011,971,1004,991,1026,1016,999,1004,988,998,992,1014,1005,1046,1009,1012,1026,998,1038,1038,1010,1032,1029,1032,991,1027,1012,1020,996,967,980,971,988,977,986,967,977,980,991,995,992,971,968,976,994,996,973,1010,986,977,950,977,980,987,987,978,992,962,998,949,987,985,973,928,933,1008,962,923,940,990,971,953,953,979,973,935,986,943,937,916,970,959,937,983,918,970,975,912,965,901,960,953,816,837,867,863,852,855,811,818,860,862,849,836,845,823,851,851,848,834,851,868,869,833,847,855,803,809,818,827,840,850,864,820,849,821,896,877,899,860,886,892,853,903,869,905,889,848,891,888,959,865,892,920,876,911,891,835,868,878,929,882,933,930,880,825,780,808,845,862,806,822,832,863,848,829,825,849,802,809,875,823,889,820,840,863,814,875,876,840,816,862,783,777,909,908,964,888,882,931,899,952,958,941,926,945,931,876,966,1001,884,918,935,932,895,928,900,978,920,816,1030,1023,1011,1009,1048,1045,1024,1070,1024,1017,1050,997,1017,1063,1049,1031,1031,1033,1032,1044,1057,1032,1038,1027,1015,1028,1058,1014,1008,1042,1059,1042,1103,1003,1033,988,1008,1005,1025,1012,1026,1005,1034,997,1023,1028,1053,1010,1018,1024,1006,1057,1039,1039,1040,992,982,1008,1004,1047,1033,1011,955,1042,1010,977,996,997,985,974,1008,1022,984,986,983,986,985,985,994,995,1007,1003,965,985,991,973,984,968,987,1016,972,978,994,971,1022,941,986,1032,945,974,965,921,973,934,948,982,997,956,995,981,995,1000,952,1025,943,974,992,976,940,960,993,956,1028,958,963,972,837,825,851,834,812,836,823,863,851,833,840,831,857,797,825,814,848,809,825,835,840,861,850,833,838,840,815,845,850,818,852,769,758,756,729,751,735,783,739,787,761,714,755,767,751,740,783,796,743,757,743,811,757,749,754,786,771,775,752,771,737,787,719,765,860,694,659,747,747,678,771,678,724,798,740,827,768,783,739,798,791,731,826,718,776,692,897,669,659,774,753,693,769,1127,1127,1135,1075,1079,1097,1085,1150,1100,1098,1104,1128,1076,1084,1130,1123,1139,1125,1139,1130,1116,1140,1093,1117,1149,1140,1138,1113,1136,1117,1106,1011,1092,1050,1055,1056,1082,1010,1046,1020,1062,1026,1087,1065,1043,1033,1037,1087,1064,1049,1006,1012,1114,1015,1043,1068,1058,1030,1035,1042,1031,1022,1016,1023,1051,1103,1146,1109,1107,1118,1100,1117,1133,1039,1113,1155,1093,1176,1049,1121,1039,1119,1071,1056,1113,1108,1102,1156,1075,1184,1105,1108,1098,1045,1085,1061,1040,1112,1068,1075,1028,1060,1051,1096,1071,1062,1038,1078,1075,1093,1079,1093,1065,1072,1104,1106,1055,1055,1091,1067,1053,972,933,998,978,958,983,928,966,974,959,998,924,979,978,913,993,936,1000,950,978,1001,976,1014,979,994,921,929,991,954,936,998,807,870,841,873,819,848,812,865,817,838,864,835,818,862,853,853,793,834,863,830,832,820,815,796,836,834,850,803,839,973,1095,1087,996,1056,988,999,1053,968,1016,1111,1060,965,972,1065,1001,1090,1001,1051,959,1002,1046,1050,1000,1058,1032,991,1002,946,919,983,1010,1049,1022,988,1095,1022,1020,1042,972,1061,1031,1029,1133,1042,1063,1086,1026,1035,1092,1010,1071,1030,1107,946,1011,1061,1060,1001,1029,933,959,880,900,904,918,806,926,914,892,894,963,961,917,897,855,917,908,874,944,929,915,914,888,949,926,874,838,915,915,895,864,858,903,929,898,874,823,886,880,839,873,862,866,904,839,859,877,894,884,867,849,884,872,893,861,845,861,837,847,905,866,857,962,971,924,945,987,960,968,990,977,984,932,965,948,944,965,943,982,935,959,1007,965,960,938,936,940,953,1003,958,943,929,921,860,953,916,866,929,924,896,890,915,897,894,897,915,900,925,927,891,886,884,915,840,877,899,929,911,919,908,930,864,869,875,876,814,853,848,852,859,841,854,853,872,821,822,843,876,827,836,812,817,856,821,858,872,843,866,829,844,829,845,847,827,820,873,877,836,826,848,844,844,859,831,828,841,839,880,845,869,834,860,864,827,839,824,904,864,847,816,823,739,780,750,797,805,792,804,789,793,795,804,793,751,807,766,755,773,808,775,758,791,755,803,805,760,813,767,798,777,823,777,771,789,782,785,784,787,758,726,786,778,804,742,750,774,767,743,694,695,755,773,740,777,769,756,752,776,778,733,743,716,750,732,806,702,743,785,865,825,818,804,831,786,763,818,821,936,784,836,840,838,828,763,763,816,837,773,783,868,787,843,773,828,837,1081,1107,1118,1125,1116,1096,1120,1058,1096,1134,1160,1112,1110,1074,1079,1117,1088,1140,1134,1098,1140,1150,1075,1130,1125,1092,1088,1084,1103,1130,1120,1105,1109,1120,1110,1089,997,1047,1048,1041,1028,1068,1000,1068,1026,1017,1065,1013,1076,1019,1093,1054,1069,1043,1122,1022,1003,1045,1063,1078,1033,1036,1065,1090,970,963,989,950,924,896,900,1012,965,981,911,930,896,937,1005,897,942,970,932,941,915,975,997,928,1008,1006,860,837,819,824,813,799,861,845,863,811,850,833,804,833,860,811,861,815,834,829,874,855,839,831,862,865,846,798,798,812,804,822,832,821,781,793,810,787,773,815,777,756,751,782,791,764,767,757,783,823,789,786,801,765,808,763,822,774,781,785,782,780,780,837,790,787,808,812,809,805,808,801,798,802,793,771,817,807,794,793,809,787,795,781,810,794,797,798,802,800,795,837,791,805,815,794,784,795,805,786,822,796,802,808,791,806,796,811,801,797,795,784,794,780,771,789,781,804,810,813,781,786,783,777,784,818,791,774,790,798,784,776,787,809,792,802,812,777,812,801,799,806,780,783,819,793,769,809,794,814,793,791,811,786,804,803,766,774,807,772,821,791,783,790,800,779,733,775,758,749,812,746,746,758,783,791,807,782,778,829,819,826,833,1011,1000,982,964,947,970,997,998,1005,971,969,999,1006,978,959,975,1019,979,956,1055,1029,974,987,985,1007,1028,968,964,972,1000,1004,994,929,870,920,936,946,945,930,877,900,935,958,906,910,952,944,867,956,887,875,986,929,932,950,939,969,909,898,903,958,845,821,843,862,858,811,784,850,831,817,832,844,882,834,808,819,863,814,860,803,830,836,803,843,833,830,858,846,815,853,812,847,923,873,888,909,925,907,877,911,936,897,955,906,934,939,930,899,900,915,953,892,915,973,943,944,893,841,940,848,909,929,864,907,915,1132,1093,1111,1118,1096,1107,1108,1119,1076,1094,1130,1103,1129,1121,1125,1085,1177,1131,1165,1141,1092,1111,1111,1134,1161,1123,1164,1120,1079,1148,1109,1095,1102,1003,1005,983,1007,1030,999,997,1039,1049,971,1012,1016,1003,1037,982,1015,1006,970,979,1021,1010,1040,948,1013,965,1008,1019,1012,1003,881,876,898,843,913,897,889,848,912,871,891,840,893,874,879,909,878,851,922,881,916,884,905,900,893,931,898,916,902,843,845,907,885,819,758,776,796,769,806,784,788,786,789,798,794,765,755,788,792,772,795,802,776,776,807,783,770,771,800,759,795,814,811,787,811,844,936,1063,1023,1017,961,1019,988,982,1047,1028,1013,1046,1016,1008,1039,1011,981,1018,979,1071,1022,1010,1002,1083,1056,977,1027,1017,999,988,1007,927,902,881,868,900,906,906,907,926,921,936,863,902,919,930,909,865,916,905,918,883,963,954,930,896,952,933,953,933,880,935,799,831,849,833,814,854,799,848,832,819,832,868,847,823,822,818,841,858,818,828,858,826,848,822,845,833,832,844,862,834,819,834,821,833,803,793,783,785,787,794,798,816,811,837,805,778,810,799,820,782,739,779,730,813,807,791,788,785,767,815,771,806,980,1035,999,980,1010,1005,976,954,992,1035,1015,1011,1025,1011,1010,1052,997,1017,1041,1021,1000,973,1029,1010,987,1010,1036,1030,1010,983,1035,1025,1090,1140,1059,1055,1130,1078,1084,1175,1094,1080,1077,1126,1073,1081,1045,1092,1021,1046,1134,1087,1033,1086,1057,1081,1093,1093,1007,1067,982,1015,1053,1052,1018,1138,1067,1066,1072,1056,1030,904,917,1034,964,990,993,974,1008,943,952,920,960,923,1017,948,999,965,939,1016,1034,977,1010,1054,970,1021,896,1013,1055,878,876,852,802,854,869,864,882,899,805,878,873,917,837,927,885,911,905,863,849,910,875,893,899,837,900,846,880,866,893,815,953,831,865,894,850,740,766,845,774,830,810,799,789,831,756,783,733,861,801,798,845,809,822,764,840,824,897,833,868,783,741,765,726,820,763,785,855,837,724,780,780,844,802,1082,1051,996,989,1013,958,1036,1048,1008,1060,970,986,1005,1049,962,1031,998,1038,1066,988,1081,977,971,1011,1039,966,1016,994,1065,967,970,1008,1023,1036,1088,1071,1076,1019,1028,1098,1062,1038,1042,1045,1088,1039,1070,1025,971,1090,1028,1092,996,1059,1078,1070,1039,1033,1018,1055,1063,1060,998,1064,1096,1062,1068,919,912,909,928,902,918,923,898,880,923,916,877,899,939,909,937,949,920,864,919,901,891,904,881,869,947,891,926,950,915,899,884,888,817,820,832,848,791,780,791,803,823,794,802,827,802,780,774,805,805,815,809,820,838,799,788,782,838,785,797,824,798,785,795,808,892,894,935,953,940,904,890,913,928,869,853,830,912,901,856,834,907,882,889,884,942,838,920,912,857,878,846,858,883,825,828,819,828,818,808,801,782,853,825,834,817,843,791,784,820,832,834,806,823,827,837,834,813,855,826,811,848,809,866,802,847,937,976,950,895,988,991,939,972,933,965,999,908,962,996,946,917,931,955,1010,912,1006,958,933,961,946,931,963,1004,1007,968,1054,986,979,972,1032,1010,1027,971,1028,1022,1025,1032,997,976,954,973,984,999,1027,989,1002,1065,1030,1071,1018,1053,1023,1022,1042,1037,1013,1029,1032,1081,1014,1028,1008,1028,969,1060,1000,1060,1026,1021,1020,1041,994,998,1000,1008,1033,1039,1017,1064,945,904,905,928,947,879,902,912,904,937,930,921,922,889,900,939,938,874,890,890,894,962,879,951,892,909,888,912,870,832,799,794,809,792,830,825,822,807,797,767,798,824,806,766,806,814,825,788,830,791,786,830,824,835,829,792,848,815,802,835,840,755,789,756,843,717,735,716,781,851,775,795,981,828,837,856,807,866,774,781,771,821,744,813,698,884,822,809,858,725,775,1067,1067,1051,1062,1093,1015,1060,1070,1051,1060,1056,1078,1132,1039,1060,1088,1032,1089,1076,1075,1081,1036,1039,1139,1088,1100,1071,1054,1063,1062,1055,1074,1090,1096,1010,1030,1077,982,1068,1025,1058,997,1061,1044,1031,984,1039,1000,973,1059,1025,1042,998,1022,1022,1002,967,1038,994,992,1024,1022,958,909,866,875,922,907,929,958,901,941,883,951,956,926,970,934,943,956,949,943,944,868,894,890,965,927,922,903,906,922,937,911,905,938,970,991,931,920,971,940,926,995,929,827,944,1005,943,917,883,1056,986,924,896,928,940,867,881,1037,865,863,929,915,869,1012,1047,1069,1048,1081,1075,1020,1041,1037,1068,1046,1062,1083,1046,1115,1053,1024,1060,1090,1048,1072,1001,1073,1078,1059,1042,1063,1022,1001,1016,1078,835,881,838,819,832,872,891,859,814,798,863,894,839,836,833,841,820,836,839,890,844,858,842,854,859,873,854,850,837,861,896,829,883,844,855,793,852,830,827,839,821,826,848,845,829,863,797,774,813,819,826,882,873,803,837,822,854,851,872,839,839,847,840,850,865,877,882,852,859,860,845,871,872,875,893,830,854,825,845,828,842,869,842,876,879,860,877,877,849,881,852,887,823,841,847,775,795,815,816,801,776,804,804,829,797,836,833,821,789,803,792,815,797,770,793,839,792,785,793,795,799,789,811,783,787,780,795,846,808,858,815,844,820,798,847,811,818,816,820,812,805,810,794,854,822,857,812,826,848,837,821,804,835,807,865,781,803,781,753,761,812,776,757,790,784,755,788,764,801,813,830,822,802,773,787,747,793,761,827,802,785,817,787,832,795,794,806,772,763,769,761,957,922,902,960,974,1010,960,943,987,1024,915,989,981,940,932,919,1003,992,977,953,1017,927,1043,986,981,971,950,908,986,957,931,982,967,1005,1028,962,1015,984,1026,965,1010,1006,993,967,998,974,1003,1023,991,999,1019,961,1032,1006,1017,1038,979,1000,1033,976,975,980,1079,1065,1119,1041,1073,1103,1020,1124,1094,1108,1058,1068,1110,1085,1059,1129,1119,1086,1096,1079,1084,1109,1070,1086,1131,1048,1098,1064,1118,1080,1045,1045,1050,1091,1062,1085,1050,1087,1063,1070,1066,1081,1080,1016,1052,1091,1062,1097,1097,1077,1040,1052,1014,1107,1073,1081,1017,1024,989,1032,990,1013,1009,1007,1011,1101,1065,941,1037,1057,1010,1020,1058,1035,998,1070,1053,1035,935,1085,1098,937,1011,995,1126,986,1121,1016,1065,937,800,851,763,891,807,774,812,923,813,799,812,823,763,749,894,781,785,836,862,847,751,800,888,842,826,779,772,789,747,878,719,740,796,784,885,782,910,842,747,759,751,816,770,828,770,726,670,785,742,771,866,798,752,898,828,875,839,818,787,880,670,754,862,1111,1109,1070,1090,1078,1116,1089,1098,1045,1111,1118,1139,1095,1142,1106,1137,1089,1105,1085,1114,1092,1115,1126,1106,1144,1067,1158,1101,1087,1194,1063,1034,1102,1118,1055,1039,1075,1098,1094,1067,1107,1052,1047,1092,1088,1046,1028,1050,1032,1092,1079,1117,1093,1149,1023,996,1142,1060,1081,1076,1110,1067,1096,1065,910,979,1002,1021,978,954,966,1012,920,975,940,912,941,980,896,999,980,968,935,968,1022,972,974,971,982,987,782,806,792,807,813,747,826,787,791,792,805,813,801,829,777,832,773,770,795,751,789,777,808,812,764,807,800,736,716,754,755,793,748,796,773,835,786,800,791,811,838,799,838,863,798,745,744,774,753,761,823,752,864,802,769,730,754,756,781,831,995,882,917,919,954,868,915,936,903,966,910,935,921,951,874,883,931,893,900,923,959,869,881,903,953,944,926,952,915,935,930,866,895,1174,1127,1206,1159,1185,1205,1127,1171,1202,1191,1152,1161,1153,1152,1177,1093,1148,1236,1207,1146,1119,1158,1159,1144,1166,1155,1183,1157,1159,1187,1145,1155,1146,1136,1121,1134,1118,1108,1076,1149,1092,1153,1114,1136,1079,1132,1131,1100,1099,1107,1117,1121,1191,1146,1098,1204,1135,1111,1135,1108,985,1034,1048,1062,1040,1066,1009,1097,1035,1039,1004,1036,1029,1009,1029,1076,1088,1027,1047,1040,953,1051,1055,1034,959,1015,989,1017,1022,1029,868,788,827,875,753,853,858,847,881,860,777,836,846,844,832,860,852,893,845,848,881,770,858,854,864,880,815,864,860,849,865,851,896,825,854,795,759,755,747,748,787,789,735,739,774,752,763,755,750,754,741,768,710,726,725,748,711,775,798,710,764,753,757,746,743,748,754,775,760,746,732,719,744,728,722,735,727,745,764,745,737,710,786,716,759,742,720,715,704,724,748,734,737,755,744,756,755,799,794,837,790,815,773,823,824,807,791,829,764,807,806,826,789,785,786,821,811,794,817,776,823,793,798,788,833,814,814,811,794,847,861,853,839,855,851,820,876,863,834,860,815,865,825,842,854,843,840,835,862,874,808,824,855,872,848,888,876,847,840,832,887,828,804,786,794,799,809,768,822,794,776,825,808,802,826,809,841,817,814,811,803,840,838,815,837,827,818,787,798,784,811,815,832,963,964,890,924,932,913,881,877,964,900,934,954,937,917,919,900,906,1000,979,963,945,956,909,966,947,955,907,924,940,908,979,983,967,986,1007,961,962,969,943,917,995,990,978,953,971,1000,961,958,947,943,987,978,905,1008,1010,999,941,886,853,867,891,848,862,856,859,849,858,886,894,879,837,869,852,820,872,856,839,847,848,878,827,874,829,846,877,814,797,810,784,822,813,790,799,798,815,815,787,810,819,785,791,802,810,828,800,810,794,790,825,827,825,815,828,814,815,844,826,819,837,845,827,828,844,832,844,858,872,815,846,871,840,857,859,867,853,830,861,849,796,828,885,862,873,849,844,798,804,871,840,809,852,843,806,826,843,848,852,813,845,822,815,796,857,801,839,810,868,828,781,813,879,869,789,798,861,793,742,782,760,789,758,760,813,753,793,745,810,780,794,813,798,762,761,778,789,792,774,804,762,773,795,795,799,766,792,779,792,809,763,763,787,767,739,789,759,826,772,791,776,792,816,794,790,792,808,792,774,765,759,798,811,736,777,813,790,788,823,773,795,769,781,1020,990,983,1005,1002,960,949,955,963,990,1030,1014,993,1008,989,1027,960,971,941,974,982,952,971,1016,995,985,949,957,940,993,868,894,906,923,927,962,900,927,851,945,915,904,933,898,878,908,858,895,917,915,908,921,906,880,836,827,851,837,837,844,849,842,828,830,826,809,860,809,782,792,837,809,824,838,841,886,828,838,817,822,816,835,807,849,836,807,751,719,720,740,733,727,719,718,753,706,754,701,718,723,732,769,761,722,715,644,696,753,784,698,710,688,712,719,706,737,703,950,958,969,1000,978,965,976,958,998,957,997,966,1000,963,949,954,940,888,934,965,955,919,957,966,976,979,934,922,964,937,1003,985,989,1021,1094,1044,1143,1039,1014,1014,1030,1065,972,1070,960,1166,1054,1022,977,952,1025,1079,1059,1035,1077,1010,1037,1055,1079,989,1049,1005,998,1059,999,995,1044,940,1080,960,1010,1008,952,995,965,1041,1010,1046,954,993,917,1022,979,950,1039,1091,965,1022,981,996,1010,902,883,994,1002,1023,1056,1039,893,887,798,890,895,844,887,881,893,893,915,896,902,889,906,911,917,785,826,805,817,873,860,955,873,814,873,894,703,763,701,710,726,725,766,746,669,725,736,747,702,740,703,748,762,713,720,653,755,735,694,707,727,712,740,731,675,768,680,721,844,894,978,951,891,895,936,944,923,904,906,905,907,905,935,945,920,927,952,902,898,908,925,905,925,920,951,930,948,969,940,936,822,808,815,838,834,784,851,830,806,834,782,782,820,803,826,817,825,808,827,811,845,814,809,799,820,783,796,842,816,798,820,806,777,835,842,811,886,835,864,937,869,809,853,909,833,844,810,854,824,822,822,832,863,872,851,868,848,883,857,837,882,892,850,833,896,846,878,877,866,871,840,886,916,827,819,821,915,880,908,891,882,836,855,884,863,889,846,886,923,875,780,855,855,873,871,853,937,812,869,816,849,826,871,876,810,834,831,810,781,846,803,810,846,767,862,837,850,834,785,799,847,830,828,827,798,813,846,823,830,811,768,839,832,827,844,847,831,850,814,817,783,800,761,794,768,776,747,753,784,757,767,793,776,764,796,792,822,737,745,775,787,772,749,791,771,782,776,760,762,751,759,740,787,686,724,732,741,733,728,716,753,794,754,770,706,709,787,735,745,695,809,685,810,724,723,1011,958,978,1037,1045,985,995,1016,1000,1014,1017,978,1014,964,977,1020,1032,1028,972,1036,1018,1019,1001,989,990,1048,1021,979,1051,1020,1012,948,964,941,963,960,972,975,952,956,967,968,965,976,986,937,969,959,962,954,981,970,947,985,1003,941,895,956,952,879,904,872,904,855,884,898,903,855,833,854,867,866,823,863,871,862,875,891,867,873,899,865,880,873,890,882,888,862,784,788,791,789,782,778,804,812,779,787,789,767,795,770,799,797,733,836,790,804,765,808,779,814,753,790,790,806,814,806,734,792,780,727,771,759,783,718,758,742,755,732,782,765,754,750,745,803,757,704,754,721,725,747,778,746,739,766,741,783,778,770,733,747,730,703,738,724,744,726,706,719,727,723,715,699,705,734,704,722,728,712,694,740,728,679,719,705,697,725,752,713,723,718,730,729,702,756,761,712,735,723,749,716,736,734,735,736,754,712,741,688,744,714,755,737,714,712,705,744,722,694,732,737,711,688,715,811,780,807,802,766,821,760,818,802,812,827,793,761,796,785,790,815,789,803,800,773,788,812,797,789,793,794,830,800,775,779,786,767,774,764,754,772,764,763,753,768,776,764,785,763,773,784,759,785,783,764,771,780,777,779,785,782,786,775,776,785,789,799,794,786,818,768,835,809,777,783,813,801,774,784,778,817,819,789,804,795,818,818,786,809,766,772,737,776,781,741,762,762,759,761,727,760,748,772,752,736,766,725,732,767,687,739,733,709,731,770,738,754,758,735,731,750,770,688,931,924,946,955,962,971,980,952,1005,953,905,975,982,958,916,890,1022,1030,1017,1051,960,1006,944,938,939,934,896,914,960,874,908,936,956,906,941,903,918,954,908,907,886,929,977,891,989,915,922,878,884,961,932,952,969,871,879,875,904,858,835,855,824,847,829,824,822,850,825,845,823,817,846,837,849,820,833,834,837,830,838,845,822,841,848,847,831,833,814,776,831,780,818,777,804,791,773,803,767,800,813,806,820,807,812,836,822,799,827,808,768,798,794,795,789,813,770,783,803,790,788,795,766,798,817,784,964,964,910,925,961,951,949,896,875,909,1017,928,997,957,930,985,885,990,908,908,926,945,910,952,949,975,935,897,970,960,870,917,943,895,810,790,800,808,795,779,826,814,840,810,805,813,784,835,832,822,801,810,804,797,792,781,797,814,808,771,795,811,825,825,770,804,764,792,861,802,878,801,838,793,775,839,774,834,834,868,830,828,726,845,831,819,792,837,848,834,862,858,796,827,823,812,796,806,947,897,935,953,921,948,919,928,943,924,907,904,885,886,893,902,928,931,899,914,888,924,902,905,925,942,916,939,894,918,932,1011,990,1043,1065,977,994,1005,1035,993,1030,984,1002,1014,1013,1006,1002,1044,1017,1059,1029,1009,1017,994,978,983,1035,972,984,996,991,949,950,932,940,962,922,942,932,942,926,943,919,935,909,921,902,926,917,924,892,970,932,929,911,905,906,932,923,899,947,933,945,849,814,814,856,844,848,844,872,821,848,838,813,820,840,809,839,848,826,884,816,809,819,858,806,866,815,825,840,729,729,728,738,756,735,711,737,738,751,735,747,727,723,706,752,751,738,715,723,757,702,735,757,746,761,791,757,736,784,820,857,843,831,839,819,800,825,843,808,835,862,853,831,867,838,808,860,834,819,856,809,833,829,872,830,834,843,827,851,874,907,936,910,920,826,885,917,891,912,867,963,941,897,918,948,928,915,863,890,903,827,895,932,867,846,907,922,838,856,870,920,893,938,956,906,882,975,1038,1054,1064,986,978,1013,993,994,1053,1038,1020,1028,1033,1051,1048,1036,1029,1049,987,1039,1036,1027,1038,998,993,992,1007,1017,987,998,934,966,910,911,939,918,899,918,901,922,924,924,965,889,892,964,954,935,951,865,960,909,899,936,995,947,918,918,828,848,844,870,828,825,839,868,818,814,847,825,876,893,866,832,864,881,825,823,850,894,863,828,819,873,836,824,833,728,718,725,739,721,724,726,705,744,743,726,746,711,743,732,710,732,751,706,740,729,732,720,731,734,726,749,742,716,733,723,748,752,732,741,766,786,799,747,805,754,760,789,757,765,781,753,783,778,765,741,743,761,767,758,778,773,765,784,756,788,802,770,792,804,781,743,769,727,793,767,791,734,810,761,737,711,749,768,732,735,763,763,748,781,732,753,740,745,742,738,748,764,715,724,816,810,829,786,790,800,739,874,801,820,814,872,818,822,777,836,860,786,871,851,833,823,772,887,887,875,828,842,855,842,852,833,824,910,797,1099,1088,1064,1113,1102,1068,1104,1087,1077,1070,1057,1124,1070,1117,1090,1136,1140,1096,1112,1092,1109,1105,1068,1113,1106,1075,1117,1097,1095,1008,1007,1063,1120,1084,1074,1034,1056,1093,1052,1065,1014,1081,1069,1044,1044,1003,1112,1073,1015,1040,1066,1017,1093,1013,1017,1115,1025,1065,1057,1065,918,905,885,949,983,955,922,908,901,951,959,926,957,946,885,980,932,942,941,917,943,954,952,987,995,926,920,943,938,906,883,811,822,833,824,836,869,782,832,832,832,832,842,828,824,841,846,812,817,782,834,812,796,770,784,785,793,800,792,787,770,797,783,785,829,779,794,778,774,786,783,803,790,784,770,793,798,784,786,786,773,771,777,794,777,818,772,776,789,816,791,812,779,815,795,810,794,802,766,806,804,808,819,796,801,813,797,781,790,820,817,780,820,796,808,776,753,798,797,800,788,804,787,781,770,790,730,767,797,773,784,786,789,774,751,778,811,818,747,790,739,802,799,778,788,781,795,774,787,791,810,792,783,812,816,816,822,810,806,796,821,795,809,797,799,801,798,810,800,816,810,813,797,800,827,813,819,821,834,791,809,766,793,806,801,800,789,821,783,809,805,798,791,814,796,803,784,791,794,802,798,799,804,814,794,796,827,792,776,787,792,767,801,790,840,831,779,791,825,815,806,790,788,807,819,787,784,802,800,789,820,793,825,793,798,794,794,823,814,800,802,806,803,803,803,806,792,796,737,764,742,771,803,794,776,784,764,739,753,776,813,746,791,741,766,821,767,785,749,776,791,805,785,777,800,729,803,781,818,753,731,760,748,844,796,841,772,792,763,790,839,823,806,831,840,836,846,809,867,735,832,792,809,879,832,817,828,774,848,803,842,889,847,1092,1041,1029,1048,1084,1049,1078,1046,1091,1083,1062,1053,1055,1056,1047,1052,1019,1107,1054,1124,1067,1051,1079,1073,1047,1085,1053,1045,1026,1052,1028,1021,1043,1034,1049,975,1009,1018,993,1018,1029,1051,1034,1061,998,1011,1002,1044,1035,961,1022,1061,1060,1023,1032,1009,1033,1030,1144,1192,1118,1110,1116,1127,1199,1154,1132,1155,1155,1151,1145,1171,1120,1154,1128,1205,1150,1126,1188,1155,1131,1073,1113,1127,1155,1116,1161,1098,1168,1092,1158,1153,1105,1047,1084,1086,1088,1067,1044,1084,1140,1058,1081,1149,1145,1151,1118,1061,1100,1132,1046,1039,1086,1084,1079,1101,1080,1138,1065,1181,1094,1091,1111,914,994,969,981,979,907,941,977,994,1016,949,970,1015,983,993,1020,963,1001,968,984,1042,993,1009,990,967,936,971,966,957,958,960,964,762,763,807,822,799,844,785,816,821,803,828,808,821,780,819,811,839,842,834,824,829,826,809,817,808,785,818,809,769,782,767,782,775,759,812,764,765,784,762,763,781,781,783,813,755,765,767,785,770,802,802,772,768,797,808,797,794,776,777,770,796,814,775,757,796,769,805,810,784,798,756,781,809,783,773,797,777,750,776,803,787,803,780,794,789,766,810,757,770,778,808,915,893,994,907,866,878,970,893,965,953,921,888,999,834,923,901,885,944,855,883,905,963,911,1015,879,946,943,939,911,947,893,854,979,1009,937,929,962,985,1009,990,981,944,987,996,1002,957,930,978,955,1009,978,967,929,966,936,948,950,973,970,958,973,1016,942,939,948,1037,829,815,832,821,839,812,813,819,832,818,836,818,797,801,842,847,847,824,834,803,838,803,777,823,827,804,806,859,870,869,829,874,806,832,848,808,848,859,852,794,843,845,781,858,862,862,819,860,829,856,822,864,832,827,871,877,818,796,870,826,849,865,892,861,879,875,896,882,896,866,898,873,885,886,888,864,892,883,893,815,876,885,866,903,863,796,799,801,838,860,796,810,825,815,759,840,810,804,804,783,806,803,777,786,801,821,804,799,790,839,842,825,802,791,789,806,980,1019,967,951,956,948,1016,975,960,990,974,963,966,965,961,980,1001,930,982,976,991,978,1014,1000,966,969,945,984,967,930,999,1012,960,835,887,835,841,844,813,832,817,871,850,935,785,820,883,846,843,797,856,823,797,883,802,898,922,833,806,957,954,904,898,928,998,865,998,970,896,1014,932,1042,991,1003,920,951,958,1022,1002,980,1046,1012,955,986,992,935,964,976,971,862,969,959,1029,981,984,970,979,1015,982,1028,912,1021,954,987,1014,1021,1050,1124,1046,1011,1048,993,975,1024,968,1052,1043,1040,980,971,995,901,863,959,984,917,944,963,990,911,955,950,960,960,933,934,891,903,894,959,950,1003,927,952,931,941,988,875,907,905,1026,1079,1131,1168,1129,1110,1074,1116,1117,1089,1082,1101,1082,1103,1137,1150,1142,1138,1117,1125,1163,1164,1101,1105,1134,1142,1123,1108,1120,1046,1060,1033,1045,1100,1093,1091,1029,1051,1092,1047,1053,1081,1074,1079,1105,1057,1066,1034,1071,1096,1029,1045,1099,1082,1078,1110,1040,1111,995,1010,984,1017,985,938,1007,1024,1012,1006,987,1044,989,989,1029,990,1024,968,969,977,992,993,945,982,1006,1001,995,987,991,996,955,1017,972,1013,960,960,997,971,957,985,945,894,955,978,957,953,1005,930,959,946,1001,958,928,989,989,961,971,945,971,951,980,995,961,1046,953,1020,1135,1140,1126,1146,1095,1097,1115,1107,1128,1078,1117,1161,1106,1106,1068,1135,1157,1142,1113,1161,1116,1133,1111,1128,1118,1146,1125,1086,1066,1115,1154,1072,1115,1067,1022,1033,1053,1090,1059,1106,1117,1102,1161,1125,1066,1094,1074,1106,1077,1059,1119,1048,1073,1048,1078,1091,1071,1048,1102,1087,1086,1061,1071,1076,1078,1076,1062,986,967,974,988,1002,993,974,980,992,948,985,985,997,975,991,974,999,937,1004,970,973,971,984,983,988,991,973,1009,1013,960,987,966,860,851,845,894,870,799,878,881,882,929,858,873,880,882,874,862,917,849,884,856,846,854,850,854,876,822,869,830,824,874,831,800,859,858,846,806,835,784,838,858,820,801,835,862,889,797,777,789,798,835,787,847,842,811,838,1037,1042,1011,1002,1029,1042,1045,1038,1045,963,1055,1025,1048,1025,1021,1035,1000,1001,1044,1025,1038,1031,1011,1040,1036,1045,1040,1032,1052,1024,1002,1042,1023,973,981,985,1054,996,975,1001,953,990,960,977,987,1005,977,963,983,1011,1001,899,962,994,964,942,959,980,1004,975,929,972,976,965,993,999,886,904,920,942,908,911,930,919,958,927,923,917,921,917,917,890,938,881,949,911,880,891,922,881,900,872,916,901,916,908,925,950,829,831,844,813,832,827,829,781,836,852,826,840,811,871,839,853,849,814,833,843,856,828,833,862,817,814,831,835,832,837,827,842,835,929,916,905,924,921,923,930,930,821,911,942,925,922,979,942,920,892,931,881,883,969,903,942,976,893,922,909,926,918,915,1024,1003,1015,1004,956,959,983,970,1005,1000,1035,995,983,961,920,1025,985,997,961,999,932,963,973,1011,981,966,967,972,984,1013,980,902,872,904,939,890,924,899,900,890,879,843,880,901,897,902,919,889,906,903,884,917,850,883,837,901,874,929,880,888,871,917,848,835,861,855,856,836,869,854,860,826,843,859,834,838,847,849,863,873,851,847,846,828,860,839,836,821,850,828,834,832,846,823,835,865,749,804,768,780,762,780,773,783,808,780,784,785,756,801,783,776,770,795,767,767,802,772,786,795,739,770,734,790,782,770,756,749,768,760,780,743,706,731,755,769,825,743,757,785,764,754,750,772,791,748,777,750,766,753,785,725,713,744,761,791,754,746,761,759,768,783,733,843,799,841,830,838,812,819,843,839,846,838,802,806,820,821,825,838,839,826,830,804,839,840,840,825,832,825,829,820,837,909,877,905,867,914,838,910,893,891,939,892,894,882,875,884,973,897,948,864,889,931,890,888,894,866,891,945,854,864,896,882,840,872,880,880,842,806,851,853,850,855,855,795,802,845,856,872,880,849,849,844,840,855,905,849,846,833,811,805,873,827,806,835,845,852,831,812,803,828,855,845,829,781,847,831,828,818,816,824,808,822,803,823,772,808,982,961,985,938,959,1002,962,958,965,954,957,984,976,979,952,957,967,1002,961,967,972,942,955,942,969,974,967,980,929,953,937,938,995,793,841,831,846,862,845,838,846,869,815,816,814,862,839,830,849,852,858,833,817,858,837,804,840,826,869,855,838,841,852,814,817,857,834,844,816,789,821,828,864,841,768,858,784,806,848,838,793,797,823,843,793,842,797,810,822,832,828,969,934,948,984,978,933,948,941,926,944,930,953,960,935,934,928,905,984,937,901,929,921,906,995,923,926,935,969,925,918,819,854,891,826,846,841,841,859,839,849,832,854,864,857,864,860,863,813,850,836,826,886,868,865,809,858,851,864,786,785,794,775,845,832,808,789,793,807,813,813,811,776,802,832,766,809,777,802,821,826,776,813,827,811,790,775,796,805,807,805,808,773,808,803,832,839,865,840,871,831,882,827,868,828,858,891,852,864,879,855,861,846,818,852,830,873,842,848,860,881,901,852,872,831,881,830,831,822,805,826,846,819,813,814,818,830,806,823,826,788,822,833,802,812,856,808,828,809,819,816,817,815,831,835,818,817,837,771,758,814,762,776,823,782,760,813,783,770,762,805,765,780,779,773,801,778,792,786,769,789,810,766,794,799,780,786,814,868,855,884,878,867,862,885,889,896,900,880,876,867,901,908,866,866,865,895,889,873,875,880,891,890,902,846,909,872,854,885,890,843,777,801,831,794,789,818,831,804,806,820,788,819,813,789,818,803,782,816,807,785,793,788,802,811,787,812,815,825,774,782,772,793,789,795,877,825,881,895,876,914,878,864,889,888,869,867,868,760,907,891,832,847,869,783,825,814,805,849,850,853,847,813,1073,1062,1010,1056,1029,1049,1085,1022,1039,1016,1011,1046,1017,1013,1052,1003,1018,1030,1067,1041,1023,1044,1084,1049,965,1012,1066,980,1067,1017,1056,990,1034,1044,842,938,889,924,847,860,851,905,898,896,837,874,912,889,837,879,811,877,863,890,895,888,836,907,893,844,877,908,937,977,928,883,992,978,910,925,916,954,961,889,851,926,994,948,903,913,918,947,946,925,893,933,914,914,922,933,926,890,959,825,822,846,856,858,839,878,770,866,848,836,841,860,841,844,834,838,821,836,800,840,810,838,798,821,860,822,845,808,853,805,832,832,866,806,916,906,961,979,911,882,925,959,933,933,922,939,925,904,910,840,921,1037,938,851,1070,862,987,1025,971,979,979,951,972,978,960,1025,1046,1100,1035,1010,1074,1083,1090,1023,1103,1043,1040,1021,1010,1050,1030,1056,1055,1080,1049,1058,1047,989,1141,1081,1077,1086,1065,1069,1075,1061,1068,1076,1077,1030,1094,1009,1022,957,999,1024,1027,1001,1020,1059,1025,1015,988,1062,1057,980,1022,1112,1015,1036,1050,1029,963,1121,1027,1020,1065,955,999,1089,1026,1000,1062,914,1025,1023,1083,1003,1012,981,1013,958,957,955,959,1010,953,981,986,1003,1031,979,984,1021,975,960,1031,1053,1026,932,1010,1022,947,906,1054,881,815,883,841,790,815,828,849,818,813,786,826,823,819,802,843,830,821,836,841,820,818,827,821,819,831,815,800,784,816,798,756,708,759,752,756,723,735,723,762,766,741,764,736,728,767,767,758,768,744,774,731,768,740,745,748,778,742,735,745,758,768,732,782,778,767,787,815,784,835,759,802,759,855,808,802,794,774,804,796,817,790,778,810,808,847,749,771,840,742,739,778,813,709,791,738,731,716,746,648,764,694,813,721,747,687,735,725,739,745,806,802,734,768,781,715,710,805,752,670,809,804,871,874,734,748,804,727,769,740,741,1101,1035,1032,1066,1023,1028,1005,1031,1031,1018,1040,1065,1073,1014,989,1011,1036,1032,1036,1026,1086,1030,1039,1046,1046,1037,1044,1047,1038,1064,967,998,952,922,933,925,925,954,907,984,964,955,983,956,901,969,963,956,947,950,961,968,970,936,931,909,986,942,971,943,866,927,913,857,883,880,913,851,886,884,840,875,899,891,891,847,848,884,915,901,908,875,923,914,874,950,928,979,988,947,992,935,998,861,935,883,920,939,912,939,939,1004,891,969,902,915,952,943,943,945,988,881,960,949,877,877,881,898,887,888,863,875,849,899,869,847,844,882,884,867,857,896,861,856,889,875,847,871,858,829,880,891,869,866,906,860,851,811,803,798,791,815,811,805,826,842,845,831,784,864,829,837,843,823,806,856,841,834,798,791,875,853,806,793,826,778,776,731,821,791,793,757,782,764,794,792,752,803,788,788,768,777,796,802,806,784,767,790,791,799,797,765,778,793,792,777,794,764,783,728,793,746,769,768,787,765,804,743,790,774,790,774,741,783,737,743,749,760,785,784,742,775,776,743,785,865,939,864,820,927,897,898,935,915,918,943,939,939,846,905,913,908,878,936,897,870,920,899,915,867,993,888,914,1122,1138,1130,1157,1097,1112,1068,1095,1132,1139,1167,1104,1113,1126,1146,1124,1098,1123,1141,1159,1154,1133,1144,1093,1111,1088,1141,1109,1160,1125,1142,1121,1195,1126,1071,1099,1080,1121,1132,1031,1089,1131,1082,1119,1117,1075,1104,1121,1080,1065,1079,1080,1101,1066,1024,1050,1099,1137,1108,1054,1085,1038,1100,1033,1045,1035,975,993,996,960,957,955,1037,1000,927,984,965,980,947,936,988,1075,960,1014,954,993,998,971,974,990,983,969,952,974,1005,984,982,998,991,1024,853,858,855,853,823,839,841,925,868,863,849,850,877,858,840,851,854,839,834,892,846,859,825,846,882,872,873,914,841,852,830,857,833,842,839,1017,999,1001,1013,1010,1033,1011,1011,1017,1012,1000,991,1021,993,1011,1007,986,1020,985,1008,1012,1015,1010,1021,1007,1033,1008,1002,989,992,1030,1007,1016,984,989,1007,1018,939,968,1007,948,1042,988,992,944,977,886,976,976,997,974,1003,1063,962,1021,982,974,911,780,810,810,822,773,833,837,797,805,841,765,859,799,817,807,805,778,840,830,766,825,827,812,824,802,800,806,766,810,789,813,795,770,813,812,773,776,763,809,770,762,759,797,765,792,865,802,758,820,758,815,822,733,803,973,995,1087,1004,955,989,1031,983,1044,985,1003,961,979,1026,973,993,964,928,1045,1042,971,1005,908,987,959,997,1032,957,1011,1059,961,917,887,891,898,914,897,911,905,898,895,897,915,884,872,903,921,889,870,892,882,908,872,915,910,892,894,917,909,901,935,826,838,841,833,825,808,859,816,828,833,827,848,816,837,824,815,828,812,838,813,836,849,831,822,817,813,832,832,848,841,835,829,787,923,959,943,943,958,987,918,991,913,930,948,952,988,912,923,967,928,1003,965,935,971,937,911,949,988,1003,940,893,985,936,893,927,1012,1027,1000,1002,1022,1040,1019,1041,996,955,958,988,1011,991,1000,1029,1032,991,1036,1001,1006,1020,1013,1012,1011,1050,1033,1025,1020,1030,1032,988,977,942,984,991,986,1012,966,931,961,984,958,1015,1002,974,1012,978,1003,953,1017,970,955,1002,978,948,969,1015,941,996,921,975,957,996,847,846,829,911,858,831,832,834,837,781,836,848,796,831,851,831,843,865,827,853,842,792,819,867,883,842,872,895,885,819,905,894,951,853,874,886,805,824,823,856,868,917,874,888,912,888,925,860,921,861,856,835,829,893,863,833,812,854,866,842,848,836,874,835,840,813,839,835,842,876,823,851,815,832,842,864,837,868,848,870,830,853,812,861,860,822,857,853,849,855,852,832,859,840,862,848,861,853,880,839,862,836,863,879,866,848,850,834,852,853,788,811,812,861,796,818,834,810,820,803,840,835,813,848,773,784,850,815,845,821,846,808,803,814,815,781,818,828,832,840,837,823,883,818,873,840,878,835,890,863,869,839,878,830,843,839,872,859,870,838,851,865,850,884,869,820,918,842,846,866,867,923,877,922,906,908,905,854,901,896,898,854,924,877,932,847,899,882,881,909,940,886,903,893,883,818,865,907,874,912,840,831,828,817,867,835,815,843,866,872,817,792,837,824,847,820,852,841,839,835,860,858,836,866,829,830,847,850,856,848,858,856,862,852,828,938,910,977,931,903,960,915,967,941,965,1001,1008,925,928,945,932,945,945,929,894,931,913,961,913,949,931,874,935,891,963,890,953,986,900,956,1030,1000,999,1012,1023,998,1034,1012,1031,1011,1018,1017,1020,1019,980,1006,1047,1011,1029,998,1014,1019,1026,1030,1019,1006,986,1009,965,1026,976,981,989,994,974,982,1028,941,999,997,993,955,951,965,977,964,931,979,957,950,977,968,977,966,1014,1007,967,979,1002,967,953,1005,1000,982,996,835,823,863,817,860,870,843,820,823,815,831,865,836,831,827,821,839,822,814,837,827,841,834,814,838,846,836,868,822,832,828,939,898,917,940,890,938,891,925,925,918,926,926,937,924,905,944,946,961,976,941,911,909,919,930,929,904,938,947,963,925,911,951,929,822,824,834,819,838,824,851,876,844,840,837,833,849,845,825,820,810,865,843,813,850,858,814,843,852,795,813,871,808,813,774,795,832,794,791,780,802,814,809,851,792,774,806,792,830,782,798,810,793,793,786,803,798,782,791,771,779,759,763,772,806,755,771,775,753,774,783,817,760,797,819,769,796,767,760,778,782,843,798,743,787,813,792,775,792,795,795,754,779,752,808,775,770,813,823,846,814,827,813,751,817,893,767,745,791,821,810,857,751,794,786,782,863,774,744,830,786,796,749,819,814,812,744,801,1072,1110,1082,996,1116,1117,1008,1047,1046,1079,1092,1097,1094,983,1092,1084,1099,1087,1072,1119,1076,1107,1071,1088,1133,1093,1102,1044,1144,1057,1000,1060,1130,1083,973,1177,1097,1126,1006,1091,1035,1001,1077,1108,1002,1045,1132,1110,1111,1109,980,1078,1075,1184,1138,843,819,883,862,892,868,915,926,866,912,906,870,924,884,866,914,890,865,838,858,861,848,915,913,839,829,847,927,850,867,911,913,851,943,778,809,823,806,825,840,808,824,813,779,805,799,784,820,801,804,811,829,795,771,793,827,790,793,792,821,793,812,828,805,788,720,758,734,743,776,753,745,756,767,749,704,727,666,736,757,770,718,780,747,755,756,769,738,744,756,737,741,881,967,911,868,905,913,953,864,898,880,977,977,911,886,1017,1023,896,887,846,865,908,903,940,951,905,911,930,894,937,944,880,824,812,828,854,862,809,847,828,849,852,868,859,814,816,822,830,843,841,840,789,830,836,840,844,827,804,822,840,837,772,774,791,800,760,776,785,780,791,767,753,804,807,807,825,775,803,811,801,798,778,812,790,794,783,765,933,973,888,981,924,952,969,946,942,977,977,949,961,1031,937,934,935,951,963,870,941,939,928,867,924,974,945,891,946,949,821,817,805,778,806,828,832,796,828,827,819,815,794,835,800,801,789,820,792,796,812,811,811,821,823,801,786,805,817,779,812,814,798,874,927,907,921,887,915,992,956,883,905,895,933,878,1019,957,969,923,1009,964,1011,942,969,910,963,955,948,991,916,966,936,870,953,944,860,889,827,916,871,862,862,894,911,886,891,908,850,857,849,892,853,882,917,873,914,860,846,856,874,866,858,910,880,806,859,845,811,837,829,792,822,860,806,818,832,832,840,831,848,846,828,819,846,826,826,830,857,845,850,844,851,821,843,852,969,956,916,937,920,923,872,940,880,896,870,904,962,1000,905,945,926,899,931,957,934,932,943,909,919,944,930,983,918,958,874,918,949,1001,990,950,933,951,989,974,952,967,980,950,997,992,954,980,953,980,953,974,952,971,996,930,949,974,984,977,954,957,988,943,978,921,926,955,993,841,818,849,847,848,850,827,840,876,860,830,834,885,857,841,833,858,827,851,851,843,874,855,817,853,882,869,840,854,870,864,984,1043,1048,1035,1013,1026,1026,1037,1023,1064,1041,1031,1060,1015,1008,1035,1016,1016,990,1029,1025,1002,1011,1012,1003,1025,1013,1000,948,932,965,957,960,983,957,976,952,965,972,1033,1010,947,940,971,937,978,997,970,975,973,939,946,948,1004,934,883,881,869,872,887,909,883,882,864,890,867,851,883,867,904,874,871,909,882,848,906,883,882,886,895,907,905,871,863,911,896,889,935,957,924,930,892,945,947,916,939,848,921,924,965,933,938,906,923,911,953,949,948,990,890,928,970,875,924,904,976,881,918,919,883,880,925,1020,988,1034,993,983,1000,998,1006,1009,980,991,1026,1003,1026,1009,1001,1012,1013,1012,1014,1009,999,1026,1014,996,976,968,998,1022,998,1021,1000,1003,988,991,1041,998,975,1018,965,988,997,950,960,975,956,996,960,960,979,1007,942,1002,1006,989,1005,968,928,992,978,990,955,987,1015,883,891,866,856,852,887,866,894,904,922,874,855,884,871,875,907,898,923,873,875,836,898,883,871,892,883,848,829,846,850,845,815,826,821,855,829,835,810,818,848,830,842,822,841,805,841,818,854,849,819,835,850,820,830,830,847,858,824,826,961,983,943,934,946,967,914,984,975,993,961,971,996,979,963,991,1017,962,970,1007,992,1000,939,936,970,978,921,974,1005,999,968,887,924,880,929,914,879,900,908,876,900,951,907,887,911,905,911,888,911,902,896,901,880,913,924,874,874,883,911,904,918,930,931,918,880,831,840,849,823,821,814,865,856,867,827,800,853,839,845,827,855,810,838,842,829,810,832,829,852,832,857,830,826,850,836,824,831,850,859,851,826,769,777,778,757,743,785,765,768,760,783,755,778,784,776,773,777,778,771,751,763,768,785,783,798,762,787,806,793,777,772,780,782,787,774,890,956,867,961,928,850,981,1048,943,976,909,869,927,907,899,983,888,893,986,982,969,953,904,913,949,972,952,954,872,864,885,894,896,887,848,847,889,837,822,862,852,880,824,888,866,891,855,894,850,851,829,879,856,851,871,872,874,855,868,865,863,864,862,853,867,819,821,796,789,827,825,789,820,801,848,808,808,812,826,806,807,797,799,774,800,818,825,795,820,783,825,831,804,767,787,760,774,796,763,766,817,780,754,782,784,764,783,775,774,804,777,790,788,771,793,755,768,771,786,795,803,757,753,779,780,772,805,790,773,792,778,782,756,755,789,788,805,764,796,786,756,787,779,782,791,780,794,779,781,758,783,772,752,796,771,824,781,860,842,852,886,838,789,817,890,848,802,882,827,876,870,852,796,824,846,764,813,846,814,821,838,767,821,812,836,784,856,832,902,1061,1048,1044,1063,1097,1089,1090,1039,1084,1040,1050,1049,1027,1082,1001,1069,1086,1038,1045,1022,1003,1015,1072,1011,1072,1052,1095,1065,1099,1027,1046,1070,1010,972,973,991,998,992,989,1006,969,967,998,973,994,973,962,990,947,938,963,1007,1002,993,982,970,977,997,1007,996,973,969,995,982,939,985,941,1001,956,963,894,977,931,1011,903,956,937,977,920,974,995,950,987,971,970,960,952,933,997,951,980,943,906,958,1001,1090,1079,1077,1071,1003,1058,1014,1014,1017,1079,1077,1021,1036,1040,1037,998,1046,1049,1033,1068,1029,1003,1038,1071,1018,1014,1017,941,930,951,904,975,920,988,966,937,970,963,905,914,1017,929,931,948,939,946,910,971,991,978,963,938,963,983,959,988,955,942,951,880,875,882,914,872,867,875,875,899,862,892,887,906,856,853,857,881,834,898,859,849,867,874,896,857,882,869,832,923,897,940,857,839,806,823,755,808,812,812,831,837,786,783,776,819,787,834,864,803,821,771,853,832,804,825,803,752,839,798,798,827,812,846,826,846,843,844,846,853,808,877,858,817,788,817,824,827,860,829,823,853,841,778,834,800,818,879,848,867,867,821,864,887,884,870,850,905,852,887,851,884,920,855,898,852,865,857,882,886,886,852,897,923,850,898,913,871,861,881,905,921,944,926,927,944,914,928,935,908,941,919,973,904,920,929,935,946,940,926,916,898,888,887,901,915,924,935,917,928,952,858,860,862,872,879,821,898,864,875,835,881,835,852,855,862,856,843,851,855,836,826,836,856,882,862,866,879,869,843,846,857,846,809,806,846,835,821,822,818,832,874,844,840,811,846,821,815,847,794,813,834,777,861,820,824,852,805,757,833,854,827,761,769,763,762,759,777,778,775,798,751,770,749,787,774,814,752,771,779,758,775,799,756,771,754,761,798,776,772,764,759,767,794,750,994,957,987,980,1002,961,984,985,1009,996,984,959,997,987,942,976,966,938,971,997,983,926,966,996,989,1024,1005,925,846,838,864,826,848,837,877,830,845,829,886,898,875,820,867,841,833,855,822,832,908,843,828,852,865,822,802,840,872,866,809,873,803,862,813,882,826,775,847,893,916,889,910,851,829,801,861,772,875,862,836,943,798,854,833,852,864,843,830,824,842,880,875,826,853,926,794,786,1001,977,1025,968,1006,958,989,984,940,1025,1001,1019,983,972,1015,1015,950,993,998,960,1008,987,990,953,984,1007,961,961,1156,1154,1132,1181,1142,1129,1130,1149,1175,1141,1179,1123,1156,1129,1128,1113,1155,1113,1168,1117,1108,1137,1128,1154,1116,1160,1108,1172,1122,1126,1095,1123,1048,1149,1075,1116,1074,1143,1163,1079,1175,1079,1111,1111,1172,1079,1092,1103,1098,1108,1137,1121,1110,1102,1113,1108,1097,1100,1132,1157,1142,1146,1161,1040,956,905,940,1021,1078,1001,1017,983,977,945,895,943,999,943,991,1007,1022,1041,1029,973,993,1017,1056,744,758,734,760,782,801,715,768,741,695,718,816,755,719,732,754,728,778,813,747,796,714,726,763,718,752,755,743,782,733,713,972,979,946,994,910,990,883,1003,917,939,965,966,953,957,918,984,952,935,981,961,1009,965,921,917,934,897,932,949,966,1009,970,958,973,994,995,1002,987,986,1104,1023,999,1003,999,1030,1022,1047,1047,1086,1005,1124,958,1015,1083,1113,1061,965,1054,1016,1077,1008,990,1034,977,991,1054,941,1068,990,1034,974,1020,1008,949,991,980,942,1009,950,950,957,913,925,1043,991,992,907,964,1059,987,954,991,962,1005,974,960,972,939,968,934,740,932,987,872,896,818,965,916,951,991,882,966,983,938,838,1014,946,1074,948,940,936,936,984,1055,779,771,766,784,752,768,790,762,741,776,801,761,801,783,793,796,796,742,758,794,788,779,781,770,789,779,757,778,763,755,768,758,821,767,768,790,839,894,813,777,836,928,805,826,940,822,1011,847,787,936,821,682,916,880,805,876,761,776,881,885,897,906,879,829,782,1131,1116,1133,1136,1130,1181,1158,1162,1155,1186,1147,1169,1163,1119,1164,1129,1163,1174,1143,1138,1127,1144,1151,1092,1134,1247,1211,1097,1089,1112,1122,1121,1162,1118,1183,1136,1142,1231,1143,1114,1115,1152,1151,1088,1177,1123,1136,1151,1057,1169,1171,1093,1185,1149,1169,1048,1164,1055,944,970,1063,1042,1108,1008,1003,1059,999,1015,1030,1008,1042,977,998,1015,1040,1027,1081,984,1018,1056,1076,948,980,1006,1039,976,1112,1011,929,1096,702,780,740,726,784,749,802,795,783,761,811,823,779,774,696,764,796,792,794,733,789,835,771,679,744,773,799,714,769,742,705,738,710,721,706,673,723,732,683,729,708,715,677,684,717,696,727,725,718,739,724,685,664,752,706,717,746,698,711,775,739,814,779,769,744,823,735,792,806,750,880,747,779,814,808,813,773,774,792,770,850,772,821,788,770,816,791,630,787,804,874,793,706,788,823,756,703,805,809,754,782,765,750,796,763,736,638,776,783,879,668,692,649,764,1099,1087,1138,1152,1133,1137,1098,1156,1125,1176,1213,1167,1168,1135,1090,1140,1177,1121,1076,1150,1098,1100,1105,1186,1124,1158,1127,1132,1195,1147,1158,1027,1094,1072,1014,1028,1092,1034,1102,1091,1092,1103,1083,1015,1140,1118,1032,1104,1096,1099,1091,1102,1067,1058,1073,1079,1102,1115,1075,1051,1066,1079,1092,1078,1069,1058,979,1002,951,983,953,955,971,992,964,978,982,1033,988,978,1027,987,951,975,1019,949,969,997,979,989,989,984,900,890,896,901,896,905,920,893,909,887,883,910,898,897,918,927,913,868,925,905,918,921,923,928,894,885,901,869,869,824,832,854,840,863,876,814,819,824,851,852,850,811,857,806,805,838,873,835,844,838,827,861,837,805,840,821,811,846,873,848,840,841,882,852,842,826,791,811,798,806,816,781,859,794,808,850,854,831,807,837,840,794,802,781,775,799,837,841,796,861,795,803,797,872,871,851,888,894,834,906,903,891,907,895,919,908,900,921,917,884,841,891,901,877,934,913,869,871,913,905,873,905,898,865,905,961,942,950,906,923,880,950,913,941,961,956,938,884,951,961,961,949,924,940,922,925,916,970,935,907,914,975,924,936,968,975,911,1082,1104,1143,1104,1118,1162,1069,1083,1078,1111,1073,1115,1103,1140,1129,1098,1107,1102,1107,1151,1077,1096,1125,1069,1092,1131,1049,1077,1060,1107,1052,1084,1043,1105,1087,1078,1101,1120,1088,1075,1075,1093,1089,1076,1041,1053,1080,1089,1038,1121,1102,1063,1037,1102,1109,1044,1021,1047,1026,1036,1052,1062,1024,1059,1034,1029,1039,1059,1022,1012,996,1050,1039,1059,1048,999,1035,1042,1046,1051,1015,1014,1033,1060,1061,1045,1045,1028,1047,1017,1066,1037,1071,1050,1043,1051,1063,1056,1046,1063,1044,1032,1049,990,952,1035,1065,1035,1028,1049,1011,1033,992,1068,1072,1016,1023,1019,1069,1014,1040,970,1035,937,947,983,977,927,943,963,936,942,939,954,937,997,941,955,916,926,956,964,933,943,955,959,933,969,957,938,933,969,944,932,826,820,836,828,839,812,814,822,806,837,808,799,818,793,829,827,778,807,818,839,830,811,825,843,831,819,814,815,810,791,788,764,800,770,793,798,806,814,755,790,816,807,803,806,805,837,795,824,780,815,767,808,752,793,764,782,791,761,760,764,782,746,768,759,756,750,805,818,781,782,762,805,792,781,780,811,759,787,735,769,735,794,780,802,762,757,775,721,782,853,1008,1037,981,989,961,989,968,969,980,1001,995,959,1026,965,976,973,981,1005,985,1051,967,958,985,926,1017,996,987,1023,1012,979,990,984,899,976,954,922,931,805,857,918,964,958,961,904,866,961,928,963,936,878,929,863,871,950,888,963,939,922,845,958,869,895,878,931,934,900,868,915,899,858,771,865,816,819,816,823,807,872,860,882,846,839,850,840,889,851,911,829,839,806,871,832,865,1009,1126,1069,1120,1055,1142,1080,1115,1092,1141,1088,1115,1096,1097,1109,1129,1166,1041,1088,1108,1056,1135,1092,1181,1095,1086,1107,1129,1058,1096,1085,1115,1090,1090,1113,1134,1112,1078,1058,1149,1034,1114,1100,1090,1086,1094,1075,1075,1111,1119,1099,1030,1108,1040,1043,1101,1097,1053,1089,1064,1056,1019,1061,1036,1048,978,1030,986,988,972,1046,1027,1007,1034,1016,1005,1004,1017,1039,974,1010,1028,988,1053,1020,1008,987,1015,1026,1032,1019,1034,989,1003,995,1011,1003,1035,1017,1005,1010,1019,1005,1004,1023,1012,988,856,916,881,849,885,904,875,882,925,869,920,870,808,865,870,858,902,884,888,860,898,844,849,839,887,825,819,814,816,789,817,777,857,858,832,834,808,818,809,843,783,795,818,825,788,782,787,786,809,796,822,831,1075,1007,1025,1045,1008,999,1039,1078,1053,1056,1037,1012,1043,1054,1086,1023,1008,1081,1086,1060,1053,1048,1083,1010,1043,1039,1096,1023,1077,1030,1039,1014,1021,1038,1018,996,1031,977,1020,1041,1040,1038,1016,1026,974,1071,1064,1042,1021,1031,1037,1046,1054,1052,1013,1017,1085,1066,1028,1005,1086,1006,1039,1072,990,1007,972,1071,964,998,931,1040,1016,1049,1014,1009,1086,1079,1044,1021,1002,1003,1008,1034,1001,971,978,1057,980,987,994,996,1028,924,924,908,874,892,917,849,960,915,901,920,893,915,891,903,900,897,876,928,920,884,902,943,880,915,976,879,858,903,775,781,796,768,813,768,749,811,788,753,774,815,800,773,810,788,796,712,824,780,774,779,783,774,750,785,793,827,782,783,784,740,715,691,674,702,666,705,717,690,679,701,697,681,694,714,724,700,712,677,683,701,666,707,674,685,695,708,709,655,681,699,689,677,701,687,734,694,753,706,701,717,709,719,724,736,719,705,716,704,679,724,702,712,703,716,697,719,753,728,711,711,717,693,718,730,768,778,704,684,726,716,752,715,728,724,720,714,728,724,747,739,704,708,750,728,730,715,739,723,717,741,750,763,762,852,821,802,811,781,802,822,796,816,768,806,836,864,785,794,848,811,822,804,774,819,794,786,851,768,885,810,736,803,886,838,832,866,873,851,857,822,869,860,830,858,850,832,816,837,845,840,844,872,911,872,858,839,846,860,840,827,865,845,838,858,1030,1004,998,937,1007,996,974,1019,1006,1014,1000,1002,1052,992,949,1017,996,1032,1029,1031,1002,1017,1028,948,1048,1001,877,907,872,888,906,870,878,894,895,903,931,898,909,876,888,922,872,909,887,910,916,885,876,872,899,891,903,905,913,944,820,848,882,835,848,859,832,812,849,867,840,851,843,852,857,838,866,840,845,792,868,835,854,850,859,808,814,828,858,877,825,854,819,771,798,791,804,766,788,783,798,799,789,770,790,800,790,799,792,805,775,778,789,823,771,784,821,789,799,792,771,768,792,800,792,798,808,792,762,775,782,804,784,782,786,742,787,804,785,792,779,807,801,812,788,762,778,785,762,795,773,762,769,825,784,768,815,818,806,795,787,824,810,826,772,804,856,776,788,745,788,788,798,830,788,771,772,806,865,849,851,777,832,840,905,864,869,779,844,893,880,861,837,777,837,828,819,868,865,823,877,935,815,784,929,828,853,881,820,833,889,837,854,909,1088,1045,1072,1057,1043,1046,1057,1072,1075,979,1052,1008,987,963,1091,1089,1098,1072,1054,1035,1055,1080,1118,1094,1083,1019,1016,998,1066,966,1054,1030,1078,975,850,861,877,830,823,846,856,896,816,871,835,899,873,884,862,898,873,852,840,848,827,897,895,860,878,924,850,854,852,807,817,829,712,845,821,770,793,745,771,774,836,825,754,834,769,852,829,786,785,803,716,821,825,768,732,751,886,751,742,774,792,1057,1064,1008,1094,1067,1104,982,1104,1112,1066,1057,1072,1125,1061,1085,1055,1072,1066,1060,1097,1072,1066,1019,1116,1057,1099,1008,1129,1006,1094,996,1012,1044,929,1042,956,927,937,956,980,986,959,1041,1011,977,966,999,997,1001,976,942,948,1031,955,1002,998,970,960,979,874,906,885,938,869,890,889,887,885,887,907,920,888,865,909,894,883,895,913,898,867,896,893,919,889,914,914,903,912,851,911,895,826,827,727,830,842,784,804,766,814,772,795,835,796,835,807,829,792,819,806,829,797,855,829,805,826,768,818,778,785,822,749,829,849,847,818,783,804,832,784,841,824,797,816,789,829,804,826,809,835,793,793,868,804,799,814,808,794,815,847,804,807,801,829,798,871,878,961,944,908,856,885,941,901,927,896,893,860,917,936,892,925,969,920,942,902,862,872,895,873,887,896,878,910,1109,1092,1113,1168,1175,1106,1047,1076,1104,1126,1112,1064,1134,1107,1088,1123,1079,1124,1036,1094,1131,1107,1065,1108,1122,1078,1065,934,955,999,919,1007,965,987,1011,987,992,983,959,969,978,982,968,1002,988,1006,971,981,995,963,963,962,974,1020,949,1027,991,987,994,864,932,893,904,895,909,861,862,907,861,866,919,924,873,892,908,894,883,906,872,888,887,891,912,886,886,870,877,965,881,906,916,901,871,949,972,986,959,969,948,959,1001,946,948,926,958,992,958,957,951,933,962,949,956,958,949,957,989,983,971,953,960,989,932,943,938,758,748,786,798,832,752,771,795,800,769,768,809,809,775,836,777,815,792,759,750,778,800,749,760,777,752,817,764,763,797,924,706,794,786,783,756,747,709,866,785,824,765,738,687,824,769,836,732,821,830,758,802,744,793,736,790,804,1126,1150,1139,1142,1111,1090,1135,1098,1136,1107,1144,1063,1161,1147,1119,1070,1133,1092,1101,1142,1064,1067,1067,1076,1151,1038,1100,1134,1141,1119,1091,1159,1089,1107,1134,1104,1047,1065,1075,1070,1043,1045,1058,1093,1060,1055,1089,1092,1059,1079,1035,1114,1066,1048,1088,1034,1081,1034,1126,1103,1096,1014,1066,1103,1039,1056,1072,1012,977,999,990,993,979,972,1010,979,961,984,943,958,966,960,981,1012,996,974,961,1008,1012,966,1059,984,978,1027,1003,999,1013,994,900,868,890,840,853,934,839,849,924,862,899,848,865,893,831,891,812,884,865,908,852,880,861,860,926,834,857,822,830,869,1051,1080,1018,1030,1081,1071,1010,1061,1076,1051,1098,1055,1066,1043,1018,1097,1057,1071,1064,1062,1057,1074,1077,1057,1067,1078,1061,1024,1008,1058,1069,1075,969,972,974,980,959,977,985,989,964,1037,993,981,989,1026,1024,1008,1008,992,966,965,1003,1009,991,1053,960,1003,995,962,1038,958,943,1032,995,1000,1095,1128,1083,1169,1108,1058,1118,1073,1149,1108,1062,1158,1131,1138,1113,1099,1105,1134,1128,1128,1100,1098,1092,1081,1094,1142,1091,1110,1067,1138,1086,1087,1099,1033,1040,1116,1088,1038,1072,1073,1028,1073,1044,1067,1085,1065,1074,1040,1071,1097,1059,1065,1053,1060,1129,1063,1086,1052,1073,1063,1096,1071,1016,1033,989,991,1005,1053,1011,1041,1024,1046,1016,1057,1010,1002,1025,1012,1048,1036,1042,1056,1060,1005,977,1079,1076,1003,1057,1091,1012,986,994,1041,1040,1044,1044,1024,1024,1059,1031,1026,1052,1059,1061,990,1053,1026,987,1058,1019,987,1010,1055,1035,1025,1075,1025,1023,1052,1082,1011,1020,989,1039,1053,1084,1113,1078,958,1002,1073,948,949,935,931,919,948,972,924,953,942,950,987,961,948,968,996,952,893,960,902,931,946,963,935,933,777,815,826,803,810,826,805,774,795,763,842,811,824,800,863,842,808,828,770,807,819,798,819,803,802,782,809,823,824,845,788,779,808,804,792,814,996,1024,1030,1131,1002,999,981,979,1056,947,1032,991,1013,988,1027,974,1002,1032,971,1026,909,1041,1052,1005,1094,1030,1027,1025,1063,1071,999,1003,1012,1071,1011,1025,1051,1018,1034,1040,998,1083,1066,1042,1080,1046,1065,997,1067,1007,1029,1066,945,930,924,901,957,920,949,942,925,926,927,934,922,907,929,959,935,952,902,921,952,902,911,936,928,921,921,940,927,960,921,955,934,923,835,811,842,847,838,878,821,821,842,857,851,827,865,816,854,840,824,887,810,848,865,842,859,836,848,850,820,784,842,1003,1015,1022,956,1021,920,981,1012,975,975,966,984,1058,1021,947,1041,940,975,1014,1014,1045,992,962,1090,991,973,962,950,998,965,1004,968,975,941,962,982,917,975,945,910,910,959,963,958,943,938,961,982,987,935,958,953,982,974,969,969,928,943,872,840,800,881,856,847,815,790,850,857,813,792,837,822,866,840,860,855,839,851,859,868,787,842,856,828,843,870,834,826,858,845,716,730,725,751,743,743,745,749,717,727,765,752,741,765,767,725,754,715,755,767,717,758,736,737,752,753,731,729,709,752,751,724,718,762,764,757,760,738,776,735,716,752,716,738,739,772,744,761,755,776,759,722,707,772,739,743,774,764,750,746,732,758,717,755,739,754,775,788,776,838,779,778,763,806,792,795,743,793,762,797,783,740,711,797,814,740,796,799,784,805,709,803,791,822,829,780,799,786,800,935,942,912,902,955,974,958,922,884,958,910,871,935,973,874,893,915,936,908,953,900,942,929,913,937,816,831,802,804,854,850,806,840,834,836,841,817,825,848,814,882,824,878,798,838,817,824,802,809,838,841,853,838,844,833,843,835,799,805,840,833,819,890,885,849,928,948,912,893,988,869,952,862,899,943,946,948,882,905,872,940,913,926,923,869,945,928,923,870,898,901,918,841,900,952,898,933,935,808,782,841,817,852,808,825,803,827,801,810,845,823,806,826,800,835,819,825,836,799,808,826,797,844,807,826,834,850,837,775,845,756,774,802,820,756,826,776,778,796,753,761,795,770,771,831,778,781,786,772,793,806,818,776,769,787,810,810,833,777,757,823,811,847,780,809,866,838,844,833,793,813,784,856,796,836,807,777,781,750,832,790,814,841,834,991,1010,1034,998,1012,1073,1030,1035,1032,1022,1060,1001,1022,1022,1010,1042,997,1065,1053,1065,1025,973,1048,1033,1036,1007,1006,1000,1047,1030,1050,1070,1059,1019,934,962,920,979,967,949,1007,959,973,953,978,979,1008,1002,946,1002,923,978,958,965,998,983,967,1021,1010,982,968,970,867,854,851,883,865,892,877,849,856,858,865,872,848,919,927,858,854,880,899,863,886,844,902,900,890,889,870,891,866,891,868,881,865,1005,1012,1042,1034,994,1056,1054,1018,1045,1033,1049,1027,1012,1035,984,1065,973,1011,971,1052,1044,1051,1005,991,1024,1026,999,1021,986,959,991,1066,1031,991,1045,1011,983,1064,1028,1044,938,934,944,904,922,910,960,865,904,980,948,926,886,953,967,941,923,900,940,895,1000,903,936,974,943,952,918,986,952,908,869,992,964,881,912,948,960,924,1021,920,1004,980,900,919,938,946,921,861,925,975,939,903,894,899,944,890,913,1030,1031,916,1082,1122,1118,1082,1096,1138,1100,1082,1081,1081,1080,1090,1099,1091,1125,1108,1105,1092,1137,1091,1121,1150,1095,1101,1106,1114,1071,1095,1056,1076,1135,1134,1110,1101,1062,1092,1067,1113,1120,1048,1062,1024,1107,1070,1011,1029,1121,1011,1038,1150,1065,1062,1040,1105,1080,1059,1063,1030,1044,1082,1058,1043,1061,1079,1045,1132,1000,978,927,973,976,940,964,944,964,910,968,964,927,947,953,980,954,935,953,982,944,984,968,937,972,988,939,970,974,962,921,919,949,924,918,960,917,956,924,939,919,907,917,937,897,922,899,940,927,921,946,969,944,920,919,939,981,871,1005,1001,960,970,992,1006,1025,964,943,942,992,1003,900,955,928,932,946,1036,1019,933,949,953,950,902,955,995,978,945,825,827,840,833,815,814,839,818,820,820,818,821,827,818,808,799,810,815,841,804,828,831,835,835,834,820,839,829,834,792,816,817,825,815,830,805,818,844,867,844,837,833,811,832,833,828,849,771,836,848,832,827,875,848,848,809,808,821,843,849,829,873,880,833,814,770,785,786,827,766,784,805,791,802,802,789,791,798,789,788,807,788,816,783,790,797,809,790,806,803,789,799,812,785,815,783,805,812,782,829,795,823,790,843,821,811,826,807,805,781,812,823,794,841,795,801,821,794,823,803,788,833,772,798,785,741,753,753,782,723,711,753,819,770,732,769,779,740,738,787,774,732,748,748,738,736,808,732,751,775,753,742,786,823,734,820,793,811,1111,1083,1082,1085,1094,1100,1074,1089,1066,1065,1152,1074,1075,1101,1110,1110,1097,1091,1073,1069,1104,1067,1093,1109,1139,1107,1114,1011,1065,1077,1031,1037,1035,1017,1071,1090,1058,1016,1031,1051,1083,1026,1034,1038,1059,1062,1102,1091,1012,1076,1072,1042,1078,1076,1102,1017,999,1033,966,1019,1011,1009,964,980,995,1018,1010,1026,996,1004,996,991,1010,1013,963,984,973,1010,979,985,984,977,1008,1028,1015,971,1011,898,843,889,861,850,887,853,860,805,839,878,900,828,824,866,873,811,847,846,832,860,894,849,887,845,866,815,831,872,837,886,880,847,931,860,872,866,893,823,890,856,891,886,858,887,858,882,830,849,807,851,829,905,884,839,865,846,890,946,887,881,847,812,813,792,798,794,778,786,776,807,764,754,759,816,836,760,798,739,798,801,781,784,790,797,805,783,784,755,769,771,777,773,771,813,850,808,769,811,834,729,818,785,759,808,763,797,760,774,767,810,788,789,824,773,757,735,787,779,785,788,805,797,792,783,805,772,834,754,756,783,779,853,711,762,856,814,773,790,778,711,744,766,810,776,841,718,820,700,809,871,758,948,765,823,775,795,775,765,884,1122,1152,1084,1148,1186,1144,1149,1144,1192,1171,1177,1151,1171,1139,1103,1144,1163,1233,1134,1160,1131,1174,1120,1112,1132,1164,1119,1090,1055,1040,1068,1070,1033,1053,1093,1066,1044,1074,1072,1066,1067,1078,1003,1019,1057,1129,1061,1064,1026,1065,1054,1087,1069,1077,1056,1060,1084,1069,1066,1040,1067,982,1005,1069,1030,992,1000,965,1053,1037,965,1012,1020,1046,1012,1051,1070,1023,1024,1008,1009,1085,1058,968,1043,997,1000,1031,1024,987,1015,1041,985,1005,1081,920,938,868,914,935,957,953,895,947,945,916,921,970,908,979,961,939,932,923,937,909,896,932,921,904,943,997,968,950,922,943,954,971,960,824,857,865,866,886,866,836,838,854,852,860,809,847,854,853,864,867,849,843,867,845,839,851,842,887,899,850,847,824,764,772,807,816,800,807,804,808,802,800,787,818,765,810,814,797,795,806,799,804,800,800,793,782,807,738,826,815,776,804,1002,1003,1028,985,1022,1025,994,1019,1030,1027,1015,971,1005,1001,953,958,998,1060,1000,1029,988,964,1001,1057,1012,960,1032,1062,1051,986,905,866,820,919,894,906,879,852,873,891,855,861,863,872,855,888,905,860,879,856,891,948,890,864,874,852,899,914,883,918,907,926,874,868,990,911,961,810,947,872,926,919,901,876,928,893,954,897,880,921,916,801,996,985,924,893,908,947,856,936,864,826,832,927,872,1060,1067,1031,1065,1081,1062,1034,1072,1064,1078,1050,1008,1030,1080,1060,1093,1070,1069,1008,1030,1059,1045,1038,1044,1053,1084,1051,1022,1023,1096,1062,933,1032,1057,1102,1015,1006,1038,1013,954,1023,1046,980,1006,1022,942,1030,1011,1050,945,998,1015,1036,1040,1071,1135,1024,1004,1031,982,1010,904,900,912,945,916,889,940,904,930,905,940,884,892,877,917,884,917,868,898,876,881,903,877,895,932,880,870,816,815,775,832,816,771,786,811,791,808,786,776,818,790,791,823,808,825,803,769,829,827,789,787,808,792,816,823,786,797,809,768,738,762,778,796,769,824,778,804,806,771,789,779,810,793,827,800,756,778,777,780,784,771,796,767,796,802,754,785,797,788,764,743,802,798,845,853,847,826,857,855,815,866,875,792,835,860,808,863,860,864,844,846,800,849,888,870,859,1051,927,1032,1034,1006,990,1027,1037,1019,1068,1021,1053,1070,1000,1095,1024,1014,992,1012,1003,1031,996,1008,1009,1045,1002,1014,1049,862,856,861,882,936,879,869,884,903,878,890,889,908,897,887,871,880,902,883,878,895,896,873,889,864,902,866,906,903,878,889,940,972,975,957,964,941,987,979,1062,869,999,1018,909,991,942,927,956,1049,976,989,989,941,999,939,964,923,977,957,1038,968,975,969,1001,1004,1002,952,969,988,987,971,962,1005,932,964,980,931,1007,985,960,942,953,944,944,943,936,935,978,949,914,890,918,965,903,891,947,961,931,909,919,898,908,933,887,949,895,898,909,918,941,917,901,950,943,905,957,952,953,922,978,818,890,867,879,839,875,826,851,908,892,870,805,910,893,910,885,892,836,881,835,877,824,809,785,874,871,844,921,836,931,895,868,919,862,931,894,878,863,904,915,925,884,880,912,906,865,925,914,870,888,888,856,874,885,914,893,899,884,886,913,954,977,925,952,941,936,998,988,976,984,960,937,937,967,982,933,935,970,922,1026,973,946,938,932,959,944,950,956,945,993,967,977,977,959,980,976,1004,987,1006,964,983,974,985,988,954,970,937,960,1007,963,983,954,987,968,985,975,941,967,989,1035,981,1037,980,972,1004,982,964,993,1025,1024,1043,1017,1059,1018,982,1077,993,1042,1000,940,1003,1021,1047,1011,998,1038,970,932,1013,895,872,877,877,904,948,898,917,899,892,924,894,894,904,902,904,897,893,910,910,915,878,915,916,894,930,891,876,909,836,839,846,842,847,834,809,855,827,838,828,808,808,893,824,849,869,827,817,839,828,876,824,822,821,836,843,825,837,838,870,850,854,792,808,771,805,793,820,815,785,796,794,761,781,775,767,783,813,788,780,797,795,793,778,781,791,777,797,780,779,774,801,810,781,763,835,782,806,807,801,817,790,789,804,804,759,791,757,802,821,797,806,789,805,797,834,806,819,802,801,812,838,800,819,812,794,806,823,783,813,804,849,830,840,900,858,832,829,875,839,845,860,853,881,850,811,893,847,901,843,882,854,794,886,828,837,852,869,842,838,843,842,799,856,835,801,787,838,828,842,821,838,842,810,844,803,816,815,832,853,792,839,838,833,829,829,806,864,768,1004,954,937,992,1025,950,978,957,993,988,959,952,935,979,1033,994,932,980,930,1007,961,983,982,1014,989,1032,932,984,1053,968,1035,1002,978,1007,1018,1002,984,1013,987,962,953,978,974,1018,975,997,993,1019,994,972,990,1001,1134,1096,1138,1067,1113,1128,1117,1099,1122,1122,1119,1128,1094,1108,1141,1120,1158,1126,1144,1085,1169,1122,1138,1144,1166,1166,1156,1128,1011,1057,1127,1106,1074,1052,1083,1052,1073,1048,1109,1091,1087,1069,1045,1042,1115,1077,1061,1075,1099,1072,1126,1083,1083,1072,1095,1074,1098,1039,1082,1056,1029,1070,1048,912,985,971,959,1018,958,972,1003,956,1003,930,982,1061,973,1048,980,970,943,966,965,919,998,965,974,935,968,973,1040,1064,1047,1083,1118,1130,1103,1073,1158,1101,1103,1131,1151,1151,1112,1071,1087,1205,1113,1109,1077,1067,1168,1143,1067,1121,1152,1179,1115,1099,1108,1033,1008,1097,1004,1023,1056,1041,1109,1096,1127,1042,994,1032,1067,1020,1082,1049,1009,1118,1058,1092,1048,1014,1054,1038,1027,1084,1082,1034,1045,1049,1071,1119,1059,1059,1017,1054,1057,1048,1072,994,1016,992,987,976,975,977,978,981,978,964,965,954,976,1010,970,969,976,977,976,951,993,979,984,988,985,969,986,992,984,974,936,884,927,966,936,920,918,944,920,968,913,905,972,967,981,968,955,925,982,932,949,940,945,903,1003,948,925,927,980,916,928,954,959,931,941,846,855,836,878,823,877,838,826,860,885,850,861,856,855,873,811,834,880,834,850,840,833,868,845,854,879,865,843,846,857,825,808,811,820,835,822,813,804,806,801,838,827,804,813,790,834,824,782,826,845,849,824,823,802,803,812,812,787,824,783,767,771,752,736,740,812,815,773,787,711,746,747,735,754,807,735,735,744,785,770,734,761,808,781,796,725,776,747,790,802,830,745,759,737,857,911,869,890,893,918,862,904,900,872,853,879,910,838,888,871,871,877,857,901,917,877,905,917,920,915,922,898,890,844,832,863,833,852,889,861,842,850,855,868,830,842,827,863,869,819,874,846,832,827,839,872,814,877,870,817,896,822,831,842,848,960,955,949,991,969,962,968,949,932,981,962,965,986,956,905,1002,1016,982,922,1009,984,990,970,948,1002,936,891,989,978,830,810,784,826,841,837,794,799,862,810,867,869,813,818,869,811,832,832,802,856,798,844,856,889,831,766,855,866,851,820,853,790,813,783,1023,975,1033,1027,1060,1027,995,978,1015,1034,1032,1006,996,1002,1033,1046,1037,969,984,1005,1030,1011,973,1020,1015,962,962,1036,1007,974,971,993,984,982,993,1010,988,984,999,973,1051,1016,962,1063,967,1023,1022,983,975,948,928,987,969,1027,949,1036,990,1011,955,975,997,1054,994,967,1025,1007,1050,1014,1037,1010,918,1009,988,1009,933,1004,1036,949,1000,1024,1002,992,1037,946,1026,1033,1024,998,965,982,987,1020,1041,891,853,908,918,896,930,889,934,893,902,901,914,900,900,879,894,907,900,889,872,936,887,902,855,792,840,858,813,811,841,835,824,887,856,802,858,833,829,827,814,828,839,844,839,841,827,812,832,824,827,817,850,814,838,848,975,999,933,996,987,943,898,937,927,927,980,949,934,957,936,947,952,953,948,902,930,914,972,917,956,961,977,904,966,957,969,941,958,965,1052,987,949,984,989,968,980,995,984,1027,1028,1017,1012,1026,1006,1017,1003,982,989,961,957,997,948,1037,957,977,965,986,1095,1021,1086,1078,1036,1049,1020,1062,1085,1049,1074,1090,1077,1038,1083,1093,1082,1053,1080,1024,1070,1073,1085,1131,1086,1079,977,1010,937,965,981,971,959,1001,960,950,981,977,957,948,993,959,1006,943,988,985,984,990,984,969,938,950,953,962,1012,982,953,966,923,879,879,887,879,926,870,933,920,871,922,906,878,888,903,921,873,906,898,895,897,922,890,906,872,930,868,915,917,867,867,897,810,841,820,792,799,836,812,851,848,802,822,816,791,793,784,847,801,838,826,818,798,798,838,829,844,799,814,832,811,813,782,841,815,823,873,894,918,891,850,881,911,913,885,891,857,890,901,868,837,970,929,926,893,888,858,938,921,880,876,874,889,933,939,976,971,964,967,916,878,937,971,953,946,965,1011,946,987,970,906,978,896,936,953,918,960,947,934,964,938,920,947,926,1163,1099,1080,1080,1115,1163,1136,1161,1115,1117,1113,1178,1133,1156,1160,1137,1128,1101,1096,1094,1091,1106,1130,1132,1134,1151,1133,1156,1067,1068,1102,1048,1074,1036,1030,1072,1111,1080,1020,1072,1079,1095,1059,1064,1078,1112,1055,1068,1141,1063,1125,1041,1057,1072,1127,1094,1059,1063,964,924,956,957,949,995,961,972,962,978,947,1003,1002,975,991,966,983,987,990,953,972,980,986,1000,990,970,959,1006,936,942,959,975,958,943,968,979,973,959,954,943,951,937,926,990,936,991,959,891,932,958,958,948,934,975,982,845,980,904,922,960,828,819,812,827,849,823,810,807,851,857,803,817,803,826,809,845,837,797,849,831,843,842,830,793,814,805,853,813,817,806,857,905,904,907,889,879,902,922,933,895,934,916,888,942,899,939,873,910,958,914,893,904,896,907,925,885,908,907,901,917,901,980,792,827,777,801,843,781,839,798,762,786,789,851,795,793,807,834,876,785,826,852,823,834,812,840,853,792,844,857,855,853,805,729,859,904,893,839,762,732,852,862,907,959,866,911,863,891,815,870,818,838,841,950,798,799,848,847,829,796,843,855,851,966,1035,1045,1023,989,979,1005,987,987,969,994,1014,992,1014,966,995,973,1020,1021,964,1002,1034,1007,1029,977,995,1050,1178,1152,1138,1171,1187,1181,1131,1136,1127,1078,1219,1107,1138,1180,1111,1130,1154,1175,1141,1114,1074,1138,1156,1174,1124,1119,1172,1138,1152,1116,1109,1105,1050,1116,1111,1082,1119,1066,1093,1070,1108,1118,1111,1111,1040,1128,1092,1090,1054,1109,1061,1134,1092,1089,1062,1090,1059,1102,1074,1104,1012,947,958,1010,981,1003,958,1013,988,1021,963,979,977,964,990,1053,977,1029,991,1018,1034,1009,1023,978,1065,989,975,991,1013,1015,995,1041,1021,842,866,887,895,837,884,860,866,843,844,883,900,835,891,864,851,838,892,868,850,820,831,852,877,894,875,870,841,819,839,786,801,830,869,833,809,806,857,818,833,831,810,800,806,832,809,788,862,855,789,800,795,775,826,775,797,839,840,843,802,811,840,798,748,786,1012,848,920,870,894,874,880,929,917,910,942,943,885,923,874,906,955,975,838,991,857,871,865,916,926,953,870,959,930,1202,1158,1188,1215,1187,1161,1232,1204,1163,1146,1220,1188,1142,1185,1179,1181,1235,1203,1199,1196,1215,1215,1160,1154,1229,1205,1179,1210,1200,1206,1252,1153,1195,1126,1133,1130,1106,1158,1204,1122,1107,1106,1082,1142,1151,1107,1129,1141,1114,1101,1130,1138,1077,1133,1173,1184,1167,1115,1049,1054,1007,1041,1000,1031,1103,1071,1045,1047,1012,1011,1043,1029,1008,1073,1044,1032,1013,1049,1054,980,1049,1017,1063,1058,983,960,955,965,973,978,953,924,959,950,932,986,979,977,998,984,973,958,961,954,962,999,930,985,981,989,974,961,979,948,993,972,1108,1127,1095,1062,1128,1139,1091,1084,1152,1168,1115,1191,1182,1140,1114,1135,1104,1150,1124,1042,1084,1107,1153,1093,1136,1051,1144,1125,1120,1150,1098,1096,1102,1108,1099,1131,1074,1051,1181,1142,1075,1109,1112,1124,1074,1008,1092,1076,1078,1076,1123,1089,1196,1136,1111,1041,1063,1032,962,997,930,988,1010,996,1025,938,1023,1038,1015,925,996,1050,925,965,999,982,979,969,1020,998,1006,1027,926,1050,981,973,974,991,1008,703,776,723,773,776,776,743,724,759,703,708,731,739,764,765,778,761,757,797,788,739,796,769,733,751,770,706,754,778,728,793,733,973,960,925,888,894,896,874,974,893,857,957,908,916,947,931,945,926,953,931,937,901,887,906,904,898,854,916,933,885,799,799,837,817,789,835,792,815,808,765,804,787,761,824,780,816,773,799,810,774,804,783,813,748,804,784,810,809,812,785,830,792,791,769,793,764,779,771,775,786,767,794,744,759,749,735,788,768,785,789,792,811,761,768,774,806,754,728,766,782,752,778,764,774,737,834,765,815,792,777,811,778,784,772,772,811,782,787,804,794,767,787,766,795,778,765,809,779,818,803,808,759,782,787,768,843,845,870,825,835,800,809,824,869,812,849,806,853,819,822,834,864,826,856,833,843,828,829,858,791,799,851,896,895,883,885,885,893,855,902,871,882,869,882,876,833,901,849,830,874,896,872,913,846,886,888,863,883,893,873,866,892,912,838,859,836,849,876,897,891,905,829,848,852,764,796,812,819,838,818,799,771,831,799,776,795,829,823,830,794,808,810,825,846,824,806,837,840,844,858,867,862,883,862,859,876,866,836,844,838,887,854,877,852,848,880,851,882,833,847,819,826,860,857,888,864,878,813,894,864,871,931,911,881,870,920,890,911,877,870,868,943,913,901,903,922,879,924,926,903,880,876,927,866,887,886,917,932,901,892,890,886,853,926,870,1064,1090,1055,1092,1085,1064,1053,1108,1028,1042,1061,1062,1057,1069,1066,1054,1161,1018,1058,1000,932,1071,1063,1079,1049,1055,1053,1129,1138,898,838,867,846,870,875,884,880,883,846,848,934,846,888,923,901,859,839,864,893,831,879,825,812,935,862,929,850,893,869,825,878,872,949,882,760,768,851,827,849,803,928,759,814,779,818,830,861,847,818,876,764,873,896,806,844,852,882,833,793,824,768,889,802,947,968,935,922,928,967,982,982,1021,1000,974,999,970,981,943,977,929,934,992,979,936,950,931,964,932,969,907,960,952,971,986,951,950,973,993,969,940,1133,1176,1164,1179,1125,1087,1150,1115,1128,1133,1134,1136,1113,1121,1146,1117,1175,1155,1157,1159,1141,1144,1121,1138,1115,1109,1124,1083,1090,1039,1073,1069,1032,1077,1107,1052,1143,1088,1107,1015,1065,1076,1116,1049,1119,1126,1092,1098,1039,1142,1111,1177,1095,1081,1065,1090,1051,1069,1046,1112,997,900,976,931,897,929,943,1001,975,954,975,923,1013,995,930,957,917,962,994,943,978,926,968,974,1005,939,969,918,926,989,881,808,837,848,791,850,796,853,825,821,856,784,821,817,825,839,841,863,819,833,838,814,856,835,844,1038,1022,983,1036,989,1004,1047,1040,1036,1013,1012,969,1014,1014,1033,1023,1056,1030,996,1032,1046,1038,994,971,982,1000,996,1073,1017,1050,1081,1002,1066,1079,1057,1061,1030,1048,1044,1052,1077,1077,1093,1089,1061,1105,1079,1059,1053,1090,1039,1073,1103,1085,1036,1079,1086,1089,1076,1095,1044,1071,1059,1057,1042,1076,1026,980,1093,1042,1059,1076,1049,1077,1009,1009,1046,1108,1085,1062,1055,1083,1013,1104,1053,1095,1015,1058,983,1025,1025,1063,969,1065,1012,1020,1037,1052,1005,1042,1020,1015,981,982,1014,995,1030,1032,1030,1033,1055,1072,1070,1076,1024,1059,1042,1068,1039,1027,1041,943,953,962,968,964,1033,975,931,989,973,957,978,982,966,906,982,933,871,945,971,918,972,938,917,978,1028,906,954,939,953,974,959,981,930,961,999,968,906,967,959,982,949,985,1021,907,982,964,974,975,938,1002,1017,967,987,1074,1005,966,987,983,1000,964,995,1017,1024,826,892,842,812,851,825,861,856,835,836,869,818,852,850,840,811,872,850,871,858,841,805,841,835,882,829,858,853,840,1029,920,944,871,888,953,851,810,857,948,992,963,874,941,895,925,840,984,1008,908,948,1030,936,942,878,851,974,900,955,948,974,929,895,876,999,955,1035,996,1006,934,961,1021,1006,952,996,937,1006,1005,1029,965,944,1009,1011,1041,953,986,990,947,1026,1049,953,969,1025,967,970,980,973,823,789,867,814,823,893,825,823,825,849,828,836,840,888,870,832,800,858,851,823,838,854,842,840,800,781,854,865,849,846,838,811,849,830,846,780,823,817,799,825,802,834,832,794,863,800,818,786,809,838,821,870,854,848,805,834,810,854,818,779,812,808,787,821,801,825,773,813,801,898,887,887,889,837,905,875,914,908,848,916,861,831,865,868,866,883,921,857,830,872,882,853,841,864,836,880,813,871,847,875,845,833,896,795,802,779,804,795,833,801,816,802,804,787,749,815,800,760,800,793,800,779,829,804,813,782,821,806,773,832,989,957,1017,986,1004,1029,1016,1007,968,1021,967,996,1003,1013,1025,1006,998,1000,1021,973,995,1028,985,1020,990,1013,1013,977,1002,1007,1003,1055,986,978,1007,967,995,985,983,998,986,1032,998,975,1053,1051,1073,1023,1002,997,1068,990,1036,994,1039,1006,992,1022,976,1079,961,1056,1043,1019,1064,1017,999,934,921,914,980,959,984,976,936,978,1035,932,996,889,974,954,962,921,972,958,1007,988,1001,1016,960,975,956,960,987,963,1028,1051,1051,1018,1060,1025,994,1043,1024,1029,1040,1109,1000,1021,1000,977,1029,1042,1015,1066,1055,1056,1052,1005,1014,1058,1056,1045,1022,1081,1014,1014,1036,1061,1092,1033,971,1137,1091,1167,1099,1103,1056,1120,1103,1119,1120,1102,1079,1095,1132,1095,1046,1106,1100,1102,1094,1105,1103,1130,1126,1078,1131,1120,1098,1090,1103,1105,1122,1030,1091,1026,1110,1089,1067,1112,1082,1059,1069,1077,1032,1072,1070,1084,1021,1083,1046,1080,1087,1076,1065,1054,1056,1108,1108,1067,1091,1045,1012,975,967,997,950,986,966,968,987,997,972,995,1001,952,980,944,991,965,979,960,967,997,1031,1007,953,962,921,920,929,929,916,938,946,958,910,881,950,905,961,948,910,953,918,943,882,931,919,903,955,959,885,912,952,940,922,921,818,838,899,847,804,845,806,799,853,837,784,831,837,802,791,827,812,847,826,816,845,742,822,839,858,834,849,846,797,816,858,818,862,859,851,1030,1040,1002,1067,965,988,993,1035,1004,1016,991,1036,1054,1010,1002,1034,1017,1006,1018,1006,1000,1002,981,1017,1095,964,982,1040,1073,970,982,987,1038,982,833,900,912,847,917,880,843,907,870,859,909,883,873,856,891,886,901,872,865,890,855,830,884,880,850,859,861,900,885,905,884,894,836,833,896,881,859,1002,1017,894,892,1009,943,983,915,938,919,966,994,1041,933,983,951,956,990,1003,996,916,969,931,1001,944,1046,958,1086,1019,1043,1046,1047,1000,1016,970,1089,1034,986,1031,1033,1049,1035,1011,981,1065,1026,1047,1043,1036,1059,994,1070,988,1031,974,1020,1078,1049,1090,1086,1039,1067,1066,1099,1001,1068,1115,1051,998,1017,1026,1052,993,1065,1066,1046,1063,1038,1093,1037,1056,1068,1085,1054,1003,1156,1053,994,1066,1085,972,1031,977,948,954,986,904,934,933,909,940,917,999,918,867,949,920,928,903,943,916,960,893,923,916,927,887,925,977,955,936,926,902,955,986,1057,898,1015,867,968,946,983,1067,1002,981,1048,891,1021,1075,964,954,987,957,995,899,864,1057,904,966,1002,991,927,1169,946,967,972,1030,1073,1091,961,1038,1026,1070,1072,1056,1009,1081,1021,1045,1062,1004,1087,1003,1039,1115,1043,1059,994,1035,1032,1089,1046,1049,1041,1045,1092,1105,1028,975,1015,991,996,981,1014,1015,1030,971,1012,985,971,963,1006,976,996,976,973,995,989,975,1004,958,961,1017,948,986,941,972,975,947,982,962,932,962,961,946,985,934,976,968,925,950,969,940,980,966,984,918,954,1030,922,928,978,1026,963,959,980,972,1126,1097,1079,1086,1078,1010,1108,1093,1099,1127,1113,1150,1102,1086,1053,1114,1050,1086,1057,1112,1064,1052,1115,1105,1134,1053,1007,1175,1109,1085,1029,1119,1078,1071,1073,988,1096,1139,1171,989,1064,1061,1060,1084,1061,1165,1112,1035,1034,1057,1132,1108,1125,1078,1109,1051,1084,1038,1120,1138,1129,1058,1077,1082,1013,969,1021,955,1009,1012,974,990,1026,958,964,938,1049,999,978,979,1025,942,912,971,1014,977,1007,1032,963,987,1029,812,809,803,812,767,867,790,797,804,845,810,844,784,782,804,860,798,818,806,803,808,804,758,792,832,819,804,839,804,811,825,854,780,821,786,828,821,804,849,779,794,814,875,867,820,808,818,794,819,829,822,811,773,788,807,806,838,787,808,818,807,812,864,775,809,857,871,861,888,837,876,852,880,882,854,917,924,895,903,874,849,868,888,828,863,829,896,898,899,885,888,904,885,872,915,861,913,904,840,895,925,850,870,869,831,873,959,843,890,901,913,902,908,919,879,822,846,836,844,793,842,827,813,806,811,830,814,851,846,835,823,810,847,811,842,836,806,823,815,823,853,821,830,746,799,748,758,770,810,780,799,764,760,766,759,760,759,751,753,754,766,776,797,763,787,788,764,777,782,756,751,850,736,715,763,806,783,746,747,729,772,758,746,729,724,768,725,730,731,729,751,780,719,729,708,728,750,757,765,764,777,745,712,708,761,690,687,743,860,935,895,913,928,868,872,917,864,859,846,918,856,921,901,859,895,860,891,871,927,906,901,905,837,930,906,874,926,927,839,920,868,869,857,817,871,920,844,878,826,855,879,811,912,857,866,869,868,874,870,838,880,886,900,825,855,871,819,822,816,790,840,830,788,820,804,784,836,806,815,829,862,829,813,845,789,813,827,848,807,785,776,822,812,836,790,814,833,826,808,792,773,753,797,764,769,772,770,769,782,771,805,780,781,758,757,762,750,774,775,765,812,773,776,775,729,793,764,797,765,789,803,797,814,858,818,824,829,817,793,822,814,819,825,827,849,803,834,835,808,783,844,836,823,812,826,824,815,835,813,811,855,827,852,855,816,838,782,820,832,811,837,796,802,767,836,816,763,802,792,778,772,787,829,787,814,814,778,808,752,778,822,824,802,816,796,789,790,772,820,873,855,850,852,885,872,862,873,854,872,894,876,859,811,867,877,867,887,853,861,899,866,908,841,861,905,886,862,858,951,893,862,871,881,918,934,911,866,859,911,871,878,868,888,894,912,881,910,866,884,868,890,861,889,894,889,888,849,904,908,912,874,901,887,912,844,873,886,811,892,807,875,859,828,844,860,865,835,819,814,869,812,834,842,863,875,827,872,861,858,852,817,851,850,862,840,840,893,827,848,786,854,835,819,795,859,808,848,842,820,834,833,795,817,805,808,819,853,810,812,816,820,786,829,826,812,832,832,813,1016,997,970,985,969,970,977,993,973,1009,995,977,963,968,1000,959,997,1009,1016,984,974,1000,1007,1007,964,998,981,964,962,944,944,938,914,1000,979,907,1037,1037,958,994,1011,977,1034,887,948,1002,981,959,952,986,1008,927,973,1029,1022,912,854,893,856,827,860,897,863,842,896,869,853,876,909,874,848,839,848,877,838,822,884,833,877,838,869,875,875,906,885,860,829,853,818,766,805,769,825,781,829,850,813,842,789,858,844,767,797,819,847,784,794,788,835,871,779,796,838,835,783,852,818,843,836,856,1084,1048,1084,1089,1058,1039,1054,1101,1114,1146,1037,1105,1029,994,1081,1125,1037,1020,1058,1037,1094,1024,1059,1045,1101,1094,1046,1109,918,950,941,899,920,909,893,951,942,918,899,886,900,910,890,871,918,919,940,938,942,925,906,949,912,906,898,958,883,939,896,902,792,817,821,821,829,809,816,854,836,827,838,859,787,856,847,850,799,816,827,834,847,814,863,844,854,835,846,816,842,847,857,847,837,817,857,828,790,809,756,815,806,824,806,762,817,811,832,758,848,798,833,815,835,803,763,780,807,801,804,804,781,805,812,750,827,802,790,802,834,806,813,834,814,809,790,820,836,799,805,822,823,793,789,832,783,803,821,796,792,788,822,828,819,803,791,798,827,799,817,824,848,838,794,740,772,734,767,753,751,758,759,758,776,767,770,765,783,809,781,771,815,754,767,780,773,745,775,754,775,774,747,751,747,758,771,780,776,739,750,752,754,714,752,771,743,743,759,707,757,769,734,778,735,748,739,743,761,758,732,735,731,750,753,748,755,728,738,737,791,758,750,685,719,795,782,725,708,710,715,753,715,749,721,742,762,713,695,713,734,726,748,761,723,766,775,898,960,858,891,840,901,927,881,855,844,891,896,860,896,871,942,919,895,837,941,872,923,941,955,896,1003,873,919,838,848,850,903,912,1163,1132,1179,1168,1176,1131,1135,1146,1177,1150,1163,1124,1123,1159,1156,1197,1191,1164,1148,1151,1145,1190,1208,1157,1134,1159,1130,1126,1142,1115,1128,1120,1111,1107,1077,1211,1089,1114,1107,1163,1065,1231,1172,1215,1184,1077,1177,1090,1057,1097,1154,1060,1168,1160,1198,1021,1136,1160,1105,1065,1049,1091,1186,1144,1064,1202,896,907,999,977,1004,971,979,948,973,856,1018,1036,989,973,1004,916,955,962,987,852,934,982,905,942,894,903,944,977,952,952,1030,949,995,933,1003,1056,988,832,818,852,820,774,862,829,798,814,813,819,843,824,810,846,792,829,778,799,824,832,846,838,840,818,869,941,971,990,1017,1019,994,977,1003,958,956,956,923,938,998,941,958,954,1001,947,956,950,996,1001,1034,987,1031,937,968,946,984,795,787,797,853,827,838,834,826,803,800,825,813,814,850,867,826,797,845,862,812,853,846,792,830,808,762,828,849,804,762,780,813,794,785,813,776,809,802,789,752,844,863,768,800,732,748,755,748,812,814,783,795,834,803,783,850,802,786,805,798,791,820,901,935,906,921,915,917,918,947,876,922,908,938,922,890,919,933,894,956,898,935,857,923,910,857,910,864,946,914,850,891,854,902,919,924,980,1020,1012,1027,985,1013,1036,1041,987,1002,1058,985,1020,1030,1006,991,994,1022,1011,1038,1021,1035,992,1005,1005,1042,992,1062,1034,1030,933,955,923,901,942,896,859,914,913,885,923,883,896,891,904,961,957,917,909,929,920,909,939,938,913,859,895,907,933,944,910,900,898,900,900,840,846,871,823,862,838,843,843,820,798,858,843,817,857,873,825,834,842,822,808,830,862,850,834,834,837,869,823,848,844,830,835,817,859,865,822,852,846,867,934,935,944,979,967,966,947,955,980,927,979,1005,947,980,1030,949,944,941,963,976,1011,970,944,976,975,954,932,965,947,957,976,996,998,1024,1055,1038,1014,1049,1005,1050,1058,1002,993,982,1032,986,1019,1054,1064,1012,999,1012,1026,1045,1009,1060,992,1049,1018,959,1024,1006,1002,997,998,986,983,999,1002,993,1001,989,979,984,1021,984,1013,983,990,1000,1036,1011,984,993,1002,1006,982,975,1043,996,971,968,978,977,955,959,945,973,932,987,939,960,960,996,973,954,950,952,946,958,961,953,985,919,1000,967,1004,1004,978,1001,950,1070,1149,1115,1140,1134,1110,1145,1108,1146,1172,1126,1143,1142,1160,1130,1132,1086,1096,1121,1149,1124,1110,1165,1150,1149,1159,1186,1182,1139,1150,1159,1154,1117,1129,1126,1175,1113,1156,1068,1124,1081,1117,1076,1102,1129,1137,1106,1047,1101,1119,1147,1139,1085,1120,1034,1073,1125,1150,1147,1138,1065,1058,1072,1129,1075,1175,1153,1202,1132,1179,1149,1107,1113,1091,1106,1120,1097,1079,1176,1075,1141,1101,1132,1152,1120,1130,1137,1160,1119,1118,1071,1069,1080,1148,1087,1100,1095,1075,1093,1107,1041,1073,1115,1073,1085,1052,1075,1097,1085,1093,1120,1094,1065,1124,1091,1087,1137,1014,1096,1054,1080,1129,1080,1099,1090,1109,1029,985,1014,997,989,985,1025,1009,998,1008,1021,1007,1017,1034,996,983,977,1039,1037,999,998,1007,1015,1041,1001,1008,1017,995,1074,1020,990,949,925,974,950,949,959,939,937,945,963,983,958,916,976,956,978,975,979,970,961,955,958,956,1032,1048,979,1069,1047,1026,1060,1105,1060,1056,1051,1052,1039,1019,1078,983,1098,1119,1042,1050,1025,1051,1005,1065,1090,1047,1072,1046,968,1011,984,989,953,927,929,952,948,944,953,937,963,963,947,906,974,929,968,948,945,1019,962,945,960,953,927,929,856,877,912,859,878,864,879,864,851,893,876,879,864,861,844,867,865,892,838,837,847,891,897,808,844,861,847,859,923,876,843,871,871,913,868,901,896,946,922,862,911,901,926,891,913,902,876,878,904,921,891,883,858,902,882,896,888,878,926,902,901,876,822,855,871,853,851,883,845,887,865,860,893,857,862,853,887,921,877,896,858,873,829,879,878,869,857,834,892,863,858,825,794,827,783,848,818,826,823,824,814,845,841,822,844,842,824,836,821,823,872,818,847,797,822,854,833,841,827,782,818,1042,952,1011,993,982,969,1042,1085,1029,983,972,997,1039,1016,1049,1007,1043,1051,1025,1045,1051,1052,988,1012,1031,1045,979,994,1010,1017,957,1086,1087,1025,1029,978,1032,991,1063,1003,1077,1002,993,994,1082,1069,1088,1018,1007,996,1085,1001,1027,1075,1078,1070,1100,1033,1043,1056,1102,952,815,820,824,770,798,867,850,830,849,825,854,847,813,833,836,856,811,830,815,798,833,820,814,812,818,810,776,882,891,787,798,840,797,795,789,776,814,819,786,837,817,791,869,812,840,771,814,764,842,808,790,863,806,793,815,814,818,1009,988,962,949,985,999,985,1014,1004,1018,1020,989,1010,1055,997,1003,1018,983,1082,957,981,951,968,1044,996,1009,1025,969,1002,976,893,905,869,952,841,849,885,861,893,851,909,905,836,875,861,874,886,913,881,916,891,917,905,910,872,904,909,912,878,868,834,927,852,891,900,841,837,860,791,797,837,796,809,817,862,848,888,819,856,832,795,813,836,811,799,791,823,835,788,819,838,821,814,816,797,1083,1082,1085,1045,1059,1097,1004,1075,1029,1067,1115,1089,1068,1094,1105,1085,1053,1052,1126,1041,1048,1106,1092,1130,1043,1058,1078,1103,992,1065,1022,985,961,1059,944,1059,1007,1079,1009,1001,1001,1067,993,1045,1068,1033,1057,1087,1018,1075,1069,1024,884,899,858,880,887,846,897,875,850,841,896,851,881,906,860,860,815,913,856,900,874,857,870,908,892,907,870,900,904,909,842,819,774,734,814,764,800,806,788,758,749,811,764,780,752,781,822,754,798,754,805,805,767,756,751,810,776,773,785,789,814,805,811,734,805,807,759,767,803,775,789,828,772,811,798,844,794,765,762,783,797,828,781,741,816,793,747,752,805,861,935,932,955,967,948,961,914,1017,915,955,938,960,931,967,985,998,975,918,922,998,1009,947,989,939,958,993,986,963,1030,985,976,936,945,972,984,1031,1029,1055,1008,1051,998,987,1034,983,988,966,1022,961,976,1017,989,989,1021,988,999,1002,1003,998,1016,989,1021,1011,1002,1015,1003,1052,1022,1056,1033,985,1001,975,952,945,978,979,1007,962,956,974,954,983,955,976,999,939,976,985,968,954,1007,1011,949,1037,992,964,978,1015,966,950,996,961,958,973,915,1003,950,943,932,804,808,820,842,797,856,833,825,815,817,805,830,826,842,804,861,845,785,819,850,818,840,831,788,827,816,814,833,821,793,902,1075,903,872,852,934,790,972,809,868,854,880,892,925,925,926,937,874,1026,891,1049,956,808,1042,882,870,929,872,1041,1184,1176,1152,1173,1160,1194,1146,1134,1151,1127,1143,1181,1150,1164,1153,1232,1165,1172,1187,1144,1144,1152,1166,1137,1161,1194,1153,1136,1120,1122,1114,1193,1167,1105,1092,1146,1119,1117,1143,1156,1098,1073,1179,1126,1112,1128,1167,1105,1124,1090,1140,1125,1092,1101,1011,1068,1097,1072,1054,1038,1045,1010,1028,1044,1122,1070,1059,1070,1024,1023,1101,1060,1063,1065,1083,1036,1094,1066,1094,1033,929,925,955,897,909,905,942,932,935,943,962,934,907,886,983,887,923,949,892,946,908,963,936,925,948,915,951,940,901,921,914,927,889,884,917,965,955,884,956,892,911,999,929,960,1038,980,921,1019,1006,895,996,904,965,975,992,998,976,960,899,908,845,1051,1067,1049,1024,1084,1063,1087,1012,1055,1040,1038,1075,1092,1084,1040,1057,1046,1066,1048,1009,1004,1012,1011,1046,1013,981,1073,1037,1038,1058,1089,1076,984,997,967,981,1041,1021,959,998,972,990,1011,1002,1007,994,998,934,1022,980,991,988,938,1018,1025,1026,1024,991,1019,1019,989,956,940,989,976,982,960,967,970,962,985,948,973,954,975,969,967,944,982,953,951,984,990,904,977,1030,944,967,947,974,944,916,881,943,890,913,841,941,954,839,915,902,946,1040,908,971,917,903,906,918,941,962,929,895,961,863,898,879,975,867,909,941,886,950,950,890,1121,1064,1092,1043,1068,1066,1110,1024,1056,999,1055,1050,1060,1115,1097,1104,1049,1052,1084,1080,1010,1137,1050,1065,1094,1102,1072,1067,1068,1094,1086,1099,1104,1076,1014,986,1001,1032,1021,1038,1052,1017,1060,1018,989,1051,1035,989,994,1018,1036,1085,1056,1095,1025,1012,1065,1048,994,1050,1006,1060,1036,1052,1028,1046,1014,1005,1020,980,1007,955,992,973,999,983,980,1017,1028,967,987,1008,1011,976,968,1007,988,989,1028,978,998,983,973,1058,1018,980,1013,1010,939,1063,1000,987,1058,1006,1039,1012,1054,1037,1101,1066,1024,1017,1065,1079,1056,1013,943,977,986,984,980,1010,1066,1047,984,1071,998,1124,999,979,990,1019,1054,845,810,767,784,787,794,808,822,747,808,812,796,796,847,799,844,805,774,810,849,813,790,866,788,853,829,834,859,819,734,668,706,769,681,762,711,787,674,687,768,787,839,675,773,779,722,756,792,824,726,787,779,682,712,849,1139,1141,1074,1118,1123,1113,1085,1093,1099,1090,1069,1133,1166,1105,1148,1149,1131,1085,1048,1129,1154,1087,1119,1149,1081,1121,1105,1121,1169,1110,1113,1086,1064,1060,1056,1069,1091,1096,1024,1114,1100,1102,1062,1141,1049,1148,1143,1124,1105,1065,1105,1107,1040,1132,1074,1043,1098,1072,1083,1054,1118,1110,1085,1045,1106,1052,1051,1013,1117,1081,1053,1016,1030,990,1041,1070,1038,988,1065,1048,1064,1044,1030,1046,1155,1038,1040,1081,1065,999,1088,1002,1114,1097,1054,981,1084,1020,1058,1077,1004,1042,1057,1035,1061,1047,1065,1009,1090,1048,1023,1061,1043,1094,1095,1029,1055,1041,1035,1067,1023,1078,1066,1050,1091,1030,996,985,983,973,996,973,966,982,982,991,953,980,1005,957,978,1014,992,958,989,968,923,1023,991,968,1030,966,1002,982,1006,994,994,976,941,915,909,953,916,937,943,911,914,968,924,967,934,966,940,914,961,904,902,904,937,914,889,935,931,978,918,957,916,913,929,960,881,791,832,773,821,835,808,810,822,836,808,811,826,793,795,824,803,817,818,814,821,806,845,795,821,822,862,861,800,842,801,849,730,725,760,797,762,787,766,768,776,781,723,771,776,760,754,770,733,769,738,749,753,760,789,795,782,777,750,769,777,774,708,811,888,825,768,951,830,838,715,825,858,828,799,807,776,796,773,715,772,799,748,880,820,856,736,822,802,793,843,783,735,761,770,1115,1088,1097,1091,1101,1087,1062,1129,1126,1123,1078,1075,1107,1092,1074,1130,1119,1093,1093,1072,1087,1136,1078,1163,1147,1107,1122,1085,1111,1103,1051,1124,1086,1073,1066,1097,1117,1054,1163,1057,1076,1099,1038,1081,1088,1125,1032,1146,1060,1117,1111,1089,1086,1056,1093,1059,1116,1105,1079,1081,1108,1120,1023,1109,1169,1100,1158,1154,1108,1129,1100,1122,1133,1149,1079,1097,1134,1115,1122,1137,1124,1088,1192,1172,1125,1183,1106,1111,1150,1135,1115,1098,1066,1079,1188,1186,1144,1052,1069,1108,1076,1073,1112,1066,1087,1107,1080,1101,1114,1109,1051,1103,1058,1120,1148,1106,1065,1079,1052,1114,1110,1108,1108,1078,1110,1080,1005,1066,1025,1098,995,1174,1097,1036,1105,1078,1097,1029,984,1101,1034,1056,1068,1099,1054,1082,1078,1051,1073,1019,1089,1119,1088,1060,1085,1082,1088,1092,1072,1051,1102,1038,1056,1067,1079,1005,1082,1091,1024,1085,1061,1050,1069,1063,1092,1081,1053,1083,1077,1007,1131,1075,1099,1089,1129,961,871,916,815,939,915,968,939,908,826,937,947,855,949,831,919,922,937,873,867,967,939,932,934,955,957,910,911,885,874,1032,811,858,842,827,835,856,846,794,844,879,823,801,803,838,858,868,864,840,838,811,809,891,817,851,841,846,867,786,828,831,868,812,906,1015,946,941,877,984,924,950,928,949,966,964,984,987,950,945,914,963,964,957,889,897,913,934,919,966,899,940,954,947,950,925,892,934,927,965,960,929,996,918,957,976,962,941,983,952,973,952,955,950,1007,942,951,921,936,975,930,978,967,991,988,990,974,927,1009,1015,1039,1013,982,1066,982,982,985,965,966,1009,1035,974,973,1031,1034,1058,983,1007,981,1032,1047,992,1022,1000,1016,1018,996,1028,968,1009,970,1013,987,986,1034,1015,1070,834,829,833,860,835,851,859,839,830,834,841,824,848,833,837,834,865,844,884,823,819,833,849,869,816,811,853,831,820,844,729,813,779,783,810,815,832,828,821,796,823,834,787,791,802,818,844,791,801,767,828,780,789,819,822,779,801,808,830,809,801,815,804,867,840,885,888,909,851,833,886,868,850,866,860,868,868,848,867,827,852,861,849,887,875,851,881,894,874,852,852,834,875,833,881,873,897,809,779,814,819,781,803,798,807,816,792,766,805,796,801,810,804,807,760,801,810,777,813,822,818,808,798,813,788,821,836,844,806,764,773,807,833,797,809,803,791,803,829,817,841,809,794,819,827,820,837,805,806,837,781,815,814,776,785,789,814,793,799,782,724,744,752,728,743,789,758,781,788,736,789,772,679,753,793,778,787,778,789,740,785,763,705,797,802,830,772,720,756,779,755,788,758,738,1030,1023,1056,1017,1033,1006,1007,1031,1016,1049,1015,1048,1030,1041,1040,1002,1020,1072,1043,1041,1037,1010,1054,1000,1015,1010,1046,1013,1036,1027,1038,1048,953,984,964,983,1009,1000,988,960,973,1000,1025,1009,976,973,950,994,974,955,995,989,1035,1004,950,978,1010,942,999,1029,994,1004,968,971,987,984,1007,981,1008,983,1003,983,951,973,873,807,856,809,888,873,815,935,879,861,818,891,896,915,895,846,921,851,838,857,918,910,885,857,892,840,880,939,921,753,729,795,705,750,766,740,733,743,744,754,773,790,762,770,715,730,760,746,769,736,726,799,763,760,794,670,778,773,774,763,685,777,739,682,739,690,670,685,632,715,720,706,812,685,789,723,726,658,791,735,753,689,732,695,727,734,652,672,793,753,690,711,671,1128,1082,1086,1097,1121,1129,1127,1121,1080,1114,1067,1187,1117,1085,1092,1017,1077,1074,1080,1143,1070,1071,1055,1081,1056,1109,1092,1115,1040,1006,1046,1001,1002,1049,1084,1004,1002,998,999,1048,1065,1014,1096,989,1045,1046,1068,1075,1063,1078,1028,993,1043,1049,1028,1065,1052,1020,979,1083,1074,872,890,935,865,886,916,900,913,884,877,866,853,907,918,895,854,863,900,876,861,874,912,866,895,891,887,882,892,891,855,726,723,720,798,754,729,739,756,695,721,720,780,692,742,693,804,770,751,790,826,750,749,754,774,754,738,732,729,750,687,714,972,979,1007,1013,991,1028,993,966,996,989,1006,978,1020,1002,1007,985,986,977,997,965,980,983,964,962,996,980,1025,1013,986,967,980,944,951,998,955,949,937,992,942,973,947,906,993,938,937,917,969,944,998,918,959,941,961,974,993,942,954,993,1001,951,943,970,946,926,900,828,874,875,852,889,848,799,899,891,844,897,934,840,880,877,880,858,904,891,849,828,846,881,840,903,899,835,872,824,815,762,828,812,814,799,791,781,781,792,831,850,789,769,765,816,806,753,817,815,802,788,788,791,785,801,758,749,755,740,730,758,742,744,776,759,743,729,767,737,759,742,766,768,789,718,732,745,747,772,748,730,731,731,750,735,741,730,754,777,740,745,767,750,741,753,742,755,723,746,758,765,760,736,744,755,732,782,771,792,767,738,752,729,761,800,801,796,763,782,785,827,803,776,819,781,797,779,805,778,802,782,790,824,783,755,775,773,782,792,805,775,768,757,798,769,747,757,768,755,757,789,750,780,798,778,777,771,783,758,782,789,735,754,794,762,778,792,792,767,768,778,753,830,821,840,917,786,879,842,869,862,830,876,820,860,775,880,795,845,852,853,835,859,862,891,864,850,880,866,844,823,819,843,818,863,817,877,831,868,849,798,812,819,808,814,817,849,836,838,825,810,830,813,824,868,794,828,821,819,832,863,800,803,781,731,756,759,793,764,731,811,769,768,762,748,723,769,738,732,729,766,722,786,730,763,727,752,752,710,751,756,753,753,766,757,769,672,728,726,714,708,723,712,720,714,704,701,737,728,724,729,698,739,697,698,723,738,704,716,734,715,718,714,734,718,720,698,703,729,688,743,731,730,720,809,765,775,794,786,778,774,753,783,798,776,761,789,794,813,763,781,790,817,785,780,765,757,813,799,779,749,798,780,828,796,793,792,744,725,768,774,738,695,752,790,783,731,813,710,773,724,805,707,766,764,766,780,718,790,749,804,1089,1084,1049,1052,1073,1123,1092,1045,1099,1051,1096,1045,1054,1044,1018,1069,1093,1099,1031,1086,1004,1089,1076,1016,1097,971,1073,1105,1065,1134,1022,1140,1085,1047,1005,1008,1027,1026,1004,941,994,986,1054,999,959,1017,944,991,1033,956,1001,1035,1051,1016,944,1037,969,1002,1046,971,1010,1021,1049,969,943,951,1041,1029,943,934,1026,968,985,1002,968,935,1012,1047,968,942,979,969,980,1041,1051,950,1022,1017,981,1020,977,971,990,932,1084,1067,1134,1013,1022,1037,1057,1100,1034,1089,1118,1070,1063,1041,1060,1058,1059,1009,1039,1079,1066,1083,1080,1070,1060,1100,1081,996,1057,1040,1052,1039,1082,1034,1002,1057,1065,1067,1021,1060,1045,1026,1065,1064,1042,1041,1039,1015,1022,1052,1072,1053,1010,1026,1056,1058,1024,987,1028,1014,1012,1035,1022,1017,1011,890,1060,1009,966,1085,987,1053,1013,953,981,1049,984,1012,1031,1027,985,997,1026,1056,988,1073,1038,1035,878,879,854,907,906,843,876,885,853,890,846,949,886,856,922,904,903,846,876,887,840,817,979,916,921,897,913,933,884,716,721,738,734,749,748,745,734,742,723,779,741,732,752,760,782,727,749,732,720,729,712,748,728,756,775,709,745,742,736,741,789,727,717,689,731,703,727,729,686,720,694,781,714,701,741,710,684,767,739,738,716,759,765,699,699,726,736,713,716,735,695,686,724,721,732,766,718,798,801,784,795,737,810,766,801,781,791,794,759,773,776,783,771,791,786,829,823,837,761,829,789,785,797,774,765,755,820,812,835,827,784,848,909,889,880,865,914,900,922,886,930,881,905,905,864,938,893,859,901,879,898,878,899,876,853,830,855,844,904,841,889,904,849,860,834,892,919,906,857,909,849,898,890,874,891,878,822,910,857,871,860,870,879,822,900,886,871,894,890,902,887,890,899,882,807,782,851,813,820,807,795,840,802,781,794,803,812,827,823,829,817,788,820,820,810,819,812,831,829,817,827,805,794,794,826,817,817,717,757,768,724,788,732,733,731,760,710,694,716,758,771,774,735,740,761,706,793,738,759,707,732,719,710,736,743,720,720,732,682,996,1010,962,1020,965,982,1001,957,949,973,961,966,962,984,985,999,979,955,936,998,965,976,984,1008,964,957,989,1005,992,994,1005,955,983,1014,1013,1042,1033,1003,1060,1068,1071,1004,1030,1048,1048,1054,1102,1115,1043,1049,1064,1003,1087,1009,1006,1038,1037,1098,1040,1071,1088,1057,1157,994,968,992,1031,916,970,1017,1001,1008,998,950,947,1006,1032,996,966,971,1019,1020,935,1020,921,970,1038,971,1061,938,1030,986,979,971,1020,1044,942,1005,963,926,988,1008,968,968,980,982,1017,1005,1023,990,999,961,983,991,993,1015,972,988,981,949,936,917,956,965,983,961,999,981,1022,929,884,926,943,916,895,908,907,890,937,926,922,916,957,932,906,902,854,979,975,950,890,943,921,930,802,779,759,799,807,815,876,775,777,811,756,825,792,761,804,825,806,821,866,832,758,761,737,777,788,796,809,794,1013,972,978,941,966,984,939,970,1027,949,945,976,942,941,936,1017,987,977,1012,1010,978,946,964,996,931,967,941,984,898,966,968,938,949,999,924,956,957,879,909,922,875,863,897,876,887,900,902,890,881,854,873,869,927,883,902,909,874,892,889,886,870,881,836,866,874,886,890,880,887,792,797,786,817,870,803,819,836,829,837,803,816,806,832,844,820,798,836,839,803,833,848,866,819,849,815,843,835,803,821,840,830,824,778,776,786,799,809,767,757,761,770,783,768,774,780,782,786,775,760,740,778,784,751,745,757,795,752,767,767,775,795,808,757,794,782,763,805,747,770,763,766,783,746,758,834,755,758,766,806,796,770,811,799,771,753,785,778,758,755,817,801,800,801,771,807,798,765,818,794,809,785,809,830,731,805,777,819,822,754,824,831,740,829,785,814,854,774,798,754,818,768,833,797,811,831,764,823,767,809,790,766,819,834,814,757,788,824,929,941,892,949,947,931,963,927,962,886,930,980,910,988,950,971,971,956,917,958,930,964,987,948,940,934,950,839,846,845,853,841,828,869,867,883,870,876,820,824,883,843,901,823,865,883,861,853,881,886,829,875,855,861,790,766,805,773,785,782,794,790,777,766,785,797,779,752,777,807,785,801,799,796,762,797,794,766,819,781,772,777,793,722,773,757,740,748,758,745,766,762,737,738,729,769,739,715,738,771,776,746,739,730,726,753,717,727,727,776,755,724,740,770,773,751,759,757,764,782,768,738,763,800,779,763,768,742,714,762,761,779,759,761,770,796,735,775,775,769,777,776,756,778,826,788,806,828,780,764,756,738,789,777,795,746,764,767,759,762,798,730,789,784,769,797,763,793,807,761,776,800,801,785,804,801,777,811,780,941,1064,985,994,952,1021,993,968,932,1021,958,1014,999,995,1031,981,1002,996,1021,983,1008,964,996,964,957,1027,1009,951,1034,909,1029,962,998,998,984,980,980,1005,976,1042,1006,990,1022,980,974,977,1009,1016,988,996,1024,1047,1002,964,1006,995,943,975,988,888,880,928,875,871,858,892,903,900,949,931,931,849,845,859,899,931,935,884,869,889,873,886,877,924,863,883,899,896,886,889,844,896,857,923,931,927,874,866,901,889,912,956,935,892,878,927,847,915,894,937,819,899,932,877,884,928,887,900,950,859,923,932,880,867,852,862,951,893,832,928,956,804,833,852,799,822,845,796,826,801,830,840,821,865,842,805,812,834,821,843,825,818,789,835,859,810,804,759,769,776,782,804,761,784,789,775,804,764,745,774,784,793,797,806,786,777,785,799,786,787,786,789,815,771,776,785,774,772,781,805,784,780,811,775,776,821,805,794,777,814,817,813,798,854,802,784,796,827,899,841,774,741,807,784,826,794,826,987,982,1006,1084,1039,957,1008,950,1061,1025,980,1049,946,1030,956,911,1039,938,1008,1015,1001,1011,1013,990,1040,977,1007,1002,954,963,992,1011,1017,1003,990,1004,905,899,916,888,859,882,867,894,915,886,876,862,872,864,865,885,869,831,838,833,851,890,870,900,841,853,859,871,859,872,860,871,836,885,896,947,911,925,998,917,965,951,966,851,943,917,967,1020,884,859,937,924,916,951,947,1020,810,984,919,922,967,968,972,964,871,1058,966,1017,938,1041,985,989,1048,983,975,990,974,979,1004,974,981,1017,988,1028,993,999,1055,1015,932,936,948,1021,983,966,987,979,968,934,1002,986,918,883,940,841,915,897,922,894,875,915,899,857,845,889,938,942,909,879,894,889,883,860,877,855,881,855,816,872,888,804,788,808,834,804,819,803,806,815,808,789,811,805,767,789,766,768,805,794,808,815,790,827,810,823,824,789,805,806,769,803,761,720,801,743,769,756,741,716,741,769,777,751,738,765,738,740,731,778,757,745,779,751,747,749,784,733,793,759,692,700,720,738,729,695,724,736,768,744,703,733,741,720,731,732,704,713,733,707,744,720,720,734,708,697,716,692,740,713,716,735,710,686,711,710,700,714,682,713,719,727,687,703,687,687,705,728,708,706,703,704,695,698,706,711,724,686,727,696,688,677,706,710,708,693,719,702,678,685,688,686,693,717,715,692,722,672,717,691,700,700,682,666,699,683,717,699,682,697,720,681,688,640,687,696,693,716,699,667,700,695,672,686,695,710,686,693,714,698,691,724,679,683,702,673,693,673,686,700,720,689,694,702,696,694,677,705,680,699,690,689,668,696,703,680,674,665,686,708,679,657,711,698,680,710,710,712,708,669,678,657,676,676,676,678,725,673,686,702,694,713,708,691,728,750,714,716,708,730,691,755,717,744,742,715,722,695,709,718,703,688,723,747,694,717,727,773,756,782,780,769,774,775,767,777,794,759,778,731,783,713,775,786,742,773,744,763,790,740,749,765,801,776,770,778,717,751,755,768,741,762,765,739,746,749,738,734,751,746,706,722,736,729,774,760,748,766,739,766,748,736,736,823,794,826,828,794,817,831,794,844,793,837,823,861,827,802,809,834,854,812,800,824,808,851,792,803,811,844,791,810,773,747,769,794,789,811,818,789,787,774,764,786,780,769,794,774,772,768,786,778,777,793,768,783,762,797,768,805,771,792,883,824,844,800,875,825,811,829,848,824,886,875,812,870,830,838,819,833,838,839,879,849,864,867,825,848,849,873,838,838,806,827,827,843,813,834,833,787,880,820,809,832,839,840,852,859,822,812,828,848,808,827,808,854,875,833,852,837,842,818,849,792,799,777,726,724,748,747,744,755,763,709,747,738,800,785,744,726,747,761,788,747,752,751,722,772,753,750,746,716,765,749,729,754,731,727,710,690,716,762,720,729,720,741,720,728,728,766,734,720,722,698,729,745,714,753,827,854,840,827,837,857,830,872,802,826,819,783,799,823,864,788,834,815,849,811,824,835,854,828,829,816,802,784,819,877,870,867,890,879,850,875,818,860,862,840,873,847,855,831,889,856,852,858,882,861,888,870,836,862,869,868,851,857,859,902,878,849,862,842,810,836,831,809,824,812,814,781,815,820,846,832,823,813,793,809,842,814,817,835,861,832,825,811,861,781,767,734,769,761,706,735,752,733,728,780,774,748,772,713,767,750,752,736,720,733,776,749,761,793,724,750,763,695,735,704,748,712,697,696,714,715,728,710,754,719,708,707,712,723,718,703,716,712,710,723,703,720,733,697,710,731,693,728,743,700,789,729,739,783,753,757,778,808,753,777,760,773,778,783,803,776,795,810,767,773,742,778,735,792,776,772,759,746,753,747,743,744,772,750,757,740,770,748,723,734,736,750,742,737,746,766,726,747,755,756,758,759,759,759,774,751,718,732,730,738,712,707,728,676,709,769,730,765,737,753,730,752,754,744,725,732,701,737,693,731,733,697,760,710,701,647,682,680,657,717,657,659,723,657,680,663,703,680,715,697,696,668,711,682,672,701,657,628,691,711,740,702,713,769,692,712,685,757,712,698,697,712,716,737,754,689,699,770,722,729,732,721,758,688,719,714,683,736,674,711,691,706,891,959,877,885,947,882,869,884,883,866,901,892,897,863,905,880,850,833,857,863,878,894,922,862,849,936,907,902,836,891,840,884,900,861,916,778,807,784,782,707,755,760,782,775,763,759,746,768,750,789,771,744,740,723,758,774,752,797,756,801,794,768,801,737,753,757,759,899,890,1001,969,971,905,1005,873,902,1023,922,975,872,985,955,905,984,900,868,895,1030,898,940,969,948,935,849,957,1006,950,969,965,966,976,942,962,955,944,995,936,1023,978,1003,1012,968,962,989,983,985,949,977,1006,965,1008,998,949,993,969,939,966,981,973,841,888,940,859,924,876,863,884,873,893,892,908,892,891,896,856,877,911,927,907,893,897,885,941,910,895,892,854,896,821,867,817,785,835,821,842,811,793,802,807,831,819,826,798,795,828,820,784,829,812,807,778,817,835,817,863,829,808,786,712,788,737,765,755,750,762,739,760,736,769,754,728,728,748,713,754,766,757,768,745,738,779,714,755,764,751,743,725,737,765,709,734,743,723,723,708,695,697,750,749,732,738,731,747,730,687,750,738,740,714,717,722,728,732,719,726,700,730,969,935,944,926,930,943,942,886,920,926,915,962,963,1035,940,966,902,951,982,940,939,942,924,949,905,976,980,892,929,914,979,955,881,849,847,857,856,869,855,869,871,827,848,836,845,867,853,833,858,829,848,842,862,838,821,852,829,837,830,838,879,835,822,785,837,808,771,786,791,796,789,825,808,803,793,789,815,778,811,822,819,813,816,830,836,786,797,774,814,814,812,812,767,805,788,794,785,769,772,786,781,780,802,786,766,790,781,780,773,804,769,767,777,802,760,809,779,788,785,766,802,790,784,779,800,787,801,772,777,787,783,776,785,771,785,771,784,771,794,778,795,791,781,790,772,800,795,796,813,777,800,766,762,767,806,803,776,784,786,782,761,778,758,761,769,796,796,761,762,778,752,766,795,789,784,759,791,793,790,776,773,776,774,779,803,779,748,783,787,758,757,773,753,774,742,754,755,735,758,758,753,768,739,759,752,734,731,760,776,755,728,748,739,746,753,749,772,749,763,794,755,754,753,756,776,774,755,766,754,761,715,761,758,763,761,760,762,749,794,754,740,755,782,753,792,765,778,765,773,747,743,756,765,751,738,747,750,752,761,780,762,772,749,771,732,789,775,771,752,748,756,763,772,740,782,760,772,777,775,771,788,768,766,764,738,746,764,740,758,765,769,764,778,755,756,737,749,752,729,742,771,778,752,771,738,739,733,731,746,734,737,743,704,740,754,762,717,722,741,723,738,752,736,743,716,728,749,739,732,738,713,729,748,735,714,723,722,715,713,741,727,734,738,722,736,759,721,718,730,710,731,758,743,719,743,720,740,757,725,761,762,748,735,746,732,729,759,771,759,748,721,750,731,740,736,736,737,754,776,752,765,735,770,766,764,761,767,788,765,786,768,774,800,790,742,767,773,758,743,771,764,762,814,752,766,767,745,751,799,808,779,762,759,788,797,771,782,811,771,775,752,791,771,744,783,752,786,780,781,754,763,793,788,767,784,771,777,777,753,790,790,792,813,830,823,816,836,839,810,790,810,844,813,840,843,832,826,841,872,791,829,799,830,847,823,840,808,817,844,778,833,833,864,755,835,863,834,876,823,869,886,856,832,847,890,863,834,910,826,877,848,809,891,832,822,868,800,871,881,851,855,798,821,819,819,812,809,779,818,816,811,820,781,783,783,784,770,811,796,817,779,772,813,778,822,841,794,817,800,793,800,795,802,778,806,806,803,799,831,805,798,779,801,784,795,750,806,785,773,824,818,806,813,802,812,784,795,783,790,803,776,819,777,830,907,930,861,907,971,922,913,900,928,870,909,876,892,932,884,905,935,897,915,870,947,936,911,935,884,908,925,923,914,874,751,780,751,779,760,769,747,783,735,774,763,742,750,775,758,763,781,769,741,726,758,789,784,764,780,748,776,749,774,781,781,825,752,797,698,826,862,697,765,815,693,689,769,914,775,789,722,697,752,813,767,872,796,799,833,780,877,775,1045,1029,1064,1023,1084,1071,1054,1059,1064,1031,1050,1011,1050,1073,1054,1043,1099,1110,1028,1041,1062,1026,1041,1054,1041,1058,1080,1045,1083,1027,1062,938,953,958,973,967,998,1014,910,898,960,991,957,961,975,968,937,964,988,932,946,991,959,918,949,954,939,888,910,892,883,851,907,853,868,893,881,895,870,905,944,880,855,853,900,874,855,880,838,863,876,839,886,823,877,859,830,877,852,868,870,839,869,820,857,879,856,877,824,846,836,840,841,871,870,854,877,845,859,825,827,833,842,866,793,822,827,820,832,807,842,817,812,812,795,839,810,835,833,862,871,837,851,823,815,866,842,890,790,859,870,828,812,778,802,724,766,748,706,737,771,785,770,778,777,742,758,784,763,705,762,751,765,756,751,754,785,732,790,752,810,751,760,734,965,943,936,973,969,915,1004,959,965,978,975,938,953,925,964,954,959,986,961,949,946,921,1027,1020,953,981,986,949,955,969,985,963,1014,1063,1010,996,1034,1002,918,1006,1102,1047,947,958,1022,909,1034,1047,1009,919,940,1030,1029,991,974,981,914,1077,1025,1086,1046,980,1121,981,1024,981,971,993,903,966,974,934,919,934,919,1000,976,973,838,943,927,912,927,919,984,936,925,989,929,1001,974,986,822,1041,1015,951,1032,854,899,990,884,996,1032,897,1026,973,971,1039,1022,970,910,965,1020,1017,897,984,960,1008,944,852,979,1008,1040,945,966,930,885,1095,1006,1025,964,1089,761,820,772,794,761,768,777,764,788,772,783,758,794,786,765,769,767,802,776,751,788,757,792,767,802,764,784,799,770,780,752,720,805,748,724,723,815,696,771,848,793,692,725,717,739,709,782,693,690,792,790,749,757,835,749,747,742,764,806,769,670,1048,1020,1050,1028,1030,969,962,1060,1061,1030,927,1096,1022,1070,964,970,977,989,965,996,966,1017,1057,1053,984,978,1005,973,974,863,823,881,850,819,852,840,865,866,835,818,832,789,874,865,871,833,823,832,885,822,859,876,861,858,804,872,883,897,835,843,903,1037,900,915,950,853,961,934,944,896,907,930,882,896,914,914,860,904,1000,974,916,968,976,1020,929,912,898,963,928,886,883,876,854,930,994,965,988,951,981,976,955,972,995,980,900,998,977,970,925,966,949,966,974,954,992,958,942,970,941,977,964,973,985,925,856,841,848,853,876,889,863,860,877,844,838,928,830,854,827,854,834,809,843,834,879,878,839,880,889,815,862,871,854,864,874,952,965,987,1006,951,988,1021,977,992,1043,969,1003,990,964,982,1005,993,955,1018,994,994,951,962,978,960,959,1002,1002,986,967,996,990,1006,1009,1009,1076,1008,1003,1057,974,978,930,1056,1047,1042,997,993,1005,1056,975,1081,964,1006,976,980,946,1018,1034,992,1063,1018,1026,1038,1031,951,918,955,904,954,944,963,956,959,921,946,1020,986,894,943,938,969,941,962,958,928,915,970,992,943,1079,916,985,950,1032,972,1018,1049,1049,1029,1007,1029,984,1032,1038,1104,931,1052,996,997,1012,953,966,1019,993,1052,1025,995,1023,999,1032,986,1002,1013,1060,973,851,892,916,914,901,926,905,878,900,888,886,877,870,872,883,878,913,889,852,863,898,846,866,850,853,922,888,843,948,914,774,754,794,770,781,775,775,788,789,763,792,768,797,766,807,785,764,787,769,781,809,768,754,815,881,824,846,802,819,879,874,869,821,865,823,858,811,828,822,859,871,840,817,860,842,834,849,824,828,838,868,837,801,845,822,846,926,1010,944,947,905,897,921,909,942,959,933,996,896,944,935,950,931,918,971,901,972,916,973,885,939,885,992,931,936,928,976,928,952,920,942,974,961,964,980,964,975,970,939,905,905,946,925,944,970,975,923,927,950,915,975,922,982,819,791,836,812,780,792,858,790,810,804,790,830,816,806,849,820,812,810,842,836,810,820,794,794,820,831,799,828,832,816,977,959,971,965,978,991,1016,1034,1003,954,996,987,1011,1039,1003,999,1007,1025,969,1016,974,1054,1014,994,1008,1012,974,988,979,989,1030,913,967,944,948,1003,974,995,940,975,976,938,956,979,964,1019,985,924,979,955,1002,952,1002,929,965,1016,952,1007,965,969,959,965,879,873,898,845,836,847,866,872,881,885,846,855,842,854,849,865,833,868,847,845,871,830,858,866,883,876,863,860,841,882,848,882,850,855,917,884,882,874,907,893,910,886,835,882,913,876,944,851,847,926,913,914,869,928,913,878,887,916,863,878,874,913,913,905,895,787,810,777,807,813,791,808,785,798,778,788,818,801,824,784,814,793,827,782,772,768,777,820,792,808,844,808,783,800,828,766,896,840,865,900,865,911,915,933,901,891,904,872,870,876,915,857,907,852,862,885,884,851,844,923,887,866,831,887,888,933,910,918,927,875,873,855,808,767,785,777,785,772,793,770,808,805,818,813,750,783,798,803,825,790,810,840,818,803,803,772,819,804,819,814,801,774,772,792,1003,868,926,933,959,959,923,911,963,987,960,980,963,990,925,965,971,951,1016,940,974,976,918,958,902,909,898,951,921,941,1029,1003,985,1053,990,998,1056,952,990,973,1021,969,950,957,984,1025,999,994,980,970,997,961,972,987,994,940,989,1010,964,1045,965,991,1023,987,979,918,973,910,933,885,949,950,983,994,963,959,990,962,931,940,990,942,998,934,989,1013,932,946,924,960,979,956,938,889,939,973,906,934,949,948,897,838,837,790,789,812,841,820,850,856,851,858,814,823,829,856,838,824,843,834,834,841,880,832,853,846,849,838,858,860,833,821,834,903,779,854,796,827,912,820,806,883,746,799,839,908,888,838,870,854,805,850,944,915,819,849,890,914,831,852,884,1092,1083,1142,1110,1071,1063,1079,1081,1159,1038,1089,1102,1081,1122,1111,1100,1115,1125,1079,1043,1107,1059,1080,1082,1111,1123,1133,1138,1066,1075,1132,1086,1092,1083,1099,1090,1038,1020,1037,1068,1006,1058,1060,1071,1020,1051,1017,1048,1064,1040,1030,1050,1022,1047,1105,1039,1080,1040,1041,1064,1040,1061,1067,1084,1061,1008,1038,1084,1017,1024,973,1016,976,1013,983,1019,1017,992,979,1036,1031,1056,985,1036,1034,1007,1013,974,1008,1007,1022,978,1021,998,1009,989,973,1026,1004,1033,1022,996,999,976,1036,987,1025,1013,974,1051,1060,1013,1015,1061,975,1004,996,1006,1057,990,1034,1037,1072,1034,990,994,1032,1041,999,1047,1023,1045,1017,1015,974,1050,1003,1064,1008,1017,1013,1069,1040,1048,1023,1012,1009,1028,1044,1017,999,1059,1037,1037,1088,1029,1020,1012,1081,987,1064,980,1027,1018,1045,1031,1046,1039,1083,1057,988,986,984,972,1026,976,1030,1038,1035,1022,1040,993,1014,1019,1064,1025,970,1021,1014,1015,989,1011,1019,967,1050,926,939,865,938,914,961,978,950,957,919,950,936,975,957,915,971,974,886,944,975,953,934,976,922,899,935,993,920,995,956,889,883,976,956,1028,1091,1031,1054,1039,1108,1073,1010,1047,1055,1058,1098,1054,1101,1051,1041,1011,1089,1048,1075,1025,1066,996,1032,1002,1025,1072,1065,1028,1075,1078,1042,997,1094,1101,1010,1061,987,1012,973,989,1024,983,1051,1033,1027,1032,997,1000,966,1043,1045,1033,999,1084,987,1043,1040,1025,970,1009,1044,1046,1042,1021,1054,1007,1054,949,1013,974,1008,993,983,978,1033,995,1024,984,985,1003,1067,957,984,990,1035,1019,1021,1040,993,1016,998,984,996,1065,1020,1035,1071,1047,1035,1026,989,1039,1021,978,1064,996,1012,982,1005,987,964,1021,964 0 214.788696 0 0 0 diff --git a/test/rna004_dwell.exp b/test/rna004_dwell.exp old mode 100644 new mode 100755 index e0f5340..3beb3f1 --- a/test/rna004_dwell.exp +++ b/test/rna004_dwell.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN004RA +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna004 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 8192 -13.304801 1437.976685 4000 48739 429,351,446,340,366,387,403,326,359,354,398,315,361,358,345,345,341,367,398,373,410,399,424,385,405,381,382,325,368,377,378,628,627,637,579,629,605,609,616,621,646,651,616,654,680,599,638,629,584,627,630,623,631,650,632,623,632,666,627,603,633,635,576,594,634,600,620,649,604,581,596,617,619,600,616,624,604,606,629,640,598,602,627,565,627,590,587,630,529,544,515,525,548,552,579,540,583,577,518,566,509,540,554,516,521,554,545,535,522,556,531,539,532,575,521,477,451,477,481,456,451,502,457,477,455,498,460,503,461,493,452,454,476,487,450,468,460,466,512,455,448,462,488,454,468,451,654,647,656,628,614,635,638,631,663,630,631,615,625,598,594,632,618,638,605,624,624,663,607,612,629,646,631,655,597,635,633,602,593,598,591,568,575,557,583,584,576,571,590,585,555,581,608,589,581,596,549,556,587,583,594,562,577,588,581,511,516,491,490,492,550,512,528,533,554,533,546,548,552,529,495,526,503,520,532,540,526,498,509,529,509,546,500,562,533,511,503,473,463,461,444,478,427,433,452,488,450,471,450,481,502,449,449,472,448,492,449,440,486,449,480,482,451,451,460,436,466,416,412,433,416,453,447,420,449,470,407,374,435,429,446,406,433,467,404,411,415,396,368,442,433,413,425,445,437,367,440,425,664,647,625,605,621,661,583,620,640,643,613,627,629,635,625,640,623,627,615,629,636,650,645,649,648,637,633,633,638,615,645,627,585,608,579,598,574,555,556,592,588,603,542,536,587,536,567,583,578,566,568,567,619,563,591,587,559,520,489,536,421,507,467,541,469,554,552,532,515,489,457,514,592,561,464,515,619,479,538,524,452,680,693,665,684,679,717,679,657,673,683,667,686,689,714,725,674,716,665,715,689,670,685,711,656,718,673,687,682,628,612,639,590,691,648,649,626,693,664,629,672,699,632,660,634,678,649,607,627,635,634,634,630,640,622,646,623,640,645,631,622,614,635,666,605,640,638,631,668,616,597,644,633,624,653,568,604,623,608,628,632,611,585,613,646,590,652,644,593,543,528,520,536,549,520,525,503,526,561,527,533,574,528,547,495,518,569,569,544,532,529,564,518,527,507,541,538,523,549,539,515,509,550,523,559,460,466,471,493,477,473,474,488,485,494,460,472,490,471,480,493,473,473,454,487,453,477,468,463,470,466,462,481,473,492,484,478,464,504,665,709,709,645,703,694,723,719,665,653,675,667,676,674,727,700,675,690,690,671,706,648,617,659,627,674,671,637,670,720,663,743,708,617,614,640,623,621,641,621,638,634,624,600,637,626,655,620,605,629,648,652,611,625,638,657,633,581,592,607,555,584,557,620,579,565,595,593,585,598,596,572,605,542,561,612,573,567,569,551,572,564,571,541,567,566,580,531,574,568,606,585,559,541,559,559,554,615,597,608,576,552,590,642,600,609,583,553,556,567,614,574,580,543,600,591,481,490,493,458,435,466,467,474,490,485,497,502,461,476,506,492,484,492,468,494,477,464,535,509,492,508,479,497,504,499,503,479,529,486,488,455,474,472,480,534,509,473,483,422,477,512,487,503,500,461,493,485,479,496,481,499,540,463,483,459,481,494,457,474,450,472,447,451,457,452,439,462,462,482,445,427,458,463,456,452,475,465,486,440,475,425,451,448,484,434,442,471,503,522,466,477,458,442,422,429,440,451,398,455,413,446,402,418,419,426,438,432,441,418,445,414,442,445,439,442,449,434,427,431,425,424,429,431,433,434,423,395,411,422,415,403,418,410,432,384,398,433,380,422,423,437,412,459,405,418,389,421,414,429,398,362,384,405,412,392,579,608,621,600,629,611,586,585,587,618,563,592,589,608,596,589,591,565,591,619,594,608,630,641,582,526,566,582,642,564,551,496,478,483,485,469,469,492,489,460,481,466,487,499,473,489,465,446,501,483,437,471,450,500,484,470,500,487,520,481,445,440,478,501,501,442,474,454,437,483,439,494,456,453,485,470,515,417,420,431,475,440,439,409,432,415,402,478,423,535,626,626,633,627,607,615,611,642,640,574,595,595,601,633,588,630,612,637,601,634,597,621,623,588,619,590,649,618,621,620,539,608,525,522,603,632,578,609,543,605,602,697,555,577,578,609,610,606,574,537,624,582,627,616,612,582,598,542,727,695,696,695,683,711,745,695,738,678,736,727,671,694,740,709,722,706,713,689,698,733,711,708,698,706,705,726,706,698,688,700,731,693,680,718,670,708,709,697,672,664,646,674,658,677,697,699,687,666,697,658,668,707,703,690,712,596,634,604,639,623,613,589,586,627,637,610,623,618,609,582,606,637,627,633,634,644,616,604,634,616,619,655,635,612,470,527,516,487,486,506,542,474,501,499,485,558,492,498,499,456,495,507,483,516,469,529,533,518,517,484,520,495,498,531,463,535,546,508,439,425,426,420,399,408,396,430,418,453,429,417,430,410,448,422,432,434,436,424,423,434,418,449,420,435,416,391,411,383,377,375,360,387,408,377,388,391,387,378,401,381,405,398,385,392,377,394,376,383,382,390,399,404,376,421,384,428,405,405,403,382,391,418,413,397,424,419,395,410,424,416,430,422,408,391,415,409,412,401,393,415,415,420,438,408,436,400,407,395,421,413,432,409,416,403,405,403,402,403,419,425,426,424,439,406,406,401,392,399,418,402,411,430,416,434,411,396,387,394,397,398,398,393,422,385,386,414,393,362,379,383,398,402,389,413,391,406,398,397,392,385,395,397,426,384,342,368,338,326,395,373,392,343,374,386,381,368,378,398,386,382,391,364,387,356,389,372,365,361,367,348,370,369,374,354,391,354,348,345,319,360,368,333,338,378,336,356,333,352,340,347,347,383,347,337,367,361,369,365,363,394,341,347,334,351,369,351,343,348,340,320,346,329,336,306,335,382,383,392,380,326,349,332,374,389,349,383,391,356,359,352,404,369,398,392,386,377,386,345,402,382,589,582,523,600,493,558,496,576,578,517,528,588,514,534,554,548,537,563,550,601,519,533,491,498,493,547,494,533,521,408,418,431,451,448,420,408,427,428,446,435,428,417,415,428,396,438,416,432,426,445,444,402,460,401,432,420,386,394,382,409,384,435,398,404,416,429,383,394,456,405,412,408,409,396,438,399,418,402,439,421,397,390,375,381,412,387,381,432,462,490,478,460,452,471,423,480,458,480,497,452,465,455,447,439,456,465,477,495,481,478,458,466,471,469,461,482,462,481,454,467,416,440,456,439,445,457,460,450,449,424,429,433,476,378,447,467,448,415,422,452,430,452,433,432,445,436,482,448,427,402,623,597,569,590,607,586,587,612,554,581,594,588,561,574,589,576,578,588,621,593,569,602,583,594,605,486,481,523,496,506,521,514,518,520,494,527,508,499,510,495,523,503,513,511,507,490,525,544,518,499,500,519,517,539,525,528,529,517,499,473,438,488,457,467,471,468,468,468,473,464,473,462,464,445,460,459,464,478,497,450,455,449,450,446,475,492,462,442,470,455,520,504,533,509,508,515,495,489,484,504,487,465,503,517,439,507,520,529,469,506,508,495,490,515,494,488,487,506,499,519,498,481,426,478,462,503,487,479,450,444,460,487,473,490,478,489,472,480,500,482,476,480,492,488,460,459,430,465,432,444,465,440,434,439,446,452,470,446,443,454,441,461,439,445,438,476,452,472,465,453,454,447,446,442,599,586,638,588,568,592,607,600,583,582,642,606,602,592,611,586,617,588,635,616,619,623,608,611,623,592,599,645,606,639,684,603,572,605,608,638,583,600,569,627,587,652,597,582,574,618,645,613,639,613,590,579,630,604,592,587,638,621,616,592,526,541,519,539,555,551,508,547,535,539,512,544,545,569,535,558,547,552,531,571,518,571,550,561,529,519,514,556,515,567,512,545,469,451,454,433,463,438,481,466,480,475,458,441,487,458,464,450,459,464,459,439,449,452,645,616,658,618,675,582,655,584,576,675,566,603,641,672,654,603,609,542,633,582,613,613,580,609,667,662,629,642,638,738,610,598,592,619,706,665,615,690,605,609,570,616,626,667,615,662,636,666,662,638,659,569,479,495,476,454,485,486,501,453,467,473,495,456,457,492,459,494,524,490,492,508,496,471,466,466,477,478,458,445,449,443,441,440,443,444,465,458,476,446,464,454,460,452,464,453,451,459,454,468,464,454,461,461,423,460,446,529,536,535,531,479,520,466,483,491,545,569,513,520,535,532,500,512,498,519,556,529,474,515,482,547,495,508,485,495,493,499,479,477,475,488,510,459,470,495,508,475,481,500,512,484,476,460,514,474,487,483,498,475,505,499,507,473,463,474,475,489,469,512,467,472,471,471,468,472,425,454,433,504,437,491,469,481,494,459,476,455,486,419,477,477,462,468,446,460,438,467,445,462,434,453,444,466,482,461,455,450,453,471,467,466,468,465,488,435,484,444,470,464,463,460,492,394,416,413,447,418,436,416,430,420,412,419,410,408,443,405,433,401,427,450,390,431,421,405,417,403,409,425,390,420,388,409,412,370,387,401,420,386,402,409,396,417,401,385,390,382,425,446,404,423,384,385,400,382,420,405,394,407,377,368,362,422,353,446,414,598,599,569,582,581,561,576,620,574,613,567,575,584,560,591,570,593,610,594,616,619,596,582,566,601,596,591,579,580,587,486,522,546,511,545,539,547,504,526,521,544,560,527,525,494,552,521,493,538,516,536,502,530,534,525,501,517,515,505,534,527,547,558,543,513,493,479,522,481,473,488,475,514,508,506,480,485,475,493,500,494,521,468,492,520,496,496,499,484,484,453,448,463,417,450,470,451,404,449,445,462,431,448,440,468,433,454,450,425,442,424,424,445,433,427,456,462,416,439,434,446,522,505,506,534,499,526,517,488,478,495,501,512,505,477,493,485,477,509,509,511,537,490,502,508,539,526,485,494,495,501,495,480,511,464,487,496,487,512,473,470,497,518,496,489,490,498,531,515,506,506,521,525,521,513,536,510,517,513,456,448,477,423,477,473,434,464,458,471,458,453,463,456,465,442,437,454,469,477,473,460,468,462,442,448,429,458,416,421,418,404,429,428,418,436,411,426,418,442,379,417,452,433,416,398,421,408,416,439,439,428,431,407,391,424,439,460,433,434,440,410,417,422,443,435,442,456,440,407,435,395,428,433,410,409,437,437,438,428,422,425,402,411,439,433,526,535,545,511,534,518,481,557,510,511,536,547,554,510,521,491,502,514,496,508,493,546,515,533,495,537,518,514,525,552,541,502,533,471,438,450,468,437,467,428,471,482,482,417,465,484,443,459,453,421,453,432,484,468,508,459,417,433,453,412,555,548,534,575,574,584,524,573,497,520,548,521,560,529,567,554,547,572,566,533,552,545,533,626,585,551,549,559,580,527,634,608,602,631,602,588,631,626,592,597,615,577,589,584,557,612,579,583,603,610,622,617,588,608,599,628,586,597,606,605,573,600,574,589,610,578,629,582,580,588,601,561,581,587,592,576,590,624,597,583,585,608,604,581,573,572,600,596,573,683,670,680,635,707,677,690,684,693,652,640,672,685,665,671,664,677,653,657,703,714,667,633,666,653,700,643,652,645,622,646,665,643,620,670,651,646,625,628,680,627,638,696,690,669,645,663,637,662,617,613,654,680,662,650,635,654,658,676,673,598,600,605,642,615,593,600,581,608,636,608,647,603,637,634,607,611,615,631,635,606,620,588,543,621,616,606,574,612,574,563,516,552,574,509,559,583,607,536,533,543,567,591,582,553,543,575,567,579,570,545,536,549,557,537,566,554,595,668,656,640,635,675,645,633,627,657,666,648,682,644,672,605,613,666,631,664,661,636,651,651,642,640,631,633,639,643,655,622,660,688,651,618,633,652,612,658,597,608,575,630,647,685,660,628,620,616,619,599,630,649,628,608,619,591,641,574,676,612,656,642,501,540,500,491,546,534,523,552,514,503,535,529,508,506,506,523,504,475,500,480,487,501,550,536,535,516,545,523,574,542,564,521,596,606,653,593,624,596,613,602,631,660,659,605,610,639,623,587,582,602,580,616,658,677,582,597,601,624,592,579,589,582,553,556,572,595,585,571,625,587,599,587,604,616,591,609,538,598,616,620,586,612,574,582,561,592,587,606,618,540,615,571,566,513,625,583,574,552,571,625,579,618,630,559,564,664,620,546,581,560,584,621,592,613,463,466,465,479,469,472,463,436,486,435,456,450,468,471,465,439,450,438,464,448,498,451,487,465,463,452,466,437,448,453,458,451,466,463,484,455,471,466,404,395,418,414,417,412,405,411,409,405,418,405,419,389,393,408,395,413,415,386,416,411,426,428,388,434,400,412,380,367,410,462,357,423,382,369,451,394,423,347,399,470,408,371,483,405,415,406,444,405,383,403,389,380,426,362,581,550,559,532,574,588,572,582,571,599,589,583,573,562,560,563,543,526,568,586,601,576,541,575,577,585,567,569,594,597,557,598,588,572,562,491,464,475,436,480,459,442,482,476,486,440,440,457,474,462,474,473,469,466,487,489,450,483,443,428,469,484,489,453,451,545,556,452,451,507,470,459,491,498,513,557,494,478,463,468,456,513,441,450,462,494,431,514,540,473,507,449,480,488,446,475,420,432,394,432,465,443,408,432,467,490,458,403,452,431,459,461,442,423,444,426,455,435,428,458,422,442,449,425,423,475,412,589,633,603,601,589,619,621,601,645,597,594,635,578,598,611,604,613,605,584,651,587,611,571,631,623,564,644,579,591,566,594,554,600,586,589,574,576,586,557,619,573,595,571,611,551,587,564,578,567,605,558,614,593,573,560,574,585,562,651,702,727,660,692,666,671,682,667,693,674,669,637,699,710,679,697,665,640,682,698,668,621,670,666,683,662,691,685,671,638,662,650,637,643,647,667,623,653,642,642,631,637,657,649,610,619,634,649,667,645,638,628,694,620,654,618,657,663,595,614,580,585,555,601,562,609,602,608,582,608,634,588,586,578,565,610,612,588,590,596,600,572,598,563,596,570,611,633,590,599,569,626,638,640,585,623,634,642,615,598,573,608,589,604,604,650,601,579,596,585,624,622,601,608,586,598,605,645,611,594,632,581,581,592,611,610,590,567,578,588,598,623,610,604,616,585,579,621,626,597,571,623,578,617,620,583,573,606,605,607,599,596,603,601,613,579,579,571,582,641,589,637,586,582,572,579,586,607,574,631,522,582,619,626,546,585,544,536,574,624,591,625,581,573,622,559,537,647,585,546,572,608,603,585,558,636,596,613,584,542,642,592,587,614,606,545,574,628,562,570,587,594,621,608,587,585,476,479,502,450,479,475,500,505,499,473,528,488,504,448,492,500,477,476,460,498,447,491,466,480,513,487,474,480,472,503,473,496,482,463,550,552,578,539,657,492,497,546,512,476,574,463,575,496,517,589,488,548,580,602,517,563,634,533,539,503,565,637,616,610,614,613,618,626,669,612,628,631,612,609,634,638,644,646,602,644,643,660,601,645,638,591,628,672,629,603,592,547,621,567,626,628,654,619,663,604,654,645,575,522,558,612,589,655,539,633,622,619,594,590,625,604,668,605,564,607,634,498,668,539,458,457,493,437,492,435,436,476,464,473,446,434,479,461,460,481,455,480,525,425,410,437,459,456,451,448,508,470,446,471,478,410,472,454,427,437,425,395,476,413,420,354,447,449,442,463,399,436,427,354,450,425,388,521,409,482,377,394,426,485,435,460,388,677,671,650,626,646,646,735,704,681,668,698,626,686,628,686,659,700,684,696,652,641,645,713,671,666,715,670,680,684,544,505,537,543,532,530,504,564,559,544,510,555,522,494,521,551,525,538,544,509,540,510,503,547,522,517,551,512,529,532,563,593,539,534,520,533,527,547,536,513,443,489,559,609,554,535,528,592,611,535,560,579,539,582,531,541,542,540,536,558,481,570,629,646,583,593,652,611,593,580,620,637,624,589,672,653,621,634,617,613,635,642,652,616,649,649,594,627,595,593,628,599,568,568,574,574,583,553,613,594,607,607,612,612,593,578,654,638,630,622,607,553,567,586,577,637,615,637,632,564,606,598,638,597,598,632,583,612,604,604,618,609,586,626,584,597,618,665,618,583,616,595,616,625,599,638,644,626,589,620,637,622,580,609,598,552,615,584,672,594,613,576,568,605,570,571,568,628,595,615,611,579,642,574,574,576,548,584,585,565,589,580,622,594,586,614,639,591,577,615,657,598,621,553,616,565,602,609,578,588,543,606,630,590,623,543,597,621,586,569,582,586,638,581,594,585,609,596,587,596,633,608,650,604,638,576,623,625,594,621,626,589,639,610,596,597,554,624,593,581,644,620,621,651,616,605,577,634,625,655,609,615,583,569,695,601,605,646,603,596,624,608,613,615,611,583,660,626,614,604,644,629,685,589,635,627,610,587,582,423,460,468,476,469,407,473,498,474,523,458,436,475,462,512,535,546,448,460,506,531,463,477,424,415,498,485,520,508,338,397,357,374,414,346,359,390,398,377,410,337,405,390,320,371,373,417,437,354,359,400,361,387,374,326,363,385,348,358,328,376,413,392,549,548,571,569,575,590,583,561,570,541,560,539,601,587,570,565,592,560,530,573,535,591,526,553,525,524,566,558,560,558,546,518,587,597,634,612,614,604,640,553,667,633,619,557,626,654,613,616,572,649,616,606,604,629,607,580,643,634,602,638,632,619,555,592,624,599,548,530,588,552,542,519,538,616,576,595,578,517,547,564,598,587,557,531,551,554,564,573,536,556,576,584,537,577,580,589,555,602,520,548,482,574,561,585,562,563,559,574,527,546,499,539,586,562,610,579,562,573,602,520,585,561,592,534,530,571,542,563,574,578,484,524,633,656,600,657,625,647,657,636,633,592,678,618,620,667,647,622,672,631,643,604,648,655,665,619,642,674,666,660,631,702,637,638,682,617,650,608,630,678,630,689,630,612,621,571,671,680,686,565,634,655,652,587,624,583,682,645,608,620,611,652,635,662,654,582,643,634,634,653,606,576,604,555,593,592,583,632,570,664,621,577,580,629,626,615,435,518,554,503,508,404,401,462,450,463,425,435,455,486,437,446,474,491,437,442,462,483,462,498,486,471,502,462,399,435,439,388,396,440,417,441,422,423,462,437,411,424,427,427,434,399,444,426,389,461,433,426,449,417,400,369,314,378,376,329,424,352,462,326,407,398,427,443,314,450,357,347,339,468,447,419,397,420,428,342,338,282,400,340,395,399,649,635,686,580,656,677,670,681,659,602,623,680,675,664,636,679,628,654,682,578,677,673,655,691,624,644,632,664,643,643,657,620,651,664,647,631,636,659,642,643,641,667,671,637,623,663,629,590,656,678,653,703,638,650,651,633,646,531,525,496,472,533,516,523,513,514,524,503,509,543,520,507,515,503,539,578,519,472,516,509,530,518,510,506,485,545,519,420,446,440,460,407,436,458,445,415,439,451,415,431,412,463,443,450,445,446,439,455,448,481,441,431,456,451,470,432,438,436,445,475,441,424,482,504,433,450,504,481,483,463,466,452,474,469,461,464,460,442,466,430,464,431,446,430,481,452,511,397,437,409,410,418,408,395,414,435,402,399,411,425,420,425,423,412,420,384,405,420,444,413,416,419,464,416,439,447,470,438,448,496,492,432,446,476,471,472,443,442,465,438,446,488,439,427,441,440,465,441,456,505,446,433,416,576,574,627,573,592,598,559,552,615,587,550,583,575,596,606,556,594,580,548,582,585,582,628,653,616,606,507,466,463,512,484,509,486,522,486,476,513,484,460,517,510,494,462,468,494,533,493,491,479,499,502,481,507,479,483,501,548,501,494,516,492,467,520,468,467,503,492,488,505,510,475,503,496,501,475,523,482,472,472,442,518,526,448,431,486,438,498,465,424,444,482,476,434,487,470,471,464,464,492,435,473,498,482,485,452,471,493,480,485,466,437,416,417,439,425,399,402,425,421,435,429,432,411,397,413,410,405,438,429,416,419,405,441,440,419,415,382,427,432,408,374,447,365,444,434,452,417,419,417,423,411,433,416,381,439,440,438,463,429,430,420,459,427,420,434,429,436,429,648,678,567,644,655,667,658,606,678,597,662,696,612,677,610,631,678,626,613,601,580,600,655,626,644,641,667,664,653,626,614,547,561,543,567,525,539,554,561,522,571,541,512,507,515,563,537,550,553,565,521,529,600,555,556,524,544,564,538,555,566,557,528,574,500,469,467,488,484,482,467,479,509,500,490,467,509,489,491,475,465,474,481,494,487,475,468,467,485,494,523,453,466,476,505,432,424,401,411,433,415,408,441,415,402,448,453,443,448,376,431,403,433,456,421,454,461,406,411,406,450,436,386,425,428,440,429,399,445,470,454,448,446,443,454,408,439,449,489,375,395,456,472,493,470,454,405,450,443,453,452,472,424,433,429,634,616,641,580,585,574,579,606,614,627,612,613,620,588,615,618,600,595,583,629,621,607,607,591,614,541,564,580,572,630,593,582,572,605,566,594,602,611,605,573,611,578,617,604,546,581,541,610,601,586,594,580,567,552,544,543,566,520,554,551,547,577,572,564,583,535,536,534,560,548,518,540,515,500,545,537,532,536,571,542,529,501,504,511,497,517,484,546,513,527,511,532,527,547,533,505,500,479,500,486,481,520,514,512,521,504,542,516,430,445,480,468,469,457,480,488,510,481,453,500,460,450,506,483,486,485,509,446,440,494,501,477,461,485,477,498,481,491,485,488,452,531,427,415,444,446,465,455,406,419,444,447,442,439,437,446,423,430,455,451,445,447,406,445,422,441,413,462,440,472,438,433,417,416,408,440,420,375,411,431,426,393,408,414,418,406,431,427,415,391,433,407,421,422,430,408,404,415,396,386,447,391,433,414,424,400,428,457,440,435,449,414,444,404,446,424,390,439,423,442,437,419,448,411,414,413,458,404,430,442,440,441,593,605,570,598,597,590,613,589,622,623,614,580,576,596,591,614,591,575,606,626,621,592,575,646,595,580,608,610,623,593,612,513,555,588,572,584,639,588,565,568,607,590,627,619,585,569,572,602,554,609,544,604,548,586,595,539,530,585,475,509,494,490,471,527,505,512,529,512,494,541,503,483,500,539,493,519,514,522,527,521,521,521,506,514,511,516,509,502,509,455,477,420,436,448,442,466,419,425,453,461,453,425,415,427,453,469,463,456,422,448,443,414,463,451,475,434,458,391,357,397,409,441,466,409,401,392,404,436,442,404,420,437,391,427,400,421,445,396,434,412,394,430,402,423,433,434,399,584,572,576,581,559,502,535,524,513,600,550,605,531,588,536,538,538,555,531,567,513,582,545,592,575,556,562,574,557,586,593,565,564,599,611,579,598,600,564,542,592,563,531,568,562,608,593,572,524,571,575,599,559,614,564,576,587,564,606,500,470,487,492,509,479,486,447,477,458,489,499,474,474,467,483,429,503,488,480,482,488,514,481,489,461,460,499,453,500,471,625,613,628,633,626,623,578,572,616,585,640,668,597,599,560,562,606,611,576,653,584,658,620,601,667,652,611,629,677,675,675,602,675,657,670,684,607,689,640,646,627,667,696,665,690,635,690,595,700,649,669,608,534,518,514,509,516,517,519,555,521,570,538,554,546,509,514,566,485,548,538,496,528,540,527,536,525,518,518,457,586,327,385,441,392,357,370,355,384,359,411,403,427,369,396,431,393,408,429,365,423,392,369,427,434,421,440,393,422,375,376,373,504,459,360,511,393,412,363,388,469,424,492,398,430,442,368,446,456,482,387,306,409,327,408,381,426,388,456,407,473,727,720,669,657,683,685,674,690,670,694,708,694,718,699,677,674,693,695,678,669,683,719,696,722,681,688,682,681,679,706,714,658,628,678,674,678,682,659,673,687,646,676,663,650,686,685,636,639,622,695,628,704,637,659,682,652,650,627,637,657,616,600,667,503,569,564,595,585,607,585,596,544,602,630,600,621,531,631,555,554,555,619,617,582,644,572,527,634,639,635,610,624,629,615,660,386,383,405,400,410,409,381,406,393,366,381,401,386,368,410,417,386,392,432,408,400,405,377,405,362,392,388,389,393,415,377,385,418,393,336,405,446,411,533,431,371,380,427,472,410,424,487,353,562,478,464,466,419,431,412,410,458,486,513,415,302,384,423,333,426,413,703,699,696,696,667,682,677,683,702,695,667,666,662,692,674,714,719,723,700,700,698,697,673,702,686,686,713,700,739,715,683,691,638,704,683,673,661,635,646,735,638,653,703,679,652,670,702,668,733,691,693,670,694,664,670,652,647,590,635,566,595,573,598,632,601,614,597,543,589,659,628,631,591,549,571,633,565,603,581,632,602,618,624,638,612,571,609,561,567,563,592,440,396,408,419,381,373,399,421,461,387,381,492,412,466,408,401,459,462,396,402,406,434,373,409,409,401,494,420,337,360,349,357,351,358,317,335,336,332,382,358,350,318,348,339,317,368,369,349,284,364,321,333,332,362,324,319,347,329,349,318,330,356,340,319,333,369,345,324,303,354,324,360,325,307,344,346,363,318,352,324,343,321,356,353,361,374,367,393,346,362,375,354,354,340,341,344,359,359,343,379,380,360,353,352,376,369,381,356,381,355,355,456,448,428,436,411,422,438,400,426,440,427,425,437,419,424,426,445,429,446,428,441,427,408,384,387,428,410,414,407,420,432,409,408,412,427,414,399,378,427,427,445,420,401,381,436,426,400,418,418,401,400,412,413,443,501,481,480,485,512,460,414,422,508,475,516,430,461,424,488,471,469,499,434,475,484,444,434,441,460,516,505,492,458,500,399,503,422,485,393,476,506,377,393,483,462,494,533,419,506,441,487,476,415,492,570,445,486,507,491,429,443,513,461,457,705,694,702,686,722,712,711,721,724,725,705,716,733,726,693,697,685,744,715,737,711,725,699,685,650,632,635,671,686,644,741,675,658,608,705,655,675,648,698,697,706,713,686,673,646,660,725,649,723,679,708,677,700,694,600,611,590,641,616,624,579,625,591,578,618,579,616,604,614,629,581,637,606,626,623,653,619,590,606,631,578,639,639,467,456,497,459,507,489,440,459,458,465,433,508,441,449,436,414,461,446,497,451,481,466,460,478,451,423,464,472,608,576,557,610,610,619,635,603,616,632,585,614,618,604,632,655,602,614,583,577,624,627,613,614,602,603,579,622,647,633,634,607,619,564,576,583,555,529,533,521,568,538,577,543,567,596,566,559,541,559,564,538,533,555,606,504,498,536,571,545,550,536,544,567,571,497,532,518,500,495,510,487,494,519,510,486,471,531,507,530,521,543,514,518,477,480,501,489,514,540,481,492,514,525,498,475,443,473,484,467,474,477,438,444,455,445,465,437,463,473,459,470,453,461,470,452,433,445,450,451,460,439,450,451,472,468,446,434,487,542,573,530,538,551,549,541,546,558,552,560,536,583,551,568,546,561,525,566,543,572,510,573,525,507,552,573,568,607,627,603,597,613,598,627,604,582,615,594,624,595,621,590,611,590,594,600,598,618,601,611,592,611,625,620,637,611,582,604,612,608,613,601,565,758,722,691,682,728,717,728,713,712,732,737,692,679,709,713,717,717,747,695,756,736,721,772,712,689,705,742,729,685,693,624,713,657,620,661,663,664,658,693,650,626,679,643,697,688,703,656,670,665,622,650,706,672,606,647,627,593,665,644,572,568,606,597,607,570,565,566,580,617,609,585,609,557,592,600,563,582,589,598,603,572,568,601,594,586,562,567,599,574,591,625,673,706,720,706,719,693,693,675,690,715,708,700,714,702,704,683,695,701,702,713,681,728,735,711,692,683,666,686,641,647,660,661,687,623,708,680,632,676,640,680,687,657,689,652,656,646,660,669,668,681,673,668,648,670,649,682,680,583,600,586,614,571,603,570,565,567,554,578,584,579,593,589,631,587,621,582,625,612,598,638,619,583,623,614,597,630,598,545,575,579,564,563,580,570,544,518,602,542,580,583,569,575,578,569,571,545,543,563,590,547,580,533,593,576,542,547,610,587,476,603,547,558,574,531,569,550,559,523,565,530,499,555,571,595,586,530,545,541,539,531,533,548,702,697,681,667,678,700,738,670,756,702,743,735,728,734,721,694,675,687,728,661,694,686,670,708,710,719,706,693,707,712,687,681,731,690,642,630,621,634,681,633,663,635,612,634,650,635,645,622,616,696,673,637,648,652,664,629,613,632,632,555,615,581,540,592,568,570,623,576,545,559,580,569,553,580,528,569,561,558,560,576,552,541,559,552,579,568,550,600,568,558,553,644,679,666,639,675,655,658,671,669,662,634,643,661,664,675,669,669,643,639,640,664,665,676,639,670,621,666,650,620,629,633,592,612,623,641,610,637,633,617,651,619,603,585,638,652,644,615,623,595,634,618,616,630,602,628,609,596,587,608,612,556,577,624,617,557,585,581,595,589,615,578,640,609,597,602,544,565,592,595,591,564,628,577,584,596,583,572,583,649,557,612,638,582,664,608,672,633,605,686,636,583,594,684,608,598,608,571,642,636,622,659,636,608,610,573,655,610,647,627,631,612,615,597,418,465,438,433,450,437,457,398,445,460,435,402,470,396,408,459,428,412,459,463,470,474,460,435,420,404,430,481,435,477,443,515,449,413,486,506,386,416,429,457,367,401,439,473,430,396,430,453,440,436,507,470,442,457,495,487,493,520,537,578,547,555,580,538,483,577,569,564,591,540,589,570,592,536,557,546,545,566,559,599,561,579,566,550,541,564,558,543,577,582,579,602,518,580,563,539,534,569,570,547,553,577,584,542,578,585,524,584,525,553,508,564,537,572,593,581,562,662,648,653,668,675,681,671,646,682,701,686,685,659,647,707,659,649,695,685,680,665,638,691,681,688,654,671,685,658,686,633,636,614,648,646,662,635,651,672,667,679,668,655,620,654,661,615,645,646,650,649,625,626,657,648,655,667,669,604,618,594,626,629,654,586,641,594,630,620,589,639,639,613,580,633,639,601,615,643,630,628,665,578,634,631,612,632,603,646,581,633,500,472,466,529,504,479,472,487,515,499,476,469,509,493,512,547,520,509,474,515,465,515,442,539,498,510,512,509,453,423,427,438,451,430,422,419,443,437,443,402,441,421,445,451,444,415,444,434,414,432,430,433,476,430,440,406,420,451,423,452,476,524,558,558,592,572,581,563,583,530,562,578,509,548,580,550,569,564,579,548,545,559,512,548,566,535,553,559,609,583,627,552,628,599,637,620,620,606,636,581,589,610,577,608,603,622,620,619,606,597,626,643,617,573,632,612,610,621,578,642,618,600,608,562,597,579,578,562,593,589,596,624,561,598,595,618,614,592,611,615,582,574,611,604,621,609,616,600,573,574,557,583,594,680,690,679,687,674,729,711,709,730,706,682,725,684,673,721,727,675,694,717,721,713,711,710,678,665,726,719,678,668,656,715,690,695,643,660,623,665,652,663,652,665,718,599,627,655,681,701,684,662,651,689,706,639,660,693,754,674,629,682,623,666,730,642,713,707,670,571,583,558,610,578,547,559,589,601,626,651,586,585,645,592,577,547,564,580,595,613,583,599,637,587,596,611,564,568,451,450,429,447,417,483,447,418,456,417,446,431,440,437,458,418,419,414,464,426,509,431,421,427,421,421,448,451,420,470,470,406,415,394,404,399,423,403,395,402,364,383,360,415,410,392,400,397,421,375,391,396,418,408,380,350,410,314,446,386,376,374,406,329,321,372,448,360,385,343,372,370,341,356,358,413,441,454,350,405,465,372,368,345,344,410,578,613,593,598,618,618,625,588,602,615,587,570,602,613,599,570,589,589,574,651,596,629,601,622,613,619,623,579,607,604,529,543,555,534,512,550,579,562,562,535,548,561,495,545,572,603,557,542,535,543,546,521,557,548,557,551,554,541,537,558,530,461,492,495,485,494,466,478,479,478,498,497,487,472,484,492,496,491,472,486,462,482,499,476,470,458,477,500,483,492,493,487,485,444,536,480,502,481,552,506,491,449,456,472,461,553,468,466,482,552,485,507,488,463,465,472,487,481,479,491,464,500,474,462,498,464,469,527,502,468,527,500,456,452,499,475,501,505,518,500,479,487,464,525,449,460,424,410,433,483,435,457,457,467,457,495,453,504,479,448,473,456,439,436,468,415,444,465,432,455,450,449,461,477,580,598,582,566,605,583,581,596,598,565,590,570,594,568,598,601,593,607,563,583,587,588,604,597,609,635,591,602,624,581,596,620,633,668,555,574,645,588,577,608,585,629,610,644,652,588,633,628,640,654,647,664,614,658,616,625,604,650,643,655,612,565,582,647,641,601,591,612,564,584,637,577,621,612,486,584,536,581,569,556,678,569,562,574,639,492,600,628,601,496,517,515,517,511,509,484,514,489,543,494,517,483,498,584,483,492,522,497,512,503,487,461,527,476,528,496,487,465,524,415,418,434,451,449,450,454,470,444,457,454,450,432,450,440,441,461,446,459,422,445,450,435,446,455,440,443,454,472,429,449,443,458,439,432,439,410,459,436,450,447,467,456,448,437,456,452,464,459,466,428,415,446,431,443,451,448,455,421,410,447,454,456,401,391,425,410,393,395,422,401,377,407,411,387,436,372,411,407,411,402,415,408,408,400,392,398,433,412,414,424,391,404,403,417,394,436,420,439,430,409,405,416,414,412,434,445,424,414,417,405,422,427,424,391,391,400,403,390,426,401,433,408,407,393,423,421,397,400,390,427,400,405,418,396,425,385,423,400,386,395,377,390,389,377,405,395,391,406,400,399,390,396,424,408,418,425,421,435,433,422,445,423,445,410,440,411,405,433,402,465,383,432,427,427,423,417,420,408,385,423,448,420,457,457,553,526,541,481,527,494,594,496,537,508,481,517,549,525,539,502,468,476,525,529,473,503,529,521,463,534,724,754,734,749,738,768,720,687,742,723,726,770,735,756,713,767,713,750,711,787,715,744,719,764,743,742,787,689,700,654,658,642,645,647,677,641,690,627,637,676,644,660,684,672,683,688,597,681,681,685,651,651,685,563,617,572,577,603,589,636,571,582,584,611,627,604,611,626,578,614,619,597,614,633,595,634,570,601,587,607,638,599,610,657,622,626,662,669,629,625,635,635,607,658,580,608,620,586,582,605,618,632,593,615,615,628,600,601,597,590,571,592,646,550,574,543,537,551,553,538,554,566,567,507,550,593,560,549,527,530,547,542,586,594,566,590,588,576,583,550,587,526,537,561,561,506,521,491,528,498,478,467,485,486,470,498,514,513,473,493,474,490,494,471,498,505,479,469,476,460,423,418,436,409,421,456,403,392,429,425,416,424,436,440,427,412,427,448,420,440,411,420,407,432,436,414,425,390,415,421,424,408,458,485,418,476,374,489,396,512,449,476,444,404,453,461,398,481,418,465,451,427,506,396,465,473,465,446,494,417,643,656,640,627,651,679,646,621,623,647,627,647,611,666,661,649,659,642,653,674,628,643,622,608,651,655,626,621,638,599,586,602,561,570,563,636,584,569,613,598,553,597,539,580,583,626,560,615,590,564,580,607,632,593,569,563,583,558,554,534,535,545,535,537,563,542,553,537,544,542,546,556,545,525,496,565,546,517,527,529,538,573,555,530,531,533,535,537,533,527,538,541,523,530,573,556,516,468,469,489,460,470,476,481,470,477,479,480,486,449,472,467,472,478,475,492,468,471,464,495,461,484,471,455,464,502,504,510,493,469,491,473,487,469,512,525,494,477,503,487,472,477,491,493,488,454,483,485,470,499,481,485,500,493,536,527,549,545,543,548,509,555,514,521,542,535,540,541,554,526,500,544,529,566,523,570,522,552,539,540,481,497,497,502,487,495,465,488,483,504,482,462,478,483,500,469,467,469,469,492,459,452,442,490,507,496,503,479,505,437,476,467,454,450,458,483,457,447,453,470,485,462,487,459,447,456,442,428,478,434,437,466,450,452,466,457,445,462,459,447,519,506,509,506,472,564,509,515,495,488,489,492,519,487,509,533,493,531,486,500,506,528,513,525,504,481,491,500,507,756,677,688,700,752,691,687,743,695,707,736,714,712,724,751,744,709,717,708,707,725,735,733,724,698,718,692,700,717,702,716,634,669,690,706,642,671,714,687,672,678,667,697,645,660,644,683,665,650,681,680,659,673,644,681,628,615,585,622,669,624,595,635,654,609,637,634,639,574,628,587,650,614,628,604,630,607,634,636,572,601,616,606,612,633,618,659,587,614,642,631,559,599,643,601,683,590,599,605,630,623,604,608,572,606,621,598,646,581,604,643,545,618,617,414,494,394,425,383,485,409,512,469,423,403,471,489,484,439,461,449,457,474,456,442,429,432,469,484,464,426,445,499,491,428,454,472,446,484,564,601,535,619,572,584,560,597,606,605,545,569,562,546,544,569,571,598,585,584,611,555,574,558,526,555,524,511,618,683,704,687,754,595,713,636,650,618,665,591,710,647,628,643,639,617,713,697,682,623,629,666,647,699,586,658,621,591,595,549,587,567,644,550,582,567,586,545,610,606,615,548,557,580,633,523,685,590,537,574,637,577,578,552,546,587,627,569,560,595,595,592,578,607,592,588,580,595,509,535,597,595,581,550,620,594,625,555,533,577,539,586,528,464,477,465,462,474,482,485,462,515,470,488,476,449,468,499,476,470,462,465,488,460,481,463,490,475,472,496,485,454,469,463,480,439,475,444,464,468,468,453,457,490,463,420,488,476,475,435,445,477,449,476,482,454,471,456,457,489,435,518,429,441,484,477,477,474,447,457,483,502,436,434,487,497,504,502,457,496,499,496,500,474,530,468,434,487,457,461,507,500,468,723,715,700,709,716,706,689,695,705,714,665,713,740,726,714,744,725,684,683,714,729,691,703,715,709,707,714,717,690,684,738,704,759,725,700,689,666,664,668,701,689,683,657,698,636,702,668,668,657,662,635,623,705,709,681,678,700,670,679,713,657,698,678,699,697,701,689,696,549,546,565,568,586,584,599,577,562,590,582,548,592,548,610,568,603,613,544,517,597,525,565,595,605,578,557,551,578,577,568,568,616,580,594,585,619,572,605,653,614,630,618,592,596,599,605,615,567,551,564,589,571,663,586,593,559,592,575,581,560,537,550,559,525,542,543,537,530,553,581,509,519,567,545,547,542,566,564,517,522,580,544,570,542,529,558,501,551,545,537,490,535,474,527,561,592,547,527,568,573,547,492,560,545,531,530,504,565,521,556,511,533,509,517,479,562,503,525,524,530,501,586,578,552,589,563,547,560,571,586,605,586,598,563,521,633,552,586,584,596,557,601,631,618,585,474,501,464,486,484,518,449,462,491,509,453,497,517,487,482,454,488,517,491,517,493,460,461,488,498,463,497,446,472,523,474,465,466,499,459,502,469,503,500,490,499,454,460,502,497,458,482,525,475,490,463,543,497,485,435,519,457,513,510,459,453,482,465,482,438,477,493,464,462,469,472,454,429,468,448,454,476,485,474,446,457,456,492,456,491,474,418,443,423,417,418,395,413,408,394,411,396,422,436,441,400,426,449,411,424,431,398,392,435,406,444,420,401,430,430,452,469,401,421,458,420,422,428,433,451,454,406,422,454,449,433,413,482,468,424,458,441,459,416,446,407,429,484,419,463,623,584,629,663,675,671,646,687,667,625,674,614,660,660,626,690,649,664,690,727,695,619,625,618,603,611,636,657,608,599,560,649,524,529,530,539,564,521,577,544,553,531,512,518,581,542,522,511,497,553,566,520,495,531,511,510,517,574,497,574,537,525,506,526,536,583,520,516,526,577,531,494,536,470,539,519,481,568,547,530,495,533,537,529,441,542,542,569,483,487,523,540,529,587,625,615,661,613,616,624,623,599,557,620,610,599,684,626,623,615,655,725,634,613,607,603,632,664,631,614,516,565,470,500,514,528,501,537,537,507,486,503,489,481,507,508,520,523,575,515,528,503,567,480,502,498,525,527,490,587,539,527,522,508,491,505,535,513,523,509,561,487,555,510,548,495,522,539,508,518,526,518,539,527,502,517,529,590,552,546,486,552,465,470,458,490,471,460,471,445,439,466,450,463,461,486,465,467,476,454,480,463,482,453,428,469,437,455,446,457,477,452,460,415,390,408,402,409,442,420,418,420,414,437,421,414,406,405,433,406,408,411,416,406,388,398,397,422,419,404,430,422,402,392,426,406,431,434,441,455,395,423,440,411,432,432,442,404,418,430,422,433,433,450,416,431,413,414,408,416,423,399,435,433,427,432,437,404,396,411,394,390,418,401,434,385,409,425,404,405,443,414,424,395,420,387,418,431,375,439,429,435,418,415,433,402,523,486,478,508,466,462,498,514,480,503,444,443,487,467,480,459,474,533,421,479,476,469,504,474,446,475,498,482,495,495,469,513,441,478,472,508,499,440,473,497,507,463,492,503,525,492,461,478,474,480,509,473,495,563,582,573,544,568,534,527,536,583,530,598,575,556,560,553,554,587,597,516,523,524,482,526,576,567,505,594,579,590,583,566,548,539,594,568,582,613,580,545,566,556,559,568,570,573,548,545,570,577,520,562,555,517,531,551,538,563,571,576,581,576,598,562,541,549,527,578,560,470,455,431,454,457,449,442,457,456,457,458,431,438,461,480,507,469,449,453,450,414,396,473,443,426,412,577,618,634,599,589,592,614,594,607,593,604,606,590,577,628,611,582,589,596,586,603,606,619,629,570,595,595,621,630,654,587,690,584,701,610,575,643,620,639,665,601,583,616,630,624,584,648,566,628,587,632,580,626,599,569,664,630,664,605,569,635,587,617,602,564,635,560,594,588,601,599,560,589,597,550,570,587,620,560,562,614,610,589,543,641,589,596,606,609,594,618,607,580,530,545,550,579,549,599,578,571,566,570,591,573,598,549,555,552,566,593,514,547,568,557,531,588,578,613,601,569,615,546,568,605,556,510,558,579,524,577,494,549,536,566,482,570,584,539,595,565,495,529,482,458,475,499,571,564,495,568,520,524,614,697,745,703,719,717,698,674,736,697,693,690,678,729,717,654,713,684,687,702,735,738,708,759,692,688,714,693,677,735,694,693,692,631,684,685,712,736,670,628,672,668,706,660,670,714,700,704,725,629,660,697,660,614,659,720,715,719,679,712,692,688,760,699,663,719,689,707,654,707,749,702,734,739,669,692,664,668,695,697,684,726,720,649,679,728,725,732,667,649,656,688,659,667,661,669,679,691,651,633,625,734,698,691,683,648,647,689,677,650,630,644,675,714,677,689,690,654,579,592,604,591,616,592,617,602,602,617,599,596,618,605,558,598,587,624,629,589,612,567,631,599,572,587,608,593,569,630,664,610,626,600,573,583,526,570,526,547,540,554,563,556,544,584,573,560,557,553,564,554,564,548,584,562,539,572,563,591,545,551,576,575,570,579,565,509,607,718,691,685,704,709,696,691,698,697,662,739,664,701,713,707,683,655,706,719,681,681,722,715,680,684,691,699,683,688,692,695,639,694,679,654,708,686,700,697,636,672,658,678,653,664,669,671,663,675,637,692,628,690,674,672,682,678,669,643,668,629,708,676,626,684,648,637,587,580,599,685,689,645,644,662,662,695,632,677,659,658,649,693,691,661,662,673,629,670,642,698,666,680,632,670,683,613,691,692,690,669,659,665,651,644,638,638,663,708,613,656,676,682,628,677,664,635,673,684,649,699,701,520,537,513,538,560,431,513,589,503,521,529,469,517,519,522,484,472,479,504,531,537,554,490,487,456,464,456,447,483,455,446,452,458,463,487,448,457,466,493,467,492,471,485,469,442,433,470,458,439,478,476,451,462,484,512,438,499,490,514,475,490,501,474,505,476,510,477,483,489,465,498,494,500,491,453,495,465,461,467,486,489,513,514,508,415,418,426,438,410,424,454,406,429,430,421,414,447,408,417,430,434,436,426,434,412,407,451,434,409,441,437,435,408,451,448,446,468,470,437,446,451,493,483,437,458,454,454,452,488,462,451,464,469,441,478,460,460,441,455,446,425,401,473,426,465,419,432,375,385,417,407,401,414,396,397,416,410,431,432,422,415,374,424,468,451,456,392,428,396,413,479,450,342,434,334,392,702,691,745,703,717,679,690,682,725,705,694,734,744,738,678,704,677,679,719,732,693,676,721,686,758,674,741,714,692,691,663,632,665,633,662,664,633,608,641,631,667,606,666,633,639,607,613,647,609,633,630,643,629,626,630,590,640,633,626,642,650,636,598,581,583,574,608,605,569,552,583,595,582,606,565,527,562,553,598,555,584,569,580,607,561,573,584,546,572,594,591,563,513,544,588,586,583,600,571,578,599,547,572,571,578,567,579,531,585,589,598,565,580,550,586,543,565,586,562,590,562,568,577,597,524,579,533,559,550,575,569,573,568,543,591,581,589,538,555,555,525,588,539,535,552,519,564,579,512,543,574,578,606,547,564,529,543,576,582,508,557,553,547,559,545,581,548,586,565,566,587,560,549,576,630,574,609,568,563,563,513,582,542,565,568,604,725,717,731,706,668,735,716,739,693,708,722,694,705,726,723,705,709,695,756,697,726,708,740,709,733,709,693,681,714,736,662,692,686,733,724,676,706,663,683,678,694,697,664,695,654,691,665,674,660,677,718,732,698,702,660,697,634,662,693,706,679,721,598,592,587,623,640,638,639,626,630,627,646,640,602,654,640,651,610,645,645,614,620,597,666,625,595,611,609,615,639,605,415,544,483,509,487,499,529,476,542,440,481,454,503,485,533,460,487,484,428,521,460,476,451,472,465,457,458,503,468,579,597,565,608,563,628,616,592,602,606,591,578,545,567,577,607,583,595,607,593,525,593,549,577,590,569,609,591,569,594,583,568,560,547,571,552,539,580,578,581,536,529,552,555,540,559,560,581,526,525,573,567,573,535,551,562,579,593,475,511,489,541,514,484,459,525,484,507,471,516,530,487,499,522,507,504,516,502,498,512,518,529,495,521,515,464,487,514,511,499,513,630,682,624,656,709,688,679,651,680,656,635,634,627,679,661,701,676,724,669,651,702,755,668,625,668,650,694,702,598,623,700,616,628,642,678,722,702,638,668,660,625,670,641,654,637,651,619,576,697,686,678,573,583,683,611,715,603,635,541,528,521,525,520,508,510,501,518,514,521,499,525,507,509,524,564,501,530,490,514,520,519,502,504,519,522,494,502,502,517,536,531,478,540,583,524,601,540,520,559,563,523,580,509,565,520,538,549,561,576,568,527,492,566,573,515,604,532,547,533,538,558,635,580,475,626,596,634,634,583,625,610,610,600,577,600,596,591,632,589,565,630,624,592,643,619,599,605,612,628,606,627,613,604,569,581,599,640,597,605,596,569,562,598,632,589,577,611,603,612,545,605,575,593,598,639,592,586,586,625,621,557,585,615,553,579,605,611,576,588,680,692,653,737,687,672,708,680,701,729,704,727,730,688,670,732,685,694,691,751,664,714,665,685,682,679,685,674,685,712,666,623,682,644,665,659,659,667,639,679,667,681,634,705,653,696,654,692,694,656,650,685,666,672,676,601,605,567,613,600,613,587,602,573,569,577,599,575,587,589,542,596,590,563,612,595,573,578,621,562,624,584,623,626,616,556,575,598,590,445,474,465,481,488,493,471,487,497,457,473,481,488,448,505,465,442,488,459,476,468,447,469,457,447,465,464,489,465,485,463,495,493,455,459,476,479,462,443,476,436,480,497,490,457,463,448,469,483,456,466,450,433,438,490,452,459,444,473,473,469,467,459,496,445,457,434,455,448,443,451,444,441,445,438,422,483,466,467,434,465,425,442,442,450,450,435,460,441,447,458,446,403,406,402,400,412,396,400,369,417,404,434,399,413,395,387,401,400,386,393,423,387,429,409,388,385,403,391,375,384,519,515,485,533,519,575,562,510,523,530,509,551,546,580,497,503,558,518,525,522,500,511,527,508,538,551,542,452,569,530,540,432,418,440,434,441,424,428,413,399,415,434,454,431,438,439,425,473,430,457,446,433,413,452,418,453,439,398,446,561,482,502,532,528,525,531,491,460,530,525,495,529,471,549,444,503,549,455,489,491,458,510,410,579,440,532,490,596,545,483,508,514,525,477,499,563,474,485,532,531,471,511,443,481,543,516,491,496,504,481,540,530,586,492,499,564,512,487,428,453,453,480,431,444,461,460,439,468,466,422,462,486,472,466,438,473,447,445,444,430,479,450,446,427,419,438,439,450,446,460,433,441,467,411,441,441,403,417,429,423,424,434,408,422,433,404,406,423,424,391,426,408,409,443,425,431,415,417,417,439,417,418,410,438,412,595,510,495,523,516,427,499,491,569,540,492,552,540,552,508,533,535,512,533,546,493,574,506,483,558,714,718,727,694,739,709,702,734,704,712,693,702,749,703,706,707,713,729,724,726,714,707,700,704,716,737,710,716,662,716,659,648,669,683,691,694,699,671,642,678,684,650,683,689,686,696,721,673,702,638,714,664,685,668,715,652,625,632,674,645,627,634,661,631,636,619,654,646,604,653,662,694,612,601,637,576,634,666,640,666,632,645,651,626,625,646,619,614,595,641,659,596,597,565,637,587,641,608,613,633,633,607,591,656,625,549,570,652,658,718,651,690,700,676,666,663,702,704,666,707,664,599,699,685,681,679,690,749,704,668,637,680,691,677,648,648,643,685,667,611,649,703,692,677,685,691,695,690,688,637,644,677,635,676,715,657,662,715,687,665,670,670,663,688,670,649,704,574,573,607,618,594,551,588,543,579,565,621,550,582,646,642,596,559,607,582,610,556,577,569,539,561,543,546,580,531,537,570,603,585,550,384,381,394,406,408,420,391,409,385,392,383,403,389,381,375,414,397,415,412,383,398,418,400,403,395,402,405,385,395,391,387,419,459,394,430,411,406,368,431,428,452,434,442,399,419,423,436,444,424,445,386,415,423,448,394,422,386,435,398,418,420,417,460,411,593,611,653,591,613,613,589,625,607,592,629,586,613,595,590,566,598,598,589,599,591,597,573,586,594,542,596,585,616,593,578,570,522,509,494,501,495,466,477,519,469,517,507,512,501,501,496,499,479,535,509,518,516,482,499,483,558,504,519,524,547,518,540,414,454,446,467,485,463,454,484,498,459,458,493,504,441,460,423,441,361,451,457,441,393,411,436,480,495,424,417,457,464,496,474,486,433,525,524,459,539,509,528,483,498,477,552,493,464,528,474,492,442,440,522,478,475,570,498,467,472,557,508,494,531,640,653,650,650,641,625,637,617,638,622,604,590,690,586,605,631,607,667,615,623,616,645,595,632,660,504,510,494,506,499,504,505,513,490,525,503,512,503,501,502,576,476,520,522,540,505,531,512,499,517,527,507,510,516,539,527,516,451,479,478,446,443,452,459,480,418,465,438,450,455,465,451,438,452,423,438,457,438,452,452,471,459,417,416,418,444,461,599,635,629,629,614,627,595,532,625,609,620,566,550,635,577,566,599,539,594,610,616,588,565,605,614,603,656,613,638,576,534,518,575,565,563,548,522,525,554,539,529,544,506,545,520,558,531,538,530,544,534,553,568,515,523,549,538,509,502,528,561,461,490,485,460,453,481,464,450,478,484,474,465,480,462,484,490,503,462,454,472,466,474,476,449,420,456,461,443,432,385,371,372,362,376,380,361,346,374,393,397,394,352,359,388,350,376,402,394,363,388,373,386,368,343,452,459,461,457,453,481,452,481,437,485,489,477,482,444,445,472,465,459,453,432,471,433,465,459,475,464,482,466,481,467,434,459,543,510,498,513,511,503,468,504,539,559,517,539,539,530,518,521,519,503,546,509,519,508,518,559,510,522,484,511,555,525,569,515,555,504,502,590,591,629,629,638,611,679,691,602,600,576,600,668,617,620,652,626,615,617,614,612,620,645,539,644,623,625,627,566,603,546,514,492,539,467,510,529,493,521,503,544,535,507,522,525,546,512,530,518,534,560,544,469,473,477,443,457,448,448,480,456,464,467,450,461,458,465,447,463,441,465,434,470,461,450,454,481,459,447,447,464,563,540,580,526,530,494,570,557,591,538,558,549,530,562,542,561,580,580,544,575,558,579,546,584,531,564,528,553,568,593,541,562,618,624,609,611,604,617,614,613,624,641,635,584,606,594,603,618,618,568,618,614,587,612,586,617,613,622,626,595,624,624,603,592,595,617,593,600,605,601,558,627,599,599,615,642,615,548,608,622,640,617,620,569,611,591,614,567,582,622,595,589,585,598,583,559,591,595,568,608,735,735,737,711,734,675,743,702,709,720,742,686,723,699,699,689,722,724,720,716,707,729,705,743,691,709,721,717,716,702,703,722,673,737,655,652,626,623,660,703,674,709,664,659,704,678,718,663,685,673,623,676,657,669,685,667,628,576,624,609,617,627,606,601,605,606,555,602,638,594,647,604,639,604,582,593,601,605,595,612,569,613,592,573,608,565,577,525,611,520,542,551,553,544,526,550,511,569,575,538,556,550,564,578,543,584,534,573,538,571,559,549,549,440,437,473,432,440,463,452,450,451,451,403,461,457,471,441,473,416,477,443,443,450,482,442,445,460,444,433,438,457,429,430,508,475,413,420,396,401,387,430,408,416,392,401,390,395,396,390,408,407,423,401,378,408,402,412,381,423,455,405,418,370,384,419,419,398,415,371,387,428,349,396,411,373,371,395,401,421,399,354,357,407,380,364,369,441,376,410,379,370,375,374,410,406,353,372,359,376,391,525,478,515,511,538,508,465,505,475,561,561,535,525,526,581,493,545,528,548,500,562,498,513,580,500,542,543,519,535,550,544,547,568,552,576,544,546,563,579,587,552,566,580,563,550,534,556,557,570,549,570,563,587,525,544,529,544,556,531,550,569,563,579,575,420,477,465,469,512,462,471,473,479,448,457,451,461,470,477,491,451,460,449,482,464,467,470,483,472,493,467,456,456,418,427,399,406,441,451,444,446,417,413,470,445,441,423,401,438,420,435,414,420,407,447,448,448,434,428,427,418,466,417,450,511,522,493,494,469,521,504,505,524,512,521,491,498,537,507,515,516,498,510,508,509,461,539,499,506,503,511,488,509,475,507,446,409,438,415,415,430,428,450,431,417,421,413,404,442,404,434,425,396,441,423,406,430,397,418,441,422,555,564,547,541,512,452,563,533,442,484,464,479,415,510,499,465,476,465,496,476,479,482,511,513,692,676,724,714,644,703,707,651,717,743,654,702,677,697,718,718,723,675,675,705,734,675,719,686,718,669,718,717,672,645,662,693,644,687,702,690,713,707,700,677,679,662,696,682,694,662,672,693,682,663,641,702,676,683,689,671,716,670,674,662,651,663,647,581,650,567,614,687,644,699,701,669,658,606,615,690,621,614,591,614,630,593,633,677,634,656,698,693,689,604,552,487,500,460,461,486,535,430,528,487,537,467,529,476,453,548,524,545,475,498,461,521,484,544,521,402,477,501,513,482,456,488,468,472,446,470,485,434,464,446,477,446,470,479,433,465,473,478,462,465,469,469,456,466,511,477,548,554,497,531,536,533,561,541,522,531,496,534,512,541,509,523,568,504,558,512,556,504,566,510,534,511,565,553,572,538,526,615,590,604,577,611,567,580,578,597,550,586,588,557,582,573,628,571,593,582,594,635,579,606,586,593,606,580,508,570,593,570,581,596,564,573,590,609,590,594,580,590,594,556,586,572,585,559,585,608,574,601,583,579,569,599,585,553,592,582,587,578,588,584,603,604,590,584,594,605,577,591,579,594,573,567,588,566,599,570,567,587,575,581,582,573,577,576,572,561,573,556,581,577,590,591,568,580,586,554,570,589,558,553,566,577,572,576,595,561,574,572,557,581,538,547,571,530,538,521,552,530,549,574,558,550,585,537,549,525,530,531,536,557,538,565,543,552,545,546,534,501,535,543,523,539,432,543,492,512,476,500,441,456,412,490,463,520,478,470,454,515,479,462,479,501,459,482,469,484,468,466,418,467,492,484,632,652,726,683,675,647,665,709,677,616,699,667,650,675,704,658,705,624,657,600,682,658,668,666,679,700,651,662,622,693,678,629,678,629,643,599,656,642,642,647,654,647,627,621,678,614,645,609,743,619,641,657,643,641,616,640,626,622,649,670,654,495,477,529,514,500,477,497,536,531,559,517,519,516,525,570,489,514,548,482,538,462,547,468,524,510,514,435,518,474,473,481,494,501,501,522,441,502,498,493,490,511,509,470,534,498,530,509,525,529,515,517,509,504,466,511,540,379,412,414,439,423,412,449,406,401,403,410,457,389,389,413,391,429,420,402,398,411,409,444,468,437,439,393,429,415,571,559,570,553,580,620,572,560,468,586,531,570,558,587,551,575,552,521,565,569,537,522,536,564,544,466,614,579,594,567,544,505,557,605,577,571,576,593,526,577,560,583,606,570,620,542,616,583,571,586,568,576,518,571,589,578,602,606,529,540,533,564,522,544,542,521,527,543,570,523,557,523,522,546,528,538,528,537,528,522,537,542,561,540,568,567,477,479,472,514,520,461,468,493,474,455,487,512,468,462,494,458,509,483,484,481,492,466,466,462,478,453,497,461,478,506,500,472,460,482,420,403,435,432,434,433,415,423,431,429,425,423,411,434,401,431,426,435,431,425,421,420,429,393,428,397,409,502,461,453,476,493,483,495,474,470,472,453,471,484,476,495,485,502,418,431,471,513,437,476,468,478,451,471,489,497,468,473,540,493,674,656,657,709,692,690,706,696,654,691,674,698,695,705,686,681,686,685,659,730,698,702,714,701,696,730,710,731,700,678,650,665,692,634,714,660,648,666,668,577,676,669,656,649,680,671,722,619,700,701,668,672,700,658,661,641,661,626,664,693,461,537,539,529,570,574,552,546,497,486,474,587,489,534,548,572,436,557,532,478,580,533,544,531,533,562,564,494,527,522,438,448,429,439,447,452,427,409,443,444,464,415,454,453,457,451,457,439,450,441,447,430,435,441,457,429,455,440,449,433,453,427,471,398,434,444,456,438,423,441,450,437,439,437,399,446,445,431,433,448,423,451,432,422,428,453,415,435,449,431,421,445,475,487,466,430,465,489,457,453,430,444,457,434,484,462,444,466,453,451,400,450,466,454,456,432,571,553,558,524,534,536,567,562,581,556,539,530,552,550,565,556,539,537,549,571,595,554,523,575,524,539,532,546,538,560,548,521,599,567,597,581,576,629,581,603,633,630,604,604,601,632,572,617,620,583,631,595,592,619,611,573,582,603,621,593,619,610,612,600,576,615,575,599,574,566,604,582,614,575,616,588,610,612,604,578,626,585,602,586,573,586,615,590,566,496,520,479,439,513,464,458,490,500,486,408,444,444,473,476,482,486,479,474,483,463,482,525,465,454,511,461,508,561,541,544,488,514,521,565,531,472,572,562,542,469,535,559,463,646,511,526,507,559,504,532,512,482,521,565,539,555,582,574,598,636,664,612,551,623,606,589,615,608,617,579,586,622,596,610,588,599,564,599,576,589,628,610,565,610,537,584,551,564,581,576,565,557,587,577,575,561,605,578,575,583,591,554,586,594,569,595,574,569,574,582,553,564,583,435,466,484,479,444,441,489,479,425,447,454,465,505,433,491,477,464,388,423,477,422,441,430,420,444,491,433,465,481,455,448,582,582,559,542,584,585,580,589,574,561,524,564,578,571,623,559,539,587,555,582,543,534,532,554,548,579,561,600,552,610,460,445,461,442,413,444,421,459,445,444,446,411,449,460,444,421,423,419,447,472,412,438,451,446,431,459,433,427,459,437,443,445,405,459,462,432,408,428,447,402,461,401,390,411,416,443,438,400,437,415,429,447,446,406,420,442,453,423,444,448,375,408,411,402,429,554,501,536,552,548,562,580,525,543,563,577,580,566,578,569,542,521,564,565,542,557,545,555,561,576,528,578,583,522,556,510,439,494,485,482,481,500,511,503,472,498,508,474,509,506,513,489,493,480,495,527,512,493,522,498,529,492,538,465,454,465,474,473,467,456,479,461,481,466,481,480,468,478,449,454,459,502,466,458,470,491,478,476,505,518,526,601,550,557,567,610,563,580,573,566,540,563,562,620,545,579,576,588,540,557,543,534,557,574,531,582,581,584,583,596,612,643,628,639,636,636,573,594,635,640,622,650,599,619,661,598,636,629,610,649,638,623,613,640,628,606,632,588,608,643,596,592,584,599,636,599,591,616,610,624,601,600,625,594,614,599,610,636,580,614,599,618,606,601,639,574,614,616,656,588,564,556,613,604,586,605,573,598,574,582,585,585,568,566,593,580,578,538,594,551,596,602,591,567,584,561,574,586,589,555,521,575,567,546,571,547,557,567,591,590,559,578,593,565,523,573,558,570,609,538,581,556,691,681,650,654,668,666,646,681,668,639,662,638,682,661,696,673,667,658,672,650,688,658,678,657,677,670,642,707,709,653,642,644,643,654,645,678,641,641,649,631,649,653,667,612,689,676,649,677,666,653,659,678,651,641,664,638,639,643,639,613,607,637,643,573,656,640,653,644,633,662,587,631,647,630,611,619,650,662,655,587,674,669,622,633,580,580,589,590,553,628,579,585,645,575,633,561,598,581,626,619,540,531,594,615,604,604,608,631,588,554,664,412,418,409,441,448,392,402,429,416,417,418,428,421,380,418,420,417,430,437,405,419,444,415,424,386,431,395,404,460,462,464,492,486,434,474,434,471,473,478,476,478,474,454,424,449,491,455,436,512,434,474,452,480,478,517,471,457,461,441,434,477,468,504,530,492,548,518,510,497,540,512,552,517,534,526,491,504,512,455,498,502,551,464,581,489,550,490,512,525,510,467,533,513,495,670,650,641,679,619,662,608,662,687,683,674,644,695,674,653,668,664,651,598,611,665,641,617,691,622,648,652,699,662,574,627,656,628,664,665,521,523,571,531,538,531,537,511,571,535,556,544,514,540,554,541,523,563,476,536,530,535,544,529,530,516,531,510,531,555,558,523,521,500,509,586,495,533,543,589,548,535,548,536,597,587,535,546,543,545,622,558,590,529,515,612,563,507,589,593,598,460,598,611,632,601,646,633,666,591,640,675,635,593,662,670,635,640,653,621,629,649,634,624,609,602,645,653,625,619,649,715,604,580,532,582,622,563,586,591,582,577,603,604,594,609,585,574,613,577,601,587,615,595,597,573,605,576,604,588,616,582,584,558,556,537,546,576,571,546,535,570,558,559,576,577,535,553,591,582,568,538,587,557,579,588,536,584,560,555,567,560,570,561,570,573,558,546,513,533,527,464,595,545,595,528,631,536,530,577,511,494,499,524,470,557,509,520,510,529,485,489,554,564,539,576,627,659,663,689,635,688,684,643,640,668,693,713,687,686,681,655,672,652,659,643,652,685,666,688,639,728,661,685,691,641,673,657,610,660,651,636,651,667,644,646,618,672,618,614,685,653,644,599,670,671,657,650,645,609,660,653,630,654,617,693,640,609,620,619,634,618,624,634,633,627,637,609,659,640,643,644,617,594,604,608,631,630,607,632,637,664,592,639,641,647,653,612,660,598,602,594,630,585,627,575,582,605,575,575,601,581,605,594,620,567,564,596,576,587,622,573,586,561,605,573,589,544,569,538,539,548,550,542,532,554,542,557,563,548,574,538,561,556,580,542,547,528,553,502,530,532,539,523,538,523,522,500,559,508,522,520,515,496,527,507,542,544,551,532,485,470,530,549,543,491,505,556,513,492,475,461,468,489,513,464,479,481,501,494,502,469,507,441,499,444,452,469,471,495,466,484,477,481,476,520,456,487,475,461,495,494,511,516,559,522,544,527,514,537,498,489,548,520,551,531,545,500,510,543,530,547,536,541,498,533,538,551,523,432,435,468,424,475,440,429,417,423,441,452,433,437,413,428,407,428,452,404,442,441,437,457,442,425,407,422,434,424,392,390,419,399,398,427,400,373,420,398,399,418,416,402,400,437,394,423,418,392,404,427,441,409,394,399,428,418,409,418,430,456,430,411,437,426,410,394,442,415,410,441,400,431,432,447,452,416,420,465,448,421,428,428,421,425,433,423,433,440,455,415,426,414,413,409,435,390,404,417,398,416,399,415,443,417,407,407,427,441,415,417,396,427,405,394,442,460,404,422,476,422,422,423,348,379,360,365,386,406,374,387,380,364,353,363,370,364,393,388,349,385,360,374,352,376,386,361,387,366,415,346,362,393,355,385,406,365,389,381,403,393,364,386,383,371,359,375,399,382,390,404,405,387,404,413,346,389,387,385,375,384,394,372,399,392,375,396,418,393,408,365,424,403,425,397,403,398,406,397,409,427,397,383,385,396,419,394,429,388,404,430,469,412,429,423,444,415,398,418,394,410,423,368,415,423,406,410,434,450,440,420,442,430,475,478,482,460,510,484,458,483,441,480,515,484,434,536,466,439,491,525,475,470,493,464,521,525,489,471,510,484,516,508,467,501,542,530,550,541,575,529,522,560,583,566,542,575,527,556,562,552,577,555,550,523,565,543,543,541,552,555,545,699,666,674,662,686,702,671,701,697,664,672,677,723,672,714,651,691,707,673,686,695,678,678,696,679,697,688,719,681,695,681,718,675,639,670,667,663,680,654,671,702,751,713,680,643,651,664,667,664,647,620,697,663,683,627,626,722,650,653,568,546,566,611,585,543,619,535,570,531,592,580,591,596,593,594,612,545,631,604,598,561,529,568,580,647,427,422,470,371,432,418,434,410,409,391,443,436,408,384,418,374,467,459,421,477,413,490,402,362,444,468,435,371,379,433,456,464,464,421,404,449,426,428,445,429,463,430,455,445,472,448,465,444,445,436,457,420,462,426,432,433,437,421,442,477,450,446,488,506,507,517,525,507,488,533,531,519,499,466,548,519,534,481,487,503,503,468,469,524,555,487,491,501,484,487,465,495,494,464,501,483,452,465,484,447,478,467,477,491,431,468,465,483,443,431,479,455,486,485,470,460,512,481,469,503,466,433,495,477,463,429,429,474,476,451,473,463,487,455,483,484,451,484,456,449,467,457,460,447,473,435,465,451,459,459,584,604,585,586,575,581,595,577,586,564,576,604,562,584,616,590,601,535,611,584,601,580,610,591,585,600,588,584,624,637,625,655,627,605,631,561,624,608,588,622,611,619,666,662,616,643,635,653,579,590,600,656,612,569,606,553,612,529,580,618,693,545,599,652,600,555,600,535,655,582,548,561,621,514,576,643,591,593,567,604,521,509,518,519,525,519,542,537,479,515,504,485,517,466,479,523,478,494,512,514,505,547,485,488,523,503,504,499,512,526,521,429,440,453,420,435,486,434,416,462,445,424,470,445,431,468,454,446,424,433,460,422,439,431,444,448,425,468,457,444,433,470,404,419,432,400,408,402,387,401,408,396,403,382,387,398,402,412,408,404,399,411,385,401,428,381,412,399,395,368,361,370,411,392,394,394,407,382,406,375,408,416,404,368,407,390,407,387,376,394,341,428,398,380,415,372,392,370,416,481,479,437,479,483,501,487,490,442,463,497,462,458,443,514,448,461,480,456,485,488,478,448,471,419,511,501,474,457,466,469,461,460,562,555,501,567,512,523,539,541,529,541,577,511,549,553,502,556,524,553,523,526,529,545,514,569,541,551,529,542,526,526,562,534,509,620,524,491,537,539,557,555,504,549,555,527,601,565,592,563,511,565,541,547,581,567,532,537,575,552,555,589,572,537,577,568,578,536,538,521,495,511,499,499,460,481,485,456,510,515,497,473,516,472,477,481,496,475,488,509,483,497,483,460,461,470,502,458,496,457,444,449,452,452,455,456,465,464,459,452,436,447,447,461,445,420,443,463,451,442,463,439,424,427,456,618,582,566,588,599,587,601,579,551,580,573,564,567,605,640,578,581,589,582,614,613,612,592,590,533,541,614,547,590,624,511,526,568,609,569,560,577,648,582,573,601,599,548,580,593,618,600,600,561,576,563,617,578,585,588,565,514,544,552,525,524,514,551,543,534,517,502,507,534,518,504,522,556,567,517,551,571,487,532,531,547,535,543,531,507,528,565,483,572,513,504,540,504,579,501,514,488,508,527,544,557,508,598,558,564,555,491,555,559,488,497,537,592,492,526,552,533,543,535,590,548,524,507,496,540,559,507,481,534,533,520,489,471,541,486,561,514,480,551,488,545,489,531,517,529,526,505,536,478,455,480,481,452,480,470,439,460,460,466,462,465,477,472,468,458,455,452,480,470,446,484,476,483,468,455,481,468,463,473,452,505,524,545,543,527,588,563,587,597,561,572,578,556,562,577,562,576,544,533,595,558,562,537,607,582,584,562,582,555,529,561,554,568,608,591,586,628,610,615,642,617,605,635,637,633,643,624,629,616,606,603,662,647,622,638,626,644,648,655,648,632,634,616,614,599,651,625,632,589,632,580,549,595,615,653,595,594,611,569,581,650,631,576,680,602,582,551,590,592,630,646,644,603,602,563,581,590,572,671,446,456,445,458,460,431,477,471,456,450,461,437,457,450,462,439,463,468,451,479,468,455,432,481,453,455,434,459,463,439,459,453,464,452,459,465,487,411,472,456,509,491,465,491,477,502,475,468,464,473,478,443,465,472,479,484,467,459,472,460,498,492,484,477,451,507,556,535,489,520,512,532,522,492,536,511,502,488,477,511,537,516,500,498,500,520,489,514,493,506,543,517,507,537,448,461,453,428,454,486,465,447,477,447,470,482,454,483,490,441,424,446,452,440,459,452,445,459,452,429,479,477,445,457,416,486,453,521,571,552,541,570,529,521,573,545,531,542,554,511,537,554,512,573,499,514,509,511,550,539,535,494,553,493,539,514,524,571,521,563,544,550,572,559,553,577,555,540,564,540,593,602,554,552,548,562,557,570,517,573,582,524,569,538,554,557,605,543,550,592,560,583,603,594,500,473,505,499,481,507,455,540,486,488,487,476,525,485,477,560,495,444,506,514,566,408,510,519,475,517,516,503,553,547,481,557,676,738,677,671,690,740,704,686,695,665,691,695,737,664,701,705,643,680,664,668,688,696,663,691,656,673,664,730,676,759,612,565,593,584,613,599,616,614,572,663,619,602,611,588,570,601,593,575,599,609,591,659,617,602,616,611,583,587,510,566,534,526,585,533,558,562,548,533,559,563,587,534,544,569,489,575,595,525,528,498,495,511,488,544,552,690,730,641,679,669,627,678,646,641,640,695,671,670,664,666,659,699,687,697,700,667,687,664,661,664,647,678,635,602,645,644,660,646,642,646,659,620,662,626,610,656,677,613,628,654,658,633,623,644,685,656,663,623,637,657,673,630,542,543,568,556,548,556,577,580,586,584,607,580,535,558,557,551,555,537,533,575,536,590,570,419,512,473,465,458,463,465,497,444,487,451,461,478,464,490,418,480,429,475,487,422,435,429,467,589,568,610,599,595,609,615,583,619,590,567,608,590,592,571,610,602,552,619,608,602,613,563,629,595,605,602,591,598,633,597,628,624,644,683,653,680,587,657,612,629,545,655,658,626,609,593,584,657,600,658,615,646,624,622,583,596,673,626,649,584,625,585,569,615,640,627,527,600,620,585,614,642,586,584,601,607,598,620,639,585,638,607,617,597,574,646,648,569,512,469,509,486,446,474,436,478,470,495,490,471,437,468,448,469,498,451,423,467,470,493,436,462,450,468,497,445,457,504,457,488,492,490,512,565,520,585,528,551,560,564,572,567,564,557,530,565,561,539,544,528,544,555,521,541,594,577,471,521,607,535,553,535,688,620,714,583,647,627,658,662,657,597,665,581,596,590,666,694,608,706,564,690,636,608,681,675,549,625,522,585,529,603,528,553,577,503,542,636,617,522,590,516,594,609,559,508,491,621,564,592,554,590,584,638,620,602,633,579,461,499,504,452,474,466,499,493,493,496,485,462,458,477,485,464,467,517,483,470,489,482,449,464,522,509,481,606,662,595,645,645,578,624,628,623,577,554,640,549,589,553,646,612,614,615,631,642,652,575,647,601,636,526,669,615,603,630,632,629,616,590,602,667,608,606,595,623,730,628,587,610,624,626,580,657,584,667,636,654,601,648,653,596,616,620,692,563,599,646,637,552,528,518,497,524,518,513,516,524,490,491,531,498,533,497,494,511,513,499,512,510,515,482,518,505,494,518,506,481,517,534,498,526,556,528,503,482,500,492,478,498,498,538,494,474,508,508,495,528,498,490,461,492,488,490,445,478,452,478,483,483,497,498,487,476,485,500,507,564,578,542,570,571,577,535,512,582,567,553,576,554,552,541,591,547,548,548,568,567,571,569,556,574,540,564,546,546,530,559,473,469,469,491,451,485,464,494,464,486,446,489,453,464,459,460,451,463,459,483,479,454,479,505,502,506,495,495,566,510,518,566,501,554,486,483,503,507,466,465,506,512,500,489,505,532,504,468,499,527,539,481,471,478,465,502,472,444,468,505,478,466,464,462,468,472,466,463,487,460,441,462,486,445,459,464,482,457,512,519,490,533,511,482,511,526,512,482,538,521,593,553,483,482,526,527,511,510,537,516,484,495,498,488,498,542,492,517,467,561,576,608,576,579,571,562,583,547,574,578,583,586,568,579,606,558,522,579,572,588,581,578,570,567,588,529,577,589,584,581,587,435,458,426,426,440,452,446,445,461,453,450,457,445,462,449,448,454,449,465,432,433,452,446,471,438,446,441,438,464,458,447,442,443,444,464,462,454,447,464,469,454,457,441,457,446,470,459,461,452,422,447,469,489,456,464,474,463,432,408,404,435,422,446,431,446,397,454,441,429,423,435,422,425,425,434,450,401,434,427,421,417,450,411,431,430,422,429,414,456,425,412,482,442,420,476,433,478,448,427,444,474,426,434,443,471,401,462,449,453,452,435,445,455,460,456,439,437,530,462,490,491,495,474,471,507,580,492,510,497,532,492,546,552,471,543,488,464,527,507,531,528,531,513,520,478,542,519,422,495,496,481,465,448,483,488,434,479,459,435,450,475,480,448,499,456,491,516,413,475,484,461,478,451,453,466,427,469,522,467,470,513,502,484,503,546,522,554,550,575,571,550,540,613,557,576,575,542,533,570,579,608,563,575,544,572,606,564,621,580,573,544,576,634,611,603,589,598,602,590,596,601,576,592,610,575,595,615,598,613,616,592,551,598,599,634,600,606,597,596,575,575,586,602,596,613,678,666,691,671,674,707,667,667,699,725,691,649,635,672,700,694,699,684,723,689,670,698,718,704,711,654,671,695,663,684,687,653,660,682,621,665,651,685,657,678,642,653,668,639,668,631,675,653,662,656,671,663,658,635,624,677,679,662,653,623,592,610,629,666,607,641,596,638,673,610,626,625,659,598,633,618,617,618,562,609,626,598,648,617,640,621,629,586,655,562,550,570,625,600,580,575,555,566,573,541,568,586,590,523,590,548,565,560,555,584,563,534,569,611,592,570,680,651,676,698,687,691,661,669,710,710,667,676,665,653,685,667,649,703,703,615,667,677,689,692,663,666,655,693,656,662,660,664,643,659,695,641,657,620,688,651,648,629,655,653,660,631,610,656,612,620,606,612,655,612,673,684,635,655,622,664,608,572,587,600,569,544,541,556,585,581,578,608,608,549,598,607,567,579,579,587,553,566,598,583,588,587,601,602,590,610,599,481,439,464,468,445,451,450,483,464,464,476,460,454,461,488,456,475,457,477,474,470,474,465,475,459,431,463,470,435,473,514,498,499,482,450,474,517,467,447,482,447,471,461,439,435,477,475,478,450,482,474,464,453,464,452,466,484,435,505,458,455,443,414,456,437,456,441,450,452,411,463,422,456,397,441,428,466,463,457,435,464,424,430,450,444,429,441,404,451,427,471,414,413,410,425,461,449,563,530,535,558,573,540,543,523,555,541,556,562,561,560,543,564,522,599,557,582,557,549,545,550,586,554,537,583,538,540,555,546,488,459,465,407,470,450,456,491,480,486,467,450,462,485,484,488,438,480,464,465,495,458,496,487,455,456,481,496,465,504,487,462,466,463,386,448,532,466,496,514,510,482,482,482,536,487,527,474,491,448,475,496,458,470,525,469,460,518,459,457,471,490,460,475,485,498,458,468,437,485,450,482,449,476,483,459,437,441,456,459,477,467,479,473,439,462,426,413,431,476,429,428,449,442,445,432,438,424,421,422,401,411,433,398,440,423,407,444,423,442,441,435,417,417,446,459,394,389,428,458,417,445,388,401,429,452,392,460,401,423,431,445,418,442,449,428,469,408,446,442,424,433,399,602,632,613,568,581,602,590,614,613,578,614,588,564,603,573,610,545,592,567,626,591,601,602,564,623,624,613,542,580,643,594,567,551,456,423,429,439,404,438,457,417,442,443,450,453,432,469,440,449,444,446,423,437,415,428,449,449,439,430,458,459,378,420,459,476,480,438,382,422,445,362,397,469,473,378,364,315,422,350,281,422,379,348,366,368,386,397,311,736,741,751,741,732,719,717,732,750,724,718,736,781,722,756,734,752,735,743,718,742,748,748,771,719,748,713,729,735,729,728,715,782,662,698,682,640,668,673,630,653,664,647,691,676,681,619,647,685,652,672,665,657,702,666,635,603,603,591,592,625,608,605,576,630,606,593,601,630,602,610,596,625,616,578,581,622,596,602,606,574,596,596,567,574,617,587,690,669,695,669,714,687,670,672,694,720,708,677,696,679,678,683,708,651,737,668,713,709,688,695,687,683,712,662,663,712,701,678,738,683,650,668,663,655,639,672,616,658,663,643,675,676,671,626,642,626,667,651,702,660,643,625,674,644,653,634,688,704,667,685,645,652,642,613,632,647,638,644,656,640,697,653,636,660,640,623,676,645,637,694,637,627,639,579,624,643,626,658,654,682,663,655,671,639,639,684,658,627,667,645,653,616,610,628,706,665,594,676,667,685,667,610,655,661,664,664,533,577,631,579,580,573,574,612,597,644,671,607,659,655,637,663,619,696,650,626,631,638,608,600,600,593,484,547,505,485,499,520,467,522,492,529,502,504,475,488,545,533,484,501,508,465,455,555,415,483,456,494,471,444,408,427,412,447,393,430,400,444,387,417,430,443,446,414,401,417,422,397,422,417,415,392,434,388,473,432,425,417,398,476,426,453,413,406,440,388,416,378,360,401,377,364,377,392,391,379,404,442,393,390,393,376,378,376,399,398,368,375,368,399,386,365,398,394,409,392,413,379,406,397,413,404,417,390,384,420,409,398,408,404,393,414,404,402,386,406,409,368,432,414,376,396,406,427,434,420,441,583,534,560,535,512,516,557,444,448,564,563,545,519,511,489,515,512,432,535,517,581,525,524,510,533,555,529,509,590,556,551,394,359,378,385,381,383,383,393,389,396,358,394,424,396,368,376,378,403,410,385,396,405,385,405,370,402,390,380,376,402,397,374,343,296,477,332,435,448,241,323,436,331,334,314,355,408,499,281,392,396,441,299,475,416,373,442,365,413,338,429,380,458,426,669,621,614,708,648,652,641,691,679,622,664,674,617,676,694,664,659,660,685,684,646,638,649,611,672,644,630,684,643,667,670,668,636,641,650,634,621,626,652,655,620,668,638,634,664,639,613,630,634,601,642,636,623,641,650,653,652,642,617,652,624,660,632,619,618,612,604,629,598,599,650,538,592,641,637,614,618,592,655,624,628,610,620,599,594,608,558,584,633,621,603,598,540,555,516,542,536,517,498,491,493,517,496,469,492,448,475,464,513,495,515,501,453,464,475,479,477,362,384,420,462,418,419,367,381,377,390,428,388,426,390,418,382,422,437,398,399,367,446,457,427,455,610,591,647,562,585,591,603,601,581,621,590,584,572,611,613,608,574,569,592,555,632,603,597,583,614,587,623,644,546,577,523,526,563,567,564,543,518,567,551,569,565,550,518,585,560,522,591,544,520,574,518,535,506,606,565,569,545,515,591,579,563,491,544,518,560,519,510,498,538,510,508,551,501,543,548,496,539,556,549,536,506,516,503,493,511,503,537,515,599,551,540,537,465,490,526,521,608,629,654,653,656,634,615,626,587,634,628,627,668,621,615,615,618,634,605,606,614,593,633,613,630,656,631,611,543,534,553,497,510,529,515,539,556,504,520,527,551,548,530,553,504,560,550,510,537,520,548,532,520,520,520,534,547,525,526,544,540,511,537,485,509,466,449,496,469,484,490,474,528,482,496,485,466,479,496,504,437,481,464,497,476,483,494,487,442,523,503,491,505,501,481,454,481,471,504,457,468,487,453,491,504,466,508,470,437,500,493,509,500,499,492,492,492,508,458,499,475,492,471,446,451,457,459,428,463,438,461,447,435,440,434,419,464,488,444,432,467,479,444,454,426,454,457,458,456,459,432,436,417,426,409,441,426,401,402,422,396,400,404,420,420,412,425,425,402,436,425,439,435,405,403,413,403,394,378,405,435,398,444,402,395,407,386,364,380,390,375,374,382,358,360,357,363,381,362,379,368,374,364,375,351,341,359,377,366,344,329,325,341,345,317,322,363,331,332,356,373,346,347,346,365,353,316,339,353,340,338,343,369,348,346,355,365,372,363,362,354,331,371,323,351,329,361,352,341,336,342,334,340,327,346,362,342,341,367,323,327,341,343,363,347,324,367,393,397,372,358,354,362,356,387,367,408,404,326,295,334,325,329,298,379,372,390,367,380,348,366,336,320,347,314,357,333,353,562,560,553,526,508,563,542,572,573,558,545,581,555,568,523,499,597,543,571,569,548,527,573,513,573,562,487,485,480,489,459,464,482,500,460,481,476,468,459,460,484,475,481,477,462,478,456,489,475,481,498,496,471,473,465,493,448,424,416,445,441,441,437,467,445,459,412,461,462,449,426,448,426,463,448,462,439,447,459,435,442,438,433,427,434,441,406,408,405,432,382,407,421,422,421,385,380,422,379,383,399,393,403,408,398,429,404,389,438,364,396,371,405,391,429,382,381,424,451,475,459,447,457,466,446,465,470,446,489,533,456,487,471,472,448,420,457,469,438,420,454,487,470,438,435,457,408,463,466,473,457,432,422,422,416,430,404,409,431,417,416,426,410,413,410,444,411,431,426,423,422,427,418,434,456,428,442,444,417,424,425,419,420,447,466,476,473,446,468,405,421,449,441,440,458,440,446,431,419,476,447,463,429,438,449,429,421,459,464,446,448,474,430,403,413,428,446,391,404,429,375,399,413,445,369,368,428,410,383,431,425,430,407,388,398,419,406,400,408,696,707,678,676,687,700,686,659,668,666,642,696,647,668,699,727,680,682,662,660,719,722,745,673,656,688,617,635,657,640,612,597,630,627,652,630,637,599,656,629,635,644,646,597,640,625,650,650,605,633,613,613,679,632,670,591,519,528,516,500,509,515,548,523,492,522,493,496,514,511,487,503,483,495,533,520,526,530,518,529,545,499,527,525,510,527,448,422,448,478,439,446,434,455,453,438,437,422,442,428,422,448,478,432,448,432,444,451,428,435,460,428,403,452,422,407,420,426,415,421,432,418,440,394,426,421,436,405,392,402,391,421,427,415,448,413,451,426,414,388,419,614,620,661,597,635,595,590,647,598,636,635,596,577,606,630,677,649,617,691,626,646,586,657,574,620,612,620,595,627,631,615,640,680,620,628,609,665,608,625,643,659,602,649,644,586,673,634,640,681,673,628,659,605,598,673,606,502,535,528,538,516,488,536,530,472,515,486,525,531,503,518,489,556,508,555,557,580,518,505,509,525,530,481,470,482,481,484,476,488,507,467,490,499,444,467,464,484,512,443,552,487,499,451,537,564,471,482,508,543,481,477,517,515,418,456,543,528,506,481,600,552,616,568,565,574,581,586,628,569,622,606,547,561,586,599,573,583,581,557,599,555,589,598,558,529,586,576,602,678,666,715,682,668,690,712,682,719,701,659,681,683,673,668,684,655,643,671,687,671,693,653,638,598,620,667,622,667,635,621,610,643,614,648,642,673,636,641,616,623,662,603,658,659,625,604,630,645,648,640,589,645,622,625,635,600,656,623,644,570,615,601,624,609,605,604,636,590,644,614,586,614,667,583,640,630,634,608,608,612,632,649,617,606,624,642,631,631,576,624,671,569,534,613,616,586,623,578,614,554,631,588,633,628,553,605,590,591,573,610,612,576,560,638,552,559,598,650,599,594,595,521,611,546,426,447,445,452,457,435,452,447,455,460,467,443,386,420,444,397,441,438,430,472,434,440,441,436,456,424,457,435,455,431,391,426,426,440,410,459,408,384,410,399,432,441,440,405,406,450,412,457,414,428,420,391,438,449,434,417,423,407,448,409,458,468,483,482,486,501,508,475,503,476,493,503,466,486,462,487,465,489,491,481,508,465,472,467,478,505,456,514,507,506,498,491,480,424,413,401,404,419,432,413,409,402,436,426,416,403,420,419,406,423,407,417,417,416,415,378,400,414,382,439,401,403,434,386,432,406,466,446,457,458,514,443,437,481,463,428,432,426,437,428,467,451,481,479,467,437,500,464,435,435,432,440,438,418,467,479,477,412,497,441,654,634,677,655,645,659,683,677,658,650,670,647,656,653,635,633,634,657,650,643,651,674,628,648,670,637,676,671,660,620,610,629,590,625,625,626,622,598,582,617,619,627,609,619,587,612,612,612,653,631,603,630,603,619,626,639,643,607,624,588,626,600,519,570,554,599,594,575,584,545,582,569,559,556,605,580,591,569,572,618,580,575,600,609,560,606,583,609,599,644,608,592,629,640,626,596,617,596,639,596,621,646,597,640,593,610,593,590,596,598,616,615,635,634,579,570,531,545,559,549,543,532,566,536,583,611,532,569,542,548,508,527,541,564,561,539,534,540,536,529,584,539,522,537,565,506,485,487,509,487,457,463,478,472,471,474,512,489,459,479,461,461,483,481,447,463,477,465,472,450,513,475,463,444,456,462,481,498,488,504,498,495,504,528,510,496,489,493,513,527,519,478,506,503,510,541,482,518,473,516,559,524,526,508,484,540,538,502,500,502,481,487,522,500,497,490,471,538,493,479,542,506,510,516,546,516,505,476,543,502,536,530,435,468,470,447,432,442,380,464,462,471,469,461,425,452,429,479,473,476,450,492,477,388,447,488,427,624,625,648,603,644,636,619,631,655,609,580,619,640,637,681,663,616,622,657,605,624,621,638,623,615,655,658,630,619,615,677,536,559,524,559,536,605,540,552,527,542,536,548,532,532,566,548,555,544,565,560,546,526,545,527,542,499,539,503,520,562,492,543,602,491,490,577,555,526,551,507,573,530,536,492,550,544,510,506,568,486,522,462,530,529,529,571,605,639,619,629,634,642,596,654,649,576,634,571,612,624,599,584,621,588,612,599,575,571,572,568,554,553,478,462,460,430,441,457,463,474,458,466,453,433,398,434,461,438,461,437,458,458,430,440,462,474,452,448,433,435,397,408,447,460,380,413,396,413,401,400,348,411,351,429,454,399,408,454,402,407,406,387,397,475,421,429,436,664,668,598,713,658,647,670,639,633,722,644,676,588,685,614,709,641,586,728,747,655,689,703,632,671,716,758,655,616,625,531,524,481,497,536,509,530,546,489,500,551,558,558,529,548,525,499,477,523,536,494,536,557,560,456,571,502,507,526,546,578,563,497,485,472,449,500,456,468,468,489,474,454,486,478,484,444,485,482,479,432,478,478,471,457,465,432,472,446,455,489,525,525,588,538,548,562,549,558,537,526,512,569,580,547,551,539,512,546,522,551,528,542,527,547,582,409,469,459,474,463,484,458,479,420,443,488,456,458,437,460,474,467,497,486,439,468,473,439,449,457,478,460,438,673,610,609,623,609,635,589,686,615,632,647,630,646,644,591,631,615,614,624,628,629,621,636,652,623,638,637,638,617,562,627,632,620,618,581,560,564,583,568,555,622,597,560,576,603,532,537,599,558,574,583,577,539,582,565,626,597,587,619,553,582,568,567,604,595,573,619,632,591,659,613,630,618,653,604,683,655,645,625,647,627,665,587,687,612,626,615,636,675,549,561,527,521,477,506,558,518,495,488,518,526,509,494,519,525,551,502,481,534,531,517,495,526,572,529,542,534,491,520,558,529,535,581,539,539,498,524,558,555,556,478,604,508,579,638,551,607,633,623,570,606,608,611,526,598,531,546,605,595,643,630,677,695,711,675,660,628,624,625,662,661,674,654,588,640,655,673,627,674,708,642,622,694,651,650,653,706,648,700,594,662,655,709,756,715,685,740,725,759,696,749,734,670,710,711,712,728,718,696,716,729,714,676,721,705,703,720,716,752,696,710,673,643,642,629,612,688,597,625,653,675,657,653,587,652,686,639,669,619,618,639,656,643,637,635,647,598,649,556,571,558,531,547,589,562,554,610,549,605,538,605,558,564,554,539,549,549,582,592,612,547,593,579,580,572,532,556,622,654,693,697,676,680,711,686,706,662,681,696,699,700,675,729,670,705,688,701,678,705,697,649,728,715,699,669,670,750,592,618,622,629,641,610,621,625,631,612,627,610,691,673,690,572,659,607,624,647,654,640,609,659,629,665,660,652,622,640,572,582,558,541,563,525,521,572,587,572,561,562,593,555,588,585,569,581,560,566,531,546,583,549,541,565,558,592,585,598,550,641,626,600,614,650,597,574,627,635,616,635,601,600,613,637,583,651,576,636,574,589,634,621,598,593,613,575,606,669,426,455,419,438,457,411,479,440,467,473,419,434,451,476,453,480,467,383,446,447,459,443,424,477,440,379,440,429,441,468,473,456,402,409,450,391,530,397,395,365,385,348,425,453,470,397,352,440,393,390,397,455,412,349,383,433,375,415,418,433,470,731,653,714,643,665,729,696,672,678,728,679,766,695,743,636,725,687,680,666,696,699,668,668,663,676,669,697,659,645,661,688,720,722,692,710,648,645,704,649,665,632,626,686,671,626,650,640,654,681,694,641,714,640,685,713,708,686,641,646,652,670,670,680,677,671,653,686,620,717,669,624,630,664,603,698,576,684,613,622,605,603,667,596,680,626,625,609,603,479,395,471,438,435,392,468,457,477,430,500,399,387,490,421,486,475,462,474,425,462,503,492,467,440,502,381,452,471,441,439,457,426,453,437,503,480,479,480,444,463,413,457,484,459,439,448,411,469,494,540,513,555,559,527,542,559,492,525,504,512,539,550,535,510,510,534,527,551,566,540,537,559,553,535,580,506,556,728,690,689,664,651,699,680,685,681,679,702,689,714,714,677,652,719,693,706,700,710,682,702,676,707,701,655,738,693,698,640,644,656,662,656,669,664,654,637,639,615,639,651,710,619,692,683,660,632,641,696,656,627,634,651,658,637,667,652,632,656,629,625,608,639,594,607,675,577,640,576,625,579,577,641,641,602,606,622,630,620,592,605,630,653,619,633,606,640,611,647,628,600,599,599,568,585,571,558,565,571,565,598,553,549,608,569,544,552,547,584,612,570,553,538,560,578,559,561,561,532,560,543,660,667,696,649,669,687,693,676,681,656,692,700,661,676,666,694,710,667,623,652,697,657,694,704,682,671,667,643,675,640,668,644,641,678,628,615,623,631,608,625,629,628,628,650,635,663,645,613,671,631,626,632,672,626,660,619,640,613,681,675,657,649,651,650,646,576,625,653,629,634,610,659,660,621,626,593,628,675,619,655,620,642,604,638,582,595,632,609,658,650,671,587,585,570,566,591,565,574,577,580,605,580,556,574,559,587,588,568,605,595,577,568,587,568,619,553,567,557,563,580,575,590,596,578,538,513,491,525,504,491,530,491,512,517,499,508,527,513,483,499,491,489,482,522,514,525,518,518,506,520,533,496,499,507,504,524,497,486,497,516,539,487,549,535,497,518,505,474,515,494,532,536,546,519,498,530,495,484,473,503,497,523,518,495,515,528,504,449,591,543,571,573,584,564,595,592,551,555,561,556,569,546,563,605,581,595,510,601,568,573,575,516,589,571,605,546,555,559,522,659,607,601,579,593,598,532,526,582,511,589,546,599,546,547,559,605,563,617,545,563,543,528,533,628,557,583,567,611,589,645,569,599,599,548,560,580,614,628,594,575,629,625,599,561,635,632,598,582,614,628,576,615,585,603,603,602,595,633,621,634,652,635,609,604,596,600,601,589,605,596,586,571,499,538,479,506,525,411,524,557,499,528,547,454,531,502,472,533,488,464,490,504,441,481,485,505,503,495,575,505,515,482,543,426,437,456,439,446,406,462,446,451,460,427,408,450,419,446,440,445,480,445,427,450,457,474,395,462,444,470,433,475,447,657,679,667,706,687,698,685,636,677,638,615,659,733,594,717,695,691,690,655,689,645,639,680,617,649,704,684,672,685,667,657,656,645,660,604,586,696,633,634,633,664,646,644,623,638,699,596,645,659,617,627,619,635,680,647,662,664,673,637,604,669,595,534,500,517,445,514,491,453,489,509,485,476,534,536,516,504,485,509,461,472,529,501,500,482,474,472,489,501,495,475,476,426,497,430,479,449,436,482,443,405,440,484,465,472,457,478,471,453,447,472,484,472,453,471,445,456,425,507,513,538,577,547,554,517,577,570,551,538,517,566,548,514,528,563,509,532,512,564,538,556,505,553,514,554,544,582,559,534,561,565,612,532,575,567,545,533,565,515,564,564,589,563,563,560,568,559,560,547,507,609,549,561,580,564,552,552,542,613,656,634,672,616,632,692,637,666,656,666,646,647,660,659,619,619,614,695,696,664,673,622,631,643,661,642,620,694,632,621,507,559,449,480,552,517,472,549,582,523,519,537,532,522,572,561,513,536,558,521,525,525,533,510,505,557,552,527,555,559,514,508,583,562,581,503,677,518,514,617,579,628,547,621,537,549,606,524,598,560,592,486,503,580,546,570,518,609,571,589,632,650,650,648,625,609,632,630,579,627,627,611,600,664,666,645,576,652,609,654,645,619,671,618,624,655,632,641,674,639,629,599,552,673,648,572,600,703,678,627,659,647,638,617,651,620,646,663,639,630,659,687,669,577,609,643,630,613,639,616,606,569,562,558,575,537,562,571,558,567,557,538,558,559,574,554,558,575,515,547,538,555,549,563,532,559,592,501,486,477,492,470,482,490,462,484,487,478,492,477,493,524,491,480,511,504,466,518,505,490,502,506,505,452,452,570,565,541,539,559,604,523,577,598,560,585,523,608,557,559,550,555,541,579,630,560,567,611,622,531,564,543,599,594,652,596,612,619,592,571,606,609,615,590,612,602,619,631,591,596,599,609,606,616,616,610,614,639,617,622,584,609,599,612,573,595,729,748,762,712,729,750,725,693,799,682,746,759,755,746,730,687,743,695,761,784,716,665,725,723,767,699,719,731,727,708,711,675,677,684,665,647,675,623,654,652,664,635,663,673,674,633,660,638,651,618,704,706,666,656,666,681,657,678,656,657,632,641,675,595,573,577,596,594,586,563,544,595,598,580,575,584,589,606,598,579,596,601,617,557,577,605,558,580,622,602,575,642,600,630,616,598,634,619,572,648,604,676,661,592,641,592,531,623,577,604,617,627,588,606,617,628,595,678,484,488,474,531,490,462,507,462,525,474,503,463,501,517,523,492,489,482,474,515,485,498,464,474,520,506,436,483,463,457,465,490,449,423,439,494,453,453,416,504,451,472,455,423,468,446,428,470,436,392,479,432,419,614,576,548,571,615,564,547,589,579,570,528,588,618,586,567,565,575,557,595,565,569,552,551,586,589,527,563,569,605,576,572,657,681,678,704,667,686,728,714,680,656,718,690,691,676,696,694,697,669,634,720,676,658,701,672,683,658,688,701,680,687,640,650,656,664,608,646,599,669,621,623,681,694,671,675,628,669,658,618,659,634,661,663,635,601,666,676,655,715,622,621,661,635,660,629,586,512,559,594,542,546,582,536,563,555,587,546,554,493,523,512,497,546,533,507,526,604,527,540,541,577,545,483,480,432,439,459,463,525,468,481,475,459,471,473,467,496,480,492,482,474,490,465,480,484,491,477,488,466,448,504,479,485,449,473,508,483,490,475,455,507,476,477,487,457,475,501,472,482,471,479,504,481,453,470,468,469,470,466,468,475,477,475,478,484,497,526,496,471,473,447,431,461,471,484,458,542,420,468,461,452,472,481,432,513,490,503,475,540,657,685,661,673,637,635,652,606,642,640,656,634,637,655,665,654,641,653,656,644,623,653,634,670,653,647,660,625,651,635,635,610,605,603,635,609,634,645,624,608,606,648,578,621,618,575,577,617,617,625,600,632,630,635,596,630,615,560,592,593,601,622,614,600,582,600,607,618,603,575,594,597,636,560,616,600,577,571,593,602,600,593,602,630,625,586,586,569,512,531,581,591,634,535,589,571,543,500,558,547,581,532,551,542,587,574,542,535,590,572,563,688,710,700,678,668,710,703,701,714,690,667,712,688,675,689,695,699,712,741,693,686,686,708,684,666,706,723,691,741,703,665,719,653,717,733,683,663,646,650,662,689,637,645,675,669,660,631,654,691,665,688,662,661,656,673,675,607,649,689,699,655,682,629,677,665,682,697,675,680,653,678,720,701,721,668,680,693,722,676,697,674,719,686,668,655,723,709,739,663,700,703,669,721,718,677,647,675,693,664,647,651,669,672,705,664,690,674,712,657,648,666,680,659,653,676,671,633,659,654,696,681,739,681,720,549,529,556,589,580,520,570,561,500,578,536,543,545,546,591,567,521,588,569,572,531,556,570,583,568,551,556,548,567,608,572,550,538,517,513,540,573,559,540,553,566,548,574,610,541,547,552,521,519,504,519,535,540,570,515,531,509,607,531,581,595,627,624,601,584,597,581,611,599,602,592,589,611,584,594,594,614,644,610,616,640,608,597,592,649,629,595,643,593,552,537,584,548,555,577,600,581,535,543,537,599,564,551,559,595,561,554,558,592,573,571,586,573,580,546,564,590,526,554,551,567,503,448,482,465,547,513,475,517,470,449,493,462,455,490,498,535,466,486,478,463,490,511,473,487,491,500,474,501,465,448,454,513,490,447,694,694,688,638,695,701,662,727,736,680,699,691,755,677,726,644,656,731,739,698,679,644,685,693,650,693,706,672,655,678,764,689,666,643,647,637,643,645,614,652,654,625,636,645,666,629,624,635,636,581,634,623,658,617,684,660,670,602,624,633,656,654,607,627,632,636,590,574,579,553,562,591,582,588,594,576,603,582,587,576,598,607,587,581,575,600,546,576,580,567,587,592,591,583,587,573,575,563,598,578,576,594,570,592,561,542,561,584,538,539,548,557,553,543,569,542,562,563,560,539,553,599,579,570,543,554,584,565,583,562,575,549,503,538,535,554,539,511,540,561,516,505,539,538,539,571,518,523,556,582,563,524,566,526,588,574,549,513,524,532,546,529,553,535,551,570,511,528,515,520,529,555,570,504,519,638,660,604,673,673,702,627,688,663,648,663,676,666,676,670,680,655,655,643,635,616,611,660,623,635,585,618,624,522,512,541,447,571,493,549,563,511,531,513,561,530,538,488,502,533,553,543,514,497,539,507,544,550,561,571,524,590,688,529,544,584,633,617,553,534,659,612,513,517,580,624,618,578,606,524,570,612,617,611,612,574,507,610,615,502,657,608,572,618,700,677,609,625,656,614,576,645,627,647,588,637,643,637,626,685,611,620,628,592,626,633,575,639,628,605,618,642,649,654,627,633,679,711,701,630,719,695,631,699,637,646,646,706,710,680,643,649,687,672,664,662,629,646,665,614,577,612,610,643,684,674,664,638,640,667,655,646,666,616,634,688,603,620,663,713,665,646,565,552,535,531,547,594,525,529,535,534,517,547,564,582,530,556,545,539,500,557,559,578,515,507,510,567,515,540,519,566,417,426,434,474,458,444,412,406,420,420,452,449,427,449,436,449,430,417,420,448,451,441,431,439,423,408,413,433,471,460,420,444,398,396,422,436,405,404,422,398,426,455,397,389,423,435,409,399,398,409,363,403,405,402,425,405,396,412,376,426,393,434,369,400,406,620,615,599,580,544,614,550,605,649,661,539,614,580,616,577,584,584,583,563,662,614,617,588,620,637,577,589,629,592,593,616,604,558,619,531,560,590,540,517,548,531,576,553,542,565,558,595,534,564,524,590,568,550,544,563,514,563,529,595,554,530,559,515,474,460,548,421,500,486,497,503,492,489,524,438,447,477,501,493,449,430,433,438,466,466,451,444,464,451,443,476,479,495,472,409,470,362,400,399,402,400,374,368,407,403,368,388,399,407,383,391,363,354,391,366,386,403,388,387,405,392,374,360,393,389,430,415,379,352,388,392,385,369,424,393,426,373,366,401,370,398,411,374,362,381,334,421,398,400,383,389,391,446,367,424,410,430,431,416,439,430,442,403,409,397,410,405,387,452,401,426,394,381,422,436,400,453,443,406,439,428,405,462,437,382,407,399,403,404,426,403,408,401,471,388,437,385,423,414,415,404,441,421,403,420,400,433,527,528,559,520,533,521,481,519,510,487,523,528,549,474,575,488,529,512,500,524,521,523,492,533,524,571,510,503,511,607,578,560,588,567,570,598,599,598,583,579,556,574,563,583,578,549,578,567,565,580,576,595,565,586,575,583,501,495,500,493,456,474,521,454,483,483,490,470,513,485,504,476,466,516,479,466,496,497,478,499,496,505,478,476,432,517,545,567,515,575,534,544,549,560,522,560,532,549,526,586,534,514,531,608,553,584,560,565,557,542,520,621,607,634,603,601,613,622,613,603,600,622,608,615,605,605,644,620,608,614,648,604,630,623,632,632,648,640,650,633,603,643,626,628,578,573,607,573,600,589,619,611,596,600,587,596,591,609,601,635,604,607,619,595,629,629,605,624,621,624,590,619,607,614,570,580,573,587,578,585,570,578,581,590,593,590,573,571,577,592,594,574,605,585,578,556,578,580,586,586,579,590,566,596,586,585,574,537,541,603,565,533,547,589,573,558,558,580,574,543,585,550,545,527,572,563,544,583,529,572,577,524,568,515,564,558,461,486,483,474,477,439,445,481,482,471,460,468,450,473,473,470,459,473,487,488,458,470,476,433,438,446,453,464,473,484,447,448,511,494,513,481,502,507,474,516,488,518,505,470,506,504,563,485,507,530,494,523,507,460,487,495,538,498,542,539,497,451,437,468,482,435,449,457,483,470,454,451,471,432,438,493,450,505,447,464,483,442,493,493,464,444,482,416,412,521,567,504,499,540,513,557,562,548,535,552,540,493,568,598,501,529,543,541,510,537,513,579,531,444,617,606,605,638,635,617,655,617,612,639,595,611,650,638,623,623,625,624,633,645,624,629,620,610,621,645,609,604,632,647,632,683,625,587,604,601,618,607,618,601,626,595,616,620,641,606,613,617,602,644,629,630,630,590,582,603,600,636,625,606,632,605,578,593,595,584,576,604,616,584,586,583,585,585,585,592,593,603,600,568,584,590,574,584,571,586,611,573,578,592,573,615,548,585,551,575,568,531,575,542,554,582,595,560,593,582,593,597,557,618,549,575,591,577,547,564,591,560,621,562,566,574,451,473,459,440,461,450,483,473,458,464,456,478,428,451,442,470,438,452,460,464,481,472,458,463,464,443,468,472,445,474,395,394,372,390,376,416,379,420,398,359,393,403,390,380,417,427,383,395,383,440,395,388,392,419,406,410,391,407,378,420,402,481,342,313,387,387,329,407,329,368,429,381,453,404,417,379,429,423,373,452,362,411,340,511,321,313,409,391,342,404,703,710,659,663,678,668,722,680,679,684,703,660,667,706,699,713,702,713,705,694,714,674,695,721,714,712,691,710,695,686,673,639,643,644,665,606,635,614,649,619,669,651,633,625,628,669,650,638,602,607,692,609,633,654,645,622,626,632,623,616,611,616,640,683,688,686,696,680,695,708,630,691,726,675,744,638,698,630,696,656,644,692,687,682,727,660,751,684,679,635,668,648,630,690,654,660,620,647,640,677,656,649,629,663,660,675,663,674,651,657,684,685,643,643,673,653,641,541,595,579,562,583,537,569,576,563,595,534,579,579,524,591,544,597,555,579,598,577,609,579,592,532,538,590,559,543,595,489,465,492,446,470,440,485,445,463,484,460,446,482,475,475,425,458,483,456,457,448,443,427,461,459,472,433,463,676,670,594,644,587,597,642,570,611,689,647,568,573,652,598,672,598,639,563,599,635,639,598,646,624,590,599,552,530,583,638,615,587,676,616,613,632,573,648,623,621,708,633,650,669,619,626,673,606,657,622,686,552,606,648,647,598,621,563,497,514,517,529,435,536,526,508,509,566,565,528,512,476,528,521,493,551,538,526,526,504,555,535,492,463,526,526,510,484,479,517,538,493,450,502,497,463,491,482,486,518,463,480,495,508,501,487,472,501,491,508,481,468,481,461,469,518,486,478,573,534,551,586,564,570,589,578,584,541,568,554,551,568,550,582,543,563,603,568,564,546,544,547,558,600,562,550,538,531,558,527,485,538,534,511,506,526,511,509,511,526,514,535,536,507,502,500,526,464,495,513,538,523,530,521,539,488,493,494,442,475,471,474,480,465,476,475,490,448,449,466,494,453,460,440,444,477,448,478,490,466,486,454,468,468,469,453,447,492,495,461,452,471,468,467,480,457,454,465,463,497,468,488,459,480,484,453,463,450,517,484,470,444,450,414,389,428,435,424,434,422,425,426,434,425,390,436,402,393,408,437,410,396,423,393,433,434,397,441,403,429,411,450,411,406,421,416,418,420,395,369,419,413,434,382,389,409,403,383,342,343,393,408,380,411,405,394,391,411,413,375,383,361,389,374,349,383,418,485,452,445,434,456,419,399,446,448,544,418,461,464,463,454,400,400,444,461,408,416,487,420,466,408,454,462,687,696,701,694,677,697,645,677,709,731,690,689,659,663,694,670,714,709,679,714,722,660,706,701,673,671,667,683,705,697,684,688,697,689,595,636,637,632,621,654,597,654,619,611,651,608,660,613,675,642,655,633,699,615,600,634,650,662,625,628,651,672,567,588,556,534,510,514,607,568,582,523,539,510,544,601,512,549,572,540,548,527,576,594,537,604,602,461,446,450,442,430,481,468,483,440,472,458,434,458,480,440,482,443,459,455,492,476,463,456,483,485,469,429,428,440,434,449,457,448,425,439,420,408,443,412,394,390,416,423,401,403,395,417,450,421,419,431,402,437,399,449,409,415,418,416,414,414,461,422,420,441,438,435,437,431,429,432,425,406,445,436,425,425,438,420,426,415,439,425,428,429,432,431,427,461,423,435,443,426,417,427,435,419,449,427,437,423,436,427,440,431,428,426,417,425,414,407,421,415,434,439,441,415,419,417,412,418,446,423,409,422,429,417,420,438,423,432,441,411,440,432,430,435,414,417,446,425,405,438,426,442,425,423,440,419,434,433,409,437,407,448,423,416,423,430,413,375,409,396,388,440,386,386,396,417,423,436,416,412,455,446,453,458,597,582,567,553,572,594,596,601,573,571,596,602,579,563,576,613,580,560,643,622,575,587,585,603,621,570,567,573,597,601,592,489,531,544,553,552,538,495,514,543,562,519,523,557,551,487,560,503,493,585,538,540,555,546,572,521,512,517,562,448,466,482,479,440,417,472,457,445,457,467,499,459,437,447,483,442,481,433,456,460,433,466,458,456,479,469,443,475,441,470,491,504,521,535,520,495,523,544,511,559,518,542,546,539,513,514,526,558,507,526,575,549,550,508,465,547,470,522,538,484,519,526,675,689,695,677,686,687,696,660,675,706,683,705,698,701,668,745,706,734,714,673,690,690,709,731,699,734,697,663,721,688,676,682,601,583,603,622,596,595,630,638,573,607,611,599,628,582,609,602,572,580,614,605,630,554,608,568,604,613,607,600,494,512,467,525,512,504,470,524,489,507,464,508,492,496,521,495,473,532,498,527,500,518,514,508,540,512,528,515,466,468,520,501,395,411,427,404,435,417,420,419,421,429,426,402,393,420,424,407,426,432,411,411,436,417,406,406,431,396,426,442,439,420,439,467,650,616,611,564,613,587,582,636,620,608,635,610,604,630,606,582,612,579,656,615,605,599,666,644,578,620,611,596,587,603,536,498,487,514,519,519,520,535,532,544,483,515,529,539,522,485,527,518,529,500,566,559,539,510,557,541,558,542,497,543,457,471,458,442,475,430,471,457,446,457,487,470,450,449,445,465,479,445,454,479,452,470,449,468,458,457,468,482,459,446,459,448,458,425,416,418,420,426,429,444,440,461,434,412,439,430,447,416,380,413,372,441,437,423,420,418,403,443,407,436,626,596,580,605,602,577,559,591,626,610,606,618,606,606,640,595,612,631,615,597,575,621,606,587,605,627,622,605,583,626,618,714,647,643,706,662,667,743,675,663,661,702,658,664,635,674,615,636,709,670,625,668,645,665,675,675,603,653,582,610,642,641,612,712,653,652,657,622,517,528,625,567,589,591,575,604,550,557,530,564,533,611,554,596,568,546,611,625,578,605,642,572,614,510,608,643,494,474,432,475,488,484,499,513,434,496,491,528,462,537,502,523,518,483,471,522,493,508,513,461,514,469,497,486,508,443,558,456,484,509,472,402,468,409,456,439,430,421,457,394,417,375,481,432,429,468,438,449,400,464,451,511,458,487,416,381,401,369,447,399,418,476,461,367,414,414,468,433,639,594,588,608,562,627,637,604,647,572,585,602,638,566,623,595,629,652,587,665,578,573,606,630,569,611,592,651,570,573,604,616,671,656,660,613,621,678,649,629,632,635,670,630,655,618,573,672,621,674,594,647,662,655,630,624,612,643,649,647,595,650,677,649,654,523,521,537,515,529,533,512,497,533,527,495,513,546,521,545,555,530,484,530,514,506,518,498,488,553,506,536,556,526,513,501,504,447,457,470,423,414,423,433,450,426,432,453,433,414,409,434,435,443,438,447,462,429,420,416,462,418,428,451,429,418,426,437,509,543,558,547,517,506,525,537,488,474,455,524,514,477,459,520,499,505,500,549,462,530,524,478,495,469,479,500,452,446,454,446,437,431,415,475,451,459,444,466,423,417,448,457,459,435,449,453,461,459,441,476,452,440,470,438,486,432,469,577,555,510,587,589,546,574,541,568,596,520,565,594,552,528,539,560,605,524,602,562,541,565,552,540,566,603,570,642,585,580,574,624,605,619,573,620,615,618,624,595,577,559,575,584,596,620,588,599,622,657,612,642,617,615,632,628,608,621,624,664,609,621,604,621,571,647,597,647,619,615,613,632,592,595,597,604,624,630,611,650,517,518,537,553,497,516,524,517,545,539,531,532,505,513,546,546,492,505,506,509,565,496,557,507,522,504,524,489,430,426,438,424,456,451,449,436,428,403,429,450,435,402,435,443,451,420,456,423,419,455,451,460,455,424,471,443,433,460,464,422,394,466,361,377,361,415,473,410,427,582,454,462,477,437,486,409,415,407,448,384,441,346,501,449,438,479,368,410,653,640,649,674,609,647,656,640,647,644,662,707,630,647,671,624,671,661,660,664,627,630,713,670,681,657,642,650,649,643,659,672,606,622,661,582,654,618,645,594,648,634,623,584,630,597,574,646,618,632,596,616,615,599,570,629,592,590,618,616,522,485,493,532,520,538,562,514,548,500,556,560,536,572,543,549,561,554,550,551,487,509,506,568,536,532,517,519,532,523,518,545,572,589,540,531,573,548,536,593,538,453,551,601,550,528,500,644,586,534,510,537,547,486,498,628,485,483,538,527,488,636,655,637,664,660,613,632,628,654,636,649,666,636,693,641,617,647,673,637,657,598,658,662,646,632,650,616,598,611,662,498,462,447,457,490,507,479,442,429,483,509,463,461,458,465,447,461,463,505,468,479,465,476,480,492,475,472,462,481,511,455,500,476,425,474,456,453,463,448,452,471,468,455,483,428,409,442,447,453,499,492,433,461,449,475,473,490,463,463,470,472,485,495,499,474,480,481,468,490,490,493,508,455,476,451,468,454,466,488,466,494,497,481,494,494,471,498,474,503,450,465,470,427,443,444,431,411,434,434,455,428,460,458,448,421,433,424,443,428,406,424,463,424,418,425,427,430,421,439,416,420,414,469,437,479,443,468,447,429,470,440,446,444,447,441,435,439,425,476,449,478,441,453,471,461,448,434,459,436,485,433,414,391,398,440,410,395,422,417,393,421,401,431,442,456,449,432,408,420,386,425,398,453,433,418,444,420,457,426,426,435,407,400,404,398,532,515,564,575,606,564,549,587,617,527,588,581,547,540,530,600,590,578,558,611,536,633,585,581,573,555,521,561,539,582,570,601,620,565,610,584,619,568,605,602,592,569,595,575,600,616,589,596,613,565,624,602,611,628,580,597,625,577,577,581,651,696,631,658,683,614,701,675,687,646,654,689,668,647,705,696,668,677,663,667,688,655,669,707,637,679,651,696,634,635,639,673,649,668,639,670,650,656,652,664,664,610,640,673,649,678,678,661,630,641,608,686,658,664,611,617,624,589,608,605,603,606,681,651,548,628,645,606,614,646,627,595,655,641,627,543,668,679,545,606,593,702,585,698,610,651,544,473,400,506,436,409,441,533,442,430,440,450,400,388,509,415,418,461,482,469,390,430,504,466,452,413,407,422,386,496,381,427,417,502,415,522,465,387,396,390,444,405,454,406,369,322,418,382,407,485,429,391,512,454,493,463,446,420,497,322,392,482,688,656,672,662,694,671,679,635,689,695,713,677,715,685,711,671,685,668,692,673,693,702,685,717,653,729,681,670,759,650,626,682,643,630,660,679,675,653,686,640,636,674,670,636,620,638,623,674,663,695,674,721,617,594,715,647,665,660,689,653,677,652,579,599,615,578,559,568,607,530,576,547,524,548,580,511,597,581,570,543,570,616,574,575,573,582,586,435,423,436,441,386,452,420,423,424,435,441,431,455,411,457,408,406,426,390,421,411,437,441,401,436,431,377,392,393,424,387,427,408,460,419,430,423,439,462,430,462,483,429,385,384,409,391,398,450,390,484,433,405,372,392,394,415,456,499,528,530,559,487,526,544,516,569,522,543,531,557,492,500,539,508,514,533,563,488,498,516,558,550,536,558,527,543,539,486,509,703,769,730,751,768,703,740,765,757,724,731,724,724,745,674,720,793,769,719,696,729,730,717,735,726,749,728,729,753,718,726,711,698,709,696,687,660,721,674,724,692,710,663,707,706,681,680,686,694,698,756,719,679,767,709,689,710,687,625,637,649,631,652,605,678,626,629,601,627,621,605,622,660,671,620,636,631,558,639,643,625,563,610,588,611,615,622,421,453,493,392,475,479,469,498,480,411,461,469,468,458,481,474,508,468,470,498,406,479,475,484,497,443,484,481,472,485,473,510,451,476,396,393,386,387,420,421,376,380,409,391,400,393,389,392,382,404,355,369,368,388,357,410,429,356,401,391,395,386,383,387,410,397,386,374,363,384,371,366,376,370,385,401,385,378,355,419,360,396,382,364,360,350,367,387,376,378,393,384,394,393,426,461,422,443,408,450,451,436,423,455,401,437,436,452,421,418,419,448,439,425,445,410,449,425,429,421,458,442,442,440,426,482,475,463,476,473,447,494,483,459,480,443,485,451,466,476,466,464,459,482,492,438,450,476,491,470,504,494,469,464,458,503,454,434,425,429,438,404,449,426,410,452,437,433,452,438,465,445,442,440,433,464,462,443,461,453,445,420,429,418,440,443,457,567,506,534,541,524,498,495,567,514,542,559,545,528,530,514,519,598,579,566,552,561,521,568,553,560,520,534,547,521,583,569,586,603,564,565,571,550,528,593,589,579,558,573,597,565,562,553,549,586,578,518,604,606,597,548,475,486,507,470,482,478,480,471,479,502,509,496,461,488,474,447,491,477,463,469,471,495,453,492,455,469,495,428,439,418,449,441,422,430,429,443,443,419,439,446,418,423,432,439,454,431,439,425,422,451,453,452,443,454,442,443,452,446,461,468,453,454,467,457,467,479,491,443,469,490,464,478,480,486,475,456,481,471,427,454,501,482,491,472,468,434,489,464,438,474,467,436,453,467,471,474,441,468,449,443,427,478,431,463,439,487,454,415,441,496,488,422,429,481,424,416,397,422,396,397,441,391,424,384,439,414,426,441,429,399,398,412,421,424,409,434,399,408,426,426,429,402,424,424,438,400,400,420,403,380,422,397,452,407,423,411,424,444,426,422,424,437,424,409,401,396,429,440,377,411,442,423,421,450,408,426,405,415,589,583,601,599,564,555,560,566,589,622,609,591,604,588,620,564,573,548,576,582,557,573,611,593,585,555,562,547,591,508,519,533,537,565,514,536,473,552,526,517,542,512,495,521,479,509,528,527,521,532,519,497,453,473,461,461,468,472,466,454,456,453,438,481,438,415,424,461,438,451,462,465,502,454,463,445,449,444,460,436,471,460,436,363,364,380,375,369,363,362,392,352,393,348,362,366,374,405,398,366,359,301,344,391,417,346,356,338,357,363,353,378,350,562,572,597,579,568,577,562,595,561,594,569,597,566,555,559,547,504,543,568,560,529,561,569,577,580,542,532,567,544,600,585,615,676,634,717,630,609,609,622,651,574,656,564,735,642,615,578,558,618,663,646,626,661,606,628,643,663,588,638,601,596,646,596,593,634,663,564,606,604,557,593,568,631,605,635,559,591,528,616,580,555,630,673,568,616,581,594,605,516,499,592,598,616,644,630,503,429,505,510,467,503,498,508,508,526,510,516,504,519,523,528,418,453,435,445,491,480,560,491,443,492,509,400,348,356,369,368,402,386,322,368,377,387,349,381,350,387,399,358,364,308,393,376,342,353,370,358,381,373,326,404,331,364,509,579,557,506,510,544,551,533,517,519,518,520,518,543,552,531,537,557,516,512,520,534,518,534,531,556,539,554,571,548,544,437,443,462,459,417,473,456,436,459,416,415,447,433,453,445,451,437,453,440,468,442,438,430,447,417,427,466,444,429,447,436,412,460,465,439,460,484,545,488,438,475,521,458,467,439,475,450,448,449,457,483,491,473,488,471,500,478,461,499,507,472,458,510,469,496,494,486,490,464,527,453,447,448,526,497,521,507,499,461,476,501,483,504,469,502,533,493,414,476,476,491,490,475,544,440,488,444,471,452,489,439,459,456,439,415,469,433,439,469,403,482,461,472,459,418,429,470,456,454,453,429,441,469,450,456,439,404,463,457,453,467,470,457,472,445,417,431,398,425,404,411,387,392,417,395,403,425,410,400,427,424,449,378,385,410,420,407,388,423,407,415,410,397,399,390,396,420,335,367,374,382,374,370,361,391,426,392,405,353,355,419,376,385,344,438,335,439,368,367,562,579,628,634,585,593,610,597,608,611,579,609,567,578,614,624,620,574,627,612,613,598,588,589,637,615,580,639,614,607,567,548,567,564,574,576,557,561,570,570,568,577,586,545,571,563,565,559,581,572,553,584,600,548,510,561,557,517,491,517,476,501,512,516,476,458,476,487,486,450,483,490,482,493,507,487,491,513,485,497,492,505,499,504,482,420,423,421,416,412,434,441,413,420,421,403,426,405,430,428,375,461,422,434,401,438,413,442,391,422,422,435,442,435,424,414,370,406,397,416,363,396,382,393,374,416,401,392,389,385,433,395,350,392,365,368,386,412,386,380,402,381,416,412,405,374,372,350,379,367,384,369,352,363,370,366,360,347,351,376,350,365,370,357,342,380,371,330,363,352,345,368,390,358,366,362,372,349,394,398,358,377,366,388,361,377,375,376,377,392,357,381,337,384,359,393,378,359,357,351,384,366,343,374,378,357,337,360,414,436,432,402,448,397,445,432,441,453,425,398,427,418,422,443,422,433,431,408,420,441,428,422,425,426,456,410,413,419,403,409,400,392,407,400,400,391,404,411,400,418,400,408,417,396,418,417,400,407,414,411,413,418,416,419,410,418,421,430,425,419,445,404,460,438,412,416,441,431,409,417,412,445,446,422,434,426,446,446,419,438,407,378,411,415,381,399,399,396,398,370,397,387,407,390,378,403,368,374,403,336,380,375,355,373,406,379,392,395,376,373,389,406,337,534,552,560,566,573,580,558,601,558,518,577,582,562,527,505,616,622,611,639,564,603,551,545,547,542,526,564,492,520,543,560,519,548,516,529,559,520,519,502,538,578,506,588,527,532,496,500,565,540,557,572,490,496,493,517,460,476,451,469,455,450,449,472,451,468,449,445,469,461,471,447,458,459,461,456,462,468,449,464,471,470,457,458,410,456,414,446,411,434,423,408,433,403,430,442,436,447,437,440,460,449,430,453,437,404,429,425,427,422,442,406,417,433,423,421,426,402,429,445,417,567,522,535,564,556,555,511,493,521,611,537,595,562,539,585,502,589,520,521,536,551,522,557,555,576,543,511,572,564,488,528,549,510,422,431,437,426,413,452,442,464,439,434,442,417,460,457,449,432,439,434,428,424,414,428,442,437,406,426,440,451,452,406,434,401,481,432,496,431,462,425,410,463,409,459,459,487,456,454,369,468,457,446,424,461,470,459,482,479,427,453,450,440,427,435,512,543,558,531,554,530,537,549,534,520,517,501,502,508,516,537,540,513,525,504,534,516,518,535,549,528,546,509,529,540,589,633,651,578,593,602,626,591,622,584,599,608,608,602,599,633,611,646,621,604,611,593,579,583,626,574,584,594,590,555,541,547,566,532,549,540,549,536,550,530,543,521,531,516,535,528,533,507,572,541,538,523,518,519,540,533,513,553,542,551,442,442,477,467,470,467,491,448,471,462,441,447,464,438,463,471,452,501,444,438,446,478,436,485,443,451,464,371,371,379,394,376,357,378,379,390,377,386,370,366,352,391,390,379,360,366,395,349,377,395,386,398,423,394,377,417,478,466,456,463,446,431,451,466,437,460,482,474,456,486,462,437,481,459,447,477,438,458,455,491,455,459,466,453,473,519,544,522,530,452,501,528,506,523,486,567,548,512,529,554,537,526,483,505,516,453,509,541,486,469,520,532,462,477,489,531,508,545,560,519,499,629,642,650,586,579,608,592,592,641,629,614,620,624,640,637,627,621,638,586,629,627,620,629,595,592,591,603,611,586,595,569,523,523,546,529,513,529,515,532,533,533,568,504,507,567,559,543,557,485,564,521,513,544,593,553,529,529,471,467,489,454,452,463,487,445,442,470,451,494,508,485,457,484,498,452,450,472,509,483,454,446,491,460,451,458,362,368,380,365,367,369,351,384,383,369,386,357,383,374,355,374,390,353,381,372,374,364,373,375,369,388,382,361,374,366,388,390,374,402,419,429,386,434,392,397,422,395,401,415,392,416,412,402,381,383,398,403,395,413,408,402,418,394,420,432,406,424,434,383,404,370,425,403,423,376,439,398,378,356,388,404,374,376,400,400,387,415,374,391,380,384,382,379,387,401,360,368,439,455,419,422,431,380,493,431,447,442,491,446,449,412,461,481,419,490,473,458,450,408,503,503,493,454,465,476,465,474,458,451,522,428,670,650,691,682,654,684,670,661,656,645,701,655,695,672,710,714,677,690,674,688,684,654,691,686,660,695,678,676,603,650,697,667,659,626,644,674,641,651,608,665,655,634,633,599,691,658,610,630,652,611,675,608,611,693,618,651,644,651,518,502,555,583,560,532,520,515,557,563,535,561,552,501,580,541,549,548,528,550,558,558,586,593,536,530,550,545,519,440,449,458,451,460,488,415,457,457,457,457,466,454,450,464,469,440,445,416,459,440,428,417,418,425,431,424,420,406,428,416,418,455,413,426,412,409,419,416,433,422,417,406,425,429,418,419,419,408,407,411,426,411,446,407,421,444,423,440,413,443,426,439,426,432,402,436,434,438,446,427,431,442,428,415,422,448,445,414,447,428,437,391,429,428,431,421,434,419,415,405,422,373,403,428,408,417,419,421,409,389,412,440,446,387,422,380,432,429,412,420,414,426,409,420,423,424,416,441,444,444,449,439,436,427,448,427,438,428,430,432,429,439,430,444,439,441,428,431,453,441,446,448,459,423,438,402,436,432,431,422,448,417,438,435,429,423,442,427,433,417,423,426,432,429,430,434,442,426,427,453,424,410,419,424,403,422,464,456,413,423,451,443,436,422,420,437,446,420,417,432,431,421,447,425,451,424,429,425,425,450,442,431,432,436,433,433,433,436,424,428,401,382,406,433,426,410,418,401,379,391,410,441,385,423,381,403,448,403,418,388,410,423,434,418,411,430,372,433,415,445,392,373,397,388,427,465,407,424,400,422,463,450,435,457,464,460,469,438,486,377,457,424,438,496,458,444,454,409,470,433,465,505,470,632,622,637,667,638,662,636,673,666,649,641,643,644,636,641,613,686,642,700,653,640,663,658,636,668,641,635,641,621,614,633,625,638,576,604,612,592,612,621,639,626,648,596,606,599,634,626,565,616,648,647,617,624,605,625,622,757,696,689,694,703,763,725,707,726,726,723,718,739,697,725,704,768,722,702,754,726,707,658,691,703,726,694,731,679,737,674,729,685,636,667,669,671,653,633,667,714,646,665,722,718,723,696,648,681,707,635,629,669,667,663,681,664,712,651,748,675,673,689,592,571,582,580,519,548,578,592,611,555,572,609,583,591,614,567,598,571,583,632,591,605,589,570,544,573,569,561,562,564,567,399,436,449,430,467,418,444,448,433,454,437,448,414,446,440,463,466,459,451,455,453,438,445,437,418,445,438,404,416,403,410,396,440,400,402,417,399,400,415,415,416,441,393,402,403,418,406,432,432,407,404,428,437,428,425,411,411,405,427,443,409,395,405,434,439,417,429,394,415,438,416,408,428,411,389,410,433,420,433,414,425,421,402,439,395,406,412,438,508,592,520,485,496,572,508,568,558,531,504,596,459,533,514,501,551,476,500,518,566,523,610,496,552,549,546,523,553,508,475,604,544,538,565,585,605,589,581,551,587,594,599,561,539,579,560,605,579,570,538,569,544,553,556,575,572,562,575,610,549,546,554,628,443,457,448,463,441,441,447,457,445,461,446,428,432,466,470,470,451,459,433,462,433,411,450,453,434,436,489,488,455,492,436,457,471,437,471,479,474,425,466,468,415,479,482,482,447,481,455,477,449,484,457,453,489,495,446,427,452,472,484,507,482,496,493,511,499,511,485,512,492,501,502,504,484,507,500,508,443,494,502,486,517,483,430,431,462,480,427,439,451,443,396,464,439,434,434,416,435,433,412,419,432,448,433,430,422,463,466,452,432,423,421,436,613,569,557,560,554,610,577,564,589,575,566,569,568,564,581,598,539,582,577,590,579,609,597,569,571,551,584,569,539,596,607,564,503,460,464,467,442,457,445,490,472,543,418,447,500,469,467,428,477,450,428,499,432,512,532,458,435,559,517,512,537,595,485,595,573,510,609,540,632,590,599,531,556,562,615,599,581,636,607,560,586,590,543,567,578,573,482,563,621,582,583,572,580,609,582,620,524,615,559,586,608,615,638,701,635,606,637,591,576,617,570,641,633,630,580,593,515,483,563,583,528,550,567,589,523,560,555,564,564,541,542,507,516,509,563,556,600,537,557,540,548,587,493,520,518,619,706,737,704,689,659,694,694,671,665,682,666,683,712,722,716,712,695,701,733,734,681,684,709,715,700,687,697,635,624,634,680,675,673,622,640,674,637,642,665,659,663,684,645,652,625,656,678,621,635,680,665,662,689,631,690,605,584,611,585,545,603,617,607,602,586,634,588,588,621,589,617,571,571,578,590,592,551,582,602,598,593,586,590,593,560,611,573,608,564,594,573,562,585,551,509,560,579,562,558,601,539,563,552,598,562,537,588,588,565,573,551,573,556,580,593,565,636,558,614,714,702,719,676,678,693,686,704,662,695,732,685,685,654,709,728,715,691,731,693,708,690,704,696,718,701,669,652,693,725,693,653,616,625,641,672,646,686,694,682,731,701,652,676,659,686,661,646,696,637,658,637,662,673,656,637,682,669,669,648,656,660,662,661,649,569,576,587,598,591,575,581,591,553,585,584,594,576,590,575,596,545,601,573,574,573,584,583,587,590,575,605,608,564,586,568,473,468,509,489,429,496,498,499,538,479,492,497,499,492,483,528,471,501,477,469,475,472,476,494,449,488,455,451,492,457,480,479,469,436,460,417,462,479,447,432,460,482,504,428,412,421,429,460,420,469,465,440,462,632,606,599,622,632,634,629,635,567,643,618,637,618,615,626,597,598,634,618,629,623,607,631,627,635,630,624,640,617,599,632,617,581,585,642,594,577,598,558,588,563,578,586,602,578,567,583,606,598,513,566,592,567,549,563,580,601,576,538,573,577,568,591,596,517,530,549,520,523,539,530,562,536,533,528,531,528,528,505,546,498,555,523,498,506,533,498,514,491,527,515,527,521,534,555,457,467,441,458,453,454,415,460,474,452,464,440,490,463,475,472,443,458,467,477,454,458,482,445,442,456,460,458,461,453,466,460,527,518,534,531,533,538,539,448,523,549,534,533,580,549,530,507,540,498,500,571,517,549,577,508,532,521,535,529,526,599,610,601,560,563,583,572,601,597,626,593,583,565,530,618,585,594,565,596,540,567,575,606,582,568,570,574,584,608,580,490,517,546,506,534,513,514,506,496,466,497,515,511,516,529,504,518,517,501,528,472,499,461,514,493,538,497,504,490,528,460,481,476,478,460,488,476,481,452,466,479,458,462,470,471,483,492,473,469,469,454,481,463,460,448,472,454,459,457,469,449,460,485,434,404,414,399,414,408,416,437,414,417,418,394,431,416,411,405,426,403,403,432,407,419,427,380,405,422,416,405,394,388,404,397,414,383,352,373,393,405,451,383,395,418,401,392,389,407,423,387,411,389,402,391,418,368,358,384,398,423,392,385,398,396,404,417,375,429,465,455,463,441,446,466,463,469,462,432,435,447,448,452,462,463,452,456,434,463,464,464,452,457,452,454,447,461,494,518,487,526,462,522,508,507,546,507,509,499,493,501,575,511,554,484,504,540,505,504,509,486,506,551,484,510,499,464,490,497,497,466,435,473,475,472,477,476,426,432,468,477,491,497,472,471,468,464,477,518,471,458,440,434,491,453,435,460,468,474,456,441,433,453,476,468,455,415,470,456,454,446,444,450,438,449,433,450,407,437,565,585,546,563,599,565,562,568,559,561,583,577,580,557,562,569,599,565,570,574,549,560,549,571,576,570,581,538,558,544,545,593,465,457,469,482,468,463,469,488,443,444,442,482,463,455,472,474,478,458,445,479,461,434,464,452,488,476,462,465,442,444,478,458,467,444,421,448,454,484,465,404,479,417,435,470,463,425,428,449,467,425,466,428,439,449,457,454,542,554,584,579,541,554,548,536,551,539,558,564,543,542,537,518,584,545,515,538,531,518,593,533,536,543,572,535,529,476,506,453,469,465,465,479,463,471,457,476,484,478,484,481,483,441,472,461,452,502,487,485,438,479,473,484,418,426,410,468,458,438,421,425,436,441,442,440,410,433,457,402,438,411,432,448,453,410,442,453,440,422,410,427,435,437,435,437,408,438,433,463,485,464,489,456,499,453,487,454,479,506,474,484,497,476,481,469,446,474,456,492,466,471,481,498,515,474,491,456,498,457,449,435,452,469,447,441,442,445,455,435,450,452,420,449,458,433,440,477,437,454,438,446,443,445,443,457,460,446,444,462,396,442,399,411,450,416,398,441,417,406,399,434,401,414,413,408,431,412,424,419,405,421,438,403,426,429,414,419,443,477,500,496,486,482,502,505,511,514,497,494,486,515,521,486,485,485,510,505,492,493,497,506,506,515,469,521,491,476,501,506,466,432,457,425,422,446,457,434,436,447,421,447,442,421,446,433,416,444,436,418,425,420,433,440,420,441,443,451,409,415,407,424,421,427,451,498,509,494,526,496,484,505,504,488,487,487,397,520,507,457,470,488,416,452,442,434,471,472,474,469,442,649,605,644,621,638,668,616,629,610,606,636,612,608,640,600,612,622,653,632,616,634,667,638,568,607,652,580,653,612,644,589,625,634,545,504,534,469,480,473,518,512,511,461,492,524,505,462,496,440,495,483,506,510,504,460,520,508,467,494,545,578,537,500,591,578,522,534,527,558,565,505,473,535,592,554,517,525,529,553,552,535,508,541,526,526,532,542,535,505,563,449,469,478,479,463,496,406,486,471,460,465,480,464,467,459,463,448,460,430,464,439,462,429,448,481,449,468,437,474,435,457,457,486,436,519,565,580,523,499,534,563,542,541,532,547,535,517,522,464,532,628,545,473,656,482,586,618,573,580,579,556,574,579,564,618,635,626,606,658,666,672,616,683,633,631,615,605,638,622,643,643,664,638,646,637,588,715,664,661,669,651,654,659,648,653,660,661,622,605,615,561,596,617,620,598,614,646,618,609,587,649,644,581,615,690,609,627,639,622,566,698,620,614,651,560,597,671,619,597,525,618,617,666,599,607,582,608,562,561,560,563,606,558,581,585,600,623,580,584,615,577,564,623,641,618,541,606,616,553,519,642,443,500,465,422,443,454,471,446,441,419,452,450,446,433,467,456,448,460,465,447,445,453,448,446,456,443,431,417,444,394,354,396,391,393,366,377,367,399,402,381,401,377,371,403,403,396,404,384,409,373,404,380,385,387,412,382,376,385,396,404,374,416,413,420,443,418,460,396,432,396,476,438,432,426,409,434,427,445,422,412,439,437,469,388,406,464,383,380,413,441,355,423,379,360,386,304,400,343,442,365,386,336,376,368,379,385,436,432,375,404,415,360,356,434,390,323,438,434,490,492,376,387,434,370,404,380,381,626,623,653,617,620,601,623,623,612,630,651,658,609,588,606,627,624,627,619,669,622,630,636,636,628,634,636,629,651,596,557,532,541,535,535,559,520,584,567,560,583,560,515,572,566,560,553,555,565,571,573,544,540,522,585,549,573,550,536,525,478,499,498,524,473,502,500,464,493,513,507,507,470,470,501,526,515,520,493,533,525,492,537,580,587,553,591,543,596,482,543,500,531,546,524,547,546,601,506,572,516,526,557,550,549,551,587,498,564,555,495,498,512,503,504,483,493,471,513,488,469,467,499,501,486,478,511,481,477,505,493,470,490,479,454,498,507,488,486,518,480,440,433,429,423,443,440,435,452,465,468,456,417,484,455,462,466,449,436,477,465,459,429,423,493,475,435,424,413,410,373,448,423,424,394,415,400,425,424,391,433,420,421,404,411,427,432,436,417,403,422,423,430,428,401,412,425,424,411,401,417,371,425,385,405,404,420,402,434,383,422,409,422,409,381,417,378,383,388,397,418,417,382,410,411,383,418,546,484,447,536,511,512,543,526,529,550,546,546,468,518,525,521,495,544,512,489,530,513,527,486,591,504,526,712,706,728,678,690,654,677,707,713,736,683,691,702,719,701,679,699,715,730,725,708,717,675,689,671,715,688,730,701,716,698,760,702,679,664,698,707,623,671,707,665,696,694,660,684,698,664,651,663,664,681,652,618,639,680,711,687,642,668,629,681,625,635,576,591,594,563,561,559,628,597,536,584,568,581,553,544,587,660,564,609,559,591,596,573,576,589,583,571,557,576,601,584,582,595,590,617,479,476,475,449,463,464,535,488,483,472,472,495,479,464,473,475,463,459,507,469,480,451,469,499,490,491,526,465,473,456,478,458,466,463,597,598,608,606,625,607,607,611,607,597,590,614,591,607,603,585,614,585,604,607,609,606,615,603,625,604,599,588,622,603,611,584,588,603,612,546,571,603,554,632,587,591,551,578,503,578,577,595,576,599,649,566,614,582,576,523,438,439,449,408,458,462,428,435,465,402,480,429,445,437,435,412,464,456,402,451,453,440,451,432,430,435,439,422,441,426,406,441,440,408,410,399,438,405,399,397,428,401,424,485,433,395,447,395,443,449,374,433,593,669,601,560,588,623,583,634,585,600,564,579,618,574,592,567,537,635,632,573,601,520,586,563,594,624,561,606,646,565,503,507,512,525,512,523,518,512,510,511,527,501,491,516,531,505,489,508,499,520,491,527,522,507,509,528,521,514,543,462,465,458,451,437,480,444,454,458,453,470,443,462,451,443,454,440,462,441,460,471,456,449,445,442,457,457,471,465,459,455,419,563,550,549,562,586,529,590,524,539,554,557,587,524,533,570,537,599,568,543,573,545,523,555,587,599,547,508,585,544,508,536,620,597,599,616,631,613,631,594,559,562,587,606,590,597,621,624,590,627,598,602,614,608,608,606,639,625,618,614,622,624,578,548,584,590,585,607,569,540,565,583,562,610,599,575,607,579,599,558,611,572,560,599,579,554,571,610,548,594,532,577,561,594,469,455,523,479,457,457,459,461,415,460,471,427,456,473,456,466,485,453,475,465,424,446,487,500,466,510,501,447,518,509,556,475,492,502,435,451,450,477,488,528,492,504,524,504,535,481,532,481,460,454,508,483,458,441,475,485,465,471,460,492,460,464,441,463,460,466,494,450,473,443,458,465,484,461,487,470,489,456,475,440,481,449,478,474,471,476,474,457,480,464,482,470,481,474,497,463,482,461,483,496,486,471,473,459,474,420,440,441,482,427,445,459,439,447,433,464,459,442,471,408,417,472,443,468,448,469,437,433,442,443,415,446,454,457,462,450,500,445,491,464,495,460,505,483,488,463,495,455,466,463,490,480,489,463,473,484,472,500,488,447,529,465,469,486,486,495,532,519,521,518,476,514,511,512,475,533,495,541,470,513,499,498,521,547,502,517,508,499,445,484,520,492,524,464,454,444,486,460,443,466,486,490,445,424,461,450,469,447,474,465,463,460,481,478,460,485,455,455,470,472,477,471,478,478,482,474,454,522,578,540,516,564,526,569,548,568,598,604,535,537,551,540,551,551,538,509,540,525,565,525,555,540,492,543,507,566,505,558,585,514,560,597,596,607,616,596,625,607,623,607,612,611,614,613,580,602,636,607,621,595,609,613,619,622,613,602,586,604,568,619,577,582,588,592,576,620,548,597,595,592,560,557,568,578,567,540,580,561,556,578,571,578,569,609,603,570,580,598,569,558,601,597,582,594,450,483,445,481,489,466,448,450,443,456,484,461,457,453,448,463,449,442,462,453,464,459,442,462,469,460,487,449,457,454,512,528,547,506,546,506,535,535,529,536,535,545,534,518,551,552,565,577,548,523,521,530,539,538,517,545,553,566,534,523,556,538,451,459,446,462,450,473,494,467,464,461,458,472,468,451,447,439,484,466,442,473,479,442,466,474,427,442,489,437,409,427,457,425,423,414,432,443,438,473,424,409,435,424,455,415,429,438,424,424,419,433,429,416,423,406,413,400,407,435,393,406,409,392,409,417,445,397,428,447,405,427,403,397,412,415,467,429,383,420,441,424,410,424,426,426,392,413,391,437,405,441,450,469,442,453,441,389,445,508,403,385,423,448,439,478,390,426,419,416,483,409,384,455,419,427,388,446,443,441,384,431,689,665,594,694,694,604,636,636,663,674,678,675,583,674,667,679,670,657,696,660,686,656,671,708,675,682,634,717,597,647,706,666,575,744,678,702,602,673,627,598,661,687,599,634,707,688,690,688,580,662,660,750,712,446,500,482,507,487,526,535,485,524,518,488,534,501,485,525,505,484,462,479,482,470,526,525,463,455,470,536,472,486,523,525,473,550,438,450,435,451,464,437,450,442,413,435,430,417,447,432,434,440,455,426,406,424,453,422,425,424,448,425,441,453,434,421,395,375,383,410,391,385,394,403,388,351,369,319,377,395,405,362,414,387,393,394,405,379,384,394,378,381,569,523,487,518,525,558,483,512,497,578,578,523,502,611,617,510,503,469,485,521,517,547,556,518,523,539,509,545,550,497,441,454,475,482,438,470,454,471,474,487,480,442,444,448,456,467,465,464,421,455,460,464,467,453,434,449,464,461,409,423,430,397,410,418,414,423,403,391,434,437,436,451,409,433,439,431,429,412,441,422,426,416,402,575,504,582,534,557,571,552,549,578,578,555,565,623,544,542,543,556,567,489,548,547,537,486,534,575,552,506,552,555,445,434,412,435,453,458,427,454,453,446,443,426,460,431,432,422,447,424,427,441,440,440,448,450,431,419,435,445,413,440,442,429,492,519,532,503,526,590,560,500,518,509,542,495,613,561,571,533,605,567,606,549,572,522,566,559,553,590,527,568,544,489,558,550,505,453,527,490,482,482,509,523,502,506,520,472,478,471,507,474,499,528,491,525,480,469,477,492,485,478,522,497,479,468,440,461,455,424,449,481,436,446,457,457,464,456,471,469,454,447,469,452,452,456,478,468,472,467,473,448,467,474,561,527,545,531,533,491,547,497,511,489,517,565,597,518,551,535,513,540,561,542,541,550,521,529,551,539,583,529,563,492,555,598,589,555,542,556,588,575,557,570,580,555,595,591,559,581,558,581,558,575,557,573,594,539,555,575,584,578,559,561,587,550,578,531,536,559,592,446,472,470,470,472,453,464,494,480,455,459,501,478,465,458,479,453,473,473,466,493,476,444,475,499,488,464,476,489,484,633,637,626,608,619,619,628,616,650,632,623,647,609,604,627,610,611,588,621,618,599,607,607,600,618,608,597,541,568,562,563,583,561,577,557,568,574,625,606,553,548,573,545,578,594,572,577,574,546,552,554,601,543,498,488,491,503,522,499,499,484,505,486,473,499,486,517,492,490,522,499,470,518,500,499,502,510,520,518,490,483,523,505,543,561,534,538,507,551,553,527,546,470,532,534,568,541,546,519,533,523,558,555,554,589,505,537,572,493,534,517,577,498,529,530,500,497,535,587,625,592,583,597,596,602,604,580,590,618,600,619,605,598,607,608,607,609,605,596,619,609,594,578,570,595,615,596,615,597,600,587,590,595,577,612,568,587,595,556,564,576,560,594,564,564,580,603,549,599,602,588,601,571,537,591,579,589,559,586,610,506,486,477,474,503,485,509,517,532,493,476,500,490,493,520,512,533,492,493,461,512,500,490,507,499,455,469,473,468,443,452,448,476,455,460,439,446,471,456,466,449,465,435,465,446,476,472,446,460,473,447,456,456,470,479,450,452,583,549,542,552,570,525,584,577,592,565,573,593,580,567,590,612,566,572,603,590,597,546,543,572,579,531,576,601,596,571,534,497,538,525,497,514,521,493,514,557,519,503,523,518,523,504,523,516,511,515,497,525,534,493,492,500,523,517,529,539,540,529,497,464,472,450,448,442,485,477,487,453,431,474,463,468,453,476,439,462,465,455,439,457,455,474,457,478,455,452,473,461,450,456,472,480,473,452,412,412,394,383,418,401,404,397,416,393,412,417,410,408,411,412,407,390,400,404,418,417,429,399,420,436,425,411,407,414,415,420,409,560,486,565,537,472,582,637,549,577,521,488,536,520,513,583,504,508,585,582,571,558,517,525,554,574,557,559,484,501,509,511,503,470,470,505,462,449,482,474,497,450,503,485,506,477,509,472,473,455,496,477,473,490,490,492,477,487,484,483,484,482,475,486,448,427,422,453,451,421,447,431,470,438,438,441,452,436,436,428,430,409,430,446,452,427,447,416,452,456,434,420,398,409,428,400,402,445,414,392,415,418,400,416,409,409,434,411,423,420,407,425,393,404,406,419,427,433,395,413,414,407,435,422,408,424,412,415,394,393,421,421,435,401,427,419,394,420,413,416,423,414,425,413,415,396,416,408,391,427,407,414,480,466,474,502,462,421,444,506,470,432,499,453,493,489,474,428,451,469,401,441,469,442,448,462,403,448,441,461,417,477,457,515,637,634,650,678,671,672,630,667,630,639,638,619,665,598,655,668,629,635,615,600,609,657,606,657,640,676,651,680,620,636,656,574,574,589,596,591,588,602,571,569,595,575,592,575,565,589,553,545,566,603,599,591,582,572,578,594,603,594,574,571,593,582,584,548,598,560,566,509,578,540,606,516,561,544,578,530,575,593,556,587,573,572,564,557,542,595,556,581,550,519,562,672,663,661,656,599,646,609,608,611,663,661,615,627,631,628,596,636,638,625,654,622,600,629,657,612,609,611,539,556,517,576,531,587,569,545,572,566,518,525,611,538,540,554,546,552,522,573,590,578,566,545,566,583,563,587,560,549,556,493,499,526,491,487,493,493,513,482,507,503,519,477,475,478,498,459,512,480,472,486,492,511,478,499,488,457,533,511,547,478,463,450,393,438,440,441,456,461,419,416,411,447,420,459,484,433,448,406,474,457,434,451,433,391,463,429,429,453,441,469,469,467,467,469,475,437,495,479,444,420,445,450,453,480,455,449,475,465,413,459,430,446,496,470,486,486,448,484,501,489,472,518,474,503,473,500,531,476,512,474,485,478,499,502,502,474,511,533,472,512,524,489,481,498,532,550,536,537,551,526,537,543,520,548,529,575,517,531,538,543,552,547,535,527,512,504,503,515,527,534,543,528,537,557,480,482,491,497,448,512,484,493,460,498,460,474,476,482,478,467,473,476,460,452,460,477,499,482,485,497,488,466,469,478,469,436,469,460,448,448,446,457,492,467,464,440,469,448,443,470,425,441,459,411,481,447,450,474,435,395,458,475,453,405,400,399,397,411,412,409,429,390,405,388,420,409,442,391,407,413,396,409,430,394,406,392,398,429,410,407,400,396,403,426,389,561,587,581,599,565,584,584,605,594,584,563,595,586,549,577,569,546,573,595,583,535,569,594,588,617,601,534,462,484,452,470,461,495,455,468,455,502,512,493,447,487,464,458,476,449,457,521,466,454,474,485,449,432,464,491,486,438,492,433,482,441,452,410,469,508,527,505,522,473,455,432,482,408,493,483,460,549,429,476,458,474,484,466,456,451,466,497,493,452,475,536,426,419,578,618,570,602,562,588,584,547,618,598,613,583,574,610,610,556,591,595,564,604,587,589,558,583,603,565,565,725,707,748,715,705,705,722,743,715,746,700,727,705,704,691,727,691,737,694,687,711,704,726,693,730,687,741,699,702,676,699,637,722,694,659,717,733,663,743,663,690,690,740,663,674,683,679,687,711,698,689,682,691,687,678,680,707,728,715,719,732,561,518,547,615,662,598,611,583,578,551,510,550,596,550,589,603,615,631,621,575,591,611,644,396,376,397,416,431,360,404,382,343,363,444,393,363,374,393,370,413,441,386,427,359,369,399,362,391,393,383,415,375,358,579,552,592,522,589,500,600,528,546,568,569,558,562,529,584,557,543,582,565,605,568,531,528,542,511,541,555,569,605,572,562,575,593,599,587,585,684,616,596,600,596,622,616,636,636,669,601,701,562,609,666,691,648,568,642,610,661,604,589,626,578,589,642,548,654,626,575,613,604,554,590,580,548,604,555,555,561,524,534,633,590,590,520,567,646,587,558,590,566,602,575,564,546,570,543,380,541,586,490,511,446,568,527,556,589,499,569,583,545,463,608,552,659,554,547,544,543,584,643,406,402,418,390,404,422,399,382,410,431,398,432,416,425,427,428,382,396,426,420,413,415,406,421,413,395,412,400,393,404,396,448,403,404,422,509,441,412,461,537,435,453,547,449,606,469,419,543,448,332,527,497,434,494,398,410,498,501,511,519,497,455,415,694,708,710,705,748,729,732,726,752,720,738,733,696,734,705,733,742,716,712,703,717,723,674,709,773,678,671,690,699,698,732,695,749,710,715,790,716,692,693,724,723,671,745,699,711,723,645,738,739,675,751,722,738,637,733,550,572,650,632,687,603,600,646,596,609,622,604,632,578,595,609,631,620,665,583,612,644,660,554,580,602,630,577,690,607,538,677,414,380,369,417,388,432,426,416,398,439,449,413,409,344,401,427,424,426,374,421,460,406,330,384,408,430,359,404,352,379,356,365,353,325,367,374,333,371,354,359,328,334,362,344,370,368,362,380,367,335,317,390,352,361,386,345,357,380,442,413,405,384,450,377,424,436,389,498,386,413,442,437,442,408,409,424,406,472,407,448,421,406,444,289,420,434,492,424,353,420,450,394,350,435,438,392,415,402,389,427,400,377,296,410,416,497,321,340,305,400,670,712,724,708,711,679,727,701,744,775,737,737,710,672,714,744,698,660,722,679,681,685,752,701,729,703,707,760,720,728,675,657,609,620,674,626,682,673,674,683,666,609,714,695,624,684,677,680,673,682,653,646,658,663,682,693,659,640,652,663,674,662,655,645,599,557,583,558,560,573,590,567,579,582,625,587,579,620,586,556,577,613,554,572,595,580,588,588,584,505,511,515,511,518,530,508,521,503,500,522,512,511,529,536,525,487,535,518,529,531,533,537,509,501,515,488,488,457,476,464,483,494,442,447,450,473,474,472,440,478,436,435,463,491,460,467,462,453,482,461,435,464,448,440,469,491,470,464,464,499,466,453,423,440,429,436,444,415,480,425,437,472,476,456,436,462,464,426,432,414,410,429,461,465,427,481,426,433,428,490,473,504,509,459,519,516,507,519,510,530,520,514,532,528,501,465,507,515,495,542,525,488,490,525,518,491,518,512,484,565,549,555,519,533,497,556,525,548,565,560,546,500,556,565,565,555,534,547,532,535,527,572,543,520,525,577,533,544,571,577,523,684,716,684,695,732,655,667,662,690,658,693,683,714,705,679,686,682,686,723,661,677,702,654,674,706,662,647,686,640,667,633,685,670,662,681,697,671,660,660,675,671,660,631,641,664,671,629,698,682,650,628,682,688,634,636,619,627,640,649,617,647,626,621,629,646,615,607,594,639,629,647,638,596,626,632,635,639,610,609,624,647,648,635,621,636,612,653,628,656,639,633,640,649,644,636,650,633,624,638,589,557,626,651,626,620,638,606,625,590,654,657,611,616,613,655,609,631,572,627,553,583,578,536,550,567,544,549,547,559,545,595,548,559,527,535,561,568,541,550,560,563,541,571,561,546,541,571,551,540,447,461,454,463,441,442,449,436,462,437,429,445,424,455,453,412,436,445,463,456,439,452,466,457,446,442,443,439,421,400,430,405,425,429,436,443,393,422,443,436,433,436,435,461,426,451,414,443,403,437,391,425,401,416,398,397,401,415,385,404,396,394,389,435,446,415,416,399,435,424,415,414,439,396,420,376,405,376,426,414,433,399,395,410,365,416,474,628,581,588,564,588,571,571,580,598,593,563,618,568,577,575,581,601,585,639,570,562,585,535,611,594,587,616,607,579,589,584,577,559,532,539,434,478,529,567,562,565,517,485,564,537,566,544,496,538,483,489,555,504,566,546,533,468,562,488,510,496,540,542,514,487,526,513,407,484,444,446,444,450,437,490,481,499,469,463,472,464,505,473,523,455,463,436,490,458,485,702,655,697,643,715,664,693,674,714,671,693,677,678,688,705,736,632,671,687,644,709,674,748,676,668,686,704,645,677,668,693,672,691,709,691,662,645,721,625,692,680,672,669,675,660,660,690,697,679,622,687,630,633,681,678,641,671,650,643,613,648,637,579,622,586,587,574,635,620,603,625,610,601,601,611,630,575,606,620,587,641,613,604,586,610,619,624,613,626,588,599,593,606,599,626,611,601,606,613,602,600,616,607,587,527,498,471,502,518,493,499,535,488,530,489,437,484,489,479,515,500,504,481,512,467,471,463,503,447,442,444,421,445,411,478,479,457,459,438,445,438,466,416,426,446,452,420,416,420,419,438,427,449,456,603,618,635,603,596,629,662,641,644,628,607,633,642,669,617,604,664,668,647,641,638,666,606,633,629,677,616,661,622,630,608,614,629,594,623,578,614,632,630,629,611,619,575,656,651,632,614,623,628,636,642,641,608,611,668,652,620,601,669,602,630,657,589,603,656,567,595,540,631,611,638,609,604,669,663,634,615,599,600,603,625,598,573,579,645,580,586,592,594,620,534,521,492,508,528,472,564,526,515,531,508,527,507,517,514,512,494,537,530,500,515,550,498,526,577,497,479,516,415,427,404,441,404,388,440,420,392,409,443,431,408,439,420,428,357,450,414,409,413,417,409,389,418,425,453,415,416,417,360,340,325,349,319,351,361,339,330,348,345,332,342,359,367,347,357,328,333,348,319,353,325,335,343,354,355,310,331,347,328,348,337,376,342,391,353,348,362,354,363,368,378,363,351,360,351,330,368,349,357,349,361,345,363,392,371,356,356,361,362,373,404,412,350,334,369,361,391,360,370,367,364,359,371,367,386,380,351,354,389,371,372,360,380,366,362,382,389,400,399,448,432,439,415,432,449,427,444,404,436,461,483,418,426,471,440,449,434,409,446,426,419,473,404,501,438,378,433,462,457,486,491,473,478,449,488,480,455,479,472,457,444,462,468,464,467,491,523,491,479,463,469,481,464,453,485,468,462,479,601,596,545,603,594,575,613,602,609,597,599,640,591,555,612,593,623,622,623,598,611,621,554,637,598,520,490,504,519,489,495,509,510,516,540,512,521,494,504,532,490,521,503,522,527,502,494,490,513,506,516,518,524,550,470,499,460,471,479,457,440,472,487,464,473,466,474,478,462,485,464,468,424,487,460,475,473,480,437,443,454,479,495,452,476,407,429,423,434,403,421,416,429,430,421,406,422,431,422,430,424,435,410,412,421,449,406,417,448,421,430,424,406,404,431,424,429,437,424,399,410,416,434,418,416,419,382,420,434,418,424,413,437,431,440,421,399,412,418,398,426,408,399,405,417,404,443,446,435,426,420,450,439,452,407,434,477,410,421,385,421,421,429,455,420,406,407,436,471,473,411,457,464,518,484,488,413,468,508,497,481,462,412,462,454,446,487,485,450,495,543,443,417,538,454,475,498,447,458,505,461,475,522,634,657,644,633,635,644,657,660,580,640,604,586,566,673,671,679,657,642,626,643,663,695,676,666,613,610,595,652,569,642,622,662,576,481,495,456,449,469,477,510,444,490,459,513,491,501,482,512,491,474,464,470,453,512,509,480,495,534,473,475,474,444,455,357,468,448,406,424,385,407,409,461,451,392,459,404,474,455,419,418,433,361,448,451,404,374,389,502,390,382,409,424,650,604,675,653,684,582,684,691,652,645,657,702,648,668,643,657,652,647,678,657,652,613,694,645,679,603,704,602,676,607,634,538,632,561,537,545,561,580,585,563,632,606,578,569,596,595,598,577,549,554,623,560,598,595,572,564,580,519,502,545,488,506,505,503,501,503,519,530,504,485,521,509,500,509,524,513,486,510,508,529,505,526,525,516,524,473,523,510,453,370,456,465,417,433,403,442,407,426,460,427,460,436,455,424,446,435,455,428,477,455,434,453,404,446,412,418,449,388,454,472,445,417,434,457,417,465,450,428,444,422,454,434,452,438,460,425,424,487,434,430,443,437,425,443,470,434,436,432,454,429,495,565,550,520,477,502,548,515,537,510,508,480,528,544,507,534,571,530,549,515,482,490,510,491,503,510,495,522,673,691,737,743,685,637,661,684,702,691,650,709,686,670,700,663,700,627,675,706,686,652,687,699,662,651,559,596,530,603,568,586,606,586,590,583,563,572,579,582,570,598,587,602,573,581,593,566,566,566,575,614,554,620,589,587,592,541,508,517,510,522,482,482,520,482,485,530,534,491,507,521,509,500,519,491,504,503,507,524,503,502,489,495,568,498,519,528,515,490,574,586,563,572,554,563,598,552,554,535,562,591,562,561,556,541,565,554,560,562,554,561,588,583,573,558,564,588,540,550,545,387,419,429,457,391,406,427,431,404,404,438,438,410,461,412,443,424,396,389,412,431,388,397,411,391,401,400,428,534,353,426,419,417,394,386,355,486,418,451,402,379,336,451,405,460,374,448,455,395,432,384,425,378,422,434,722,713,715,690,672,710,679,711,686,717,649,731,720,696,655,708,674,682,716,651,653,653,660,723,629,680,709,715,696,673,729,671,686,683,636,652,659,656,633,634,646,675,647,643,671,674,646,663,626,692,652,637,670,626,664,625,702,683,677,609,652,683,630,644,657,578,597,589,591,579,574,605,579,565,584,550,562,569,564,582,607,594,576,565,604,607,569,646,584,579,619,600,596,608,592,487,505,464,475,542,463,471,533,482,513,470,485,508,456,506,441,500,484,521,474,497,481,481,536,459,478,449,456,488,664,612,622,665,656,605,648,661,640,679,643,652,633,612,678,645,656,651,648,645,659,662,645,653,662,648,617,604,646,655,660,574,576,580,563,578,585,588,567,628,591,581,588,619,617,604,604,591,569,568,600,605,590,642,564,600,593,566,629,562,549,624,593,598,703,666,738,687,645,695,658,721,687,649,729,706,712,691,680,685,709,704,704,680,679,674,664,675,715,673,689,653,712,670,680,625,630,694,671,629,657,658,620,658,634,653,668,651,659,631,656,678,646,651,641,647,704,650,669,640,658,650,678,657,611,588,589,601,641,606,631,617,635,610,645,605,599,618,608,637,627,632,644,647,601,578,663,661,600,645,673,607,586,592,631,631,634,634,617,617,623,619,640,646,648,589,641,619,586,645,613,586,605,643,626,618,660,618,616,640,666,607,614,588,629,641,667,691,662,562,599,658,555,543,540,530,554,574,534,558,549,555,586,565,554,570,594,557,508,564,516,539,552,567,543,542,443,452,433,439,452,435,409,427,400,466,440,450,431,483,465,437,453,406,437,446,429,447,433,433,415,438,450,450,468,421,413,437,434,424,442,617,622,706,598,597,582,580,643,553,624,589,608,587,620,576,598,624,573,619,522,631,640,601,675,620,618,649,656,596,600,607,657,606,618,639,612,626,630,595,667,652,632,664,635,651,595,653,603,621,652,539,534,515,561,531,554,549,535,535,537,542,532,519,538,563,543,557,516,531,557,515,523,544,537,531,531,547,537,564,532,560,543,533,439,465,470,462,496,448,448,466,478,473,453,485,444,476,464,450,503,439,470,485,465,480,461,470,472,448,417,465,610,615,561,615,530,581,607,576,576,568,584,646,615,553,631,548,577,609,609,634,590,566,672,590,575,566,555,596,568,601,570,577,565,582,528,576,551,522,522,563,566,562,549,545,565,582,587,543,563,558,582,575,571,571,537,549,464,430,498,477,470,443,423,472,478,441,424,461,449,486,464,480,477,463,473,480,487,420,465,478,454,467,489,459,453,479,468,372,368,390,383,383,384,388,362,370,401,391,381,401,403,368,392,360,393,403,362,395,378,378,390,391,373,371,355,391,389,367,399,401,395,398,379,411,376,361,391,360,379,379,407,384,398,393,411,397,366,353,408,379,383,409,400,389,386,374,396,361,393,380,392,420,411,462,413,412,400,435,424,426,383,425,399,428,416,380,357,428,443,381,427,430,417,435,355,433,423,449,455,414,430,419,431,549,524,516,560,575,562,532,501,562,522,490,543,575,492,508,526,544,521,558,514,549,538,524,545,457,432,433,476,472,435,463,459,461,464,445,452,470,443,499,451,495,429,462,444,451,433,438,462,465,475,462,467,458,467,460,430,435,464,458,446,501,472,537,554,524,508,587,488,557,482,513,549,552,553,499,518,491,547,525,536,533,488,551,537,533,489,512,515,529,464,513,557,513,542,543,415,465,444,474,437,452,433,453,431,439,468,450,436,452,430,460,446,451,461,430,437,452,428,467,436,452,459,472,461,468,394,409,432,447,394,452,410,412,427,392,398,426,405,406,456,412,415,419,407,424,435,446,411,405,420,439,439,458,411,394,440,470,413,438,486,462,467,458,425,441,417,477,427,460,437,411,415,389,457,423,442,465,459,606,626,595,607,658,622,627,624,615,647,598,615,615,606,632,595,651,641,651,618,574,637,624,627,603,602,597,637,622,639,656,646,613,565,530,579,570,555,603,563,574,558,579,580,604,599,552,599,533,579,562,568,595,583,570,614,606,582,571,572,476,473,500,485,507,495,471,478,479,485,490,470,530,537,479,476,497,513,483,503,468,515,514,506,505,489,506,486,507,487,498,485,608,632,626,592,644,642,612,634,625,638,619,607,626,584,651,574,607,573,640,633,640,602,590,617,619,596,615,586,563,590,652,623,589,635,606,583,650,620,634,542,550,517,532,522,564,485,517,581,554,536,502,558,570,548,533,514,547,509,597,516,544,576,550,557,529,557,520,488,590,567,498,524,554,564,533,615,531,600,581,514,530,545,552,531,481,534,576,546,516,509,513,550,506,525,622,623,527,699,695,665,677,712,681,665,664,664,663,672,680,673,701,687,684,674,712,673,698,722,676,681,685,692,656,676,644,661,709,708,689,681,649,653,691,697,637,648,617,686,656,606,621,698,607,629,722,651,649,631,684,663,647,649,622,634,666,645,633,648,663,634,707,579,537,575,578,547,567,551,567,523,570,567,537,553,558,581,559,543,558,582,551,583,571,544,574,587,547,572,575,565,530,555,533,529,564,528,561,534,547,530,520,528,544,511,532,513,547,536,531,552,571,551,530,529,546,581,490,598,564,572,591,602,618,567,549,548,591,600,514,560,537,540,553,627,613,542,554,558,555,515,560,593,579,551,453,464,458,443,442,463,445,447,447,445,448,453,446,437,430,439,443,465,434,454,457,460,460,459,448,463,455,459,424,444,445,451,456,435,445,467,487,467,462,458,440,457,458,454,471,407,460,471,457,453,493,471,471,438,437,448,466,471,454,491,497,458,406,418,419,453,403,417,435,423,433,432,422,423,429,421,421,437,421,444,416,422,428,438,423,435,433,421,430,441,418,443,435,440,415,454,426,450,422,466,448,440,452,436,435,415,440,450,426,465,426,432,448,426,450,433,420,458,407,429,418,391,392,416,367,356,392,447,405,374,405,413,380,379,419,408,374,387,387,379,377,437,374,389,410,391,383,419,449,375,447,425,439,667,665,668,675,681,659,671,652,651,723,658,660,681,689,689,678,673,658,655,684,653,675,688,713,686,692,651,662,623,628,626,611,657,672,646,611,623,640,666,619,625,629,646,649,682,673,607,660,657,632,662,660,682,596,625,569,613,606,604,567,580,593,612,606,619,594,600,594,590,606,608,567,584,574,606,580,585,584,578,604,621,609,573,606,467,505,481,473,503,475,480,435,463,496,514,454,450,486,492,440,469,469,458,481,509,471,503,468,486,443,456,490,503,497,470,540,480,490,485,508,450,506,477,506,502,479,503,479,499,455,472,436,473,455,518,500,463,485,469,505,552,503,498,470,441,424,429,426,413,419,410,436,401,392,396,444,461,397,429,379,429,431,415,417,422,428,434,417,417,393,405,406,411,408,407,472,438,405,440,459,371,445,418,396,437,400,428,397,409,403,439,421,421,450,408,395,376,420,413,418,421,434,428,424,417,435,407,459,392,394,413,475,356,399,477,443,408,422,412,356,384,402,439,410,464,362,447,347,438,489,396,554,402,450,410,426,410,401,500,724,667,720,752,717,722,717,757,740,744,723,740,713,683,717,733,791,708,731,706,742,697,691,707,734,696,643,630,654,655,624,641,675,652,634,658,657,652,653,662,600,613,644,704,648,651,619,651,642,669,655,661,644,647,667,654,652,653,582,601,655,622,591,597,568,641,628,568,607,614,636,607,640,655,616,617,604,605,668,645,571,633,595,597,623,617,586,610,631,585,601,665,546,487,525,543,561,558,509,553,551,527,531,572,520,580,564,546,540,533,545,522,511,540,531,518,549,594,571,556,533,550,559,573,564,478,485,486,502,485,460,463,476,473,480,438,470,475,474,484,487,471,467,486,468,463,473,466,503,513,472,470,401,407,437,444,430,436,434,437,433,431,420,446,401,439,442,428,426,435,430,434,431,430,425,416,436,379,452,443,410,434,600,620,584,616,618,592,613,622,620,609,573,602,598,558,562,596,647,597,622,587,567,598,644,607,564,624,649,640,586,486,447,530,509,519,496,474,491,506,476,481,483,490,477,504,518,480,496,477,507,554,505,484,492,474,513,526,499,520,536,492,488,589,523,565,439,553,490,536,529,515,494,537,508,559,512,497,531,528,432,594,585,534,508,521,553,477,544,484,452,457,536,490,653,623,651,665,649,625,657,651,662,639,604,622,664,647,675,656,654,604,622,646,634,629,634,641,667,639,615,616,677,649,624,645,682,609,602,629,608,559,616,635,580,602,615,549,623,607,639,551,596,610,627,631,656,709,617,600,623,582,606,514,524,551,527,505,547,517,539,518,547,500,507,495,528,501,528,487,512,494,498,516,495,509,540,497,488,443,409,457,444,406,419,440,423,437,419,410,445,422,423,449,437,451,433,405,455,453,421,420,438,424,443,450,419,428,438,404,399,412,427,404,450,412,434,436,406,421,413,439,425,453,431,394,412,411,414,417,406,427,403,428,432,392,418,428,421,401,383,433,429,475,470,452,478,476,443,486,493,424,460,480,437,483,481,484,468,469,431,471,504,489,480,536,624,625,602,589,620,628,613,654,614,641,655,597,676,617,609,591,607,599,623,594,604,605,634,599,609,638,477,482,499,544,497,488,500,516,495,505,504,521,512,503,490,497,515,500,496,510,510,491,505,484,515,486,518,517,495,505,574,576,561,568,548,586,580,649,488,596,612,521,589,549,537,561,638,577,588,588,548,596,547,567,533,578,562,629,571,577,572,601,599,557,572,587,586,573,566,601,541,568,581,540,603,584,564,548,558,551,551,549,544,543,579,555,505,529,568,517,506,553,565,540,521,530,512,520,541,503,554,510,512,521,528,548,528,514,556,549,518,562,557,558,532,579,506,487,497,463,493,452,473,520,507,489,435,522,508,522,501,507,461,498,459,495,451,438,418,492,490,467,532,460,540,510,487,529,539,509,496,483,517,527,535,500,497,524,519,484,534,526,489,504,504,477,492,502,525,508,513,500,503,525,578,535,557,548,544,596,587,577,584,564,545,545,570,582,542,543,572,532,619,574,552,546,540,563,551,555,561,551,591,570,578,578,581,577,600,586,602,567,583,576,584,587,559,572,545,564,603,566,583,559,587,570,585,577,548,570,588,581,628,581,574,601,582,567,591,618,617,633,611,647,612,582,661,591,632,597,547,600,615,637,606,596,629,572,540,608,491,494,494,517,554,512,528,513,507,533,508,509,517,515,517,512,508,522,522,526,495,526,527,508,539,506,494,521,460,469,466,470,459,438,476,453,462,454,437,437,508,451,472,488,453,445,463,454,493,451,449,448,460,466,452,461,462,489,472,475,437,406,435,424,448,443,418,428,426,398,415,409,403,417,441,420,414,428,426,425,412,415,423,412,428,414,413,409,431,439,415,400,460,415,435,431,445,422,422,434,434,396,423,395,432,448,428,436,422,435,428,459,436,446,433,431,440,462,431,447,441,425,436,450,416,434,471,456,464,514,479,457,455,493,463,468,481,474,498,472,440,508,470,515,466,499,476,425,502,454,462,474,488,466,462,466,466,429,460,432,420,462,454,466,448,462,465,439,467,433,444,443,457,474,424,463,462,458,455,455,435,484,404,558,544,590,618,556,579,561,591,587,563,557,543,579,624,592,540,581,538,603,565,583,582,608,588,624,541,642,570,626,599,579,603,612,599,584,608,586,566,558,579,576,612,577,595,592,613,592,574,589,598,677,712,653,692,704,695,680,699,699,697,703,676,687,715,697,729,702,717,668,738,699,712,717,735,736,727,703,645,703,686,658,641,667,641,658,637,688,673,670,654,634,632,693,661,648,660,680,657,702,667,667,657,676,659,679,630,666,643,621,656,637,585,573,563,612,562,574,600,561,600,539,582,648,575,637,580,572,550,569,568,530,596,568,575,543,571,575,631,636,666,696,706,683,658,729,682,683,706,723,723,690,657,670,768,691,688,661,653,737,717,653,698,724,746,693,680,688,604,678,601,616,644,631,688,677,703,632,592,623,653,614,666,638,605,695,645,673,637,609,642,628,619,667,666,626,635,638,657,696,647,647,611,642,644,637,657,610,591,587,577,577,578,579,581,579,567,568,559,577,605,572,571,577,578,577,556,592,580,584,588,585,572,586,590,584,576,500,536,569,544,531,529,551,531,571,525,518,574,570,581,571,560,534,582,541,555,547,551,517,600,554,535,537,581,527,537,559,563,540,548,476,461,496,450,495,463,452,480,501,472,481,477,476,491,440,459,497,459,472,464,458,488,468,475,496,485,466,469,478,438,439,447,460,449,442,434,436,431,462,453,434,442,422,459,450,416,452,468,472,451,450,432,433,441,441,420,450,403,407,391,377,380,440,443,408,420,357,386,386,376,392,437,376,377,384,418,406,376,398,437,415,428,368,411,387,422,432,455,384,396,378,523,488,505,508,529,482,517,514,490,475,496,522,462,504,490,490,495,478,515,528,494,518,528,530,526,532,512,505,457,483,458,474,505,482,466,473,476,487,455,466,453,483,488,447,493,469,458,453,463,491,442,495,489,444,510,449,457,466,471,560,554,590,571,565,570,555,541,582,565,568,585,560,518,599,610,582,532,604,584,589,572,554,599,544,507,588,579,439,417,452,465,462,426,430,482,439,487,488,441,445,488,440,458,457,432,478,429,468,477,505,457,402,476,485,473,447,475,422,442,416,577,625,619,647,620,593,579,609,626,624,602,594,599,625,635,628,572,584,601,622,607,575,614,610,566,565,627,603,576,573,592,584,591,605,587,584,597,574,640,611,565,650,570,616,616,583,576,554,537,587,571,620,554,627,589,606,559,577,595,642,592,618,603,638,609,628,605,529,605,587,604,542,601,627,555,597,617,598,590,628,552,619,625,617,596,568,582,587,613,631,475,520,529,511,538,505,542,508,515,514,526,514,514,496,509,520,514,505,491,544,503,515,476,464,478,441,440,464,460,451,503,477,432,479,458,455,453,442,454,463,467,463,464,453,441,457,450,453,445,472,442,462,471,596,541,593,586,549,512,545,536,536,580,555,542,562,544,553,557,558,554,515,539,525,574,528,560,564,578,517,569,561,571,548,568,640,587,555,584,588,571,580,593,584,619,620,611,607,619,602,611,599,582,588,565,562,594,554,628,562,578,568,585,615,668,662,627,638,614,649,668,638,659,672,661,629,666,674,665,641,664,617,655,658,668,707,669,663,605,544,568,581,573,563,598,563,555,581,578,561,554,591,563,602,550,587,585,584,589,584,571,546,555,558,565,607,582,558,569,497,496,503,496,535,489,542,531,490,532,519,496,504,516,532,491,519,512,510,511,532,506,519,491,539,488,526,528,487,486,512,464,447,424,430,461,441,473,470,433,449,444,423,425,417,470,431,462,452,446,429,429,462,454,467,430,442,457,440,441,416,465,443,450,509,529,507,472,498,523,525,501,506,478,506,515,487,462,573,538,536,508,504,479,545,532,497,494,492,541,547,577,573,567,570,527,496,545,573,558,552,568,606,552,586,572,519,579,511,544,558,529,564,553,542,568,545,531,553,535,680,664,664,693,733,710,731,693,694,691,745,708,727,731,711,704,681,677,675,673,685,705,707,708,723,708,727,654,682,637,659,627,622,657,690,664,613,657,663,676,646,651,662,690,643,653,715,649,701,631,645,657,703,676,646,650,534,560,561,555,593,564,574,565,579,553,600,599,577,589,569,583,586,589,558,574,580,586,597,589,572,563,602,544,549,563,576,549,571,580,575,563,559,550,556,545,535,589,544,590,563,506,540,563,562,554,542,576,582,468,580,517,532,563,446,440,453,472,449,439,437,473,478,433,445,433,452,438,468,462,428,472,456,467,465,456,425,442,435,475,441,445,436,518,518,519,504,496,516,532,541,509,542,527,504,548,513,546,492,522,563,525,508,517,511,520,534,502,520,519,514,528,515,581,453,411,431,466,414,463,429,399,419,421,473,427,425,436,458,494,418,452,474,449,459,441,464,474,424,478,476,475,435,371,480,517,508,463,399,374,474,483,520,563,485,523,483,507,443,489,445,462,464,556,429,430,471,470,455,428,467,476,473,627,635,616,588,580,602,586,586,572,592,609,591,609,569,593,575,614,615,567,599,625,603,621,578,593,639,724,712,739,753,748,706,710,703,662,780,686,712,747,690,705,725,743,714,692,659,712,727,742,700,696,741,712,724,693,685,639,693,690,665,696,652,675,655,687,696,690,689,631,704,674,672,642,688,648,709,673,671,649,672,647,682,658,684,553,562,605,581,600,562,608,587,614,566,579,578,567,589,641,578,621,590,612,625,605,616,579,651,588,576,589,608,610,593,631,615,485,503,510,461,501,480,486,466,467,500,514,460,506,484,473,462,508,487,472,447,457,474,495,509,493,489,465,463,419,431,455,488,458,438,435,478,445,458,457,439,431,436,457,438,420,482,477,421,430,426,410,452,410,428,463,464,467,432,440,464,429,387,419,470,531,489,509,493,497,538,528,522,549,549,502,533,492,519,560,576,462,590,478,490,485,527,535,558,489,563,539,729,754,776,753,731,790,767,733,719,780,754,716,751,746,748,793,766,763,761,776,776,730,726,788,768,746,772,764,769,807,760,702,708,706,686,729,767,699,686,686,665,715,723,686,705,715,692,681,705,712,662,708,742,751,736,693,642,603,631,597,623,683,656,634,636,607,607,633,621,604,658,634,623,608,638,642,580,638,611,650,645,564,560,568,574,579,558,534,563,555,540,586,579,578,595,584,575,562,565,559,566,596,539,585,582,588,576,565,580,554,592,574,703,677,649,704,713,673,667,724,737,693,756,749,714,692,710,683,722,701,632,667,686,724,675,710,640,717,701,722,679,677,682,687,680,707,659,640,748,715,659,688,690,701,659,604,673,660,662,661,700,672,761,711,689,631,650,624,595,539,587,605,594,618,546,617,629,610,535,594,638,535,568,596,582,579,571,614,596,602,620,535,639,581,574,576,590,604,411,366,408,411,410,383,367,397,350,354,373,379,401,401,413,398,395,428,421,380,428,405,375,390,405,353,392,412,371,424,375,564,535,504,509,511,492,576,508,478,561,520,527,553,539,552,536,558,540,545,515,503,519,517,512,476,527,541,502,430,461,445,422,459,424,443,437,401,434,420,398,451,414,444,408,429,439,409,434,417,441,387,434,417,439,438,441,418,456,424,423,405,401,413,407,410,419,403,426,384,396,388,377,421,404,418,421,424,439,398,404,409,436,392,371,402,415,391,412,400,409,378,401,443,424,411,440,413,417,407,407,440,416,420,434,425,403,419,402,426,412,401,438,413,445,433,437,396,415,419,404,468,489,451,459,430,438,451,488,440,472,436,475,446,449,459,484,453,478,458,466,454,454,479,423,429,510,510,500,501,501,508,476,516,490,499,488,499,494,458,515,471,456,493,510,490,525,469,502,503,483,499,508,492,485,507,524,462,480,460,471,494,511,506,518,470,474,400,427,441,447,462,446,430,406,456,430,410,427,455,450,455,425,437,439,452,469,451,436,464,467,479,486,482,500,482,480,494,486,460,467,462,503,475,495,474,471,497,473,499,458,470,446,452,481,478,504,484,496,442,509,484,490,523,498,489,530,506,523,495,489,487,549,525,515,517,532,497,534,535,517,497,494,537,486,503,503,528,540,514,507,506,502,475,536,489,672,643,674,668,650,641,687,621,632,648,649,645,654,652,642,732,612,645,597,540,656,649,663,638,643,641,704,712,462,487,469,489,493,501,497,500,469,471,542,469,504,533,515,480,463,484,508,456,497,451,441,543,482,538,472,508,488,451,495,490,555,398,403,473,453,471,433,537,397,442,413,445,455,482,469,445,493,400,492,511,436,467,474,499,458,424,450,404,505,433,571,543,532,537,569,582,582,615,597,575,597,572,582,549,578,538,542,591,580,544,556,539,567,540,571,519,564,557,573,585,556,556,575,592,572,547,744,734,746,702,669,722,693,704,708,709,710,691,698,719,694,743,726,728,729,714,717,698,712,693,688,700,672,629,658,655,624,661,687,641,716,670,686,610,651,661,694,638,696,702,674,678,630,716,690,744,677,665,651,672,640,655,635,690,514,577,539,511,538,549,598,576,559,576,533,608,593,539,561,528,565,592,549,579,536,571,575,601,546,571,529,535,588,437,462,471,423,472,427,475,452,448,477,418,448,444,451,463,464,483,446,458,462,442,477,460,467,615,583,627,588,601,637,630,627,608,608,571,609,609,625,617,644,622,593,623,635,629,592,573,582,597,594,658,612,639,664,599,663,645,648,622,637,634,641,661,661,675,671,648,685,663,646,641,672,630,658,683,668,627,663,669,671,660,676,634,656,647,632,660,619,581,675,632,646,661,638,661,605,604,635,687,668,649,643,666,608,684,641,676,610,646,583,618,618,650,571,607,613,628,640,601,632,614,609,581,582,609,593,623,624,622,625,643,657,656,660,617,647,632,653,630,620,631,558,565,570,567,625,576,540,588,575,562,579,582,568,519,582,541,489,552,573,529,574,546,528,579,620,519,559,546,558,575,563,539,565,596,571,519,569,563,582,555,585,615,520,582,567,575,576,546,599,611,570,586,658,601,569,586,583,597,567,593,611,617,507,466,441,473,451,481,477,460,461,488,445,474,472,464,440,490,472,490,479,465,435,464,460,498,455,479,475,464,531,550,489,504,558,473,439,478,553,591,567,493,548,510,534,464,584,604,521,553,622,544,549,496,473,576,514,560,554,576,538,510,494,597,627,594,602,542,565,614,602,557,594,544,602,601,621,568,551,604,607,632,558,585,589,553,619,638,558,572,618,569,572,581,575,422,486,442,450,508,452,450,451,471,454,460,464,504,489,457,431,479,473,450,462,475,466,464,431,415,475,485,471,469,462,440,471,455,414,450,445,429,452,432,459,457,425,483,431,445,419,438,462,448,489,476,470,434,459,439,476,445,413,440,437,420,448,432,451,408,441,432,503,503,504,461,518,493,525,520,470,527,482,456,485,487,485,500,531,478,456,490,499,475,465,484,461,498,441,490,470,493,468,458,510,432,413,434,427,458,432,444,432,434,420,388,443,431,397,431,425,431,413,455,434,441,415,448,436,408,457,561,611,585,601,621,610,603,570,615,570,594,600,608,618,602,596,597,614,574,593,620,585,614,589,608,608,578,599,603,643,585,579,603,569,593,585,583,595,586,624,596,576,641,639,658,617,599,594,654,589,627,592,629,602,590,616,577,663,565,644,633,613,651,596,543,531,526,580,563,584,578,544,579,627,540,594,505,576,559,565,531,574,562,603,587,598,610,564,576,560,564,587,567,621,640,612,647,618,592,633,617,621,631,688,597,614,597,578,621,632,610,652,643,644,641,601,609,645,644,635,615,665,609,609,627,648,674,625,573,673,736,679,683,643,697,683,696,697,682,663,676,707,676,635,686,681,682,676,684,683,706,702,662,706,697,678,672,683,685,622,673,619,689,671,653,691,665,647,654,661,623,657,655,667,615,666,636,664,670,660,651,642,643,687,687,653,673,635,576,570,594,556,585,569,570,586,595,573,593,598,557,581,550,589,568,580,564,569,595,623,603,558,565,531,538,538,527,545,552,562,522,498,556,518,565,554,522,558,529,550,499,539,530,516,560,563,501,524,557,547,532,532,463,513,470,434,468,436,429,475,461,417,456,461,432,423,453,440,470,452,444,468,382,449,463,479,459,472,469,428,444,479,446,482,480,473,631,599,653,568,587,591,627,601,610,589,627,642,605,599,626,611,602,612,602,597,599,581,611,677,567,582,631,658,572,582,586,628,582,514,524,470,528,497,466,520,489,480,521,500,491,477,506,502,515,490,485,505,476,456,501,498,472,480,481,514,501,518,501,509,461,458,511,498,480,611,509,507,605,550,583,526,546,530,568,592,631,542,583,556,560,589,600,593,527,571,539,598,551,636,562,613,633,635,636,597,610,572,672,625,586,623,625,638,626,606,582,651,619,636,633,627,646,592,656,587,623,576,614,638,672,669,630,653,652,680,598,654,693,640,596,611,619,640,591,651,652,635,649,629,675,628,644,654,668,642,600,727,642,592,652,668,574,623,554,559,586,517,542,542,521,547,528,596,529,486,555,531,537,517,550,527,564,508,533,527,536,503,534,578,560,544,535,516,559,644,512,610,486,571,552,583,653,599,582,637,506,615,660,567,559,586,561,593,513,484,644,517,569,599,590,536,738,552,569,574,622,673,564,629,619,655,657,644,605,665,615,635,649,600,670,600,629,693,633,646,592,626,624,672,636,638,631,634,674,684,576,609,589,594,581,609,610,622,573,607,585,573,566,602,577,594,577,575,593,588,576,600,562,565,611,554,548,574,576,553,582,566,540,565,564,552,585,543,577,570,534,555,571,547,580,569,584,529,559,622,532,537,578,619,567,563,581,574,678,663,668,662,605,687,674,680,703,692,722,682,668,641,692,638,669,644,691,651,640,693,685,709,641,603,743,688,668,622,696,662,657,658,677,713,740,588,651,648,647,667,648,735,691,626,626,645,707,687,702,662,688,640,667,629,697,712,705,646,662,665,571,615,560,605,607,576,589,619,562,567,545,638,596,579,580,618,549,524,573,609,578,603,623,566,586,622,438,433,440,403,486,422,428,434,468,439,467,417,416,434,481,429,446,435,433,437,434,396,424,457,446,434,463,434,440,451,475,448,419,454,448,434,471,413,426,442,493,486,447,437,446,426,446,454,449,440,408,421,436,436,463,420,437,445,437,440,484,410,438,490,481,504,461,494,474,497,499,476,528,534,509,516,492,471,487,504,454,483,455,510,512,501,504,517,501,491,526,481,525,517,464,509,535,472,489,488,457,492,563,466,505,515,524,515,520,530,496,469,461,467,425,466,453,441,436,439,456,442,473,469,460,450,439,470,440,466,461,435,450,443,450,475,448,456,430,387,395,405,439,414,430,401,397,402,396,398,397,389,392,392,402,411,428,400,420,420,400,411,415,394,390,472,377,360,400,436,417,386,371,407,396,386,371,367,404,368,372,373,372,390,414,363,372,354,371,389,395,401,401,412,385,358,354,398,339,337,383,543,510,525,537,487,491,528,484,480,469,529,477,531,515,479,509,480,506,490,537,519,515,518,461,539,519,493,536,537,530,487,488,478,444,490,530,467,495,452,476,497,440,524,478,486,488,487,492,489,462,497,502,514,452,476,489,447,444,422,464,456,421,447,434,417,461,436,443,454,482,455,442,468,421,441,453,470,436,418,410,449,441,460,422,443,458,452,438,424,391,428,401,405,407,405,404,416,406,435,414,414,396,395,399,389,409,410,401,441,408,411,410,372,425,400,428,401,421,433,428,442,446,451,454,445,425,449,442,447,452,453,471,433,458,460,437,416,467,460,449,441,452,451,443,459,441,440,476,453,473,476,444,463,415,457,440,461,427,432,403,460,444,400,433,424,412,407,420,455,420,442,442,413,437,390,412,449,450,433,444,427,422,423,407,491,477,472,474,501,491,482,491,476,490,509,494,479,439,487,494,486,503,475,481,513,486,520,465,482,518,502,483,479,508,482,489,498,529,542,523,485,480,523,489,496,487,504,509,524,498,522,486,501,487,505,481,505,509,505,504,471,517,520,524,492,515,503,524,491,502,439,507,437,493,480,454,467,481,484,460,447,442,488,441,459,466,483,493,453,491,482,479,474,445,473,472,482,464,464,508,453,419,475,460,447,426,480,437,470,465,447,458,458,426,445,435,438,446,475,439,440,444,447,419,455,453,440,457,457,442,595,572,585,571,572,578,591,575,605,593,578,566,570,597,563,595,605,610,584,576,598,603,603,567,596,581,567,551,550,545,526,597,580,520,628,628,563,592,606,578,626,503,554,599,581,563,557,586,604,537,575,622,616,475,508,477,453,481,511,483,466,510,488,475,493,521,492,471,463,470,494,462,449,501,458,495,462,488,493,493,519,501,481,475,446,402,434,405,451,415,455,472,441,465,421,479,467,403,428,446,470,417,426,421,459,490,413,427,463,460,416,474,446,466,460,478,637,667,671,645,630,642,681,692,719,628,685,621,592,665,701,628,614,645,628,675,617,646,635,681,676,635,688,556,548,513,531,522,508,556,549,529,513,502,514,522,505,490,529,530,547,545,549,534,519,555,524,518,512,563,500,547,511,515,445,448,448,455,438,444,476,461,453,462,480,419,478,470,472,430,444,453,459,469,442,483,467,475,460,469,444,466,470,478,470,461,445,478,422,438,394,443,436,451,435,399,445,440,457,396,471,428,458,443,459,433,400,414,436,431,434,434,415,435,441,389,453,432,423,432,459,435,459,442,438,422,447,461,430,435,449,450,425,422,458,417,433,448,427,424,421,449,454,446,433,423,429,453,430,445,451,470,463,425,408,375,403,392,390,396,396,396,411,403,405,402,416,438,415,406,443,392,403,414,408,385,410,393,410,409,389,387,396,407,414,411,380,389,390,392,359,391,407,383,383,397,353,395,405,376,412,377,388,380,383,398,395,374,377,373,389,392,393,370,379,378,423,396,389,335,363,426,416,368,354,355,360,392,360,388,364,382,399,358,343,358,376,369,387,398,366,402,410,564,479,506,464,515,536,498,476,467,506,510,480,511,490,549,530,510,462,548,490,533,548,560,511,600,491,530,462,471,472,516,524,707,746,737,744,706,710,718,744,722,733,700,699,729,727,761,756,733,720,723,718,755,770,728,709,729,706,702,716,693,704,697,690,661,773,671,692,686,733,651,789,741,776,750,661,744,672,645,678,725,647,737,731,762,615,710,730,685,651,638,673,752,717,650,766,520,597,578,601,573,579,554,575,477,612,627,588,575,600,527,560,565,586,474,542,582,518,549,509,517,550,578,557,557,622,555,593,541,600,644,587,445,474,447,409,482,455,429,442,441,446,466,450,439,469,424,454,412,430,451,458,469,463,464,445,488,573,589,612,613,592,578,599,562,561,561,533,546,596,548,562,559,598,553,561,555,594,598,625,586,623,544,570,552,584,420,428,474,453,462,459,452,433,430,451,442,442,472,486,452,428,468,482,441,475,469,424,456,437,399,454,471,434,399,441,426,418,442,411,438,432,422,390,467,483,404,430,374,387,393,387,440,442,417,426,459,433,417,472,433,419,435,429,423,447,543,519,532,526,528,528,553,494,532,520,546,532,505,529,542,509,560,512,543,478,533,523,478,522,484,552,525,472,506,476,516,530,534,614,607,619,584,608,627,631,586,599,645,584,613,622,602,590,592,615,606,629,614,627,591,601,601,632,590,649,626,622,560,533,514,549,510,480,525,525,502,533,500,511,507,518,565,561,528,521,538,531,521,546,545,524,479,509,519,542,551,522,513,512,514,513,469,490,450,482,462,466,466,447,429,479,466,444,478,491,451,459,465,449,437,455,482,472,459,458,461,488,450,470,467,456,460,445,480,484,449,474,469,486,543,551,580,569,569,553,559,581,536,580,601,553,580,622,555,551,548,566,577,606,572,550,577,577,559,541,568,553,561,577,595,617,643,629,609,638,601,639,645,598,591,582,624,585,613,642,651,607,596,607,619,634,604,647,590,638,612,563,603,599,595,596,586,583,596,599,592,598,588,580,584,615,584,608,583,589,597,627,607,584,591,599,602,583,576,633,594,573,579,578,559,563,551,575,541,587,546,563,564,594,574,559,555,557,552,562,565,558,584,530,597,570,600,601,578,598,556,721,693,714,709,689,718,687,719,740,702,717,716,731,706,707,669,677,698,721,700,689,735,722,721,729,752,749,713,722,729,694,705,702,743,691,727,654,700,665,695,661,682,704,711,685,636,681,696,720,713,668,697,625,658,702,722,720,712,651,645,657,705,659,743,765,707,746,721,686,692,673,685,697,678,663,744,660,715,681,707,724,697,705,711,731,696,696,656,663,720,670,680,676,660,675,687,631,658,693,658,668,641,659,678,668,675,697,676,651,701,673,669,711,609,677,642,663,705,664,680,672,688,621,609,595,588,585,618,604,596,604,615,603,611,625,593,583,578,630,628,596,596,603,609,632,598,604,611,593,659,614,589,535,576,556,554,563,546,545,552,567,583,562,527,577,561,579,576,580,572,564,560,562,561,637,580,655,637,619,647,685,647,644,639,640,630,613,663,583,678,696,632,639,618,639,601,652,672,636,657,635,606,584,588,558,536,538,557,554,550,558,545,566,567,553,519,575,538,571,554,551,613,565,551,564,558,536,538,495,524,480,495,484,496,484,473,508,494,497,484,482,467,486,485,507,462,462,470,507,511,437,467,481,470,479,533,494,466,489,490,487,515,510,552,532,482,523,515,535,506,525,516,494,495,517,531,506,500,479,516,499,510,504,496,535,515,494,449,476,490,475,473,500,468,503,485,481,508,478,482,474,503,531,495,511,479,491,455,497,496,488,478,459,507,483,478,425,453,416,471,446,453,450,450,443,468,464,449,467,465,450,460,448,450,491,445,469,428,449,476,458,464,453,415,445,557,606,591,583,571,632,668,621,583,574,595,630,611,638,603,633,640,618,635,640,641,587,607,623,634,580,592,606,611,561,670,618,621,579,624,589,650,600,661,599,591,592,666,654,670,612,603,594,668,598,620,659,663,656,680,625,633,644,682,558,447,450,405,429,486,472,456,471,451,476,470,442,458,461,477,440,456,443,429,458,448,442,440,439,411,499,507,419,429,464,428,427,422,411,443,447,419,462,445,423,488,440,464,407,442,400,466,437,422,483,436,424,443,442,445,587,565,555,584,597,585,609,600,612,614,588,606,643,594,599,612,583,665,561,581,556,570,634,593,605,618,571,599,577,518,488,557,465,472,502,481,508,473,521,518,460,493,482,492,502,525,498,527,507,528,518,522,491,517,521,524,496,487,459,536,473,506,514,462,481,423,428,462,427,438,445,483,470,504,446,477,457,427,442,460,440,430,423,449,460,420,446,462,448,442,444,428,665,668,634,646,678,601,660,622,653,693,671,654,676,684,668,641,641,702,631,637,685,673,705,633,646,662,591,651,616,585,564,647,551,646,603,663,604,598,598,653,591,634,654,625,644,669,612,660,655,617,513,479,497,503,469,511,493,472,465,510,473,498,519,481,481,443,524,477,513,492,478,489,521,507,520,489,514,517,521,465,409,375,442,401,431,436,421,396,388,440,400,414,391,415,449,392,429,392,435,435,403,394,390,439,408,418,421,442,435,439,376,435,437,396,403,433,410,421,454,407,440,429,467,426,402,399,416,428,454,414,382,444,425,387,390,434,481,540,560,569,554,565,525,611,526,559,545,564,540,570,585,595,577,529,532,596,605,553,588,546,562,592,586,566,622,585,578,544,551,574,623,621,643,604,640,596,586,626,583,587,569,615,565,577,612,588,588,615,588,597,599,599,596,610,588,615,606,599,610,600,641,615,644,624,585,576,557,551,578,580,603,565,560,575,559,583,559,577,597,546,578,585,570,559,603,606,554,628,590,567,579,610,569,556,594,565,563,574,527,599,556,550,541,437,447,466,428,478,458,451,443,445,435,455,453,466,434,482,468,418,447,472,445,464,456,421,453,444,442,458,448,425,660,516,490,474,542,422,574,438,487,476,497,507,534,534,535,544,493,619,507,638,560,437,632,499,489,538,491,631,744,724,741,731,759,719,709,723,703,716,748,722,734,724,790,735,740,753,717,717,724,736,711,731,759,724,697,699,692,758,736,685,673,718,696,694,716,727,679,658,746,702,691,704,736,685,700,672,714,701,674,681,654,678,657,642,629,635,605,620,634,699,655,647,655,617,616,681,647,650,651,666,627,676,652,676,625,535,560,511,521,518,549,541,543,549,566,543,520,502,583,503,533,555,507,552,521,566,544,535,554,526,556,548,515,531,525,536,504,500,528,560,501,561,507,523,596,538,564,629,580,531,613,602,510,594,517,568,576,591,596,577,564,513,520,468,653,638,617,667,649,670,608,643,630,629,660,674,667,631,644,635,652,637,605,601,607,606,635,608,581,658,628,629,645,671,660,595,570,582,631,614,563,595,574,589,606,599,603,592,596,542,615,580,589,587,545,612,618,619,617,590,613,613,588,547,588,577,582,564,570,572,565,585,554,574,559,576,572,570,550,583,558,556,584,589,517,578,622,551,570,553,550,527,498,549,506,525,465,548,558,463,526,516,552,630,521,573,528,516,519,529,548,565,538,510,565,483,512,497,576,487,522,548,503,556,555,506,651,674,633,654,652,688,617,644,596,643,639,647,693,678,684,638,641,667,664,605,711,639,651,675,682,657,653,654,675,669,680,684,660,585,598,624,615,629,641,611,647,612,588,639,626,588,592,612,627,668,643,676,618,607,652,637,592,639,602,647,627,641,621,636,609,614,580,603,560,590,575,597,583,581,611,620,570,587,604,606,577,571,603,587,588,621,579,595,583,574,645,612,580,608,605,649,597,586,646,602,629,607,642,628,682,652,617,611,652,663,644,608,550,578,586,584,581,605,652,636,584,656,595,700,597,580,589,613,642,439,403,417,420,426,437,449,386,438,441,427,428,469,429,467,435,409,439,471,441,422,485,420,475,455,459,480,376,321,352,405,332,399,356,419,325,336,404,420,463,326,408,413,365,394,424,451,369,420,413,332,357,471,715,659,696,700,691,668,675,680,672,654,708,735,685,720,722,707,668,637,705,725,669,697,721,665,698,685,698,738,691,669,651,647,644,655,673,677,617,692,681,682,649,714,638,721,716,700,685,652,685,687,630,707,659,633,679,657,667,642,695,688,668,635,686,639,608,694,665,641,611,622,589,631,656,629,587,651,637,651,633,622,636,726,629,631,664,652,597,671,598,692,678,642,582,614,646,661,600,632,644,627,648,636,651,604,672,637,617,648,633,675,676,621,643,631,626,653,617,662,652,638,673,622,585,583,575,594,575,568,582,582,589,558,580,602,561,579,609,590,562,588,571,533,616,589,571,622,568,599,582,603,592,592,548,527,521,558,527,545,550,523,525,571,534,570,542,569,547,526,564,517,515,517,545,525,505,543,540,578,529,561,527,525,538,564,498,457,408,448,460,438,439,449,460,437,440,452,424,426,450,433,445,446,442,448,436,468,426,448,449,483,481,431,466,431,472,368,397,428,399,419,402,404,410,415,367,406,411,397,392,406,375,404,379,388,392,398,421,426,415,411,389,405,412,409,354,440,452,404,557,455,463,359,451,479,454,429,437,411,427,408,360,407,430,387,497,447,477,377,449,432,424,467,416,377,398,405,670,678,673,681,669,648,705,702,700,662,660,687,674,659,705,696,675,674,657,670,711,662,733,719,686,698,668,690,640,700,669,658,652,678,695,642,733,645,661,680,629,665,670,701,623,719,647,694,690,671,669,644,675,646,694,685,663,665,688,697,616,738,680,729,725,687,704,681,699,708,721,663,678,709,693,699,711,700,670,757,740,701,750,686,690,722,709,693,679,652,663,753,752,717,654,687,660,658,691,652,669,687,664,682,693,688,639,683,646,697,720,685,651,663,640,692,688,687,687,689,664,601,652,618,679,593,742,678,627,684,662,678,621,584,681,626,644,654,679,642,666,662,640,658,613,671,696,647,668,665,670,674,657,640,682,629,644,653,663,602,665,673,617,668,648,639,655,650,673,665,642,666,661,603,706,659,680,671,704,490,527,443,546,526,570,547,521,452,545,553,476,554,456,530,533,545,492,486,570,546,541,542,559,562,522,523,501,492,624,479,466,453,459,477,469,426,467,497,450,431,433,462,479,487,484,463,462,440,438,506,444,473,465,469,486,419,454,457,487,441,519,552,548,495,584,534,555,537,555,568,567,584,586,555,551,526,566,567,562,505,512,525,542,529,569,513,547,559,553,556,535,507,542,536,564,538,594,529,562,577,566,548,583,557,575,557,560,556,603,549,556,532,544,577,539,579,570,590,587,589,576,604,610,630,608,582,652,582,582,585,568,569,604,627,576,574,623,626,645,583,603,581,623,636,591,615,597,611,612,594,621,570,604,572,608,587,585,626,610,655,455,458,481,460,473,480,463,455,459,464,450,470,458,462,459,484,468,501,450,447,458,471,488,444,440,475,456,447,467,442,413,417,439,443,457,454,448,428,450,459,419,423,433,445,468,423,432,403,454,414,422,447,449,413,431,437,455,438,432,443,434,464,501,504,522,473,458,502,487,472,485,480,487,487,470,486,453,474,481,471,503,493,473,498,509,492,474,474,459,493,458,498,492,511,413,442,446,415,433,429,437,444,424,403,434,427,432,439,434,437,397,432,439,412,441,449,446,437,429,441,421,448,461,436,400,408,437,458,428,438,433,423,433,455,445,465,438,426,446,453,447,462,434,435,461,414,443,442,410,418,421,442,425,430,416,384,391,370,383,422,396,414,421,377,421,407,329,392,425,412,420,412,421,381,418,400,352,428,432,456,408,364,394,413,393,420,396,379,616,643,611,624,602,603,623,610,638,609,637,622,631,631,599,613,657,633,631,628,605,642,597,609,606,636,608,627,620,629,637,584,567,583,604,597,587,564,575,597,618,605,577,574,555,592,575,560,593,588,627,600,556,579,605,549,597,621,592,601,571,573,586,584,603,581,603,583,600,583,575,491,437,477,438,504,492,443,543,496,481,446,506,511,526,510,469,531,473,462,478,529,522,501,478,507,464,497,547,532,372,426,351,389,402,381,374,383,384,392,408,422,399,406,360,373,398,386,405,377,369,430,399,397,425,322,413,408,409,400,411,379,332,380,339,323,335,291,360,364,352,440,335,421,366,369,312,423,376,392,338,374,343,369,376,307,324,425,392,339,357,323,665,669,678,698,704,703,698,664,692,653,753,695,668,674,611,661,659,664,717,656,657,643,664,644,688,674,693,602,636,598,599,638,667,600,599,595,596,637,651,609,677,588,635,635,653,660,650,662,620,591,633,638,621,651,641,614,580,666,659,505,543,485,502,527,514,525,501,495,485,475,520,529,510,476,483,514,494,481,492,524,486,510,506,503,499,507,506,477,366,364,429,392,371,380,394,343,365,364,414,340,382,341,433,405,390,423,452,389,388,392,409,392,379,374,372,389,336,359,579,603,608,590,621,591,569,593,588,602,579,614,599,603,585,586,578,594,568,581,583,567,565,594,580,618,608,569,580,550,557,595,560,554,545,590,549,575,553,519,592,546,545,528,571,551,595,529,563,548,564,575,591,549,559,592,598,557,550,572,552,535,453,492,493,474,505,470,430,513,507,467,512,542,463,497,494,497,479,517,507,471,454,469,498,464,517,513,460,491,443,399,454,441,442,430,423,415,415,424,457,472,422,405,401,444,436,391,445,443,432,420,420,423,418,432,395,393,381,372,395,383,384,411,396,383,371,403,378,396,382,403,404,422,362,374,385,387,407,388,372,373,373,376,382,372,392,412,381,385,403,389,381,391,382,393,366,386,395,402,397,377,384,393,374,415,406,424,403,379,391,372,398,431,427,400,416,418,453,433,411,447,415,428,413,435,412,433,416,422,450,417,393,410,408,415,424,435,410,404,395,428,405,395,404,393,394,421,389,414,429,412,412,407,416,395,415,421,377,392,425,399,412,424,424,403,404,412,392,448,464,528,419,497,465,488,482,456,494,447,481,410,497,426,468,474,475,460,480,482,507,484,472,497,485,450,446,466,446,483,444,495,456,487,472,429,441,447,438,442,445,472,461,463,451,439,456,441,451,487,426,454,448,446,457,483,431,433,373,394,396,425,401,373,440,405,404,399,387,367,405,379,374,371,402,366,419,372,400,370,390,391,356,390,394,391,392,402,395,405,371,369,359,354,366,358,364,359,350,348,378,370,368,371,346,380,345,345,367,379,351,360,376,360,362,359,376,362,364,346,350,371,337,383,373,373,364,401,409,425,419,412,409,392,417,429,411,398,421,425,441,400,415,422,445,418,414,401,394,441,430,413,388,429,414,454,427,424,384,368,404,409,379,343,390,422,417,373,441,356,408,368,435,353,402,401,402,414,362,422,388,434,667,638,640,658,699,674,635,680,640,677,634,643,634,612,655,675,680,623,669,601,671,661,610,678,573,658,684,652,708,616,714,668,601,603,620,619,601,548,592,585,643,596,563,611,551,590,624,560,598,626,639,610,551,628,571,599,635,573,606,615,638,550,557,632,622,550,543,619,571,585,599,571,543,608,636,570,548,580,571,580,631,640,556,616,612,581,614,578,573,589,541,653,709,608,616,628,645,681,625,671,695,656,650,631,647,645,646,605,630,663,652,666,664,655,647,681,665,645,631,641,629,666,625,599,645,651,653,615,647,634,619,651,650,632,632,630,610,615,641,657,641,606,619,643,645,586,620,609,607,626,616,612,606,505,647,605,569,668,586,641,608,558,581,638,584,607,623,619,584,594,618,643,587,658,628,627,497,476,520,519,467,494,501,475,506,469,555,503,477,532,518,516,469,494,503,464,445,580,527,532,512,525,542,501,365,379,375,388,387,384,375,382,366,413,382,374,390,398,416,370,388,374,364,371,357,387,370,394,410,355,384,382,378,381,421,370,362,373,350,370,372,335,364,343,415,359,348,381,356,334,403,380,379,361,397,401,347,346,369,377,358,360,376,343,336,367,365,374,402,362,431,417,426,378,439,402,431,415,423,426,396,408,411,417,406,423,419,455,450,461,398,455,421,418,428,409,401,393,447,440,460,453,417,521,505,497,485,525,514,532,503,538,498,518,518,484,545,508,479,514,496,512,496,513,494,475,456,476,467,517,505,517,471,480,459,507,530,519,478,522,471,512,506,492,506,496,449,522,478,490,481,489,496,449,514,502,490,509,506,516,503,505,513,499,416,473,441,447,437,426,464,432,415,426,433,440,453,449,455,445,420,448,448,439,446,441,456,455,445,453,435,425,426,452,445,445,394,404,367,421,374,375,373,397,356,342,361,395,407,409,376,381,398,352,425,379,396,353,374,363,355,377,383,364,364,374,333,605,565,614,568,582,598,561,554,575,565,569,566,584,584,597,580,560,544,596,568,577,584,604,567,562,588,602,590,592,602,560,583,609,632,624,600,647,654,656,601,622,637,637,642,682,693,633,638,651,600,670,604,602,629,628,679,631,657,670,645,728,570,590,623,527,572,612,598,604,596,555,553,602,624,594,569,573,613,614,543,614,531,572,629,573,648,545,622,585,580,573,614,634,549,602,536,587,604,570,570,581,582,611,601,616,589,596,565,583,590,591,610,574,587,581,555,544,528,560,568,583,565,596,581,615,501,536,550,527,509,520,519,506,545,535,532,527,561,541,519,515,476,580,576,556,505,549,531,539,413,397,430,436,443,493,410,412,440,394,452,424,398,434,452,435,448,486,457,395,398,378,411,420,427,438,426,574,579,548,569,584,547,572,619,555,551,577,549,548,544,612,587,578,608,606,579,552,567,594,540,570,548,584,512,569,570,546,555,596,533,560,561,497,533,493,483,512,494,503,514,516,506,498,475,491,488,536,500,516,521,492,507,505,502,489,498,460,485,493,502,506,497,503,428,419,445,489,433,446,460,454,462,433,444,436,457,467,447,429,461,463,433,458,470,486,446,472,443,467,460,433,448,464,455,450,410,419,430,438,403,395,398,406,416,404,409,414,416,419,410,398,380,413,417,389,385,395,426,391,403,403,410,427,437,395,425,415,400,435,386,406,400,402,417,386,396,393,396,402,436,427,406,439,430,407,392,418,413,396,393,445,431,431,431,406,436,429,402,446,426,438,418,438,456,373,435,411,449,392,451,456,381,455,418,442,475,409,429,392,446,404,458,428,439,457,401,449,403,438,422,403,446,459,442,395,420,450,548,507,555,553,540,566,536,565,502,539,580,522,587,555,573,573,560,528,562,539,567,586,554,548,543,555,469,468,474,465,454,488,486,500,489,494,447,450,499,467,514,449,485,500,481,474,498,502,455,493,476,481,402,435,408,418,415,426,423,412,403,418,428,413,391,412,436,418,431,430,427,399,428,426,402,447,414,407,412,425,366,395,380,387,395,385,402,399,378,379,372,405,380,360,379,407,411,385,380,372,369,391,361,370,370,411,393,367,381,406,390,397,395,400,416,404,379,400,430,413,399,404,382,359,399,398,413,397,398,406,427,377,410,409,405,412,411,394,412,421,435,454,414,400,394,379,422,411,426,386,401,403,397,399,429,372,422,417,404,428,400,424,437,398,410,430,431,418,434,432,412,440,414,651,584,592,557,615,591,570,541,615,562,609,596,593,623,582,599,593,615,583,604,567,594,567,561,619,605,557,626,621,565,596,596,584,580,580,601,577,633,602,589,615,581,575,578,605,611,587,594,617,636,599,567,602,593,550,576,587,497,537,493,490,479,507,516,514,554,540,539,472,468,480,513,540,543,500,488,505,491,502,494,534,483,499,513,511,502,505,510,478,533,540,536,492,485,515,505,524,561,543,507,495,536,470,527,509,545,446,513,541,495,500,537,503,514,556,480,533,541,497,486,474,482,556,508,457,537,560,458,474,430,449,468,427,452,432,456,464,448,485,465,435,441,459,448,466,452,446,422,460,480,439,397,405,411,416,434,398,417,421,410,434,400,385,409,417,425,428,435,419,412,418,430,419,420,419,421,443,406,410,418,409,407,435,417,414,439,410,411,448,435,425,411,442,445,441,429,475,432,417,427,453,513,465,409,381,436,417,452,426,453,582,602,667,629,561,604,556,648,618,580,638,552,622,560,523,630,546,604,609,598,606,608,589,631,578,603,599,558,566,590,606,612,600,589,601,513,527,503,479,499,487,509,526,502,494,482,491,484,484,502,488,456,462,458,473,505,489,514,465,474,480,489,480,491,481,489,460,502,553,523,534,596,528,568,556,569,473,550,528,570,614,501,480,544,534,528,556,553,614,439,584,529,532,570,570,574,567,490,646,569,545,631,584,588,637,583,577,589,575,579,601,576,582,611,587,620,592,596,643,610,541,544,554,615,583,569,586,579,571,542,599,585,499,547,465,526,511,532,508,493,526,513,478,468,505,545,549,521,496,509,504,500,480,495,476,498,476,444,490,504,420,438,459,434,446,433,436,443,437,422,439,434,403,422,403,404,435,426,438,443,422,453,439,449,450,421,434,435,404,433,364,432,383,405,394,381,361,381,405,411,389,379,401,379,380,373,412,395,385,413,390,387,388,417,375,425,396,347,364,379,371,343,367,377,404,384,350,375,381,364,373,374,350,358,375,353,384,364,364,376,354,345,361,341,380,358,360,377,356,356,356,347,359,332,358,363,370,336,350,336,336,351,371,354,352,350,350,343,346,353,357,367,336,369,344,338,328,352,356,354,363,349,329,335,337,335,342,361,360,340,365,324,361,340,347,347,333,319,346,333,361,346,332,344,364,331,337,298,336,344,342,361,346,320,348,324,336,343,356,336,341,359,346,340,367,330,334,349,325,342,325,336,347,364,338,342,349,344,343,328,352,347,339,338,321,344,350,330,325,318,336,354,329,311,356,345,330,356,356,357,354,321,329,312,327,327,327,329,368,324,336,349,358,354,340,370,389,359,360,354,372,339,393,362,384,382,360,365,343,355,362,350,337,366,387,342,362,370,394,416,414,405,409,410,403,412,425,396,412,373,417,358,410,419,382,408,384,400,422,381,388,401,432,410,405,412,390,393,404,382,399,401,379,385,388,379,376,389,386,352,366,377,371,409,397,388,402,379,402,387,377,377,425,452,454,426,445,456,426,467,425,461,450,481,453,432,438,459,476,441,431,451,437,473,424,433,440,467,423,439,386,405,426,421,439,445,421,420,409,401,419,414,405,425,409,407,404,419,413,411,425,404,417,399,428,404,435,407,424,451,467,431,493,452,439,455,471,450,502,493,441,489,455,462,447,458,462,463,497,472,484,486,451,470,472,491,462,462,453,453,466,441,459,458,420,497,447,438,457,463,464,474,480,449,440,453,471,437,453,438,475,493,458,474,462,466,446,471,424,411,369,367,387,386,384,393,400,354,386,379,431,418,384,369,386,398,420,386,391,390,366,408,391,389,361,401,388,371,392,373,370,356,339,360,399,364,372,364,382,364,371,371,402,375,364,365,346,371,384,359,391,476,464,453,461,478,456,491,432,452,447,416,430,449,484,420,459,443,471,440,451,459,475,454,455,444,432,417,446,489,487,506,497,472,493,446,481,482,464,491,470,476,456,505,477,474,479,499,481,504,489,460,482,488,487,473,478,479,515,496,471,482,466,461,456,438,451,441,442,415,443,447,469,457,450,441,425,438,465,442,445,459,481,458,452,440,481,415,376,405,398,352,377,390,375,371,414,409,387,407,358,403,389,390,377,364,375,410,388,398,425,367,389,400,343,377,388,358,345,344,359,360,370,356,393,363,354,353,358,366,362,349,361,357,355,366,350,364,375,345,355,373,342,370,383,347,371,379,416,392,395,412,437,391,411,398,408,412,417,433,410,426,439,403,408,382,412,376,424,411,407,396,392,387,383,384,407,389,394,381,406,387,367,375,377,389,382,378,386,403,369,386,393,394,396,396,396,396,409,390,374,372,379,357,353,371,327,354,405,373,402,378,392,372,391,393,384,368,374,348,378,341,373,375,345,398,348,303,332,331,311,362,311,313,366,311,331,317,350,331,360,345,344,320,357,332,324,348,312,288,340,356,381,349,405,341,358,335,395,357,345,345,358,361,378,392,338,346,405,366,371,374,365,395,337,363,359,333,377,325,356,340,353,563,495,502,553,499,488,500,499,486,515,507,511,483,518,497,472,458,478,483,496,509,532,482,472,544,520,515,460,506,464,500,514,482,527,436,417,415,353,393,397,415,410,400,396,386,404,389,422,406,384,380,366,395,409,391,428,394,432,425,404,431,378,391,394,396,506,598,571,573,518,601,491,515,617,533,577,491,585,560,518,584,514,487,509,622,512,547,571,554,543,471,561,556,571,568,569,577,549,565,560,551,593,543,616,579,600,607,570,565,588,583,585,555,578,602,568,603,595,555,591,571,546,568,582,574,504,547,480,534,494,483,501,491,508,507,520,508,507,511,477,494,523,536,519,508,511,501,548,522,510,507,476,511,486,444,418,460,448,466,440,424,433,437,456,446,452,429,427,454,447,417,455,441,436,412,444,459,445,483,454,437,419,420,378,402,393,389,399,380,397,377,405,393,370,370,387,358,392,402,395,404,384,379,413,359,393,400,390,383,368,378,402,375,383,367,366,354,343,345,389,388,374,379,373,386,373,337,389,379,380,359,362,365,370,374,363,369,347,372,543,551,535,539,549,549,502,530,536,526,566,567,627,548,569,515,557,582,547,546,549,534,554,518,577,580,507,538,526,580,560,471,470,478,477,488,476,488,489,453,470,461,468,486,475,458,479,455,470,466,482,462,448,474,455,461,456,463,496,449,418,461,437,407,419,423,427,421,452,437,433,425,421,443,412,440,449,447,441,444,455,461,419,428,408,442,441,441,403,434,421,426,418,405,407,419,414,414,432,419,402,422,415,414,408,434,405,403,412,433,397,438,413,421,418,402,432,422,417,431,420,431,407,411,420,416,410,418,407,418,406,417,406,425,412,427,423,414,423,407,431,427,427,441,411,430,402,399,403,436,433,410,417,415,398,412,396,398,405,427,427,398,399,412,390,402,426,422,417,396,423,425,422,411,408,411,409,413,433,413,388,417,419,395,395,408,409,382,392,393,376,395,395,391,404,380,396,391,376,373,398,410,393,371,387,380,386,392,388,407,388,400,426,393,392,391,394,410,409,402,392,398,360,398,396,400,398,397,399,388,425,393,380,393,415,392,424,401,412,401,408,386,383,394,401,390,379,386,389,398,414,399,407,388,407,374,422,409,406,391,387,394,399,407,381,415,397,407,411,409,406,421,404,403,401,379,385,401,380,396,401,404,401,412,394,378,388,390,371,382,407,412,391,406,379,380,375,373,386,376,378,383,351,381,392,399,361,366,382,367,379,391,377,383,370,388,380,374,379,358,371,388,376,359,366,366,360,358,381,369,375,379,365,377,396,364,362,372,356,373,395,383,363,383,364,380,368,398,399,387,376,386,374,372,397,406,397,387,365,389,373,380,377,378,378,392,411,390,402,377,405,400,398,403,421,402,419,403,409,431,422,382,403,408,396,383,407,401,399,442,391,403,403,384,390,430,437,413,399,421,428,406,415,440,406,409,391,423,407,384,416,390,419,414,415,392,400,425,420,403,418,406,411,411,391,422,422,441,456,450,444,460,463,439,423,439,467,441,464,467,457,453,464,490,423,455,430,455,470,450,464,438,445,468,413,458,484,393,460,483,459,493,450,488,502,477,457,469,506,483,459,522,452,495,471,438,507,457,449,487,430,490,498,473,476,429,446,447,441,438,413,446,444,440,447,415,417,416,417,405,440,427,445,413,407,442,412,449,465,426,445,430,425,426,433,412,435,436,433,430,456,435,429,413,431,417,426,389,436,418,408,451,446,436,442,432,440,417,426,416,422,433,410,446,412,455,539,481,519,573,532,524,514,537,489,521,493,507,540,500,518,543,511,526,489,553,544,523,543,501,520,535,533,526,492,414,389,413,397,405,387,416,377,409,400,382,389,410,395,400,415,404,381,369,396,421,417,400,414,387,411,388,409,415,452,391,428,346,452,482,345,402,443,341,338,405,525,410,422,365,345,391,442,403,490,428,430,458,414,495,409,621,650,617,667,656,642,646,651,623,638,606,639,658,642,633,679,689,620,632,649,619,631,643,631,646,664,635,666,620,649,558,562,575,569,595,609,522,512,564,589,561,565,576,570,544,567,587,541,552,590,563,529,554,559,546,522,507,500,473,520,475,487,508,498,510,489,518,550,498,476,475,514,492,476,497,463,483,494,463,502,450,495,480,495,474,487,489,463,488,448,478,496,477,495,450,469,460,464,464,489,489,476,495,468,479,452,458,465,485,425,449,453,447,457,436,465,445,440,440,427,463,438,459,458,482,489,461,473,449,443,485,466,505,422,479,489,454,440,432,367,402,387,353,378,406,418,406,412,411,382,396,418,399,351,399,389,401,394,389,392,418,374,422,390,439,390,397,376,550,544,574,572,526,601,563,568,579,577,545,558,535,567,559,563,586,564,555,552,531,619,613,558,581,585,554,560,571,584,567,608,605,594,626,599,529,602,682,636,553,562,616,521,625,636,604,530,547,622,621,590,575,581,526,661,618,669,635,580,698,581,617,582,591,516,569,575,543,530,543,529,597,578,574,462,549,537,524,536,530,584,544,534,588,538,598,575,585,449,631,609,556,624,476,513,589,500,594,623,512,574,573,629,615,572,522,568,613,611,511,583,564,604,550,474,579,604,630,551,569,539,501,676,603,618,567,671,447,408,425,398,404,411,401,421,407,417,395,425,419,402,405,403,432,410,390,421,395,424,403,432,401,417,430,406,390,364,435,387,367,366,443,344,407,471,425,340,368,361,380,355,416,341,339,424,422,388,394,459,388,387,382,400,435,404,322,614,639,621,622,572,565,647,648,622,536,677,615,656,568,572,578,588,568,594,568,611,645,641,584,579,601,575,575,450,498,472,446,474,464,484,486,460,445,457,421,492,485,490,458,450,457,501,449,480,494,481,479,434,491,500,511,460,466,628,514,526,555,475,565,542,551,511,519,539,499,511,525,525,480,518,597,576,527,570,577,614,538,524,513,567,537,503,499,493,475,592,568,587,556,582,577,560,574,593,581,514,596,578,572,534,569,554,569,576,559,590,562,549,572,548,578,567,575,585,534,465,471,474,494,505,483,481,495,467,462,537,456,476,453,475,459,438,466,459,496,495,463,497,505,443,482,489,475,484,492,568,586,602,556,587,615,578,590,633,571,600,589,567,582,602,591,560,612,592,592,557,566,579,563,563,599,599,586,569,589,602,604,605,660,604,599,645,576,579,539,643,636,632,594,591,601,644,576,665,567,602,577,580,552,612,625,591,650,612,619,629,623,529,560,517,558,550,567,561,563,532,552,614,585,509,550,546,571,548,565,562,537,526,572,591,550,663,528,585,555,574,612,638,638,621,603,621,584,624,629,684,539,641,594,595,607,558,569,613,592,641,618,593,616,597,624,585,599,608,647,575,507,527,526,515,536,518,495,514,504,502,495,489,490,500,495,525,504,474,483,512,469,486,472,475,532,504,466,554,525,392,425,405,415,409,409,420,421,400,424,404,428,403,436,418,400,420,405,415,438,404,392,443,450,469,432,446,497,493,488,448,485,449,479,440,454,449,480,490,464,445,481,466,459,471,450,454,462,488,461,431,468,449,469,605,550,553,518,512,532,521,549,563,541,594,511,550,543,556,540,529,573,515,573,528,575,501,546,502,591,543,537,577,537,557,531,549,575,564,567,580,567,576,572,547,518,518,552,534,550,572,576,533,536,555,526,576,532,582,423,461,441,414,424,479,422,439,434,422,455,444,435,471,448,441,439,465,461,439,447,426,425,447,456,429,454,457,444,563,573,568,578,590,610,625,599,558,594,587,606,629,600,596,603,618,571,611,575,642,609,592,604,607,575,587,579,588,622,570,550,554,599,576,593,547,576,577,546,560,580,567,613,584,533,579,560,599,557,599,538,568,610,557,603,568,572,563,568,492,512,468,461,470,486,491,498,501,469,476,465,475,472,485,458,487,470,468,489,455,479,485,500,494,483,481,465,499,470,499,472,528,501,499,493,520,508,522,502,460,499,525,494,550,473,469,536,524,525,488,537,525,495,503,527,483,496,492,525,524,518,509,439,412,436,441,423,437,418,428,413,420,446,431,450,417,442,425,453,415,407,404,412,447,424,437,467,437,417,431,454,403,463,485,514,485,523,526,541,515,506,517,490,488,494,527,478,519,474,482,501,501,473,467,533,503,486,456,503,504,541,522,529,536,493,492,476,403,418,411,418,407,425,406,437,434,446,442,389,416,429,433,451,422,439,464,446,433,433,408,446,434,447,442,432,409,407,424,487,535,542,563,563,533,523,567,586,563,581,566,589,535,568,573,556,611,547,575,577,529,562,516,521,513,556,531,548,600,585,641,588,595,644,557,589,575,615,571,556,562,584,618,596,592,581,572,595,564,574,586,592,547,588,606,568,635,568,590,616,586,579,575,522,542,501,555,555,583,592,566,563,589,566,540,547,589,549,595,542,588,608,541,552,534,564,579,560,545,505,547,575,519,542,555,554,511,462,422,421,440,465,448,472,478,473,479,442,450,455,477,462,450,466,459,459,465,497,457,474,469,471,462,479,458,448,459,517,413,475,428,453,524,447,436,499,386,429,463,521,504,463,489,476,434,473,550,526,447,471,506,525,456,474,500,667,715,689,656,650,663,665,729,629,671,682,665,698,690,680,693,701,663,633,686,646,664,665,690,700,708,712,652,660,707,669,674,666,680,673,614,628,654,603,646,647,656,614,640,611,637,651,631,622,639,616,636,684,629,664,630,632,651,631,648,653,667,648,604,629,667,611,575,611,577,608,583,613,611,590,579,627,623,644,585,627,626,603,608,576,604,603,615,579,614,595,605,588,575,619,600,625,615,594,597,577,627,587,618,608,576,647,608,610,648,576,601,594,602,644,589,626,628,657,625,589,593,624,631,597,636,616,635,611,610,576,599,650,604,611,608,655,630,637,616,607,604,621,634,611,596,646,628,628,670,621,614,607,664,586,650,580,619,612,635,623,636,630,667,587,585,583,574,619,577,622,629,627,616,630,591,609,613,651,618,572,615,609,610,588,606,613,570,638,547,484,545,525,565,579,556,561,529,555,544,576,561,526,573,576,502,550,577,558,542,577,532,513,543,591,530,593,561,505,500,577,560,673,623,642,630,687,658,605,636,643,646,679,642,681,639,631,606,671,637,660,618,652,593,624,599,618,657,651,621,659,662,632,594,675,681,605,648,607,574,588,617,583,640,625,620,624,595,597,569,633,635,625,597,667,586,633,631,618,572,605,634,636,632,615,642,642,555,608,576,604,591,583,579,625,593,617,584,585,599,653,562,584,589,626,613,615,630,591,611,596,584,594,614,626,656,636,626,619,588,630,615,579,650,594,607,583,601,587,567,615,568 0 214.525842 0 0 0 diff --git a/test/rna_paf.exp b/test/rna_paf.exp index dd2fdc8..cfce5d9 100755 --- a/test/rna_paf.exp +++ b/test/rna_paf.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO002 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 3000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna002 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 2048 -263.72473 548.788269 3000 70084 624,617,661,628,581,616,629,624,621,630,615,624,599,581,606,617,620,639,612,590,599,615,589,597,647,634,629,606,643,612,643,604,614,634,634,653,593,613,529,538,526,535,534,535,525,535,536,537,526,550,534,525,531,540,530,538,541,524,546,530,530,539,521,547,522,536,534,533,540,543,539,522,536,537,539,523,536,526,525,534,515,527,517,513,531,512,516,521,526,522,510,517,530,519,513,500,505,519,511,523,521,528,541,502,520,528,520,527,528,528,519,521,518,523,529,527,530,510,530,525,530,527,515,686,689,716,712,723,670,699,687,710,674,704,715,704,667,705,700,717,665,711,689,722,729,655,709,719,681,749,700,738,713,683,702,682,694,684,658,688,660,716,653,683,711,713,686,679,683,696,686,697,672,698,656,705,698,682,680,683,672,689,705,674,700,692,722,695,690,680,685,681,698,686,696,685,705,684,702,672,682,709,713,690,708,682,685,684,671,690,699,723,653,654,646,668,653,642,638,678,651,653,675,698,661,662,643,666,656,686,650,654,657,646,642,656,670,627,638,664,669,652,656,658,672,667,662,638,665,644,674,685,652,650,646,582,597,569,571,569,580,583,584,587,583,582,571,586,590,584,553,567,576,584,575,581,572,569,590,574,580,588,593,581,588,579,593,579,578,588,579,575,583,594,585,691,699,702,699,677,711,704,705,688,708,721,685,708,684,686,690,698,686,692,718,715,713,693,701,710,716,684,707,701,701,715,694,688,709,706,699,695,693,700,685,685,680,679,687,660,692,692,664,687,682,689,682,658,664,673,663,679,682,678,677,655,681,666,661,670,677,688,666,653,632,659,678,664,666,686,666,675,683,666,669,668,686,685,695,622,607,604,613,624,594,617,630,613,622,622,594,641,631,599,609,609,622,608,623,625,604,611,624,623,616,601,605,643,613,605,596,634,615,624,625,615,645,614,608,598,635,628,625,597,568,580,579,596,595,579,572,581,586,589,590,581,608,571,570,607,574,566,575,584,579,593,588,585,583,574,575,580,568,580,594,562,578,588,582,593,589,575,593,590,561,555,573,535,561,538,563,560,561,552,560,556,547,554,542,538,554,557,561,547,560,541,545,563,562,550,553,557,554,548,552,544,537,546,550,539,561,534,566,562,547,551,540,560,560,693,686,714,704,696,701,703,684,706,688,711,692,729,708,714,696,688,704,716,703,701,715,736,702,706,681,686,701,717,717,718,704,694,703,705,700,691,700,707,676,701,696,673,666,685,655,667,659,679,660,683,685,665,673,656,673,673,664,671,660,662,672,677,665,670,671,663,652,675,650,652,683,675,657,678,678,677,684,636,660,672,667,673,690,685,675,668,593,599,601,614,629,610,599,597,634,601,621,618,629,592,603,597,595,586,593,621,625,601,617,600,599,623,635,617,604,606,602,601,606,616,614,622,609,610,602,634,601,613,624,632,598,751,701,716,748,739,748,761,720,745,753,695,716,754,702,675,748,705,767,750,771,732,736,706,700,719,719,700,680,741,712,692,724,755,663,742,701,759,684,690,731,721,722,697,729,712,710,709,704,670,703,692,724,712,702,741,717,731,716,718,675,709,731,701,722,727,738,736,703,723,708,711,712,713,736,725,757,676,713,701,685,702,692,679,656,712,702,678,694,681,687,645,705,684,687,689,704,690,704,697,718,694,681,717,729,687,700,680,668,714,693,664,704,682,659,718,675,641,660,645,665,623,625,612,675,653,616,619,631,665,632,638,684,637,700,661,654,656,652,654,656,681,629,641,618,633,683,625,641,639,626,658,655,659,675,637,634,637,651,647,600,613,591,601,610,575,589,581,605,604,599,594,605,597,606,590,594,579,602,593,591,592,593,612,585,598,599,601,585,592,597,610,588,598,598,600,588,593,592,589,585,621,619,706,729,661,697,700,742,746,699,743,729,721,743,751,710,740,722,732,756,698,677,717,752,691,697,764,731,701,692,661,730,738,730,679,697,740,665,735,678,743,694,735,723,746,731,697,731,730,696,696,703,701,707,718,711,719,721,725,685,704,724,673,692,702,704,705,713,721,727,734,716,718,740,687,685,716,713,693,701,710,706,698,707,694,705,696,746,714,691,695,705,727,719,688,693,733,686,659,652,648,640,671,670,629,672,634,663,650,646,643,650,649,689,643,645,645,654,657,671,665,654,669,639,640,677,637,623,670,691,668,635,659,639,655,681,646,656,654,681,633,656,628,675,692,690,652,697,689,631,670,700,681,677,678,633,663,700,645,677,680,676,699,637,673,704,699,691,649,683,681,674,661,627,706,686,671,654,675,672,678,588,606,591,617,609,611,587,592,585,612,631,611,599,611,601,606,600,606,618,606,621,610,603,616,611,599,610,598,586,620,609,607,601,616,598,601,608,603,585,605,536,622,603,601,620,627,583,568,608,654,589,569,619,624,628,582,570,632,581,591,613,600,626,570,584,582,634,633,563,661,581,564,576,611,610,565,622,554,568,616,615,557,650,622,539,596,580,575,600,570,588,593,587,593,584,587,592,591,568,595,595,571,583,593,593,592,600,603,582,591,586,568,615,587,591,588,584,580,593,565,594,587,582,568,559,566,559,573,579,567,568,569,565,551,574,566,561,566,566,567,559,578,559,561,570,574,576,570,565,558,561,570,573,575,559,572,562,564,559,566,565,564,565,563,551,559,572,561,556,563,568,580,568,552,556,568,553,528,562,552,545,553,540,536,550,550,545,542,555,548,537,549,548,557,543,541,548,550,553,551,548,550,547,537,540,553,559,550,554,544,557,547,554,545,551,547,541,533,550,552,552,537,717,666,690,681,676,689,588,704,661,674,671,706,664,686,638,652,707,651,643,658,689,665,712,655,697,673,633,680,689,661,657,686,692,702,681,663,665,671,684,666,667,691,639,736,640,589,619,596,593,597,584,604,617,604,599,577,583,588,608,568,585,590,604,589,584,582,611,561,574,598,607,584,592,595,578,603,578,614,611,615,604,570,568,617,587,575,591,597,555,580,577,563,579,583,571,585,566,559,583,569,586,561,568,571,568,600,588,578,552,558,587,552,573,571,553,548,587,598,598,562,562,592,595,558,571,580,569,568,543,574,568,557,687,662,676,680,670,677,692,675,670,678,665,685,659,660,685,683,652,674,683,674,676,670,668,702,675,666,657,682,684,683,670,685,696,683,662,678,697,680,676,689,725,681,675,673,675,682,681,679,687,680,683,665,676,658,677,674,673,674,672,703,701,676,701,655,664,675,671,675,672,693,678,683,695,687,686,672,679,670,688,663,668,673,680,677,679,755,718,732,749,737,747,745,710,735,735,736,768,747,752,735,740,753,739,730,757,755,750,762,769,736,703,767,745,763,730,765,707,741,744,792,739,736,731,765,713,757,776,715,726,737,758,758,736,749,717,710,736,713,708,702,754,715,714,713,724,719,800,737,728,729,726,741,751,711,769,714,742,739,779,751,710,713,710,734,714,706,746,737,736,671,710,688,673,689,744,713,680,700,688,691,725,682,702,695,709,692,719,713,710,696,686,717,703,720,741,728,682,706,728,697,695,665,695,682,700,723,665,663,693,684,609,613,602,628,646,603,613,629,625,605,620,644,610,615,634,604,595,630,644,629,606,625,618,606,598,637,596,633,630,640,610,630,617,618,624,621,598,633,634,617,632,604,579,556,578,581,570,577,574,574,570,563,558,557,584,568,567,563,564,577,574,565,558,577,582,570,567,567,575,579,563,551,563,562,567,553,575,554,575,588,572,562,579,564,525,521,516,525,530,523,510,531,523,525,528,529,524,531,523,537,532,542,537,528,531,531,529,528,527,537,530,541,525,514,512,540,521,544,524,543,524,533,511,507,539,517,534,533,528,528,534,560,538,530,550,556,545,532,561,547,554,543,546,549,519,533,527,547,548,539,534,542,539,558,547,546,543,535,545,551,545,539,542,549,548,551,534,544,542,537,538,552,562,543,549,549,562,546,553,533,550,547,563,560,548,558,551,553,553,552,548,564,558,568,556,543,540,553,560,539,549,553,566,564,561,546,555,558,548,556,568,548,549,549,542,552,561,545,546,559,543,542,548,558,564,543,555,542,545,564,543,558,557,556,555,545,546,561,544,541,559,561,536,563,545,558,544,547,551,545,535,542,524,534,543,536,558,549,553,535,543,516,516,522,530,535,534,537,525,517,517,541,518,527,530,526,515,515,532,528,522,526,508,523,524,531,532,522,513,527,524,523,521,532,527,545,536,535,525,517,510,500,508,508,505,500,503,512,490,503,516,506,501,499,508,495,500,491,514,513,515,494,497,508,500,501,482,499,498,528,505,520,517,502,518,492,493,497,486,500,506,496,506,514,494,487,511,494,500,520,506,505,498,506,506,512,514,500,523,509,498,501,510,494,507,502,498,524,505,526,508,503,505,522,501,507,495,504,509,483,504,508,496,521,498,500,523,649,658,634,640,647,633,628,648,661,657,650,639,668,609,630,619,648,639,643,660,645,644,660,639,679,638,641,652,644,628,637,628,639,656,656,644,654,674,661,651,674,655,635,661,556,579,577,553,554,557,548,551,560,526,560,566,559,562,569,559,571,583,565,560,532,564,565,557,596,572,565,559,558,563,577,569,556,569,568,558,550,544,588,552,557,553,557,569,550,556,542,548,574,541,548,561,553,565,566,562,540,556,604,550,547,575,535,534,559,585,557,528,560,562,593,561,553,564,560,558,541,557,561,545,531,539,568,587,557,579,574,531,603,591,596,586,606,603,592,599,590,590,595,595,591,591,607,607,615,593,606,613,597,598,610,594,586,604,596,592,598,596,596,595,597,593,601,594,604,600,601,615,587,571,586,584,591,577,571,586,571,573,604,582,575,586,578,576,577,562,583,590,576,577,588,584,572,578,558,580,564,582,587,603,591,585,582,571,583,585,568,582,580,572,583,573,590,661,676,666,696,649,674,667,666,676,677,665,661,656,650,655,696,700,673,678,682,653,680,646,676,658,643,667,672,661,666,674,672,651,676,696,676,687,669,649,656,687,694,659,688,646,599,612,613,621,620,609,628,624,618,615,628,635,607,599,610,599,625,616,609,615,612,611,589,602,608,620,603,623,618,620,637,615,620,626,610,613,615,606,611,637,626,611,582,582,578,578,580,574,587,572,594,578,578,601,583,571,579,588,571,584,563,588,569,570,572,569,578,559,573,581,569,575,587,571,591,585,556,569,573,563,580,622,675,646,644,612,636,622,604,628,645,633,607,640,606,600,647,644,614,590,623,619,646,639,598,636,613,625,611,621,614,620,621,620,603,632,624,630,622,610,653,600,603,598,623,631,647,621,606,617,617,607,618,611,620,621,602,632,602,611,621,608,609,607,618,603,610,611,619,603,609,612,605,602,616,610,617,624,611,602,607,620,604,620,616,616,621,627,642,610,596,605,568,581,578,572,574,590,570,572,590,588,587,571,575,570,581,582,585,582,560,566,580,570,564,579,565,564,572,589,585,583,583,575,584,580,571,588,563,576,567,587,575,576,574,683,723,685,692,672,637,724,670,657,601,640,721,648,689,691,684,659,618,655,713,697,681,689,673,667,650,715,693,629,673,678,686,643,711,664,677,656,668,707,713,709,724,704,702,728,706,722,734,731,710,705,729,709,688,707,689,723,713,708,714,711,712,715,701,694,711,690,693,702,721,675,677,689,719,712,707,704,709,698,713,641,639,662,649,630,652,616,657,625,645,648,662,654,642,650,637,651,655,644,688,637,661,630,628,643,639,630,651,666,666,650,665,654,634,637,617,659,635,657,647,666,642,643,643,558,579,587,586,563,570,578,597,592,593,596,592,565,586,585,572,574,589,570,592,566,565,577,572,566,583,576,582,587,597,582,590,591,552,575,579,589,572,573,574,574,566,660,703,638,727,679,634,682,636,657,676,699,687,671,672,671,627,747,702,670,683,680,741,738,616,671,685,674,673,651,677,706,666,659,730,684,704,658,652,656,690,700,677,702,627,585,721,699,712,706,707,711,722,705,703,703,715,684,736,704,718,726,716,714,715,722,714,703,721,716,723,708,707,713,713,709,721,702,737,707,728,632,559,589,609,612,563,561,610,607,610,611,616,575,612,642,591,633,588,594,604,582,588,552,596,612,609,618,589,612,593,591,650,609,597,577,604,605,573,591,581,564,601,586,570,591,586,585,557,576,568,568,562,550,589,596,592,557,557,563,578,564,576,579,579,561,569,573,578,575,585,562,558,583,585,577,566,572,597,639,627,632,621,611,627,610,625,619,646,630,606,635,638,621,622,610,616,637,603,639,623,607,623,614,603,624,613,633,619,627,644,602,619,597,607,631,617,606,657,607,583,610,594,621,601,608,608,602,617,606,595,589,605,607,584,610,622,612,592,598,603,603,613,593,612,610,588,620,628,604,610,614,594,618,621,602,607,634,592,604,577,584,600,590,583,592,575,588,585,582,577,598,587,577,578,590,593,598,579,604,589,592,581,593,584,590,575,588,583,594,584,585,583,584,596,576,586,581,581,610,590,589,601,571,586,591,602,588,601,570,589,583,602,600,584,590,591,576,576,585,592,587,591,580,610,603,586,601,580,593,590,575,582,594,597,582,583,588,587,576,590,587,550,551,554,551,553,551,548,549,544,555,555,552,561,546,549,550,552,557,543,556,560,551,556,555,558,556,556,555,556,545,543,561,545,541,542,554,567,550,545,546,550,562,549,559,540,525,519,531,536,534,535,531,544,514,524,526,549,531,539,527,532,531,516,543,518,527,538,529,544,532,531,514,524,538,529,532,529,524,527,523,526,533,531,540,526,548,659,663,676,665,677,672,672,678,674,683,683,677,668,686,686,673,655,684,670,671,675,669,683,658,669,646,669,653,669,683,674,664,666,691,659,698,652,665,667,680,677,621,672,632,660,643,623,639,645,638,633,641,644,649,636,660,647,653,619,640,635,629,625,651,623,647,638,652,636,648,638,648,654,634,660,633,636,642,663,642,635,641,639,657,650,640,650,639,643,645,629,605,615,625,603,642,622,590,626,627,645,629,602,584,622,597,614,631,615,627,606,611,619,619,600,611,629,622,615,601,639,610,621,631,644,618,598,636,622,631,603,625,615,572,579,571,581,587,580,568,579,575,569,579,583,581,576,573,588,589,586,569,569,586,577,578,578,584,584,566,569,575,592,577,597,565,588,577,583,571,573,579,575,577,589,581,591,574,571,582,592,599,640,615,655,606,595,615,676,608,642,636,652,630,604,604,626,586,616,633,585,592,597,633,597,702,602,614,618,585,637,638,638,593,600,593,613,644,599,616,602,614,595,607,603,623,613,619,617,609,620,645,619,620,608,623,609,612,611,622,605,623,608,624,623,618,613,621,612,613,617,605,608,605,614,639,629,610,610,608,613,624,625,588,573,580,573,570,573,598,554,578,575,573,598,573,581,580,582,571,590,581,582,589,586,576,582,576,591,569,584,580,563,581,584,587,576,580,589,572,584,577,574,582,559,558,568,560,552,554,565,571,562,562,569,571,549,557,545,552,540,546,552,575,559,554,546,554,551,564,544,551,559,571,545,556,552,549,563,561,569,560,550,558,547,548,526,566,550,559,564,551,572,546,554,544,551,565,551,559,555,546,564,558,562,557,558,567,558,552,554,554,557,570,550,566,555,562,561,556,557,557,556,547,565,568,557,531,603,585,613,598,567,607,645,601,605,633,648,615,617,604,608,607,614,588,612,649,598,617,609,610,623,622,586,617,620,636,635,602,615,598,658,650,582,626,616,616,606,565,578,569,567,581,594,576,572,574,590,577,587,571,574,569,575,588,558,580,570,575,570,584,571,574,592,585,564,568,594,584,563,572,592,548,563,559,580,580,597,569,580,568,607,669,632,639,675,626,650,649,646,612,623,653,604,611,647,617,570,661,588,640,626,664,623,642,661,642,635,641,645,665,629,636,650,617,644,621,629,598,641,650,643,649,622,624,651,638,699,708,691,677,686,691,692,680,671,700,690,701,687,689,676,699,683,661,687,708,688,715,684,683,689,722,687,686,683,681,683,697,700,706,677,699,695,707,689,690,672,657,663,678,675,684,674,696,687,685,662,686,672,688,672,664,677,692,674,687,672,677,673,666,661,658,669,685,662,694,661,667,676,668,675,665,682,677,690,677,673,660,694,714,722,668,700,705,730,709,714,710,731,710,740,719,714,722,736,734,729,746,725,724,756,721,691,725,697,742,699,692,721,739,744,697,664,743,696,723,744,675,709,713,738,699,726,677,697,712,697,699,720,693,682,710,712,682,701,701,709,672,717,691,725,705,699,700,698,713,712,706,704,716,706,724,685,713,665,687,693,704,694,698,684,708,701,694,632,700,676,681,704,687,677,689,624,759,683,692,681,688,688,642,713,681,727,719,662,695,755,719,717,674,640,690,662,657,688,641,718,707,706,728,727,675,686,736,684,658,667,652,658,648,647,642,653,668,671,661,653,667,637,627,665,637,657,629,659,659,653,645,670,666,636,668,657,665,640,674,669,644,627,670,683,673,653,663,648,658,636,671,639,650,736,703,732,709,703,730,699,700,730,686,693,701,677,688,707,718,728,673,673,678,693,711,702,701,692,678,719,663,710,691,738,686,709,682,703,697,686,666,680,669,684,698,709,741,720,706,722,728,720,704,697,727,704,721,710,723,733,731,713,750,747,727,722,702,724,735,708,742,730,728,707,720,746,729,732,728,742,724,718,688,698,736,722,646,654,632,648,639,612,625,641,631,641,655,629,641,646,625,671,642,650,630,636,660,637,627,639,636,649,641,643,641,619,631,604,637,636,628,625,670,661,638,640,639,640,631,621,628,671,651,672,672,618,602,663,727,655,632,649,710,651,581,678,653,689,672,648,681,631,672,661,674,648,640,665,711,645,705,647,630,634,672,637,636,691,701,649,622,697,670,692,716,574,681,673,669,675,696,664,689,699,675,674,656,660,664,653,661,670,670,673,687,669,653,675,674,652,688,670,663,666,671,684,680,673,650,649,676,682,651,659,668,665,674,669,678,651,667,728,674,702,672,669,669,690,671,670,645,666,703,646,654,693,683,682,642,698,703,653,666,681,681,660,679,680,700,689,658,717,679,673,665,654,648,672,680,672,577,597,586,573,590,569,586,537,595,571,596,604,585,567,569,594,608,597,580,605,593,554,601,590,592,579,587,578,546,566,570,590,593,601,599,578,584,603,602,563,566,552,567,571,551,558,566,554,549,564,541,560,571,558,558,557,558,549,546,533,547,570,549,549,558,552,561,562,557,565,544,575,559,563,576,554,565,554,558,547,570,597,542,548,529,541,539,537,545,549,551,531,545,541,541,539,539,542,546,549,551,539,545,533,535,547,538,535,538,541,536,542,548,544,543,530,529,535,541,539,542,530,531,546,528,544,544,542,555,540,535,532,530,656,707,674,642,671,679,649,690,658,663,674,643,656,676,666,659,686,653,653,653,678,677,653,679,663,646,687,654,653,650,665,684,687,673,655,668,666,668,672,672,675,565,563,604,594,586,575,615,580,584,596,587,586,599,586,579,595,605,577,589,581,584,582,601,595,572,582,587,572,591,595,582,591,582,599,590,562,590,606,602,576,582,654,607,613,567,595,616,586,589,610,544,576,553,570,627,550,566,577,560,636,573,552,576,636,525,639,609,632,579,595,574,558,584,628,569,641,631,570,532,578,568,566,561,559,597,661,611,636,601,576,579,582,582,580,557,570,573,588,567,574,575,570,573,576,574,572,565,578,581,573,564,578,563,575,562,562,588,586,561,571,572,590,571,581,592,565,571,566,590,570,574,610,686,644,660,654,665,647,677,681,705,678,712,671,684,738,693,675,609,656,658,613,623,660,640,695,645,671,642,701,658,670,699,669,675,686,695,658,720,687,676,656,675,676,635,675,681,659,665,667,690,695,671,677,685,660,659,676,672,685,663,674,671,673,662,652,683,668,665,666,670,682,675,678,671,666,677,677,690,676,667,665,678,682,671,684,684,660,679,678,754,765,726,678,707,699,712,701,739,754,696,766,703,740,720,711,705,731,702,708,738,702,726,730,728,728,698,734,696,714,674,719,713,697,741,713,744,693,708,731,737,766,727,744,687,733,698,696,715,697,723,701,713,726,711,712,709,720,728,727,714,697,709,724,718,699,737,728,693,703,727,707,706,712,717,703,708,718,708,718,706,735,753,708,667,704,689,698,706,675,679,681,666,669,695,703,668,700,695,704,712,698,664,732,694,695,693,692,670,707,686,707,677,711,711,707,672,687,696,685,708,679,715,677,691,685,692,696,693,669,684,676,679,683,684,660,701,676,652,695,679,688,694,665,677,669,704,663,679,667,678,685,663,682,671,670,659,657,660,708,695,667,665,650,672,703,631,679,669,679,665,665,687,675,667,705,699,686,668,682,686,642,660,688,681,682,699,643,695,683,677,680,689,687,680,684,672,678,696,690,697,659,675,685,667,644,678,686,700,667,676,659,660,665,663,696,675,682,673,687,696,654,664,669,675,662,681,671,675,672,680,661,695,682,692,655,698,687,664,686,641,665,640,673,681,693,667,664,677,672,668,665,676,672,669,687,689,701,691,674,660,677,668,673,689,671,690,677,688,660,668,677,653,691,699,701,701,655,701,686,678,684,677,654,689,690,649,686,674,670,659,687,698,684,667,668,686,682,654,694,677,667,692,617,619,614,614,603,611,610,627,613,654,618,617,657,610,623,617,597,600,607,626,628,622,612,616,632,635,631,619,581,586,618,603,591,619,624,634,616,614,621,634,620,638,613,601,613,655,624,632,700,695,611,640,679,581,652,574,682,627,609,656,678,673,666,629,662,679,622,647,569,668,653,627,612,611,657,600,649,595,619,668,596,654,599,644,724,661,667,650,644,693,705,699,704,679,672,700,658,682,685,688,689,670,689,697,695,679,710,702,701,684,710,684,675,713,713,708,704,686,674,687,664,701,676,696,712,673,690,694,677,671,671,716,706,678,675,684,691,697,678,701,693,679,675,672,700,682,695,689,669,667,698,685,674,673,695,660,668,695,676,673,670,710,674,674,671,664,692,683,704,650,682,669,700,686,699,653,592,621,612,634,604,620,639,624,633,618,610,641,615,597,609,601,620,627,612,598,596,618,602,590,607,626,616,600,620,620,612,594,625,634,593,610,612,597,620,613,567,646,571,563,586,589,594,589,569,587,564,576,574,576,570,558,560,568,583,574,555,581,565,564,589,565,562,574,542,548,576,563,570,554,592,564,573,577,576,550,588,589,596,564,578,562,599,562,575,715,714,763,721,718,730,693,747,721,703,714,697,712,718,743,712,748,729,750,766,724,712,712,716,737,715,726,721,717,733,735,724,722,728,725,711,666,686,734,725,737,710,705,729,696,754,669,643,658,674,679,638,663,654,634,659,622,691,644,660,651,658,651,626,666,647,664,644,665,642,655,667,677,672,663,689,684,646,657,643,651,674,650,648,649,649,683,629,628,668,612,629,633,604,683,616,586,619,606,603,593,623,578,662,594,676,651,578,576,642,651,599,619,632,628,616,615,631,613,575,614,564,600,634,671,671,572,628,576,602,568,690,681,701,703,712,683,700,701,698,682,692,691,701,684,686,688,690,707,700,703,697,708,681,706,703,689,685,681,684,694,697,715,699,699,711,689,704,696,704,703,682,662,718,669,695,682,695,688,692,688,679,705,689,665,723,694,694,697,682,699,697,702,691,671,713,685,682,691,694,679,670,671,681,676,687,679,681,689,684,685,682,676,684,681,673,691,686,736,685,654,657,674,691,668,691,652,677,685,693,685,700,670,647,687,653,664,691,660,687,696,662,682,681,692,667,679,682,706,669,660,647,711,690,682,678,683,674,665,669,662,686,674,649,683,661,666,706,681,683,675,666,696,682,668,658,665,694,658,671,677,671,662,660,675,686,668,662,670,675,683,701,685,635,674,672,665,688,694,687,657,698,686,684,704,672,690,676,680,660,691,694,656,698,659,662,659,675,692,692,698,698,700,658,650,691,670,679,662,674,679,654,660,694,664,672,682,671,649,669,685,684,711,668,687,683,675,660,677,668,701,697,679,671,679,715,681,719,678,673,669,706,680,686,697,692,691,689,686,707,701,700,686,668,686,703,690,686,690,677,693,699,691,694,671,690,696,718,691,711,692,672,690,663,694,589,643,599,609,563,590,638,623,598,611,635,617,567,564,617,609,567,605,617,625,564,580,594,595,599,600,624,636,609,639,573,562,504,615,586,623,588,592,577,587,535,664,551,604,547,597,622,615,616,620,593,593,587,562,648,590,568,609,626,582,610,596,638,617,589,611,637,604,607,618,564,631,598,641,594,603,618,610,606,595,602,597,603,524,519,535,533,540,529,544,522,510,524,527,515,538,527,529,516,526,530,544,537,525,527,526,530,528,508,526,524,517,530,528,533,524,538,530,531,531,530,515,537,539,523,527,518,522,540,515,532,523,655,659,642,652,655,659,662,642,652,657,653,665,659,634,668,660,644,630,640,668,649,658,657,660,649,636,642,635,666,654,646,653,679,659,641,645,649,639,652,652,657,638,667,699,663,680,715,691,652,710,667,660,657,658,679,677,673,661,669,645,670,718,678,655,712,694,675,714,667,663,688,651,674,647,660,661,651,675,702,659,668,652,672,701,685,654,673,645,693,678,694,712,656,718,688,782,685,721,747,654,692,672,681,668,712,659,697,700,668,731,704,698,689,684,709,682,716,681,699,660,681,685,733,729,654,691,683,727,681,714,640,678,679,697,685,663,661,621,670,633,634,672,650,665,679,663,660,673,643,688,671,647,658,673,660,654,658,644,646,669,663,663,652,661,646,638,635,663,659,652,665,665,638,653,635,654,625,644,670,652,662,635,686,695,749,701,707,680,692,670,666,683,703,680,694,692,699,696,687,700,700,724,689,635,691,705,706,677,668,683,691,642,732,703,697,707,710,686,666,713,680,701,684,679,683,696,719,709,713,709,711,685,696,690,700,679,734,692,702,709,698,705,697,700,702,689,694,696,689,710,692,685,717,691,692,696,722,706,705,698,718,713,719,699,700,719,689,715,702,716,689,696,684,648,616,656,652,633,623,626,629,698,604,630,609,652,606,593,606,671,588,667,587,628,692,628,661,604,630,633,573,608,649,614,631,647,626,645,645,609,683,652,607,573,606,565,572,592,582,591,554,580,573,600,554,570,578,552,588,575,594,544,586,621,599,544,545,551,559,562,568,596,573,598,548,576,590,586,585,575,589,601,600,626,583,606,598,574,555,573,548,566,548,561,576,563,553,555,569,546,580,549,558,563,567,558,556,558,552,552,569,569,549,559,560,547,553,580,579,561,562,551,557,552,571,523,543,541,571,557,552,556,548,552,549,536,545,551,556,538,545,550,551,544,554,539,547,544,537,546,554,546,554,546,541,548,544,545,541,544,531,540,546,553,551,559,757,725,708,699,715,679,723,711,739,714,710,743,710,713,648,712,651,724,783,722,646,712,754,684,768,722,769,684,681,728,716,637,763,722,692,677,704,737,697,729,703,716,706,737,733,721,728,730,703,707,704,722,708,707,696,714,713,706,735,718,713,711,714,716,720,734,704,716,728,730,716,721,722,725,730,727,718,696,717,722,727,730,722,691,721,622,618,603,626,664,595,599,618,620,644,638,628,638,642,625,625,615,620,616,629,637,631,629,625,635,604,618,615,600,616,610,602,627,621,623,632,624,621,629,603,603,562,571,567,547,563,572,557,559,567,581,558,560,555,555,557,555,557,544,568,561,551,574,560,583,566,560,559,566,574,558,557,554,577,562,550,550,562,571,566,555,566,566,606,598,619,580,575,577,605,576,607,596,584,597,618,600,608,596,586,566,590,609,576,588,581,565,593,600,594,636,619,578,621,566,582,601,579,591,593,559,580,607,608,591,654,558,549,555,539,551,548,549,569,561,569,550,564,563,551,558,560,553,571,563,574,562,547,536,562,555,558,561,566,559,554,546,552,542,560,549,554,544,551,562,550,556,566,554,537,547,574,568,568,578,581,561,574,570,573,570,556,573,565,551,571,576,584,555,566,575,568,559,561,563,571,553,589,575,561,589,555,569,595,576,550,556,571,589,556,574,610,679,624,657,671,671,692,659,662,656,678,658,685,711,670,692,653,660,692,652,689,692,644,646,666,687,689,681,667,673,632,657,686,678,693,663,661,724,660,604,590,605,588,601,587,618,600,629,599,586,620,588,600,609,607,621,613,609,615,621,611,610,622,613,608,602,605,613,611,602,640,612,585,609,618,608,598,583,619,598,615,629,605,548,568,637,663,627,670,623,583,594,618,638,590,595,586,577,585,573,587,608,593,618,660,577,624,643,602,637,618,611,611,600,537,588,605,617,636,609,639,630,587,576,598,595,581,586,593,608,583,596,589,598,592,604,583,596,593,569,576,567,598,581,608,590,579,575,587,595,579,600,595,594,602,577,577,594,587,588,575,580,570,583,594,557,546,559,566,544,531,540,548,541,557,536,559,561,571,556,554,544,553,554,534,540,565,543,546,550,556,545,550,546,564,568,552,542,557,568,554,555,571,559,552,549,549,547,567,555,550,555,558,560,558,555,564,565,552,567,568,567,523,569,578,568,569,557,571,552,561,564,546,572,550,560,563,563,569,549,575,571,540,549,561,573,688,704,695,680,701,712,721,690,698,704,694,710,701,717,697,689,728,676,703,704,700,687,695,736,688,677,719,677,710,694,730,721,702,720,734,723,697,685,687,725,732,719,656,630,652,649,627,627,639,638,648,643,651,644,637,644,636,651,661,645,625,639,653,672,639,641,688,630,657,624,663,654,651,681,664,636,667,655,641,653,662,656,647,590,611,611,587,584,606,595,596,592,604,598,576,596,596,607,609,595,604,582,593,594,587,617,615,593,603,613,601,605,610,586,598,596,591,591,620,609,609,581,589,585,608,594,608,561,549,569,558,561,568,583,550,560,560,570,562,559,563,551,568,568,570,561,570,555,568,574,568,565,575,574,559,552,561,563,549,560,564,562,561,573,565,565,558,560,562,553,578,573,553,568,555,550,560,567,563,563,552,564,578,577,570,567,569,561,567,564,555,556,552,564,554,565,558,565,577,559,563,548,559,564,561,550,570,566,565,572,584,568,570,566,558,570,556,688,718,669,658,686,696,670,667,672,673,677,675,684,658,685,685,675,688,707,668,670,699,667,701,686,688,680,690,692,666,682,686,695,687,672,710,682,668,678,684,701,685,683,674,682,688,631,665,653,690,660,692,682,663,660,686,646,691,659,679,678,656,656,616,673,666,668,699,670,656,669,631,672,669,662,704,646,694,658,691,682,682,679,701,690,670,616,640,618,622,636,634,625,619,613,629,638,589,648,629,616,619,641,613,627,633,617,612,649,633,630,627,628,632,621,636,639,617,617,609,595,623,598,589,633,625,617,629,628,608,623,657,603,590,629,595,623,628,591,606,638,628,611,611,671,667,550,675,584,577,606,599,623,618,601,571,600,587,631,630,615,721,629,601,606,612,602,578,606,607,586,593,597,596,588,591,588,611,603,613,603,587,596,621,596,601,593,606,605,606,602,582,602,602,605,602,599,593,604,590,614,585,581,603,586,598,561,558,557,581,574,560,589,552,568,582,572,569,567,576,565,567,567,579,569,579,571,566,545,564,569,570,566,552,553,579,572,560,577,564,573,570,570,579,560,576,566,555,545,553,548,546,542,555,550,561,549,546,544,545,554,561,548,548,550,549,557,572,553,569,554,552,563,548,559,547,565,543,557,548,554,549,543,551,546,563,552,543,558,565,560,563,551,556,539,552,548,572,548,549,546,543,564,552,545,558,549,544,546,558,542,553,558,544,566,566,553,563,555,554,556,553,546,556,557,550,556,548,560,557,553,551,548,561,557,552,679,672,699,696,697,687,676,679,684,668,687,686,695,705,664,698,682,690,669,689,711,677,667,690,687,691,691,705,674,697,685,675,655,670,684,690,689,679,670,694,653,686,679,694,689,704,692,682,652,661,643,650,698,669,653,661,689,671,709,662,678,696,669,695,649,664,692,667,660,661,695,655,657,658,664,665,683,672,666,672,661,670,700,663,663,724,621,591,595,631,615,660,579,630,636,609,608,568,624,643,622,633,585,636,571,604,594,625,631,627,627,646,594,613,591,632,591,642,628,634,575,596,600,608,594,633,612,608,590,561,572,583,573,567,570,565,558,568,578,559,556,565,555,558,559,569,559,569,573,566,575,573,574,564,577,566,568,578,574,573,561,578,558,558,578,575,566,559,565,570,558,547,559,566,557,549,555,554,561,560,551,563,559,549,564,554,561,561,568,559,534,559,564,548,557,563,561,556,556,558,550,572,560,546,550,561,563,544,555,560,553,563,555,529,657,634,631,639,657,640,653,645,619,646,652,645,641,630,672,662,629,663,670,647,648,648,616,678,658,622,656,675,644,654,625,650,669,648,663,656,642,648,644,667,647,671,673,649,653,675,668,677,657,682,662,672,660,672,659,683,674,664,671,665,688,664,686,681,686,674,676,652,666,680,673,651,659,679,663,683,666,695,667,673,654,648,675,687,594,597,616,612,599,603,587,615,601,585,614,576,588,594,615,620,588,613,599,602,599,584,595,605,617,625,577,596,593,588,590,614,599,610,620,586,605,605,603,614,608,619,596,699,731,657,672,662,705,692,651,763,712,734,678,731,695,697,703,730,681,638,667,633,697,692,723,663,677,665,718,687,684,726,673,677,725,684,687,696,680,697,685,738,684,720,732,713,723,709,707,718,725,720,710,739,736,728,693,749,726,695,755,725,718,715,724,731,715,715,701,721,710,732,724,702,756,724,699,711,716,718,725,725,734,720,730,720,680,622,644,631,639,642,634,612,635,629,619,648,678,648,637,595,637,625,644,614,623,626,605,632,652,649,618,634,620,639,638,610,647,633,659,627,674,676,561,553,549,539,567,553,540,551,543,556,532,556,545,567,550,548,547,565,527,550,543,551,543,553,556,551,539,556,541,554,545,547,535,551,553,533,541,549,550,546,539,578,561,548,571,546,557,566,547,578,574,565,564,546,558,549,544,551,595,549,569,567,588,553,575,570,572,574,560,563,558,549,553,576,552,565,544,559,565,567,540,559,557,717,726,694,751,709,745,744,720,730,738,748,705,729,726,715,742,740,699,731,727,742,743,754,703,755,712,708,732,726,715,740,732,730,738,769,745,759,750,740,720,716,747,734,647,664,627,650,723,647,674,638,662,597,659,629,698,620,656,642,650,646,683,678,642,625,669,650,632,649,657,650,682,646,640,661,653,640,660,676,656,674,648,651,710,673,664,538,557,552,543,525,575,538,559,534,550,565,568,576,612,572,574,562,537,549,528,536,552,545,554,540,567,578,542,527,563,575,539,525,544,587,556,539,539,570,553,540,544,555,532,526,529,540,536,539,541,525,529,542,534,525,534,530,537,540,529,533,536,533,542,524,539,519,537,545,523,535,539,526,536,552,543,525,533,528,535,537,522,541,537,520,523,533,537,533,553,560,554,558,562,565,548,546,567,539,556,535,545,557,556,564,557,545,548,554,553,562,549,566,555,544,546,532,559,572,554,549,556,557,564,568,569,555,560,578,574,572,543,566,555,750,740,745,715,762,714,724,728,746,764,759,733,709,727,728,739,715,714,728,724,709,719,749,733,704,722,779,737,754,754,723,737,758,711,742,719,744,747,746,724,738,738,752,729,724,737,719,642,655,653,640,657,678,695,662,662,647,657,683,642,663,648,682,652,699,668,669,666,689,663,617,694,616,648,673,665,668,672,670,654,678,653,700,701,660,648,621,659,672,678,707,675,545,573,562,532,555,540,548,581,550,525,565,537,555,536,524,553,572,540,542,540,547,574,530,556,564,515,558,581,565,527,546,515,535,540,565,538,494,530,548,531,577,543,537,528,533,510,532,532,526,530,536,524,514,521,533,546,521,542,527,534,538,525,530,520,511,536,534,543,527,557,530,546,538,536,521,521,537,531,534,533,542,532,509,487,495,504,513,489,492,496,490,499,510,495,499,497,497,491,489,491,502,491,495,500,492,493,497,500,512,495,485,492,489,510,497,501,511,497,508,499,486,496,507,490,505,490,503,486,490,499,496,494,500,491,502,486,489,502,504,488,482,503,503,505,487,494,501,500,496,503,493,501,492,488,500,511,509,488,497,487,504,490,498,501,501,502,500,484,487,503,498,519,514,510,519,500,517,512,515,510,511,504,510,523,509,507,523,503,508,514,510,507,507,503,513,525,519,509,513,510,505,512,521,502,510,503,516,515,515,513,539,562,555,570,545,546,548,553,553,568,545,554,549,547,549,558,565,548,554,570,562,544,554,564,546,557,551,551,558,574,564,557,552,557,540,570,556,550,549,546,560,557,546,556,546,541,546,548,546,537,544,548,544,545,551,538,540,548,549,555,553,564,542,555,557,553,548,558,542,551,541,547,544,548,546,561,543,559,546,538,565,559,560,580,581,587,585,588,582,584,571,569,597,600,584,587,587,577,576,589,584,606,588,582,594,586,603,570,585,588,588,592,583,577,581,588,574,558,595,602,610,604,605,610,600,585,595,592,617,625,597,594,602,603,612,591,606,600,588,600,601,604,611,607,583,591,611,575,621,603,591,616,598,586,606,599,600,597,598,596,598,585,593,751,724,741,744,752,752,720,727,765,738,722,761,736,758,775,758,752,745,736,740,755,734,732,734,734,745,761,744,763,748,752,711,747,747,721,730,705,771,752,740,752,716,685,694,695,712,719,714,732,741,770,677,761,722,729,724,724,691,695,687,717,733,738,673,697,690,698,710,746,708,721,738,720,729,676,692,707,714,729,731,685,724,734,672,699,627,647,692,691,666,671,680,679,694,702,650,661,655,674,664,662,681,662,711,661,701,685,670,658,644,690,672,683,655,689,666,660,690,703,650,709,559,587,560,553,554,573,576,576,581,564,566,545,587,568,574,582,568,541,574,563,567,569,585,574,592,562,586,588,566,559,575,555,572,563,563,568,558,568,591,567,575,586,571,556,588,695,694,689,710,683,711,699,683,697,694,687,664,687,684,705,693,691,683,702,692,690,710,694,692,712,695,693,702,693,687,714,676,692,706,685,675,713,686,701,709,667,685,664,648,665,656,644,653,663,646,656,647,667,650,669,645,662,628,665,669,642,654,642,639,657,663,638,644,652,664,671,653,655,664,652,667,668,652,673,646,655,677,669,613,610,634,613,608,638,651,618,606,625,629,620,616,608,619,615,627,632,608,613,617,621,626,637,625,598,635,615,585,621,604,595,615,623,622,624,599,637,588,632,636,639,616,602,629,634,570,584,581,568,580,575,570,582,572,581,592,579,587,570,572,575,577,577,597,585,571,586,580,569,569,580,578,569,575,576,576,577,575,572,588,582,580,590,576,576,590,561,571,577,571,618,648,610,640,628,636,645,642,633,660,620,651,672,650,660,649,629,614,632,663,615,634,651,627,623,645,633,650,657,636,644,652,624,627,655,639,691,623,655,607,664,621,615,614,675,668,670,703,684,677,676,701,685,681,669,647,703,681,692,683,670,652,687,680,682,678,674,672,686,681,711,693,673,678,679,694,688,672,693,688,691,672,677,671,699,680,686,691,670,665,724,778,778,758,776,768,746,751,766,750,723,780,716,741,717,731,747,791,750,768,733,756,738,721,717,785,756,718,752,721,775,763,756,752,700,740,790,752,745,746,747,688,700,709,704,728,711,706,720,710,745,711,700,705,710,719,703,694,723,726,737,735,763,697,713,740,688,731,689,740,721,731,728,695,695,736,695,776,705,745,754,726,739,707,759,684,694,722,672,707,672,646,682,629,651,643,661,644,647,636,681,652,667,658,648,652,656,640,630,636,656,675,659,655,688,641,653,685,646,656,650,681,645,648,675,660,635,642,663,629,656,657,644,735,752,728,713,708,709,744,719,731,706,737,689,738,683,692,691,721,707,717,738,770,679,718,728,747,713,728,695,704,756,691,707,735,699,733,727,738,726,738,765,716,735,723,725,708,746,681,727,722,703,722,738,720,658,711,702,722,714,716,730,715,720,731,747,665,715,718,735,727,751,722,706,736,722,729,700,717,711,760,697,761,693,728,716,678,722,728,695,694,684,656,653,682,675,681,656,679,683,683,675,660,671,680,683,685,669,689,665,687,672,655,667,659,702,676,672,674,657,654,690,657,646,695,664,668,709,667,701,631,643,652,633,645,656,656,648,629,649,646,650,651,651,662,626,640,640,647,651,638,655,670,643,635,643,639,644,655,623,658,641,615,634,633,650,629,641,638,642,644,620,649,658,667,653,651,660,671,669,670,636,660,665,653,662,671,672,647,673,667,648,685,681,649,666,652,659,647,653,660,662,679,676,679,669,668,670,682,639,661,679,673,658,781,722,718,728,773,731,763,768,724,764,748,779,756,752,731,780,738,787,775,754,780,745,729,750,725,745,729,732,718,762,711,743,739,765,763,752,708,783,716,743,759,745,693,730,754,734,703,709,691,726,735,684,693,751,685,712,695,740,710,715,720,680,719,734,707,744,747,727,707,728,724,672,732,722,761,716,693,740,760,749,772,658,666,683,623,669,678,641,633,624,664,658,631,657,632,688,626,679,678,645,651,649,669,669,672,648,658,681,645,682,661,653,620,653,662,690,671,654,693,644,694,683,664,652,684,666,647,667,659,671,645,724,727,700,713,694,683,689,715,679,710,691,709,691,667,689,673,710,700,682,694,714,676,695,684,686,712,727,700,740,712,702,684,669,705,679,670,696,710,715,701,739,725,710,725,710,733,719,712,733,713,725,724,722,708,706,714,724,722,719,712,732,716,706,712,710,712,725,719,697,719,722,728,721,705,709,704,728,707,718,721,711,696,694,661,727,706,719,684,680,691,668,709,678,691,711,677,684,683,696,690,698,701,701,712,675,714,680,665,713,677,704,676,693,704,668,675,710,682,691,680,695,671,681,670,685,684,646,661,661,695,662,687,686,688,694,691,681,659,678,677,691,674,666,667,699,693,695,675,701,709,675,705,705,693,701,666,671,706,682,704,688,664,527,574,596,594,566,557,559,583,574,542,572,587,579,563,580,545,608,575,601,562,584,561,564,596,578,583,565,604,557,564,586,587,595,563,614,544,592,575,580,565,569,566,558,555,564,569,578,590,556,566,603,584,573,576,580,560,543,565,579,564,589,565,564,565,586,560,596,591,556,577,576,576,578,579,572,554,556,564,576,579,563,600,578,564,576,568,594,568,576,563,563,592,574,558,649,642,631,631,635,627,634,622,635,637,632,642,644,646,630,664,655,638,644,619,644,634,663,669,651,678,614,654,641,641,630,642,669,641,639,646,645,663,627,648,640,662,647,647,661,655,650,666,663,652,663,672,649,648,658,662,657,665,659,650,650,648,653,652,658,658,661,640,660,655,652,656,656,651,655,664,650,659,649,640,645,634,660,653,755,721,700,746,679,705,693,757,717,713,704,679,755,695,678,728,726,735,720,691,723,692,716,716,726,712,733,708,695,717,751,701,700,725,730,718,718,720,690,752,691,708,713,707,725,709,734,732,719,699,700,720,703,709,722,732,704,727,728,702,723,728,731,736,719,706,727,708,690,731,735,706,716,713,706,705,724,723,723,719,691,703,709,722,729,695,683,692,702,669,697,681,704,677,699,692,716,700,705,691,680,674,710,691,686,702,703,693,706,714,690,706,721,663,699,681,705,683,686,682,714,670,667,718,710,692,690,610,600,608,582,610,651,585,593,591,591,630,612,628,601,612,566,620,618,621,585,601,621,610,606,579,603,611,637,610,630,570,586,594,606,630,648,582,600,612,595,593,628,577,570,559,552,571,546,568,568,571,547,547,554,573,557,563,561,553,576,557,549,556,563,565,557,570,562,566,553,550,557,560,564,552,560,557,571,572,572,562,564,565,554,563,558,560,558,677,605,661,658,602,600,687,640,614,645,613,640,611,650,651,644,678,622,630,588,611,651,642,652,637,625,623,634,634,661,673,644,673,632,623,623,618,634,615,666,627,630,688,689,685,677,688,688,671,681,669,690,686,688,667,662,686,672,681,687,701,684,678,667,686,690,679,688,683,675,677,661,676,693,673,688,702,665,676,685,667,677,667,683,687,687,688,692,674,683,689,681,673,674,687,670,670,663,692,677,686,680,682,674,688,664,682,678,680,688,672,663,692,683,661,676,655,674,669,663,674,664,672,670,673,649,682,695,685,687,693,677,728,744,717,762,758,770,776,719,765,719,745,734,711,762,732,766,753,775,720,769,736,737,790,720,751,714,729,728,740,734,719,742,727,717,752,730,702,714,710,729,676,657,702,646,629,659,655,690,683,683,651,683,669,658,719,640,664,687,713,697,702,684,694,693,637,652,642,651,657,643,682,695,688,684,662,622,644,717,675,691,649,665,682,645,657,663,665,640,617,632,652,623,636,642,644,629,605,642,639,634,644,657,649,630,631,618,628,642,638,605,669,647,629,612,642,647,659,630,644,617,646,617,638,630,641,648,616,663,602,632,643,668,542,554,548,556,558,558,552,553,560,545,540,559,543,560,552,552,560,566,565,558,550,561,548,555,561,568,554,560,564,549,562,562,562,538,550,566,553,550,553,556,558,568,568,555,551,555,538,555,551,547,548,531,542,545,543,552,518,524,538,546,547,531,557,547,562,530,550,551,559,542,536,546,537,544,539,554,553,534,532,536,551,529,539,526,538,554,564,535,516,504,520,525,509,524,518,505,497,526,523,523,501,527,515,513,512,513,514,513,513,511,519,507,525,514,518,520,523,517,515,506,507,518,508,533,512,510,513,519,513,504,522,525,696,669,692,698,670,663,690,678,687,689,665,680,658,675,689,672,684,677,665,700,693,678,684,668,681,663,677,681,681,692,687,686,681,688,672,696,664,634,634,647,660,642,631,639,624,632,636,650,653,655,627,644,618,644,631,648,641,662,621,645,662,633,638,624,640,636,650,662,631,649,628,662,642,664,646,627,632,643,626,626,676,611,616,606,606,590,617,593,611,601,614,591,622,629,609,605,601,590,598,613,586,590,598,584,592,626,624,638,605,602,590,570,644,588,620,627,618,601,625,597,592,613,627,593,614,568,611,607,616,631,600,602,569,576,607,559,606,612,592,622,582,620,608,580,577,586,622,600,614,562,615,615,611,606,577,543,642,600,607,602,617,600,567,575,636,593,600,600,606,619,638,622,630,616,622,621,621,616,643,596,634,623,617,616,618,620,627,602,611,621,612,614,611,618,610,617,604,635,627,607,619,604,620,637,610,631,625,626,603,595,585,562,568,583,581,577,595,590,587,576,564,590,554,571,580,580,582,562,585,568,584,568,582,589,580,591,594,587,593,573,577,573,571,589,566,570,578,682,672,670,680,689,690,656,630,679,658,671,656,668,687,691,676,668,666,664,685,676,660,686,688,690,678,693,654,695,695,686,686,677,697,674,680,673,703,699,700,669,662,690,672,658,712,702,680,689,680,689,680,701,646,663,709,714,664,658,691,720,658,696,685,719,663,690,685,684,716,710,653,723,658,643,670,669,717,659,681,688,717,636,706,690,708,671,665,686,670,663,700,681,689,679,708,696,674,685,686,689,707,686,711,688,679,697,699,680,677,679,665,700,658,692,680,668,685,685,691,681,688,704,668,688,684,690,677,688,650,613,594,615,614,621,609,608,604,603,617,632,596,612,631,623,604,607,579,626,638,619,639,614,611,612,618,614,612,603,614,599,586,602,614,594,627,638,602,575,584,613,655,584,573,578,586,581,597,595,585,576,575,569,587,600,585,557,578,565,577,582,603,578,574,607,580,577,595,592,609,587,599,597,575,593,566,588,592,576,580,588,592,542,537,576,564,584,589,575,564,576,570,570,560,563,574,591,570,572,574,578,578,576,566,564,560,575,572,570,580,575,571,581,577,562,568,576,564,568,569,562,582,578,567,566,562,597,539,549,549,541,541,546,544,548,534,541,547,551,543,540,545,534,538,546,541,552,539,557,544,550,540,535,547,541,536,537,527,538,562,552,544,548,541,547,535,532,536,533,546,533,524,545,538,533,571,543,555,527,527,540,543,547,542,529,547,570,537,547,554,541,544,539,566,538,535,545,562,547,561,546,544,543,568,555,539,536,540,555,562,541,553,551,549,549,536,538,536,543,534,551,546,529,549,542,543,547,545,559,545,537,545,541,542,525,533,535,539,533,542,538,527,546,550,545,541,540,535,557,527,539,537,552,532,545,551,540,539,548,532,534,544,552,560,545,554,556,548,542,569,548,534,560,555,568,558,556,540,567,556,555,548,558,556,558,554,553,559,565,574,571,556,551,552,551,558,566,554,558,556,565,555,552,561,553,534,630,606,584,604,621,599,609,634,612,652,615,617,615,598,655,569,619,653,592,626,605,593,602,626,592,637,606,602,607,623,614,590,605,587,594,623,591,597,618,583,765,762,774,813,783,744,794,761,746,758,755,755,772,781,768,757,787,769,776,764,759,777,796,767,776,771,741,768,750,749,763,766,761,769,758,736,795,742,768,772,724,767,740,735,696,742,698,749,766,767,673,711,716,735,720,714,729,725,711,741,695,709,711,724,721,733,702,707,728,799,722,726,683,722,696,757,740,744,740,733,751,668,701,649,676,654,651,680,676,656,646,657,658,663,641,659,670,636,654,621,648,666,649,662,653,640,662,658,642,644,646,651,644,642,652,651,662,665,666,637,678,654,635,687,716,730,721,688,686,681,713,669,663,705,686,693,731,691,730,689,699,687,680,691,696,694,693,649,699,681,665,699,702,688,693,705,690,700,678,671,696,687,653,662,668,681,657,666,658,680,659,693,660,663,665,657,662,689,648,662,656,662,639,660,663,677,665,661,684,654,683,671,670,672,671,685,672,669,688,673,649,655,696,672,613,603,589,609,603,619,615,614,616,607,605,603,603,628,602,604,587,599,612,618,602,597,602,598,592,607,605,620,604,614,617,610,610,589,599,595,591,616,597,591,601,593,612,599,555,578,553,559,554,570,564,552,560,555,564,555,554,550,564,556,566,568,554,570,553,557,543,556,564,569,562,549,550,547,565,552,554,551,562,564,561,551,565,584,567,560,568,557,554,560,562,547,561,572,555,554,564,543,563,568,538,571,556,556,561,565,550,554,560,564,574,569,570,579,558,559,560,544,569,556,557,550,554,546,568,585,682,713,702,700,694,713,709,687,688,715,700,721,733,689,699,716,707,703,688,698,725,696,702,704,698,730,710,724,717,688,690,700,687,714,703,704,705,705,695,712,710,694,731,695,717,698,666,668,670,661,669,667,679,674,674,670,658,678,652,676,663,672,680,661,692,668,667,669,673,667,688,694,691,664,675,661,670,657,683,676,666,671,670,664,655,668,668,604,630,646,628,645,631,630,621,633,615,633,625,626,631,633,606,626,620,616,634,611,619,637,644,626,627,624,602,612,627,623,623,637,634,619,615,626,617,615,635,624,637,577,593,579,596,571,585,599,607,587,588,585,596,573,575,617,578,580,570,576,574,602,571,587,578,589,579,590,584,558,587,585,587,584,598,585,586,577,580,587,569,575,586,600,608,616,609,605,621,610,609,623,621,639,621,608,617,601,610,627,626,601,617,618,604,613,614,620,611,599,592,610,614,603,610,619,603,606,609,617,604,607,607,606,626,605,610,623,625,612,623,590,607,607,620,628,628,640,620,629,642,643,643,613,642,646,629,639,624,645,631,653,618,637,636,614,644,636,635,627,637,625,637,626,617,628,636,632,642,622,627,632,620,650,624,634,593,569,595,586,610,586,612,587,601,567,608,595,608,622,590,597,569,605,604,595,607,588,595,623,610,617,578,602,605,583,604,581,586,606,601,593,605,611,587,595,587,611,579,586,579,588,612,575,593,601,578,572,562,573,598,579,583,580,571,576,581,571,597,582,582,592,579,586,584,582,567,567,589,590,567,588,598,579,597,581,580,576,682,641,632,614,586,619,644,609,626,636,582,596,592,645,587,598,640,595,617,609,600,619,640,569,610,625,598,635,578,631,629,652,638,621,654,602,632,615,618,577,637,706,738,728,793,758,754,729,735,729,753,754,755,764,722,722,703,775,752,747,737,750,724,766,748,742,725,736,749,759,738,736,741,742,759,767,737,759,773,770,731,776,761,740,752,718,700,723,727,711,719,706,711,708,730,737,725,742,725,730,724,709,738,728,721,712,725,744,731,739,716,731,718,714,726,732,718,742,720,722,713,714,734,733,718,726,739,697,700,697,698,706,683,679,671,689,692,685,692,674,701,684,717,686,709,684,677,719,699,694,699,707,690,668,686,707,705,677,688,692,692,693,699,699,664,669,696,694,679,683,699,715,690,675,700,711,676,681,661,672,688,676,682,687,695,704,673,709,673,662,667,699,703,684,674,698,674,678,678,699,695,695,692,690,683,682,686,687,578,592,554,597,612,646,603,591,611,600,607,572,558,618,557,584,607,582,566,571,578,602,591,558,586,570,577,580,618,588,587,592,571,599,579,575,612,580,578,601,623,586,584,570,659,592,661,650,629,626,609,668,643,610,579,673,644,552,635,629,628,621,630,618,634,659,653,598,608,705,665,607,617,586,638,632,606,602,607,615,648,614,647,627,629,688,694,646,655,695,652,693,705,689,648,675,669,736,657,692,684,708,651,659,645,673,679,682,662,693,666,682,691,714,717,700,659,691,704,688,665,661,682,703,683,612,665,683,692,679,670,679,678,675,651,673,669,651,676,688,692,697,679,711,672,701,683,650,721,716,676,677,757,730,668,722,645,658,657,665,691,704,679,649,689,649,673,636,706,718,754,679,694,674,699,654,643,645,669,632,657,665,667,660,674,639,640,673,650,657,654,677,670,644,668,673,623,647,655,636,630,671,645,653,643,668,658,664,622,669,664,661,632,649,648,608,612,585,621,620,600,599,610,611,600,605,610,587,601,605,596,607,622,600,589,630,603,631,608,605,621,614,620,612,631,605,601,599,616,609,611,593,621,597,598,592,572,604,600,588,603,587,574,604,572,577,590,600,594,587,595,573,581,591,588,580,596,588,593,593,602,586,610,593,582,584,580,586,575,594,592,599,596,581,596,576,584,604,590,603,599,619,599,597,602,606,602,600,587,613,600,588,613,598,591,609,594,594,597,591,588,603,584,599,593,586,601,607,594,595,607,611,596,597,612,594,599,583,605,618,727,718,724,765,747,749,770,745,749,756,730,762,724,713,749,777,742,728,777,724,744,761,720,735,743,779,724,733,741,735,767,727,710,737,777,775,776,732,726,766,737,752,738,798,684,680,692,679,670,625,672,669,690,674,640,685,658,641,682,622,697,703,670,665,653,644,694,686,660,671,670,642,679,652,677,658,716,660,647,667,655,658,617,688,648,672,673,646,634,644,643,625,635,635,620,615,629,634,600,635,651,650,671,603,656,628,649,606,654,611,629,615,599,633,642,634,595,655,638,652,645,624,635,629,639,660,618,658,642,654,643,650,650,617,695,690,673,691,656,700,700,701,680,676,671,677,695,690,695,684,671,675,675,694,699,694,675,681,679,697,669,698,679,683,697,700,679,685,696,687,682,695,677,677,668,704,678,665,669,688,671,672,657,673,694,669,663,670,674,662,673,661,656,677,690,677,665,677,645,657,660,671,643,682,649,661,669,660,659,677,645,647,666,664,661,675,649,687,660,663,665,680,653,679,665,675,664,653,652,637,610,636,658,669,649,613,648,604,625,621,648,634,655,643,641,663,642,628,634,642,628,645,623,634,639,608,636,642,631,648,606,654,645,621,658,628,617,663,618,722,677,663,667,678,725,651,668,693,693,665,681,655,672,676,696,703,657,654,723,676,664,653,669,652,666,682,669,659,684,679,676,713,679,675,660,661,665,640,683,672,631,635,644,614,604,639,597,626,615,612,623,587,612,602,603,592,630,617,611,620,623,621,612,624,631,588,630,605,606,612,587,588,614,598,606,593,618,618,604,634,652,604,609,599,568,617,551,589,579,591,620,623,701,625,570,605,634,579,583,584,594,605,624,600,551,583,575,647,575,595,625,625,545,608,637,585,650,617,625,632,592,582,591,608,582,608,583,595,590,582,592,596,584,598,580,589,588,592,594,582,601,592,586,599,592,594,592,586,580,593,578,584,591,587,593,603,591,608,593,594,591,584,586,596,595,575,534,564,529,547,536,554,550,567,554,547,544,545,549,551,544,541,573,543,553,557,532,538,545,560,562,548,554,548,534,570,557,551,550,531,536,547,555,550,547,561,556,548,558,529,569,553,574,551,563,579,561,574,576,548,571,544,561,562,543,555,565,557,555,545,551,553,558,565,553,560,558,556,531,562,568,555,579,544,558,568,553,553,704,711,715,705,688,696,728,700,707,706,679,701,721,727,727,703,719,690,695,705,698,702,711,711,668,675,708,698,705,687,702,729,713,713,698,717,693,686,700,671,620,626,647,629,634,656,636,619,616,616,657,604,592,627,635,595,660,650,622,660,663,629,660,654,618,636,638,649,625,583,628,650,627,654,633,624,654,608,613,644,649,609,619,683,611,672,683,621,619,631,662,698,654,606,697,623,688,642,648,586,641,591,683,598,687,582,645,729,644,611,627,603,590,649,612,598,728,658,645,635,594,665,639,656,666,654,614,603,666,720,710,701,718,701,723,707,713,700,693,695,707,700,731,699,729,701,698,710,711,728,729,709,707,702,714,672,697,718,673,715,698,726,724,709,699,682,699,689,711,701,698,714,742,607,601,591,611,597,614,610,625,620,566,612,605,618,583,647,605,614,604,615,587,587,598,625,596,593,583,593,610,623,605,619,629,593,622,610,609,604,615,586,613,634,588,596,615,627,613,632,633,615,593,615,616,605,636,610,623,618,635,627,607,625,613,629,632,624,634,650,619,590,624,621,642,586,641,617,622,633,611,613,649,649,636,623,593,591,595,589,593,582,566,579,600,590,581,580,573,591,580,593,595,598,590,591,583,594,591,596,590,583,583,605,596,599,592,588,605,583,584,584,584,597,588,621,561,553,561,529,528,538,539,558,544,555,548,564,555,561,538,549,566,554,558,544,563,551,541,546,566,544,560,555,554,539,573,556,551,558,546,549,537,540,561,547,547,550,560,555,553,550,566,569,560,563,545,559,557,543,535,565,571,551,557,554,546,565,571,561,550,533,568,558,559,540,564,560,560,549,543,545,575,539,555,560,561,557,567,560,572,546,565,547,574,560,558,587,552,544,542,554,536,553,546,548,554,552,539,536,550,548,554,555,543,545,535,550,550,552,546,554,566,562,551,537,563,534,561,546,553,551,539,551,538,542,536,544,555,542,552,545,552,543,585,585,587,580,583,588,582,599,591,592,566,578,582,583,567,594,580,589,575,573,586,606,583,596,605,585,589,583,583,592,598,575,597,604,584,580,595,570,594,588,574,576,594,582,623,621,614,623,618,603,617,610,612,619,618,594,617,604,604,583,608,611,611,617,614,628,604,632,619,612,615,592,621,607,598,626,599,617,600,616,607,590,624,616,610,624,672,704,691,662,660,653,631,673,653,673,676,666,656,644,671,652,671,665,652,662,670,675,659,677,659,658,651,650,674,652,654,671,698,660,658,647,656,649,693,636,642,640,655,657,661,644,641,660,676,652,644,654,635,659,656,663,654,653,660,654,655,658,659,644,666,653,660,663,648,625,643,674,650,658,664,651,643,671,652,581,559,604,567,580,577,586,571,570,570,592,574,590,584,572,577,575,575,573,588,586,575,582,585,604,571,596,559,576,592,586,578,592,594,578,560,598,569,572,571,582,572,566,572,571,582,568,583,562,590,661,659,662,683,658,690,652,693,686,676,696,693,682,684,677,651,669,674,680,671,679,695,649,681,683,641,675,674,701,690,685,662,676,661,665,681,658,651,679,645,683,677,680,672,670,655,676,658,686,681,659,650,673,728,697,641,651,684,674,707,696,662,683,668,682,686,688,676,667,702,691,636,669,705,671,663,661,664,680,687,679,665,652,633,687,700,713,670,655,659,770,720,685,725,713,614,657,686,681,703,663,653,648,685,690,742,711,680,725,672,714,660,669,706,724,683,669,685,674,666,693,712,708,733,698,677,690,665,687,675,666,648,674,637,671,646,670,666,635,672,664,649,654,688,665,667,687,679,671,664,682,654,680,680,689,679,655,678,691,651,666,655,686,698,675,675,650,653,654,644,636,639,644,641,656,667,652,669,651,641,638,648,652,655,640,653,633,629,653,656,653,647,646,642,646,623,662,635,655,655,629,654,649,656,650,653,646,651,645,642,646,651,651,658,656,661,648,741,772,762,734,723,756,732,734,742,737,742,758,767,743,716,725,719,741,722,727,754,742,738,730,744,728,753,771,740,756,742,780,741,765,741,734,756,719,736,757,721,765,706,745,753,755,716,716,723,722,735,721,728,718,778,740,731,733,723,694,720,737,722,687,768,757,735,741,790,705,717,727,734,727,700,746,713,733,700,745,768,725,782,728,702,754,725,752,706,744,734,765,742,735,744,720,720,730,733,755,752,725,730,763,749,719,756,743,757,763,788,804,743,720,743,722,731,730,719,734,719,751,761,750,735,739,740,689,685,676,710,721,746,744,724,723,656,708,724,748,717,745,716,693,698,735,740,697,759,742,723,742,743,699,750,735,725,739,705,728,721,707,708,708,716,710,671,701,675,698,676,693,672,678,655,680,691,644,713,704,697,699,691,696,686,670,650,673,688,647,672,694,690,659,659,675,683,689,706,683,660,650,662,670,668,662,673,689,707,683,636,646,647,657,655,650,675,659,665,664,650,639,649,641,662,642,637,647,674,650,649,650,643,640,645,646,647,653,650,666,663,653,643,657,653,660,651,644,635,641,648,654,672,658,778,732,738,734,751,767,729,760,744,746,740,767,764,726,749,726,769,705,727,770,738,735,749,751,749,725,768,752,751,712,731,768,748,746,740,749,746,783,709,749,755,770,725,745,734,706,789,719,751,731,709,741,722,721,734,755,723,716,682,723,740,745,692,718,765,705,715,744,703,730,729,717,760,738,738,726,731,699,703,729,735,735,764,704,724,712,736,729,726,743,754,751,752,695,767,698,715,697,697,698,738,732,728,706,742,718,682,748,699,708,681,675,718,698,737,678,704,728,690,680,702,698,686,690,670,692,735,697,719,712,692,704,715,693,732,693,701,699,748,684,724,731,723,709,722,715,692,727,722,710,736,712,720,729,733,724,725,712,741,730,735,734,723,720,705,701,724,731,724,697,730,718,710,737,720,727,733,719,707,725,698,729,733,725,723,712,660,617,629,630,611,633,659,632,645,595,616,624,594,619,633,658,633,640,642,600,643,614,648,605,627,620,592,615,598,650,639,600,599,604,627,608,635,631,609,588,579,582,586,568,591,569,566,602,592,589,589,573,572,602,582,566,606,564,580,589,582,573,584,579,588,563,584,584,568,577,573,582,590,552,572,578,583,577,565,562,584,570,586,607,596,620,614,575,642,601,592,611,604,588,617,607,618,601,602,603,601,624,633,605,615,599,619,625,608,616,612,624,597,627,632,590,587,591,604,643,549,559,556,558,569,572,548,559,553,571,556,566,578,568,559,563,559,564,562,566,578,554,569,559,561,572,560,577,541,543,574,557,558,587,578,552,550,580,558,569,554,566,584,568,588,583,564,555,561,576,558,575,571,590,596,585,573,590,578,566,585,579,574,558,574,585,586,573,577,583,581,578,549,561,580,587,562,570,590,558,580,575,569,575,584,560,559,569,553,544,544,565,550,544,548,555,540,548,544,540,554,560,540,536,539,555,555,547,557,550,547,547,544,542,555,570,534,537,545,545,548,541,548,546,538,553,552,553,794,680,767,728,719,749,766,768,733,801,722,723,803,742,760,774,750,761,725,727,770,740,663,742,754,727,818,770,745,778,736,776,777,804,778,751,692,689,780,722,752,816,746,723,684,710,705,704,689,716,685,696,693,689,719,701,691,706,716,713,723,706,705,702,703,698,705,694,723,678,725,711,701,693,692,728,745,734,711,709,697,694,708,714,721,703,694,697,698,666,653,670,660,655,684,674,678,673,649,675,663,638,684,669,672,696,670,690,661,686,669,680,695,649,649,698,649,673,671,705,679,692,655,645,651,668,650,642,673,681,654,686,676,638,656,639,629,623,644,623,652,652,661,668,641,637,629,630,625,657,625,647,638,633,664,652,648,644,657,632,631,636,658,644,640,644,654,642,645,643,635,652,654,628,635,648,643,665,666,673,654,656,655,676,671,675,661,682,674,648,658,666,675,663,674,667,650,670,659,663,682,668,670,662,664,666,679,676,686,670,683,678,669,664,682,676,657,681,668,674,661,661,655,630,655,653,655,662,649,679,650,668,661,672,646,663,657,651,657,652,649,651,658,664,654,671,651,649,657,648,654,646,664,664,645,650,665,680,652,654,677,648,670,670,669,719,724,697,731,755,725,742,778,760,715,748,705,727,748,763,750,758,747,724,765,756,738,762,743,701,726,761,715,783,710,752,747,743,764,713,731,747,755,735,716,724,761,699,714,752,717,757,738,689,741,726,734,697,709,712,704,716,721,749,729,692,718,752,751,721,748,727,765,705,759,722,735,708,737,766,704,753,733,721,766,695,743,772,690,713,711,711,694,691,659,704,711,723,685,708,690,693,707,704,661,723,696,657,683,649,759,726,674,694,731,673,681,674,739,717,683,736,694,712,727,677,709,694,704,725,697,672,586,603,618,619,598,602,619,603,615,595,617,565,646,602,563,608,600,590,600,593,613,609,597,596,616,569,594,606,602,595,614,589,600,603,585,608,598,617,618,605,605,622,586,609,611,601,589,592,591,668,699,687,674,648,703,645,641,647,627,655,655,658,648,642,675,659,621,679,673,643,691,687,655,630,698,647,644,653,738,619,681,670,653,672,601,645,664,682,636,669,647,646,666,642,655,679,623,667,641,662,660,647,659,668,667,651,677,653,674,671,667,660,658,653,662,650,646,658,656,639,663,660,655,652,645,665,649,661,668,650,662,664,668,639,616,613,602,626,597,616,612,612,604,627,609,608,614,622,598,630,616,621,609,605,619,589,590,605,606,620,619,613,625,637,616,613,604,622,605,616,595,621,591,623,643,596,606,597,622,604,691,681,664,701,713,722,697,682,723,795,661,755,768,687,752,679,688,660,735,717,746,737,741,741,751,715,750,719,674,813,726,748,705,759,725,687,706,703,687,695,739,707,697,723,665,693,691,690,708,705,697,679,706,687,729,709,731,729,725,723,714,715,707,741,714,661,710,699,705,722,707,724,699,706,732,710,701,722,693,708,710,705,745,721,607,628,614,613,599,595,633,591,616,632,627,603,630,635,628,594,627,605,616,606,595,587,601,639,607,601,621,605,599,623,635,597,608,619,629,637,607,599,607,588,639,650,666,666,649,646,650,612,648,636,644,674,641,656,634,624,620,613,608,606,639,660,673,657,633,646,645,626,616,658,599,634,624,658,643,640,643,631,620,631,623,660,695,594,677,693,686,694,684,682,703,684,688,677,680,704,672,717,704,689,690,698,695,691,663,703,718,687,704,694,700,670,689,690,683,695,685,684,690,690,685,685,687,707,689,684,682,690,705,683,680,667,697,676,669,674,686,677,673,677,681,681,672,691,676,701,689,697,659,690,676,690,677,682,698,669,670,687,679,677,680,677,676,680,665,664,680,679,702,693,696,662,677,680,649,690,692,670,724,725,741,758,763,760,733,751,740,717,699,732,696,748,713,766,761,736,729,754,735,731,718,740,751,699,746,720,728,736,788,761,749,761,759,712,781,722,746,786,757,738,761,701,756,701,726,739,702,724,693,696,727,736,706,707,694,682,711,750,716,715,716,727,702,751,732,728,731,720,726,747,684,738,703,713,749,707,752,732,719,689,709,693,698,700,734,716,756,670,658,683,672,651,698,668,669,687,676,662,664,679,694,675,674,690,649,666,646,680,665,663,669,684,667,667,676,636,648,667,674,676,643,672,666,661,700,681,662,601,577,587,565,571,592,558,567,565,569,574,558,569,584,569,568,570,581,586,575,561,581,548,568,577,572,597,567,578,573,562,571,569,568,579,564,577,568,585,555,580,621,607,610,580,551,648,601,577,620,617,590,621,584,628,626,616,610,588,594,608,595,640,630,598,604,618,624,625,557,592,599,599,613,609,578,603,670,615,592,580,596,583,588,635,546,556,613,590,578,581,578,574,580,584,576,577,586,594,589,583,594,585,585,582,595,601,593,585,580,589,591,577,584,592,586,583,580,580,586,586,578,582,599,582,593,592,580,580,585,583,536,552,544,532,544,550,554,542,545,534,525,535,532,540,542,541,545,533,538,540,559,543,531,538,542,545,545,549,546,534,536,535,548,530,531,542,550,537,532,535,541,534,536,542,541,541,528,655,648,638,644,654,653,642,636,663,640,623,627,643,629,618,657,642,648,644,638,641,637,648,649,642,644,660,638,665,627,619,632,637,642,618,665,665,640,654,641,644,585,546,565,603,578,570,589,579,580,578,587,549,587,571,585,581,567,568,569,563,586,560,580,574,559,575,578,584,578,588,576,584,559,589,565,579,577,568,573,584,568,570,669,571,635,596,626,625,663,629,587,576,603,617,594,582,628,571,635,617,621,583,656,597,604,599,574,589,660,609,649,637,634,596,607,643,622,586,556,647,599,590,607,664,599,506,643,637,643,641,609,627,625,631,618,629,636,632,631,608,639,645,604,604,611,640,608,628,611,634,639,612,620,626,648,643,592,651,617,620,604,637,618,623,645,637,617,596,578,587,581,575,577,584,583,593,577,577,573,570,595,587,590,579,594,560,587,613,584,592,573,580,562,578,587,583,577,579,573,584,556,576,574,584,588,584,591,575,587,549,541,574,547,559,544,565,565,561,561,566,554,555,554,573,551,564,562,557,545,544,568,558,562,567,556,561,549,564,558,555,557,565,564,573,565,560,554,551,559,560,565,533,611,594,588,624,642,585,578,620,604,656,576,603,614,608,614,585,619,580,630,650,623,613,628,584,606,639,648,647,605,607,620,596,646,632,614,589,648,595,605,597,628,633,621,592,661,624,631,623,762,751,768,730,751,747,766,738,734,771,737,728,779,744,771,745,772,750,746,738,746,729,737,761,705,727,764,743,771,784,757,776,726,730,738,760,777,704,731,746,758,742,733,760,733,716,732,734,716,723,742,707,745,729,739,712,728,721,720,730,727,713,733,723,724,723,722,723,738,751,712,712,729,727,730,712,756,715,723,716,744,705,708,690,711,665,683,700,685,702,710,711,709,724,696,690,692,704,692,695,708,688,671,706,705,687,672,699,688,700,693,721,671,697,705,688,718,691,707,715,704,704,695,676,696,749,675,691,704,673,716,665,668,652,695,700,666,701,669,709,698,693,689,724,716,716,730,697,713,705,717,666,673,716,683,681,677,677,669,688,732,675,659,717,626,728,704,703,694,726,703,767,706,731,696,742,703,697,740,721,702,751,706,715,699,733,745,690,735,741,738,715,704,694,725,741,722,757,690,715,699,715,634,683,633,658,650,669,675,637,678,635,703,671,679,672,688,678,659,661,645,665,649,651,684,666,684,675,670,663,685,643,651,679,678,684,668,689,634,669,650,692,668,560,547,515,565,585,554,565,563,543,517,555,527,560,555,523,539,545,563,538,509,564,553,557,537,508,546,549,563,533,520,546,563,546,566,579,528,557,565,495,541,539,552,532,541,528,546,542,531,533,539,538,516,537,529,545,543,522,535,536,529,534,524,551,532,524,527,535,534,538,532,536,532,532,534,540,528,529,543,534,537,524,531,539,539,559,551,570,559,559,541,545,556,563,558,545,549,543,533,566,557,576,554,552,557,545,560,549,544,553,544,558,565,565,552,543,569,562,549,563,560,552,555,540,558,554,560,549,566,541,556,541,573,674,646,694,654,650,673,680,681,698,656,703,676,648,664,655,676,647,683,666,679,671,672,685,662,684,644,692,683,701,662,653,683,655,679,679,624,655,721,680,692,678,668,662,621,624,638,657,615,644,624,642,644,601,633,610,618,621,627,645,630,627,627,608,612,637,630,613,627,621,599,646,618,605,630,630,638,592,623,618,628,642,632,608,618,647,626,624,619,617,597,576,596,575,586,578,559,581,582,564,556,577,572,580,600,585,583,588,574,573,582,590,573,593,572,594,587,578,575,582,585,584,573,583,568,578,569,569,565,565,563,584,580,590,586,578,608,650,617,644,614,599,602,648,622,630,609,642,631,625,605,630,603,628,633,599,589,625,628,657,624,632,642,630,639,608,624,620,612,604,642,603,601,586,591,658,635,647,644,557,683,731,721,661,723,709,693,726,682,708,689,725,717,711,701,702,687,732,695,722,729,712,730,682,715,699,721,685,721,701,700,693,684,687,739,716,703,700,730,708,732,688,664,630,612,620,623,640,631,622,639,639,619,646,635,636,659,655,608,645,624,618,622,637,655,647,653,645,652,605,638,636,608,611,625,620,614,648,643,626,637,657,637,627,633,651,639,654,564,563,580,574,574,578,587,573,582,577,568,563,571,574,568,570,572,578,581,581,582,574,575,580,580,573,571,569,578,578,583,561,570,570,562,566,588,576,701,704,668,665,680,634,666,668,700,656,696,663,679,672,685,657,665,662,631,670,707,662,690,639,667,649,662,713,689,685,685,694,689,700,718,654,658,674,701,692,727,660,677,685,733,637,638,635,605,630,620,624,633,608,638,650,603,631,655,611,630,637,644,621,667,637,632,604,616,623,639,618,619,618,649,616,628,628,649,636,622,645,616,630,616,644,610,677,588,598,589,591,600,588,576,586,583,578,590,581,582,578,590,585,583,608,594,595,585,591,594,591,578,587,570,602,581,604,579,569,599,578,591,585,576,577,578,585,606,574,590,530,531,519,534,533,528,537,532,518,550,517,533,520,530,528,525,535,534,523,524,554,531,520,521,523,539,529,524,518,520,532,539,525,528,520,526,519,527,521,530,516,530,522,494,559,571,572,577,564,573,585,558,576,558,564,571,595,580,566,584,589,575,590,585,585,581,580,595,568,588,559,584,583,569,587,584,579,579,592,577,582,563,572,589,575,577,657,609,634,596,627,629,605,616,615,626,641,611,621,623,618,606,615,615,605,619,596,619,622,600,612,618,625,626,610,602,623,630,621,622,613,615,618,624,690,663,681,711,696,683,674,662,687,678,686,714,713,687,709,648,658,692,705,659,698,691,652,669,683,697,684,676,691,679,672,648,628,672,720,669,654,701,680,707,659,688,656,694,702,627,613,644,636,645,620,626,629,625,655,619,620,611,621,625,613,623,637,610,615,633,632,649,602,637,606,624,616,651,618,588,635,655,610,609,632,594,654,619,627,643,627,620,642,614,610,624,618,590,587,586,592,570,567,570,574,567,584,572,597,569,565,583,574,585,584,565,564,556,577,585,582,579,570,571,580,573,560,579,586,568,571,572,572,572,574,577,581,569,571,570,635,651,620,628,649,617,617,679,649,614,634,684,632,661,632,635,662,666,662,628,606,655,606,651,664,622,641,600,604,639,675,620,665,666,695,692,684,680,660,683,686,693,678,680,670,690,685,718,677,683,706,679,691,686,683,693,693,659,686,666,683,694,673,680,698,704,687,678,686,686,687,677,687,660,693,670,667,676,694,679,671,675,684,670,676,681,701,684,694,668,675,678,687,690,683,666,681,674,660,677,690,664,673,674,665,676,682,667,686,681,669,672,693,673,682,683,674,674,682,675,701,709,739,712,742,761,750,728,734,758,727,747,738,741,733,735,760,733,735,737,724,793,780,737,758,746,740,726,780,770,742,747,736,748,750,727,750,747,743,732,739,726,732,725,746,726,730,722,759,699,702,735,723,683,728,674,739,726,706,748,733,749,719,728,707,665,669,697,736,698,733,752,733,723,727,737,735,743,720,727,671,713,747,708,753,710,701,737,719,734,735,723,729,684,714,699,663,667,671,664,692,688,663,681,669,689,672,692,680,675,678,695,663,683,696,654,673,675,680,688,674,709,671,662,689,680,647,658,662,708,671,671,652,692,665,686,641,635,647,651,636,650,637,649,650,667,659,646,641,648,652,631,640,645,643,677,659,668,661,636,650,661,648,649,659,651,656,642,657,646,647,671,654,623,648,644,654,653,583,564,601,570,584,598,585,604,612,590,593,598,578,584,587,590,604,622,597,574,606,597,583,589,572,605,597,601,585,571,584,601,581,580,573,579,591,606,598,596,521,542,536,558,540,552,543,530,542,545,546,534,538,542,544,518,533,543,536,541,536,535,542,541,543,535,545,525,548,540,540,546,547,537,539,546,537,550,534,526,524,532,530,523,524,531,529,522,515,529,525,523,515,526,523,527,531,528,527,516,510,519,524,534,516,516,522,519,521,526,524,528,527,516,520,529,513,519,531,526,532,517,523,521,525,545,524,519,536,616,645,647,627,654,656,659,654,651,612,645,667,645,646,688,673,633,650,649,643,615,677,656,657,633,655,684,624,678,645,672,646,612,671,666,646,631,649,669,635,618,640,656,665,630,636,655,650,715,656,663,670,677,688,641,681,642,650,682,676,655,662,651,671,673,659,663,648,664,668,660,638,654,651,663,644,669,652,667,646,665,665,649,652,659,665,665,675,673,667,671,605,592,593,596,611,607,590,602,594,603,597,580,603,621,588,595,601,604,606,612,603,611,598,579,612,591,592,599,586,610,604,609,611,590,608,583,574,588,620,595,563,559,558,555,566,565,560,562,561,552,570,556,562,561,564,560,551,549,564,554,555,582,551,551,555,560,549,545,554,545,558,554,558,556,565,557,570,579,573,554,537,562,558,555,569,567,558,551,554,546,623,616,576,604,623,625,596,585,578,636,614,611,615,582,595,589,619,633,602,589,590,602,670,613,627,593,623,590,579,600,592,609,619,591,598,633,653,633,578,578,583,586,568,577,581,581,582,578,570,558,581,565,598,583,576,563,566,583,563,573,562,580,580,570,553,569,568,570,582,562,563,571,582,572,575,566,577,568,574,565,582,590,577,583,573,572,601,645,591,592,567,616,520,579,591,617,585,642,568,613,553,592,572,575,604,631,599,585,592,598,648,593,571,585,619,548,644,621,584,609,614,579,578,592,645,593,571,617,590,598,730,735,736,740,742,737,709,719,723,722,745,734,706,758,779,731,713,745,714,703,773,728,763,731,749,783,755,720,719,721,767,743,720,747,725,732,746,711,785,723,737,725,720,720,708,712,735,714,711,713,707,704,723,718,699,721,724,721,717,719,731,733,714,705,702,702,718,710,718,703,715,708,708,726,713,674,665,633,608,628,642,613,620,642,616,653,575,646,602,676,597,631,596,637,612,642,639,611,650,613,564,600,643,620,653,623,648,649,656,627,676,614,646,616,615,643,546,642,611,574,512,621,582,570,595,533,617,564,543,581,566,578,577,602,567,589,561,561,623,561,570,576,591,552,574,535,569,581,551,569,557,604,564,580,584,590,607,586,580,554,582,567,584,576,578,595,597,595,586,575,613,591,586,585,585,587,591,598,607,591,574,592,581,601,579,572,606,588,574,616,592,598,591,564,572,589,575,602,605,593,604,586,593,587,587,643,640,623,644,628,609,638,618,661,634,642,646,641,614,639,639,634,635,635,633,639,626,633,629,638,610,668,623,626,642,641,625,634,623,654,640,647,628,651,642,635,625,610,654,669,687,670,669,668,670,668,648,672,670,666,661,654,676,673,667,675,653,677,665,649,659,675,659,660,659,673,677,661,670,680,685,674,672,675,652,644,675,661,689,657,674,674,671,663,663,673,677,666,670,671,670,671,693,690,677,661,660,684,650,675,661,661,671,675,655,670,677,680,677,659,671,688,661,669,656,675,681,693,665,662,678,677,657,645,667,682,686,671,694,666,665,668,667,660,673,647,659,682,669,685,680,688,670,669,670,662,665,676,661,679,686,679,660,676,659,665,671,659,664,655,681,677,668,666,669,684,660,657,658,659,657,650,666,664,677,680,665,660,662,676,662,650,664,670,672,658,683,670,673,674,654,677,688,688,667,671,668,668,673,652,674,665,689,674,664,650,649,656,654,661,660,668,649,663,641,663,664,650,648,650,647,659,664,645,640,644,673,659,655,644,637,651,665,668,663,633,632,656,665,661,662,653,594,576,584,595,580,573,601,583,582,604,599,592,594,564,597,591,585,589,590,595,592,587,617,603,603,601,588,595,596,613,611,587,601,587,595,590,601,563,597,584,581,590,605,718,662,716,744,729,673,699,707,769,703,758,722,761,750,730,695,727,766,736,782,743,690,672,725,713,674,627,741,687,747,715,731,765,713,785,731,747,721,747,767,733,710,683,688,760,761,702,726,721,737,747,730,743,715,732,712,723,744,739,726,731,746,724,728,703,715,747,725,724,747,716,729,724,682,749,730,714,746,721,739,706,694,698,713,714,709,742,742,680,615,601,615,576,623,601,622,585,591,568,588,601,590,624,631,597,618,583,611,602,612,602,611,605,617,629,619,599,561,615,628,615,597,587,581,596,585,584,613,604,593,570,634,619,624,607,612,620,636,634,624,629,625,604,639,595,619,610,627,634,628,619,630,610,622,606,641,628,628,623,633,630,614,592,598,646,629,641,640,610,632,619,621,622,627,634,675,573,572,569,563,563,568,562,566,551,567,554,564,575,564,580,558,568,547,557,552,566,561,576,562,570,569,569,580,573,573,550,569,590,563,563,570,548,578,569,567,575,544,642,644,631,630,691,661,636,646,574,600,623,624,676,643,681,641,670,647,622,637,623,638,596,608,594,636,589,628,710,655,636,627,633,611,629,637,611,663,620,654,680,659,668,685,724,649,689,686,649,666,657,666,673,674,663,659,623,695,649,685,651,697,662,648,656,662,696,689,653,677,646,679,692,649,663,637,655,677,682,695,622,674,627,646,639,641,624,637,641,631,629,649,649,649,652,627,620,622,621,640,614,623,633,631,643,659,621,676,644,651,635,633,631,642,646,630,652,665,634,639,629,615,625,643,631,610,653,575,583,589,593,584,596,577,593,595,592,600,576,585,595,592,577,602,606,602,595,585,577,614,583,588,583,611,592,596,603,606,573,578,586,603,595,613,572,581,573,579,553,567,551,565,557,571,543,565,587,561,566,566,561,555,561,562,543,565,561,544,569,553,569,556,576,574,570,575,561,563,554,556,549,563,571,543,566,569,564,603,586,583,600,605,598,596,592,581,595,585,605,602,599,603,585,596,595,608,589,613,618,571,564,587,589,594,610,601,598,605,579,605,603,595,599,577,596,597,587,588,606,607,615,586,587,595,717,763,726,710,729,702,733,750,750,745,745,717,727,702,713,728,712,748,719,730,690,739,720,733,757,752,721,709,690,734,735,711,740,707,688,730,763,742,746,727,728,707,716,717,716,688,731,731,724,722,698,725,732,699,710,732,703,718,696,728,709,713,726,701,737,709,710,721,717,720,703,719,706,714,733,727,732,717,700,698,728,713,715,704,713,754,640,637,643,635,622,618,674,610,602,643,655,636,617,620,651,600,621,627,601,618,611,587,622,632,612,595,633,608,617,608,592,598,603,593,660,618,640,601,605,644,632,635,622,638,652,620,556,573,565,543,540,552,571,558,552,580,567,557,554,533,567,570,550,563,574,574,557,560,583,561,572,553,579,571,556,568,567,572,573,551,568,589,557,574,555,528,564,562,564,565,560,572,561,549,559,562,555,550,566,550,572,573,564,577,569,557,558,558,565,560,557,558,567,575,575,561,550,562,568,559,536,564,555,562,565,554,561,556,571,567,581,578,577,570,583,587,581,575,575,578,575,569,586,577,584,587,583,568,580,587,591,584,585,583,583,581,557,579,573,584,566,595,572,598,572,587,583,564,577,578,582,589,586,565,690,619,635,667,647,647,614,651,625,602,637,673,627,651,674,691,658,650,608,628,603,639,630,635,647,668,635,596,654,654,651,606,616,651,655,614,642,642,633,656,711,699,707,716,710,694,675,703,725,697,680,696,691,678,711,705,691,702,718,691,704,690,702,677,702,681,700,693,706,687,681,671,689,707,699,683,714,691,695,682,662,672,682,661,657,681,662,680,667,667,678,665,693,662,677,665,684,666,667,662,686,680,660,672,664,662,674,664,678,667,671,657,665,665,664,675,680,664,679,670,675,672,657,673,660,608,597,576,602,596,582,604,582,574,571,576,603,590,590,587,583,587,584,610,597,583,596,589,582,581,566,573,579,581,586,580,573,570,568,580,581,587,596,593,589,592,574,585,591,605,592,597,635,689,583,643,632,627,591,619,641,664,673,640,655,601,623,611,606,629,640,600,635,580,634,644,606,631,598,643,648,612,682,609,604,619,686,629,698,697,694,705,671,690,682,695,688,699,689,704,704,682,693,714,683,683,700,687,680,710,705,683,670,682,698,672,686,701,679,677,696,678,686,672,717,693,687,660,694,676,688,667,693,664,670,674,659,660,686,673,692,677,674,681,677,673,665,682,699,676,679,657,672,669,682,686,660,680,668,702,673,677,671,674,677,679,656,659,660,679,654,663,580,583,567,575,569,603,571,573,561,575,565,577,544,579,580,584,561,570,568,580,574,557,582,586,577,585,574,574,581,574,590,576,577,574,582,578,585,593,568,661,652,671,645,679,655,642,617,657,635,690,649,658,654,677,653,674,642,686,688,654,690,634,681,679,669,654,648,687,645,637,652,683,650,633,649,660,642,682,663,649,642,635,587,582,572,575,567,565,567,577,589,601,579,581,597,557,592,564,591,592,568,592,569,566,565,591,576,580,585,595,564,561,578,574,584,577,576,579,572,594,585,590,570,603,608,608,567,596,562,554,571,572,604,568,572,565,575,539,581,580,546,583,550,576,558,556,570,550,600,587,549,561,578,569,583,572,554,568,577,560,572,561,556,584,565,559,574,571,553,642,654,668,668,658,661,656,651,659,665,640,658,673,684,672,662,665,658,641,648,646,651,650,633,647,674,655,648,659,655,651,661,660,662,662,662,654,647,644,647,655,656,641,652,660,654,649,660,668,634,619,631,614,625,623,608,602,598,640,606,620,624,621,633,616,615,617,592,627,611,614,611,612,615,642,612,610,613,595,623,633,620,618,605,619,608,619,613,603,612,616,599,595,573,592,582,580,587,585,576,591,580,590,578,581,592,580,575,581,584,570,580,586,586,572,592,592,586,583,567,580,590,577,573,586,594,584,597,583,585,586,590,579,589,654,610,657,628,680,649,638,621,647,618,649,622,644,648,640,629,665,627,604,647,604,616,634,635,640,660,656,612,634,620,623,647,660,657,626,626,620,601,630,626,642,700,686,685,731,713,694,691,708,720,699,706,706,697,696,685,705,703,711,679,694,694,691,683,716,688,697,688,695,699,706,710,676,706,707,702,690,682,699,697,692,684,686,681,678,690,674,703,677,683,671,675,691,687,679,681,687,674,681,675,684,691,691,690,698,689,694,686,670,687,660,678,682,681,683,676,702,719,673,683,691,685,679,666,657,669,708,662,670,673,674,665,655,653,682,677,674,685,666,661,681,665,677,668,668,668,677,651,659,668,671,667,675,668,662,674,657,680,677,672,676,656,663,681,654,681,663,676,670,659,670,656,657,679,661,663,649,663,649,677,660,662,663,664,676,656,660,674,661,660,669,653,676,663,659,667,655,681,654,651,668,671,656,672,666,654,662,655,673,675,733,751,739,749,724,720,662,708,718,689,717,710,719,743,711,722,730,691,717,699,719,731,703,706,709,728,697,728,702,734,723,762,762,688,726,762,703,747,684,713,708,701,700,689,698,691,693,696,705,700,726,720,690,692,680,715,708,677,715,731,692,683,712,723,704,685,713,699,701,698,692,696,716,705,694,694,717,703,641,698,716,662,701,664,706,673,732,709,687,678,704,708,646,699,729,645,725,711,661,691,704,656,681,688,675,616,683,680,649,699,664,694,732,730,689,706,680,756,678,693,656,654,620,656,666,659,659,667,657,666,685,652,654,638,663,670,642,673,661,644,615,686,667,664,678,631,652,650,664,664,664,676,669,670,671,634,649,677,665,643,666,671,665,531,539,566,558,555,568,562,576,548,560,560,563,570,552,572,557,553,563,541,562,541,549,573,561,557,562,564,553,549,559,546,553,544,552,559,547,534,551,555,573,590,607,600,583,589,591,598,598,609,584,575,583,587,569,582,587,587,610,609,582,584,577,591,602,607,594,596,585,593,593,593,584,593,591,585,580,612,593,615,604,616,624,602,638,611,608,647,627,617,604,619,630,627,626,626,625,651,606,633,604,609,623,615,626,605,625,627,621,649,611,609,610,612,632,613,641,621,623,632,624,696,689,712,728,690,718,698,701,694,704,699,685,717,725,713,722,678,722,695,701,764,733,714,691,691,717,751,683,722,673,670,723,691,716,730,731,750,715,701,697,676,712,715,718,683,701,629,639,662,663,584,639,670,647,662,637,657,652,661,623,668,674,632,635,664,622,613,641,657,636,654,615,655,638,648,634,650,632,596,629,655,624,657,653,646,626,643,631,666,655,653,574,614,605,629,640,622,629,670,619,680,604,627,632,610,665,654,621,664,651,567,671,641,656,603,623,673,596,690,727,579,622,633,677,617,645,627,619,592,618,605,625,660,638,649,649,596,652,587,720,688,704,719,678,701,691,713,708,713,692,691,718,675,700,694,714,711,703,692,693,712,701,718,696,691,696,683,711,670,700,710,691,688,690,699,737,695,711,723,696,697,689,689,676,670,667,657,677,662,660,670,664,659,657,662,655,658,659,677,692,689,671,674,704,690,665,671,670,663,668,647,672,652,685,664,671,666,696,672,668,694,661,666,662,668,696,688,648,654,634,672,640,650,654,641,649,652,647,671,644,643,650,633,648,640,643,631,659,637,632,630,644,644,629,630,651,648,668,642,626,650,640,643,631,636,647,635,653,653,652,653,658,661,655,656,662,669,660,670,680,661,667,667,657,668,677,651,660,673,647,648,675,661,648,663,672,659,655,652,664,666,663,659,661,643,650,664,660,668,655,661,671,650,652,745,754,712,708,720,682,704,730,741,730,724,749,741,687,745,689,685,715,738,710,724,752,709,748,683,697,716,741,701,695,728,695,701,742,714,682,715,795,701,699,725,694,705,704,718,718,701,678,698,720,693,683,680,699,704,719,705,711,692,700,696,686,708,713,692,706,701,692,704,699,711,709,700,691,693,688,700,718,701,711,701,686,697,696,700,715,673,700,711,734,699,766,687,686,685,738,746,697,685,655,677,654,642,729,735,688,645,697,706,674,753,714,737,752,697,713,701,722,776,693,660,687,675,687,700,706,647,658,649,701,677,673,685,715,668,667,647,688,674,658,685,671,665,672,691,645,661,661,669,675,669,679,676,653,639,664,676,659,665,676,686,687,683,642,656,686,648,667,676,682,657,678,677,666,648,634,656,650,646,651,637,655,643,623,633,667,643,649,678,646,642,628,631,639,640,638,657,635,638,643,675,623,647,635,659,653,649,648,637,644,633,650,645,661,628,647,631,636,630,636,639,641,658,644,654,649,649,646,630,658,663,650,658,651,634,643,661,652,653,639,658,663,634,661,637,659,640,655,650,649,642,665,645,653,632,639,657,662,634,657,643,590,609,600,591,581,604,581,596,600,594,605,602,590,605,588,575,606,598,592,616,597,603,587,603,599,581,588,608,600,595,603,605,618,594,572,593,585,594,602,579,591,601,629,622,673,620,676,654,607,637,621,660,641,642,702,665,566,636,624,656,620,650,604,691,584,644,656,694,616,716,616,592,653,696,621,675,642,583,736,630,644,659,634,651,632,677,630,636,626,650,659,669,649,645,653,623,659,655,647,653,634,636,671,648,646,656,639,645,647,659,627,637,624,624,650,640,654,641,643,636,663,665,659,658,620,578,581,556,549,561,554,560,564,562,539,561,540,556,568,555,539,560,566,549,568,561,569,558,560,556,573,538,547,554,550,565,573,551,544,540,569,548,552,572,548,571,555,568,555,568,565,551,560,564,566,557,558,554,565,576,560,548,554,573,565,574,564,566,562,555,568,576,559,564,563,562,556,553,576,562,559,560,572,557,562,579,558,547,565,540,576,567,569,556,547,561,584,555,547,578,555,558,559,554,554,576,558,546,562,574,545,539,564,555,583,580,558,568,558,567,565,561,560,566,564,578,555,542,539,523,510,518,522,524,522,519,541,528,511,523,526,535,515,510,512,533,520,510,534,539,533,518,518,520,516,535,523,514,521,529,526,534,523,531,521,529,512,531,523,519,523,539,525,534,521,534,532,509,528,534,536,540,527,540,542,522,525,542,530,535,530,529,519,524,542,537,536,539,542,536,525,529,537,533,531,538,528,536,539,525,525,526,522,529,529,526,521,538,530,532,550,544,555,535,536,550,529,533,547,545,546,540,534,552,531,553,542,549,529,526,539,535,530,539,540,538,549,542,540,541,547,536,549,535,550,531,548,545,538,555,535,549,526,549,566,555,555,559,569,556,546,578,568,565,559,565,572,557,565,559,553,553,562,561,568,565,567,569,565,552,567,554,543,569,569,564,560,568,573,576,547,570,561,567,554,556,553,566,608,623,621,589,610,594,620,621,609,605,616,610,597,612,619,614,597,609,609,611,612,617,611,602,620,631,618,609,605,628,607,627,614,594,614,608,645,620,632,649,646,614,630,622,666,616,634,647,634,628,639,643,649,649,625,664,631,642,637,623,628,634,652,648,650,617,655,665,621,628,646,628,643,641,639,726,745,715,703,701,738,694,711,675,732,766,734,730,716,678,673,694,719,728,712,717,717,731,669,721,720,736,728,708,686,729,738,698,713,716,699,744,687,689,724,744,711,747,677,732,738,723,738,729,726,727,741,744,711,725,723,719,711,728,735,740,722,736,720,715,719,729,730,732,714,719,725,738,707,730,727,740,714,722,728,736,718,725,750,669,657,645,659,667,673,643,698,653,633,661,644,672,672,680,676,672,660,644,637,622,662,669,649,670,683,645,669,670,683,690,664,673,673,676,665,665,656,636,631,663,686,647,596,555,559,535,542,559,548,547,554,532,545,545,553,539,557,562,538,544,558,544,559,556,538,544,565,567,542,545,561,552,542,578,550,552,545,553,538,556,548,562,551,577,587,562,582,563,574,585,579,595,570,572,589,566,568,583,572,592,571,567,573,554,569,592,585,568,570,579,562,579,585,587,579,560,570,568,586,592,577,577,576,614,604,607,569,597,631,624,591,605,618,593,597,595,636,614,604,612,589,638,638,601,630,631,613,590,604,602,596,615,622,600,607,618,610,605,601,595,634,606,611,592,619,617,585,615,594,590,599,613,612,620,612,584,604,607,599,594,597,617,633,598,605,598,621,625,580,592,600,598,614,585,633,612,602,628,622,594,595,612,617,604,587,616,606,603,618,576,595,582,578,592,573,589,585,585,558,578,582,576,576,574,582,580,570,571,571,588,585,594,584,585,565,574,584,583,581,587,577,576,583,572,563,583,590,581,567,579,579,586,681,666,677,670,664,661,646,665,682,672,667,701,654,676,679,677,674,672,670,698,681,652,661,663,659,681,668,677,667,707,683,677,693,696,687,667,658,658,672,662,660,661,672,700,709,722,694,665,695,703,704,684,672,717,681,670,672,655,740,695,672,676,684,661,677,678,674,696,711,667,683,684,697,647,691,685,703,680,688,682,708,694,686,685,696,701,680,703,695,685,742,698,676,704,676,693,692,709,694,692,698,687,689,683,693,673,664,699,670,664,681,664,688,680,696,670,709,684,699,671,680,678,666,677,702,691,615,586,583,630,574,595,606,611,584,623,588,593,559,619,614,615,569,613,599,586,615,615,586,621,602,613,626,621,628,580,600,590,603,583,619,638,573,588,651,565,587,562,568,567,568,557,562,577,574,559,577,565,581,559,576,569,581,578,563,569,572,580,574,573,557,581,575,576,580,565,572,566,547,568,570,569,569,574,573,545,538,531,530,556,528,532,545,521,544,542,536,536,534,542,556,522,533,519,529,579,560,551,531,549,536,537,533,542,543,548,558,532,562,531,548,560,554,535,544,542,544,538,543,528,526,520,524,515,520,519,540,538,540,498,516,532,502,519,517,519,529,540,531,529,530,524,513,513,531,532,515,517,538,514,513,510,509,518,519,529,523,532,526,527,505,540,501,560,585,586,597,574,564,582,563,596,571,577,572,571,568,567,578,587,600,561,592,583,578,566,582,584,582,576,577,578,590,579,571,572,571,577,570,583,563,583,561,581,637,639,637,650,631,631,651,635,650,637,627,641,653,660,625,635,600,628,641,636,646,626,626,659,639,632,646,644,624,651,649,660,646,636,626,640,655,636,627,633,642,625,657,652,645,649,663,636,663,639,646,640,652,651,652,644,643,639,635,653,652,640,660,651,652,658,660,633,641,631,649,628,652,662,643,648,639,654,632,656,662,645,664,644,647,635,653,642,636,610,621,606,634,602,601,638,601,610,629,594,601,598,597,599,613,625,617,616,607,621,613,617,595,608,604,615,597,610,613,587,615,606,607,611,626,631,630,595,610,609,632,599,624,619,597,632,607,605,618,584,586,600,586,572,569,587,575,587,582,582,576,582,576,583,586,585,589,585,572,575,584,577,583,581,590,589,585,581,582,561,575,570,587,569,579,583,589,559,568,579,575,567,678,656,671,681,668,658,692,681,658,678,673,693,674,678,680,671,678,682,669,700,684,662,658,677,675,671,677,688,655,693,688,681,670,669,672,661,664,664,667,669,696,677,672,664,651,681,674,643,669,668,647,658,666,649,681,703,668,653,675,659,639,671,706,673,683,675,663,640,639,713,678,679,677,685,659,685,649,662,662,710,668,622,610,664,619,586,654,619,635,622,635,643,617,607,652,631,657,648,603,624,645,616,599,644,632,646,641,615,651,624,629,627,592,623,595,614,632,658,597,643,649,565,628,576,651,619,622,676,566,594,633,596,639,664,632,712,554,647,641,685,578,565,627,671,587,624,618,676,597,612,651,594,655,669,627,691,672,693,615,629,654,670,551,630,606,646,625,626,619,612,620,634,638,624,596,612,625,628,641,631,621,635,633,612,653,637,618,617,628,617,602,632,614,631,612,603,655,609,615,626,619,630,650,629,611,609,630,583,580,588,585,593,590,575,584,584,585,592,574,584,570,577,582,590,576,588,571,582,583,582,576,579,576,591,567,586,575,582,595,569,585,574,574,574,572,588,594,592,579,586,582,574,583,586,633,631,657,625,643,660,639,687,642,669,651,644,613,652,656,644,660,630,642,665,641,657,644,654,627,652,641,638,593,637,582,627,632,664,642,649,650,650,644,647,660,693,711,709,684,708,676,695,683,696,694,698,669,718,707,685,708,714,687,692,693,681,695,702,709,677,701,716,687,676,685,709,686,695,696,714,709,689,705,703,684,685,684,682,699,686,670,687,675,670,667,679,686,675,672,668,678,661,684,683,677,672,649,681,681,685,678,672,664,663,679,672,679,687,664,650,670,672,672,667,679,670,685,659,661,672,666,672,668,669,701,679,682,571,575,584,571,575,583,570,576,544,583,574,585,589,570,573,593,565,578,581,578,565,544,568,573,589,571,582,568,594,550,546,569,571,553,557,568,560,558,571,571,572,590,572,580,529,612,587,598,597,581,595,581,608,578,583,590,582,616,594,580,603,576,627,581,589,574,590,589,591,582,596,578,598,577,577,582,596,616,586,603,595,579,597,600,590,604,592,600,605,592,606,625,612,602,626,622,614,607,597,612,592,597,628,628,616,618,601,633,594,618,628,594,616,614,616,615,634,606,617,604,592,616,618,600,627,605,640,630,596,598,606,621,597,631,602,609,598,600,576,588,576,574,594,570,559,585,575,586,582,552,583,571,579,582,574,587,579,583,591,556,562,579,576,574,581,579,582,570,586,590,579,573,588,574,585,566,582,589,560,565,578,619,619,616,585,632,641,572,635,602,640,609,633,633,621,657,597,648,627,663,613,635,634,629,611,603,649,590,655,639,642,590,617,613,651,614,603,649,651,602,650,636,639,670,680,667,656,662,679,659,672,667,662,696,651,672,671,678,681,660,671,680,665,677,669,685,669,657,665,645,669,665,670,667,664,666,662,667,649,672,690,665,670,661,681,671,693,674,664,623,615,590,604,589,607,599,587,619,627,619,613,607,605,615,610,613,592,618,595,607,631,592,588,598,603,600,601,589,600,597,594,629,629,606,607,600,586,612,589,606,606,595,626,606,631,772,739,697,742,706,711,727,705,748,651,737,715,776,718,696,693,772,693,791,676,730,755,717,754,688,697,721,749,626,708,706,669,755,695,755,691,658,727,774,747,706,753,695,734,721,761,733,698,707,692,700,715,707,748,707,712,689,697,712,723,720,684,707,712,709,695,740,716,703,722,719,717,714,704,699,725,731,727,668,717,699,722,719,711,707,721,700,727,701,683,727,683,662,670,635,643,593,647,656,650,649,633,629,683,674,660,638,634,663,648,665,662,647,643,647,683,665,661,642,639,654,651,663,662,643,635,635,658,636,657,648,657,624,642,659,726,704,711,697,719,715,707,701,740,718,727,731,731,702,736,716,706,751,791,686,736,774,710,715,708,709,718,747,723,705,717,707,761,728,707,739,726,729,729,714,716,731,729,702,679,715,734,702,716,685,736,697,738,692,724,779,748,721,710,739,754,699,773,681,725,722,737,719,717,709,728,740,742,728,739,757,720,706,680,728,718,668,666,667,660,694,658,657,659,669,663,668,670,655,654,644,646,671,654,683,672,654,646,653,648,652,669,669,679,677,671,672,663,640,671,679,644,642,646,678,672,576,577,559,589,577,583,586,580,579,582,577,586,570,600,590,565,564,569,577,572,568,566,583,591,577,582,579,584,575,587,570,567,573,590,581,586,566,573,582,571,573,572,547,693,675,676,673,690,663,693,681,682,668,700,681,673,670,655,682,679,642,660,678,698,674,675,673,660,707,656,662,683,669,668,692,696,688,692,670,665,691,700,685,693,728,719,699,676,691,702,708,688,667,640,681,688,678,663,693,682,670,690,675,676,678,696,671,689,695,639,690,679,684,711,695,626,685,676,704,683,696,679,673,678,676,667,692,706,695,667,722,706,671,712,713,704,695,664,669,690,695,690,684,681,662,669,683,680,666,686,681,687,685,697,700,687,682,737,607,605,581,597,570,591,613,582,578,592,580,598,592,571,589,578,569,614,607,585,598,588,619,577,593,605,594,598,573,597,611,591,597,608,609,571,592,620,569,565,570,598,577,603,537,627,621,606,641,614,605,630,637,667,663,639,622,636,630,661,593,597,583,659,641,664,620,572,648,658,660,618,642,673,594,685,622,663,667,659,628,626,593,618,619,675,686,675,686,683,700,713,656,656,660,657,693,669,697,668,676,681,691,710,683,696,695,698,681,691,688,710,705,674,685,693,670,702,690,712,661,676,709,672,675,684,680,703,675,678,652,753,641,593,579,591,648,610,584,631,580,585,605,634,597,596,599,641,648,616,637,593,645,629,631,622,601,633,579,592,605,594,669,561,626,614,614,646,587,664,557,598,613,613,623,612,665,663,685,702,693,708,686,676,690,694,646,656,689,674,695,680,673,690,697,678,699,694,676,677,688,685,703,694,679,685,681,668,683,677,682,708,730,695,663,674,663,603,678,621,734,627,660,678,660,652,642,618,695,653,714,712,687,627,645,673,623,690,645,638,676,678,628,625,687,686,670,629,669,655,675,709,665,695,695,645,723,745,688,722,697,712,726,683,718,710,709,699,704,715,713,697,698,713,721,705,715,710,715,704,696,712,691,715,707,710,709,722,688,727,705,718,722,702,684,700,702,702,602,608,597,603,613,631,613,623,647,608,629,606,622,599,635,644,608,638,607,606,648,586,623,646,624,644,618,615,622,623,620,614,615,640,635,601,643,602,626,627,622,614,632,625,579,601,581,584,638,587,592,586,604,565,606,598,615,609,619,604,587,600,600,589,569,589,619,587,584,593,582,594,598,602,599,575,591,608,591,613,602,572,580,596,598,577,601,600,607,587,654,660,644,635,638,660,633,660,664,676,645,653,655,674,658,680,657,672,653,645,637,638,642,658,668,678,661,636,632,644,641,647,663,661,641,673,662,632,646,635,678,649,667,641,650,647,654,662,648,603,589,588,603,595,606,588,591,593,591,602,594,597,595,603,633,596,594,600,608,583,599,598,604,610,600,600,573,591,610,588,587,594,579,619,614,593,590,604,599,591,606,600,604,580,591,583,617,650,598,633,606,611,604,564,572,623,615,608,603,568,607,604,628,656,612,597,607,620,606,613,591,617,634,608,595,590,611,607,611,646,595,635,566,595,576,630,614,585,593,576,576,590,589,588,585,580,607,597,582,572,581,599,569,582,579,602,608,580,587,569,585,571,580,594,593,585,581,585,595,587,582,599,596,590,653,647,638,645,657,642,636,633,626,594,573,605,669,629,608,590,619,620,658,619,640,647,657,613,664,623,610,649,646,618,619,637,589,630,635,633,671,629,641,671,632,633,687,679,666,667,673,686,655,667,662,660,666,660,674,680,686,664,666,678,666,662,672,670,684,683,672,661,683,678,654,663,686,663,655,661,656,667,666,672,667,569,566,604,582,573,572,582,580,591,572,575,575,572,571,566,577,565,571,573,591,565,574,562,594,590,575,596,577,582,587,563,571,554,543,584,566,556,578,595,585,581,595,578,589,553,574,584,599,568,575,557,584,580,574,580,588,565,573,568,563,553,586,577,583,593,564,576,582,581,594,576,588,574,574,568,571,584,577,575,576,559,586,551,589,566,583,575,565,573,552,566,567,557,565,557,555,570,562,551,562,558,559,568,571,561,565,572,567,551,570,561,566,552,555,567,553,569,561,561,555,566,559,563,570,570,557,549,584,570,577,574,570,587,568,595,598,589,593,575,582,584,568,582,580,571,573,581,585,574,579,582,576,600,564,571,568,578,581,575,586,589,584,589,582,568,579,585,578,585,586,597,595,627,610,646,583,568,654,599,572,627,619,607,550,615,620,632,628,650,642,626,598,614,570,602,630,639,644,603,628,613,644,627,599,593,605,594,638,609,609,642,615,597,620,678,610,606,617,605,594,587,609,617,590,611,601,592,618,584,597,596,606,592,602,614,609,596,592,621,596,598,608,587,607,621,574,590,604,607,593,610,603,608,588,603,595,586,578,644,612,612,629,651,692,649,640,637,667,642,636,648,604,636,621,616,615,588,594,617,658,632,643,644,630,601,633,670,609,619,643,657,668,593,623,640,630,637,581,590,625,677,653,618,683,683,678,674,695,672,689,671,689,674,666,676,680,681,651,682,678,674,698,703,677,683,671,666,690,666,676,679,683,672,690,682,688,690,665,683,686,685,673,691,674,674,688,694,655,689,699,686,715,726,733,708,705,724,694,715,711,747,754,719,716,744,712,714,724,759,747,742,726,699,698,701,767,715,756,731,722,712,736,738,690,731,694,708,669,718,715,703,719,698,700,693,710,706,701,700,717,697,702,707,703,699,722,707,707,712,707,698,715,714,708,709,724,701,694,679,721,708,684,707,696,672,713,710,701,704,689,695,708,703,702,679,690,711,698,696,704,743,685,634,720,673,709,709,623,731,699,691,706,714,656,722,703,740,685,727,708,739,748,688,663,683,660,666,665,677,680,647,681,720,761,675,669,727,659,683,664,653,656,670,666,655,659,666,646,663,688,660,652,641,654,641,646,654,660,664,647,646,643,661,617,654,668,650,663,633,667,672,643,630,633,659,653,659,673,651,679,609,658,653,643,687,687,738,704,738,719,693,734,745,691,708,719,743,729,752,704,670,712,743,725,733,741,747,735,720,698,709,731,716,732,708,736,759,725,703,695,718,723,720,752,742,717,732,716,695,712,717,696,710,721,678,715,711,719,693,716,755,694,712,719,733,735,730,737,726,760,710,753,678,711,682,749,717,729,759,710,671,734,755,729,710,743,658,682,659,670,650,667,684,653,639,662,639,645,670,679,671,665,658,669,677,668,655,674,683,672,652,663,640,678,702,669,668,679,662,668,666,667,691,672,647,673,680,672,615,670,658,671,652,658,566,582,559,570,577,569,582,562,581,573,556,582,573,587,572,555,574,563,556,549,573,563,586,577,558,569,576,571,584,585,589,583,570,570,559,572,571,557,599,614,612,601,631,599,585,593,609,544,578,594,589,606,563,606,604,614,594,633,610,608,603,584,564,597,620,542,577,606,545,587,603,565,593,587,565,570,593,636,631,604,621,658,561,577,567,559,552,573,572,560,567,588,587,575,568,571,579,589,565,580,590,575,571,571,575,565,568,580,586,594,580,565,576,569,569,560,582,566,576,556,576,577,584,546,675,639,648,648,671,643,663,637,668,669,633,667,649,660,667,651,659,628,663,635,659,647,651,663,682,653,671,647,640,663,650,683,643,656,676,663,669,660,646,664,670,676,621,680,614,578,589,575,598,586,595,586,613,591,608,577,599,598,583,585,604,591,595,566,597,593,606,566,580,586,600,597,580,589,593,608,573,581,579,621,592,584,566,576,584,593,585,593,572,612,575,596,577,576,595,551,589,593,583,605,560,641,564,624,668,648,591,624,640,586,583,576,593,597,603,570,624,621,592,637,598,639,556,589,633,626,579,597,569,573,593,604,617,525,667,650,646,533,598,612,616,605,591,593,602,602,598,589,613,578,602,600,604,595,601,602,619,601,602,592,589,612,595,585,588,596,594,604,593,592,600,606,623,592,595,603,605,592,608,600,617,607,593,593,571,560,575,566,573,573,562,575,573,565,565,581,573,585,570,567,569,584,557,564,578,579,572,572,548,567,557,573,553,565,568,569,551,566,562,573,594,552,544,549,538,545,546,541,545,537,552,551,550,535,552,552,562,549,561,562,562,554,550,538,535,560,538,560,553,566,546,568,555,550,553,548,549,556,541,549,543,546,649,694,700,689,671,641,655,704,681,658,669,704,680,600,690,664,702,662,647,663,662,685,689,694,684,722,695,700,660,652,704,581,661,645,701,671,757,683,631,663,636,588,583,624,582,579,615,590,601,588,596,592,611,620,587,598,565,599,581,594,603,593,611,566,590,602,571,587,587,604,592,617,601,603,579,582,611,600,599,596,593,604,605,607,594,554,549,577,561,559,546,536,535,528,545,547,562,570,531,528,535,529,528,551,551,549,549,571,538,568,572,557,546,550,567,562,554,564,513,552,555,552,544,565,553,566,540,548,550,535,553,786,768,773,749,753,779,741,807,735,753,778,733,749,772,736,754,761,733,733,758,733,762,774,791,767,797,759,725,722,793,766,751,765,761,773,760,742,775,749,722,788,732,752,704,712,735,712,684,703,720,696,698,686,726,737,698,718,704,716,721,766,753,721,718,717,732,754,761,731,705,698,745,745,723,693,706,756,731,746,708,732,638,669,675,660,648,656,653,659,661,661,663,650,650,644,629,666,660,658,656,648,675,662,678,647,666,654,670,648,669,669,663,674,626,682,656,685,689,647,671,654,640,633,655,694,635,657,723,743,744,733,710,717,699,725,731,693,730,687,766,722,696,732,726,726,744,719,739,714,714,714,707,741,727,695,665,722,724,735,701,716,714,741,740,745,701,748,735,695,744,737,746,722,731,762,731,749,735,716,752,753,706,748,759,713,763,733,748,741,738,741,744,728,725,767,715,755,709,714,739,738,729,711,700,751,727,721,706,671,697,674,695,743,708,718,707,716,720,725,712,718,690,678,700,709,729,670,699,713,713,717,709,690,717,717,734,704,696,714,722,702,725,685,716,673,697,694,725,706,701,697,726,729,719,718,687,669,688,710,707,710,709,690,713,705,671,687,693,681,720,686,705,696,703,713,700,712,696,699,703,694,685,699,698,686,699,705,708,698,693,711,706,697,697,710,712,688,731,701,701,613,602,633,589,633,611,680,608,641,578,628,606,654,637,647,578,604,663,658,622,648,629,609,647,660,618,621,635,669,568,649,638,656,641,641,612,601,550,579,575,580,590,580,601,588,572,565,569,589,560,535,599,584,602,595,586,605,582,607,568,581,581,583,584,590,546,543,593,563,602,597,584,551,549,600,574,550,586,554,551,568,575,573,581,560,556,573,565,568,573,556,546,581,560,567,561,576,552,578,577,559,544,553,579,569,579,572,579,575,566,573,575,571,549,571,574,554,553,540,552,545,547,530,544,550,541,559,542,538,539,541,562,550,543,539,551,542,541,547,551,544,544,548,555,545,557,546,550,548,540,542,553,545,541,548,545,552,563,539,549,538,554,539,547,543,557,540,552,554,543,551,542,548,531,540,544,546,546,558,550,540,558,551,549,536,553,538,549,552,558,546,543,547,556,545,550,554,547,539,539,550,552,554,549,554,553,575,643,630,654,659,641,640,622,666,662,610,646,642,616,665,617,603,603,632,636,643,637,626,590,638,639,631,607,609,617,635,649,622,639,634,611,657,642,613,604,672,659,624,623,630,599,560,554,562,554,542,571,541,554,569,573,548,561,542,537,554,550,556,539,556,549,565,564,574,568,558,557,556,567,561,576,580,550,551,542,559,554,560,569,559,545,565,532,513,542,550,545,533,562,567,553,533,529,548,554,544,543,531,543,543,579,529,549,534,543,544,552,530,539,533,544,538,533,537,552,540,517,553,569,553,550,539,518,543,530,545,529,583,700,709,688,728,708,705,701,716,709,708,705,694,676,690,726,717,712,721,721,700,701,734,698,712,692,693,694,712,717,698,733,734,756,694,715,745,711,703,748,714,718,707,714,760,696,699,715,726,703,713,697,704,691,682,708,691,701,689,682,694,688,710,691,711,709,713,710,694,698,722,716,708,708,701,712,708,714,702,714,702,701,719,685,690,715,716,707,682,723,704,697,686,680,691,720,685,685,679,703,681,672,685,696,682,707,669,673,716,693,715,704,683,688,695,688,697,702,709,685,716,690,684,688,705,683,734,713,734,716,703,709,676,675,669,625,597,609,611,614,616,608,618,636,625,587,635,608,588,606,593,594,639,594,614,622,620,605,608,666,584,643,595,599,618,611,588,598,625,624,616,614,605,620,601,627,592,543,537,553,530,529,550,558,569,543,534,543,548,535,548,529,542,538,548,563,553,541,549,545,543,543,555,551,533,543,548,541,545,565,552,539,540,531,559,550,538,537,563,537,532,675,681,686,690,667,672,675,679,685,659,686,668,680,692,659,690,675,661,679,676,651,679,686,679,673,665,669,664,678,683,702,676,669,682,647,688,672,703,634,645,622,658,625,649,655,654,643,657,642,620,660,633,618,648,637,639,655,646,644,648,658,642,655,669,637,652,635,644,667,642,646,640,649,639,639,692,641,647,628,633,645,639,633,640,652,626,652,591,644,619,635,636,654,665,650,649,630,660,627,671,665,615,631,623,636,627,657,654,631,643,639,628,632,651,655,638,659,666,643,711,688,668,710,712,682,661,681,699,678,725,681,678,720,731,704,682,691,710,703,696,686,667,696,662,669,705,690,690,705,694,715,668,693,714,695,657,683,733,702,689,746,699,687,671,642,645,669,608,642,638,626,648,628,639,665,637,625,621,635,630,630,680,643,643,617,641,661,647,629,642,649,668,624,655,637,640,646,635,672,606,624,635,662,689,656,635,628,654,684,660,666,595,602,621,629,679,594,604,664,656,603,602,611,640,571,616,571,557,636,665,617,609,681,610,614,639,645,621,585,564,601,664,534,607,583,615,682,625,593,603,608,735,597,597,614,601,624,581,602,600,608,571,582,596,602,595,588,600,611,584,607,592,601,590,589,593,600,602,597,591,608,617,605,625,610,609,605,598,587,614,610,612,599,603,615,576,599,594,605,591,563,572,574,569,569,561,564,571,576,573,559,563,586,545,587,567,575,568,583,568,569,562,560,564,577,558,557,581,576,566,575,582,559,563,573,572,575,584,577,566,566,592,558,574,573,534,552,535,541,527,552,558,543,549,544,544,543,545,536,535,555,554,560,542,526,539,543,553,525,559,536,543,542,536,525,542,546,547,540,532,525,543,541,553,548,557,513,514,518,520,525,516,528,527,528,518,517,499,522,518,525,527,519,516,516,505,498,521,533,538,520,530,522,516,518,522,530,522,517,523,509,535,515,508,517,523,521,523,506,508,507,507,514,504,512,499,502,499,510,502,495,516,504,505,504,500,500,499,506,497,510,484,493,507,505,503,500,498,500,490,502,501,509,510,499,515,499,495,502,492,498,509,508,495,488,504,499,496,502,497,493,501,490,488,505,497,502,482,497,495,491,505,501,502,504,486,495,480,504,514,497,500,508,488,500,491,496,504,487,502,500,506,500,517,506,500,504,495,504,509,507,485,499,503,497,506,509,502,514,516,501,488,505,508,516,507,498,501,493,512,506,507,502,510,490,507,513,508,509,501,509,492,502,525,496,640,638,643,638,650,656,638,659,652,634,637,635,651,643,633,656,641,641,643,643,644,645,643,646,654,628,646,671,645,647,661,659,655,675,659,648,614,591,615,608,595,605,594,618,592,593,600,611,597,609,617,615,607,606,597,602,613,593,608,613,605,598,617,575,592,592,594,614,589,606,606,619,610,603,586,601,601,605,588,601,608,599,619,638,586,587,575,571,597,581,575,579,577,583,578,569,566,574,590,571,569,576,568,576,575,575,597,565,557,577,593,570,558,577,574,558,574,584,597,582,568,582,563,545,543,558,551,553,537,552,547,540,552,563,561,545,545,555,562,544,548,549,550,554,566,564,523,544,556,543,578,547,555,544,540,561,559,550,553,548,555,542,544,553,549,537,584,595,619,586,578,621,614,615,611,573,602,547,563,608,606,637,598,632,618,641,578,618,548,631,622,577,597,613,595,611,535,588,588,606,569,591,601,611,588,599,578,606,664,556,548,562,553,559,567,566,559,556,576,557,562,555,567,552,557,560,579,549,557,570,570,555,558,549,545,569,549,554,532,554,572,581,555,549,558,548,551,555,554,558,564,565,558,555,567,578,557,593,560,578,597,560,589,588,570,579,564,573,568,568,571,564,580,562,573,578,579,571,564,574,577,586,555,567,560,566,570,575,584,575,562,579,554,574,567,555,599,566,560,552,556,548,544,558,550,551,533,546,556,530,548,545,549,555,545,555,546,554,555,546,538,548,545,556,538,555,546,547,538,540,550,538,546,545,549,545,544,545,533,548,546,544,548,551,546,768,767,729,713,780,728,732,741,694,740,698,707,790,745,685,761,727,747,711,717,673,745,723,780,771,728,716,706,762,772,758,710,735,725,757,746,744,741,744,686,783,818,771,698,696,729,695,723,709,683,699,715,709,711,684,684,684,711,705,718,690,710,719,728,719,689,690,731,699,702,698,695,700,706,695,719,704,727,728,736,724,751,616,616,624,612,612,626,646,628,605,629,615,636,629,599,633,626,608,620,650,639,622,638,641,627,602,606,629,609,612,634,601,624,612,629,599,628,625,628,648,574,584,585,571,586,568,561,569,580,577,576,581,575,553,570,587,577,575,573,571,577,582,568,588,568,603,585,579,575,568,576,565,574,595,572,581,574,574,572,573,593,570,578,553,554,559,548,558,558,545,559,550,554,568,565,551,557,556,544,560,559,545,542,561,564,550,554,554,551,552,545,559,557,549,562,548,552,566,561,533,549,548,543,565,567,544,658,682,693,681,693,653,653,725,711,685,655,689,642,714,685,646,671,684,696,695,669,681,691,644,727,666,670,673,669,706,709,671,693,654,705,683,681,731,734,722,690,611,703,681,698,699,699,694,700,715,706,716,691,717,691,720,723,717,682,718,685,717,728,711,710,688,716,704,699,706,696,710,705,722,696,690,694,716,705,726,725,621,627,630,609,626,630,606,611,621,601,630,630,619,615,588,647,599,608,625,587,628,640,635,607,601,625,629,625,626,619,624,608,604,629,643,632,614,639,602,613,629,613,621,626,581,603,601,591,600,587,628,596,590,607,592,604,599,575,595,609,607,571,603,587,579,593,585,609,583,617,592,592,587,590,583,603,594,606,593,602,612,593,668,650,645,677,674,663,653,665,663,671,653,663,658,666,664,653,668,679,665,660,655,667,689,656,657,668,669,666,662,672,690,651,673,664,668,652,656,657,669,671,747,681,698,773,748,732,679,731,695,725,758,704,734,715,724,743,753,742,719,743,734,752,696,710,712,709,714,727,730,706,718,705,737,688,713,710,730,715,730,729,721,696,709,726,706,709,737,733,737,703,691,682,707,687,725,698,718,711,699,691,719,693,691,689,708,703,699,678,732,713,691,699,710,696,691,710,706,729,708,694,678,688,693,704,720,700,710,671,710,700,697,647,615,701,725,716,659,655,706,654,704,713,660,665,648,648,696,655,622,671,668,705,709,719,659,664,661,699,666,680,749,670,687,681,675,690,717,673,660,703,684,709,699,698,674,681,683,679,636,690,655,699,717,650,659,643,685,673,694,698,650,654,680,662,654,670,645,721,667,705,651,714,684,683,653,694,703,665,691,677,722,561,579,596,589,580,601,572,581,580,593,552,597,606,577,571,602,577,590,586,561,562,573,581,581,575,611,557,560,561,571,564,558,571,569,572,578,576,601,596,587,587,573,581,591,574,575,556,567,566,554,560,573,548,576,560,558,555,552,559,577,559,581,589,559,568,595,554,562,555,566,591,565,571,559,549,561,563,571,562,553,577,548,544,568,563,575,554,571,563,568,542,560,565,556,528,556,542,618,604,593,589,613,610,592,631,588,586,598,602,619,620,600,607,594,614,599,597,629,612,603,582,633,637,616,604,601,599,576,605,586,593,644,613,617,596,611,611,605,617,573,553,561,542,547,571,569,570,565,570,559,559,570,563,565,567,556,573,564,561,576,561,585,557,561,559,584,573,565,561,564,565,566,559,557,585,551,550,563,569,590,542,594,592,561,574,564,583,571,563,558,557,558,554,566,582,573,563,568,575,568,576,590,558,562,577,589,555,546,566,563,572,554,570,569,590,575,565,569,563,560,592,569,562,566,548,569,568,558,531,717,713,752,734,709,712,703,691,693,706,680,689,687,714,687,726,717,694,695,721,697,689,728,737,704,686,738,702,684,680,702,710,714,711,733,726,713,693,704,730,730,723,707,717,737,724,712,710,716,705,694,719,693,702,701,721,727,704,720,720,702,706,704,704,696,709,713,712,698,691,707,697,709,697,683,708,721,713,697,682,700,702,725,703,701,709,688,718,709,710,716,683,714,706,672,682,688,698,679,690,681,685,683,681,670,686,675,690,675,705,682,669,648,691,692,697,703,693,679,700,678,671,723,706,689,705,702,710,690,704,716,700,671,698,695,695,673,675,686,695,694,705,672,680,682,690,670,679,688,687,667,695,670,688,678,679,667,677,694,675,686,662,677,667,701,683,664,710,683,683,659,656,676,676,653,660,671,632,625,646,608,673,628,636,648,630,624,632,638,641,643,643,654,623,641,619,640,650,621,631,631,653,640,643,637,668,639,658,643,653,646,664,691,665,658,628,627,660,600,596,603,608,577,575,599,594,578,591,597,574,577,594,615,575,588,591,577,607,596,583,593,595,605,573,583,603,591,593,593,583,571,600,585,597,587,603,566,606,579,597,616,623,612,602,616,587,608,596,615,603,611,623,612,605,612,614,614,596,604,596,598,614,599,613,617,613,616,589,616,622,604,629,608,622,596,614,600,615,609,606,601,621,616,613,613,630,627,611,609,637,617,625,649,637,636,620,620,635,633,633,628,623,626,626,617,630,637,627,615,600,616,586,612,634,621,632,600,599,621,633,629,615,608,627,605,610,631,555,571,574,570,572,578,558,575,581,556,559,578,572,559,568,550,580,566,562,576,562,568,565,576,564,585,569,570,574,542,557,561,566,562,559,543,736,691,700,698,691,691,672,665,715,680,692,691,703,694,686,682,672,696,708,698,701,708,668,706,695,664,697,697,704,694,688,711,671,696,683,693,708,660,679,704,697,697,712,682,709,683,646,649,649,654,672,662,656,644,679,679,675,652,660,662,651,654,667,669,664,671,664,653,672,670,667,677,676,657,656,665,669,655,662,662,676,662,666,658,634,646,636,621,608,661,624,632,627,607,615,638,652,632,616,635,645,625,671,609,632,646,606,635,636,610,655,641,646,655,666,639,628,650,604,639,622,659,645,625,616,634,634,640,662,685,688,700,684,686,701,716,657,674,678,721,687,714,656,651,696,682,698,674,665,645,705,697,723,708,717,715,705,684,682,672,716,693,681,726,704,691,637,609,613,595,607,633,613,635,638,615,588,594,631,611,604,598,610,605,601,603,624,625,628,633,593,625,604,610,621,601,576,608,627,604,625,588,649,612,595,597,627,629,627,584,551,563,587,532,543,564,540,554,555,558,547,565,554,558,566,566,532,579,575,535,555,571,539,537,556,535,566,564,563,546,560,558,547,553,532,541,540,597,553,717,728,683,734,710,711,730,727,735,705,716,690,720,710,709,731,726,698,737,711,702,693,718,713,708,739,724,748,723,762,738,723,747,728,741,729,723,733,733,619,676,635,585,607,610,621,614,639,620,617,616,636,613,635,638,630,637,630,624,625,613,614,605,625,646,614,618,628,606,649,646,620,623,623,607,617,620,623,632,637,672,550,617,585,582,590,595,604,581,561,571,624,579,582,606,590,577,596,601,579,585,555,589,576,575,565,562,604,618,604,563,561,586,603,585,578,605,583,594,576,597,582,564,547,649,659,649,635,641,659,663,637,630,634,662,638,633,659,649,652,651,660,662,658,641,642,677,668,635,646,638,641,637,653,633,648,653,661,656,643,651,645,656,645,666,668,649,635,632,630,574,599,591,581,588,583,606,601,565,575,574,600,596,597,574,579,591,594,590,587,587,581,583,585,578,577,574,578,609,587,593,565,575,577,603,617,582,582,576,579,583,715,673,658,673,686,692,675,698,666,675,694,716,679,701,706,691,680,678,671,679,694,696,680,717,693,699,710,704,705,709,705,704,677,690,699,711,702,697,669,677,651,669,653,667,646,672,666,671,673,663,672,646,674,661,655,660,671,655,653,640,661,670,686,655,678,676,660,669,682,658,665,668,683,669,665,660,666,665,671,669,727,713,689,701,639,706,686,705,751,723,711,715,694,718,720,714,701,719,729,715,666,670,724,687,708,714,689,696,718,688,701,673,687,724,711,675,753,726,698,681,716,723,690,681,734,628,610,630,649,655,621,613,641,636,633,618,656,620,644,646,660,643,649,627,640,655,650,646,626,663,619,601,619,640,656,638,624,650,623,634,621,663,653,657,628,639,664,632,638,662,640,587,645,626,640,657,639,687,706,605,694,649,650,689,643,644,607,622,662,639,643,696,617,659,583,666,664,641,624,629,655,688,617,655,693,646,658,714,720,732,701,704,706,698,719,708,731,727,714,726,718,727,723,715,701,695,712,730,711,738,709,734,698,717,701,735,736,709,719,721,716,732,717,692,717,697,705,710,725,715,709,704,701,742,718,736,691,749,757,761,736,716,752,745,741,743,714,739,730,702,732,711,714,731,770,726,739,748,761,736,743,745,720,766,778,705,752,749,727,768,757,735,696,718,722,752,699,750,751,697,659,717,746,717,736,747,746,756,753,715,706,725,718,701,708,769,757,709,702,730,692,722,681,700,692,703,739,723,723,733,700,732,723,681,742,716,739,733,710,657,642,641,662,634,670,673,664,655,677,668,639,642,636,647,653,652,656,677,642,675,679,661,664,650,655,657,655,656,659,653,649,661,666,643,633,623,667,641,637,665,650,634,726,714,746,717,731,757,747,733,711,726,706,742,700,754,734,716,715,712,732,731,721,739,697,754,719,729,720,736,743,784,679,717,715,716,741,722,719,760,724,725,691,736,745,721,723,711,735,687,689,721,718,719,705,712,728,756,745,727,711,730,699,732,746,736,732,693,703,718,729,745,734,704,730,688,719,693,742,755,742,726,758,726,615,637,658,683,658,664,662,650,642,670,669,655,635,654,679,661,659,651,671,703,679,651,633,671,678,666,675,677,671,652,661,664,651,663,673,668,658,636,645,657,650,641,723,713,702,684,716,697,702,723,710,705,682,686,707,681,733,710,718,710,664,673,714,699,697,675,712,716,692,651,718,718,685,686,708,669,707,703,701,696,679,660,665,670,668,627,612,606,589,586,639,629,604,597,607,616,617,588,635,602,633,614,648,633,634,618,631,616,632,615,663,607,589,655,651,640,607,609,601,582,618,588,611,617,603,614,603,563,566,561,547,561,550,540,568,561,554,582,538,556,546,553,599,564,567,563,582,565,549,545,565,561,571,554,584,574,564,563,562,553,557,545,571,524,560,581,592,565,581,570,565,700,714,760,744,755,737,748,769,721,732,732,727,752,722,738,733,766,742,739,787,714,746,762,740,698,739,702,720,741,712,745,734,733,734,719,727,735,739,734,761,717,783,759,769,732,738,741,726,720,747,723,727,730,722,728,729,723,725,732,716,729,716,740,738,755,716,737,743,729,730,730,744,717,721,704,718,736,734,735,745,736,721,719,722,719,726,722,712,707,688,692,648,685,693,687,693,672,687,694,689,665,716,678,678,693,684,696,713,705,688,714,700,708,693,691,687,685,702,701,705,723,708,673,709,690,691,703,684,694,695,693,713,722,736,594,569,587,595,587,545,617,584,554,614,563,564,577,553,591,614,589,584,611,551,596,585,559,526,558,603,580,568,572,532,591,543,521,584,637,571,577,566,564,561,573,574,577,585,569,586,577,574,587,574,572,579,579,571,581,578,579,578,557,583,597,572,568,579,575,585,575,579,575,584,554,569,564,577,570,574,567,554,576,587,606,605,641,622,627,617,627,630,617,614,625,640,623,639,626,632,617,628,619,602,623,642,632,629,629,614,612,662,617,641,619,613,626,623,619,617,624,619,638,619,742,724,718,727,710,692,688,757,710,721,715,734,697,699,745,760,708,726,712,717,699,684,750,693,761,726,736,690,713,714,718,736,688,709,699,714,684,678,690,677,713,681,686,696,701,713,718,703,701,709,715,703,706,705,698,691,697,680,707,700,689,691,716,702,702,695,706,696,708,677,699,706,703,717,693,694,696,686,700,693,695,644,718,712,648,689,705,686,688,737,663,642,692,699,686,656,731,687,713,710,676,716,699,636,709,689,688,697,669,723,722,687,675,678,630,682,681,694,706,691,597,653,654,656,647,635,661,650,641,634,649,647,654,669,696,671,654,640,662,648,639,650,650,675,637,662,645,653,640,642,624,689,646,669,655,652,670,657,614,642,657,643,647,653,646,667,644,732,722,708,705,699,693,723,728,702,761,710,749,708,732,685,716,725,709,736,726,703,744,756,759,747,740,668,740,722,727,775,734,729,725,712,712,745,725,762,725,716,737,664,703,722,716,683,756,741,750,742,718,730,719,708,740,702,760,749,729,728,714,726,729,734,725,705,747,740,698,732,749,713,717,733,706,741,726,746,703,721,710,710,709,738,721,732,718,707,688,694,712,704,734,706,712,731,670,703,668,734,665,715,690,713,678,718,671,716,681,727,710,708,716,736,677,696,668,718,695,698,683,712,716,669,701,731,664,741,664,647,681,644,649,670,666,655,652,649,650,667,644,679,657,658,657,642,661,658,662,644,670,688,636,645,649,641,670,668,656,671,645,642,655,652,653,665,651,680,624,669,660,654,604,622,619,617,619,601,601,620,631,614,601,624,597,608,620,611,615,612,625,614,619,616,613,600,607,611,615,621,627,613,597,622,624,629,623,617,620,628,618,599,598,646,615,593,608,604,606,604,617,617,592,600,605,620,607,617,606,636,594,624,621,621,596,613,598,601,610,602,601,606,601,613,590,598,610,609,601,620,609,615,611,602,617,614,634,622,613,613,647,674,659,689,659,673,667,643,663,660,672,676,630,658,693,637,661,669,656,663,663,685,640,668,646,675,652,648,666,672,656,662,674,674,683,661,642,644,661,651,660,663,669,656,647,651,644,656,654,653,665,665,667,652,660,656,653,664,629,641,664,651,659,660,661,665,662,646,652,651,662,678,671,666,649,671,664,659,652,669,672,669,661,653,665,644,666,669,657,647,653,656,691,739,699,688,699,665,679,696,664,683,675,697,683,707,660,667,694,641,684,707,714,670,716,665,710,630,673,692,671,635,663,642,657,684,686,691,654,701,690,674,622,638,608,616,609,628,626,638,642,633,625,613,638,632,630,611,626,636,641,653,616,640,609,633,631,626,626,637,632,624,618,622,598,622,630,633,617,612,626,630,634,626,635,630,643,621,640,638,581,565,573,585,559,578,590,574,571,575,574,573,562,582,573,575,556,572,576,571,578,574,581,566,575,567,570,586,579,579,566,580,584,574,565,581,576,575,556,568,573,580,580,572,580,585,579,580,582,575,586,578,573,723,707,717,768,717,785,748,777,763,735,735,738,740,738,672,729,686,717,724,734,724,720,750,744,712,706,759,740,729,732,722,732,757,749,749,735,725,735,687,706,699,758,752,739,703,674,717,696,702,718,696,722,684,712,685,694,716,728,709,716,719,695,702,690,705,698,717,699,700,730,690,681,708,736,717,724,685,723,712,721,679,715,689,691,687,711,695,603,629,612,569,587,608,636,587,619,613,635,630,617,619,603,597,604,606,577,610,581,615,608,650,573,611,630,623,628,593,618,619,602,589,594,595,584,633,603,622,602,600,609,607,590,600,602,579,576,592,599,574,582,556,582,579,593,568,597,605,590,588,597,580,602,574,582,581,593,563,586,588,568,584,578,613,577,590,584,592,618,582,599,586,591,599,582,536,633,626,645,607,616,639,634,629,618,647,627,616,629,623,620,629,617,638,618,628,642,612,620,635,653,636,639,627,636,639,605,632,619,632,608,631,652,622,646,630,626,617,644,632,602,680,643,658,647,649,636,665,642,655,639,666,665,664,662,674,646,666,644,656,646,677,664,663,649,660,674,648,665,656,663,649,669,637,661,649,661,684,677,688,682,731,698,709,694,719,707,698,683,717,726,707,719,689,698,693,659,683,724,747,705,678,702,690,713,715,697,725,699,699,683,705,700,686,688,713,687,645,626,630,646,627,624,623,661,619,649,624,623,632,613,625,641,636,640,621,630,635,644,652,664,665,646,644,641,652,633,641,645,647,647,639,643,649,629,667,653,649,627,615,651,646,625,629,682,685,604,636,622,619,631,650,655,608,682,652,675,642,644,596,630,639,614,644,630,663,604,657,613,662,625,603,595,671,651,658,666,552,661,616,639,598,584,668,610,636,685,620,703,745,711,715,704,699,695,694,692,696,726,717,733,718,708,706,725,727,675,701,712,710,713,691,708,729,720,717,735,706,696,713,705,685,730,712,701,729,724,716,721,704,724,693,690,715,692,690,721,684,686,711,703,688,684,647,708,679,714,705,700,695,673,680,701,685,691,674,689,674,682,680,721,686,658,691,694,694,719,668,731,694,673,654,707,670,639,662,650,664,665,685,659,649,644,656,679,644,627,626,632,656,649,664,653,650,640,646,648,652,653,646,654,645,631,659,665,649,637,633,646,632,648,640,659,662,598,597,612,609,604,599,601,599,609,589,606,609,589,594,593,601,608,600,602,599,601,613,605,598,600,607,606,603,597,607,593,596,615,590,615,591,593,587,613,582,578,582,609,598,592,602,589,607,643,613,633,606,641,633,639,613,653,639,632,611,662,648,667,674,636,670,634,651,600,667,645,663,624,659,657,644,628,642,645,629,617,634,645,631,630,639,691,669,675,683,664,689,696,693,683,670,673,709,687,690,689,682,680,691,652,683,685,697,659,678,693,672,683,680,683,681,670,678,697,673,681,681,671,675,668,683,645,763,752,728,764,754,765,736,735,737,769,762,792,746,748,721,753,713,759,720,750,722,728,738,753,749,730,733,758,759,730,784,773,774,773,772,728,769,797,738,752,759,725,702,691,686,725,719,724,728,689,694,692,710,671,710,723,690,692,753,693,718,758,722,720,754,708,697,728,726,736,769,688,698,716,733,710,728,716,729,769,725,704,702,706,695,724,744,668,671,678,647,647,654,677,657,674,662,647,655,632,657,671,644,648,656,658,674,633,687,670,639,667,644,669,674,655,676,651,654,648,657,663,661,670,665,662,649,663,650,671,669,607,682,696,694,701,679,672,691,686,703,683,676,663,730,700,705,689,693,712,696,669,680,652,700,672,675,719,675,700,691,690,708,695,689,708,685,724,676,662,651,666,665,671,677,703,621,633,614,620,613,597,607,639,617,628,622,644,599,628,615,623,617,613,612,603,661,606,619,620,610,620,600,606,613,631,599,604,628,615,600,609,579,613,600,570,559,598,584,599,599,561,585,593,591,570,570,568,587,567,583,589,589,599,573,566,561,566,571,603,596,583,571,566,590,572,592,575,572,598,584,580,559,579,579,594,582,642,667,665,659,641,676,693,672,648,650,653,660,668,655,668,664,670,676,664,667,666,669,653,642,654,674,666,667,676,677,684,661,677,661,675,659,672,655,667,671,707,724,700,736,701,733,725,691,713,686,737,715,727,756,700,658,747,727,735,758,734,720,697,752,762,721,725,727,694,698,750,731,676,719,725,745,688,700,720,716,719,704,683,698,691,689,727,728,698,707,723,704,708,712,715,709,708,723,697,719,693,724,716,704,710,719,719,721,700,697,687,696,719,730,721,721,715,694,699,707,709,716,724,630,629,641,621,627,643,653,626,643,667,645,627,629,646,651,643,658,634,633,658,648,619,654,644,640,622,666,613,635,627,644,646,663,620,645,623,653,660,644,641,669,663,608,563,582,595,592,561,568,579,596,562,611,581,573,595,616,581,587,587,591,572,576,578,591,599,574,593,599,565,595,561,575,585,581,614,594,587,554,608,580,561,609,564,559,596,580,598,583,595,592,603,616,613,604,604,617,599,594,596,603,588,612,596,602,615,591,595,603,612,603,601,606,611,610,594,601,607,602,615,611,593,600,608,590,601,597,594,597,627,579,573,576,576,602,580,573,599,582,570,591,582,578,571,570,594,594,573,568,584,599,567,595,591,582,575,570,576,591,578,575,587,586,574,578,582,590,575,570,591,555,685,713,692,699,685,723,702,712,701,708,695,706,696,692,709,699,713,701,709,710,714,685,711,689,679,716,717,677,676,709,718,699,700,702,700,729,682,705,709,704,676,711,695,711,668,661,673,666,698,686,682,682,702,681,706,666,653,669,667,694,680,683,679,663,677,689,672,667,657,657,688,680,662,677,663,695,692,667,692,686,675,671,670,683,649,665,661,687,665,661,645,651,672,691,664,677,673,676,701,639,673,657,665,667,657,678,663,640,674,661,644,661,651,642,694,659,663,663,684,661,676,660,652,668,659,670,674,651,639,637,642,637,644,649,633,643,647,655,655,657,669,650,634,651,659,658,651,649,653,658,657,646,648,637,638,645,662,643,651,670,627,653,638,658,657,633,652,650,652,773,713,766,775,755,683,751,760,750,761,755,713,689,739,697,742,741,782,727,747,758,748,750,759,720,769,746,732,726,714,750,735,721,736,744,774,743,742,787,769,704,726,780,735,745,736,734,756,734,730,726,766,707,719,728,712,754,733,745,738,719,754,780,753,698,741,716,766,718,742,746,721,716,772,729,778,730,711,764,742,697,703,742,742,736,774,712,750,796,688,741,705,759,722,762,759,712,716,756,763,766,724,745,785,773,794,733,720,726,741,748,778,727,729,775,731,772,695,706,731,750,716,721,756,744,737,743,677,723,707,690,720,744,723,666,725,727,697,725,734,683,723,708,715,696,712,681,688,747,746,706,661,670,728,719,766,726,734,720,679,710,719,710,718,721,690,726,722,711,666,632,655,631,638,671,633,640,652,665,652,647,665,625,663,661,655,635,658,653,665,688,641,665,674,672,660,654,642,649,659,654,653,651,668,619,657,637,656,657,652,623,656,660,639,641,644,629,636,635,630,650,601,635,648,665,625,642,650,649,601,642,627,664,638,636,620,653,665,632,612,628,656,650,622,675,597,649,637,643,620,633,645,667,636,665,696,689,692,699,693,688,696,675,694,695,664,691,709,698,695,688,698,683,688,703,708,692,694,691,680,698,686,718,709,678,712,681,692,697,680,696,703,681,710,689,686,679,691,662,650,654,655,676,652,653,652,671,661,661,677,681,660,657,681,671,666,673,680,679,672,676,674,665,677,672,660,682,673,673,667,654,682,654,660,670,666,658,674,689,668,677,604,606,577,598,574,587,595,603,571,566,597,612,594,593,589,603,607,591,615,575,600,605,586,597,582,587,591,610,592,600,598,593,587,603,609,584,570,606,581,586,601,589,721,684,698,736,737,713,746,730,721,754,746,786,696,680,703,721,773,691,685,697,725,706,755,716,745,702,729,765,691,778,747,721,721,703,709,732,709,725,776,738,673,749,725,734,700,700,713,695,687,687,719,681,711,704,700,722,709,730,690,689,688,725,727,697,688,703,705,701,716,733,690,688,728,684,733,712,708,675,677,707,714,735,698,720,722,717,712,712,690,692,721,693,689,662,661,639,682,680,661,671,664,665,681,665,682,658,652,675,675,637,690,648,658,671,676,673,688,671,672,676,684,643,650,649,671,655,667,654,642,699,686,687,683,678,666,717,646,628,633,637,657,627,635,644,629,637,628,636,638,656,645,632,653,636,638,643,634,648,636,632,653,655,652,653,642,658,644,650,628,635,638,639,643,633,654,640,638,635,643,626,636,619,650,643,664,671,667,674,675,658,666,646,665,664,645,663,645,663,664,635,640,645,662,669,661,652,656,664,653,663,655,658,642,667,653,650,662,673,640,666,631,653,649,659,647,662,675,654,658,649,664,652,637,665,650,712,689,684,691,713,676,725,732,717,696,675,713,735,687,686,716,710,720,721,714,693,691,697,749,721,695,730,705,722,695,706,723,703,687,714,724,695,709,727,694,700,606,636,627,632,629,643,654,647,627,639,643,654,630,650,631,614,624,659,636,613,677,630,664,672,656,649,618,626,639,620,648,640,661,613,645,667,641,615,659,664,642,645,653,633,638,650,641,635,625,620,648,653,635,631,650,692,558,676,670,618,663,642,589,648,618,690,637,599,623,654,630,664,647,575,618,618,685,652,577,659,593,604,674,584,752,615,637,583,633,653,653,615,622,638,660,576,724,725,704,696,716,706,734,705,699,722,704,707,730,723,716,705,714,719,719,701,717,722,703,693,713,741,705,684,733,724,703,706,729,735,707,754,704,708,698,709,708,695,719,700,712,687,713,708,675,707,714,731,722,713,687,696,668,705,685,687,707,690,716,666,713,712,709,742,724,717,697,684,662,707,698,723,693,687,672,692,687,703,720,706,724,735,717,707,740,717,719,717,718,716,716,751,714,713,729,711,720,725,730,720,705,705,745,713,724,725,725,704,725,734,706,719,744,729,713,712,747,716,719,736,723,711,715,716,741,645,620,625,651,645,629,631,654,636,633,663,678,686,630,631,640,646,676,627,626,609,632,666,664,660,639,622,635,643,629,654,632,694,619,667,630,673,561,563,577,576,570,560,562,574,571,569,583,562,563,558,566,570,566,554,568,553,557,577,580,565,575,562,581,560,579,578,558,570,579,562,557,578,571,565,580,550,531,557,549,564,533,540,532,561,568,554,553,557,567,545,545,545,546,550,540,555,553,551,547,561,555,564,547,552,548,562,556,550,548,556,558,551,552,543,550,554,557,563,672,713,688,624,728,692,707,703,640,697,668,679,679,654,660,749,732,621,660,651,713,616,636,663,667,710,632,622,637,697,671,615,681,643,681,714,667,626,720,642,654,634,676,661,760,634,638,640,630,649,656,643,635,653,660,659,637,633,652,644,637,653,625,648,637,659,640,633,670,663,628,654,639,621,641,656,649,645,643,622,628,659,659,630,625,619,656,643,653,644,637,601,592,598,576,604,568,582,611,612,583,588,606,597,567,599,592,591,583,585,583,583,604,578,592,582,606,593,583,595,585,568,581,577,592,601,579,571,567,583,589,589,595,597,589,577,602,579,540,526,521,523,519,531,532,516,530,525,529,537,529,548,542,516,522,540,525,527,524,528,532,536,520,526,534,533,519,532,546,534,522,536,543,527,535,535,524,534,537,512,527,539,543,533,542,541,522,539,513,535,537,522,531,530,538,530,546,547,545,523,537,531,514,529,524,527,526,530,546,536,528,537,548,537,543,534,519,526,535,527,527,513,539,529,527,540,527,535,564,550,554,543,549,554,540,538,550,539,536,540,546,526,545,547,535,539,552,552,548,554,542,545,560,533,544,541,548,547,545,541,537,542,550,539,548,543,549,541,537,554,559,572,536,558,547,554,558,553,555,568,547,554,567,554,556,555,561,563,560,556,562,551,552,561,555,561,546,555,566,546,560,554,555,562,569,562,549,552,638,624,596,636,659,609,595,638,667,601,639,610,596,663,620,630,647,650,620,619,683,653,646,654,646,633,623,656,636,634,662,649,641,651,581,684,622,570,665,683,669,670,664,690,661,655,660,658,663,667,665,684,689,668,692,684,688,669,687,676,677,680,688,646,679,670,673,679,676,669,652,686,695,679,681,684,662,672,673,656,677,619,580,615,603,604,610,591,589,601,603,577,610,611,612,587,605,584,583,591,597,591,584,582,597,588,592,585,585,612,596,587,591,615,584,603,598,604,604,615,610,616,605,677,600,609,661,637,636,641,657,623,668,624,630,610,630,636,601,654,614,626,633,612,598,575,613,624,599,618,588,600,652,622,657,600,630,620,650,656,621,575,641,687,700,710,698,695,682,671,695,698,690,696,694,701,676,692,664,691,691,690,696,675,689,676,685,697,687,693,677,692,697,682,698,689,662,682,715,690,691,707,692,696,693,685,699,685,690,667,673,681,683,689,684,693,686,692,692,691,669,677,702,691,685,687,682,678,700,682,689,648,679,690,682,689,693,655,669,676,673,680,676,668,688,685,667,678,691,674,653,673,658,659,676,682,653,652,668,676,679,675,677,659,661,667,662,670,663,640,666,675,674,675,678,670,658,676,652,676,659,656,677,675,655,664,652,639,649,664,660,638,645,651,643,661,650,633,652,655,659,640,662,637,647,669,649,644,647,649,676,649,651,673,648,632,647,671,654,659,656,649,670,649,672,642,628,649,656,671,647,646,672,590,572,589,593,576,581,578,573,598,596,582,593,579,602,584,596,591,588,590,597,582,580,573,570,578,578,592,589,594,589,584,596,590,584,590,595,588,588,584,597,567,578,595,624,596,554,574,571,617,639,588,661,611,619,633,621,612,620,612,597,642,642,566,619,574,615,602,607,595,648,616,580,592,601,621,636,604,593,609,635,633,602,608,566,589,614,600,607,583,584,578,584,599,592,606,592,594,590,566,588,579,587,565,584,584,605,593,575,595,584,586,581,571,580,582,591,589,591,582,604,596,575,570,587,588,589,586,588,598,584,603,586,647,614,600,655,597,635,635,649,629,614,680,593,610,631,630,625,659,631,662,620,673,602,616,660,590,630,642,666,639,627,651,647,629,633,632,629,571,635,651,619,676,635,626,629,669,662,725,710,691,689,663,686,680,691,693,699,672,699,696,678,707,695,689,695,683,680,678,677,688,691,683,691,687,692,696,684,668,696,692,693,699,698,708,690,685,687,675,668,688,687,714,683,682,670,690,673,684,674,683,676,683,691,695,668,696,679,690,676,668,690,704,696,682,680,698,672,678,673,697,685,683,687,670,668,666,659,674,671,673,659,683,661,673,683,668,665,665,674,679,677,667,662,655,677,678,670,686,669,670,666,685,670,666,657,664,679,665,682,679,646,676,656,678,659,672,662,702,659,666,662,645,668,656,668,652,668,666,652,650,649,662,646,658,670,648,652,652,646,664,650,646,662,660,659,667,647,668,642,663,670,663,666,647,660,636,657,670,670,597,575,588,599,582,583,584,567,589,600,591,598,602,599,585,590,582,591,577,583,576,579,582,584,585,612,615,595,592,601,599,584,585,617,592,601,579,572,589,593,581,601,581,589,586,589,599,543,548,541,513,543,540,532,545,543,558,548,540,544,533,525,534,536,537,540,550,540,535,548,541,535,542,553,536,537,540,537,537,541,543,542,534,554,525,531,536,548,535,517,535,518,511,513,521,522,522,525,523,523,515,517,507,517,527,532,525,521,519,523,522,512,509,522,505,520,495,524,512,511,526,509,516,520,527,525,515,527,537,522,525,735,718,743,765,743,719,755,678,683,725,755,740,736,725,769,753,740,735,694,763,717,733,721,735,710,755,727,721,730,737,735,724,788,735,695,739,678,731,754,721,731,729,733,711,682,711,714,702,708,680,715,708,692,722,680,700,691,709,713,691,719,709,698,688,704,705,704,717,703,708,704,704,695,710,720,670,717,691,712,677,710,708,697,710,695,729,757,714,732,752,758,782,755,750,733,732,766,725,729,709,721,729,708,766,774,759,759,703,721,752,760,791,732,735,760,731,745,740,758,730,747,756,759,738,770,763,729,745,674,703,707,730,682,754,701,736,709,693,735,740,733,713,723,689,670,779,673,715,706,722,709,772,700,708,758,739,722,740,723,711,672,716,711,746,690,702,697,733,729,699,678,739,740,731,671,712,668,662,683,648,665,673,655,671,675,684,635,682,677,694,684,672,692,659,662,671,626,649,671,648,678,666,685,682,670,666,679,651,668,680,683,680,669,574,589,589,573,557,578,594,586,573,591,587,558,570,570,604,583,564,594,578,590,580,608,578,565,606,603,595,588,581,580,584,598,578,572,589,608,586,578,600,587,600,578,666,675,678,673,695,664,692,662,738,680,659,658,698,655,679,693,669,720,616,696,713,624,704,673,638,634,689,695,696,641,695,690,724,675,713,691,705,688,679,654,673,639,689,722,707,699,693,716,694,695,705,696,705,716,716,719,697,699,692,694,690,725,701,716,724,715,696,713,706,724,711,697,704,712,704,709,707,711,729,716,713,701,718,712,617,611,605,624,637,591,612,607,612,615,615,621,639,619,628,620,645,623,644,632,629,627,640,624,600,611,624,629,595,617,615,622,638,626,631,637,640,608,603,630,617,624,674,590,591,612,577,615,588,593,589,612,604,599,584,608,608,604,606,596,604,592,584,611,580,582,584,602,608,586,580,601,605,583,610,582,596,634,588,616,606,613,610,600,659,661,654,668,660,668,665,671,656,650,650,660,653,669,657,660,670,649,656,641,654,674,651,652,674,659,646,656,652,671,661,656,663,689,643,632,654,643,667,654,664,648,658,647,633,662,691,638,613,637,642,613,616,642,624,629,629,622,624,623,623,637,623,634,632,613,632,627,627,618,614,610,652,613,631,606,616,628,608,605,616,627,596,635,631,619,587,600,589,592,610,579,581,586,578,576,586,592,601,604,591,585,591,592,596,584,600,589,593,591,586,575,602,581,590,590,597,578,594,572,573,591,602,591,582,582,583,586,593,611,561,585,586,585,579,609,591,591,605,589,586,592,574,583,595,581,606,585,587,601,597,573,581,581,589,593,575,596,590,587,603,593,604,591,603,580,574,582,584,552,560,550,548,551,554,566,555,555,561,548,548,562,547,551,554,551,559,559,557,569,551,562,560,549,540,561,563,541,558,559,554,559,540,554,550,551,550,549,556,550,569,550,538,550,540,530,527,531,546,546,536,532,544,533,531,541,541,547,533,544,538,543,552,529,537,523,552,548,532,543,538,545,533,526,555,545,533,544,551,541,528,529,528,538,552,563,557,538,562,548,553,540,552,579,573,567,542,539,557,548,567,574,571,559,557,548,553,570,551,558,561,550,563,550,554,542,567,559,568,556,551,557,580,546,549,548,579,538,556,551,549,766,737,735,749,711,732,726,733,740,720,712,734,744,772,726,733,746,721,725,703,741,745,708,741,719,708,739,715,725,737,714,717,749,732,711,734,712,740,761,738,739,708,715,720,703,722,756,723,750,726,735,705,687,726,725,722,729,723,737,715,718,706,740,691,742,688,679,709,710,714,681,682,695,702,739,717,688,679,744,711,714,733,663,655,659,651,666,659,628,672,649,653,644,673,618,654,653,655,652,647,639,646,630,664,644,659,640,646,658,638,658,656,667,652,649,660,650,634,652,648,653,672,658,661,661,626,634,647,673,636,562,570,567,572,586,560,579,588,567,580,586,575,579,585,583,585,598,577,577,581,561,565,591,576,583,585,574,569,572,590,563,588,573,591,591,577,574,581,574,570,566,554,572,556,550,563,548,556,563,562,565,560,577,567,563,556,567,555,564,569,581,566,564,570,564,562,561,555,552,574,566,550,558,550,560,557,547,553,583,554,561,563,573,567,579,562,553,573,567,567,562,576,563,563,570,551,566,557,556,563,543,576,583,565,573,571,551,558,566,533,560,561,565,566,563,568,579,572,571,560,569,571,566,573,560,568,557,567,556,564,571,558,574,554,545,565,551,548,565,561,562,546,554,554,566,561,559,550,565,556,560,564,568,570,567,544,558,553,569,562,551,563,557,554,567,567,575,551,549,557,545,555,558,566,562,565,565,557,564,552,565,567,557,554,579,551,553,576,553,541,557,567,565,561,560,546,556,560,566,577,570,545,567,556,570,560,533,549,565,562,557,567,567,552,553,561,563,557,561,564,561,561,556,557,551,563,530,564,552,558,561,565,543,554,554,552,546,550,560,563,560,551,555,558,550,557,533,546,557,547,558,555,548,548,552,555,544,568,687,669,708,661,681,636,687,652,683,627,675,670,701,669,633,728,712,621,654,700,695,629,682,634,676,673,710,665,715,643,642,636,662,648,652,677,680,628,640,640,646,644,646,632,650,643,653,636,639,616,635,627,641,662,596,653,627,647,636,646,619,622,617,623,625,614,669,643,633,636,642,656,672,635,648,643,585,577,580,573,585,566,592,580,587,576,596,572,564,582,579,583,592,580,566,589,598,573,593,568,588,571,578,600,593,579,585,585,568,597,586,599,569,578,588,563,586,588,569,602,624,629,636,641,593,629,617,647,652,612,653,628,631,621,637,616,634,612,627,632,672,633,636,619,620,620,637,632,644,641,661,598,614,608,632,610,602,593,647,618,577,780,736,751,735,735,710,690,734,759,769,743,706,733,751,744,765,722,751,727,732,709,737,737,748,726,748,737,751,755,750,732,712,721,748,720,735,737,750,728,700,770,729,724,718,691,660,689,705,656,667,670,671,657,687,689,698,682,661,684,670,704,664,653,688,680,698,671,681,678,649,715,728,691,694,689,680,678,675,707,658,686,690,697,707,652,664,690,663,669,594,607,616,587,614,612,613,595,594,590,604,605,615,598,595,609,602,619,609,606,604,603,607,600,606,593,603,611,596,607,607,605,599,624,594,603,611,606,606,609,605,599,606,603,589,553,562,543,545,552,541,559,552,545,545,555,537,563,556,546,557,553,544,541,560,554,552,550,547,551,539,554,560,545,562,550,566,549,551,553,567,555,551,548,555,552,705,672,670,640,652,682,675,701,696,675,690,658,677,676,668,668,642,618,673,687,659,683,693,683,649,690,710,664,686,664,623,657,665,684,691,636,677,679,724,632,690,678,642,659,692,637,624,615,619,630,637,612,623,619,612,629,621,637,641,592,634,640,604,599,598,643,641,636,623,607,620,640,627,622,624,609,631,642,639,624,623,622,630,623,613,616,642,622,600,602,552,595,585,583,587,561,606,588,596,575,602,603,601,584,588,606,577,583,582,583,582,589,581,595,577,586,587,598,591,591,590,585,578,603,594,590,603,569,591,597,590,588,593,601,576,562,565,574,562,580,557,566,581,554,563,544,560,557,552,559,559,570,556,547,555,563,546,552,559,557,568,565,564,558,548,564,553,564,543,561,578,558,566,570,565,588,673,688,697,682,671,710,672,691,678,667,693,684,688,680,667,680,673,697,685,688,663,707,696,672,687,714,651,657,670,701,687,673,711,708,688,695,705,654,685,677,660,689,689,692,673,698,706,674,714,691,672,686,713,727,700,712,719,718,740,715,711,707,684,718,688,733,695,740,723,755,719,715,728,674,710,684,716,708,716,719,710,752,721,717,719,771,576,655,603,581,625,565,632,626,630,611,582,652,567,602,647,666,679,599,628,599,591,629,621,654,633,600,647,584,582,621,597,628,574,600,632,615,655,678,609,653,658,593,539,524,599,616,622,612,606,591,627,571,631,593,584,598,611,584,610,627,610,603,596,616,633,608,634,607,594,605,622,602,619,611,607,594,606,583,600,622,597,612,631,628,612,601,598,630,605,602,591,614,603,561,559,573,575,571,567,565,564,567,590,577,561,576,549,561,573,565,559,559,569,561,567,570,583,582,574,567,561,564,570,563,584,564,576,552,567,569,560,560,567,544,567,658,659,680,666,705,682,710,645,678,655,671,651,672,679,640,649,634,676,660,724,672,666,731,665,664,652,640,628,676,656,680,676,672,677,661,688,683,654,632,694,686,724,746,674,663,687,664,676,698,713,707,701,719,721,705,713,701,693,722,726,726,709,717,709,719,719,734,707,735,713,711,713,703,712,705,725,699,706,733,700,709,744,714,718,713,710,712,730,742,731,696,679,696,713,709,720,692,741,603,612,600,626,634,606,639,646,604,601,594,582,614,589,641,640,599,629,631,595,616,647,612,661,613,654,594,607,612,609,620,629,592,625,607,610,619,630,617,625,630,606,624,620,627,578,558,571,573,563,548,559,581,556,567,567,567,571,570,575,544,560,553,554,567,558,555,561,568,575,569,583,556,573,553,572,544,566,551,561,552,560,561,568,560,561,559,555,569,552,572,608,623,631,573,629,627,620,615,663,643,593,589,549,606,619,633,618,633,615,621,628,624,631,631,594,605,595,624,615,605,641,623,599,614,619,638,599,615,604,594,614,610,622,603,612,549,556,573,573,586,588,552,585,569,575,584,571,562,576,563,578,575,571,582,572,570,560,558,575,568,567,585,576,566,557,577,565,579,574,572,567,563,571,573,572,594,578,565,571,638,575,656,626,648,602,693,652,630,619,622,639,655,617,622,624,640,618,647,635,644,644,659,628,667,612,610,611,650,561,616,629,625,624,617,645,641,605,624,618,655,683,675,675,700,662,648,671,689,665,684,682,691,667,690,679,680,691,675,682,663,695,694,676,703,682,668,699,683,697,674,690,685,676,683,669,696,683,704,686,666,701,685,685,688,654,701,672,727,683,704,688,702,697,680,691,672,677,677,689,690,699,686,696,695,669,682,684,691,721,691,665,718,691,709,723,679,671,681,683,667,711,732,764,614,627,618,613,629,624,627,632,619,596,627,656,633,610,628,620,643,623,627,616,621,609,613,637,617,639,643,646,652,622,632,623,610,645,631,666,575,561,589,570,577,565,565,562,568,576,558,580,579,570,582,569,585,573,553,554,581,571,571,587,571,554,565,575,575,587,549,578,585,577,587,592,569,577,575,575,577,556,559,580,562,556,569,566,556,560,550,559,565,544,573,547,546,566,565,555,560,553,567,562,565,543,551,548,558,553,568,551,553,561,563,545,554,565,553,564,564,554,564,572,563,546,695,705,707,721,702,703,739,707,721,690,703,728,725,729,727,729,672,693,682,738,662,717,703,706,740,698,728,698,678,722,686,694,728,700,715,727,716,702,695,712,685,676,699,766,703,698,699,682,714,710,704,690,694,694,697,709,698,710,718,691,702,711,706,700,684,705,705,687,703,720,710,708,712,708,701,698,710,716,697,708,714,703,699,694,694,686,665,634,658,657,640,657,635,663,655,666,681,630,686,644,652,665,650,663,660,682,670,662,662,650,687,660,627,630,639,664,645,658,631,655,625,654,645,643,651,662,631,651,654,648,698,611,595,662,600,636,631,593,552,626,652,607,614,555,578,669,658,668,599,651,575,645,615,627,596,654,644,651,683,615,613,656,615,581,631,645,710,621,617,680,578,744,702,712,725,692,712,714,696,707,712,721,689,698,709,712,704,688,718,715,696,700,698,688,679,715,683,678,685,708,710,712,711,708,711,695,694,724,717,709,687,695,699,689,580,590,575,585,573,564,640,583,592,588,618,580,608,598,624,616,640,602,585,600,608,569,585,590,621,592,595,590,625,626,617,599,610,604,581,595,593,548,623,612,589,589,626,602,584,579,559,564,565,573,572,609,555,577,574,578,581,586,583,570,576,592,575,548,581,576,578,544,586,569,574,569,579,586,576,577,587,575,584,560,594,570,576,559,580,579,579,569,602,599,622,609,621,609,602,609,613,599,583,608,602,586,602,611,582,615,620,597,596,611,637,636,612,609,615,595,624,601,612,619,596,617,587,598,612,610,599,616,592,616,611,606,593,568,589,566,586,572,547,563,567,564,544,591,562,562,557,565,561,567,580,581,562,579,583,587,558,564,566,560,576,547,571,572,575,550,581,575,574,573,558,556,576,550,580,565,581,562,586,571,575,585,575,554,568,556,577,569,593,574,580,569,595,586,568,564,580,576,558,551,589,587,575,570,569,579,573,588,570,587,561,600,585,546,561,569,578,559,567,556,553,552,549,553,547,544,550,549,543,553,553,544,559,531,551,544,543,549,556,544,552,548,558,562,537,538,554,532,540,555,552,559,552,544,561,548,553,567,569,539,544,547,604,662,619,663,693,651,632,706,657,643,612,630,699,644,641,620,687,609,648,672,626,643,646,696,618,652,563,653,633,644,622,640,669,647,630,658,693,639,672,642,648,685,667,675,676,675,696,667,691,672,695,669,663,666,664,680,673,696,664,668,678,674,679,695,666,667,684,660,677,705,665,687,676,668,687,674,665,693,684,690,661,686,670,687,672,663,684,675,670,752,724,756,698,704,694,698,745,700,742,747,751,728,765,713,743,724,732,739,728,718,743,685,671,745,716,750,720,734,722,732,759,743,720,719,748,736,768,710,707,686,693,699,722,710,693,702,708,707,681,714,709,708,700,700,694,711,695,711,701,694,708,708,709,718,710,702,680,695,709,719,671,698,697,704,729,701,691,686,694,701,692,710,697,695,714,602,606,645,613,613,643,640,570,685,632,657,646,647,613,610,622,630,633,644,555,626,645,657,607,631,652,649,636,674,660,627,667,629,585,678,645,605,646,607,632,631,543,581,578,585,564,585,536,579,579,591,583,544,567,571,569,588,575,561,568,543,570,554,575,552,562,593,549,586,554,585,548,592,553,569,554,591,582,596,573,564,626,565,575,568,563,583,553,572,574,577,542,573,574,570,557,561,583,588,557,558,573,556,570,567,566,544,540,582,578,572,565,572,571,580,555,563,540,554,561,548,532,570,567,550,561,743,743,744,729,737,724,724,720,738,752,738,723,730,751,694,716,707,730,731,736,743,716,751,694,707,723,770,719,690,720,720,754,725,734,732,742,714,730,729,735,724,729,658,645,649,650,631,655,652,655,694,631,653,647,662,645,651,645,642,654,662,629,618,625,670,640,682,691,646,673,667,665,651,650,674,670,689,633,665,643,667,637,665,677,637,707,709,632,650,676,631,619,639,672,623,638,632,630,639,621,653,671,613,650,650,665,654,662,606,649,623,641,648,603,653,649,669,631,659,641,637,637,622,617,619,667,640,634,612,667,623,689,547,526,554,534,556,545,550,548,555,541,547,532,539,560,537,558,556,556,542,553,542,542,541,548,533,560,539,539,531,565,541,551,546,537,555,554,548,534,554,544,554,559,542,555,556,538,562,560,549,554,551,558,552,563,558,562,565,560,556,559,557,563,550,554,572,567,551,556,547,558,562,563,552,551,556,557,555,556,571,555,554,610,608,591,609,588,634,629,632,606,607,608,621,603,656,608,589,617,597,649,613,620,614,597,627,595,645,634,613,615,593,632,643,646,614,598,602,644,595,603,627,785,786,793,762,751,749,755,765,795,750,797,769,761,760,780,771,778,764,757,760,787,753,770,776,774,784,787,786,767,731,776,761,735,776,734,774,773,775,775,775,758,762,755,780,716,737,765,720,742,737,733,728,732,750,715,740,756,689,715,710,727,745,777,765,761,731,723,716,757,734,748,747,770,739,737,736,717,758,746,734,744,739,749,711,694,741,767,737,739,645,660,646,657,705,692,663,653,655,655,650,663,664,646,656,666,684,654,653,650,658,665,658,669,669,650,682,661,645,635,683,667,670,669,639,651,679,666,647,673,664,679,646,699,576,558,573,583,569,570,573,574,570,581,562,588,579,594,578,592,579,584,556,568,568,571,580,566,578,586,560,573,581,578,581,577,571,584,572,580,584,577,584,587,525,531,530,537,539,528,525,501,537,521,521,522,528,528,516,523,524,525,524,523,515,532,512,524,520,526,525,522,541,521,540,521,508,522,546,526,528,526,515,518,532,524,529,512,524,521,533,539,533,519,519,534,527,524,534,533,533,523,530,515,527,522,530,523,536,514,526,513,530,524,538,539,526,530,541,523,526,530,541,527,525,544,523,542,533,516,523,521,554,552,558,565,552,568,568,566,566,564,560,558,560,560,567,554,564,567,562,565,558,574,549,561,566,576,558,552,569,559,575,562,575,572,544,569,568,572,561,568,552,572,567,560,587,584,601,585,595,585,594,580,600,579,596,559,588,586,583,597,585,592,591,616,595,595,609,585,586,604,600,592,588,597,574,557,610,589,598,588,573,564,608,590,588,593,623,559,578,577,558,565,566,567,560,568,571,582,570,566,580,569,559,587,576,566,554,566,559,554,577,579,574,581,571,566,567,570,559,567,561,566,563,560,572,565,573,561,568,568,580,620,625,650,647,643,664,641,613,674,673,661,660,676,614,640,682,686,625,648,605,633,650,640,643,618,671,619,688,657,612,636,643,628,644,678,628,631,663,618,628,675,636,650,667,638,633,674,660,667,677,691,681,670,670,664,665,693,684,678,680,667,665,669,668,661,662,653,690,664,680,687,671,645,654,671,678,676,674,690,680,670,667,639,685,663,677,690,664,599,608,590,589,592,601,612,592,590,596,592,599,593,601,592,604,588,605,577,573,584,588,572,609,604,611,590,587,595,591,607,617,605,593,583,597,608,599,603,583,594,579,552,559,565,551,558,559,564,565,549,572,552,557,563,566,548,555,554,573,553,551,539,557,546,566,560,552,561,564,540,555,561,563,570,561,556,564,557,554,548,616,592,570,587,618,597,576,584,591,594,583,565,602,562,541,596,598,572,597,614,585,587,606,591,595,630,590,573,601,540,565,620,572,567,560,577,603,556,587,587,584,575,595,581,581,587,584,591,592,587,578,595,569,588,588,578,582,582,576,578,577,583,591,568,574,568,590,574,572,580,577,596,576,567,593,577,585,566,582,586,577,587,552,574,572,562,563,564,549,559,565,560,552,556,554,572,560,565,552,569,570,555,560,564,570,552,571,555,571,567,566,557,551,558,550,571,543,563,568,564,550,565,551,552,561,553,542,554,553,548,573,545,553,540,545,549,542,560,553,569,561,555,557,540,553,550,554,546,546,547,562,556,533,549,549,531,553,542,555,549,547,543,555,555,546,559,545,681,675,655,682,674,666,666,686,658,643,673,674,671,674,646,662,680,670,662,650,674,665,661,681,702,670,662,644,682,653,682,695,680,654,685,696,634,659,670,666,683,663,620,623,633,637,622,626,635,626,617,631,625,621,638,627,632,611,639,601,615,618,620,625,617,631,629,608,627,643,634,606,631,640,620,626,629,620,635,624,633,658,647,613,621,611,632,607,617,577,574,581,586,561,570,582,590,574,577,561,577,585,576,584,582,570,600,571,561,580,565,586,596,594,595,595,594,581,580,575,572,577,585,580,598,576,574,572,579,570,571,526,526,533,527,517,525,525,534,542,533,539,532,536,532,522,522,525,541,525,529,519,517,529,529,526,532,518,519,513,536,523,516,533,534,518,540,649,637,650,680,633,650,655,671,649,657,635,658,650,670,645,676,652,643,651,651,664,635,650,660,671,654,654,658,649,646,654,661,637,669,663,665,632,648,654,660,658,655,668,651,679,699,670,687,699,670,685,666,601,656,669,654,607,677,679,665,666,660,633,686,661,694,691,691,654,680,670,680,661,686,691,673,696,692,675,676,665,658,647,648,658,655,655,708,671,702,673,678,724,676,676,638,727,733,712,704,672,699,684,638,704,664,734,658,659,647,698,719,661,706,721,720,696,716,745,685,668,731,661,696,680,700,652,663,689,665,722,625,597,621,613,642,581,604,590,612,600,602,617,620,598,612,598,647,608,626,618,598,592,615,614,585,614,607,636,615,597,603,616,593,614,624,608,649,614,568,581,623,633,579,615,618,587,629,524,529,515,529,532,523,521,532,520,535,527,531,533,526,533,535,536,520,536,537,541,541,524,527,533,531,529,540,527,544,527,537,518,533,529,531,521,541,522,520,533,521,545,659,608,657,614,648,650,647,635,663,672,647,643,661,629,637,633,643,657,644,671,651,649,646,628,653,643,646,653,663,638,642,624,650,644,638,644,639,647,648,649,575,590,580,595,546,586,556,587,588,572,569,550,571,563,586,576,564,590,566,582,565,589,596,592,590,575,555,577,561,573,580,582,551,568,564,575,585,568,565,547,574,558,571,545,566,597,568,584,565,609,583,636,613,586,626,558,663,619,601,607,579,521,612,630,663,605,646,583,507,581,645,717,639,616,632,694,598,560,556,571,623,588,562,639,622,607,597,676,590,605,599,611,584,585,601,602,615,622,599,599,587,611,599,604,593,578,601,609,594,575,607,592,588,607,605,587,615,618,566,597,620,593,601,603,605,598,600,599,598,587,577,579,596,582,611,573,571,573,557,556,576,567,578,566,582,566,580,569,559,568,566,568,578,574,587,563,565,562,569,582,573,566,568,569,552,571,575,572,576,571,563,554,549,566,568,565,573,570,559,559,549,572,569,554,543,550,543,541,556,545,552,558,516,547,553,541,532,540,559,537,536,528,533,549,552,553,529,565,569,544,545,546,530,556,539,536,549,531,543,532,544,533,552,545,566,553,545,526,501,516,514,507,527,503,519,514,513,514,511,529,503,523,516,516,521,526,512,513,523,532,523,509,508,525,522,503,535,522,516,521,514,521,531,502,537,509,515,524,509,524,508,509,503,500,683,678,677,668,685,687,653,667,699,658,686,682,681,663,673,684,675,674,684,668,670,641,709,671,671,667,701,683,680,689,660,676,688,666,666,689,695,653,678,697,696,687,678,677,723,633,657,648,638,635,660,662,639,662,642,648,666,643,649,638,643,649,653,650,638,649,642,671,657,630,650,670,638,649,666,633,650,668,663,652,649,592,584,596,588,566,603,609,610,611,591,608,614,602,587,585,604,600,591,626,603,591,594,612,581,617,592,612,606,606,615,640,606,624,590,610,589,608,626,602,597,595,610,625,546,542,563,549,556,553,542,560,536,558,551,547,552,546,547,555,570,544,555,540,565,543,534,562,550,546,559,553,557,550,554,558,543,549,545,548,552,558,560,572,547,537,535,555,535,508,517,546,539,533,539,525,516,554,537,555,542,528,534,543,519,537,534,534,562,540,552,554,532,543,519,526,553,547,528,536,540,534,531,543,541,513,516,517,529,520,528,531,520,536,511,534,518,535,525,512,529,517,513,511,522,528,534,509,541,524,510,516,518,521,530,499,515,525,511,522,509,505,523,517,522,525,526,518,520,509,508,522,521,513,523,508,523,507,527,513,526,511,506,522,513,518,527,517,522,508,515,512,525,511,522,525,532,515,501,511,521,512,522,509,512,533,516,517,516,517,511,491,545,578,555,553,578,548,568,557,547,546,547,551,566,577,564,563,556,529,557,560,563,552,547,547,565,548,546,564,557,533,565,568,569,553,567,563,564,582,549,554,557,542,562,543,549,554,561,555,557,549,546,549,556,550,539,557,552,547,537,551,560,543,539,541,539,552,549,554,560,544,566,555,547,547,548,560,550,539,540,539,547,544,550,562,552,542,553,572,588,561,591,577,580,557,568,581,574,565,579,564,575,562,555,574,569,552,576,565,575,575,561,591,577,577,568,575,572,567,557,573,573,585,562,592,566,584,574,589,541,548,550,543,543,558,560,546,552,555,560,539,561,555,555,559,561,551,547,546,553,554,542,553,540,548,564,561,567,559,545,544,562,544,553,550,554,564,549,549,544,562,544,695,651,729,671,683,660,690,689,724,659,630,699,629,674,672,712,717,704,692,653,656,629,632,670,715,645,652,644,738,645,709,674,688,657,619,700,659,703,648,654,653,647,634,629,633,608,639,646,648,636,621,624,632,613,638,611,632,661,628,644,632,633,638,640,630,653,645,605,605,638,617,602,637,661,627,624,632,636,636,628,632,636,635,629,580,589,585,582,569,590,573,575,583,568,588,572,580,593,568,588,563,582,578,566,583,574,571,584,588,560,588,575,590,587,578,580,587,577,579,574,585,596,547,560,553,556,556,572,553,564,544,563,545,556,559,560,554,557,545,553,560,548,564,556,548,566,553,568,551,559,554,571,561,565,561,563,556,552,555,560,570,552,542,565,553,644,687,608,674,593,671,664,608,610,675,680,664,641,629,653,674,584,632,623,615,646,634,661,656,633,619,662,684,693,644,603,655,613,633,591,630,634,679,656,604,721,550,571,571,554,563,567,572,552,578,580,570,559,588,554,597,570,575,565,570,554,573,558,560,574,565,580,579,573,568,581,572,570,572,565,569,560,572,579,572,579,567,585,570,589,573,561,589,561,564,566,550,564,558,549,560,540,546,548,569,554,563,574,548,568,576,574,557,570,547,559,552,564,563,582,579,557,563,566,566,554,554,555,557,562,575,563,568,564,569,581,553,578,580,565,575,542,627,608,634,619,634,593,623,628,634,615,616,627,617,630,635,634,637,630,608,627,598,608,626,615,621,638,602,623,620,644,622,619,620,633,621,596,628,616,624,632,606,658,629,597,623,671,681,679,660,704,674,675,662,676,673,698,689,678,645,703,677,676,685,640,657,671,681,674,667,682,655,670,636,686,668,682,665,665,676,673,697,699,655,672,679,690,706,662,639,616,624,620,659,627,612,637,638,616,627,635,608,637,636,610,626,573,598,619,621,626,603,645,645,593,641,634,615,611,628,655,650,644,628,617,642,640,615,634,647,633,604,572,597,583,588,568,588,573,593,587,556,575,580,594,581,568,575,588,579,582,606,563,578,589,601,575,587,559,565,571,582,591,571,581,554,563,575,568,579,596,571,570,576,504,505,512,506,526,503,514,513,506,511,521,506,522,522,498,519,513,511,512,510,519,514,526,517,506,510,514,501,527,508,518,513,513,513,520,515,506,509,507,513,528,515,523,532,595,573,590,578,559,589,578,581,575,579,566,595,572,581,577,571,597,615,584,574,571,563,550,586,577,566,593,577,581,554,552,576,577,577,597,592,588,580,586,586,600,624,632,632,602,608,635,618,624,638,616,610,614,653,616,597,585,636,612,608,618,620,617,621,637,613,623,620,615,635,644,616,608,628,608,630,628,620,606,614,601,645,692,667,688,685,647,695,686,673,708,694,722,651,694,684,686,683,664,688,675,734,669,668,636,708,714,722,673,693,716,701,687,652,680,663,685,658,676,701,642,697,683,693,645,618,630,643,622,634,630,642,627,634,615,681,619,618,643,632,611,609,645,624,635,629,633,617,650,626,626,657,642,636,650,633,628,648,619,637,640,621,608,609,626,635,634,615,637,618,618,637,581,580,564,576,575,575,577,575,569,574,574,564,596,597,584,574,573,591,582,555,577,583,590,594,581,593,577,568,600,586,570,577,595,601,592,570,576,585,581,562,581,570,577,550,527,511,500,498,507,506,526,519,514,519,512,524,501,520,508,520,516,511,510,505,517,521,496,517,509,528,536,518,526,514,518,509,520,526,518,507,530,525,519,486,544,534,541,547,544,545,550,548,562,537,536,549,536,557,548,559,537,534,553,554,537,550,558,535,537,546,541,554,522,543,526,539,542,554,549,542,536,529,536,552,547,531,536,533,534,527,534,529,542,537,531,535,530,529,531,540,538,532,546,530,523,533,534,531,545,534,545,543,538,530,530,540,527,538,518,533,536,536,534,539,523,533,534,537,538,533,542,566,590,570,581,569,583,575,565,594,603,580,588,567,583,579,578,568,585,574,585,560,572,578,565,593,602,593,593,569,570,576,594,598,560,587,577,571,573,554,580,594,591,570,697,714,705,713,735,722,747,747,754,722,717,754,738,720,739,716,726,760,704,724,744,728,722,703,727,729,703,730,762,749,731,721,733,761,696,715,782,722,725,739,753,666,697,684,697,718,738,724,703,708,722,701,741,733,741,716,729,746,695,676,748,670,694,724,731,690,706,721,757,727,693,714,737,702,700,697,695,720,716,692,729,717,709,692,702,696,685,714,643,659,659,652,624,646,636,636,658,645,653,649,673,648,652,660,643,642,665,644,674,639,655,666,664,659,657,666,654,657,639,647,631,651,632,652,667,667,671,665,623,648,570,599,576,575,567,567,589,566,561,574,567,574,585,578,572,568,588,580,578,568,569,571,572,574,575,586,590,565,584,578,575,571,567,569,579,554,595,582,583,572,571,575,605,570,572,553,563,560,562,562,557,555,553,557,564,565,553,564,557,560,551,558,562,561,564,563,558,565,557,562,564,557,562,570,563,559,567,562,556,556,556,573,557,557,552,556,572,570,562,558,584,569,561,556,566,574,569,552,542,566,568,560,569,560,551,566,554,557,566,564,558,574,560,562,569,570,572,566,562,557,547,574,558,556,571,564,566,557,564,559,567,573,562,558,564,568,567,557,553,562,570,554,567,556,567,554,561,565,563,563,571,562,565,558,555,547,559,561,565,562,566,566,559,557,546,562,574,576,568,566,566,578,560,544,569,572,562,562,565,554,569,576,562,568,574,555,562,563,572,546,571,562,574,575,560,551,571,574,560,573,556,555,562,568,587,581,561,557,557,579,551,567,545,563,572,545,549,556,555,566,560,571,550,547,554,549,566,560,563,556,555,572,561,569,570,564,561,549,559,568,558,548,557,545,560,567,562,571,572,560,562,566,567,586,549,545,548,554,575,570,552,559,563,564,568,566,547,555,572,571,558,556,546,564,562,549,560,562,555,556,561,557,554,553,556,556,561,567,562,566,569,559,551,559,548,567,545,552,553,546,559,549,563,536,558,557,562,557,558,562,545,547,553,554,553,553,547,543,565,547,559,551,563,545,544,547,553,545,555,561,544,562,540,560,560,545,556,554,556,550,554,577,559,561,569,549,563,574,577,563,570,569,565,574,569,567,564,563,550,559,578,562,559,566,560,569,572,568,566,580,561,565,563,557,563,559,546,565,571,578,566,552,564,544,564,553,574,722,724,707,712,703,713,720,705,719,701,709,677,708,691,711,717,703,698,699,694,737,693,710,675,689,692,708,691,727,695,703,716,709,697,698,720,711,698,706,704,700,719,693,693,726,700,751,670,680,683,689,675,677,669,680,659,670,689,676,681,675,682,675,684,683,691,680,673,684,677,664,694,662,683,672,696,698,681,675,670,678,678,667,699,677,689,672,667,663,732,753,781,771,789,750,726,763,778,734,727,773,765,756,757,746,777,752,760,704,730,719,737,708,752,746,744,740,716,746,745,762,767,746,740,760,733,748,734,788,650,651,677,649,686,680,666,647,639,661,681,676,645,666,638,701,715,693,648,675,667,671,650,697,622,673,665,712,657,642,663,677,640,664,676,675,675,681,644,650,651,648,612,636,656,632,640,622,654,650,625,636,663,630,630,634,645,642,634,666,667,641,627,610,648,667,661,665,636,676,641,659,621,660,624,664,653,660,631,644,644,642,661,630,627,635,602,549,555,571,544,541,558,551,554,549,548,546,550,565,576,545,567,547,544,541,555,563,555,553,555,544,545,552,560,552,558,563,539,554,556,549,558,541,540,557,555,548,566,540,552,558,556,542,557,544,544,553,545,568,546,543,557,545,537,539,537,545,543,551,550,548,542,545,537,536,542,533,564,537,528,544,544,531,551,556,548,551,535,541,553,550,549,554,519,555,556,551,544,535,548,548,534,547,541,549,556,570,547,549,555,548,549,534,548,547,556,562,556,550,555,548,561,545,541,562,544,558,550,553,554,552,555,549,558,549,554,552,643,616,642,633,673,656,649,662,654,588,676,651,624,648,642,635,638,623,617,643,611,614,666,652,655,618,625,615,633,641,639,612,613,646,614,641,622,641,664,665,613,663,641,629,587,633,635,659,655,664,653,648,670,663,651,648,700,663,663,665,668,656,640,657,652,660,653,662,662,652,653,658,666,651,672,678,674,651,660,649,657,664,677,619,555,575,583,572,563,575,580,567,570,581,568,579,584,600,573,579,564,568,568,563,574,576,587,567,585,571,576,569,579,590,577,587,586,582,578,582,557,582,580,574,565,587,587,560,595,608,562,578,579,576,596,589,590,586,596,592,610,616,574,584,580,608,584,612,586,572,588,585,578,600,576,593,589,577,580,580,614,569,595,605,619,585,596,584,586,601,587,565,581,589,598,587,633,606,608,619,596,570,600,592,581,597,588,608,615,610,620,598,601,610,599,618,594,608,594,598,616,593,612,601,620,587,595,611,617,611,610,592,599,576,586,584,571,577,577,582,579,540,558,579,554,568,565,551,565,568,569,561,575,570,570,604,573,579,559,559,569,562,568,553,587,564,578,551,575,577,565,602,559,579,555,581,646,685,659,662,658,656,690,651,683,680,655,683,681,674,659,649,673,659,662,660,668,662,665,677,669,663,659,651,650,646,656,657,650,661,643,650,667,655,672,572,593,600,585,603,595,600,569,577,590,612,578,598,595,595,573,582,591,569,561,593,589,614,585,580,591,595,591,571,567,554,574,602,564,583,577,582,605,575,594,588,592,551,674,688,712,687,673,675,636,646,716,607,665,706,707,625,708,669,718,698,718,700,690,635,610,710,677,728,665,691,687,683,632,623,726,713,674,626,656,664,641,635,708,673,665,662,549,735,664,710,740,715,702,728,704,691,704,731,672,685,707,719,721,718,711,694,708,705,695,697,711,693,712,664,714,722,702,700,698,678,706,690,700,712,711,654,651,647,618,653,641,666,646,642,633,684,659,625,650,647,651,666,644,648,648,669,652,663,630,640,664,663,615,649,636,667,637,659,658,664,610,666,653,652,649,649,649,696,733,716,713,737,736,780,746,712,715,742,726,713,731,724,692,710,715,748,721,733,742,730,721,717,764,705,704,756,712,716,696,725,737,725,740,718,751,709,743,701,737,779,711,724,772,698,671,748,710,712,713,703,719,662,735,739,702,701,708,705,741,771,704,736,673,696,727,725,741,719,733,711,689,748,739,718,741,732,688,749,686,724,685,700,719,673,677,684,699,675,653,674,675,675,698,702,663,663,680,690,675,704,673,659,659,653,656,683,685,666,678,651,660,660,664,681,672,675,655,667,697,676,672,725,663,674,649,648,659,643,656,670,653,650,651,654,650,657,657,658,637,653,671,652,652,646,651,642,644,652,660,666,655,646,653,647,643,648,646,665,651,670,652,658,655,651,731,743,730,772,752,744,746,762,758,732,757,761,761,765,757,735,751,727,765,773,753,735,751,728,741,750,686,722,768,721,737,743,756,721,746,705,763,762,755,771,748,777,711,745,732,771,739,716,712,694,679,721,684,712,743,707,691,743,693,744,737,724,713,684,714,725,709,697,789,711,754,724,692,710,699,741,752,739,703,716,722,741,740,734,717,751,722,714,741,681,676,653,635,681,671,711,684,699,667,668,659,690,634,689,655,691,650,665,657,649,663,656,658,684,658,653,655,664,671,645,655,658,674,639,649,667,682,654,670,693,651,642,674,593,587,617,604,620,615,583,589,595,591,600,607,605,604,631,605,609,604,594,613,630,624,595,605,611,606,605,615,605,615,607,591,605,606,617,598,597,603,607,595,623,598,604,589,614,605,609,588,566,575,572,587,568,576,573,577,563,573,573,593,569,591,561,560,583,567,579,590,588,562,574,572,578,577,571,569,587,573,574,593,564,588,568,578,583,587,569,567,597,599,579,572,711,714,699,713,707,722,685,696,693,701,695,727,709,690,717,712,711,720,692,721,683,698,700,692,701,687,678,698,718,692,699,715,707,677,705,710,686,678,700,685,692,713,672,663,665,661,685,675,670,681,663,654,688,688,660,681,670,670,681,675,681,674,656,679,650,660,672,673,686,679,675,692,685,669,672,638,684,661,664,632,601,603,623,615,628,608,609,609,608,597,644,637,608,605,617,616,600,610,604,611,623,614,617,629,602,615,617,632,596,626,609,624,596,619,620,577,620,582,618,614,604,610,621,580,583,578,580,577,562,591,583,583,592,574,591,587,586,567,574,578,590,565,581,592,593,590,572,587,580,580,581,579,572,582,563,590,587,594,588,580,593,579,576,582,593,590,582,570,610,640,636,645,626,666,666,625,640,619,627,606,666,616,646,631,641,645,643,650,626,663,626,684,684,634,654,650,690,617,644,656,653,641,660,665,633,627,654,629,667,631,625,685,720,665,670,664,673,665,690,672,685,655,679,685,680,671,679,655,666,674,663,658,669,678,657,681,665,669,671,675,660,675,664,671,661,685,665,657,663,694,672,684,675,677,674,668,659,699,606,634,591,610,613,636,611,624,603,623,606,599,605,594,598,635,610,613,618,639,616,625,621,617,605,616,616,644,607,624,622,628,604,613,606,602,613,621,600,625,625,626,586,580,574,581,584,585,582,582,565,590,565,569,578,582,582,578,566,575,586,577,582,563,575,569,589,582,568,582,571,586,585,571,573,580,582,577,578,583,569,568,581,588,556,550,539,547,529,555,551,551,542,562,535,547,539,547,557,559,542,545,569,546,554,541,559,535,549,554,557,547,542,552,560,547,534,535,526,553,551,550,561,550,544,545,546,569,523,532,528,521,541,543,550,537,529,531,547,534,530,526,526,528,538,536,543,529,539,546,540,542,527,529,548,528,525,518,538,531,534,520,528,551,528,532,543,530,536,531,538,550,542,510,583,587,583,579,584,583,570,584,571,569,588,571,564,566,580,577,591,574,579,589,585,588,576,579,571,568,568,548,563,587,574,579,559,563,572,577,599,602,609,631,615,595,610,615,610,624,612,604,608,625,622,623,613,577,607,605,623,612,605,623,589,619,615,633,617,613,617,612,610,627,589,616,600,621,610,624,611,628,614,615,588,611,627,629,613,619,603,596,593,619,627,609,605,585,595,598,634,610,612,597,612,607,618,596,616,585,600,594,596,585,617,631,583,590,601,601,604,623,611,604,599,623,605,605,597,623,598,590,608,607,610,589,602,589,566,565,583,591,584,588,580,571,579,571,581,577,585,575,574,578,583,588,568,576,601,586,579,574,589,576,585,569,569,589,594,580,592,585,563,575,573,567,684,668,689,683,642,677,683,666,680,645,662,667,675,663,679,660,668,691,649,669,668,668,671,682,646,671,677,685,668,646,657,668,660,680,707,653,671,676,649,658,587,576,572,589,590,591,597,573,579,600,614,576,597,580,592,599,565,584,596,587,600,592,585,585,580,578,594,580,586,570,585,581,578,586,576,579,579,577,577,588,584,600,575,579,551,559,570,569,565,572,555,538,571,552,550,568,561,571,559,549,547,602,566,548,557,576,554,585,576,595,589,552,556,581,554,553,569,582,572,561,586,580,571,589,571,570,565,663,644,613,655,631,655,653,627,658,642,643,633,646,658,632,637,646,647,643,650,646,659,661,660,662,637,656,648,652,653,664,651,652,633,632,647,638,655,638,644,622,605,605,603,595,606,603,587,604,603,593,600,580,588,601,600,590,597,575,597,604,585,584,593,583,590,606,599,594,581,605,616,605,573,601,604,597,592,580,611,587,631,567,565,574,550,564,561,556,541,566,558,556,539,545,552,563,551,566,558,579,563,536,553,547,570,554,562,553,555,550,561,540,544,575,547,553,559,542,556,561,559,560,527,621,573,570,574,583,591,624,581,568,607,587,566,529,613,580,609,561,557,596,564,617,585,565,566,555,577,615,600,586,605,574,567,578,582,564,593,591,577,584,543,575,581,588,580,579,573,571,592,569,568,594,590,589,577,582,586,585,586,582,574,583,567,586,583,570,566,575,581,590,593,578,592,587,581,582,582,588,595,570,575,590,581,572,581,578,581,594,576,539,570,550,557,551,546,558,543,557,560,556,552,565,562,553,554,557,557,553,555,544,555,555,541,548,541,566,558,550,552,556,559,551,565,550,555,551,569,573,561,556,560,582,584,617,619,627,589,627,606,610,574,567,585,557,619,613,605,637,608,598,616,607,597,605,577,603,628,638,578,635,612,599,626,596,627,618,620,583,617,582,598,596,597,612,580,677,580,579,571,571,565,574,586,579,571,574,571,586,558,588,564,572,570,588,574,591,575,570,572,580,567,578,585,566,573,559,566,539,574,560,595,587,609,570,578,579,565,602,606,622,614,593,592,573,595,611,566,577,574,618,572,634,557,604,590,614,643,561,605,634,624,614,614,603,584,628,603,618,573,600,610,600,580,583,581,595,574,630,619,614,567,576,625,686,702,731,716,689,703,705,716,679,716,688,696,718,714,698,691,707,676,716,718,685,700,703,712,709,740,725,691,689,720,680,675,684,704,692,692,669,724,693,700,709,716,684,721,705,713,597,617,623,620,637,647,614,618,621,623,639,614,628,622,599,627,606,609,644,609,606,646,634,635,591,632,629,613,604,615,633,618,627,630,630,633,611,657,614,572,632,590,674,627,644,576,588,637,617,576,633,629,557,642,634,587,624,612,607,618,627,671,626,688,634,648,592,600,612,611,658,634,615,601,652,580,557,670,648,642,575,634,621,602,604,676,594,599,594,561,594,581,615,600,603,601,602,587,588,601,588,579,615,588,601,572,617,592,584,582,614,600,579,584,585,585,586,580,582,592,579,586,586,591,584,604,531,534,590,581,636,624,640,642,573,600,622,593,638,608,579,617,620,511,574,595,610,639,633,641,650,632,658,661,566,552,623,541,580,593,581,606,685,583,552,625,622,644,658,716,682,704,704,708,702,678,688,692,724,706,730,709,675,706,673,718,707,710,707,709,703,718,690,726,703,687,706,714,701,689,723,723,702,704,706,706,726,692,698,716,708,694,695,708,703,692,700,729,678,688,657,721,706,653,709,758,695,719,691,718,701,646,655,686,725,718,695,713,703,706,696,721,691,657,722,626,722,705,715,706,703,709,677,680,664,704,705,741,670,715,722,659,653,668,670,619,645,642,679,662,647,646,665,675,663,655,665,656,654,645,646,650,662,656,662,657,645,666,648,643,623,666,646,657,637,647,672,685,637,660,651,640,659,635,648,698,582,577,569,569,585,586,608,591,592,594,583,575,592,604,575,605,590,587,580,609,587,570,577,580,608,577,593,581,595,569,587,590,566,588,579,577,600,592,585,597,582,580,601,546,534,549,550,537,548,541,542,533,553,533,527,552,542,546,547,546,532,542,547,561,538,533,551,531,547,543,540,540,527,529,542,538,542,544,543,533,533,541,538,529,549,539,547,538,532,541,543,543,552,540,551,538,534,551,553,524,545,546,541,554,548,537,554,548,554,537,552,549,528,549,550,559,547,554,559,543,546,527,548,544,528,558,562,572,539,561,511,525,526,531,530,519,522,532,526,531,523,533,519,533,528,515,523,522,527,515,540,537,542,533,533,523,520,530,524,529,536,523,523,539,520,523,522,527,538,520,524,532,523,537,535,512,532,505,690,693,691,718,698,683,697,676,701,715,711,711,696,696,689,694,683,673,690,697,684,696,706,688,706,697,682,720,721,721,723,704,700,707,713,683,706,693,688,718,678,723,695,642,657,673,638,667,654,649,660,645,644,642,654,655,661,651,656,656,668,656,679,653,658,665,625,682,648,681,648,641,675,673,655,677,670,638,653,653,660,638,651,651,649,663,661,649,653,666,590,577,620,610,592,602,607,603,618,604,613,611,611,628,622,608,628,600,609,631,612,591,618,620,600,625,611,587,620,614,602,591,608,585,617,601,616,582,606,600,594,649,638,638,592,632,609,613,629,647,647,603,628,641,619,610,650,651,621,599,620,650,628,635,641,600,630,595,627,579,598,652,574,623,621,607,611,681,695,627,631,608,582,648,568,624,597,592,609,608,590,618,606,631,616,625,603,609,605,603,602,587,601,614,591,590,612,595,624,618,599,592,606,600,602,589,604,593,625,607,583,569,569,582,567,570,565,544,577,550,562,570,559,570,562,565,558,580,573,573,572,565,582,566,573,571,572,567,569,582,574,568,567,553,564,561,581,575,566,562,566,559,585,546,566,562,563,582,561,542,569,572,560,553,551,549,548,566,559,545,552,563,539,542,543,562,567,572,546,550,549,557,551,546,548,555,554,570,560,555,571,552,570,559,566,551,567,552,555,555,546,542,560,539,552,554,545,544,555,554,563,555,538,554,549,552,567,558,556,537,553,543,554,553,543,542,557,549,546,545,543,544,546,539,551,557,658,584,680,629,596,595,623,647,629,644,580,594,628,608,597,640,575,650,601,626,604,608,641,647,610,599,577,666,664,614,587,613,596,656,634,593,640,617,632,630,605,605,580,603,764,726,739,737,716,741,739,714,767,727,755,723,770,742,743,710,714,704,697,731,720,772,733,725,755,710,698,718,718,703,767,735,745,733,719,734,730,752,746,773,799,721,724,732,714,755,717,737,729,730,708,745,746,728,748,722,722,755,728,742,710,703,736,737,707,729,734,733,717,709,733,734,733,737,754,724,726,714,713,739,750,654,670,665,678,661,654,693,654,652,674,652,694,667,664,660,662,674,685,670,674,663,673,638,681,657,675,675,664,662,691,652,665,671,697,668,643,692,668,678,640,673,672,676,650,653,681,604,594,570,573,585,555,600,568,590,570,575,598,580,589,576,569,601,579,588,576,583,575,599,579,576,580,587,577,585,593,580,567,587,568,594,593,584,596,587,576,587,587,559,666,663,680,679,667,690,690,680,664,668,681,679,674,689,646,694,643,659,671,674,664,660,680,673,682,673,676,680,664,679,695,671,652,681,670,668,691,691,688,672,683,659,682,664,693,680,675,647,673,678,681,721,669,709,682,657,691,678,657,696,720,655,687,686,667,661,682,636,672,681,705,671,667,660,688,632,665,673,702,659,657,660,680,683,658,668,664,710,649,665,666,701,681,669,579,587,589,559,614,531,554,553,589,606,579,595,607,586,618,567,581,580,561,580,590,584,621,564,560,583,607,596,589,576,581,571,570,592,538,559,602,578,603,588,575,547,571,546,556,570,571,565,551,577,551,538,533,558,580,554,536,556,554,527,561,548,541,549,582,546,541,558,556,551,541,558,557,558,556,571,531,564,541,561,562,560,696,637,660,680,643,674,625,676,681,656,675,694,699,685,679,655,665,675,676,670,691,667,666,684,671,687,708,680,684,637,670,657,664,641,647,675,720,665,688,622,631,624,625,648,634,616,629,616,622,636,588,623,626,608,614,598,608,601,635,622,656,638,608,603,597,615,633,630,630,617,628,640,608,634,604,630,618,615,581,585,578,576,590,589,566,574,580,576,584,581,589,583,583,584,591,580,576,576,572,582,584,573,580,590,571,591,575,570,567,582,583,579,575,583,581,579,577,576,588,582,587,657,636,610,630,652,631,630,629,637,662,638,625,670,620,654,656,676,633,667,646,644,636,653,609,635,616,652,622,699,646,633,672,649,643,668,689,634,650,685,633,601,652,692,695,680,706,699,679,680,692,683,680,676,681,685,671,690,675,682,688,687,684,669,689,684,681,689,668,693,683,668,658,693,670,667,697,691,692,699,701,684,674,666,696,663,704,650,673,666,669,645,673,682,675,669,669,666,664,655,641,663,672,655,667,668,657,665,662,670,664,678,653,656,661,664,661,668,650,646,663,664,664,671,657,676,672,659,656,675,675,663,583,602,592,577,584,602,589,572,600,590,593,589,581,576,570,574,584,602,593,572,582,592,572,593,553,598,585,576,607,598,599,588,593,575,611,573,592,582,582,574,583,588,576,634,595,592,603,579,608,624,595,582,639,609,630,564,601,627,595,589,636,578,596,595,630,582,579,609,589,622,626,615,606,618,609,574,631,653,580,601,612,610,587,607,589,639,603,537,589,583,587,598,578,585,582,576,575,594,593,582,605,582,579,595,569,578,601,594,586,586,587,586,592,599,586,589,584,578,584,599,577,574,591,600,591,621,581,595,603,605,592,580,563,584,593,579,631,595,572,582,621,561,558,611,613,587,599,644,568,591,569,574,554,584,615,593,646,628,621,550,596,516,563,569,560,578,561,562,571,565,557,557,564,574,566,559,569,552,572,568,571,570,564,570,552,572,552,573,565,564,557,558,585,554,551,557,576,570,559,568,564,574,577,564,579,559,586,588,605,604,577,605,594,595,589,596,615,597,599,592,591,565,600,584,594,596,585,584,577,590,599,601,616,601,576,566,583,585,585,601,598,588,599,591,582,622,616,618,617,611,616,610,605,599,623,609,607,641,608,589,609,633,608,604,625,606,612,610,614,613,620,599,645,603,600,602,593,620,635,608,633,599,618,615,618,622,612,581,592,558,577,574,579,588,580,560,580,573,589,599,591,582,592,579,571,578,579,573,594,594,579,595,582,579,583,590,591,586,585,563,582,597,562,583,577,584,578,575,566,594,541,624,642,624,578,626,630,637,603,570,635,601,620,651,640,639,605,605,601,621,617,653,656,646,627,673,620,612,605,652,638,615,609,623,618,648,619,611,637,623,619,563,538,689,705,679,680,696,686,672,696,665,678,699,680,659,678,685,686,707,680,700,701,721,691,676,701,705,691,667,670,683,692,711,671,687,685,675,688,685,691,678,705,699,683,719,688,678,696,658,668,679,664,671,694,660,674,683,674,653,687,680,659,664,690,682,674,665,671,668,678,670,691,685,677,657,683,668,666,665,678,667,678,708,691,664,668,686,673,698,682,684,657,684,674,685,575,600,569,562,573,569,588,571,577,599,569,583,576,568,596,560,586,566,595,581,563,589,583,580,586,590,598,575,584,586,582,573,577,583,575,557,579,571,588,577,610,590,561,588,578,602,577,653,634,647,653,635,606,644,603,626,646,669,630,631,665,638,636,616,655,637,649,643,668,615,629,615,658,611,638,636,628,655,619,638,659,619,651,632,642,636,639,635,633,578,602,600,607,595,579,594,568,602,591,588,589,594,593,603,596,584,605,563,595,598,572,577,593,588,592,587,594,586,590,598,586,613,586,593,613,592,594,583,599,588,601,586,572,565,562,568,553,560,561,577,580,565,563,554,570,546,563,563,571,571,575,571,563,562,559,568,567,567,567,561,567,556,553,565,552,559,569,582,559,563,576,575,560,557,575,568,556,560,554,551,560,566,553,558,557,560,557,573,552,558,558,558,551,551,565,556,556,546,539,555,551,572,552,561,552,568,549,561,567,568,550,567,558,570,564,566,555,571,564,550,553,565,553,552,549,549,546,551,546,548,540,540,567,552,551,545,560,544,561,547,549,541,559,558,560,543,550,557,555,565,553,544,557,563,572,550,551,554,735,717,720,744,755,736,763,709,738,679,729,731,675,747,726,743,707,705,733,732,719,737,757,786,714,706,755,731,769,756,717,717,703,744,689,762,741,712,714,707,724,692,687,770,786,724,728,712,718,719,732,732,727,735,729,726,694,716,724,726,690,704,727,702,700,727,718,762,751,734,711,744,743,724,712,718,731,723,731,744,723,714,700,746,707,734,732,705,717,710,774,597,596,613,596,562,621,565,631,602,606,597,573,606,589,639,594,613,610,584,605,599,608,563,611,600,636,600,604,633,602,610,638,554,603,580,568,623,589,591,621,678,542,574,585,575,589,590,569,573,575,577,563,558,540,554,567,566,553,553,549,555,565,563,572,572,574,534,576,563,560,580,569,570,576,572,569,563,570,552,535,537,525,530,531,542,547,536,525,531,530,547,531,540,539,525,549,539,534,534,535,543,542,521,534,530,535,533,538,533,539,524,537,530,540,543,533,545,531,544,527,537,544,536,531,537,676,645,635,622,659,642,631,623,612,641,631,643,649,634,653,661,629,671,631,640,645,653,665,656,663,650,658,640,661,646,656,654,651,663,651,659,672,653,643,648,670,636,679,581,577,594,597,597,597,587,589,571,574,595,583,596,601,589,590,598,588,593,572,585,589,589,575,583,588,600,583,591,604,582,584,608,577,589,593,588,580,578,552,549,543,557,553,563,569,548,559,558,545,560,553,558,553,543,553,556,540,566,565,566,556,553,559,547,551,549,562,546,553,557,553,558,554,547,557,558,555,545,559,560,584,667,663,687,656,648,628,600,644,665,657,593,599,658,652,625,633,621,610,692,631,622,598,654,674,658,620,647,666,625,614,601,618,621,610,644,669,618,658,645,626,635,582,559,586,581,561,572,551,576,566,566,559,577,577,562,571,577,561,578,573,559,576,553,589,578,571,572,570,577,560,576,554,566,583,563,572,578,572,587,667,655,601,573,666,626,636,628,647,595,633,623,617,638,593,607,608,670,640,635,581,656,603,584,564,630,673,650,632,615,634,598,665,595,650,634,657,632,641,666,628,619,612,603,603,622,609,609,600,638,629,615,610,605,605,598,607,617,590,610,606,600,608,623,626,604,605,601,637,587,623,590,594,596,608,594,592,632,613,603,616,586,628,609,609,607,611,578,562,559,578,575,563,560,586,561,594,573,572,567,577,589,586,568,572,574,567,591,578,579,572,571,573,591,602,583,566,576,575,575,563,571,575,582,564,571,579,573,575,575,574,602,671,635,658,637,616,646,629,636,668,658,640,653,621,620,638,666,601,638,594,617,657,666,633,627,662,669,656,644,650,607,636,649,607,619,652,633,650,640,645,656,621,672,669,687,646,667,658,654,649,677,663,659,672,673,652,679,667,671,683,664,665,672,680,669,661,669,666,683,665,666,692,660,688,674,677,680,681,643,666,670,665,665,670,677,593,579,580,583,593,572,595,590,587,574,567,599,578,597,572,571,581,596,601,596,588,606,598,591,584,582,566,587,579,583,579,579,575,587,567,591,588,584,586,584,622,604,576,697,704,687,687,685,696,697,692,703,710,685,692,688,666,689,687,701,669,693,708,695,702,713,704,689,690,690,676,694,684,705,688,684,719,692,683,702,683,710,679,688,709,697,710,687,676,685,693,678,741,657,659,670,688,651,667,637,659,654,675,645,661,668,657,648,676,652,630,652,662,643,648,662,663,672,658,661,650,651,632,666,679,672,660,662,632,659,663,650,651,656,661,684,596,627,622,601,581,618,599,608,583,613,605,593,594,567,595,621,600,598,605,597,611,606,600,569,610,580,616,599,607,601,586,590,613,612,619,612,615,605,596,558,627,629,654,642,667,647,656,647,650,662,604,628,641,608,639,635,634,649,637,645,667,658,618,662,647,602,645,601,632,643,654,656,643,694,664,640,627,633,661,709,683,694,678,695,698,703,706,695,683,695,681,691,681,694,666,690,683,669,702,693,692,689,699,688,678,695,701,668,717,698,703,690,697,697,682,689,693,694,692,696,677,650,665,679,668,671,658,663,673,672,665,669,658,672,677,673,673,669,672,672,685,674,678,649,658,659,671,673,666,692,662,674,674,676,676,685,665,669,681,656,664,673,656,665,664,669,666,656,680,668,604,608,619,621,611,616,615,619,614,630,593,609,598,610,598,603,608,601,605,617,609,615,631,626,617,597,610,607,630,612,609,605,625,647,617,615,624,599,617,630,610,630,623,603,605,622,611,561,571,571,577,561,579,571,593,579,588,596,575,582,567,574,587,568,570,582,577,582,569,580,565,556,595,574,583,574,570,584,576,576,570,554,572,573,567,572,568,588,637,662,653,668,688,677,677,663,703,649,686,665,700,657,653,667,676,676,676,656,661,674,698,659,688,657,661,664,672,672,683,678,656,650,681,658,666,647,618,643,627,633,626,632,605,617,644,608,638,624,638,623,629,615,639,624,642,644,650,623,621,618,612,622,631,634,638,644,640,629,628,639,630,607,625,599,634,602,634,624,626,629,639,574,573,569,568,565,568,573,584,568,576,562,588,597,592,612,579,571,585,569,561,574,556,571,593,584,592,577,564,593,582,599,593,578,558,586,566,578,573,584,578,591,580,607,559,558,559,549,559,558,557,555,545,548,540,554,549,565,543,554,540,554,539,558,559,553,551,549,549,556,542,553,552,555,556,548,547,551,555,553,556,546,546,547,553,564,560,560,561,542,650,659,648,660,647,704,648,664,685,702,613,652,678,582,687,617,614,700,611,696,640,665,655,647,643,664,638,636,644,658,634,665,627,587,639,664,610,652,628,617,667,649,627,643,638,628,654,698,604,603,609,595,592,603,597,617,601,587,594,596,591,592,610,614,604,610,601,590,594,603,598,608,583,594,599,606,603,589,601,584,602,594,617,608,592,597,600,589,605,588,613,596,591,560,561,571,584,573,577,583,572,574,573,574,572,567,568,579,565,568,575,555,568,566,575,585,570,566,574,572,568,572,578,575,573,564,576,560,569,580,577,570,566,547,545,544,554,554,562,530,538,543,561,562,547,561,549,554,548,532,567,559,542,553,558,552,558,556,560,554,551,556,534,580,575,559,562,568,557,567,547,552,564,550,564,564,543,552,567,561,558,564,540,566,557,565,555,544,552,543,557,547,557,559,559,547,546,545,543,554,551,560,543,548,542,555,548,544,554,550,558,552,550,564,550,555,538,550,553,543,548,553,570,565,564,557,555,541,565,561,552,566,551,567,560,557,565,561,575,568,575,569,568,583,575,568,544,568,558,565,559,570,580,568,563,576,563,574,560,560,570,556,570,586,699,689,680,706,707,697,714,696,697,694,698,687,710,692,703,693,707,700,691,676,732,706,699,728,705,702,700,717,687,697,706,698,703,735,700,691,711,698,684,716,696,703,683,686,714,677,675,692,681,667,701,682,688,659,654,657,682,670,678,678,686,663,689,669,690,685,673,663,700,681,676,669,677,687,688,662,688,683,683,680,668,670,675,686,663,680,661,681,678,666,674,639,627,627,620,626,653,633,606,629,622,631,644,648,634,660,631,643,667,624,637,629,653,667,621,626,632,624,646,622,628,605,639,640,598,637,629,668,657,611,656,628,639,638,617,698,713,721,681,674,699,657,647,668,675,661,694,707,661,664,720,690,701,645,672,684,682,689,674,685,707,706,688,698,689,704,687,667,665,706,717,706,738,706,687,682,695,676,690,676,656,640,680,657,640,667,657,636,652,642,651,683,673,675,669,670,693,656,689,655,658,664,679,695,680,659,661,638,615,641,660,679,663,669,656,677,655,650,654,650,659,596,589,613,614,598,581,594,599,612,588,600,597,597,614,604,602,599,602,603,609,601,608,618,622,593,623,606,617,592,607,589,614,601,617,615,596,597,616,614,601,551,555,559,566,563,564,552,557,563,557,549,552,563,552,567,577,559,557,566,565,559,565,567,551,564,549,559,557,574,567,561,549,551,560,565,554,557,539,560,556,562,568,557,584,573,590,557,572,591,563,580,575,566,595,581,579,573,575,565,573,573,598,588,575,570,579,572,569,584,578,576,564,571,558,578,549,577,570,556,608,586,563,581,561,582,566,575,585,584,602,619,624,597,598,616,637,604,606,606,617,613,596,599,603,615,607,606,582,601,613,608,593,617,585,622,603,589,589,603,601,616,607,619,614,578,617,613,606,597,624,597,629,631,648,609,660,645,635,621,627,622,594,647,620,635,626,631,626,608,622,626,622,601,638,627,639,616,639,616,643,665,636,643,641,648,637,645,622,637,647,649,670,609,603,611,591,608,594,606,609,589,599,571,605,592,586,608,609,608,597,603,585,594,602,593,601,580,613,628,610,595,598,591,587,599,598,606,617,592,601,566,569,605,574,580,583,574,573,582,595,562,578,589,598,562,561,590,583,588,582,570,580,570,591,583,603,584,564,570,570,579,581,593,573,584,584,591,583,584,569,592,591,568,583,558,547,555,550,547,549,555,544,558,554,553,559,551,549,561,563,562,543,557,558,563,546,562,565,561,555,555,566,544,550,552,553,551,549,572,558,555,560,550,549,555,566,544,547,725,677,682,636,631,701,673,661,655,700,639,668,705,638,646,629,679,670,674,699,667,633,673,697,664,621,638,653,648,680,686,669,664,664,674,695,653,635,688,664,691,597,607,614,599,608,604,606,570,591,607,592,599,589,592,623,573,588,621,630,595,596,591,579,604,606,594,589,600,596,613,596,628,567,591,609,636,616,604,592,578,580,617,590,616,552,573,588,577,577,605,563,567,553,572,567,559,587,586,546,569,578,576,550,576,579,586,567,561,576,568,574,572,562,580,580,617,547,575,577,592,579,569,572,549,614,663,670,659,678,660,647,672,677,650,677,663,667,676,651,658,681,685,659,663,651,662,670,663,680,660,669,669,680,653,684,688,655,649,651,674,654,661,687,650,682,651,673,669,650,652,663,666,737,753,746,734,742,752,758,775,768,708,749,743,718,701,742,754,715,730,719,753,773,726,741,757,749,737,774,761,730,690,758,755,727,748,725,718,723,764,740,761,757,754,731,710,771,653,662,677,667,696,655,685,701,683,665,697,707,674,676,685,673,655,674,659,637,680,685,701,659,663,653,621,684,711,665,673,645,664,676,677,656,677,668,654,640,516,538,521,543,547,512,549,552,532,534,558,524,544,538,524,545,559,536,559,548,565,561,564,538,548,563,569,502,553,567,558,510,548,553,518,556,529,521,563,543,531,576,547,553,546,596,525,530,517,526,521,536,542,522,529,519,527,532,515,524,534,537,530,519,521,521,533,530,514,524,533,534,537,530,525,510,535,516,539,530,533,534,522,530,530,522,520,655,651,639,680,666,646,658,641,649,659,619,670,630,640,636,667,658,645,651,649,624,652,640,620,650,638,628,658,656,653,642,617,649,651,643,624,696,701,669,668,697,664,659,685,687,700,646,684,672,695,670,692,673,684,674,697,690,669,680,702,655,666,643,700,661,645,677,678,668,667,705,689,680,666,653,719,612,615,662,719,703,680,690,699,704,695,705,730,652,732,685,667,658,658,670,663,692,715,700,707,667,695,682,660,656,678,729,716,645,675,611,715,660,654,639,727,674,730,624,675,651,668,675,672,659,674,642,624,645,628,645,659,639,635,644,670,638,654,631,639,655,644,649,640,643,669,638,660,652,677,658,642,622,641,665,635,651,629,649,663,627,677,660,660,671,644,670,645,655,638,576,572,555,581,580,566,569,564,573,560,578,577,544,558,579,588,550,584,575,554,572,555,584,570,562,568,567,571,565,584,579,565,567,570,569,570,556,569,556,547,590,562,595,605,612,607,603,575,598,624,582,575,561,643,611,609,621,614,584,594,650,572,596,563,596,601,611,555,606,575,649,596,579,573,579,595,584,549,580,639,772,780,711,765,780,775,801,810,759,766,766,768,756,771,739,779,763,752,783,756,766,771,751,795,805,767,779,775,742,761,753,785,758,735,748,758,744,750,778,778,760,740,758,748,767,762,761,766,657,690,659,674,671,705,657,683,682,676,666,670,710,654,681,716,706,690,687,692,618,680,694,681,694,693,699,697,702,689,677,634,663,692,693,676,677,677,704,701,638,543,553,547,558,526,547,530,560,523,541,560,536,526,566,537,547,544,580,568,567,570,559,559,549,566,537,560,538,560,537,563,551,541,530,560,515,548,539,522,523,524,544,533,524,532,533,544,532,522,544,539,518,531,527,534,536,541,546,529,531,537,533,523,531,533,526,526,525,529,526,535,531,525,517,530,553,540,533,533,517,509,506,517,494,502,507,520,521,483,496,521,519,514,503,520,510,511,528,510,520,521,514,512,525,497,517,508,512,502,527,515,508,500,520,514,497,514,522,508,514,519,508,529,499,519,524,552,565,559,551,547,552,537,535,571,561,556,575,554,564,572,560,563,551,555,557,563,560,554,558,554,562,567,574,560,549,562,563,561,547,561,550,562,561,556,541,576,528,549,537,546,532,545,545,537,542,545,536,539,544,538,541,544,532,553,545,542,541,538,537,539,539,540,545,530,538,557,549,547,531,549,544,534,537,548,533,550,537,541,772,714,771,740,664,764,764,770,773,762,703,771,758,691,748,740,817,706,741,770,738,756,685,739,729,741,783,754,770,783,717,768,734,757,743,739,735,753,753,726,698,714,724,714,721,715,739,723,718,713,730,759,733,730,712,736,731,710,721,725,736,704,722,761,728,733,716,719,711,722,707,691,721,730,737,718,735,756,715,719,663,701,693,685,646,717,703,662,691,705,674,742,708,666,694,693,668,695,655,719,705,690,681,643,693,695,680,669,715,684,671,726,724,688,713,706,670,646,665,687,683,646,603,619,629,623,603,618,607,629,605,603,618,620,615,620,611,610,609,613,631,605,631,584,594,604,611,661,630,622,636,609,625,624,609,619,625,609,612,643,615,619,641,617,630,617,613,624,616,581,587,583,595,589,581,598,583,573,570,585,595,594,584,579,573,582,585,587,588,585,569,576,582,582,586,592,591,576,578,572,572,580,595,596,585,596,591,576,559,567,562,565,563,566,568,568,578,575,570,567,568,561,576,577,561,558,565,578,561,582,575,554,560,553,567,562,561,564,575,570,580,569,569,566,567,579,561,542,601,618,628,613,605,603,608,614,615,605,616,601,616,615,610,602,624,607,600,604,601,607,601,597,599,595,615,606,588,609,619,603,607,606,599,634,631,614,602,628,586,608,602,599,608,607,643,637,617,632,645,646,633,639,622,636,647,649,642,666,639,621,662,642,633,638,630,632,659,661,640,642,627,644,645,620,643,647,646,641,647,639,637,632,671,622,655,651,732,756,692,708,743,739,713,699,703,718,736,729,730,731,710,734,699,705,739,742,701,714,724,685,688,715,694,705,742,739,710,695,765,752,728,747,727,682,757,736,670,675,654,698,689,730,719,731,732,721,687,726,722,709,697,709,707,707,721,715,721,721,709,737,734,710,724,693,716,711,693,707,728,720,714,720,709,694,711,704,715,711,732,724,696,705,710,695,694,717,681,705,690,677,706,695,685,719,694,699,677,702,686,708,714,704,702,693,687,678,705,704,705,682,671,689,674,684,663,716,701,693,682,683,679,730,656,680,692,718,688,727,640,712,741,655,666,642,671,772,653,672,676,679,686,694,727,706,634,634,699,682,733,689,732,684,725,652,688,692,712,634,668,633,694,744,660,660,637,651,633,645,675,629,634,625,639,673,630,645,655,629,645,632,668,650,629,650,645,672,667,655,655,647,662,656,649,657,642,649,662,683,674,642,651,646,661,635,643,607,587,577,605,604,600,610,608,599,591,597,601,591,615,612,587,592,591,610,595,592,615,594,615,589,603,617,603,618,592,603,588,583,602,604,603,571,608,602,568,596,586,614,593,590,592,610,593,596,598,584,562,563,587,567,571,588,565,566,569,569,581,584,588,578,589,575,591,569,572,572,590,567,576,581,581,583,588,571,580,575,584,593,574,580,575,587,581,588,589,587,580,573,564,556,553,550,556,567,538,548,558,556,571,550,551,551,553,544,559,558,546,552,553,540,553,567,552,563,544,554,563,556,547,562,562,555,548,548,561,554,546,567,538,679,699,672,652,741,654,666,674,683,672,658,680,707,704,685,657,655,669,640,686,674,662,701,637,610,667,679,680,677,677,689,693,672,685,705,656,651,713,658,640,628,642,613,637,623,626,619,637,651,638,624,613,650,619,629,652,645,650,645,623,641,638,634,622,601,635,624,638,644,631,642,642,639,644,634,623,636,642,643,622,641,630,626,630,598,578,590,595,578,569,575,579,580,564,563,569,570,575,557,574,578,578,584,585,563,584,568,556,571,589,587,577,574,570,574,562,564,577,574,579,581,573,571,576,577,573,570,562,544,712,704,783,684,713,689,716,641,770,743,695,702,704,697,781,707,694,741,703,692,705,724,678,716,678,741,742,773,690,723,699,705,767,702,747,739,698,708,725,720,665,738,697,727,694,713,724,681,787,741,722,740,714,709,711,751,718,727,753,701,716,714,723,735,729,723,705,736,723,731,723,732,733,735,717,714,722,722,711,733,707,737,709,742,699,685,717,644,663,724,715,694,691,671,672,671,704,666,674,698,675,670,693,692,683,712,701,720,679,650,684,658,682,670,668,698,676,672,680,664,687,731,681,674,694,682,680,661,676,707,624,617,620,624,617,612,608,626,614,602,618,603,591,609,642,637,627,614,596,614,646,597,622,624,629,601,628,616,620,626,610,600,583,614,628,597,600,639,593,604,638,621,600,581,579,562,565,592,576,573,577,564,571,575,569,579,570,571,577,571,559,575,573,571,565,578,578,579,585,558,556,561,566,571,569,569,579,565,590,580,594,583,580,566,563,567,576,572,586,580,580,563,573,576,574,575,577,576,714,698,694,700,688,693,684,704,727,692,730,713,686,698,680,662,708,709,689,712,725,692,673,686,706,676,680,668,678,722,720,720,659,702,711,698,631,682,678,712,676,671,692,696,706,702,682,694,694,669,690,671,708,694,694,707,686,693,693,662,702,709,668,676,685,703,712,688,684,685,679,692,685,696,679,695,696,684,657,674,683,675,685,678,691,700,668,675,692,667,685,714,715,697,687,682,653,691,676,695,667,677,669,688,651,679,691,717,704,660,693,701,663,681,686,692,677,700,660,679,682,673,617,599,600,615,615,593,609,602,596,627,600,631,605,612,623,644,587,609,601,609,608,630,603,579,588,597,610,604,595,602,667,640,598,607,639,614,591,627,600,616,599,596,576,622,546,558,571,552,550,540,542,549,558,567,548,556,545,555,545,574,559,548,562,555,543,565,531,549,549,558,560,564,552,563,552,558,570,556,550,540,560,565,532,504,507,504,499,483,502,496,510,492,486,513,502,504,511,499,503,498,494,510,498,507,500,500,493,497,489,494,499,500,515,488,509,492,497,515,506,501,510,506,495,521,499,513,508,506,507,499,500,513,516,493,510,502,511,504,498,507,508,513,504,496,515,496,507,517,518,503,490,514,511,497,513,504,497,514,492,501,498,498,508,506,507,501,493,530,506,533,519,502,515,501,503,510,504,519,523,527,503,522,515,517,502,528,517,524,523,521,514,503,515,511,516,506,508,512,514,519,502,508,532,516,526,511,532,525,500,528,562,565,567,569,588,569,569,553,563,561,561,562,557,575,577,556,541,555,545,555,560,578,584,567,564,564,562,578,563,568,567,568,581,578,581,548,587,560,559,574,567,579,525,606,597,601,603,587,613,591,590,598,603,602,593,600,579,597,586,594,599,606,588,579,578,590,590,614,599,597,592,605,606,589,586,589,596,595,598,596,593,589,579,605,591,584,585,657,699,702,673,653,680,691,694,684,672,680,689,678,672,690,737,662,656,693,719,694,677,681,704,689,661,678,712,675,694,700,678,671,708,714,704,673,698,702,678,694,652,610,613,637,614,644,632,652,610,601,634,640,652,619,643,625,639,618,594,620,623,626,649,610,636,625,616,625,625,628,623,631,605,644,619,617,651,612,627,620,622,618,619,622,592,574,584,580,571,584,573,573,584,592,589,573,599,593,578,582,577,584,582,571,578,568,571,569,600,590,568,589,577,591,586,582,576,573,578,580,564,591,562,559,558,567,553,545,569,559,571,551,567,570,554,562,565,569,559,563,574,560,553,557,560,559,567,563,557,555,557,560,554,564,567,564,551,567,562,556,564,559,556,534,562,558,565,566,557,550,563,564,562,545,552,565,550,550,558,558,564,557,551,538,558,564,555,554,549,554,545,554,551,542,550,552,543,553,560,564,560,550,559,550,553,550,562,574,588,573,561,561,565,582,580,558,555,573,581,565,571,582,570,575,582,573,571,567,561,572,571,571,586,579,561,571,569,558,581,580,551,575,572,559,551,569,590,587,569,588,598,600,599,594,583,589,599,609,595,592,590,603,596,589,593,586,594,609,596,600,592,594,595,578,602,589,587,602,595,600,588,603,599,608,606,613,581,608,600,598,596,592,589,736,717,712,736,711,706,728,718,707,706,712,723,698,718,717,746,722,717,720,714,743,725,748,740,715,736,731,702,732,734,717,703,757,711,734,688,766,621,640,617,619,637,610,601,597,648,609,628,599,628,600,583,613,627,636,607,619,595,624,643,604,627,590,614,625,612,619,625,612,615,568,618,640,609,621,627,614,606,620,604,616,601,593,608,607,550,576,555,573,561,573,555,572,531,564,587,550,593,571,531,572,553,584,577,549,545,554,552,580,579,547,553,572,557,547,577,558,560,563,566,571,567,562,539,565,557,541,560,544,567,546,707,713,732,736,699,716,722,735,709,739,698,713,740,709,720,697,727,721,769,720,699,709,710,728,740,731,749,691,713,730,725,731,706,719,698,704,714,711,745,701,732,665,678,669,665,676,676,687,662,680,688,638,666,684,671,665,678,673,673,682,659,673,684,631,659,714,685,704,659,696,690,679,704,670,661,640,703,674,645,673,679,692,700,671,683,626,600,604,592,607,592,583,594,599,617,603,586,613,616,619,593,600,618,592,590,603,594,610,591,609,610,590,600,600,588,610,584,599,610,614,603,604,609,598,598,604,635,561,559,554,560,554,555,572,565,555,564,569,581,547,580,554,553,548,560,567,547,559,575,558,558,577,552,570,575,563,567,555,560,549,562,560,559,558,560,562,555,546,574,576,568,578,572,558,572,563,566,563,542,561,582,576,577,563,563,569,551,569,562,576,575,562,564,565,561,570,574,579,570,566,568,564,553,576,559,552,574,571,564,563,568,548,639,606,603,642,659,657,621,582,571,594,593,635,592,643,594,623,621,590,629,623,599,631,621,610,635,618,639,602,622,598,607,613,605,664,627,590,591,639,624,647,613,588,616,620,554,747,756,738,720,724,706,727,731,738,740,728,750,774,743,732,751,738,723,756,768,731,781,765,744,743,723,734,764,714,733,725,705,732,756,782,752,729,736,720,746,736,730,798,673,683,681,686,672,702,675,689,696,673,683,664,660,673,715,680,680,684,690,671,663,687,704,698,724,694,662,660,698,661,648,669,678,674,677,667,671,669,689,694,651,596,615,585,601,597,587,594,605,592,593,600,588,611,583,599,605,613,608,613,598,604,599,619,581,609,616,589,605,596,596,603,597,628,601,598,598,585,591,596,651,660,670,671,672,648,637,672,687,657,675,678,666,662,671,700,646,676,676,658,677,664,663,686,661,672,664,687,660,679,676,649,664,640,683,683,681,686,651,656,662,673,675,705,609,590,584,601,585,611,583,574,587,605,603,591,595,582,595,592,591,586,575,591,590,587,586,601,589,604,587,578,592,592,597,581,582,587,594,583,583,589,599,595,584,594,582,590,572,545,531,548,513,537,578,525,544,548,564,569,542,526,558,533,521,533,553,539,542,545,537,526,540,553,545,553,557,558,538,532,543,532,538,541,558,533,561,541,558,549,554,549,534,592,753,745,727,771,743,731,763,739,745,715,749,729,737,756,752,751,730,745,699,723,704,705,743,689,722,718,747,727,756,737,760,736,724,751,754,724,758,758,728,725,738,735,730,737,722,741,729,703,721,719,735,715,719,733,733,731,728,720,729,740,729,719,742,757,731,720,721,721,740,733,753,725,737,727,733,743,747,728,742,710,699,678,656,661,677,661,664,653,638,695,679,672,685,648,650,686,663,656,674,656,646,660,650,662,653,652,658,659,684,663,673,661,682,668,662,713,682,661,670,697,686,684,693,715,683,664,646,583,574,583,594,575,592,586,595,582,586,586,554,577,577,573,567,586,580,581,577,597,588,587,579,587,599,579,570,589,608,582,583,569,603,601,570,597,580,592,588,567,587,598,583,548,728,687,713,673,714,714,692,713,700,684,695,697,703,692,699,675,699,708,687,693,689,703,705,713,700,714,691,705,675,714,704,713,708,699,703,704,674,699,671,716,706,725,743,689,682,690,672,671,678,696,676,685,676,682,665,676,669,696,681,675,691,675,689,684,670,668,662,688,683,680,691,689,698,662,693,690,681,671,690,679,684,681,698,692,652,692,724,683,668,713,696,740,760,706,764,718,743,700,769,713,680,719,707,679,698,737,716,708,703,676,697,699,728,700,720,730,650,718,691,681,751,710,673,691,693,714,701,746,646,714,715,710,738,710,706,737,720,700,727,711,714,712,710,704,702,719,726,701,699,696,689,720,720,704,714,709,685,706,734,698,710,691,702,724,705,718,723,687,709,707,724,713,716,686,721,688,690,688,689,714,693,697,678,682,692,720,698,684,717,713,669,708,698,687,679,712,713,678,706,751,691,684,677,697,683,693,707,704,701,699,703,695,698,699,679,686,688,647,667,750,738,642,714,681,674,670,682,706,733,644,702,614,709,653,691,675,741,671,678,677,651,673,669,640,689,648,730,639,691,668,683,655,698,697,626,669,688,737,639,675,683,668,669,661,641,656,665,633,643,647,677,692,655,657,652,629,642,657,624,663,661,651,649,666,670,670,666,639,654,635,616,651,644,670,651,656,639,622,655,677,663,660,642,672,643,671,658,614,647,604,586,593,589,582,571,569,568,575,589,584,600,597,584,554,580,587,582,575,569,584,577,572,575,581,578,581,587,598,572,592,583,570,565,590,563,583,571,576,571,587,593,602,587,582,620,676,684,724,641,673,696,649,681,630,680,669,723,680,633,699,699,742,682,694,721,680,718,709,643,778,705,698,742,672,705,701,725,769,683,733,718,615,725,725,706,715,699,678,708,709,707,717,720,714,682,700,694,714,708,707,719,703,694,702,686,700,688,683,735,692,709,710,714,704,708,713,699,717,685,706,713,706,688,702,707,685,714,724,677,713,619,640,661,667,660,638,622,649,646,651,658,636,651,646,676,635,606,662,620,607,636,646,659,624,661,658,617,649,644,651,640,607,606,623,649,631,688,580,567,580,600,577,582,585,576,595,581,594,599,580,573,602,583,559,584,575,580,585,570,583,570,593,597,588,591,590,590,595,583,560,575,587,584,590,590,559,665,684,629,660,669,665,632,700,601,649,622,661,710,654,717,678,672,680,649,613,702,631,643,658,591,662,639,644,665,639,665,654,702,647,659,633,682,643,708,670,677,638,720,674,678,716,651,656,651,638,644,625,617,688,664,646,645,648,646,623,641,670,622,653,670,635,636,649,649,655,619,660,650,637,637,616,624,660,647,643,661,628,640,640,626,635,647,583,583,588,566,580,581,598,571,587,604,608,566,586,590,586,600,592,586,572,571,593,599,579,586,584,593,574,586,596,585,565,584,589,581,597,580,612,584,592,581,596,593,591,582,624,518,512,528,528,527,526,525,530,528,523,531,528,521,512,529,535,545,527,531,529,541,532,550,524,530,544,525,529,521,542,540,530,521,536,537,538,503,526,512,523,534,528,551,531,538,520,542,541,531,528,525,547,515,546,536,544,533,552,534,528,533,532,536,532,522,527,534,529,540,535,519,519,536,526,536,547,527,537,535,535,540,559,552,559,556,552,559,555,537,550,555,548,543,552,541,559,542,549,537,566,549,542,550,552,549,559,541,547,549,546,535,544,538,545,538,543,550,538,548,545,543,540,551,543,540,680,639,662,608,672,669,613,655,624,609,662,609,618,681,635,665,683,629,703,679,649,644,697,690,652,622,683,636,646,611,650,675,617,635,635,622,639,669,581,630,634,632,630,666,573,633,576,578,591,582,588,570,586,591,587,582,602,567,587,606,592,591,594,604,571,601,577,608,579,590,603,602,595,594,580,564,575,602,598,576,574,582,589,571,575,600,587,574,577,591,619,589,646,617,701,614,636,639,611,614,622,611,591,573,610,637,632,610,581,597,667,663,603,608,584,644,631,600,632,602,602,620,661,660,614,607,643,631,565,576,577,561,556,558,575,578,571,578,592,562,556,568,589,595,585,565,553,576,568,568,587,552,566,570,569,564,594,571,544,591,577,556,575,580,582,562,586,579,594,593,557,562,550,574,573,549,562,539,551,560,577,564,550,560,566,548,569,545,535,553,558,534,543,549,541,578,535,552,554,579,555,553,547,569,559,558,573,564,534,545,558,546,552,532,582,566,541,557,546,568,565,564,560,549,556,572,576,571,551,547,570,568,551,555,580,549,568,568,555,555,556,564,577,572,583,566,564,570,568,586,580,564,561,553,549,578,569,556,557,572,549,572,556,566,561,572,563,689,700,708,676,704,672,691,693,710,712,674,723,696,689,707,720,675,682,687,675,708,693,688,679,704,705,688,700,696,694,695,716,684,686,701,706,687,694,699,684,688,685,698,640,643,658,660,677,658,663,665,671,655,670,664,672,668,669,645,649,672,705,665,673,663,657,670,663,662,681,667,678,658,639,667,679,666,659,681,662,580,593,618,608,570,558,580,583,610,571,617,603,600,562,617,575,585,638,578,621,632,596,562,587,575,600,610,597,582,602,583,608,600,599,601,581,605,568,574,597,587,592,605,585,599,652,683,668,681,676,668,694,666,654,687,683,693,698,673,678,684,700,690,678,681,662,678,682,682,697,691,707,693,663,684,701,691,691,687,706,670,675,683,690,653,655,665,674,658,652,657,643,668,668,671,667,660,660,662,672,657,664,673,673,667,657,679,662,655,670,650,654,679,676,664,667,678,669,647,657,652,643,662,662,662,668,644,670,671,667,694,643,638,646,634,625,661,648,644,626,619,621,609,655,655,622,652,617,626,634,663,621,621,627,634,653,607,615,646,643,669,638,642,632,653,624,648,657,667,610,650,631,632,661,660,631,649,656,651,627,629,621,612,694,740,717,715,704,733,716,730,745,765,711,743,765,701,733,737,695,718,718,733,734,752,731,745,740,698,736,755,742,726,733,671,713,759,722,761,719,728,734,727,775,719,704,695,687,712,696,732,688,722,728,699,725,747,735,696,762,738,707,740,712,737,694,734,699,705,680,751,705,707,748,698,701,748,749,744,691,697,738,711,752,718,702,723,659,644,646,652,635,632,657,663,677,641,646,654,658,652,646,658,644,656,642,627,651,684,649,653,648,630,638,628,677,655,641,652,664,635,678,670,657,621,645,640,688,625,662,634,682,654,604,665,647,603,633,632,610,598,613,638,618,648,631,630,663,638,600,683,602,635,665,625,624,654,618,602,634,607,657,638,624,667,578,672,614,604,654,638,610,625,613,657,615,611,677,669,674,648,683,676,666,673,661,682,673,667,668,665,674,674,650,658,676,653,662,666,669,650,661,672,677,667,678,671,667,670,694,683,655,667,667,663,663,685,657,641,572,576,550,581,597,591,589,556,569,573,582,601,571,570,554,572,579,593,580,580,586,548,566,578,580,570,559,583,574,572,552,567,588,569,566,558,588,592,583,618,567,569,567,565,546,574,574,575,556,595,564,570,565,577,583,550,566,587,559,572,574,575,569,571,568,561,563,560,560,580,571,580,574,585,572,571,577,588,595,571,557,556,568,573,570,565,558,561,572,568,553,570,563,559,558,559,556,557,557,551,560,565,577,561,566,560,558,559,559,561,556,564,559,558,575,562,542,576,557,561,557,551,567,564,540,573,573,556,569,575,563,587,577,577,581,567,563,578,570,571,576,565,558,583,565,580,560,569,576,574,556,581,573,569,574,573,566,571,591,574,580,569,585,557,574,576,561,604,542,547,556,538,550,540,559,532,557,534,563,557,558,544,559,562,539,553,554,550,550,553,556,554,546,544,554,547,554,547,552,558,533,571,550,550,542,550,553,544,543,553,530,727,762,721,740,704,733,712,702,729,750,730,745,753,743,699,716,779,718,740,723,727,738,736,744,708,727,732,756,727,749,740,721,723,707,717,724,709,734,748,716,684,755,707,704,698,706,708,703,735,710,714,690,707,690,691,734,692,708,716,717,691,691,674,692,686,684,701,702,741,708,683,700,699,719,730,707,703,700,697,694,698,703,667,711,712,715,662,694,697,696,709,693,710,671,670,693,736,665,716,711,694,685,660,700,665,695,672,661,709,686,696,676,711,659,649,715,671,698,687,666,680,734,694,683,658,745,580,595,602,587,598,630,586,603,617,599,616,576,598,623,617,591,594,571,595,597,603,608,589,621,592,575,574,644,592,575,613,590,592,608,585,629,602,603,601,566,579,537,569,597,641,585,629,602,618,617,615,636,543,539,604,605,611,554,573,567,628,597,626,654,561,585,603,563,599,616,572,532,588,620,591,624,592,613,585,597,572,588,535,634,565,545,553,556,559,542,543,544,558,563,569,552,531,570,546,552,571,567,531,541,555,536,567,553,570,544,552,544,548,555,548,560,556,540,542,540,551,556,546,551,516,542,567,565,547,537,544,557,556,518,567,542,572,558,553,539,559,553,560,553,550,541,542,550,559,569,560,539,544,548,558,554,563,550,556,551,569,559,542,547,543,565,572,575,557,519,553,543,540,558,545,537,553,548,571,548,539,554,561,549,561,552,544,534,551,551,569,546,549,546,552,554,544,552,564,547,562,548,547,551,544,538,535,548,550,551,547,550,563,527,694,717,705,749,798,775,723,724,771,775,718,716,695,761,768,770,745,771,746,749,735,786,782,727,701,749,767,748,784,722,664,717,703,772,706,750,728,743,785,715,734,750,692,732,766,761,718,643,715,739,752,748,712,746,731,730,699,734,719,731,722,726,723,737,728,730,726,717,711,721,677,715,724,698,688,712,726,701,723,707,726,722,734,723,718,709,742,735,716,719,689,677,683,690,711,704,693,684,705,712,727,684,724,681,708,669,705,688,691,718,670,703,672,672,719,718,710,705,707,731,707,713,708,708,685,676,718,707,682,652,642,659,647,639,661,673,648,653,614,646,634,635,681,646,666,638,631,639,651,643,636,612,640,610,633,629,652,638,645,636,646,657,636,628,641,676,639,655,655,637,671,641,686,587,601,580,593,599,600,610,594,595,601,595,595,591,604,597,590,577,620,591,605,592,593,606,606,599,608,601,598,594,597,603,598,603,616,610,607,599,589,603,604,595,610,599,594,594,596,587,603,562,550,553,559,571,559,558,553,559,565,546,555,546,562,558,562,548,544,556,564,555,556,550,558,563,551,561,564,558,549,548,564,550,571,554,558,556,562,553,547,547,575,552,565,560,576,618,708,692,672,676,677,698,682,668,653,682,672,679,710,660,690,655,678,676,672,666,695,693,664,669,697,675,697,679,666,703,639,630,680,638,652,659,682,659,657,613,617,616,622,611,616,625,629,607,621,614,638,600,607,626,624,617,618,631,617,615,600,625,616,623,626,611,625,616,618,618,616,614,616,621,605,625,603,625,598,611,638,657,677,612,664,640,628,605,645,577,555,617,589,640,574,586,570,568,577,594,591,672,599,614,608,590,616,615,550,643,608,643,591,607,623,592,622,620,572,601,614,609,624,714,707,705,702,699,714,703,707,710,690,710,696,679,722,705,710,681,694,707,694,709,721,716,694,693,699,686,699,676,707,714,713,692,692,695,717,722,695,708,692,699,746,629,639,620,593,643,656,639,640,589,592,663,629,652,647,597,668,672,610,645,681,631,635,659,600,614,700,622,639,611,631,600,565,669,611,650,668,576,624,618,625,654,645,629,654,628,633,596,658,601,589,607,620,600,627,594,634,591,623,586,612,622,611,595,604,615,624,608,628,596,596,615,607,586,606,615,613,611,629,600,602,620,626,596,605,601,596,596,613,591,601,601,577,561,580,591,581,596,579,582,580,567,584,581,582,587,593,584,572,583,564,578,589,577,577,573,584,580,573,588,579,595,580,576,572,583,577,581,586,579,581,580,596,561,548,549,552,560,573,563,548,557,544,548,550,543,539,557,549,551,569,552,557,548,549,552,553,546,542,552,563,539,553,537,561,558,554,556,549,557,543,550,555,587,581,586,601,612,596,586,602,610,604,591,594,591,576,605,592,584,582,598,584,594,583,605,582,595,576,583,599,584,581,593,587,603,579,589,604,608,605,587,585,592,601,571,564,710,683,677,694,710,702,707,682,704,692,664,706,664,680,711,691,687,699,687,691,686,696,695,664,677,694,694,687,679,681,691,716,666,674,687,692,697,728,685,675,668,666,706,694,697,632,618,620,591,612,627,611,626,603,605,604,592,623,580,615,601,573,607,580,614,590,605,625,638,598,591,615,588,598,596,625,603,585,617,628,605,671,685,586,659,651,702,685,668,703,631,654,612,660,656,634,619,623,679,645,623,621,661,660,634,648,605,628,670,701,620,673,654,599,655,679,623,655,611,605,658,667,651,671,646,644,662,647,684,651,659,645,648,674,664,649,655,661,646,668,666,653,678,672,662,647,682,655,667,664,653,659,669,659,672,660,636,667,664,652,659,657,663,679,628,620,618,602,627,630,623,620,646,632,620,627,639,645,625,632,625,632,637,631,634,622,629,654,623,616,612,625,631,636,597,619,633,602,616,607,613,634,637,651,640,617,657,628,581,589,589,583,576,589,579,610,595,585,593,574,602,590,584,582,571,598,587,592,584,567,580,581,588,572,592,614,576,598,601,595,582,564,596,591,584,610,609,622,589,598,595,596,584,617,618,604,605,610,598,611,631,616,615,621,607,601,614,612,591,603,624,595,603,621,598,619,608,633,629,629,612,603,632,629,617,604,602,609,626,663,664,666,636,675,677,650,658,654,699,651,658,668,638,683,642,665,659,664,674,638,690,642,671,664,667,691,658,642,679,647,663,664,652,643,633,679,664,660,679,646,646,662,647,716,676,648,638,669,661,658,638,655,670,667,656,669,662,672,654,661,655,662,661,659,650,662,669,663,672,646,665,671,641,660,671,673,653,640,646,652,662,664,653,698,677,710,667,660,707,698,667,688,683,659,696,682,682,703,702,726,663,668,725,702,637,692,680,679,707,683,653,678,643,672,692,704,692,705,695,697,682,716,671,690,699,702,677,652,628,640,629,640,618,617,613,635,613,595,616,611,645,608,619,607,616,600,649,616,601,650,615,612,636,651,613,613,622,634,597,621,624,625,623,640,628,639,585,568,568,577,574,582,568,573,568,575,579,598,574,585,584,582,579,585,564,574,584,584,589,595,571,579,580,576,586,590,562,565,583,563,580,589,575,571,574,577,581,555,554,564,538,559,547,548,555,560,552,542,548,557,543,548,555,553,552,540,561,549,563,557,555,541,565,570,552,550,566,562,567,554,551,560,551,553,554,558,548,555,549,568,558,558,563,567,566,559,556,565,547,560,554,564,570,562,556,574,578,561,566,576,554,574,582,569,568,560,559,584,570,556,556,556,565,554,551,572,563,558,550,564,560,548,567,533,593,587,602,599,591,585,593,588,601,598,586,601,588,610,588,598,596,586,578,605,596,608,599,605,594,603,584,601,591,607,587,595,593,599,599,588,581,591,584,594,592,588,585,592,600,601,603,596,575,563,576,580,583,570,569,576,568,577,572,573,571,572,557,567,577,557,567,579,557,564,558,581,567,560,559,551,570,571,558,573,563,564,555,575,581,573,573,570,571,566,559,637,641,644,615,632,642,593,588,651,641,662,634,611,635,660,652,675,672,643,646,673,656,648,630,623,670,643,656,633,612,667,661,638,626,617,640,622,627,625,643,689,645,678,667,661,564,692,680,677,677,673,678,651,682,684,678,670,676,685,696,668,695,664,685,685,697,673,686,682,691,673,667,659,659,695,696,702,691,674,677,671,689,682,715,775,794,783,725,746,780,731,776,765,766,726,738,716,778,789,710,716,746,739,746,732,727,737,737,754,759,780,745,750,726,763,778,756,708,765,697,762,736,771,748,732,703,696,712,699,753,696,737,728,720,717,702,701,738,721,713,702,727,701,707,747,724,693,724,711,744,719,701,708,711,743,718,725,716,689,749,625,634,639,638,645,642,650,616,635,648,656,653,616,653,661,643,656,667,624,647,660,643,634,661,619,617,619,633,651,624,663,654,652,668,626,632,646,667,660,627,736,734,735,735,706,724,667,754,762,735,693,724,731,723,694,755,717,735,692,738,731,665,737,673,753,749,761,687,679,722,715,712,682,759,705,682,745,752,676,736,731,751,710,680,738,765,611,695,708,716,722,705,703,711,711,693,705,708,703,680,700,691,693,716,706,722,715,694,726,712,715,707,697,682,700,721,717,733,693,719,689,691,723,679,711,675,761,656,670,649,663,666,674,660,683,661,660,690,687,680,672,665,670,654,652,670,663,694,678,643,661,647,688,652,636,679,682,643,693,661,674,644,649,641,663,699,658,688,660,645,658,641,643,651,655,642,667,655,638,639,647,640,634,653,651,655,664,652,636,631,656,646,643,652,645,656,643,645,650,665,644,632,640,621,663,647,645,654,634,636,645,632,646,644,648,645,644,648,654,642,635,611,631,612,616,601,608,609,607,623,613,625,614,594,621,628,615,606,592,628,615,606,613,616,616,595,604,612,615,618,600,610,615,605,636,598,633,590,618,597,623,606,631,649,583,586,583,586,575,575,563,573,601,581,596,559,579,588,583,582,577,559,582,573,581,589,561,566,579,575,571,591,566,583,584,576,577,599,579,576,583,582,580,567,556,573,565,588,589,585,600,555,549,552,551,538,562,555,546,554,559,533,546,547,543,552,550,540,538,541,551,543,554,548,552,543,522,536,552,538,524,539,551,550,546,554,545,551,535,560,545,549,574,603,602,613,610,649,595,618,620,619,638,613,649,612,633,609,604,603,643,626,620,600,637,610,594,644,660,620,624,630,603,670,624,585,566,600,685,623,605,540,636,566,562,600,598,593,601,583,602,595,597,574,590,592,599,601,582,596,588,582,573,585,582,602,584,590,590,592,574,584,601,583,599,587,580,562,582,592,594,603,583,582,592,601,594,582,590,584,558,636,675,669,634,624,593,673,567,600,698,683,607,595,618,660,627,640,637,615,572,622,626,648,652,628,636,634,696,642,632,563,680,623,689,687,587,583,679,593,682,579,596,577,594,585,582,590,582,583,572,571,583,598,591,572,588,586,596,575,588,568,582,592,586,586,595,583,579,567,587,595,605,589,573,575,562,594,579,571,598,575,564,580,581,583,608,678,674,638,615,725,648,686,678,670,649,648,680,743,718,634,696,701,650,642,660,698,693,672,657,744,655,712,700,676,708,648,674,635,643,685,669,704,702,651,552,675,665,669,683,668,693,664,661,677,662,669,659,683,677,675,686,671,652,672,640,674,654,643,674,689,655,664,675,680,679,684,660,669,662,666,647,681,673,682,678,678,690,677,665,669,636,688,695,721,676,644,623,675,693,715,656,702,676,665,667,682,700,668,658,669,676,702,666,665,684,699,701,711,649,668,670,675,654,654,634,655,651,703,661,655,649,674,653,675,672,709,626,613,620,609,606,612,647,628,611,614,605,598,593,616,605,601,623,604,631,625,626,636,617,623,593,627,628,629,628,625,612,613,636,614,617,636,608,614,608,620,599,662,582,570,586,574,578,574,565,571,571,585,573,575,583,569,567,589,583,583,568,590,587,583,585,573,572,582,577,575,569,579,587,590,574,570,585,569,566,566,570,580,573,569,623,654,648,661,644,624,650,657,650,655,595,655,616,609,661,625,608,652,635,649,667,651,698,657,637,630,667,655,617,660,617,647,640,650,638,618,678,684,686,681,670,669,668,687,675,672,673,677,667,684,675,670,650,667,658,660,673,670,674,681,678,660,700,678,675,688,685,666,673,678,702,655,682,674,661,680,681,672,686,728,691,688,739,726,723,729,687,711,712,701,710,727,748,681,723,733,712,726,717,716,688,742,705,716,717,692,707,746,739,699,716,677,727,740,762,709,722,674,719,744,737,725,665,634,646,674,664,673,675,654,633,626,689,631,643,648,657,663,652,642,640,653,667,640,668,668,659,645,681,643,633,632,658,647,662,642,635,675,646,608,666,652,669,625,626,595,602,611,606,612,590,612,607,589,602,617,616,605,600,606,598,603,609,594,618,606,617,613,624,607,618,615,608,606,609,605,597,603,630,609,584,598,576,570,576,538,578,565,555,577,578,564,554,556,561,553,566,558,568,567,576,556,555,552,563,559,565,558,574,558,575,565,567,570,572,565,567,554,577,561,554,570,558,563,565,562,553,612,614,621,622,601,593,612,610,602,600,619,614,613,612,630,608,604,613,607,618,603,607,626,606,607,615,599,596,594,595,613,625,611,624,620,610,618,618,598,617,608,635,601,620,634,649,641,629,661,645,637,658,624,651,640,635,647,660,652,629,630,640,632,651,628,647,655,642,639,654,658,638,635,633,629,625,647,680,649,660,640,640,631,667,653,661,655,660,634,605,736,760,786,712,750,751,701,726,770,732,733,743,759,741,787,727,750,739,731,726,735,764,770,770,750,670,765,737,739,778,748,688,732,712,743,711,719,806,714,718,718,709,722,713,731,679,715,720,720,723,701,719,704,736,726,729,717,697,700,706,715,708,735,668,721,711,713,737,696,736,729,693,715,694,681,692,709,702,754,747,729,717,648,644,652,631,682,636,642,650,617,639,655,652,640,661,634,655,651,653,660,619,631,631,654,661,614,659,646,639,641,639,635,630,632,635,635,626,661,651,656,656,617,564,682,642,671,595,648,676,609,674,637,596,610,601,585,596,648,648,645,600,620,598,692,687,643,595,627,640,531,647,628,631,651,625,585,669,650,599,618,632,604,652,559,600,574,595,578,593,578,554,576,584,570,580,588,577,571,558,560,578,579,596,564,587,584,588,590,579,592,578,572,564,601,582,583,561,556,581,599,550,559,574,562,586,588,565,609,617,646,566,651,639,631,598,641,630,688,592,629,650,577,624,594,680,644,660,601,654,609,647,616,659,625,637,615,603,628,671,584,643,666,608,619,603,639,529,584,593,578,559,570,605,573,578,587,577,567,571,605,563,572,569,556,574,570,577,578,600,570,571,587,584,590,598,592,571,599,564,562,579,563,577,585,578,576,550,586,542,579,548,574,563,556,581,579,602,562,568,567,554,564,567,557,592,564,578,564,565,563,571,566,590,575,577,581,569,571,554,588,538,595,581,586,563,563,595,586,573,560,566,561,530,669,666,681,675,667,666,651,662,652,659,662,646,687,663,654,664,656,683,655,655,647,684,658,663,663,680,665,648,656,661,659,662,681,646,668,643,671,662,762,752,715,774,773,747,764,761,761,798,764,786,735,771,715,732,761,722,755,730,742,751,759,790,757,741,740,737,750,754,787,763,715,755,755,742,716,739,749,759,773,721,748,735,746,749,765,688,707,743,708,687,734,712,664,712,792,681,707,730,722,718,723,698,727,681,736,730,736,701,751,730,669,712,711,711,725,718,703,737,732,735,699,723,724,671,686,643,653,691,676,689,629,659,655,672,688,672,683,624,644,656,671,671,656,640,654,661,692,663,671,670,669,677,681,649,679,650,671,684,650,674,663,665,649,668,643,679,616,595,593,600,596,605,617,607,585,591,601,611,592,586,596,598,619,597,616,613,593,600,605,581,603,595,608,598,596,592,619,579,585,583,609,592,603,614,597,615,593,581,584,587,579,587,584,574,587,589,582,574,583,594,588,591,560,566,574,588,581,586,585,585,555,565,584,587,578,591,567,577,597,567,585,582,573,591,586,579,574,587,581,571,583,562,572,608,609,637,610,629,619,646,650,626,646,620,612,612,587,619,653,629,603,600,644,616,600,635,631,620,627,616,632,637,586,616,603,602,636,610,591,628,589,624,575,786,791,792,789,781,721,745,794,806,789,779,796,767,758,757,800,803,800,756,773,771,789,747,781,791,769,762,730,754,762,810,774,781,776,782,790,782,786,805,750,788,771,791,783,764,775,759,786,840,712,723,730,717,731,755,701,724,732,704,739,734,717,735,745,734,723,737,706,772,719,738,729,737,720,712,727,694,753,688,717,715,720,734,727,722,710,709,757,688,718,695,674,681,670,681,706,676,686,676,706,660,651,675,682,659,667,672,697,675,670,665,669,664,672,670,681,663,652,675,689,683,658,703,706,681,672,667,703,670,674,695,684,670,639,660,636,636,643,659,672,644,648,660,651,647,643,648,657,650,655,642,640,652,660,642,655,623,653,657,664,637,647,647,653,666,668,643,647,652,657,654,680,729,728,710,779,748,742,783,790,729,736,724,762,724,751,766,716,721,736,764,732,727,730,725,716,740,773,741,747,753,715,736,724,768,750,741,774,716,734,711,647,683,677,657,703,635,667,661,686,674,691,665,670,673,668,696,676,687,656,650,693,692,638,673,642,679,667,647,660,628,655,637,667,694,659,676,598,673,681,684,655,654,639,531,528,557,526,537,547,560,529,558,566,582,526,554,517,564,534,559,571,556,546,563,572,583,527,550,544,568,531,558,574,585,536,545,529,575,525,534,577,563,537,524,547,532,523,525,535,519,530,518,526,529,539,517,537,532,531,512,537,531,526,520,534,535,528,528,523,517,518,513,534,530,530,528,523,535,531,523,536,524,524,525,528,636,636,667,638,647,648,668,640,623,650,651,627,634,632,656,635,668,647,652,638,632,646,655,650,624,643,631,650,656,630,643,648,642,638,656,638,641,638,645,617,644,636,613,570,563,554,568,574,545,564,565,547,562,574,557,554,587,582,555,557,562,574,554,542,559,558,568,565,574,542,575,555,559,542,564,575,592,545,563,569,583,540,580,565,552,552,560,552,572,553,566,600,537,563,540,563,569,525,572,562,553,550,568,569,562,562,549,540,550,542,582,571,551,562,552,543,558,536,575,545,551,559,571,533,561,556,579,539,563,558,564,564,570,555,560,560,564,553,543,536,555,559,565,556,549,557,558,551,562,553,552,561,540,569,575,573,557,554,555,561,547,555,566,549,550,567,565,569,564,550,562,553,562,559,577,593,578,574,599,588,589,577,588,598,598,578,613,596,600,581,582,575,589,587,561,605,589,589,599,582,610,592,609,597,587,585,590,586,600,568,587,583,587,588,583,603,557,594,599,614,616,608,585,603,604,598,618,603,593,611,604,595,604,592,624,610,636,595,589,597,581,591,593,616,618,584,597,610,604,576,628,604,611,579,624,613,623,598,582,560,557,550,596,581,540,572,555,566,562,571,567,569,568,565,554,570,578,569,568,570,554,591,549,577,548,568,545,580,567,562,566,576,558,546,582,581,569,597,614,602,578,569,591,592,592,584,588,585,609,594,592,621,581,577,590,578,584,583,576,606,590,603,577,614,581,600,593,598,585,593,597,579,596,605,615,600,607,605,579,600,602,596,570,598,601,583,586,593,595,600,614,621,631,599,624,625,608,632,628,623,640,618,609,613,607,630,633,647,615,609,631,590,632,606,634,627,599,622,627,629,599,622,639,625,628,662,738,731,728,669,697,710,681,698,706,721,696,725,713,705,649,686,733,687,714,686,722,738,714,670,699,699,700,712,704,708,693,682,695,710,711,697,704,738,721,675,741,680,667,681,687,722,753,634,624,619,602,631,623,609,615,586,597,602,593,609,617,623,598,604,637,606,628,595,625,648,606,599,632,617,625,626,599,606,618,626,595,605,610,643,610,635,617,634,613,616,615,633,567,598,597,590,556,590,594,593,594,595,589,582,573,587,564,574,583,593,537,599,606,614,589,607,580,580,575,593,578,605,596,587,584,559,594,602,575,579,577,561,602,525,659,663,664,666,671,682,678,660,666,637,659,674,672,663,682,671,684,679,664,677,665,674,665,659,671,671,646,654,669,682,661,645,654,663,656,695,669,674,677,665,662,663,665,658,659,648,780,716,736,720,745,732,736,744,789,758,779,725,808,712,775,741,784,747,754,680,721,741,750,762,729,746,717,740,731,731,754,723,757,769,791,731,729,734,720,773,732,698,766,701,747,709,719,736,717,702,677,724,732,752,727,703,757,701,704,696,734,684,737,708,728,716,693,715,721,708,730,710,732,738,757,678,697,724,733,716,742,675,730,716,711,757,702,722,706,692,674,641,671,634,653,631,656,633,664,661,635,659,634,636,660,668,644,631,674,667,672,687,672,672,623,622,633,646,641,635,652,630,649,625,645,646,657,662,627,608,577,568,567,570,551,567,575,569,585,594,566,567,574,574,593,568,568,567,560,567,566,574,573,572,575,578,577,573,579,556,553,567,573,562,554,559,573,582,580,576,568,560,564,568,559,637,666,684,660,694,692,655,686,712,666,652,709,631,682,671,672,635,682,645,689,657,688,658,620,653,597,674,663,655,650,648,688,670,714,698,679,684,711,695,668,693,612,705,705,707,685,714,686,722,702,700,687,717,701,708,703,730,700,712,704,691,716,701,693,689,725,685,723,687,717,706,700,711,704,725,725,700,702,668,703,697,691,682,698,694,724,707,729,684,692,713,708,704,683,690,694,699,705,707,708,665,680,719,711,709,686,716,714,688,691,690,724,708,696,692,722,706,699,702,704,693,704,662,692,701,740,693,682,671,746,680,679,687,678,691,675,635,718,691,672,697,686,676,643,723,675,690,666,685,679,707,700,617,662,703,682,708,678,762,624,679,706,661,696,706,706,682,669,661,642,650,648,651,663,688,637,659,650,649,648,629,661,648,650,659,668,658,648,663,670,639,659,649,644,658,654,648,679,647,651,653,676,653,648,656,669,628,641,689,643,669,652,665,659,674,679,660,673,662,647,623,628,688,691,653,701,655,673,655,671,684,658,705,671,692,695,680,677,692,689,691,657,700,671,666,670,646,731,612,600,607,592,619,573,617,597,614,632,607,613,604,609,618,598,600,600,618,614,612,608,617,596,592,595,628,616,618,630,613,627,600,610,604,604,595,642,601,611,596,598,597,647,653,579,596,616,618,650,652,561,619,631,627,582,615,590,585,595,644,626,614,595,633,583,624,605,579,603,556,642,597,572,566,640,640,606,633,614,544,548,589,588,632,582,582,623,646,645,643,662,685,641,669,676,659,647,642,697,634,663,640,672,663,678,679,677,662,650,667,676,642,634,661,691,672,650,650,668,694,674,642,683,695,661,639,695,620,555,568,585,620,577,599,579,573,577,587,600,574,592,558,570,589,574,560,594,558,604,563,582,584,570,594,603,576,602,596,594,588,564,577,592,566,592,598,597,593,561,599,636,586,588,553,648,571,579,565,587,586,582,571,562,582,572,562,587,563,588,578,575,588,610,577,579,589,560,553,572,570,558,580,586,563,557,575,575,578,578,561,584,554,579,566,580,571,577,585,573,616,594,620,626,592,616,589,599,610,603,603,582,610,587,588,593,627,603,594,611,622,611,586,593,616,594,615,607,605,641,588,606,613,617,594,597,618,624,606,599,590,626,589,604,609,589,568,578,563,568,576,590,558,581,576,552,580,586,566,565,553,559,567,584,582,572,583,591,571,555,583,562,578,575,574,568,562,551,568,592,548,575,588,564,567,574,588,573,571,556,567,578,607,682,655,688,655,661,659,660,678,656,687,660,670,663,683,687,635,660,666,660,689,668,663,661,664,651,662,671,661,664,670,673,674,661,641,664,668,676,631,674,678,677,672,669,673,660,656,702,643,649,664,677,627,655,682,637,682,654,655,664,653,642,679,672,693,673,656,686,667,672,691,655,651,659,673,678,660,667,632,643,648,662,651,662,638,721,710,693,715,694,732,679,687,667,675,709,699,699,693,688,686,696,703,706,681,691,705,699,712,684,707,711,687,701,705,690,712,698,679,686,729,715,689,712,697,700,716,662,706,732,707,670,681,709,660,666,708,703,703,698,775,678,710,723,759,671,719,659,686,718,704,725,677,744,669,700,715,709,679,743,701,759,666,682,707,710,688,719,714,691,696,701,668,654,790,739,705,711,679,735,737,705,748,706,723,722,702,715,735,698,727,728,736,704,719,738,742,718,696,727,728,701,702,746,711,735,724,718,669,715,754,704,732,734,748,708,676,724,707,730,725,705,693,737,746,717,725,702,741,692,727,716,735,710,732,727,759,748,695,730,720,709,730,700,699,732,696,739,743,743,708,723,672,688,661,698,707,732,729,702,746,749,722,709,691,691,704,678,695,672,685,659,656,697,672,651,657,657,667,657,691,678,685,686,656,670,666,685,693,663,678,674,666,668,689,663,678,674,664,658,654,677,677,661,671,686,689,684,658,680,650,636,654,636,656,636,656,650,662,650,668,657,645,663,644,659,644,629,646,659,655,633,635,648,655,633,642,639,647,644,631,640,635,656,631,640,636,640,632,648,637,617,582,595,595,616,605,594,596,592,594,595,581,599,600,586,591,595,605,588,585,590,591,565,590,585,601,582,613,602,607,575,586,590,601,599,577,587,589,591,668,621,687,644,696,653,730,660,669,686,655,673,676,665,649,677,625,648,685,660,682,630,671,677,684,725,661,624,684,699,668,707,694,662,637,645,695,668,631,704,600,637,608,602,599,604,592,609,643,628,604,620,598,607,614,633,615,625,624,613,603,606,639,626,629,595,611,611,647,599,606,625,599,620,619,615,608,635,604,637,615,612,628,636,622,590,649,609,569,638,672,621,618,650,624,676,642,641,679,670,700,743,685,740,704,645,658,642,643,686,712,643,633,642,647,633,659,643,703,636,684,708,731,681,688,582,592,579,593,610,650,641,691,669,639,697,730,737,717,711,698,733,719,724,702,761,693,718,714,716,712,726,706,727,730,715,723,712,732,733,683,696,717,715,715,722,696,702,722,731,695,670,734,732,700,705,720,706,702,702,691,707,699,666,669,684,697,703,719,683,686,691,719,720,711,711,690,698,696,688,719,735,715,695,709,727,724,717,690,698,667,705,656,682,726,720,678,672,693,683,703,652,636,611,631,640,610,634,659,623,647,632,669,639,659,600,598,648,626,624,625,649,659,610,640,633,634,684,630,631,618,640,644,679,647,638,626,617,624,668,636,635,626,639,669,684,634,658,557,650,522,591,563,689,643,612,575,625,622,637,605,624,630,659,583,635,605,633,612,643,680,612,643,645,611,640,671,638,709,592,649,610,585,649,602,624,656,602,628,661,618,629,700,693,697,711,685,681,697,684,685,679,690,700,697,657,696,706,709,688,707,730,711,700,717,706,736,693,717,696,685,672,721,711,718,682,724,704,673,689,718,688,726,687,681,702,678,656,668,657,676,660,655,653,696,671,677,671,636,692,669,661,673,675,680,687,646,707,660,654,663,683,664,688,689,657,675,681,655,695,673,688,683,664,668,666,650,667,663,670,650,636,638,657,639,659,650,657,644,645,644,633,638,663,654,653,646,673,637,647,655,637,665,647,661,653,632,624,645,644,646,662,636,647,649,630,647,667,635,653,659,658,638,748,737,710,772,759,745,753,765,764,740,754,742,755,767,756,764,762,771,744,718,715,727,758,722,727,760,707,739,739,741,792,721,728,704,765,749,695,736,737,672,659,677,691,673,627,661,676,710,687,665,670,671,680,678,652,649,678,652,692,679,658,703,666,697,643,658,680,666,661,645,691,664,699,648,663,669,692,711,679,692,676,667,639,745,622,611,635,673,608,668,609,639,660,622,589,678,683,636,627,628,636,656,673,677,642,643,667,673,645,627,634,640,670,686,653,660,637,666,651,612,604,645,616,635,650,650,667,658,668,636,597,541,545,545,565,557,546,565,563,565,551,556,557,558,564,555,556,564,562,567,558,538,550,553,543,541,553,558,547,553,554,536,555,546,558,549,549,559,563,571,551,556,583,568,581,579,565,553,572,562,575,581,573,541,572,576,573,564,550,576,573,569,539,551,560,574,578,561,546,572,565,571,578,586,586,569,560,557,557,561,538,610,627,601,608,613,591,612,595,580,611,608,612,597,621,615,617,615,608,608,624,605,613,601,595,616,607,621,603,618,620,602,613,616,599,620,610,616,612,598,622,599,606,609,647,616,604,629,622,634,605,625,616,622,602,600,642,609,625,625,656,638,629,614,635,622,613,640,629,604,610,609,611,602,625,628,608,636,612,614,608,645,636,634,637,623,625,626,635,615,566,574,589,573,574,560,577,576,592,569,592,581,581,571,579,566,604,567,594,586,591,557,571,593,569,565,581,591,567,576,565,586,558,578,571,537,538,547,552,535,543,535,548,530,538,555,526,537,536,532,550,537,534,543,546,546,539,539,544,535,548,534,559,550,541,536,538,535,549,535,539,550,533,529,525,560,521,524,532,519,535,515,518,541,516,512,542,528,519,530,528,526,513,528,516,514,523,518,528,529,526,541,520,513,526,527,522,525,525,520,528,518,522,540,620,596,605,597,660,640,619,627,619,624,617,579,602,672,616,611,621,621,637,641,598,610,620,615,612,587,608,622,633,632,582,610,593,630,633,576,653,606,609,570,650,603,634,623,660,663,604,589,612,604,603,599,605,605,610,588,601,600,584,611,598,602,601,596,609,595,603,601,610,609,600,599,601,594,618,609,603,601,608,610,592,621,594,610,593,602,600,600,623,580,577,585,590,580,588,591,582,565,593,561,578,577,586,579,575,589,583,576,575,573,577,574,583,596,577,593,579,581,559,581,574,572,585,583,577,577,574,570,567,576,583,549,551,553,569,555,563,556,546,554,561,572,546,555,555,549,553,535,551,564,560,556,552,535,581,559,553,554,553,558,551,563,552,558,556,552,557,556,557,548,548,522,586,604,572,579,591,587,549,581,584,568,581,587,579,587,577,575,560,593,586,574,576,582,590,601,600,583,591,579,576,562,587,575,581,590,585,581,584,568,596,570,584,570,593,589,607,555,556,550,541,560,549,549,541,554,544,549,540,537,566,547,548,541,557,557,543,548,551,554,554,553,550,546,553,551,559,551,559,556,563,538,556,544,556,549,548,553,560,554,563,527,577,600,617,593,584,598,605,602,590,596,628,585,593,605,597,615,612,603,613,616,592,601,613,595,564,592,592,586,615,604,595,588,600,578,598,589,600,615,595,596,595,607,600,610,598,565,597,623,618,605,609,629,596,643,626,620,620,592,633,617,636,611,605,610,609,629,618,606,610,589,604,613,611,618,627,585,602,616,621,605,622,595,610,597,586,615,613,585,596,612,594,596,591,620,607,616,610,609,604,589,629,604,609,614,605,609,598,619,599,625,618,602,597,599,589,615,585,603,611,595,610,616,573,587,601,604,597,583,596,580,618,577,582,571,573,564,569,577,570,576,572,574,590,581,590,574,577,571,572,588,600,588,582,558,579,585,562,583,589,571,579,593,565,576,578,574,576,558,579,580,583,590,567,573,583,575,579,569,586,714,664,672,680,665,682,675,661,672,666,679,659,666,646,660,653,655,661,661,702,669,693,686,671,693,666,639,698,662,677,713,693,661,647,641,657,673,677,670,680,662,670,685,659,684,719,660,662,681,679,667,654,652,710,706,653,644,670,647,676,688,660,683,636,699,681,685,652,688,707,669,652,628,658,709,685,693,675,659,678,684,660,671,677,624,685,659,714,618,609,613,619,636,614,617,608,609,626,620,623,648,608,620,621,624,633,607,623,608,653,623,630,588,633,631,598,613,611,607,626,631,630,603,613,642,615,610,624,554,578,579,569,594,574,592,577,586,549,564,598,583,576,577,579,532,580,606,567,593,553,579,575,561,560,592,569,585,575,553,557,572,570,571,567,598,587,610,718,733,733,715,700,738,698,759,733,710,734,705,695,737,726,711,705,730,701,747,727,713,760,728,747,743,725,704,724,720,733,708,706,746,748,708,665,733,711,713,696,736,752,645,621,621,623,644,617,615,612,637,610,601,643,622,625,627,655,638,625,635,615,639,597,617,612,629,653,627,601,634,632,632,635,632,632,645,602,630,630,632,644,609,635,631,646,604,688,596,570,571,589,579,589,560,571,587,602,592,600,591,596,572,561,588,578,586,557,562,579,576,595,573,553,573,585,581,590,617,550,581,591,545,565,566,567,562,602,553,558,549,568,567,570,557,560,554,561,569,561,560,565,560,568,565,558,558,550,562,558,541,552,567,559,573,559,559,555,552,555,550,559,556,541,567,558,571,563,554,554,559,535,563,550,567,571,567,583,555,547,571,574,570,588,559,581,557,580,567,566,567,588,575,574,548,574,573,580,575,573,568,547,579,553,559,550,554,570,547,559,581,569,550,562,581,565,539,555,552,544,545,549,544,549,557,553,549,564,538,540,547,543,546,533,550,549,540,547,554,555,542,555,547,550,543,544,546,537,547,537,534,548,551,545,546,555,551,553,543,559,551,541,546,546,535,545,533,531,553,539,528,529,531,537,535,527,532,545,541,537,537,530,544,524,527,543,540,539,536,527,536,525,541,542,525,539,543,542,545,540,535,537,526,535,526,533,525,536,539,543,544,520,530,510,529,524,522,529,527,518,532,528,516,518,526,544,516,519,522,524,533,530,530,528,523,520,523,527,530,525,526,524,531,525,520,532,506,519,524,556,635,603,606,616,641,674,606,627,621,593,617,606,595,585,567,614,645,620,600,608,649,617,628,572,628,620,652,622,634,589,637,656,619,597,611,649,611,631,589,668,643,620,640,603,552,785,740,766,770,738,778,795,766,725,744,773,789,754,749,731,722,730,777,769,779,752,754,782,721,775,754,747,762,767,724,792,780,777,734,739,788,768,765,765,760,750,778,784,733,670,685,694,703,669,708,671,669,688,701,666,665,685,692,665,672,721,676,679,669,663,668,689,745,719,670,695,687,696,670,682,694,715,681,673,676,683,672,700,681,711,685,704,701,618,627,638,649,622,638,627,614,638,615,644,598,606,672,620,647,600,602,642,648,628,629,589,617,638,616,610,631,638,588,608,634,622,610,625,639,626,622,619,606,625,626,601,633,587,565,570,567,558,551,554,582,556,552,567,572,576,573,564,546,579,570,556,558,585,549,565,568,563,575,563,585,563,564,570,563,563,566,571,574,561,553,580,563,553,570,561,563,565,546,588,655,676,661,679,664,681,682,683,676,647,626,651,659,659,665,665,678,679,671,656,682,673,691,689,675,680,667,706,680,686,673,660,633,634,672,662,705,706,685,706,711,682,643,702,646,695,685,665,701,577,556,563,585,609,573,582,571,613,596,573,605,596,585,582,590,588,577,594,584,598,577,575,581,622,580,589,581,569,584,605,569,596,571,569,558,618,627,561,547,556,558,552,548,567,578,573,561,551,552,569,579,573,557,561,584,573,565,571,564,560,568,568,556,557,570,554,574,576,561,544,574,561,561,572,560,560,545,574,559,616,635,622,642,629,623,620,623,646,603,621,633,618,635,610,617,632,610,628,620,655,645,610,607,603,609,610,629,617,600,633,614,624,643,633,644,595,635,616,615,648,619,717,720,678,661,677,661,675,679,673,667,695,674,699,678,675,665,677,690,670,647,666,703,681,677,702,716,666,665,687,667,658,663,697,713,680,727,660,670,625,689,718,660,697,690,637,612,616,588,613,592,626,623,624,612,618,627,599,620,640,610,611,616,635,628,628,618,622,636,606,635,649,618,636,663,619,616,614,626,633,653,630,616,634,633,621,609,627,618,623,634,570,581,588,589,579,573,573,586,576,585,581,565,587,581,580,573,572,573,598,580,573,580,575,587,579,577,571,586,580,574,583,587,563,574,586,565,575,584,572,570,576,549,646,649,646,662,631,649,661,635,642,601,640,658,682,662,659,614,642,609,631,651,677,635,643,633,655,627,663,663,630,666,621,685,632,691,665,655,643,621,634,647,656,600,616,630,674,645,650,669,685,684,692,684,677,681,692,691,669,682,684,675,667,684,657,700,681,688,662,692,687,675,667,692,678,688,677,706,659,682,686,677,667,677,678,685,692,677,701,677,697,694,674,671,680,694,671,695,671,709,672,685,669,706,686,697,672,651,682,669,687,680,694,685,681,678,687,704,683,673,682,689,685,681,695,683,693,693,687,674,695,682,684,683,693,697,694,694,683,680,698,698,639,659,644,665,688,663,651,684,649,662,656,676,666,664,655,664,640,633,666,678,665,649,666,668,662,671,671,675,657,670,660,646,670,676,656,677,652,666,665,666,673,669,758,761,748,720,714,768,753,721,708,733,736,753,757,754,746,711,723,734,730,759,705,756,741,750,723,738,750,729,723,734,781,746,732,723,763,737,705,767,724,698,742,754,817,738,714,737,729,745,798,726,741,681,736,754,788,758,740,732,743,721,744,751,695,722,712,768,733,764,771,697,743,699,751,735,726,727,738,716,739,791,700,753,717,747,705,713,730,757,739,780,745,744,717,729,761,718,757,729,749,755,746,749,728,728,725,757,740,741,721,746,746,726,744,729,730,732,719,712,757,748,734,743,720,747,739,731,740,723,753,711,722,707,748,738,715,738,719,718,737,695,683,734,713,744,708,729,668,730,695,716,715,764,705,696,703,723,676,703,698,714,696,748,699,699,740,703,716,708,731,731,715,720,708,745,648,679,659,667,684,669,686,647,649,694,650,646,674,693,689,671,679,690,674,680,690,656,693,671,683,675,659,681,660,711,678,669,667,649,691,686,683,703,645,647,651,645,634,655,633,637,640,653,653,644,653,672,647,634,649,653,657,648,651,640,658,651,639,640,669,668,659,644,672,633,644,663,652,646,657,638,640,660,654,652,639,647,638,652,656,649,670,682,737,748,674,696,667,727,692,752,724,680,694,713,683,676,681,684,685,713,706,692,703,679,674,680,696,744,681,669,679,728,712,752,708,733,769,677,739,696,692,769,658,676,641,659,680,661,630,647,689,629,647,625,657,669,642,661,676,660,665,658,647,641,656,663,672,645,641,691,639,656,665,665,616,631,616,578,598,595,607,606,596,600,596,596,592,602,610,603,584,599,578,593,597,623,600,600,605,594,598,607,595,606,598,617,601,592,591,594,579,591,590,605,597,600,590,630,612,651,592,625,612,585,607,656,616,606,648,602,597,623,606,621,595,640,584,598,602,618,575,598,610,594,645,626,615,598,604,628,614,605,614,646,633,623,594,615,625,603,626,613,612,625,607,624,622,642,608,617,612,612,625,619,606,607,613,632,603,619,612,635,600,614,607,606,625,596,616,614,619,612,616,590,633,613,629,615,611,614,607,592,584,583,582,567,576,562,572,581,572,579,571,582,579,581,591,581,585,562,578,581,584,582,585,578,584,569,571,563,578,571,581,564,586,574,569,577,569,575,548,663,628,704,687,693,637,631,672,660,649,668,665,647,634,669,669,666,705,719,681,694,695,678,691,674,675,672,655,645,645,634,674,649,685,645,658,675,685,682,677,638,648,696,708,721,714,704,709,715,732,724,715,697,728,722,719,719,734,715,695,706,716,701,692,704,726,716,714,696,711,723,704,705,729,707,722,712,727,716,705,718,712,693,725,733,609,587,572,609,581,614,593,554,622,600,584,583,580,564,615,608,590,585,612,565,612,566,608,549,586,575,615,584,595,591,618,578,615,601,607,600,595,616,621,579,584,578,615,552,564,533,562,574,546,536,558,553,565,553,571,564,535,563,553,563,529,553,562,563,565,534,572,552,561,540,558,572,540,579,538,568,563,558,545,549,562,560,567,575,557,584,700,683,696,693,687,697,664,664,668,669,667,688,685,682,657,711,665,700,686,679,675,660,681,689,639,673,715,653,713,684,666,682,666,671,690,690,606,627,625,626,616,641,617,625,619,615,630,606,627,616,639,603,607,633,628,620,648,623,647,615,627,604,630,622,641,643,625,619,618,624,622,651,609,618,636,635,600,632,607,630,662,581,566,557,572,560,574,598,574,589,585,563,577,577,568,571,563,573,577,584,576,576,571,569,560,572,564,569,581,568,577,571,567,573,563,575,576,569,562,584,565,571,595,757,741,714,722,725,732,747,753,743,730,724,715,693,707,702,702,710,749,714,705,713,689,729,741,710,747,736,742,708,739,698,699,703,715,710,720,709,727,710,736,698,762,755,724,746,755,796,714,690,730,712,699,693,711,693,694,724,688,705,676,697,701,704,679,690,699,719,707,712,716,681,684,710,721,698,705,701,723,722,685,727,692,712,696,684,717,687,752,685,606,651,610,615,611,595,624,610,620,631,597,578,627,613,593,596,605,615,608,597,605,642,631,603,624,626,606,601,593,594,587,646,623,598,632,626,616,623,671,535,559,546,549,542,539,552,540,549,552,549,541,545,553,548,535,549,537,533,540,542,550,531,553,552,552,541,534,525,534,550,534,566,529,539,551,549,556,554,555,553,555,557,559,561,569,558,562,561,550,559,568,562,548,561,560,556,559,539,555,551,556,546,548,554,557,558,566,568,555,554,564,559,548,556,566,552,551,545,560,622,665,630,626,616,655,635,644,621,629,659,626,652,667,615,640,671,628,672,632,675,642,630,627,631,634,635,653,623,661,658,648,684,651,595,633,689,704,696,690,701,715,715,687,705,683,685,717,705,678,703,711,709,709,691,692,690,684,712,710,704,708,695,700,715,696,697,700,698,682,684,708,706,717,703,690,679,687,702,702,683,683,735,641,678,682,684,652,673,664,662,666,664,658,676,680,663,665,655,668,678,654,670,671,678,678,670,664,660,690,681,655,662,662,660,669,672,666,674,668,687,683,664,692,657,681,683,681,638,583,594,613,581,611,574,605,589,585,581,574,577,593,587,570,579,577,578,581,586,597,591,588,588,586,595,575,580,568,611,571,592,594,578,589,581,577,575,587,574,588,579,587,567,612,586,580,555,562,643,630,574,602,601,573,655,617,595,578,629,602,553,576,582,579,622,613,615,619,647,586,571,598,671,594,578,598,572,599,598,587,598,565,576,571,607,577,624,585,542,582,594,558,557,559,611,599,589,613,793,757,742,779,747,789,774,749,769,741,776,777,730,746,746,765,736,740,762,764,765,752,749,744,761,742,737,775,765,755,781,769,724,779,756,789,767,767,760,791,753,696,743,779,730,715,751,719,723,747,743,753,733,763,768,749,729,765,765,768,777,782,721,762,730,770,763,744,749,732,750,761,740,718,752,744,778,722,758,764,756,722,812,692,690,718,677,702,711,711,697,688,707,678,687,712,692,716,691,706,718,708,695,680,741,726,705,680,713,713,758,689,700,731,681,689,747,715,687,725,714,767,657,637,629,668,611,648,666,636,644,634,621,653,642,655,615,637,629,629,648,657,653,630,639,633,643,634,613,611,615,614,633,615,598,647,628,629,639,655,648,745,692,668,603,650,606,678,610,655,743,651,640,619,632,627,598,615,641,591,721,625,644,685,635,741,597,643,695,627,575,654,614,646,665,611,598,651,570,714,698,701,714,693,694,706,704,685,704,740,717,685,699,705,725,697,708,704,704,726,662,691,690,688,698,707,708,690,687,704,706,717,699,702,699,698,727,690,715,675,666,706,723,691,685,726,650,691,633,685,692,677,682,677,668,670,692,666,666,671,657,676,682,670,664,683,677,642,673,667,687,656,687,672,674,700,660,666,671,675,679,655,634,611,651,651,665,634,637,647,635,643,650,644,642,640,653,635,646,638,620,647,629,641,640,643,642,650,645,642,660,647,641,656,658,633,645,658,649,672,627,652,625,651,662,637,631,606,657,667,658,660,665,665,669,650,644,658,670,672,650,647,662,676,664,677,656,652,668,649,671,653,655,661,657,642,652,653,653,658,675,659,659,653,648,659,653,658,627,704,748,711,717,717,713,728,699,709,708,723,707,713,723,721,716,725,700,746,728,731,732,706,685,695,698,720,719,697,720,725,750,684,727,729,734,740,702,747,689,684,708,693,696,706,705,696,709,709,713,714,705,710,708,710,696,695,686,703,702,684,704,700,715,701,692,700,697,705,707,703,709,689,699,704,700,712,704,683,702,703,699,694,695,685,698,701,708,721,677,666,717,721,679,674,737,670,689,656,671,696,708,698,653,731,664,624,707,718,690,674,686,699,662,667,755,679,613,684,645,688,672,675,660,687,760,681,712,708,689,704,612,708,673,678,712,705,715,663,686,673,666,689,706,653,706,682,700,667,670,708,705,701,679,677,704,680,697,682,713,682,703,684,740,682,722,712,713,721,706,679,706,666,678,699,694,687,659,721,667,641,608,604,615,599,586,603,615,609,592,614,584,587,610,613,616,608,609,618,622,603,652,647,615,606,574,613,626,621,603,582,614,620,631,610,612,620,644,624,622,609,625,648,571,556,550,560,569,555,540,560,541,557,572,554,582,547,577,549,570,539,561,559,540,573,548,544,552,546,574,564,557,561,581,558,572,579,567,534,562,587,554,544,555,535,569,558,535,565,586,721,743,734,712,730,729,708,704,769,713,723,750,760,747,773,744,718,722,707,722,722,708,772,741,736,729,720,754,721,746,741,752,785,715,740,735,727,729,727,768,742,750,725,720,732,723,729,709,738,737,728,720,731,748,743,728,736,724,726,730,721,735,739,726,747,747,736,749,725,735,729,747,720,740,739,733,749,734,760,698,702,656,679,687,709,668,694,684,717,695,697,688,704,669,694,696,684,689,683,707,695,699,676,717,699,672,679,746,696,711,693,689,657,706,698,705,695,734,683,703,645,725,679,659,674,711,689,629,691,658,691,677,678,698,730,658,721,695,672,689,710,696,687,707,729,682,704,612,663,691,668,693,709,671,719,692,684,659,663,722,707,653,681,703,669,644,677,721,655,687,669,668,672,678,683,674,638,660,671,658,646,649,661,654,665,653,673,665,653,676,630,724,660,661,667,677,669,660,661,664,696,671,664,667,661,662,656,668,700,682,642,659,638,653,646,646,650,633,644,633,681,645,656,647,664,632,645,654,630,642,670,651,644,644,653,648,650,649,645,655,652,659,653,645,652,658,642,654,653,655,641,655,664,597,613,589,590,613,612,587,585,580,599,580,581,603,583,601,573,589,572,599,597,578,590,575,585,598,577,590,579,600,599,595,576,557,564,574,610,596,586,615,609,581,590,595,543,544,542,553,543,552,536,554,539,552,548,547,537,545,544,550,548,539,525,540,536,531,534,546,550,521,531,540,535,549,541,543,551,538,537,538,525,534,551,545,558,536,547,540,550,525,551,570,566,553,554,544,566,558,551,554,557,577,575,556,543,558,550,550,546,549,557,539,555,555,568,573,557,558,557,529,578,562,570,548,565,552,554,566,567,570,557,550,585,737,715,731,734,744,723,732,697,694,784,741,743,732,708,740,725,719,737,747,712,716,730,742,712,743,724,749,710,734,745,713,713,729,738,756,738,766,715,712,732,759,719,703,685,717,739,720,709,715,692,756,722,721,691,719,727,716,749,739,759,735,737,722,734,717,712,713,678,752,726,753,754,749,761,703,746,731,691,732,732,736,699,718,713,713,703,754,753,708,746,724,742,725,750,716,722,735,745,733,759,754,728,678,747,746,774,757,730,754,727,752,733,724,742,721,743,722,772,753,746,711,739,752,787,767,743,752,818,706,745,734,723,711,715,720,714,743,743,735,713,712,733,699,740,750,772,750,692,713,719,751,730,757,685,753,730,708,751,734,705,716,729,767,712,712,739,727,749,739,724,719,732,752,797,719,701,713,686,721,686,733,691,696,721,707,739,722,682,755,669,692,695,746,681,734,709,713,715,769,695,740,728,726,720,702,712,694,749,730,707,700,731,712,678,717,700,688,721,694,662,719,742,730,742,736,738,714,699,719,727,723,726,733,734,718,720,717,717,740,747,707,724,712,727,735,725,727,722,733,725,737,700,715,714,713,721,727,752,627,627,623,625,662,614,623,617,636,591,626,609,623,609,627,635,631,646,607,631,627,595,602,595,644,642,612,615,619,620,632,654,632,610,602,594,641,622,630,638,650,577,570,591,562,563,579,566,558,569,566,588,555,570,572,564,567,577,565,562,584,579,597,587,568,565,581,552,579,570,565,594,567,576,579,557,581,582,571,589,592,577,566,589,564,529,616,652,646,625,632,640,637,635,628,636,635,642,621,624,637,648,651,630,645,646,626,636,648,636,636,633,636,631,645,630,638,614,642,629,650,635,641,633,631,640,630,645,690,657,667,645,671,648,668,658,656,655,645,675,654,675,672,658,669,640,651,653,657,651,658,655,661,661,661,664,655,655,659,653,671,661,659,669,644,661,657,661,679,641,676,653,658,633,697,695,678,660,724,682,646,677,686,691,695,676,707,688,690,685,662,657,708,696,723,686,654,696,718,675,671,688,664,676,659,722,685,693,686,670,681,711,703,680,702,698,655,670,675,639,581,598,603,578,582,586,586,594,615,594,602,607,588,566,572,574,593,609,612,582,555,569,594,568,604,605,578,609,583,570,556,583,563,574,563,580,593,584,560,586,540,556,554,579,566,565,557,562,572,560,565,568,560,561,546,564,550,567,560,555,566,552,552,540,562,564,582,567,567,569,575,541,567,568,566,566,569,545,550,572,560,569,555,564,562,567,573,560,583,543,556,549,628,617,587,614,618,603,617,589,607,620,614,604,630,610,610,602,598,608,595,620,627,604,617,623,600,571,590,591,630,594,605,600,600,621,595,618,601,612,589,583,599,569,564,574,549,540,564,575,557,564,559,549,574,577,547,589,563,600,566,575,571,554,566,558,579,564,575,577,573,559,577,557,563,579,566,560,560,551,548,578,564,562,563,573,545,565,547,561,563,570,589,585,569,568,566,572,557,575,575,570,579,572,568,548,575,543,573,551,578,553,572,559,570,567,559,565,579,580,557,543,592,577,566,569,585,559,562,572,576,565,571,573,604,548,537,527,541,539,537,537,540,535,548,535,541,541,530,536,534,527,528,538,537,535,541,536,529,534,529,538,532,544,540,525,544,539,534,537,540,537,542,527,538,514,516,700,715,710,679,698,675,693,708,685,727,703,701,726,683,683,707,736,694,708,701,699,713,678,717,669,694,682,716,720,699,693,682,715,702,700,701,702,696,721,702,674,706,710,722,715,667,663,658,652,665,666,656,663,684,667,658,660,665,665,649,679,667,679,671,658,679,671,672,666,666,679,682,656,672,672,663,662,664,664,658,670,653,667,670,677,673,687,674,681,656,629,605,610,622,586,624,589,609,587,613,603,621,629,605,589,658,613,629,605,606,612,633,680,592,611,566,600,606,600,585,586,617,634,636,601,630,588,615,582,593,576,631,609,593,555,516,530,522,538,540,542,524,545,542,544,531,539,535,527,546,531,513,535,527,547,537,533,533,537,545,548,528,522,545,535,538,534,542,538,526,529,548,536,529,536,541,535,537,529,534,538,520,539,552,536,530,538,511,527,532,505,514,516,516,494,503,520,529,516,521,533,522,518,516,515,514,517,516,521,509,527,514,527,508,518,514,526,530,495,526,518,512,526,530,500,514,528,519,514,502,675,727,739,741,758,701,719,770,707,701,750,736,740,758,713,720,766,756,711,737,734,750,733,698,708,730,720,727,717,748,794,709,735,739,695,716,720,716,747,707,734,705,807,699,724,724,713,741,702,724,704,718,731,701,688,706,701,687,701,710,701,714,702,711,709,715,680,703,693,672,721,692,707,706,694,716,713,677,709,699,734,700,711,700,731,710,677,696,618,604,625,620,590,604,641,642,644,594,630,643,616,621,603,638,619,641,627,636,608,655,648,624,653,633,639,628,639,641,632,610,631,612,595,613,608,618,620,590,526,515,522,522,521,526,530,521,528,526,531,540,545,535,533,530,536,534,520,528,522,525,529,529,528,523,538,528,529,521,531,534,519,521,521,531,518,531,519,542,538,529,528,535,526,656,663,672,650,673,682,672,693,660,641,667,675,686,671,676,687,680,683,682,685,671,665,661,666,680,695,661,669,662,644,665,661,695,698,674,676,652,669,693,659,664,635,667,643,661,646,650,643,644,670,647,643,655,653,650,657,676,662,653,636,644,659,643,637,659,638,650,636,672,660,661,651,658,631,659,646,650,650,660,649,654,645,644,663,633,618,586,568,575,549,554,587,537,565,588,561,531,582,580,582,581,576,567,591,583,618,603,585,566,569,601,581,610,603,595,616,575,593,570,566,606,593,598,598,583,559,575,569,563,552,573,559,556,573,568,565,561,561,565,588,577,567,567,550,572,569,554,561,568,564,590,571,568,554,570,566,588,553,575,576,576,569,572,556,577,562,553,575,575,565,570,573,587,545,542,545,558,562,548,564,537,539,543,566,542,544,549,539,544,549,534,541,547,540,544,549,540,536,544,555,542,545,538,547,544,531,551,547,548,546,538,553,552,545,545,551,548,545,520,545,535,536,545,529,548,536,534,530,541,542,534,549,541,527,552,543,549,546,532,523,533,542,536,534,529,525,529,547,531,535,537,546,537,546,540,551,564,575,556,552,554,551,561,557,554,545,562,561,544,568,539,538,554,554,561,561,531,541,555,564,554,560,563,553,564,571,552,558,551,538,555,568,561,540,536,543,536,552,546,546,556,536,548,546,549,555,563,541,557,526,537,541,551,519,551,539,535,544,548,540,553,548,528,538,543,549,542,538,548,547,544,550,532,536,545,569,575,618,617,604,598,597,582,618,603,555,621,611,579,586,600,607,566,520,571,618,599,612,602,614,618,610,579,583,635,576,621,654,590,614,625,550,609,630,598,612,638,588,594,581,562,595,574,584,595,585,596,593,579,591,578,593,593,600,593,585,595,584,586,574,585,594,571,581,592,588,600,576,580,587,583,588,585,589,593,590,572,575,550,548,521,545,541,538,542,550,549,525,541,530,539,544,528,534,546,533,529,551,535,521,531,534,542,533,531,537,529,532,543,538,550,536,526,544,541,529,550,495,513,527,505,514,530,505,509,511,521,521,517,506,512,516,504,500,502,497,528,512,521,489,513,510,501,513,507,520,511,507,491,529,517,510,508,513,505,508,502,529,512,508,517,522,504,568,567,555,566,560,547,544,568,562,546,557,550,558,563,549,567,567,551,560,548,559,559,550,560,562,554,551,553,542,571,567,549,556,573,551,559,574,540,553,556,549,551,563,555,586,552,531,535,527,531,545,546,549,544,545,543,524,540,542,539,537,537,538,531,542,548,534,543,541,544,544,545,533,552,531,534,553,547,536,546,546,537,543,528,531,526,531,541,538,542,531,550,527,533,520,654,716,648,668,658,671,649,742,713,682,719,742,747,717,686,718,677,696,749,688,726,718,745,724,738,691,706,763,741,718,691,750,758,731,680,691,734,681,730,672,734,662,713,702,713,697,709,699,699,716,706,690,703,718,686,702,686,728,700,692,719,714,719,713,713,719,708,713,719,715,717,692,696,696,719,721,705,686,727,703,711,706,662,704,686,668,686,713,686,743,648,691,676,664,631,678,667,710,663,713,642,665,725,640,695,670,740,662,634,673,694,712,631,718,666,716,710,672,659,697,696,673,629,679,743,746,703,683,677,673,683,714,696,692,722,661,674,683,681,678,682,704,694,709,726,673,666,682,711,679,674,700,698,677,687,702,684,703,669,699,697,684,703,654,709,678,682,643,689,701,695,675,707,694,720,690,713,703,691,722,700,713,691,707,702,702,709,700,711,701,709,686,692,696,698,700,697,697,702,677,726,710,698,693,689,692,693,693,696,700,658,656,671,593,651,659,699,612,631,645,706,603,607,613,651,628,632,601,630,647,587,622,602,638,601,630,640,586,624,634,639,621,624,628,629,613,625,679,638,723,546,647,585,603,590,615,592,646,586,598,630,612,640,612,622,617,576,629,622,584,608,650,588,595,603,599,619,583,569,612,591,612,570,598,562,612,598,600,578,621,542,530,534,540,530,516,530,534,531,548,534,536,529,523,531,528,551,532,545,522,520,541,540,535,542,543,531,529,525,529,529,521,519,538,522,543,519,535,520,545,518,529,528,526,557,545,507,538,521,521,535,522,545,523,536,536,523,515,520,520,524,533,533,520,529,535,514,534,545,516,521,539,511,542,526,525,510,515,519,540,512,537,542,528,539,552,548,551,539,560,552,558,543,550,554,559,540,564,550,548,531,561,560,557,565,548,546,544,548,564,552,553,558,561,554,551,552,543,559,544,557,561,544,567,549,544,556,569,563,566,556,537,618,595,658,599,584,661,612,563,600,614,629,623,615,627,625,618,616,631,629,632,581,623,606,611,615,566,621,637,612,608,602,651,619,599,617,642,583,580,601,612,642,622,569,615,601,647,632,618,612,624,607,630,610,620,613,630,621,621,629,622,630,626,624,612,619,606,615,609,598,618,606,628,614,631,616,627,613,604,612,610,617,616,624,608,621,630,623,614,626,605,624,652,556,555,575,592,585,562,572,573,562,567,555,573,580,570,567,565,573,585,572,567,579,561,576,566,563,576,571,579,587,557,578,577,576,585,573,569,560,554,555,602,506,510,512,527,528,510,522,526,514,529,524,516,510,538,521,531,520,506,530,518,517,525,520,519,535,522,508,528,514,507,517,523,520,513,519,530,509,516,507,506,525,519,517,516,506,501,493,668,654,671,666,657,647,657,650,657,671,675,657,682,661,667,659,686,644,651,658,662,641,656,658,630,631,656,666,637,669,639,665,662,667,678,647,666,654,666,666,637,659,650,647,635,698,685,695,659,663,669,704,657,711,669,675,620,680,674,692,646,666,654,665,639,675,672,658,678,682,674,634,660,661,673,701,675,670,635,689,657,654,686,661,634,680,680,662,640,706,690,682,659,716,691,690,720,644,673,745,709,713,692,673,694,642,682,757,689,742,676,711,732,666,689,677,697,696,773,743,659,678,715,713,711,715,669,694,680,718,692,687,707,691,577,644,646,647,675,703,670,675,673,660,654,663,640,683,670,682,667,667,667,676,666,672,674,665,642,660,634,664,683,674,669,653,665,685,675,645,661,664,650,660,690,605,652,641,651,654,652,640,634,631,656,643,644,639,657,644,658,642,640,643,617,665,651,646,657,654,651,661,646,641,652,657,647,642,642,643,629,659,662,642,654,650,664,633,651,656,647,650,680,577,608,572,582,595,578,570,588,585,588,573,577,584,590,576,584,579,581,559,566,587,566,578,579,586,580,580,567,580,584,586,609,572,571,596,585,578,576,572,578,580,573,566,658,654,648,660,668,655,656,650,635,703,691,663,656,658,653,663,673,650,647,643,652,681,663,663,672,648,686,693,669,652,647,663,641,660,675,659,696,625,629,630,626,630,604,592,599,617,613,598,636,630,633,603,613,617,597,620,594,610,615,609,604,619,616,619,602,596,604,597,598,623,595,619,624,611,602,606,631,585,583,598,577,580,573,589,565,562,574,576,568,603,565,569,574,586,595,564,577,564,583,579,591,578,579,574,580,582,596,587,578,589,585,574,583,587,565,587,562,592,587,602,567,590,586,572,582,592,548,546,573,566,560,573,557,566,571,580,570,582,545,557,567,556,575,571,541,548,570,583,565,551,567,581,566,561,569,553,564,554,564,561,573,571,570,572,576,563,549,571,550,561,550,550,547,565,550,569,555,558,555,565,567,582,565,545,549,562,552,564,558,569,567,554,569,557,553,545,554,548,569,575,553,554,557,572,557,555,556,540,556,559,560,553,562,568,535,555,547,540,544,550,538,564,557,556,549,549,548,555,549,548,566,560,544,560,563,564,548,542,544,552,553,533,558,560,546,538,553,539,552,544,556,542,561,551,564,556,535,557,564,555,562,545,551,552,544,557,549,541,576,601,648,700,682,613,627,668,613,620,658,617,612,629,674,672,637,636,586,654,623,619,614,683,650,730,606,606,673,728,636,592,678,664,624,675,602,640,616,602,645,641,624,640,592,602,604,615,591,592,612,608,596,613,605,614,607,606,606,593,605,615,617,595,595,608,609,604,599,604,610,597,608,633,604,621,601,607,588,609,617,607,622,610,616,584,614,576,566,541,563,544,530,556,556,530,579,554,565,552,540,562,546,561,535,560,564,557,527,545,554,545,558,535,555,556,532,543,537,549,550,549,560,556,544,545,574,528,521,525,516,520,531,523,520,540,521,516,520,528,519,547,525,517,516,530,538,523,522,527,528,527,531,533,526,537,526,521,524,533,526,530,521,528,531,519,535,529,537,547,536,532,550,545,552,547,550,538,538,541,528,542,530,530,535,544,536,549,534,536,536,536,549,544,535,545,538,546,535,541,536,555,526,545,526,536,538,533,556,572,550,567,553,561,564,562,559,560,542,567,541,551,556,548,561,553,553,549,541,560,567,547,547,552,553,547,557,556,549,561,549,568,572,571,548,548,574,553,539,580,675,684,674,672,684,703,693,677,690,718,680,688,682,684,696,682,712,680,667,688,683,677,680,673,672,698,686,687,675,694,683,668,694,701,688,685,693,695,687,707,685,649,667,683,676,642,711,689,677,667,676,693,653,698,674,664,648,675,694,666,651,652,664,674,694,685,690,652,664,705,669,696,698,678,666,676,663,660,697,664,674,661,660,678,656,679,681,649,685,589,618,593,575,615,621,597,593,600,636,579,575,635,638,573,582,605,593,582,608,593,597,606,595,605,633,612,621,613,589,606,581,599,587,620,600,615,601,541,598,575,584,576,586,515,617,645,574,572,627,636,616,633,672,636,594,565,582,590,631,644,565,580,603,602,636,591,584,628,620,583,630,592,665,589,603,606,639,607,659,625,617,630,596,593,606,575,594,587,599,594,572,579,579,574,593,588,588,589,583,570,586,583,592,576,587,592,569,596,605,584,586,589,592,600,584,597,589,597,576,580,583,587,576,579,594,545,557,562,538,549,563,555,550,554,547,540,564,549,546,542,554,551,529,541,553,544,548,540,545,553,566,550,553,549,547,542,560,535,565,554,534,550,548,562,561,533,549,555,563,546,548,557,551,566,566,550,545,572,573,554,535,545,558,552,561,548,560,576,576,539,555,558,568,569,549,541,554,554,548,564,567,570,567,564,546,561,577,551,548,574,572,566,577,547,535,705,657,641,682,672,671,686,642,686,675,665,667,651,675,661,686,709,677,671,682,700,652,678,683,653,688,715,648,672,645,684,616,684,680,692,688,665,634,657,667,675,664,685,655,603,585,626,622,584,623,601,611,608,600,614,589,598,586,605,612,612,582,595,605,597,586,624,602,586,600,607,586,590,593,643,613,601,609,594,585,594,618,629,619,617,621,632,676,670,687,650,637,670,677,654,729,674,662,637,676,649,659,673,651,636,650,698,700,661,639,677,655,647,682,655,663,653,620,652,726,629,617,672,662,670,713,642,630,669,695,621,672,739,666,675,691,666,679,691,673,672,689,663,667,671,672,666,684,674,684,675,672,689,692,670,687,652,672,674,673,678,681,685,678,676,690,660,662,653,666,670,670,678,674,669,670,653,669,684,610,603,641,589,552,567,615,644,574,583,645,568,614,590,606,622,609,608,568,601,583,611,607,590,580,583,614,592,604,604,576,581,590,594,599,599,561,656,614,596,606,586,588,614,603,559,553,563,541,544,549,544,562,553,548,544,543,550,570,544,551,557,553,536,555,557,553,566,557,560,548,553,551,557,569,539,550,567,532,552,557,543,551,565,535,538,554,552,554,527,541,534,540,541,550,539,528,550,540,551,546,522,546,567,531,542,542,551,564,552,519,539,542,530,539,537,521,554,530,549,545,569,551,537,543,539,531,543,536,546,574,517,529,525,511,507,509,521,506,522,520,530,516,512,525,526,519,523,524,519,508,498,518,528,523,519,526,516,521,512,531,505,510,507,507,518,514,524,524,524,511,513,509,549,506,505,506,497,512,490,506,514,504,491,507,507,503,499,501,508,498,520,509,506,503,506,516,498,509,508,511,503,511,504,508,502,506,508,503,498,490,499,505,504,507,503,503,511,492,507,488,509,497,506,496,492,498,490,494,499,489,498,490,482,480,485,483,496,497,494,476,490,493,496,488,499,488,501,511,490,501,509,488,504,487,510,489,502,493,492,493,495,499,508,488,500,487,493,492,481,502,492,495,500,490,494,508,499,500,490,496,498,493,494,507,508,493,502,497,488,510,488,497,503,492,502,491,493,488,510,502,511,497,490,478,497,500,501,495,487,508,488,500,504,491,487,499,517,506,503,486,496,507,500,508,485,496,477,499,487,505,499,492,496,497,491,501,490,499,499,500,506,491,503,503,487,490,504,507,503,523,511,520,508,530,507,513,508,502,508,516,513,510,506,515,502,522,512,516,499,500,522,514,519,500,510,512,510,519,515,512,509,505,521,511,504,498,514,511,501,556,532,541,526,539,543,561,551,517,560,552,557,534,548,523,560,548,548,537,542,541,541,537,546,535,543,552,551,530,554,534,553,551,538,556,538,554,550,540,547,549,539,558,533,529,517,542,546,538,529,518,526,528,533,541,525,533,526,518,544,538,532,534,524,543,540,528,529,545,534,541,541,543,531,531,537,521,530,526,522,527,535,540,567,568,570,593,577,589,582,569,576,578,551,569,563,589,583,563,595,567,595,601,573,580,558,590,571,589,579,596,591,576,585,561,590,559,588,576,575,575,585,572,549,557,539,558,546,543,557,545,554,539,565,552,552,552,550,556,547,545,540,543,563,557,537,546,556,551,557,552,544,546,554,536,545,552,546,553,549,551,547,574,578,574,597,637,590,562,539,604,606,598,590,561,596,609,613,611,572,594,603,555,588,611,577,564,565,604,567,639,601,592,611,567,581,629,568,632,613,597,664,577,601,585,586,578,581,580,582,591,578,588,577,586,599,589,607,579,572,597,583,577,586,591,591,573,591,580,590,592,577,586,580,594,578,585,577,582,579,592,586,592,595,585,595,547,530,539,540,551,532,527,549,542,546,528,529,524,540,525,532,530,532,539,535,541,538,538,544,527,546,542,529,531,541,529,534,535,526,549,537,528,538,537,522,540,532,508,493,510,507,495,517,507,501,529,510,500,514,513,502,516,515,501,521,506,504,513,507,516,518,496,507,500,504,516,495,516,512,509,490,522,507,515,508,506,506,500,505,505,511,581,597,550,574,585,585,594,583,561,579,576,596,573,578,574,566,574,569,585,576,582,586,582,560,557,570,576,594,565,582,567,580,567,575,604,582,587,613,601,607,593,585,582,588,598,583,579,611,612,603,578,617,601,588,601,607,583,587,594,601,604,588,592,596,584,607,600,613,581,604,605,607,610,599,609,588,598,553,573,601,582,570,581,574,581,583,590,579,564,573,591,574,569,585,574,592,575,573,572,566,572,570,578,560,582,571,574,573,590,567,558,563,589,581,590,563,569,574,557,549,538,533,521,542,549,537,530,549,528,548,531,544,531,528,536,541,528,535,551,527,549,540,540,529,544,547,538,549,523,547,541,533,537,524,528,531,524,525,515,525,550,540,538,539,530,524,490,507,506,510,509,515,513,513,518,507,516,501,499,522,513,515,520,510,523,509,517,522,513,502,506,511,526,504,507,500,519,518,515,505,511,501,524,523,556,550,553,556,571,548,531,544,536,539,543,548,527,542,524,552,541,554,549,539,549,532,542,544,545,562,552,546,526,539,565,534,551,543,519,535,547,540,559,519,510,536,522,537,544,532,529,543,536,536,530,540,545,531,534,529,531,528,534,534,532,531,528,531,547,524,536,527,529,528,535,535,524,546,534,529,530,534,525,532,530,530,524,552,544,546,532,534,537,526,536,532,522,515,519,525,537,510,513,536,515,519,535,525,525,532,533,522,535,544,548,509,539,520,524,545,526,520,534,524,545,538,501,498,494,502,493,491,504,507,504,489,503,507,487,501,500,497,507,499,494,501,506,511,496,504,521,502,507,502,509,495,497,502,500,495,489,501,502,497,479,495,493,514,511,505,499,503,510,504,487,506,505,507,506,501,494,501,522,511,498,490,500,498,499,502,503,508,503,506,524,494,503,517,496,505,504,496,518,520,513,505,492,644,616,607,597,637,641,630,638,611,611,633,602,609,617,612,644,627,628,609,633,639,614,628,622,621,611,620,605,635,624,630,630,633,632,639,630,614,603,638,625,588,555,572,566,557,565,574,565,556,554,555,582,559,563,561,558,557,553,569,559,540,550,555,552,546,554,569,561,545,545,547,555,551,570,554,558,560,568,575,559,538,555,560,621,620,635,613,639,640,672,618,679,661,627,570,622,604,612,692,633,662,648,703,629,644,638,616,607,678,636,638,647,634,599,642,636,639,659,638,622,655,642,604,647,679,629,642,625,611,599,663,649,653,689,609,683,654,664,646,687,635,635,654,668,672,649,678,654,643,701,671,681,656,650,665,666,679,680,686,678,670,625,694,692,686,644,694,664,695,695,684,649,675,681,621,614,611,594,609,584,604,607,626,626,626,579,609,609,602,586,615,586,593,610,598,616,630,584,620,620,584,590,614,611,575,607,624,616,644,624,592,598,626,667,564,577,564,582,580,556,575,571,564,579,566,586,580,566,557,566,571,557,577,568,588,568,573,560,579,568,564,568,578,563,582,579,565,570,577,573,571,567,562,564,568,578,559,591,573,542,557,548,544,548,541,550,535,550,543,536,549,542,533,535,560,551,533,544,542,542,533,553,533,567,547,550,543,546,530,548,532,550,550,526,553,544,535,534,549,559,526,519,525,517,508,494,517,520,512,531,515,515,516,516,522,523,501,507,503,521,522,514,510,510,508,534,519,523,534,516,514,519,517,504,513,529,526,518,510,509,515,521,510,651,638,641,637,657,643,646,638,650,641,638,646,658,645,654,653,655,625,642,671,659,654,666,655,674,669,640,650,656,638,650,654,661,638,661,637,653,653,651,629,625,670,686,597,622,587,611,591,592,586,608,582,591,582,606,603,586,598,576,613,578,609,586,576,611,587,594,591,603,591,607,590,589,595,594,587,579,591,599,594,588,595,592,564,580,587,570,592,580,581,574,583,581,574,585,578,573,570,582,568,591,568,575,554,592,584,577,580,602,585,568,583,580,572,564,580,601,590,585,577,577,577,565,580,587,591,601,566,583,566,568,570,578,558,571,560,556,572,580,564,561,567,563,564,579,560,561,569,565,570,570,557,564,562,582,572,570,551,557,571,570,554,558,567,551,586,566,545,559,557,564,563,556,561,549,573,555,555,569,548,561,561,553,554,570,562,556,569,570,560,564,557,561,562,566,564,555,557,563,567,563,558,571,556,546,565,563,547,541,550,541,548,535,551,549,550,541,558,534,547,557,546,533,547,547,547,551,535,536,542,547,562,546,547,546,545,556,549,544,548,559,546,544,546,541,555,540,545,534,553,540,556,561,518,541,531,561,540,537,531,536,530,542,541,528,534,546,527,525,548,532,535,533,534,541,546,541,547,532,525,531,550,535,528,528,534,533,545,537,533,546,532,523,525,534,524,541,552,534,543,557,557,529,526,513,532,532,532,551,534,533,536,537,509,530,526,538,533,535,538,538,535,524,529,528,502,536,521,531,535,525,523,528,525,524,528,523,518,524,526,532,542,525,543,523,526,536,543,546,545,544,539,548,532,547,542,539,546,546,533,552,548,538,532,531,531,551,543,543,553,522,542,542,533,539,542,543,539,545,539,535,546,541,531,542,544,531,540,545,542,549,541,565,536,566,556,545,552,533,549,544,555,540,543,555,543,553,549,532,550,538,540,558,545,549,538,535,552,532,554,548,547,550,541,543,538,533,556,538,547,535,554,543,538,547,545,543,523,531,535,537,552,540,531,534,533,535,525,544,536,534,540,524,544,532,525,544,526,538,545,531,538,547,547,528,528,535,543,527,542,548,535,540,532,537,534,528,539,539,533,529,542,536,520,520,524,526,541,531,546,535,539,524,531,536,552,517,526,530,537,530,545,521,523,514,526,541,516,529,545,528,538,544,522,524,523,533,534,522,533,540,542,531,545,518,528,508,554,536,538,558,552,559,547,558,543,538,548,548,552,535,534,542,546,551,545,532,536,552,542,549,541,541,553,549,555,556,549,556,536,531,535,545,547,554,552,543,545,540,557,557,527,564,564,543,555,563,548,570,559,554,563,552,560,552,563,554,547,551,551,557,560,554,562,545,561,564,557,552,538,566,564,548,559,565,549,554,547,553,534,603,579,639,579,580,628,570,635,611,627,573,591,596,595,641,620,577,630,595,627,553,631,621,619,598,623,565,596,585,595,599,583,582,553,605,600,620,601,619,598,656,593,597,590,601,595,593,586,599,598,588,601,577,595,595,598,594,605,594,587,596,596,597,584,585,593,592,588,592,597,603,577,586,577,598,590,579,578,591,591,598,569,564,555,549,550,559,557,563,552,552,564,558,570,555,567,576,553,555,561,569,564,547,565,566,580,553,562,555,565,582,539,553,551,559,546,580,563,570,557,555,548,556,534,572,552,556,549,545,563,555,548,534,563,548,547,534,555,529,550,560,529,539,534,549,558,565,555,551,549,565,541,560,548,534,551,561,570,562,555,550,546,565,561,547,533,548,660,644,642,641,666,627,623,629,654,656,661,634,655,652,649,643,644,654,664,649,646,649,653,638,639,639,640,658,648,642,641,648,638,631,655,668,661,637,652,602,572,559,552,547,554,582,576,563,555,568,583,557,554,555,565,540,559,556,556,555,558,551,570,555,551,565,584,558,569,576,561,576,572,573,563,550,566,564,571,551,566,564,558,563,559,546,526,520,529,555,563,518,528,533,544,536,530,527,516,544,519,540,552,538,543,547,533,532,515,552,506,515,544,536,541,516,530,524,554,553,545,513,519,546,538,539,536,540,712,690,709,686,720,732,697,731,712,733,699,687,683,692,707,679,732,726,689,703,708,713,734,694,707,702,714,662,722,711,708,687,748,694,711,733,730,728,699,721,716,645,647,657,642,641,659,639,659,666,674,623,656,650,617,651,657,662,644,652,665,642,674,659,651,656,646,672,674,656,665,650,620,632,619,650,643,677,655,641,683,652,601,598,605,602,585,598,599,595,600,587,609,591,589,612,581,588,584,606,598,596,614,598,594,608,594,599,606,603,592,603,603,597,603,593,618,612,597,594,599,608,592,606,601,603,573,585,571,610,587,604,621,579,579,617,597,582,602,606,606,591,589,562,598,598,612,619,594,577,608,605,635,587,558,651,647,591,610,541,605,582,671,601,590,596,590,606,602,591,579,598,593,587,584,582,596,587,581,584,588,586,593,606,589,594,587,603,593,585,589,601,587,590,585,581,592,579,585,602,594,567,592,598,548,542,545,521,542,533,541,540,539,542,538,545,536,533,545,527,538,546,534,536,537,541,538,550,518,536,543,517,537,528,531,542,522,529,531,518,642,637,652,661,663,662,650,671,671,651,648,653,625,663,645,650,641,662,643,650,628,652,659,659,629,620,671,661,638,652,645,649,642,667,652,655,658,660,660,641,666,645,645,656,686,631,667,680,687,657,676,670,675,672,705,684,687,671,678,685,659,654,660,640,678,706,676,719,657,619,635,686,630,633,640,646,657,701,686,666,680,670,674,678,666,656,688,707,685,700,698,672,661,683,687,677,687,704,731,685,673,686,634,665,678,691,681,674,697,696,687,662,680,628,722,699,677,686,653,687,707,644,643,727,687,661,713,690,707,746,670,713,755,692,664,675,710,674,679,681,644,704,676,698,701,690,685,670,715,642,679,670,673,665,653,670,654,695,668,680,668,677,698,709,668,701,658,676,656,721,683,657,690,687,690,651,691,747,587,574,578,582,563,583,581,576,587,574,578,605,597,559,593,575,599,589,551,593,622,597,562,581,576,578,563,584,564,575,593,589,570,577,548,554,575,583,595,600,575,579,556,556,574,554,581,573,570,634,542,560,534,544,544,543,545,545,537,553,526,565,542,538,534,537,564,552,520,538,554,549,544,541,544,530,555,561,534,552,550,556,536,527,549,553,527,523,543,520,693,685,671,648,669,681,687,635,685,677,675,668,708,695,673,681,666,681,665,659,685,689,678,671,661,684,685,675,687,686,647,682,701,683,669,682,660,655,656,666,622,571,618,616,600,611,603,593,566,595,633,591,600,600,604,617,594,577,591,590,609,593,593,595,596,614,598,611,634,625,602,628,578,582,616,605,597,615,610,607,615,613,602,605,607,583,625,600,639,589,601,658,605,543,634,576,603,641,606,633,599,618,569,582,641,569,684,634,602,576,637,601,646,586,606,600,601,643,608,640,537,586,561,570,646,508,656,669,702,677,686,623,632,652,669,651,693,691,650,651,662,661,661,695,643,670,665,657,648,632,685,681,715,627,662,659,672,630,645,660,665,684,649,658,645,671,645,685,623,602,601,580,582,603,602,586,568,590,572,622,592,613,610,614,588,585,585,592,605,582,608,635,601,598,591,610,590,587,586,574,586,577,627,592,600,606,621,595,616,612,602,587,611,599,685,642,587,630,607,642,612,633,654,596,564,644,590,600,629,660,611,601,644,671,599,541,618,595,624,639,591,588,619,656,590,617,666,611,651,621,680,612,568,646,675,636,623,646,653,698,712,675,657,628,669,687,654,661,652,638,688,638,674,654,649,651,665,650,650,676,675,650,676,672,626,686,692,672,668,657,645,669,652,633,656,649,674,660,625,642,679,672,684,695,689,689,707,682,701,694,661,691,677,691,649,660,693,687,681,668,690,703,692,701,717,687,692,691,700,666,676,680,673,688,688,678,689,665,722,678,695,676,689,674,684,688,694,666,704,676,672,691,694,671,683,705,686,662,700,680,700,671,707,673,685,710,677,666,712,714,697,680,672,672,688,707,679,683,672,680,688,684,687,711,707,666,692,709,588,589,619,586,606,597,616,627,596,619,626,657,621,587,618,583,608,628,594,583,602,600,595,630,614,600,553,592,605,610,604,607,615,605,594,579,605,572,585,581,610,550,541,541,536,563,540,547,559,560,545,548,556,551,562,541,542,554,559,541,547,536,537,542,538,549,554,550,547,545,551,534,585,544,547,553,542,551,555,548,555,552,560,548,588,586,598,575,584,570,593,584,576,597,572,575,573,575,566,586,572,588,595,571,577,573,571,572,569,574,601,574,586,599,588,569,581,572,584,585,584,584,568,560,595,564,621,622,626,624,642,660,653,626,632,661,626,645,627,633,631,618,649,638,628,653,633,622,640,649,652,624,647,620,670,645,637,651,614,655,627,637,650,654,625,636,646,649,658,656,653,666,663,645,642,646,659,645,643,660,665,652,640,652,653,644,644,652,662,650,652,649,665,650,667,655,655,652,671,649,664,656,662,664,640,651,685,581,589,578,576,573,571,596,583,580,589,587,594,564,568,584,564,583,577,590,581,550,571,567,583,553,569,597,583,578,561,561,574,592,573,577,572,570,577,608,662,665,691,690,693,644,667,658,664,646,649,649,675,671,641,651,680,665,670,671,679,648,699,683,661,677,673,661,656,672,669,675,675,674,699,669,670,688,676,694,660,629,670,665,660,694,608,657,659,719,677,688,650,652,647,672,688,657,673,659,653,636,678,623,673,633,665,684,686,673,656,679,660,671,678,662,684,650,650,657,665,674,696,613,618,588,581,618,620,626,598,581,587,620,598,623,612,592,600,641,605,601,594,600,616,583,604,604,596,605,583,619,579,608,596,603,547,598,601,571,586,662,592,559,588,595,585,609,645,557,605,589,629,596,626,597,599,646,651,597,631,619,584,635,562,564,586,626,547,627,637,678,639,594,605,613,612,590,549,607,578,620,608,619,580,641,656,618,576,708,561,564,560,560,556,552,577,577,576,560,578,571,576,543,550,558,583,560,584,562,549,576,575,560,558,553,565,566,566,573,573,571,567,556,558,554,560,565,555,552,562,561,554,555,569,586,606,598,567,613,581,551,585,552,604,621,566,610,610,612,639,596,592,636,620,600,622,636,629,613,631,582,571,548,568,622,613,564,549,555,634,607,614,653,607,576,607,622,698,565,558,581,558,567,560,577,564,561,567,566,567,561,564,580,561,579,568,558,574,561,559,564,559,572,569,569,564,565,570,576,567,559,569,563,564,562,559,568,560,559,571,589,612,649,685,644,670,628,604,590,694,620,628,609,657,678,590,703,619,674,619,683,677,675,655,619,643,625,632,611,604,642,594,620,601,712,585,668,612,577,592,641,643,677,675,595,670,646,585,556,663,656,661,677,701,671,663,625,682,701,671,680,660,663,636,661,661,694,657,668,671,701,652,663,648,666,692,645,643,660,662,648,681,684,641,672,664,662,653,701,665,659,677,727,640,633,622,614,632,648,649,659,627,664,645,651,638,658,614,641,659,654,629,627,666,611,661,645,653,645,611,639,615,651,659,630,646,647,621,672,640,654,624,637,644,599,602,584,587,590,582,587,583,587,593,603,569,588,598,593,589,589,604,582,583,569,595,590,583,592,608,586,597,593,595,580,597,588,589,574,598,576,573,592,599,595,588,604,600,581,599,585,605,592,591,589,585,600,601,599,605,596,595,597,598,590,603,593,595,595,611,600,577,574,591,579,616,592,587,606,574,579,593,595,596,605,594,597,603,595,602,589,600,575,597,611,589,586,607,609,564,744,712,753,737,745,734,732,747,723,754,726,713,735,751,711,729,718,752,738,711,723,729,724,727,733,712,724,700,740,745,717,733,726,707,707,712,743,748,730,730,723,697,715,701,719,706,733,712,717,703,714,706,707,714,708,710,708,700,716,710,702,729,707,706,705,712,708,710,702,692,705,715,707,717,719,711,735,696,717,711,695,682,718,683,692,686,692,702,682,685,732,712,714,698,681,707,669,688,714,665,682,709,668,672,701,642,686,686,682,701,686,696,669,703,713,728,693,683,674,717,696,697,699,676,680,679,687,672,688,677,688,707,689,678,700,688,679,657,661,682,686,645,671,661,680,682,680,640,640,679,683,668,670,688,686,684,712,648,702,665,685,669,691,637,643,674,685,674,675,677,680,666,681,688,668,721,678,678,681,691,707,658,686,669,709,686,691,688,667,676,678,675,696,675,657,667,711,671,683,670,690,686,675,674,685,708,676,697,703,679,671,696,684,708,688,672,688,656,695,723,702,670,692,682,693,694,676,685,672,654,666,671,675,742,674,668,630,709,690,667,695,689,680,715,680,655,660,665,731,705,695,658,743,722,687,695,725,665,662,702,706,706,682,653,696,716,688,657,654,627,656,678,652,666,667,686,662,663,644,630,630,682,676,648,637,662,660,661,657,649,668,661,675,677,650,654,667,634,653,689,642,627,665,673,701,660,670,647,670,671,642,676,670,682,661,702,671,673,676,698,680,714,700,755,696,700,672,723,695,680,697,725,685,726,680,721,712,654,714,693,673,718,717,671,699,716,710,661,701,705,636,716,725,718,707,709,697,706,709,702,728,711,709,737,680,710,707,714,725,722,746,707,710,692,727,731,713,716,722,727,725,725,716,719,703,721,715,744,718,712,712,691,735,722,706,708,676,705,704,655,684,702,713,687,697,683,676,699,689,687,689,695,698,686,691,661,693,684,681,693,690,696,662,678,721,711,694,699,668,686,697,668,686,705,669,683,660,693,689,685,687,677,678,699,683,648,662,706,680,678,693,674,661,687,671,688,670,675,696,673,678,672,699,676,675,661,687,669,654,681,655,666,703,670,681,652,704,672,675,680,664,677,673,661,669,675,703,680,681,674,686,682,660,670,675,665,685,676,660,668,701,675,677,677,669,694,712,669,671,693,693,680,712,692,697,697,668,673,683,661,715,694,702,720,657,663,632,675,681,635,676,705,707,677,688,739,745,633,685,678,634,706,730,694,694,692,663,729,676,710,678,693,662,668,704,714,674,679,620 0 261.607313 0 0 0 diff --git a/test/rna_prefixno_slow5.exp b/test/rna_prefixno_slow5.exp index 92ffe7f..3b484e1 100755 --- a/test/rna_prefixno_slow5.exp +++ b/test/rna_prefixno_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO002 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 3000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna002 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 2048 -263.72473 548.788269 3000 70084 624,617,661,628,581,616,629,624,621,630,615,624,599,581,606,617,620,639,612,590,599,615,589,597,647,634,629,606,643,612,643,604,614,634,634,653,593,613,529,538,526,535,534,535,525,535,536,537,526,550,534,525,531,540,530,538,541,524,546,530,530,539,521,547,522,536,534,533,540,543,539,522,536,537,539,523,536,526,525,534,515,527,517,513,531,512,516,521,526,522,510,517,530,519,513,500,505,519,511,523,521,528,541,502,520,528,520,527,528,528,519,521,518,523,529,527,530,510,530,525,530,527,515,686,689,716,712,723,670,699,687,710,674,704,715,704,667,705,700,717,665,711,689,722,729,655,709,719,681,749,700,738,713,683,702,682,694,684,658,688,660,716,653,683,711,713,686,679,683,696,686,697,672,698,656,705,698,682,680,683,672,689,705,674,700,692,722,695,690,680,685,681,698,686,696,685,705,684,702,672,682,709,713,690,708,682,685,684,671,690,699,723,653,654,646,668,653,642,638,678,651,653,675,698,661,662,643,666,656,686,650,654,657,646,642,656,670,627,638,664,669,652,656,658,672,667,662,638,665,644,674,685,652,650,646,582,597,569,571,569,580,583,584,587,583,582,571,586,590,584,553,567,576,584,575,581,572,569,590,574,580,588,593,581,588,579,593,579,578,588,579,575,583,594,585,691,699,702,699,677,711,704,705,688,708,721,685,708,684,686,690,698,686,692,718,715,713,693,701,710,716,684,707,701,701,715,694,688,709,706,699,695,693,700,685,685,680,679,687,660,692,692,664,687,682,689,682,658,664,673,663,679,682,678,677,655,681,666,661,670,677,688,666,653,632,659,678,664,666,686,666,675,683,666,669,668,686,685,695,622,607,604,613,624,594,617,630,613,622,622,594,641,631,599,609,609,622,608,623,625,604,611,624,623,616,601,605,643,613,605,596,634,615,624,625,615,645,614,608,598,635,628,625,597,568,580,579,596,595,579,572,581,586,589,590,581,608,571,570,607,574,566,575,584,579,593,588,585,583,574,575,580,568,580,594,562,578,588,582,593,589,575,593,590,561,555,573,535,561,538,563,560,561,552,560,556,547,554,542,538,554,557,561,547,560,541,545,563,562,550,553,557,554,548,552,544,537,546,550,539,561,534,566,562,547,551,540,560,560,693,686,714,704,696,701,703,684,706,688,711,692,729,708,714,696,688,704,716,703,701,715,736,702,706,681,686,701,717,717,718,704,694,703,705,700,691,700,707,676,701,696,673,666,685,655,667,659,679,660,683,685,665,673,656,673,673,664,671,660,662,672,677,665,670,671,663,652,675,650,652,683,675,657,678,678,677,684,636,660,672,667,673,690,685,675,668,593,599,601,614,629,610,599,597,634,601,621,618,629,592,603,597,595,586,593,621,625,601,617,600,599,623,635,617,604,606,602,601,606,616,614,622,609,610,602,634,601,613,624,632,598,751,701,716,748,739,748,761,720,745,753,695,716,754,702,675,748,705,767,750,771,732,736,706,700,719,719,700,680,741,712,692,724,755,663,742,701,759,684,690,731,721,722,697,729,712,710,709,704,670,703,692,724,712,702,741,717,731,716,718,675,709,731,701,722,727,738,736,703,723,708,711,712,713,736,725,757,676,713,701,685,702,692,679,656,712,702,678,694,681,687,645,705,684,687,689,704,690,704,697,718,694,681,717,729,687,700,680,668,714,693,664,704,682,659,718,675,641,660,645,665,623,625,612,675,653,616,619,631,665,632,638,684,637,700,661,654,656,652,654,656,681,629,641,618,633,683,625,641,639,626,658,655,659,675,637,634,637,651,647,600,613,591,601,610,575,589,581,605,604,599,594,605,597,606,590,594,579,602,593,591,592,593,612,585,598,599,601,585,592,597,610,588,598,598,600,588,593,592,589,585,621,619,706,729,661,697,700,742,746,699,743,729,721,743,751,710,740,722,732,756,698,677,717,752,691,697,764,731,701,692,661,730,738,730,679,697,740,665,735,678,743,694,735,723,746,731,697,731,730,696,696,703,701,707,718,711,719,721,725,685,704,724,673,692,702,704,705,713,721,727,734,716,718,740,687,685,716,713,693,701,710,706,698,707,694,705,696,746,714,691,695,705,727,719,688,693,733,686,659,652,648,640,671,670,629,672,634,663,650,646,643,650,649,689,643,645,645,654,657,671,665,654,669,639,640,677,637,623,670,691,668,635,659,639,655,681,646,656,654,681,633,656,628,675,692,690,652,697,689,631,670,700,681,677,678,633,663,700,645,677,680,676,699,637,673,704,699,691,649,683,681,674,661,627,706,686,671,654,675,672,678,588,606,591,617,609,611,587,592,585,612,631,611,599,611,601,606,600,606,618,606,621,610,603,616,611,599,610,598,586,620,609,607,601,616,598,601,608,603,585,605,536,622,603,601,620,627,583,568,608,654,589,569,619,624,628,582,570,632,581,591,613,600,626,570,584,582,634,633,563,661,581,564,576,611,610,565,622,554,568,616,615,557,650,622,539,596,580,575,600,570,588,593,587,593,584,587,592,591,568,595,595,571,583,593,593,592,600,603,582,591,586,568,615,587,591,588,584,580,593,565,594,587,582,568,559,566,559,573,579,567,568,569,565,551,574,566,561,566,566,567,559,578,559,561,570,574,576,570,565,558,561,570,573,575,559,572,562,564,559,566,565,564,565,563,551,559,572,561,556,563,568,580,568,552,556,568,553,528,562,552,545,553,540,536,550,550,545,542,555,548,537,549,548,557,543,541,548,550,553,551,548,550,547,537,540,553,559,550,554,544,557,547,554,545,551,547,541,533,550,552,552,537,717,666,690,681,676,689,588,704,661,674,671,706,664,686,638,652,707,651,643,658,689,665,712,655,697,673,633,680,689,661,657,686,692,702,681,663,665,671,684,666,667,691,639,736,640,589,619,596,593,597,584,604,617,604,599,577,583,588,608,568,585,590,604,589,584,582,611,561,574,598,607,584,592,595,578,603,578,614,611,615,604,570,568,617,587,575,591,597,555,580,577,563,579,583,571,585,566,559,583,569,586,561,568,571,568,600,588,578,552,558,587,552,573,571,553,548,587,598,598,562,562,592,595,558,571,580,569,568,543,574,568,557,687,662,676,680,670,677,692,675,670,678,665,685,659,660,685,683,652,674,683,674,676,670,668,702,675,666,657,682,684,683,670,685,696,683,662,678,697,680,676,689,725,681,675,673,675,682,681,679,687,680,683,665,676,658,677,674,673,674,672,703,701,676,701,655,664,675,671,675,672,693,678,683,695,687,686,672,679,670,688,663,668,673,680,677,679,755,718,732,749,737,747,745,710,735,735,736,768,747,752,735,740,753,739,730,757,755,750,762,769,736,703,767,745,763,730,765,707,741,744,792,739,736,731,765,713,757,776,715,726,737,758,758,736,749,717,710,736,713,708,702,754,715,714,713,724,719,800,737,728,729,726,741,751,711,769,714,742,739,779,751,710,713,710,734,714,706,746,737,736,671,710,688,673,689,744,713,680,700,688,691,725,682,702,695,709,692,719,713,710,696,686,717,703,720,741,728,682,706,728,697,695,665,695,682,700,723,665,663,693,684,609,613,602,628,646,603,613,629,625,605,620,644,610,615,634,604,595,630,644,629,606,625,618,606,598,637,596,633,630,640,610,630,617,618,624,621,598,633,634,617,632,604,579,556,578,581,570,577,574,574,570,563,558,557,584,568,567,563,564,577,574,565,558,577,582,570,567,567,575,579,563,551,563,562,567,553,575,554,575,588,572,562,579,564,525,521,516,525,530,523,510,531,523,525,528,529,524,531,523,537,532,542,537,528,531,531,529,528,527,537,530,541,525,514,512,540,521,544,524,543,524,533,511,507,539,517,534,533,528,528,534,560,538,530,550,556,545,532,561,547,554,543,546,549,519,533,527,547,548,539,534,542,539,558,547,546,543,535,545,551,545,539,542,549,548,551,534,544,542,537,538,552,562,543,549,549,562,546,553,533,550,547,563,560,548,558,551,553,553,552,548,564,558,568,556,543,540,553,560,539,549,553,566,564,561,546,555,558,548,556,568,548,549,549,542,552,561,545,546,559,543,542,548,558,564,543,555,542,545,564,543,558,557,556,555,545,546,561,544,541,559,561,536,563,545,558,544,547,551,545,535,542,524,534,543,536,558,549,553,535,543,516,516,522,530,535,534,537,525,517,517,541,518,527,530,526,515,515,532,528,522,526,508,523,524,531,532,522,513,527,524,523,521,532,527,545,536,535,525,517,510,500,508,508,505,500,503,512,490,503,516,506,501,499,508,495,500,491,514,513,515,494,497,508,500,501,482,499,498,528,505,520,517,502,518,492,493,497,486,500,506,496,506,514,494,487,511,494,500,520,506,505,498,506,506,512,514,500,523,509,498,501,510,494,507,502,498,524,505,526,508,503,505,522,501,507,495,504,509,483,504,508,496,521,498,500,523,649,658,634,640,647,633,628,648,661,657,650,639,668,609,630,619,648,639,643,660,645,644,660,639,679,638,641,652,644,628,637,628,639,656,656,644,654,674,661,651,674,655,635,661,556,579,577,553,554,557,548,551,560,526,560,566,559,562,569,559,571,583,565,560,532,564,565,557,596,572,565,559,558,563,577,569,556,569,568,558,550,544,588,552,557,553,557,569,550,556,542,548,574,541,548,561,553,565,566,562,540,556,604,550,547,575,535,534,559,585,557,528,560,562,593,561,553,564,560,558,541,557,561,545,531,539,568,587,557,579,574,531,603,591,596,586,606,603,592,599,590,590,595,595,591,591,607,607,615,593,606,613,597,598,610,594,586,604,596,592,598,596,596,595,597,593,601,594,604,600,601,615,587,571,586,584,591,577,571,586,571,573,604,582,575,586,578,576,577,562,583,590,576,577,588,584,572,578,558,580,564,582,587,603,591,585,582,571,583,585,568,582,580,572,583,573,590,661,676,666,696,649,674,667,666,676,677,665,661,656,650,655,696,700,673,678,682,653,680,646,676,658,643,667,672,661,666,674,672,651,676,696,676,687,669,649,656,687,694,659,688,646,599,612,613,621,620,609,628,624,618,615,628,635,607,599,610,599,625,616,609,615,612,611,589,602,608,620,603,623,618,620,637,615,620,626,610,613,615,606,611,637,626,611,582,582,578,578,580,574,587,572,594,578,578,601,583,571,579,588,571,584,563,588,569,570,572,569,578,559,573,581,569,575,587,571,591,585,556,569,573,563,580,622,675,646,644,612,636,622,604,628,645,633,607,640,606,600,647,644,614,590,623,619,646,639,598,636,613,625,611,621,614,620,621,620,603,632,624,630,622,610,653,600,603,598,623,631,647,621,606,617,617,607,618,611,620,621,602,632,602,611,621,608,609,607,618,603,610,611,619,603,609,612,605,602,616,610,617,624,611,602,607,620,604,620,616,616,621,627,642,610,596,605,568,581,578,572,574,590,570,572,590,588,587,571,575,570,581,582,585,582,560,566,580,570,564,579,565,564,572,589,585,583,583,575,584,580,571,588,563,576,567,587,575,576,574,683,723,685,692,672,637,724,670,657,601,640,721,648,689,691,684,659,618,655,713,697,681,689,673,667,650,715,693,629,673,678,686,643,711,664,677,656,668,707,713,709,724,704,702,728,706,722,734,731,710,705,729,709,688,707,689,723,713,708,714,711,712,715,701,694,711,690,693,702,721,675,677,689,719,712,707,704,709,698,713,641,639,662,649,630,652,616,657,625,645,648,662,654,642,650,637,651,655,644,688,637,661,630,628,643,639,630,651,666,666,650,665,654,634,637,617,659,635,657,647,666,642,643,643,558,579,587,586,563,570,578,597,592,593,596,592,565,586,585,572,574,589,570,592,566,565,577,572,566,583,576,582,587,597,582,590,591,552,575,579,589,572,573,574,574,566,660,703,638,727,679,634,682,636,657,676,699,687,671,672,671,627,747,702,670,683,680,741,738,616,671,685,674,673,651,677,706,666,659,730,684,704,658,652,656,690,700,677,702,627,585,721,699,712,706,707,711,722,705,703,703,715,684,736,704,718,726,716,714,715,722,714,703,721,716,723,708,707,713,713,709,721,702,737,707,728,632,559,589,609,612,563,561,610,607,610,611,616,575,612,642,591,633,588,594,604,582,588,552,596,612,609,618,589,612,593,591,650,609,597,577,604,605,573,591,581,564,601,586,570,591,586,585,557,576,568,568,562,550,589,596,592,557,557,563,578,564,576,579,579,561,569,573,578,575,585,562,558,583,585,577,566,572,597,639,627,632,621,611,627,610,625,619,646,630,606,635,638,621,622,610,616,637,603,639,623,607,623,614,603,624,613,633,619,627,644,602,619,597,607,631,617,606,657,607,583,610,594,621,601,608,608,602,617,606,595,589,605,607,584,610,622,612,592,598,603,603,613,593,612,610,588,620,628,604,610,614,594,618,621,602,607,634,592,604,577,584,600,590,583,592,575,588,585,582,577,598,587,577,578,590,593,598,579,604,589,592,581,593,584,590,575,588,583,594,584,585,583,584,596,576,586,581,581,610,590,589,601,571,586,591,602,588,601,570,589,583,602,600,584,590,591,576,576,585,592,587,591,580,610,603,586,601,580,593,590,575,582,594,597,582,583,588,587,576,590,587,550,551,554,551,553,551,548,549,544,555,555,552,561,546,549,550,552,557,543,556,560,551,556,555,558,556,556,555,556,545,543,561,545,541,542,554,567,550,545,546,550,562,549,559,540,525,519,531,536,534,535,531,544,514,524,526,549,531,539,527,532,531,516,543,518,527,538,529,544,532,531,514,524,538,529,532,529,524,527,523,526,533,531,540,526,548,659,663,676,665,677,672,672,678,674,683,683,677,668,686,686,673,655,684,670,671,675,669,683,658,669,646,669,653,669,683,674,664,666,691,659,698,652,665,667,680,677,621,672,632,660,643,623,639,645,638,633,641,644,649,636,660,647,653,619,640,635,629,625,651,623,647,638,652,636,648,638,648,654,634,660,633,636,642,663,642,635,641,639,657,650,640,650,639,643,645,629,605,615,625,603,642,622,590,626,627,645,629,602,584,622,597,614,631,615,627,606,611,619,619,600,611,629,622,615,601,639,610,621,631,644,618,598,636,622,631,603,625,615,572,579,571,581,587,580,568,579,575,569,579,583,581,576,573,588,589,586,569,569,586,577,578,578,584,584,566,569,575,592,577,597,565,588,577,583,571,573,579,575,577,589,581,591,574,571,582,592,599,640,615,655,606,595,615,676,608,642,636,652,630,604,604,626,586,616,633,585,592,597,633,597,702,602,614,618,585,637,638,638,593,600,593,613,644,599,616,602,614,595,607,603,623,613,619,617,609,620,645,619,620,608,623,609,612,611,622,605,623,608,624,623,618,613,621,612,613,617,605,608,605,614,639,629,610,610,608,613,624,625,588,573,580,573,570,573,598,554,578,575,573,598,573,581,580,582,571,590,581,582,589,586,576,582,576,591,569,584,580,563,581,584,587,576,580,589,572,584,577,574,582,559,558,568,560,552,554,565,571,562,562,569,571,549,557,545,552,540,546,552,575,559,554,546,554,551,564,544,551,559,571,545,556,552,549,563,561,569,560,550,558,547,548,526,566,550,559,564,551,572,546,554,544,551,565,551,559,555,546,564,558,562,557,558,567,558,552,554,554,557,570,550,566,555,562,561,556,557,557,556,547,565,568,557,531,603,585,613,598,567,607,645,601,605,633,648,615,617,604,608,607,614,588,612,649,598,617,609,610,623,622,586,617,620,636,635,602,615,598,658,650,582,626,616,616,606,565,578,569,567,581,594,576,572,574,590,577,587,571,574,569,575,588,558,580,570,575,570,584,571,574,592,585,564,568,594,584,563,572,592,548,563,559,580,580,597,569,580,568,607,669,632,639,675,626,650,649,646,612,623,653,604,611,647,617,570,661,588,640,626,664,623,642,661,642,635,641,645,665,629,636,650,617,644,621,629,598,641,650,643,649,622,624,651,638,699,708,691,677,686,691,692,680,671,700,690,701,687,689,676,699,683,661,687,708,688,715,684,683,689,722,687,686,683,681,683,697,700,706,677,699,695,707,689,690,672,657,663,678,675,684,674,696,687,685,662,686,672,688,672,664,677,692,674,687,672,677,673,666,661,658,669,685,662,694,661,667,676,668,675,665,682,677,690,677,673,660,694,714,722,668,700,705,730,709,714,710,731,710,740,719,714,722,736,734,729,746,725,724,756,721,691,725,697,742,699,692,721,739,744,697,664,743,696,723,744,675,709,713,738,699,726,677,697,712,697,699,720,693,682,710,712,682,701,701,709,672,717,691,725,705,699,700,698,713,712,706,704,716,706,724,685,713,665,687,693,704,694,698,684,708,701,694,632,700,676,681,704,687,677,689,624,759,683,692,681,688,688,642,713,681,727,719,662,695,755,719,717,674,640,690,662,657,688,641,718,707,706,728,727,675,686,736,684,658,667,652,658,648,647,642,653,668,671,661,653,667,637,627,665,637,657,629,659,659,653,645,670,666,636,668,657,665,640,674,669,644,627,670,683,673,653,663,648,658,636,671,639,650,736,703,732,709,703,730,699,700,730,686,693,701,677,688,707,718,728,673,673,678,693,711,702,701,692,678,719,663,710,691,738,686,709,682,703,697,686,666,680,669,684,698,709,741,720,706,722,728,720,704,697,727,704,721,710,723,733,731,713,750,747,727,722,702,724,735,708,742,730,728,707,720,746,729,732,728,742,724,718,688,698,736,722,646,654,632,648,639,612,625,641,631,641,655,629,641,646,625,671,642,650,630,636,660,637,627,639,636,649,641,643,641,619,631,604,637,636,628,625,670,661,638,640,639,640,631,621,628,671,651,672,672,618,602,663,727,655,632,649,710,651,581,678,653,689,672,648,681,631,672,661,674,648,640,665,711,645,705,647,630,634,672,637,636,691,701,649,622,697,670,692,716,574,681,673,669,675,696,664,689,699,675,674,656,660,664,653,661,670,670,673,687,669,653,675,674,652,688,670,663,666,671,684,680,673,650,649,676,682,651,659,668,665,674,669,678,651,667,728,674,702,672,669,669,690,671,670,645,666,703,646,654,693,683,682,642,698,703,653,666,681,681,660,679,680,700,689,658,717,679,673,665,654,648,672,680,672,577,597,586,573,590,569,586,537,595,571,596,604,585,567,569,594,608,597,580,605,593,554,601,590,592,579,587,578,546,566,570,590,593,601,599,578,584,603,602,563,566,552,567,571,551,558,566,554,549,564,541,560,571,558,558,557,558,549,546,533,547,570,549,549,558,552,561,562,557,565,544,575,559,563,576,554,565,554,558,547,570,597,542,548,529,541,539,537,545,549,551,531,545,541,541,539,539,542,546,549,551,539,545,533,535,547,538,535,538,541,536,542,548,544,543,530,529,535,541,539,542,530,531,546,528,544,544,542,555,540,535,532,530,656,707,674,642,671,679,649,690,658,663,674,643,656,676,666,659,686,653,653,653,678,677,653,679,663,646,687,654,653,650,665,684,687,673,655,668,666,668,672,672,675,565,563,604,594,586,575,615,580,584,596,587,586,599,586,579,595,605,577,589,581,584,582,601,595,572,582,587,572,591,595,582,591,582,599,590,562,590,606,602,576,582,654,607,613,567,595,616,586,589,610,544,576,553,570,627,550,566,577,560,636,573,552,576,636,525,639,609,632,579,595,574,558,584,628,569,641,631,570,532,578,568,566,561,559,597,661,611,636,601,576,579,582,582,580,557,570,573,588,567,574,575,570,573,576,574,572,565,578,581,573,564,578,563,575,562,562,588,586,561,571,572,590,571,581,592,565,571,566,590,570,574,610,686,644,660,654,665,647,677,681,705,678,712,671,684,738,693,675,609,656,658,613,623,660,640,695,645,671,642,701,658,670,699,669,675,686,695,658,720,687,676,656,675,676,635,675,681,659,665,667,690,695,671,677,685,660,659,676,672,685,663,674,671,673,662,652,683,668,665,666,670,682,675,678,671,666,677,677,690,676,667,665,678,682,671,684,684,660,679,678,754,765,726,678,707,699,712,701,739,754,696,766,703,740,720,711,705,731,702,708,738,702,726,730,728,728,698,734,696,714,674,719,713,697,741,713,744,693,708,731,737,766,727,744,687,733,698,696,715,697,723,701,713,726,711,712,709,720,728,727,714,697,709,724,718,699,737,728,693,703,727,707,706,712,717,703,708,718,708,718,706,735,753,708,667,704,689,698,706,675,679,681,666,669,695,703,668,700,695,704,712,698,664,732,694,695,693,692,670,707,686,707,677,711,711,707,672,687,696,685,708,679,715,677,691,685,692,696,693,669,684,676,679,683,684,660,701,676,652,695,679,688,694,665,677,669,704,663,679,667,678,685,663,682,671,670,659,657,660,708,695,667,665,650,672,703,631,679,669,679,665,665,687,675,667,705,699,686,668,682,686,642,660,688,681,682,699,643,695,683,677,680,689,687,680,684,672,678,696,690,697,659,675,685,667,644,678,686,700,667,676,659,660,665,663,696,675,682,673,687,696,654,664,669,675,662,681,671,675,672,680,661,695,682,692,655,698,687,664,686,641,665,640,673,681,693,667,664,677,672,668,665,676,672,669,687,689,701,691,674,660,677,668,673,689,671,690,677,688,660,668,677,653,691,699,701,701,655,701,686,678,684,677,654,689,690,649,686,674,670,659,687,698,684,667,668,686,682,654,694,677,667,692,617,619,614,614,603,611,610,627,613,654,618,617,657,610,623,617,597,600,607,626,628,622,612,616,632,635,631,619,581,586,618,603,591,619,624,634,616,614,621,634,620,638,613,601,613,655,624,632,700,695,611,640,679,581,652,574,682,627,609,656,678,673,666,629,662,679,622,647,569,668,653,627,612,611,657,600,649,595,619,668,596,654,599,644,724,661,667,650,644,693,705,699,704,679,672,700,658,682,685,688,689,670,689,697,695,679,710,702,701,684,710,684,675,713,713,708,704,686,674,687,664,701,676,696,712,673,690,694,677,671,671,716,706,678,675,684,691,697,678,701,693,679,675,672,700,682,695,689,669,667,698,685,674,673,695,660,668,695,676,673,670,710,674,674,671,664,692,683,704,650,682,669,700,686,699,653,592,621,612,634,604,620,639,624,633,618,610,641,615,597,609,601,620,627,612,598,596,618,602,590,607,626,616,600,620,620,612,594,625,634,593,610,612,597,620,613,567,646,571,563,586,589,594,589,569,587,564,576,574,576,570,558,560,568,583,574,555,581,565,564,589,565,562,574,542,548,576,563,570,554,592,564,573,577,576,550,588,589,596,564,578,562,599,562,575,715,714,763,721,718,730,693,747,721,703,714,697,712,718,743,712,748,729,750,766,724,712,712,716,737,715,726,721,717,733,735,724,722,728,725,711,666,686,734,725,737,710,705,729,696,754,669,643,658,674,679,638,663,654,634,659,622,691,644,660,651,658,651,626,666,647,664,644,665,642,655,667,677,672,663,689,684,646,657,643,651,674,650,648,649,649,683,629,628,668,612,629,633,604,683,616,586,619,606,603,593,623,578,662,594,676,651,578,576,642,651,599,619,632,628,616,615,631,613,575,614,564,600,634,671,671,572,628,576,602,568,690,681,701,703,712,683,700,701,698,682,692,691,701,684,686,688,690,707,700,703,697,708,681,706,703,689,685,681,684,694,697,715,699,699,711,689,704,696,704,703,682,662,718,669,695,682,695,688,692,688,679,705,689,665,723,694,694,697,682,699,697,702,691,671,713,685,682,691,694,679,670,671,681,676,687,679,681,689,684,685,682,676,684,681,673,691,686,736,685,654,657,674,691,668,691,652,677,685,693,685,700,670,647,687,653,664,691,660,687,696,662,682,681,692,667,679,682,706,669,660,647,711,690,682,678,683,674,665,669,662,686,674,649,683,661,666,706,681,683,675,666,696,682,668,658,665,694,658,671,677,671,662,660,675,686,668,662,670,675,683,701,685,635,674,672,665,688,694,687,657,698,686,684,704,672,690,676,680,660,691,694,656,698,659,662,659,675,692,692,698,698,700,658,650,691,670,679,662,674,679,654,660,694,664,672,682,671,649,669,685,684,711,668,687,683,675,660,677,668,701,697,679,671,679,715,681,719,678,673,669,706,680,686,697,692,691,689,686,707,701,700,686,668,686,703,690,686,690,677,693,699,691,694,671,690,696,718,691,711,692,672,690,663,694,589,643,599,609,563,590,638,623,598,611,635,617,567,564,617,609,567,605,617,625,564,580,594,595,599,600,624,636,609,639,573,562,504,615,586,623,588,592,577,587,535,664,551,604,547,597,622,615,616,620,593,593,587,562,648,590,568,609,626,582,610,596,638,617,589,611,637,604,607,618,564,631,598,641,594,603,618,610,606,595,602,597,603,524,519,535,533,540,529,544,522,510,524,527,515,538,527,529,516,526,530,544,537,525,527,526,530,528,508,526,524,517,530,528,533,524,538,530,531,531,530,515,537,539,523,527,518,522,540,515,532,523,655,659,642,652,655,659,662,642,652,657,653,665,659,634,668,660,644,630,640,668,649,658,657,660,649,636,642,635,666,654,646,653,679,659,641,645,649,639,652,652,657,638,667,699,663,680,715,691,652,710,667,660,657,658,679,677,673,661,669,645,670,718,678,655,712,694,675,714,667,663,688,651,674,647,660,661,651,675,702,659,668,652,672,701,685,654,673,645,693,678,694,712,656,718,688,782,685,721,747,654,692,672,681,668,712,659,697,700,668,731,704,698,689,684,709,682,716,681,699,660,681,685,733,729,654,691,683,727,681,714,640,678,679,697,685,663,661,621,670,633,634,672,650,665,679,663,660,673,643,688,671,647,658,673,660,654,658,644,646,669,663,663,652,661,646,638,635,663,659,652,665,665,638,653,635,654,625,644,670,652,662,635,686,695,749,701,707,680,692,670,666,683,703,680,694,692,699,696,687,700,700,724,689,635,691,705,706,677,668,683,691,642,732,703,697,707,710,686,666,713,680,701,684,679,683,696,719,709,713,709,711,685,696,690,700,679,734,692,702,709,698,705,697,700,702,689,694,696,689,710,692,685,717,691,692,696,722,706,705,698,718,713,719,699,700,719,689,715,702,716,689,696,684,648,616,656,652,633,623,626,629,698,604,630,609,652,606,593,606,671,588,667,587,628,692,628,661,604,630,633,573,608,649,614,631,647,626,645,645,609,683,652,607,573,606,565,572,592,582,591,554,580,573,600,554,570,578,552,588,575,594,544,586,621,599,544,545,551,559,562,568,596,573,598,548,576,590,586,585,575,589,601,600,626,583,606,598,574,555,573,548,566,548,561,576,563,553,555,569,546,580,549,558,563,567,558,556,558,552,552,569,569,549,559,560,547,553,580,579,561,562,551,557,552,571,523,543,541,571,557,552,556,548,552,549,536,545,551,556,538,545,550,551,544,554,539,547,544,537,546,554,546,554,546,541,548,544,545,541,544,531,540,546,553,551,559,757,725,708,699,715,679,723,711,739,714,710,743,710,713,648,712,651,724,783,722,646,712,754,684,768,722,769,684,681,728,716,637,763,722,692,677,704,737,697,729,703,716,706,737,733,721,728,730,703,707,704,722,708,707,696,714,713,706,735,718,713,711,714,716,720,734,704,716,728,730,716,721,722,725,730,727,718,696,717,722,727,730,722,691,721,622,618,603,626,664,595,599,618,620,644,638,628,638,642,625,625,615,620,616,629,637,631,629,625,635,604,618,615,600,616,610,602,627,621,623,632,624,621,629,603,603,562,571,567,547,563,572,557,559,567,581,558,560,555,555,557,555,557,544,568,561,551,574,560,583,566,560,559,566,574,558,557,554,577,562,550,550,562,571,566,555,566,566,606,598,619,580,575,577,605,576,607,596,584,597,618,600,608,596,586,566,590,609,576,588,581,565,593,600,594,636,619,578,621,566,582,601,579,591,593,559,580,607,608,591,654,558,549,555,539,551,548,549,569,561,569,550,564,563,551,558,560,553,571,563,574,562,547,536,562,555,558,561,566,559,554,546,552,542,560,549,554,544,551,562,550,556,566,554,537,547,574,568,568,578,581,561,574,570,573,570,556,573,565,551,571,576,584,555,566,575,568,559,561,563,571,553,589,575,561,589,555,569,595,576,550,556,571,589,556,574,610,679,624,657,671,671,692,659,662,656,678,658,685,711,670,692,653,660,692,652,689,692,644,646,666,687,689,681,667,673,632,657,686,678,693,663,661,724,660,604,590,605,588,601,587,618,600,629,599,586,620,588,600,609,607,621,613,609,615,621,611,610,622,613,608,602,605,613,611,602,640,612,585,609,618,608,598,583,619,598,615,629,605,548,568,637,663,627,670,623,583,594,618,638,590,595,586,577,585,573,587,608,593,618,660,577,624,643,602,637,618,611,611,600,537,588,605,617,636,609,639,630,587,576,598,595,581,586,593,608,583,596,589,598,592,604,583,596,593,569,576,567,598,581,608,590,579,575,587,595,579,600,595,594,602,577,577,594,587,588,575,580,570,583,594,557,546,559,566,544,531,540,548,541,557,536,559,561,571,556,554,544,553,554,534,540,565,543,546,550,556,545,550,546,564,568,552,542,557,568,554,555,571,559,552,549,549,547,567,555,550,555,558,560,558,555,564,565,552,567,568,567,523,569,578,568,569,557,571,552,561,564,546,572,550,560,563,563,569,549,575,571,540,549,561,573,688,704,695,680,701,712,721,690,698,704,694,710,701,717,697,689,728,676,703,704,700,687,695,736,688,677,719,677,710,694,730,721,702,720,734,723,697,685,687,725,732,719,656,630,652,649,627,627,639,638,648,643,651,644,637,644,636,651,661,645,625,639,653,672,639,641,688,630,657,624,663,654,651,681,664,636,667,655,641,653,662,656,647,590,611,611,587,584,606,595,596,592,604,598,576,596,596,607,609,595,604,582,593,594,587,617,615,593,603,613,601,605,610,586,598,596,591,591,620,609,609,581,589,585,608,594,608,561,549,569,558,561,568,583,550,560,560,570,562,559,563,551,568,568,570,561,570,555,568,574,568,565,575,574,559,552,561,563,549,560,564,562,561,573,565,565,558,560,562,553,578,573,553,568,555,550,560,567,563,563,552,564,578,577,570,567,569,561,567,564,555,556,552,564,554,565,558,565,577,559,563,548,559,564,561,550,570,566,565,572,584,568,570,566,558,570,556,688,718,669,658,686,696,670,667,672,673,677,675,684,658,685,685,675,688,707,668,670,699,667,701,686,688,680,690,692,666,682,686,695,687,672,710,682,668,678,684,701,685,683,674,682,688,631,665,653,690,660,692,682,663,660,686,646,691,659,679,678,656,656,616,673,666,668,699,670,656,669,631,672,669,662,704,646,694,658,691,682,682,679,701,690,670,616,640,618,622,636,634,625,619,613,629,638,589,648,629,616,619,641,613,627,633,617,612,649,633,630,627,628,632,621,636,639,617,617,609,595,623,598,589,633,625,617,629,628,608,623,657,603,590,629,595,623,628,591,606,638,628,611,611,671,667,550,675,584,577,606,599,623,618,601,571,600,587,631,630,615,721,629,601,606,612,602,578,606,607,586,593,597,596,588,591,588,611,603,613,603,587,596,621,596,601,593,606,605,606,602,582,602,602,605,602,599,593,604,590,614,585,581,603,586,598,561,558,557,581,574,560,589,552,568,582,572,569,567,576,565,567,567,579,569,579,571,566,545,564,569,570,566,552,553,579,572,560,577,564,573,570,570,579,560,576,566,555,545,553,548,546,542,555,550,561,549,546,544,545,554,561,548,548,550,549,557,572,553,569,554,552,563,548,559,547,565,543,557,548,554,549,543,551,546,563,552,543,558,565,560,563,551,556,539,552,548,572,548,549,546,543,564,552,545,558,549,544,546,558,542,553,558,544,566,566,553,563,555,554,556,553,546,556,557,550,556,548,560,557,553,551,548,561,557,552,679,672,699,696,697,687,676,679,684,668,687,686,695,705,664,698,682,690,669,689,711,677,667,690,687,691,691,705,674,697,685,675,655,670,684,690,689,679,670,694,653,686,679,694,689,704,692,682,652,661,643,650,698,669,653,661,689,671,709,662,678,696,669,695,649,664,692,667,660,661,695,655,657,658,664,665,683,672,666,672,661,670,700,663,663,724,621,591,595,631,615,660,579,630,636,609,608,568,624,643,622,633,585,636,571,604,594,625,631,627,627,646,594,613,591,632,591,642,628,634,575,596,600,608,594,633,612,608,590,561,572,583,573,567,570,565,558,568,578,559,556,565,555,558,559,569,559,569,573,566,575,573,574,564,577,566,568,578,574,573,561,578,558,558,578,575,566,559,565,570,558,547,559,566,557,549,555,554,561,560,551,563,559,549,564,554,561,561,568,559,534,559,564,548,557,563,561,556,556,558,550,572,560,546,550,561,563,544,555,560,553,563,555,529,657,634,631,639,657,640,653,645,619,646,652,645,641,630,672,662,629,663,670,647,648,648,616,678,658,622,656,675,644,654,625,650,669,648,663,656,642,648,644,667,647,671,673,649,653,675,668,677,657,682,662,672,660,672,659,683,674,664,671,665,688,664,686,681,686,674,676,652,666,680,673,651,659,679,663,683,666,695,667,673,654,648,675,687,594,597,616,612,599,603,587,615,601,585,614,576,588,594,615,620,588,613,599,602,599,584,595,605,617,625,577,596,593,588,590,614,599,610,620,586,605,605,603,614,608,619,596,699,731,657,672,662,705,692,651,763,712,734,678,731,695,697,703,730,681,638,667,633,697,692,723,663,677,665,718,687,684,726,673,677,725,684,687,696,680,697,685,738,684,720,732,713,723,709,707,718,725,720,710,739,736,728,693,749,726,695,755,725,718,715,724,731,715,715,701,721,710,732,724,702,756,724,699,711,716,718,725,725,734,720,730,720,680,622,644,631,639,642,634,612,635,629,619,648,678,648,637,595,637,625,644,614,623,626,605,632,652,649,618,634,620,639,638,610,647,633,659,627,674,676,561,553,549,539,567,553,540,551,543,556,532,556,545,567,550,548,547,565,527,550,543,551,543,553,556,551,539,556,541,554,545,547,535,551,553,533,541,549,550,546,539,578,561,548,571,546,557,566,547,578,574,565,564,546,558,549,544,551,595,549,569,567,588,553,575,570,572,574,560,563,558,549,553,576,552,565,544,559,565,567,540,559,557,717,726,694,751,709,745,744,720,730,738,748,705,729,726,715,742,740,699,731,727,742,743,754,703,755,712,708,732,726,715,740,732,730,738,769,745,759,750,740,720,716,747,734,647,664,627,650,723,647,674,638,662,597,659,629,698,620,656,642,650,646,683,678,642,625,669,650,632,649,657,650,682,646,640,661,653,640,660,676,656,674,648,651,710,673,664,538,557,552,543,525,575,538,559,534,550,565,568,576,612,572,574,562,537,549,528,536,552,545,554,540,567,578,542,527,563,575,539,525,544,587,556,539,539,570,553,540,544,555,532,526,529,540,536,539,541,525,529,542,534,525,534,530,537,540,529,533,536,533,542,524,539,519,537,545,523,535,539,526,536,552,543,525,533,528,535,537,522,541,537,520,523,533,537,533,553,560,554,558,562,565,548,546,567,539,556,535,545,557,556,564,557,545,548,554,553,562,549,566,555,544,546,532,559,572,554,549,556,557,564,568,569,555,560,578,574,572,543,566,555,750,740,745,715,762,714,724,728,746,764,759,733,709,727,728,739,715,714,728,724,709,719,749,733,704,722,779,737,754,754,723,737,758,711,742,719,744,747,746,724,738,738,752,729,724,737,719,642,655,653,640,657,678,695,662,662,647,657,683,642,663,648,682,652,699,668,669,666,689,663,617,694,616,648,673,665,668,672,670,654,678,653,700,701,660,648,621,659,672,678,707,675,545,573,562,532,555,540,548,581,550,525,565,537,555,536,524,553,572,540,542,540,547,574,530,556,564,515,558,581,565,527,546,515,535,540,565,538,494,530,548,531,577,543,537,528,533,510,532,532,526,530,536,524,514,521,533,546,521,542,527,534,538,525,530,520,511,536,534,543,527,557,530,546,538,536,521,521,537,531,534,533,542,532,509,487,495,504,513,489,492,496,490,499,510,495,499,497,497,491,489,491,502,491,495,500,492,493,497,500,512,495,485,492,489,510,497,501,511,497,508,499,486,496,507,490,505,490,503,486,490,499,496,494,500,491,502,486,489,502,504,488,482,503,503,505,487,494,501,500,496,503,493,501,492,488,500,511,509,488,497,487,504,490,498,501,501,502,500,484,487,503,498,519,514,510,519,500,517,512,515,510,511,504,510,523,509,507,523,503,508,514,510,507,507,503,513,525,519,509,513,510,505,512,521,502,510,503,516,515,515,513,539,562,555,570,545,546,548,553,553,568,545,554,549,547,549,558,565,548,554,570,562,544,554,564,546,557,551,551,558,574,564,557,552,557,540,570,556,550,549,546,560,557,546,556,546,541,546,548,546,537,544,548,544,545,551,538,540,548,549,555,553,564,542,555,557,553,548,558,542,551,541,547,544,548,546,561,543,559,546,538,565,559,560,580,581,587,585,588,582,584,571,569,597,600,584,587,587,577,576,589,584,606,588,582,594,586,603,570,585,588,588,592,583,577,581,588,574,558,595,602,610,604,605,610,600,585,595,592,617,625,597,594,602,603,612,591,606,600,588,600,601,604,611,607,583,591,611,575,621,603,591,616,598,586,606,599,600,597,598,596,598,585,593,751,724,741,744,752,752,720,727,765,738,722,761,736,758,775,758,752,745,736,740,755,734,732,734,734,745,761,744,763,748,752,711,747,747,721,730,705,771,752,740,752,716,685,694,695,712,719,714,732,741,770,677,761,722,729,724,724,691,695,687,717,733,738,673,697,690,698,710,746,708,721,738,720,729,676,692,707,714,729,731,685,724,734,672,699,627,647,692,691,666,671,680,679,694,702,650,661,655,674,664,662,681,662,711,661,701,685,670,658,644,690,672,683,655,689,666,660,690,703,650,709,559,587,560,553,554,573,576,576,581,564,566,545,587,568,574,582,568,541,574,563,567,569,585,574,592,562,586,588,566,559,575,555,572,563,563,568,558,568,591,567,575,586,571,556,588,695,694,689,710,683,711,699,683,697,694,687,664,687,684,705,693,691,683,702,692,690,710,694,692,712,695,693,702,693,687,714,676,692,706,685,675,713,686,701,709,667,685,664,648,665,656,644,653,663,646,656,647,667,650,669,645,662,628,665,669,642,654,642,639,657,663,638,644,652,664,671,653,655,664,652,667,668,652,673,646,655,677,669,613,610,634,613,608,638,651,618,606,625,629,620,616,608,619,615,627,632,608,613,617,621,626,637,625,598,635,615,585,621,604,595,615,623,622,624,599,637,588,632,636,639,616,602,629,634,570,584,581,568,580,575,570,582,572,581,592,579,587,570,572,575,577,577,597,585,571,586,580,569,569,580,578,569,575,576,576,577,575,572,588,582,580,590,576,576,590,561,571,577,571,618,648,610,640,628,636,645,642,633,660,620,651,672,650,660,649,629,614,632,663,615,634,651,627,623,645,633,650,657,636,644,652,624,627,655,639,691,623,655,607,664,621,615,614,675,668,670,703,684,677,676,701,685,681,669,647,703,681,692,683,670,652,687,680,682,678,674,672,686,681,711,693,673,678,679,694,688,672,693,688,691,672,677,671,699,680,686,691,670,665,724,778,778,758,776,768,746,751,766,750,723,780,716,741,717,731,747,791,750,768,733,756,738,721,717,785,756,718,752,721,775,763,756,752,700,740,790,752,745,746,747,688,700,709,704,728,711,706,720,710,745,711,700,705,710,719,703,694,723,726,737,735,763,697,713,740,688,731,689,740,721,731,728,695,695,736,695,776,705,745,754,726,739,707,759,684,694,722,672,707,672,646,682,629,651,643,661,644,647,636,681,652,667,658,648,652,656,640,630,636,656,675,659,655,688,641,653,685,646,656,650,681,645,648,675,660,635,642,663,629,656,657,644,735,752,728,713,708,709,744,719,731,706,737,689,738,683,692,691,721,707,717,738,770,679,718,728,747,713,728,695,704,756,691,707,735,699,733,727,738,726,738,765,716,735,723,725,708,746,681,727,722,703,722,738,720,658,711,702,722,714,716,730,715,720,731,747,665,715,718,735,727,751,722,706,736,722,729,700,717,711,760,697,761,693,728,716,678,722,728,695,694,684,656,653,682,675,681,656,679,683,683,675,660,671,680,683,685,669,689,665,687,672,655,667,659,702,676,672,674,657,654,690,657,646,695,664,668,709,667,701,631,643,652,633,645,656,656,648,629,649,646,650,651,651,662,626,640,640,647,651,638,655,670,643,635,643,639,644,655,623,658,641,615,634,633,650,629,641,638,642,644,620,649,658,667,653,651,660,671,669,670,636,660,665,653,662,671,672,647,673,667,648,685,681,649,666,652,659,647,653,660,662,679,676,679,669,668,670,682,639,661,679,673,658,781,722,718,728,773,731,763,768,724,764,748,779,756,752,731,780,738,787,775,754,780,745,729,750,725,745,729,732,718,762,711,743,739,765,763,752,708,783,716,743,759,745,693,730,754,734,703,709,691,726,735,684,693,751,685,712,695,740,710,715,720,680,719,734,707,744,747,727,707,728,724,672,732,722,761,716,693,740,760,749,772,658,666,683,623,669,678,641,633,624,664,658,631,657,632,688,626,679,678,645,651,649,669,669,672,648,658,681,645,682,661,653,620,653,662,690,671,654,693,644,694,683,664,652,684,666,647,667,659,671,645,724,727,700,713,694,683,689,715,679,710,691,709,691,667,689,673,710,700,682,694,714,676,695,684,686,712,727,700,740,712,702,684,669,705,679,670,696,710,715,701,739,725,710,725,710,733,719,712,733,713,725,724,722,708,706,714,724,722,719,712,732,716,706,712,710,712,725,719,697,719,722,728,721,705,709,704,728,707,718,721,711,696,694,661,727,706,719,684,680,691,668,709,678,691,711,677,684,683,696,690,698,701,701,712,675,714,680,665,713,677,704,676,693,704,668,675,710,682,691,680,695,671,681,670,685,684,646,661,661,695,662,687,686,688,694,691,681,659,678,677,691,674,666,667,699,693,695,675,701,709,675,705,705,693,701,666,671,706,682,704,688,664,527,574,596,594,566,557,559,583,574,542,572,587,579,563,580,545,608,575,601,562,584,561,564,596,578,583,565,604,557,564,586,587,595,563,614,544,592,575,580,565,569,566,558,555,564,569,578,590,556,566,603,584,573,576,580,560,543,565,579,564,589,565,564,565,586,560,596,591,556,577,576,576,578,579,572,554,556,564,576,579,563,600,578,564,576,568,594,568,576,563,563,592,574,558,649,642,631,631,635,627,634,622,635,637,632,642,644,646,630,664,655,638,644,619,644,634,663,669,651,678,614,654,641,641,630,642,669,641,639,646,645,663,627,648,640,662,647,647,661,655,650,666,663,652,663,672,649,648,658,662,657,665,659,650,650,648,653,652,658,658,661,640,660,655,652,656,656,651,655,664,650,659,649,640,645,634,660,653,755,721,700,746,679,705,693,757,717,713,704,679,755,695,678,728,726,735,720,691,723,692,716,716,726,712,733,708,695,717,751,701,700,725,730,718,718,720,690,752,691,708,713,707,725,709,734,732,719,699,700,720,703,709,722,732,704,727,728,702,723,728,731,736,719,706,727,708,690,731,735,706,716,713,706,705,724,723,723,719,691,703,709,722,729,695,683,692,702,669,697,681,704,677,699,692,716,700,705,691,680,674,710,691,686,702,703,693,706,714,690,706,721,663,699,681,705,683,686,682,714,670,667,718,710,692,690,610,600,608,582,610,651,585,593,591,591,630,612,628,601,612,566,620,618,621,585,601,621,610,606,579,603,611,637,610,630,570,586,594,606,630,648,582,600,612,595,593,628,577,570,559,552,571,546,568,568,571,547,547,554,573,557,563,561,553,576,557,549,556,563,565,557,570,562,566,553,550,557,560,564,552,560,557,571,572,572,562,564,565,554,563,558,560,558,677,605,661,658,602,600,687,640,614,645,613,640,611,650,651,644,678,622,630,588,611,651,642,652,637,625,623,634,634,661,673,644,673,632,623,623,618,634,615,666,627,630,688,689,685,677,688,688,671,681,669,690,686,688,667,662,686,672,681,687,701,684,678,667,686,690,679,688,683,675,677,661,676,693,673,688,702,665,676,685,667,677,667,683,687,687,688,692,674,683,689,681,673,674,687,670,670,663,692,677,686,680,682,674,688,664,682,678,680,688,672,663,692,683,661,676,655,674,669,663,674,664,672,670,673,649,682,695,685,687,693,677,728,744,717,762,758,770,776,719,765,719,745,734,711,762,732,766,753,775,720,769,736,737,790,720,751,714,729,728,740,734,719,742,727,717,752,730,702,714,710,729,676,657,702,646,629,659,655,690,683,683,651,683,669,658,719,640,664,687,713,697,702,684,694,693,637,652,642,651,657,643,682,695,688,684,662,622,644,717,675,691,649,665,682,645,657,663,665,640,617,632,652,623,636,642,644,629,605,642,639,634,644,657,649,630,631,618,628,642,638,605,669,647,629,612,642,647,659,630,644,617,646,617,638,630,641,648,616,663,602,632,643,668,542,554,548,556,558,558,552,553,560,545,540,559,543,560,552,552,560,566,565,558,550,561,548,555,561,568,554,560,564,549,562,562,562,538,550,566,553,550,553,556,558,568,568,555,551,555,538,555,551,547,548,531,542,545,543,552,518,524,538,546,547,531,557,547,562,530,550,551,559,542,536,546,537,544,539,554,553,534,532,536,551,529,539,526,538,554,564,535,516,504,520,525,509,524,518,505,497,526,523,523,501,527,515,513,512,513,514,513,513,511,519,507,525,514,518,520,523,517,515,506,507,518,508,533,512,510,513,519,513,504,522,525,696,669,692,698,670,663,690,678,687,689,665,680,658,675,689,672,684,677,665,700,693,678,684,668,681,663,677,681,681,692,687,686,681,688,672,696,664,634,634,647,660,642,631,639,624,632,636,650,653,655,627,644,618,644,631,648,641,662,621,645,662,633,638,624,640,636,650,662,631,649,628,662,642,664,646,627,632,643,626,626,676,611,616,606,606,590,617,593,611,601,614,591,622,629,609,605,601,590,598,613,586,590,598,584,592,626,624,638,605,602,590,570,644,588,620,627,618,601,625,597,592,613,627,593,614,568,611,607,616,631,600,602,569,576,607,559,606,612,592,622,582,620,608,580,577,586,622,600,614,562,615,615,611,606,577,543,642,600,607,602,617,600,567,575,636,593,600,600,606,619,638,622,630,616,622,621,621,616,643,596,634,623,617,616,618,620,627,602,611,621,612,614,611,618,610,617,604,635,627,607,619,604,620,637,610,631,625,626,603,595,585,562,568,583,581,577,595,590,587,576,564,590,554,571,580,580,582,562,585,568,584,568,582,589,580,591,594,587,593,573,577,573,571,589,566,570,578,682,672,670,680,689,690,656,630,679,658,671,656,668,687,691,676,668,666,664,685,676,660,686,688,690,678,693,654,695,695,686,686,677,697,674,680,673,703,699,700,669,662,690,672,658,712,702,680,689,680,689,680,701,646,663,709,714,664,658,691,720,658,696,685,719,663,690,685,684,716,710,653,723,658,643,670,669,717,659,681,688,717,636,706,690,708,671,665,686,670,663,700,681,689,679,708,696,674,685,686,689,707,686,711,688,679,697,699,680,677,679,665,700,658,692,680,668,685,685,691,681,688,704,668,688,684,690,677,688,650,613,594,615,614,621,609,608,604,603,617,632,596,612,631,623,604,607,579,626,638,619,639,614,611,612,618,614,612,603,614,599,586,602,614,594,627,638,602,575,584,613,655,584,573,578,586,581,597,595,585,576,575,569,587,600,585,557,578,565,577,582,603,578,574,607,580,577,595,592,609,587,599,597,575,593,566,588,592,576,580,588,592,542,537,576,564,584,589,575,564,576,570,570,560,563,574,591,570,572,574,578,578,576,566,564,560,575,572,570,580,575,571,581,577,562,568,576,564,568,569,562,582,578,567,566,562,597,539,549,549,541,541,546,544,548,534,541,547,551,543,540,545,534,538,546,541,552,539,557,544,550,540,535,547,541,536,537,527,538,562,552,544,548,541,547,535,532,536,533,546,533,524,545,538,533,571,543,555,527,527,540,543,547,542,529,547,570,537,547,554,541,544,539,566,538,535,545,562,547,561,546,544,543,568,555,539,536,540,555,562,541,553,551,549,549,536,538,536,543,534,551,546,529,549,542,543,547,545,559,545,537,545,541,542,525,533,535,539,533,542,538,527,546,550,545,541,540,535,557,527,539,537,552,532,545,551,540,539,548,532,534,544,552,560,545,554,556,548,542,569,548,534,560,555,568,558,556,540,567,556,555,548,558,556,558,554,553,559,565,574,571,556,551,552,551,558,566,554,558,556,565,555,552,561,553,534,630,606,584,604,621,599,609,634,612,652,615,617,615,598,655,569,619,653,592,626,605,593,602,626,592,637,606,602,607,623,614,590,605,587,594,623,591,597,618,583,765,762,774,813,783,744,794,761,746,758,755,755,772,781,768,757,787,769,776,764,759,777,796,767,776,771,741,768,750,749,763,766,761,769,758,736,795,742,768,772,724,767,740,735,696,742,698,749,766,767,673,711,716,735,720,714,729,725,711,741,695,709,711,724,721,733,702,707,728,799,722,726,683,722,696,757,740,744,740,733,751,668,701,649,676,654,651,680,676,656,646,657,658,663,641,659,670,636,654,621,648,666,649,662,653,640,662,658,642,644,646,651,644,642,652,651,662,665,666,637,678,654,635,687,716,730,721,688,686,681,713,669,663,705,686,693,731,691,730,689,699,687,680,691,696,694,693,649,699,681,665,699,702,688,693,705,690,700,678,671,696,687,653,662,668,681,657,666,658,680,659,693,660,663,665,657,662,689,648,662,656,662,639,660,663,677,665,661,684,654,683,671,670,672,671,685,672,669,688,673,649,655,696,672,613,603,589,609,603,619,615,614,616,607,605,603,603,628,602,604,587,599,612,618,602,597,602,598,592,607,605,620,604,614,617,610,610,589,599,595,591,616,597,591,601,593,612,599,555,578,553,559,554,570,564,552,560,555,564,555,554,550,564,556,566,568,554,570,553,557,543,556,564,569,562,549,550,547,565,552,554,551,562,564,561,551,565,584,567,560,568,557,554,560,562,547,561,572,555,554,564,543,563,568,538,571,556,556,561,565,550,554,560,564,574,569,570,579,558,559,560,544,569,556,557,550,554,546,568,585,682,713,702,700,694,713,709,687,688,715,700,721,733,689,699,716,707,703,688,698,725,696,702,704,698,730,710,724,717,688,690,700,687,714,703,704,705,705,695,712,710,694,731,695,717,698,666,668,670,661,669,667,679,674,674,670,658,678,652,676,663,672,680,661,692,668,667,669,673,667,688,694,691,664,675,661,670,657,683,676,666,671,670,664,655,668,668,604,630,646,628,645,631,630,621,633,615,633,625,626,631,633,606,626,620,616,634,611,619,637,644,626,627,624,602,612,627,623,623,637,634,619,615,626,617,615,635,624,637,577,593,579,596,571,585,599,607,587,588,585,596,573,575,617,578,580,570,576,574,602,571,587,578,589,579,590,584,558,587,585,587,584,598,585,586,577,580,587,569,575,586,600,608,616,609,605,621,610,609,623,621,639,621,608,617,601,610,627,626,601,617,618,604,613,614,620,611,599,592,610,614,603,610,619,603,606,609,617,604,607,607,606,626,605,610,623,625,612,623,590,607,607,620,628,628,640,620,629,642,643,643,613,642,646,629,639,624,645,631,653,618,637,636,614,644,636,635,627,637,625,637,626,617,628,636,632,642,622,627,632,620,650,624,634,593,569,595,586,610,586,612,587,601,567,608,595,608,622,590,597,569,605,604,595,607,588,595,623,610,617,578,602,605,583,604,581,586,606,601,593,605,611,587,595,587,611,579,586,579,588,612,575,593,601,578,572,562,573,598,579,583,580,571,576,581,571,597,582,582,592,579,586,584,582,567,567,589,590,567,588,598,579,597,581,580,576,682,641,632,614,586,619,644,609,626,636,582,596,592,645,587,598,640,595,617,609,600,619,640,569,610,625,598,635,578,631,629,652,638,621,654,602,632,615,618,577,637,706,738,728,793,758,754,729,735,729,753,754,755,764,722,722,703,775,752,747,737,750,724,766,748,742,725,736,749,759,738,736,741,742,759,767,737,759,773,770,731,776,761,740,752,718,700,723,727,711,719,706,711,708,730,737,725,742,725,730,724,709,738,728,721,712,725,744,731,739,716,731,718,714,726,732,718,742,720,722,713,714,734,733,718,726,739,697,700,697,698,706,683,679,671,689,692,685,692,674,701,684,717,686,709,684,677,719,699,694,699,707,690,668,686,707,705,677,688,692,692,693,699,699,664,669,696,694,679,683,699,715,690,675,700,711,676,681,661,672,688,676,682,687,695,704,673,709,673,662,667,699,703,684,674,698,674,678,678,699,695,695,692,690,683,682,686,687,578,592,554,597,612,646,603,591,611,600,607,572,558,618,557,584,607,582,566,571,578,602,591,558,586,570,577,580,618,588,587,592,571,599,579,575,612,580,578,601,623,586,584,570,659,592,661,650,629,626,609,668,643,610,579,673,644,552,635,629,628,621,630,618,634,659,653,598,608,705,665,607,617,586,638,632,606,602,607,615,648,614,647,627,629,688,694,646,655,695,652,693,705,689,648,675,669,736,657,692,684,708,651,659,645,673,679,682,662,693,666,682,691,714,717,700,659,691,704,688,665,661,682,703,683,612,665,683,692,679,670,679,678,675,651,673,669,651,676,688,692,697,679,711,672,701,683,650,721,716,676,677,757,730,668,722,645,658,657,665,691,704,679,649,689,649,673,636,706,718,754,679,694,674,699,654,643,645,669,632,657,665,667,660,674,639,640,673,650,657,654,677,670,644,668,673,623,647,655,636,630,671,645,653,643,668,658,664,622,669,664,661,632,649,648,608,612,585,621,620,600,599,610,611,600,605,610,587,601,605,596,607,622,600,589,630,603,631,608,605,621,614,620,612,631,605,601,599,616,609,611,593,621,597,598,592,572,604,600,588,603,587,574,604,572,577,590,600,594,587,595,573,581,591,588,580,596,588,593,593,602,586,610,593,582,584,580,586,575,594,592,599,596,581,596,576,584,604,590,603,599,619,599,597,602,606,602,600,587,613,600,588,613,598,591,609,594,594,597,591,588,603,584,599,593,586,601,607,594,595,607,611,596,597,612,594,599,583,605,618,727,718,724,765,747,749,770,745,749,756,730,762,724,713,749,777,742,728,777,724,744,761,720,735,743,779,724,733,741,735,767,727,710,737,777,775,776,732,726,766,737,752,738,798,684,680,692,679,670,625,672,669,690,674,640,685,658,641,682,622,697,703,670,665,653,644,694,686,660,671,670,642,679,652,677,658,716,660,647,667,655,658,617,688,648,672,673,646,634,644,643,625,635,635,620,615,629,634,600,635,651,650,671,603,656,628,649,606,654,611,629,615,599,633,642,634,595,655,638,652,645,624,635,629,639,660,618,658,642,654,643,650,650,617,695,690,673,691,656,700,700,701,680,676,671,677,695,690,695,684,671,675,675,694,699,694,675,681,679,697,669,698,679,683,697,700,679,685,696,687,682,695,677,677,668,704,678,665,669,688,671,672,657,673,694,669,663,670,674,662,673,661,656,677,690,677,665,677,645,657,660,671,643,682,649,661,669,660,659,677,645,647,666,664,661,675,649,687,660,663,665,680,653,679,665,675,664,653,652,637,610,636,658,669,649,613,648,604,625,621,648,634,655,643,641,663,642,628,634,642,628,645,623,634,639,608,636,642,631,648,606,654,645,621,658,628,617,663,618,722,677,663,667,678,725,651,668,693,693,665,681,655,672,676,696,703,657,654,723,676,664,653,669,652,666,682,669,659,684,679,676,713,679,675,660,661,665,640,683,672,631,635,644,614,604,639,597,626,615,612,623,587,612,602,603,592,630,617,611,620,623,621,612,624,631,588,630,605,606,612,587,588,614,598,606,593,618,618,604,634,652,604,609,599,568,617,551,589,579,591,620,623,701,625,570,605,634,579,583,584,594,605,624,600,551,583,575,647,575,595,625,625,545,608,637,585,650,617,625,632,592,582,591,608,582,608,583,595,590,582,592,596,584,598,580,589,588,592,594,582,601,592,586,599,592,594,592,586,580,593,578,584,591,587,593,603,591,608,593,594,591,584,586,596,595,575,534,564,529,547,536,554,550,567,554,547,544,545,549,551,544,541,573,543,553,557,532,538,545,560,562,548,554,548,534,570,557,551,550,531,536,547,555,550,547,561,556,548,558,529,569,553,574,551,563,579,561,574,576,548,571,544,561,562,543,555,565,557,555,545,551,553,558,565,553,560,558,556,531,562,568,555,579,544,558,568,553,553,704,711,715,705,688,696,728,700,707,706,679,701,721,727,727,703,719,690,695,705,698,702,711,711,668,675,708,698,705,687,702,729,713,713,698,717,693,686,700,671,620,626,647,629,634,656,636,619,616,616,657,604,592,627,635,595,660,650,622,660,663,629,660,654,618,636,638,649,625,583,628,650,627,654,633,624,654,608,613,644,649,609,619,683,611,672,683,621,619,631,662,698,654,606,697,623,688,642,648,586,641,591,683,598,687,582,645,729,644,611,627,603,590,649,612,598,728,658,645,635,594,665,639,656,666,654,614,603,666,720,710,701,718,701,723,707,713,700,693,695,707,700,731,699,729,701,698,710,711,728,729,709,707,702,714,672,697,718,673,715,698,726,724,709,699,682,699,689,711,701,698,714,742,607,601,591,611,597,614,610,625,620,566,612,605,618,583,647,605,614,604,615,587,587,598,625,596,593,583,593,610,623,605,619,629,593,622,610,609,604,615,586,613,634,588,596,615,627,613,632,633,615,593,615,616,605,636,610,623,618,635,627,607,625,613,629,632,624,634,650,619,590,624,621,642,586,641,617,622,633,611,613,649,649,636,623,593,591,595,589,593,582,566,579,600,590,581,580,573,591,580,593,595,598,590,591,583,594,591,596,590,583,583,605,596,599,592,588,605,583,584,584,584,597,588,621,561,553,561,529,528,538,539,558,544,555,548,564,555,561,538,549,566,554,558,544,563,551,541,546,566,544,560,555,554,539,573,556,551,558,546,549,537,540,561,547,547,550,560,555,553,550,566,569,560,563,545,559,557,543,535,565,571,551,557,554,546,565,571,561,550,533,568,558,559,540,564,560,560,549,543,545,575,539,555,560,561,557,567,560,572,546,565,547,574,560,558,587,552,544,542,554,536,553,546,548,554,552,539,536,550,548,554,555,543,545,535,550,550,552,546,554,566,562,551,537,563,534,561,546,553,551,539,551,538,542,536,544,555,542,552,545,552,543,585,585,587,580,583,588,582,599,591,592,566,578,582,583,567,594,580,589,575,573,586,606,583,596,605,585,589,583,583,592,598,575,597,604,584,580,595,570,594,588,574,576,594,582,623,621,614,623,618,603,617,610,612,619,618,594,617,604,604,583,608,611,611,617,614,628,604,632,619,612,615,592,621,607,598,626,599,617,600,616,607,590,624,616,610,624,672,704,691,662,660,653,631,673,653,673,676,666,656,644,671,652,671,665,652,662,670,675,659,677,659,658,651,650,674,652,654,671,698,660,658,647,656,649,693,636,642,640,655,657,661,644,641,660,676,652,644,654,635,659,656,663,654,653,660,654,655,658,659,644,666,653,660,663,648,625,643,674,650,658,664,651,643,671,652,581,559,604,567,580,577,586,571,570,570,592,574,590,584,572,577,575,575,573,588,586,575,582,585,604,571,596,559,576,592,586,578,592,594,578,560,598,569,572,571,582,572,566,572,571,582,568,583,562,590,661,659,662,683,658,690,652,693,686,676,696,693,682,684,677,651,669,674,680,671,679,695,649,681,683,641,675,674,701,690,685,662,676,661,665,681,658,651,679,645,683,677,680,672,670,655,676,658,686,681,659,650,673,728,697,641,651,684,674,707,696,662,683,668,682,686,688,676,667,702,691,636,669,705,671,663,661,664,680,687,679,665,652,633,687,700,713,670,655,659,770,720,685,725,713,614,657,686,681,703,663,653,648,685,690,742,711,680,725,672,714,660,669,706,724,683,669,685,674,666,693,712,708,733,698,677,690,665,687,675,666,648,674,637,671,646,670,666,635,672,664,649,654,688,665,667,687,679,671,664,682,654,680,680,689,679,655,678,691,651,666,655,686,698,675,675,650,653,654,644,636,639,644,641,656,667,652,669,651,641,638,648,652,655,640,653,633,629,653,656,653,647,646,642,646,623,662,635,655,655,629,654,649,656,650,653,646,651,645,642,646,651,651,658,656,661,648,741,772,762,734,723,756,732,734,742,737,742,758,767,743,716,725,719,741,722,727,754,742,738,730,744,728,753,771,740,756,742,780,741,765,741,734,756,719,736,757,721,765,706,745,753,755,716,716,723,722,735,721,728,718,778,740,731,733,723,694,720,737,722,687,768,757,735,741,790,705,717,727,734,727,700,746,713,733,700,745,768,725,782,728,702,754,725,752,706,744,734,765,742,735,744,720,720,730,733,755,752,725,730,763,749,719,756,743,757,763,788,804,743,720,743,722,731,730,719,734,719,751,761,750,735,739,740,689,685,676,710,721,746,744,724,723,656,708,724,748,717,745,716,693,698,735,740,697,759,742,723,742,743,699,750,735,725,739,705,728,721,707,708,708,716,710,671,701,675,698,676,693,672,678,655,680,691,644,713,704,697,699,691,696,686,670,650,673,688,647,672,694,690,659,659,675,683,689,706,683,660,650,662,670,668,662,673,689,707,683,636,646,647,657,655,650,675,659,665,664,650,639,649,641,662,642,637,647,674,650,649,650,643,640,645,646,647,653,650,666,663,653,643,657,653,660,651,644,635,641,648,654,672,658,778,732,738,734,751,767,729,760,744,746,740,767,764,726,749,726,769,705,727,770,738,735,749,751,749,725,768,752,751,712,731,768,748,746,740,749,746,783,709,749,755,770,725,745,734,706,789,719,751,731,709,741,722,721,734,755,723,716,682,723,740,745,692,718,765,705,715,744,703,730,729,717,760,738,738,726,731,699,703,729,735,735,764,704,724,712,736,729,726,743,754,751,752,695,767,698,715,697,697,698,738,732,728,706,742,718,682,748,699,708,681,675,718,698,737,678,704,728,690,680,702,698,686,690,670,692,735,697,719,712,692,704,715,693,732,693,701,699,748,684,724,731,723,709,722,715,692,727,722,710,736,712,720,729,733,724,725,712,741,730,735,734,723,720,705,701,724,731,724,697,730,718,710,737,720,727,733,719,707,725,698,729,733,725,723,712,660,617,629,630,611,633,659,632,645,595,616,624,594,619,633,658,633,640,642,600,643,614,648,605,627,620,592,615,598,650,639,600,599,604,627,608,635,631,609,588,579,582,586,568,591,569,566,602,592,589,589,573,572,602,582,566,606,564,580,589,582,573,584,579,588,563,584,584,568,577,573,582,590,552,572,578,583,577,565,562,584,570,586,607,596,620,614,575,642,601,592,611,604,588,617,607,618,601,602,603,601,624,633,605,615,599,619,625,608,616,612,624,597,627,632,590,587,591,604,643,549,559,556,558,569,572,548,559,553,571,556,566,578,568,559,563,559,564,562,566,578,554,569,559,561,572,560,577,541,543,574,557,558,587,578,552,550,580,558,569,554,566,584,568,588,583,564,555,561,576,558,575,571,590,596,585,573,590,578,566,585,579,574,558,574,585,586,573,577,583,581,578,549,561,580,587,562,570,590,558,580,575,569,575,584,560,559,569,553,544,544,565,550,544,548,555,540,548,544,540,554,560,540,536,539,555,555,547,557,550,547,547,544,542,555,570,534,537,545,545,548,541,548,546,538,553,552,553,794,680,767,728,719,749,766,768,733,801,722,723,803,742,760,774,750,761,725,727,770,740,663,742,754,727,818,770,745,778,736,776,777,804,778,751,692,689,780,722,752,816,746,723,684,710,705,704,689,716,685,696,693,689,719,701,691,706,716,713,723,706,705,702,703,698,705,694,723,678,725,711,701,693,692,728,745,734,711,709,697,694,708,714,721,703,694,697,698,666,653,670,660,655,684,674,678,673,649,675,663,638,684,669,672,696,670,690,661,686,669,680,695,649,649,698,649,673,671,705,679,692,655,645,651,668,650,642,673,681,654,686,676,638,656,639,629,623,644,623,652,652,661,668,641,637,629,630,625,657,625,647,638,633,664,652,648,644,657,632,631,636,658,644,640,644,654,642,645,643,635,652,654,628,635,648,643,665,666,673,654,656,655,676,671,675,661,682,674,648,658,666,675,663,674,667,650,670,659,663,682,668,670,662,664,666,679,676,686,670,683,678,669,664,682,676,657,681,668,674,661,661,655,630,655,653,655,662,649,679,650,668,661,672,646,663,657,651,657,652,649,651,658,664,654,671,651,649,657,648,654,646,664,664,645,650,665,680,652,654,677,648,670,670,669,719,724,697,731,755,725,742,778,760,715,748,705,727,748,763,750,758,747,724,765,756,738,762,743,701,726,761,715,783,710,752,747,743,764,713,731,747,755,735,716,724,761,699,714,752,717,757,738,689,741,726,734,697,709,712,704,716,721,749,729,692,718,752,751,721,748,727,765,705,759,722,735,708,737,766,704,753,733,721,766,695,743,772,690,713,711,711,694,691,659,704,711,723,685,708,690,693,707,704,661,723,696,657,683,649,759,726,674,694,731,673,681,674,739,717,683,736,694,712,727,677,709,694,704,725,697,672,586,603,618,619,598,602,619,603,615,595,617,565,646,602,563,608,600,590,600,593,613,609,597,596,616,569,594,606,602,595,614,589,600,603,585,608,598,617,618,605,605,622,586,609,611,601,589,592,591,668,699,687,674,648,703,645,641,647,627,655,655,658,648,642,675,659,621,679,673,643,691,687,655,630,698,647,644,653,738,619,681,670,653,672,601,645,664,682,636,669,647,646,666,642,655,679,623,667,641,662,660,647,659,668,667,651,677,653,674,671,667,660,658,653,662,650,646,658,656,639,663,660,655,652,645,665,649,661,668,650,662,664,668,639,616,613,602,626,597,616,612,612,604,627,609,608,614,622,598,630,616,621,609,605,619,589,590,605,606,620,619,613,625,637,616,613,604,622,605,616,595,621,591,623,643,596,606,597,622,604,691,681,664,701,713,722,697,682,723,795,661,755,768,687,752,679,688,660,735,717,746,737,741,741,751,715,750,719,674,813,726,748,705,759,725,687,706,703,687,695,739,707,697,723,665,693,691,690,708,705,697,679,706,687,729,709,731,729,725,723,714,715,707,741,714,661,710,699,705,722,707,724,699,706,732,710,701,722,693,708,710,705,745,721,607,628,614,613,599,595,633,591,616,632,627,603,630,635,628,594,627,605,616,606,595,587,601,639,607,601,621,605,599,623,635,597,608,619,629,637,607,599,607,588,639,650,666,666,649,646,650,612,648,636,644,674,641,656,634,624,620,613,608,606,639,660,673,657,633,646,645,626,616,658,599,634,624,658,643,640,643,631,620,631,623,660,695,594,677,693,686,694,684,682,703,684,688,677,680,704,672,717,704,689,690,698,695,691,663,703,718,687,704,694,700,670,689,690,683,695,685,684,690,690,685,685,687,707,689,684,682,690,705,683,680,667,697,676,669,674,686,677,673,677,681,681,672,691,676,701,689,697,659,690,676,690,677,682,698,669,670,687,679,677,680,677,676,680,665,664,680,679,702,693,696,662,677,680,649,690,692,670,724,725,741,758,763,760,733,751,740,717,699,732,696,748,713,766,761,736,729,754,735,731,718,740,751,699,746,720,728,736,788,761,749,761,759,712,781,722,746,786,757,738,761,701,756,701,726,739,702,724,693,696,727,736,706,707,694,682,711,750,716,715,716,727,702,751,732,728,731,720,726,747,684,738,703,713,749,707,752,732,719,689,709,693,698,700,734,716,756,670,658,683,672,651,698,668,669,687,676,662,664,679,694,675,674,690,649,666,646,680,665,663,669,684,667,667,676,636,648,667,674,676,643,672,666,661,700,681,662,601,577,587,565,571,592,558,567,565,569,574,558,569,584,569,568,570,581,586,575,561,581,548,568,577,572,597,567,578,573,562,571,569,568,579,564,577,568,585,555,580,621,607,610,580,551,648,601,577,620,617,590,621,584,628,626,616,610,588,594,608,595,640,630,598,604,618,624,625,557,592,599,599,613,609,578,603,670,615,592,580,596,583,588,635,546,556,613,590,578,581,578,574,580,584,576,577,586,594,589,583,594,585,585,582,595,601,593,585,580,589,591,577,584,592,586,583,580,580,586,586,578,582,599,582,593,592,580,580,585,583,536,552,544,532,544,550,554,542,545,534,525,535,532,540,542,541,545,533,538,540,559,543,531,538,542,545,545,549,546,534,536,535,548,530,531,542,550,537,532,535,541,534,536,542,541,541,528,655,648,638,644,654,653,642,636,663,640,623,627,643,629,618,657,642,648,644,638,641,637,648,649,642,644,660,638,665,627,619,632,637,642,618,665,665,640,654,641,644,585,546,565,603,578,570,589,579,580,578,587,549,587,571,585,581,567,568,569,563,586,560,580,574,559,575,578,584,578,588,576,584,559,589,565,579,577,568,573,584,568,570,669,571,635,596,626,625,663,629,587,576,603,617,594,582,628,571,635,617,621,583,656,597,604,599,574,589,660,609,649,637,634,596,607,643,622,586,556,647,599,590,607,664,599,506,643,637,643,641,609,627,625,631,618,629,636,632,631,608,639,645,604,604,611,640,608,628,611,634,639,612,620,626,648,643,592,651,617,620,604,637,618,623,645,637,617,596,578,587,581,575,577,584,583,593,577,577,573,570,595,587,590,579,594,560,587,613,584,592,573,580,562,578,587,583,577,579,573,584,556,576,574,584,588,584,591,575,587,549,541,574,547,559,544,565,565,561,561,566,554,555,554,573,551,564,562,557,545,544,568,558,562,567,556,561,549,564,558,555,557,565,564,573,565,560,554,551,559,560,565,533,611,594,588,624,642,585,578,620,604,656,576,603,614,608,614,585,619,580,630,650,623,613,628,584,606,639,648,647,605,607,620,596,646,632,614,589,648,595,605,597,628,633,621,592,661,624,631,623,762,751,768,730,751,747,766,738,734,771,737,728,779,744,771,745,772,750,746,738,746,729,737,761,705,727,764,743,771,784,757,776,726,730,738,760,777,704,731,746,758,742,733,760,733,716,732,734,716,723,742,707,745,729,739,712,728,721,720,730,727,713,733,723,724,723,722,723,738,751,712,712,729,727,730,712,756,715,723,716,744,705,708,690,711,665,683,700,685,702,710,711,709,724,696,690,692,704,692,695,708,688,671,706,705,687,672,699,688,700,693,721,671,697,705,688,718,691,707,715,704,704,695,676,696,749,675,691,704,673,716,665,668,652,695,700,666,701,669,709,698,693,689,724,716,716,730,697,713,705,717,666,673,716,683,681,677,677,669,688,732,675,659,717,626,728,704,703,694,726,703,767,706,731,696,742,703,697,740,721,702,751,706,715,699,733,745,690,735,741,738,715,704,694,725,741,722,757,690,715,699,715,634,683,633,658,650,669,675,637,678,635,703,671,679,672,688,678,659,661,645,665,649,651,684,666,684,675,670,663,685,643,651,679,678,684,668,689,634,669,650,692,668,560,547,515,565,585,554,565,563,543,517,555,527,560,555,523,539,545,563,538,509,564,553,557,537,508,546,549,563,533,520,546,563,546,566,579,528,557,565,495,541,539,552,532,541,528,546,542,531,533,539,538,516,537,529,545,543,522,535,536,529,534,524,551,532,524,527,535,534,538,532,536,532,532,534,540,528,529,543,534,537,524,531,539,539,559,551,570,559,559,541,545,556,563,558,545,549,543,533,566,557,576,554,552,557,545,560,549,544,553,544,558,565,565,552,543,569,562,549,563,560,552,555,540,558,554,560,549,566,541,556,541,573,674,646,694,654,650,673,680,681,698,656,703,676,648,664,655,676,647,683,666,679,671,672,685,662,684,644,692,683,701,662,653,683,655,679,679,624,655,721,680,692,678,668,662,621,624,638,657,615,644,624,642,644,601,633,610,618,621,627,645,630,627,627,608,612,637,630,613,627,621,599,646,618,605,630,630,638,592,623,618,628,642,632,608,618,647,626,624,619,617,597,576,596,575,586,578,559,581,582,564,556,577,572,580,600,585,583,588,574,573,582,590,573,593,572,594,587,578,575,582,585,584,573,583,568,578,569,569,565,565,563,584,580,590,586,578,608,650,617,644,614,599,602,648,622,630,609,642,631,625,605,630,603,628,633,599,589,625,628,657,624,632,642,630,639,608,624,620,612,604,642,603,601,586,591,658,635,647,644,557,683,731,721,661,723,709,693,726,682,708,689,725,717,711,701,702,687,732,695,722,729,712,730,682,715,699,721,685,721,701,700,693,684,687,739,716,703,700,730,708,732,688,664,630,612,620,623,640,631,622,639,639,619,646,635,636,659,655,608,645,624,618,622,637,655,647,653,645,652,605,638,636,608,611,625,620,614,648,643,626,637,657,637,627,633,651,639,654,564,563,580,574,574,578,587,573,582,577,568,563,571,574,568,570,572,578,581,581,582,574,575,580,580,573,571,569,578,578,583,561,570,570,562,566,588,576,701,704,668,665,680,634,666,668,700,656,696,663,679,672,685,657,665,662,631,670,707,662,690,639,667,649,662,713,689,685,685,694,689,700,718,654,658,674,701,692,727,660,677,685,733,637,638,635,605,630,620,624,633,608,638,650,603,631,655,611,630,637,644,621,667,637,632,604,616,623,639,618,619,618,649,616,628,628,649,636,622,645,616,630,616,644,610,677,588,598,589,591,600,588,576,586,583,578,590,581,582,578,590,585,583,608,594,595,585,591,594,591,578,587,570,602,581,604,579,569,599,578,591,585,576,577,578,585,606,574,590,530,531,519,534,533,528,537,532,518,550,517,533,520,530,528,525,535,534,523,524,554,531,520,521,523,539,529,524,518,520,532,539,525,528,520,526,519,527,521,530,516,530,522,494,559,571,572,577,564,573,585,558,576,558,564,571,595,580,566,584,589,575,590,585,585,581,580,595,568,588,559,584,583,569,587,584,579,579,592,577,582,563,572,589,575,577,657,609,634,596,627,629,605,616,615,626,641,611,621,623,618,606,615,615,605,619,596,619,622,600,612,618,625,626,610,602,623,630,621,622,613,615,618,624,690,663,681,711,696,683,674,662,687,678,686,714,713,687,709,648,658,692,705,659,698,691,652,669,683,697,684,676,691,679,672,648,628,672,720,669,654,701,680,707,659,688,656,694,702,627,613,644,636,645,620,626,629,625,655,619,620,611,621,625,613,623,637,610,615,633,632,649,602,637,606,624,616,651,618,588,635,655,610,609,632,594,654,619,627,643,627,620,642,614,610,624,618,590,587,586,592,570,567,570,574,567,584,572,597,569,565,583,574,585,584,565,564,556,577,585,582,579,570,571,580,573,560,579,586,568,571,572,572,572,574,577,581,569,571,570,635,651,620,628,649,617,617,679,649,614,634,684,632,661,632,635,662,666,662,628,606,655,606,651,664,622,641,600,604,639,675,620,665,666,695,692,684,680,660,683,686,693,678,680,670,690,685,718,677,683,706,679,691,686,683,693,693,659,686,666,683,694,673,680,698,704,687,678,686,686,687,677,687,660,693,670,667,676,694,679,671,675,684,670,676,681,701,684,694,668,675,678,687,690,683,666,681,674,660,677,690,664,673,674,665,676,682,667,686,681,669,672,693,673,682,683,674,674,682,675,701,709,739,712,742,761,750,728,734,758,727,747,738,741,733,735,760,733,735,737,724,793,780,737,758,746,740,726,780,770,742,747,736,748,750,727,750,747,743,732,739,726,732,725,746,726,730,722,759,699,702,735,723,683,728,674,739,726,706,748,733,749,719,728,707,665,669,697,736,698,733,752,733,723,727,737,735,743,720,727,671,713,747,708,753,710,701,737,719,734,735,723,729,684,714,699,663,667,671,664,692,688,663,681,669,689,672,692,680,675,678,695,663,683,696,654,673,675,680,688,674,709,671,662,689,680,647,658,662,708,671,671,652,692,665,686,641,635,647,651,636,650,637,649,650,667,659,646,641,648,652,631,640,645,643,677,659,668,661,636,650,661,648,649,659,651,656,642,657,646,647,671,654,623,648,644,654,653,583,564,601,570,584,598,585,604,612,590,593,598,578,584,587,590,604,622,597,574,606,597,583,589,572,605,597,601,585,571,584,601,581,580,573,579,591,606,598,596,521,542,536,558,540,552,543,530,542,545,546,534,538,542,544,518,533,543,536,541,536,535,542,541,543,535,545,525,548,540,540,546,547,537,539,546,537,550,534,526,524,532,530,523,524,531,529,522,515,529,525,523,515,526,523,527,531,528,527,516,510,519,524,534,516,516,522,519,521,526,524,528,527,516,520,529,513,519,531,526,532,517,523,521,525,545,524,519,536,616,645,647,627,654,656,659,654,651,612,645,667,645,646,688,673,633,650,649,643,615,677,656,657,633,655,684,624,678,645,672,646,612,671,666,646,631,649,669,635,618,640,656,665,630,636,655,650,715,656,663,670,677,688,641,681,642,650,682,676,655,662,651,671,673,659,663,648,664,668,660,638,654,651,663,644,669,652,667,646,665,665,649,652,659,665,665,675,673,667,671,605,592,593,596,611,607,590,602,594,603,597,580,603,621,588,595,601,604,606,612,603,611,598,579,612,591,592,599,586,610,604,609,611,590,608,583,574,588,620,595,563,559,558,555,566,565,560,562,561,552,570,556,562,561,564,560,551,549,564,554,555,582,551,551,555,560,549,545,554,545,558,554,558,556,565,557,570,579,573,554,537,562,558,555,569,567,558,551,554,546,623,616,576,604,623,625,596,585,578,636,614,611,615,582,595,589,619,633,602,589,590,602,670,613,627,593,623,590,579,600,592,609,619,591,598,633,653,633,578,578,583,586,568,577,581,581,582,578,570,558,581,565,598,583,576,563,566,583,563,573,562,580,580,570,553,569,568,570,582,562,563,571,582,572,575,566,577,568,574,565,582,590,577,583,573,572,601,645,591,592,567,616,520,579,591,617,585,642,568,613,553,592,572,575,604,631,599,585,592,598,648,593,571,585,619,548,644,621,584,609,614,579,578,592,645,593,571,617,590,598,730,735,736,740,742,737,709,719,723,722,745,734,706,758,779,731,713,745,714,703,773,728,763,731,749,783,755,720,719,721,767,743,720,747,725,732,746,711,785,723,737,725,720,720,708,712,735,714,711,713,707,704,723,718,699,721,724,721,717,719,731,733,714,705,702,702,718,710,718,703,715,708,708,726,713,674,665,633,608,628,642,613,620,642,616,653,575,646,602,676,597,631,596,637,612,642,639,611,650,613,564,600,643,620,653,623,648,649,656,627,676,614,646,616,615,643,546,642,611,574,512,621,582,570,595,533,617,564,543,581,566,578,577,602,567,589,561,561,623,561,570,576,591,552,574,535,569,581,551,569,557,604,564,580,584,590,607,586,580,554,582,567,584,576,578,595,597,595,586,575,613,591,586,585,585,587,591,598,607,591,574,592,581,601,579,572,606,588,574,616,592,598,591,564,572,589,575,602,605,593,604,586,593,587,587,643,640,623,644,628,609,638,618,661,634,642,646,641,614,639,639,634,635,635,633,639,626,633,629,638,610,668,623,626,642,641,625,634,623,654,640,647,628,651,642,635,625,610,654,669,687,670,669,668,670,668,648,672,670,666,661,654,676,673,667,675,653,677,665,649,659,675,659,660,659,673,677,661,670,680,685,674,672,675,652,644,675,661,689,657,674,674,671,663,663,673,677,666,670,671,670,671,693,690,677,661,660,684,650,675,661,661,671,675,655,670,677,680,677,659,671,688,661,669,656,675,681,693,665,662,678,677,657,645,667,682,686,671,694,666,665,668,667,660,673,647,659,682,669,685,680,688,670,669,670,662,665,676,661,679,686,679,660,676,659,665,671,659,664,655,681,677,668,666,669,684,660,657,658,659,657,650,666,664,677,680,665,660,662,676,662,650,664,670,672,658,683,670,673,674,654,677,688,688,667,671,668,668,673,652,674,665,689,674,664,650,649,656,654,661,660,668,649,663,641,663,664,650,648,650,647,659,664,645,640,644,673,659,655,644,637,651,665,668,663,633,632,656,665,661,662,653,594,576,584,595,580,573,601,583,582,604,599,592,594,564,597,591,585,589,590,595,592,587,617,603,603,601,588,595,596,613,611,587,601,587,595,590,601,563,597,584,581,590,605,718,662,716,744,729,673,699,707,769,703,758,722,761,750,730,695,727,766,736,782,743,690,672,725,713,674,627,741,687,747,715,731,765,713,785,731,747,721,747,767,733,710,683,688,760,761,702,726,721,737,747,730,743,715,732,712,723,744,739,726,731,746,724,728,703,715,747,725,724,747,716,729,724,682,749,730,714,746,721,739,706,694,698,713,714,709,742,742,680,615,601,615,576,623,601,622,585,591,568,588,601,590,624,631,597,618,583,611,602,612,602,611,605,617,629,619,599,561,615,628,615,597,587,581,596,585,584,613,604,593,570,634,619,624,607,612,620,636,634,624,629,625,604,639,595,619,610,627,634,628,619,630,610,622,606,641,628,628,623,633,630,614,592,598,646,629,641,640,610,632,619,621,622,627,634,675,573,572,569,563,563,568,562,566,551,567,554,564,575,564,580,558,568,547,557,552,566,561,576,562,570,569,569,580,573,573,550,569,590,563,563,570,548,578,569,567,575,544,642,644,631,630,691,661,636,646,574,600,623,624,676,643,681,641,670,647,622,637,623,638,596,608,594,636,589,628,710,655,636,627,633,611,629,637,611,663,620,654,680,659,668,685,724,649,689,686,649,666,657,666,673,674,663,659,623,695,649,685,651,697,662,648,656,662,696,689,653,677,646,679,692,649,663,637,655,677,682,695,622,674,627,646,639,641,624,637,641,631,629,649,649,649,652,627,620,622,621,640,614,623,633,631,643,659,621,676,644,651,635,633,631,642,646,630,652,665,634,639,629,615,625,643,631,610,653,575,583,589,593,584,596,577,593,595,592,600,576,585,595,592,577,602,606,602,595,585,577,614,583,588,583,611,592,596,603,606,573,578,586,603,595,613,572,581,573,579,553,567,551,565,557,571,543,565,587,561,566,566,561,555,561,562,543,565,561,544,569,553,569,556,576,574,570,575,561,563,554,556,549,563,571,543,566,569,564,603,586,583,600,605,598,596,592,581,595,585,605,602,599,603,585,596,595,608,589,613,618,571,564,587,589,594,610,601,598,605,579,605,603,595,599,577,596,597,587,588,606,607,615,586,587,595,717,763,726,710,729,702,733,750,750,745,745,717,727,702,713,728,712,748,719,730,690,739,720,733,757,752,721,709,690,734,735,711,740,707,688,730,763,742,746,727,728,707,716,717,716,688,731,731,724,722,698,725,732,699,710,732,703,718,696,728,709,713,726,701,737,709,710,721,717,720,703,719,706,714,733,727,732,717,700,698,728,713,715,704,713,754,640,637,643,635,622,618,674,610,602,643,655,636,617,620,651,600,621,627,601,618,611,587,622,632,612,595,633,608,617,608,592,598,603,593,660,618,640,601,605,644,632,635,622,638,652,620,556,573,565,543,540,552,571,558,552,580,567,557,554,533,567,570,550,563,574,574,557,560,583,561,572,553,579,571,556,568,567,572,573,551,568,589,557,574,555,528,564,562,564,565,560,572,561,549,559,562,555,550,566,550,572,573,564,577,569,557,558,558,565,560,557,558,567,575,575,561,550,562,568,559,536,564,555,562,565,554,561,556,571,567,581,578,577,570,583,587,581,575,575,578,575,569,586,577,584,587,583,568,580,587,591,584,585,583,583,581,557,579,573,584,566,595,572,598,572,587,583,564,577,578,582,589,586,565,690,619,635,667,647,647,614,651,625,602,637,673,627,651,674,691,658,650,608,628,603,639,630,635,647,668,635,596,654,654,651,606,616,651,655,614,642,642,633,656,711,699,707,716,710,694,675,703,725,697,680,696,691,678,711,705,691,702,718,691,704,690,702,677,702,681,700,693,706,687,681,671,689,707,699,683,714,691,695,682,662,672,682,661,657,681,662,680,667,667,678,665,693,662,677,665,684,666,667,662,686,680,660,672,664,662,674,664,678,667,671,657,665,665,664,675,680,664,679,670,675,672,657,673,660,608,597,576,602,596,582,604,582,574,571,576,603,590,590,587,583,587,584,610,597,583,596,589,582,581,566,573,579,581,586,580,573,570,568,580,581,587,596,593,589,592,574,585,591,605,592,597,635,689,583,643,632,627,591,619,641,664,673,640,655,601,623,611,606,629,640,600,635,580,634,644,606,631,598,643,648,612,682,609,604,619,686,629,698,697,694,705,671,690,682,695,688,699,689,704,704,682,693,714,683,683,700,687,680,710,705,683,670,682,698,672,686,701,679,677,696,678,686,672,717,693,687,660,694,676,688,667,693,664,670,674,659,660,686,673,692,677,674,681,677,673,665,682,699,676,679,657,672,669,682,686,660,680,668,702,673,677,671,674,677,679,656,659,660,679,654,663,580,583,567,575,569,603,571,573,561,575,565,577,544,579,580,584,561,570,568,580,574,557,582,586,577,585,574,574,581,574,590,576,577,574,582,578,585,593,568,661,652,671,645,679,655,642,617,657,635,690,649,658,654,677,653,674,642,686,688,654,690,634,681,679,669,654,648,687,645,637,652,683,650,633,649,660,642,682,663,649,642,635,587,582,572,575,567,565,567,577,589,601,579,581,597,557,592,564,591,592,568,592,569,566,565,591,576,580,585,595,564,561,578,574,584,577,576,579,572,594,585,590,570,603,608,608,567,596,562,554,571,572,604,568,572,565,575,539,581,580,546,583,550,576,558,556,570,550,600,587,549,561,578,569,583,572,554,568,577,560,572,561,556,584,565,559,574,571,553,642,654,668,668,658,661,656,651,659,665,640,658,673,684,672,662,665,658,641,648,646,651,650,633,647,674,655,648,659,655,651,661,660,662,662,662,654,647,644,647,655,656,641,652,660,654,649,660,668,634,619,631,614,625,623,608,602,598,640,606,620,624,621,633,616,615,617,592,627,611,614,611,612,615,642,612,610,613,595,623,633,620,618,605,619,608,619,613,603,612,616,599,595,573,592,582,580,587,585,576,591,580,590,578,581,592,580,575,581,584,570,580,586,586,572,592,592,586,583,567,580,590,577,573,586,594,584,597,583,585,586,590,579,589,654,610,657,628,680,649,638,621,647,618,649,622,644,648,640,629,665,627,604,647,604,616,634,635,640,660,656,612,634,620,623,647,660,657,626,626,620,601,630,626,642,700,686,685,731,713,694,691,708,720,699,706,706,697,696,685,705,703,711,679,694,694,691,683,716,688,697,688,695,699,706,710,676,706,707,702,690,682,699,697,692,684,686,681,678,690,674,703,677,683,671,675,691,687,679,681,687,674,681,675,684,691,691,690,698,689,694,686,670,687,660,678,682,681,683,676,702,719,673,683,691,685,679,666,657,669,708,662,670,673,674,665,655,653,682,677,674,685,666,661,681,665,677,668,668,668,677,651,659,668,671,667,675,668,662,674,657,680,677,672,676,656,663,681,654,681,663,676,670,659,670,656,657,679,661,663,649,663,649,677,660,662,663,664,676,656,660,674,661,660,669,653,676,663,659,667,655,681,654,651,668,671,656,672,666,654,662,655,673,675,733,751,739,749,724,720,662,708,718,689,717,710,719,743,711,722,730,691,717,699,719,731,703,706,709,728,697,728,702,734,723,762,762,688,726,762,703,747,684,713,708,701,700,689,698,691,693,696,705,700,726,720,690,692,680,715,708,677,715,731,692,683,712,723,704,685,713,699,701,698,692,696,716,705,694,694,717,703,641,698,716,662,701,664,706,673,732,709,687,678,704,708,646,699,729,645,725,711,661,691,704,656,681,688,675,616,683,680,649,699,664,694,732,730,689,706,680,756,678,693,656,654,620,656,666,659,659,667,657,666,685,652,654,638,663,670,642,673,661,644,615,686,667,664,678,631,652,650,664,664,664,676,669,670,671,634,649,677,665,643,666,671,665,531,539,566,558,555,568,562,576,548,560,560,563,570,552,572,557,553,563,541,562,541,549,573,561,557,562,564,553,549,559,546,553,544,552,559,547,534,551,555,573,590,607,600,583,589,591,598,598,609,584,575,583,587,569,582,587,587,610,609,582,584,577,591,602,607,594,596,585,593,593,593,584,593,591,585,580,612,593,615,604,616,624,602,638,611,608,647,627,617,604,619,630,627,626,626,625,651,606,633,604,609,623,615,626,605,625,627,621,649,611,609,610,612,632,613,641,621,623,632,624,696,689,712,728,690,718,698,701,694,704,699,685,717,725,713,722,678,722,695,701,764,733,714,691,691,717,751,683,722,673,670,723,691,716,730,731,750,715,701,697,676,712,715,718,683,701,629,639,662,663,584,639,670,647,662,637,657,652,661,623,668,674,632,635,664,622,613,641,657,636,654,615,655,638,648,634,650,632,596,629,655,624,657,653,646,626,643,631,666,655,653,574,614,605,629,640,622,629,670,619,680,604,627,632,610,665,654,621,664,651,567,671,641,656,603,623,673,596,690,727,579,622,633,677,617,645,627,619,592,618,605,625,660,638,649,649,596,652,587,720,688,704,719,678,701,691,713,708,713,692,691,718,675,700,694,714,711,703,692,693,712,701,718,696,691,696,683,711,670,700,710,691,688,690,699,737,695,711,723,696,697,689,689,676,670,667,657,677,662,660,670,664,659,657,662,655,658,659,677,692,689,671,674,704,690,665,671,670,663,668,647,672,652,685,664,671,666,696,672,668,694,661,666,662,668,696,688,648,654,634,672,640,650,654,641,649,652,647,671,644,643,650,633,648,640,643,631,659,637,632,630,644,644,629,630,651,648,668,642,626,650,640,643,631,636,647,635,653,653,652,653,658,661,655,656,662,669,660,670,680,661,667,667,657,668,677,651,660,673,647,648,675,661,648,663,672,659,655,652,664,666,663,659,661,643,650,664,660,668,655,661,671,650,652,745,754,712,708,720,682,704,730,741,730,724,749,741,687,745,689,685,715,738,710,724,752,709,748,683,697,716,741,701,695,728,695,701,742,714,682,715,795,701,699,725,694,705,704,718,718,701,678,698,720,693,683,680,699,704,719,705,711,692,700,696,686,708,713,692,706,701,692,704,699,711,709,700,691,693,688,700,718,701,711,701,686,697,696,700,715,673,700,711,734,699,766,687,686,685,738,746,697,685,655,677,654,642,729,735,688,645,697,706,674,753,714,737,752,697,713,701,722,776,693,660,687,675,687,700,706,647,658,649,701,677,673,685,715,668,667,647,688,674,658,685,671,665,672,691,645,661,661,669,675,669,679,676,653,639,664,676,659,665,676,686,687,683,642,656,686,648,667,676,682,657,678,677,666,648,634,656,650,646,651,637,655,643,623,633,667,643,649,678,646,642,628,631,639,640,638,657,635,638,643,675,623,647,635,659,653,649,648,637,644,633,650,645,661,628,647,631,636,630,636,639,641,658,644,654,649,649,646,630,658,663,650,658,651,634,643,661,652,653,639,658,663,634,661,637,659,640,655,650,649,642,665,645,653,632,639,657,662,634,657,643,590,609,600,591,581,604,581,596,600,594,605,602,590,605,588,575,606,598,592,616,597,603,587,603,599,581,588,608,600,595,603,605,618,594,572,593,585,594,602,579,591,601,629,622,673,620,676,654,607,637,621,660,641,642,702,665,566,636,624,656,620,650,604,691,584,644,656,694,616,716,616,592,653,696,621,675,642,583,736,630,644,659,634,651,632,677,630,636,626,650,659,669,649,645,653,623,659,655,647,653,634,636,671,648,646,656,639,645,647,659,627,637,624,624,650,640,654,641,643,636,663,665,659,658,620,578,581,556,549,561,554,560,564,562,539,561,540,556,568,555,539,560,566,549,568,561,569,558,560,556,573,538,547,554,550,565,573,551,544,540,569,548,552,572,548,571,555,568,555,568,565,551,560,564,566,557,558,554,565,576,560,548,554,573,565,574,564,566,562,555,568,576,559,564,563,562,556,553,576,562,559,560,572,557,562,579,558,547,565,540,576,567,569,556,547,561,584,555,547,578,555,558,559,554,554,576,558,546,562,574,545,539,564,555,583,580,558,568,558,567,565,561,560,566,564,578,555,542,539,523,510,518,522,524,522,519,541,528,511,523,526,535,515,510,512,533,520,510,534,539,533,518,518,520,516,535,523,514,521,529,526,534,523,531,521,529,512,531,523,519,523,539,525,534,521,534,532,509,528,534,536,540,527,540,542,522,525,542,530,535,530,529,519,524,542,537,536,539,542,536,525,529,537,533,531,538,528,536,539,525,525,526,522,529,529,526,521,538,530,532,550,544,555,535,536,550,529,533,547,545,546,540,534,552,531,553,542,549,529,526,539,535,530,539,540,538,549,542,540,541,547,536,549,535,550,531,548,545,538,555,535,549,526,549,566,555,555,559,569,556,546,578,568,565,559,565,572,557,565,559,553,553,562,561,568,565,567,569,565,552,567,554,543,569,569,564,560,568,573,576,547,570,561,567,554,556,553,566,608,623,621,589,610,594,620,621,609,605,616,610,597,612,619,614,597,609,609,611,612,617,611,602,620,631,618,609,605,628,607,627,614,594,614,608,645,620,632,649,646,614,630,622,666,616,634,647,634,628,639,643,649,649,625,664,631,642,637,623,628,634,652,648,650,617,655,665,621,628,646,628,643,641,639,726,745,715,703,701,738,694,711,675,732,766,734,730,716,678,673,694,719,728,712,717,717,731,669,721,720,736,728,708,686,729,738,698,713,716,699,744,687,689,724,744,711,747,677,732,738,723,738,729,726,727,741,744,711,725,723,719,711,728,735,740,722,736,720,715,719,729,730,732,714,719,725,738,707,730,727,740,714,722,728,736,718,725,750,669,657,645,659,667,673,643,698,653,633,661,644,672,672,680,676,672,660,644,637,622,662,669,649,670,683,645,669,670,683,690,664,673,673,676,665,665,656,636,631,663,686,647,596,555,559,535,542,559,548,547,554,532,545,545,553,539,557,562,538,544,558,544,559,556,538,544,565,567,542,545,561,552,542,578,550,552,545,553,538,556,548,562,551,577,587,562,582,563,574,585,579,595,570,572,589,566,568,583,572,592,571,567,573,554,569,592,585,568,570,579,562,579,585,587,579,560,570,568,586,592,577,577,576,614,604,607,569,597,631,624,591,605,618,593,597,595,636,614,604,612,589,638,638,601,630,631,613,590,604,602,596,615,622,600,607,618,610,605,601,595,634,606,611,592,619,617,585,615,594,590,599,613,612,620,612,584,604,607,599,594,597,617,633,598,605,598,621,625,580,592,600,598,614,585,633,612,602,628,622,594,595,612,617,604,587,616,606,603,618,576,595,582,578,592,573,589,585,585,558,578,582,576,576,574,582,580,570,571,571,588,585,594,584,585,565,574,584,583,581,587,577,576,583,572,563,583,590,581,567,579,579,586,681,666,677,670,664,661,646,665,682,672,667,701,654,676,679,677,674,672,670,698,681,652,661,663,659,681,668,677,667,707,683,677,693,696,687,667,658,658,672,662,660,661,672,700,709,722,694,665,695,703,704,684,672,717,681,670,672,655,740,695,672,676,684,661,677,678,674,696,711,667,683,684,697,647,691,685,703,680,688,682,708,694,686,685,696,701,680,703,695,685,742,698,676,704,676,693,692,709,694,692,698,687,689,683,693,673,664,699,670,664,681,664,688,680,696,670,709,684,699,671,680,678,666,677,702,691,615,586,583,630,574,595,606,611,584,623,588,593,559,619,614,615,569,613,599,586,615,615,586,621,602,613,626,621,628,580,600,590,603,583,619,638,573,588,651,565,587,562,568,567,568,557,562,577,574,559,577,565,581,559,576,569,581,578,563,569,572,580,574,573,557,581,575,576,580,565,572,566,547,568,570,569,569,574,573,545,538,531,530,556,528,532,545,521,544,542,536,536,534,542,556,522,533,519,529,579,560,551,531,549,536,537,533,542,543,548,558,532,562,531,548,560,554,535,544,542,544,538,543,528,526,520,524,515,520,519,540,538,540,498,516,532,502,519,517,519,529,540,531,529,530,524,513,513,531,532,515,517,538,514,513,510,509,518,519,529,523,532,526,527,505,540,501,560,585,586,597,574,564,582,563,596,571,577,572,571,568,567,578,587,600,561,592,583,578,566,582,584,582,576,577,578,590,579,571,572,571,577,570,583,563,583,561,581,637,639,637,650,631,631,651,635,650,637,627,641,653,660,625,635,600,628,641,636,646,626,626,659,639,632,646,644,624,651,649,660,646,636,626,640,655,636,627,633,642,625,657,652,645,649,663,636,663,639,646,640,652,651,652,644,643,639,635,653,652,640,660,651,652,658,660,633,641,631,649,628,652,662,643,648,639,654,632,656,662,645,664,644,647,635,653,642,636,610,621,606,634,602,601,638,601,610,629,594,601,598,597,599,613,625,617,616,607,621,613,617,595,608,604,615,597,610,613,587,615,606,607,611,626,631,630,595,610,609,632,599,624,619,597,632,607,605,618,584,586,600,586,572,569,587,575,587,582,582,576,582,576,583,586,585,589,585,572,575,584,577,583,581,590,589,585,581,582,561,575,570,587,569,579,583,589,559,568,579,575,567,678,656,671,681,668,658,692,681,658,678,673,693,674,678,680,671,678,682,669,700,684,662,658,677,675,671,677,688,655,693,688,681,670,669,672,661,664,664,667,669,696,677,672,664,651,681,674,643,669,668,647,658,666,649,681,703,668,653,675,659,639,671,706,673,683,675,663,640,639,713,678,679,677,685,659,685,649,662,662,710,668,622,610,664,619,586,654,619,635,622,635,643,617,607,652,631,657,648,603,624,645,616,599,644,632,646,641,615,651,624,629,627,592,623,595,614,632,658,597,643,649,565,628,576,651,619,622,676,566,594,633,596,639,664,632,712,554,647,641,685,578,565,627,671,587,624,618,676,597,612,651,594,655,669,627,691,672,693,615,629,654,670,551,630,606,646,625,626,619,612,620,634,638,624,596,612,625,628,641,631,621,635,633,612,653,637,618,617,628,617,602,632,614,631,612,603,655,609,615,626,619,630,650,629,611,609,630,583,580,588,585,593,590,575,584,584,585,592,574,584,570,577,582,590,576,588,571,582,583,582,576,579,576,591,567,586,575,582,595,569,585,574,574,574,572,588,594,592,579,586,582,574,583,586,633,631,657,625,643,660,639,687,642,669,651,644,613,652,656,644,660,630,642,665,641,657,644,654,627,652,641,638,593,637,582,627,632,664,642,649,650,650,644,647,660,693,711,709,684,708,676,695,683,696,694,698,669,718,707,685,708,714,687,692,693,681,695,702,709,677,701,716,687,676,685,709,686,695,696,714,709,689,705,703,684,685,684,682,699,686,670,687,675,670,667,679,686,675,672,668,678,661,684,683,677,672,649,681,681,685,678,672,664,663,679,672,679,687,664,650,670,672,672,667,679,670,685,659,661,672,666,672,668,669,701,679,682,571,575,584,571,575,583,570,576,544,583,574,585,589,570,573,593,565,578,581,578,565,544,568,573,589,571,582,568,594,550,546,569,571,553,557,568,560,558,571,571,572,590,572,580,529,612,587,598,597,581,595,581,608,578,583,590,582,616,594,580,603,576,627,581,589,574,590,589,591,582,596,578,598,577,577,582,596,616,586,603,595,579,597,600,590,604,592,600,605,592,606,625,612,602,626,622,614,607,597,612,592,597,628,628,616,618,601,633,594,618,628,594,616,614,616,615,634,606,617,604,592,616,618,600,627,605,640,630,596,598,606,621,597,631,602,609,598,600,576,588,576,574,594,570,559,585,575,586,582,552,583,571,579,582,574,587,579,583,591,556,562,579,576,574,581,579,582,570,586,590,579,573,588,574,585,566,582,589,560,565,578,619,619,616,585,632,641,572,635,602,640,609,633,633,621,657,597,648,627,663,613,635,634,629,611,603,649,590,655,639,642,590,617,613,651,614,603,649,651,602,650,636,639,670,680,667,656,662,679,659,672,667,662,696,651,672,671,678,681,660,671,680,665,677,669,685,669,657,665,645,669,665,670,667,664,666,662,667,649,672,690,665,670,661,681,671,693,674,664,623,615,590,604,589,607,599,587,619,627,619,613,607,605,615,610,613,592,618,595,607,631,592,588,598,603,600,601,589,600,597,594,629,629,606,607,600,586,612,589,606,606,595,626,606,631,772,739,697,742,706,711,727,705,748,651,737,715,776,718,696,693,772,693,791,676,730,755,717,754,688,697,721,749,626,708,706,669,755,695,755,691,658,727,774,747,706,753,695,734,721,761,733,698,707,692,700,715,707,748,707,712,689,697,712,723,720,684,707,712,709,695,740,716,703,722,719,717,714,704,699,725,731,727,668,717,699,722,719,711,707,721,700,727,701,683,727,683,662,670,635,643,593,647,656,650,649,633,629,683,674,660,638,634,663,648,665,662,647,643,647,683,665,661,642,639,654,651,663,662,643,635,635,658,636,657,648,657,624,642,659,726,704,711,697,719,715,707,701,740,718,727,731,731,702,736,716,706,751,791,686,736,774,710,715,708,709,718,747,723,705,717,707,761,728,707,739,726,729,729,714,716,731,729,702,679,715,734,702,716,685,736,697,738,692,724,779,748,721,710,739,754,699,773,681,725,722,737,719,717,709,728,740,742,728,739,757,720,706,680,728,718,668,666,667,660,694,658,657,659,669,663,668,670,655,654,644,646,671,654,683,672,654,646,653,648,652,669,669,679,677,671,672,663,640,671,679,644,642,646,678,672,576,577,559,589,577,583,586,580,579,582,577,586,570,600,590,565,564,569,577,572,568,566,583,591,577,582,579,584,575,587,570,567,573,590,581,586,566,573,582,571,573,572,547,693,675,676,673,690,663,693,681,682,668,700,681,673,670,655,682,679,642,660,678,698,674,675,673,660,707,656,662,683,669,668,692,696,688,692,670,665,691,700,685,693,728,719,699,676,691,702,708,688,667,640,681,688,678,663,693,682,670,690,675,676,678,696,671,689,695,639,690,679,684,711,695,626,685,676,704,683,696,679,673,678,676,667,692,706,695,667,722,706,671,712,713,704,695,664,669,690,695,690,684,681,662,669,683,680,666,686,681,687,685,697,700,687,682,737,607,605,581,597,570,591,613,582,578,592,580,598,592,571,589,578,569,614,607,585,598,588,619,577,593,605,594,598,573,597,611,591,597,608,609,571,592,620,569,565,570,598,577,603,537,627,621,606,641,614,605,630,637,667,663,639,622,636,630,661,593,597,583,659,641,664,620,572,648,658,660,618,642,673,594,685,622,663,667,659,628,626,593,618,619,675,686,675,686,683,700,713,656,656,660,657,693,669,697,668,676,681,691,710,683,696,695,698,681,691,688,710,705,674,685,693,670,702,690,712,661,676,709,672,675,684,680,703,675,678,652,753,641,593,579,591,648,610,584,631,580,585,605,634,597,596,599,641,648,616,637,593,645,629,631,622,601,633,579,592,605,594,669,561,626,614,614,646,587,664,557,598,613,613,623,612,665,663,685,702,693,708,686,676,690,694,646,656,689,674,695,680,673,690,697,678,699,694,676,677,688,685,703,694,679,685,681,668,683,677,682,708,730,695,663,674,663,603,678,621,734,627,660,678,660,652,642,618,695,653,714,712,687,627,645,673,623,690,645,638,676,678,628,625,687,686,670,629,669,655,675,709,665,695,695,645,723,745,688,722,697,712,726,683,718,710,709,699,704,715,713,697,698,713,721,705,715,710,715,704,696,712,691,715,707,710,709,722,688,727,705,718,722,702,684,700,702,702,602,608,597,603,613,631,613,623,647,608,629,606,622,599,635,644,608,638,607,606,648,586,623,646,624,644,618,615,622,623,620,614,615,640,635,601,643,602,626,627,622,614,632,625,579,601,581,584,638,587,592,586,604,565,606,598,615,609,619,604,587,600,600,589,569,589,619,587,584,593,582,594,598,602,599,575,591,608,591,613,602,572,580,596,598,577,601,600,607,587,654,660,644,635,638,660,633,660,664,676,645,653,655,674,658,680,657,672,653,645,637,638,642,658,668,678,661,636,632,644,641,647,663,661,641,673,662,632,646,635,678,649,667,641,650,647,654,662,648,603,589,588,603,595,606,588,591,593,591,602,594,597,595,603,633,596,594,600,608,583,599,598,604,610,600,600,573,591,610,588,587,594,579,619,614,593,590,604,599,591,606,600,604,580,591,583,617,650,598,633,606,611,604,564,572,623,615,608,603,568,607,604,628,656,612,597,607,620,606,613,591,617,634,608,595,590,611,607,611,646,595,635,566,595,576,630,614,585,593,576,576,590,589,588,585,580,607,597,582,572,581,599,569,582,579,602,608,580,587,569,585,571,580,594,593,585,581,585,595,587,582,599,596,590,653,647,638,645,657,642,636,633,626,594,573,605,669,629,608,590,619,620,658,619,640,647,657,613,664,623,610,649,646,618,619,637,589,630,635,633,671,629,641,671,632,633,687,679,666,667,673,686,655,667,662,660,666,660,674,680,686,664,666,678,666,662,672,670,684,683,672,661,683,678,654,663,686,663,655,661,656,667,666,672,667,569,566,604,582,573,572,582,580,591,572,575,575,572,571,566,577,565,571,573,591,565,574,562,594,590,575,596,577,582,587,563,571,554,543,584,566,556,578,595,585,581,595,578,589,553,574,584,599,568,575,557,584,580,574,580,588,565,573,568,563,553,586,577,583,593,564,576,582,581,594,576,588,574,574,568,571,584,577,575,576,559,586,551,589,566,583,575,565,573,552,566,567,557,565,557,555,570,562,551,562,558,559,568,571,561,565,572,567,551,570,561,566,552,555,567,553,569,561,561,555,566,559,563,570,570,557,549,584,570,577,574,570,587,568,595,598,589,593,575,582,584,568,582,580,571,573,581,585,574,579,582,576,600,564,571,568,578,581,575,586,589,584,589,582,568,579,585,578,585,586,597,595,627,610,646,583,568,654,599,572,627,619,607,550,615,620,632,628,650,642,626,598,614,570,602,630,639,644,603,628,613,644,627,599,593,605,594,638,609,609,642,615,597,620,678,610,606,617,605,594,587,609,617,590,611,601,592,618,584,597,596,606,592,602,614,609,596,592,621,596,598,608,587,607,621,574,590,604,607,593,610,603,608,588,603,595,586,578,644,612,612,629,651,692,649,640,637,667,642,636,648,604,636,621,616,615,588,594,617,658,632,643,644,630,601,633,670,609,619,643,657,668,593,623,640,630,637,581,590,625,677,653,618,683,683,678,674,695,672,689,671,689,674,666,676,680,681,651,682,678,674,698,703,677,683,671,666,690,666,676,679,683,672,690,682,688,690,665,683,686,685,673,691,674,674,688,694,655,689,699,686,715,726,733,708,705,724,694,715,711,747,754,719,716,744,712,714,724,759,747,742,726,699,698,701,767,715,756,731,722,712,736,738,690,731,694,708,669,718,715,703,719,698,700,693,710,706,701,700,717,697,702,707,703,699,722,707,707,712,707,698,715,714,708,709,724,701,694,679,721,708,684,707,696,672,713,710,701,704,689,695,708,703,702,679,690,711,698,696,704,743,685,634,720,673,709,709,623,731,699,691,706,714,656,722,703,740,685,727,708,739,748,688,663,683,660,666,665,677,680,647,681,720,761,675,669,727,659,683,664,653,656,670,666,655,659,666,646,663,688,660,652,641,654,641,646,654,660,664,647,646,643,661,617,654,668,650,663,633,667,672,643,630,633,659,653,659,673,651,679,609,658,653,643,687,687,738,704,738,719,693,734,745,691,708,719,743,729,752,704,670,712,743,725,733,741,747,735,720,698,709,731,716,732,708,736,759,725,703,695,718,723,720,752,742,717,732,716,695,712,717,696,710,721,678,715,711,719,693,716,755,694,712,719,733,735,730,737,726,760,710,753,678,711,682,749,717,729,759,710,671,734,755,729,710,743,658,682,659,670,650,667,684,653,639,662,639,645,670,679,671,665,658,669,677,668,655,674,683,672,652,663,640,678,702,669,668,679,662,668,666,667,691,672,647,673,680,672,615,670,658,671,652,658,566,582,559,570,577,569,582,562,581,573,556,582,573,587,572,555,574,563,556,549,573,563,586,577,558,569,576,571,584,585,589,583,570,570,559,572,571,557,599,614,612,601,631,599,585,593,609,544,578,594,589,606,563,606,604,614,594,633,610,608,603,584,564,597,620,542,577,606,545,587,603,565,593,587,565,570,593,636,631,604,621,658,561,577,567,559,552,573,572,560,567,588,587,575,568,571,579,589,565,580,590,575,571,571,575,565,568,580,586,594,580,565,576,569,569,560,582,566,576,556,576,577,584,546,675,639,648,648,671,643,663,637,668,669,633,667,649,660,667,651,659,628,663,635,659,647,651,663,682,653,671,647,640,663,650,683,643,656,676,663,669,660,646,664,670,676,621,680,614,578,589,575,598,586,595,586,613,591,608,577,599,598,583,585,604,591,595,566,597,593,606,566,580,586,600,597,580,589,593,608,573,581,579,621,592,584,566,576,584,593,585,593,572,612,575,596,577,576,595,551,589,593,583,605,560,641,564,624,668,648,591,624,640,586,583,576,593,597,603,570,624,621,592,637,598,639,556,589,633,626,579,597,569,573,593,604,617,525,667,650,646,533,598,612,616,605,591,593,602,602,598,589,613,578,602,600,604,595,601,602,619,601,602,592,589,612,595,585,588,596,594,604,593,592,600,606,623,592,595,603,605,592,608,600,617,607,593,593,571,560,575,566,573,573,562,575,573,565,565,581,573,585,570,567,569,584,557,564,578,579,572,572,548,567,557,573,553,565,568,569,551,566,562,573,594,552,544,549,538,545,546,541,545,537,552,551,550,535,552,552,562,549,561,562,562,554,550,538,535,560,538,560,553,566,546,568,555,550,553,548,549,556,541,549,543,546,649,694,700,689,671,641,655,704,681,658,669,704,680,600,690,664,702,662,647,663,662,685,689,694,684,722,695,700,660,652,704,581,661,645,701,671,757,683,631,663,636,588,583,624,582,579,615,590,601,588,596,592,611,620,587,598,565,599,581,594,603,593,611,566,590,602,571,587,587,604,592,617,601,603,579,582,611,600,599,596,593,604,605,607,594,554,549,577,561,559,546,536,535,528,545,547,562,570,531,528,535,529,528,551,551,549,549,571,538,568,572,557,546,550,567,562,554,564,513,552,555,552,544,565,553,566,540,548,550,535,553,786,768,773,749,753,779,741,807,735,753,778,733,749,772,736,754,761,733,733,758,733,762,774,791,767,797,759,725,722,793,766,751,765,761,773,760,742,775,749,722,788,732,752,704,712,735,712,684,703,720,696,698,686,726,737,698,718,704,716,721,766,753,721,718,717,732,754,761,731,705,698,745,745,723,693,706,756,731,746,708,732,638,669,675,660,648,656,653,659,661,661,663,650,650,644,629,666,660,658,656,648,675,662,678,647,666,654,670,648,669,669,663,674,626,682,656,685,689,647,671,654,640,633,655,694,635,657,723,743,744,733,710,717,699,725,731,693,730,687,766,722,696,732,726,726,744,719,739,714,714,714,707,741,727,695,665,722,724,735,701,716,714,741,740,745,701,748,735,695,744,737,746,722,731,762,731,749,735,716,752,753,706,748,759,713,763,733,748,741,738,741,744,728,725,767,715,755,709,714,739,738,729,711,700,751,727,721,706,671,697,674,695,743,708,718,707,716,720,725,712,718,690,678,700,709,729,670,699,713,713,717,709,690,717,717,734,704,696,714,722,702,725,685,716,673,697,694,725,706,701,697,726,729,719,718,687,669,688,710,707,710,709,690,713,705,671,687,693,681,720,686,705,696,703,713,700,712,696,699,703,694,685,699,698,686,699,705,708,698,693,711,706,697,697,710,712,688,731,701,701,613,602,633,589,633,611,680,608,641,578,628,606,654,637,647,578,604,663,658,622,648,629,609,647,660,618,621,635,669,568,649,638,656,641,641,612,601,550,579,575,580,590,580,601,588,572,565,569,589,560,535,599,584,602,595,586,605,582,607,568,581,581,583,584,590,546,543,593,563,602,597,584,551,549,600,574,550,586,554,551,568,575,573,581,560,556,573,565,568,573,556,546,581,560,567,561,576,552,578,577,559,544,553,579,569,579,572,579,575,566,573,575,571,549,571,574,554,553,540,552,545,547,530,544,550,541,559,542,538,539,541,562,550,543,539,551,542,541,547,551,544,544,548,555,545,557,546,550,548,540,542,553,545,541,548,545,552,563,539,549,538,554,539,547,543,557,540,552,554,543,551,542,548,531,540,544,546,546,558,550,540,558,551,549,536,553,538,549,552,558,546,543,547,556,545,550,554,547,539,539,550,552,554,549,554,553,575,643,630,654,659,641,640,622,666,662,610,646,642,616,665,617,603,603,632,636,643,637,626,590,638,639,631,607,609,617,635,649,622,639,634,611,657,642,613,604,672,659,624,623,630,599,560,554,562,554,542,571,541,554,569,573,548,561,542,537,554,550,556,539,556,549,565,564,574,568,558,557,556,567,561,576,580,550,551,542,559,554,560,569,559,545,565,532,513,542,550,545,533,562,567,553,533,529,548,554,544,543,531,543,543,579,529,549,534,543,544,552,530,539,533,544,538,533,537,552,540,517,553,569,553,550,539,518,543,530,545,529,583,700,709,688,728,708,705,701,716,709,708,705,694,676,690,726,717,712,721,721,700,701,734,698,712,692,693,694,712,717,698,733,734,756,694,715,745,711,703,748,714,718,707,714,760,696,699,715,726,703,713,697,704,691,682,708,691,701,689,682,694,688,710,691,711,709,713,710,694,698,722,716,708,708,701,712,708,714,702,714,702,701,719,685,690,715,716,707,682,723,704,697,686,680,691,720,685,685,679,703,681,672,685,696,682,707,669,673,716,693,715,704,683,688,695,688,697,702,709,685,716,690,684,688,705,683,734,713,734,716,703,709,676,675,669,625,597,609,611,614,616,608,618,636,625,587,635,608,588,606,593,594,639,594,614,622,620,605,608,666,584,643,595,599,618,611,588,598,625,624,616,614,605,620,601,627,592,543,537,553,530,529,550,558,569,543,534,543,548,535,548,529,542,538,548,563,553,541,549,545,543,543,555,551,533,543,548,541,545,565,552,539,540,531,559,550,538,537,563,537,532,675,681,686,690,667,672,675,679,685,659,686,668,680,692,659,690,675,661,679,676,651,679,686,679,673,665,669,664,678,683,702,676,669,682,647,688,672,703,634,645,622,658,625,649,655,654,643,657,642,620,660,633,618,648,637,639,655,646,644,648,658,642,655,669,637,652,635,644,667,642,646,640,649,639,639,692,641,647,628,633,645,639,633,640,652,626,652,591,644,619,635,636,654,665,650,649,630,660,627,671,665,615,631,623,636,627,657,654,631,643,639,628,632,651,655,638,659,666,643,711,688,668,710,712,682,661,681,699,678,725,681,678,720,731,704,682,691,710,703,696,686,667,696,662,669,705,690,690,705,694,715,668,693,714,695,657,683,733,702,689,746,699,687,671,642,645,669,608,642,638,626,648,628,639,665,637,625,621,635,630,630,680,643,643,617,641,661,647,629,642,649,668,624,655,637,640,646,635,672,606,624,635,662,689,656,635,628,654,684,660,666,595,602,621,629,679,594,604,664,656,603,602,611,640,571,616,571,557,636,665,617,609,681,610,614,639,645,621,585,564,601,664,534,607,583,615,682,625,593,603,608,735,597,597,614,601,624,581,602,600,608,571,582,596,602,595,588,600,611,584,607,592,601,590,589,593,600,602,597,591,608,617,605,625,610,609,605,598,587,614,610,612,599,603,615,576,599,594,605,591,563,572,574,569,569,561,564,571,576,573,559,563,586,545,587,567,575,568,583,568,569,562,560,564,577,558,557,581,576,566,575,582,559,563,573,572,575,584,577,566,566,592,558,574,573,534,552,535,541,527,552,558,543,549,544,544,543,545,536,535,555,554,560,542,526,539,543,553,525,559,536,543,542,536,525,542,546,547,540,532,525,543,541,553,548,557,513,514,518,520,525,516,528,527,528,518,517,499,522,518,525,527,519,516,516,505,498,521,533,538,520,530,522,516,518,522,530,522,517,523,509,535,515,508,517,523,521,523,506,508,507,507,514,504,512,499,502,499,510,502,495,516,504,505,504,500,500,499,506,497,510,484,493,507,505,503,500,498,500,490,502,501,509,510,499,515,499,495,502,492,498,509,508,495,488,504,499,496,502,497,493,501,490,488,505,497,502,482,497,495,491,505,501,502,504,486,495,480,504,514,497,500,508,488,500,491,496,504,487,502,500,506,500,517,506,500,504,495,504,509,507,485,499,503,497,506,509,502,514,516,501,488,505,508,516,507,498,501,493,512,506,507,502,510,490,507,513,508,509,501,509,492,502,525,496,640,638,643,638,650,656,638,659,652,634,637,635,651,643,633,656,641,641,643,643,644,645,643,646,654,628,646,671,645,647,661,659,655,675,659,648,614,591,615,608,595,605,594,618,592,593,600,611,597,609,617,615,607,606,597,602,613,593,608,613,605,598,617,575,592,592,594,614,589,606,606,619,610,603,586,601,601,605,588,601,608,599,619,638,586,587,575,571,597,581,575,579,577,583,578,569,566,574,590,571,569,576,568,576,575,575,597,565,557,577,593,570,558,577,574,558,574,584,597,582,568,582,563,545,543,558,551,553,537,552,547,540,552,563,561,545,545,555,562,544,548,549,550,554,566,564,523,544,556,543,578,547,555,544,540,561,559,550,553,548,555,542,544,553,549,537,584,595,619,586,578,621,614,615,611,573,602,547,563,608,606,637,598,632,618,641,578,618,548,631,622,577,597,613,595,611,535,588,588,606,569,591,601,611,588,599,578,606,664,556,548,562,553,559,567,566,559,556,576,557,562,555,567,552,557,560,579,549,557,570,570,555,558,549,545,569,549,554,532,554,572,581,555,549,558,548,551,555,554,558,564,565,558,555,567,578,557,593,560,578,597,560,589,588,570,579,564,573,568,568,571,564,580,562,573,578,579,571,564,574,577,586,555,567,560,566,570,575,584,575,562,579,554,574,567,555,599,566,560,552,556,548,544,558,550,551,533,546,556,530,548,545,549,555,545,555,546,554,555,546,538,548,545,556,538,555,546,547,538,540,550,538,546,545,549,545,544,545,533,548,546,544,548,551,546,768,767,729,713,780,728,732,741,694,740,698,707,790,745,685,761,727,747,711,717,673,745,723,780,771,728,716,706,762,772,758,710,735,725,757,746,744,741,744,686,783,818,771,698,696,729,695,723,709,683,699,715,709,711,684,684,684,711,705,718,690,710,719,728,719,689,690,731,699,702,698,695,700,706,695,719,704,727,728,736,724,751,616,616,624,612,612,626,646,628,605,629,615,636,629,599,633,626,608,620,650,639,622,638,641,627,602,606,629,609,612,634,601,624,612,629,599,628,625,628,648,574,584,585,571,586,568,561,569,580,577,576,581,575,553,570,587,577,575,573,571,577,582,568,588,568,603,585,579,575,568,576,565,574,595,572,581,574,574,572,573,593,570,578,553,554,559,548,558,558,545,559,550,554,568,565,551,557,556,544,560,559,545,542,561,564,550,554,554,551,552,545,559,557,549,562,548,552,566,561,533,549,548,543,565,567,544,658,682,693,681,693,653,653,725,711,685,655,689,642,714,685,646,671,684,696,695,669,681,691,644,727,666,670,673,669,706,709,671,693,654,705,683,681,731,734,722,690,611,703,681,698,699,699,694,700,715,706,716,691,717,691,720,723,717,682,718,685,717,728,711,710,688,716,704,699,706,696,710,705,722,696,690,694,716,705,726,725,621,627,630,609,626,630,606,611,621,601,630,630,619,615,588,647,599,608,625,587,628,640,635,607,601,625,629,625,626,619,624,608,604,629,643,632,614,639,602,613,629,613,621,626,581,603,601,591,600,587,628,596,590,607,592,604,599,575,595,609,607,571,603,587,579,593,585,609,583,617,592,592,587,590,583,603,594,606,593,602,612,593,668,650,645,677,674,663,653,665,663,671,653,663,658,666,664,653,668,679,665,660,655,667,689,656,657,668,669,666,662,672,690,651,673,664,668,652,656,657,669,671,747,681,698,773,748,732,679,731,695,725,758,704,734,715,724,743,753,742,719,743,734,752,696,710,712,709,714,727,730,706,718,705,737,688,713,710,730,715,730,729,721,696,709,726,706,709,737,733,737,703,691,682,707,687,725,698,718,711,699,691,719,693,691,689,708,703,699,678,732,713,691,699,710,696,691,710,706,729,708,694,678,688,693,704,720,700,710,671,710,700,697,647,615,701,725,716,659,655,706,654,704,713,660,665,648,648,696,655,622,671,668,705,709,719,659,664,661,699,666,680,749,670,687,681,675,690,717,673,660,703,684,709,699,698,674,681,683,679,636,690,655,699,717,650,659,643,685,673,694,698,650,654,680,662,654,670,645,721,667,705,651,714,684,683,653,694,703,665,691,677,722,561,579,596,589,580,601,572,581,580,593,552,597,606,577,571,602,577,590,586,561,562,573,581,581,575,611,557,560,561,571,564,558,571,569,572,578,576,601,596,587,587,573,581,591,574,575,556,567,566,554,560,573,548,576,560,558,555,552,559,577,559,581,589,559,568,595,554,562,555,566,591,565,571,559,549,561,563,571,562,553,577,548,544,568,563,575,554,571,563,568,542,560,565,556,528,556,542,618,604,593,589,613,610,592,631,588,586,598,602,619,620,600,607,594,614,599,597,629,612,603,582,633,637,616,604,601,599,576,605,586,593,644,613,617,596,611,611,605,617,573,553,561,542,547,571,569,570,565,570,559,559,570,563,565,567,556,573,564,561,576,561,585,557,561,559,584,573,565,561,564,565,566,559,557,585,551,550,563,569,590,542,594,592,561,574,564,583,571,563,558,557,558,554,566,582,573,563,568,575,568,576,590,558,562,577,589,555,546,566,563,572,554,570,569,590,575,565,569,563,560,592,569,562,566,548,569,568,558,531,717,713,752,734,709,712,703,691,693,706,680,689,687,714,687,726,717,694,695,721,697,689,728,737,704,686,738,702,684,680,702,710,714,711,733,726,713,693,704,730,730,723,707,717,737,724,712,710,716,705,694,719,693,702,701,721,727,704,720,720,702,706,704,704,696,709,713,712,698,691,707,697,709,697,683,708,721,713,697,682,700,702,725,703,701,709,688,718,709,710,716,683,714,706,672,682,688,698,679,690,681,685,683,681,670,686,675,690,675,705,682,669,648,691,692,697,703,693,679,700,678,671,723,706,689,705,702,710,690,704,716,700,671,698,695,695,673,675,686,695,694,705,672,680,682,690,670,679,688,687,667,695,670,688,678,679,667,677,694,675,686,662,677,667,701,683,664,710,683,683,659,656,676,676,653,660,671,632,625,646,608,673,628,636,648,630,624,632,638,641,643,643,654,623,641,619,640,650,621,631,631,653,640,643,637,668,639,658,643,653,646,664,691,665,658,628,627,660,600,596,603,608,577,575,599,594,578,591,597,574,577,594,615,575,588,591,577,607,596,583,593,595,605,573,583,603,591,593,593,583,571,600,585,597,587,603,566,606,579,597,616,623,612,602,616,587,608,596,615,603,611,623,612,605,612,614,614,596,604,596,598,614,599,613,617,613,616,589,616,622,604,629,608,622,596,614,600,615,609,606,601,621,616,613,613,630,627,611,609,637,617,625,649,637,636,620,620,635,633,633,628,623,626,626,617,630,637,627,615,600,616,586,612,634,621,632,600,599,621,633,629,615,608,627,605,610,631,555,571,574,570,572,578,558,575,581,556,559,578,572,559,568,550,580,566,562,576,562,568,565,576,564,585,569,570,574,542,557,561,566,562,559,543,736,691,700,698,691,691,672,665,715,680,692,691,703,694,686,682,672,696,708,698,701,708,668,706,695,664,697,697,704,694,688,711,671,696,683,693,708,660,679,704,697,697,712,682,709,683,646,649,649,654,672,662,656,644,679,679,675,652,660,662,651,654,667,669,664,671,664,653,672,670,667,677,676,657,656,665,669,655,662,662,676,662,666,658,634,646,636,621,608,661,624,632,627,607,615,638,652,632,616,635,645,625,671,609,632,646,606,635,636,610,655,641,646,655,666,639,628,650,604,639,622,659,645,625,616,634,634,640,662,685,688,700,684,686,701,716,657,674,678,721,687,714,656,651,696,682,698,674,665,645,705,697,723,708,717,715,705,684,682,672,716,693,681,726,704,691,637,609,613,595,607,633,613,635,638,615,588,594,631,611,604,598,610,605,601,603,624,625,628,633,593,625,604,610,621,601,576,608,627,604,625,588,649,612,595,597,627,629,627,584,551,563,587,532,543,564,540,554,555,558,547,565,554,558,566,566,532,579,575,535,555,571,539,537,556,535,566,564,563,546,560,558,547,553,532,541,540,597,553,717,728,683,734,710,711,730,727,735,705,716,690,720,710,709,731,726,698,737,711,702,693,718,713,708,739,724,748,723,762,738,723,747,728,741,729,723,733,733,619,676,635,585,607,610,621,614,639,620,617,616,636,613,635,638,630,637,630,624,625,613,614,605,625,646,614,618,628,606,649,646,620,623,623,607,617,620,623,632,637,672,550,617,585,582,590,595,604,581,561,571,624,579,582,606,590,577,596,601,579,585,555,589,576,575,565,562,604,618,604,563,561,586,603,585,578,605,583,594,576,597,582,564,547,649,659,649,635,641,659,663,637,630,634,662,638,633,659,649,652,651,660,662,658,641,642,677,668,635,646,638,641,637,653,633,648,653,661,656,643,651,645,656,645,666,668,649,635,632,630,574,599,591,581,588,583,606,601,565,575,574,600,596,597,574,579,591,594,590,587,587,581,583,585,578,577,574,578,609,587,593,565,575,577,603,617,582,582,576,579,583,715,673,658,673,686,692,675,698,666,675,694,716,679,701,706,691,680,678,671,679,694,696,680,717,693,699,710,704,705,709,705,704,677,690,699,711,702,697,669,677,651,669,653,667,646,672,666,671,673,663,672,646,674,661,655,660,671,655,653,640,661,670,686,655,678,676,660,669,682,658,665,668,683,669,665,660,666,665,671,669,727,713,689,701,639,706,686,705,751,723,711,715,694,718,720,714,701,719,729,715,666,670,724,687,708,714,689,696,718,688,701,673,687,724,711,675,753,726,698,681,716,723,690,681,734,628,610,630,649,655,621,613,641,636,633,618,656,620,644,646,660,643,649,627,640,655,650,646,626,663,619,601,619,640,656,638,624,650,623,634,621,663,653,657,628,639,664,632,638,662,640,587,645,626,640,657,639,687,706,605,694,649,650,689,643,644,607,622,662,639,643,696,617,659,583,666,664,641,624,629,655,688,617,655,693,646,658,714,720,732,701,704,706,698,719,708,731,727,714,726,718,727,723,715,701,695,712,730,711,738,709,734,698,717,701,735,736,709,719,721,716,732,717,692,717,697,705,710,725,715,709,704,701,742,718,736,691,749,757,761,736,716,752,745,741,743,714,739,730,702,732,711,714,731,770,726,739,748,761,736,743,745,720,766,778,705,752,749,727,768,757,735,696,718,722,752,699,750,751,697,659,717,746,717,736,747,746,756,753,715,706,725,718,701,708,769,757,709,702,730,692,722,681,700,692,703,739,723,723,733,700,732,723,681,742,716,739,733,710,657,642,641,662,634,670,673,664,655,677,668,639,642,636,647,653,652,656,677,642,675,679,661,664,650,655,657,655,656,659,653,649,661,666,643,633,623,667,641,637,665,650,634,726,714,746,717,731,757,747,733,711,726,706,742,700,754,734,716,715,712,732,731,721,739,697,754,719,729,720,736,743,784,679,717,715,716,741,722,719,760,724,725,691,736,745,721,723,711,735,687,689,721,718,719,705,712,728,756,745,727,711,730,699,732,746,736,732,693,703,718,729,745,734,704,730,688,719,693,742,755,742,726,758,726,615,637,658,683,658,664,662,650,642,670,669,655,635,654,679,661,659,651,671,703,679,651,633,671,678,666,675,677,671,652,661,664,651,663,673,668,658,636,645,657,650,641,723,713,702,684,716,697,702,723,710,705,682,686,707,681,733,710,718,710,664,673,714,699,697,675,712,716,692,651,718,718,685,686,708,669,707,703,701,696,679,660,665,670,668,627,612,606,589,586,639,629,604,597,607,616,617,588,635,602,633,614,648,633,634,618,631,616,632,615,663,607,589,655,651,640,607,609,601,582,618,588,611,617,603,614,603,563,566,561,547,561,550,540,568,561,554,582,538,556,546,553,599,564,567,563,582,565,549,545,565,561,571,554,584,574,564,563,562,553,557,545,571,524,560,581,592,565,581,570,565,700,714,760,744,755,737,748,769,721,732,732,727,752,722,738,733,766,742,739,787,714,746,762,740,698,739,702,720,741,712,745,734,733,734,719,727,735,739,734,761,717,783,759,769,732,738,741,726,720,747,723,727,730,722,728,729,723,725,732,716,729,716,740,738,755,716,737,743,729,730,730,744,717,721,704,718,736,734,735,745,736,721,719,722,719,726,722,712,707,688,692,648,685,693,687,693,672,687,694,689,665,716,678,678,693,684,696,713,705,688,714,700,708,693,691,687,685,702,701,705,723,708,673,709,690,691,703,684,694,695,693,713,722,736,594,569,587,595,587,545,617,584,554,614,563,564,577,553,591,614,589,584,611,551,596,585,559,526,558,603,580,568,572,532,591,543,521,584,637,571,577,566,564,561,573,574,577,585,569,586,577,574,587,574,572,579,579,571,581,578,579,578,557,583,597,572,568,579,575,585,575,579,575,584,554,569,564,577,570,574,567,554,576,587,606,605,641,622,627,617,627,630,617,614,625,640,623,639,626,632,617,628,619,602,623,642,632,629,629,614,612,662,617,641,619,613,626,623,619,617,624,619,638,619,742,724,718,727,710,692,688,757,710,721,715,734,697,699,745,760,708,726,712,717,699,684,750,693,761,726,736,690,713,714,718,736,688,709,699,714,684,678,690,677,713,681,686,696,701,713,718,703,701,709,715,703,706,705,698,691,697,680,707,700,689,691,716,702,702,695,706,696,708,677,699,706,703,717,693,694,696,686,700,693,695,644,718,712,648,689,705,686,688,737,663,642,692,699,686,656,731,687,713,710,676,716,699,636,709,689,688,697,669,723,722,687,675,678,630,682,681,694,706,691,597,653,654,656,647,635,661,650,641,634,649,647,654,669,696,671,654,640,662,648,639,650,650,675,637,662,645,653,640,642,624,689,646,669,655,652,670,657,614,642,657,643,647,653,646,667,644,732,722,708,705,699,693,723,728,702,761,710,749,708,732,685,716,725,709,736,726,703,744,756,759,747,740,668,740,722,727,775,734,729,725,712,712,745,725,762,725,716,737,664,703,722,716,683,756,741,750,742,718,730,719,708,740,702,760,749,729,728,714,726,729,734,725,705,747,740,698,732,749,713,717,733,706,741,726,746,703,721,710,710,709,738,721,732,718,707,688,694,712,704,734,706,712,731,670,703,668,734,665,715,690,713,678,718,671,716,681,727,710,708,716,736,677,696,668,718,695,698,683,712,716,669,701,731,664,741,664,647,681,644,649,670,666,655,652,649,650,667,644,679,657,658,657,642,661,658,662,644,670,688,636,645,649,641,670,668,656,671,645,642,655,652,653,665,651,680,624,669,660,654,604,622,619,617,619,601,601,620,631,614,601,624,597,608,620,611,615,612,625,614,619,616,613,600,607,611,615,621,627,613,597,622,624,629,623,617,620,628,618,599,598,646,615,593,608,604,606,604,617,617,592,600,605,620,607,617,606,636,594,624,621,621,596,613,598,601,610,602,601,606,601,613,590,598,610,609,601,620,609,615,611,602,617,614,634,622,613,613,647,674,659,689,659,673,667,643,663,660,672,676,630,658,693,637,661,669,656,663,663,685,640,668,646,675,652,648,666,672,656,662,674,674,683,661,642,644,661,651,660,663,669,656,647,651,644,656,654,653,665,665,667,652,660,656,653,664,629,641,664,651,659,660,661,665,662,646,652,651,662,678,671,666,649,671,664,659,652,669,672,669,661,653,665,644,666,669,657,647,653,656,691,739,699,688,699,665,679,696,664,683,675,697,683,707,660,667,694,641,684,707,714,670,716,665,710,630,673,692,671,635,663,642,657,684,686,691,654,701,690,674,622,638,608,616,609,628,626,638,642,633,625,613,638,632,630,611,626,636,641,653,616,640,609,633,631,626,626,637,632,624,618,622,598,622,630,633,617,612,626,630,634,626,635,630,643,621,640,638,581,565,573,585,559,578,590,574,571,575,574,573,562,582,573,575,556,572,576,571,578,574,581,566,575,567,570,586,579,579,566,580,584,574,565,581,576,575,556,568,573,580,580,572,580,585,579,580,582,575,586,578,573,723,707,717,768,717,785,748,777,763,735,735,738,740,738,672,729,686,717,724,734,724,720,750,744,712,706,759,740,729,732,722,732,757,749,749,735,725,735,687,706,699,758,752,739,703,674,717,696,702,718,696,722,684,712,685,694,716,728,709,716,719,695,702,690,705,698,717,699,700,730,690,681,708,736,717,724,685,723,712,721,679,715,689,691,687,711,695,603,629,612,569,587,608,636,587,619,613,635,630,617,619,603,597,604,606,577,610,581,615,608,650,573,611,630,623,628,593,618,619,602,589,594,595,584,633,603,622,602,600,609,607,590,600,602,579,576,592,599,574,582,556,582,579,593,568,597,605,590,588,597,580,602,574,582,581,593,563,586,588,568,584,578,613,577,590,584,592,618,582,599,586,591,599,582,536,633,626,645,607,616,639,634,629,618,647,627,616,629,623,620,629,617,638,618,628,642,612,620,635,653,636,639,627,636,639,605,632,619,632,608,631,652,622,646,630,626,617,644,632,602,680,643,658,647,649,636,665,642,655,639,666,665,664,662,674,646,666,644,656,646,677,664,663,649,660,674,648,665,656,663,649,669,637,661,649,661,684,677,688,682,731,698,709,694,719,707,698,683,717,726,707,719,689,698,693,659,683,724,747,705,678,702,690,713,715,697,725,699,699,683,705,700,686,688,713,687,645,626,630,646,627,624,623,661,619,649,624,623,632,613,625,641,636,640,621,630,635,644,652,664,665,646,644,641,652,633,641,645,647,647,639,643,649,629,667,653,649,627,615,651,646,625,629,682,685,604,636,622,619,631,650,655,608,682,652,675,642,644,596,630,639,614,644,630,663,604,657,613,662,625,603,595,671,651,658,666,552,661,616,639,598,584,668,610,636,685,620,703,745,711,715,704,699,695,694,692,696,726,717,733,718,708,706,725,727,675,701,712,710,713,691,708,729,720,717,735,706,696,713,705,685,730,712,701,729,724,716,721,704,724,693,690,715,692,690,721,684,686,711,703,688,684,647,708,679,714,705,700,695,673,680,701,685,691,674,689,674,682,680,721,686,658,691,694,694,719,668,731,694,673,654,707,670,639,662,650,664,665,685,659,649,644,656,679,644,627,626,632,656,649,664,653,650,640,646,648,652,653,646,654,645,631,659,665,649,637,633,646,632,648,640,659,662,598,597,612,609,604,599,601,599,609,589,606,609,589,594,593,601,608,600,602,599,601,613,605,598,600,607,606,603,597,607,593,596,615,590,615,591,593,587,613,582,578,582,609,598,592,602,589,607,643,613,633,606,641,633,639,613,653,639,632,611,662,648,667,674,636,670,634,651,600,667,645,663,624,659,657,644,628,642,645,629,617,634,645,631,630,639,691,669,675,683,664,689,696,693,683,670,673,709,687,690,689,682,680,691,652,683,685,697,659,678,693,672,683,680,683,681,670,678,697,673,681,681,671,675,668,683,645,763,752,728,764,754,765,736,735,737,769,762,792,746,748,721,753,713,759,720,750,722,728,738,753,749,730,733,758,759,730,784,773,774,773,772,728,769,797,738,752,759,725,702,691,686,725,719,724,728,689,694,692,710,671,710,723,690,692,753,693,718,758,722,720,754,708,697,728,726,736,769,688,698,716,733,710,728,716,729,769,725,704,702,706,695,724,744,668,671,678,647,647,654,677,657,674,662,647,655,632,657,671,644,648,656,658,674,633,687,670,639,667,644,669,674,655,676,651,654,648,657,663,661,670,665,662,649,663,650,671,669,607,682,696,694,701,679,672,691,686,703,683,676,663,730,700,705,689,693,712,696,669,680,652,700,672,675,719,675,700,691,690,708,695,689,708,685,724,676,662,651,666,665,671,677,703,621,633,614,620,613,597,607,639,617,628,622,644,599,628,615,623,617,613,612,603,661,606,619,620,610,620,600,606,613,631,599,604,628,615,600,609,579,613,600,570,559,598,584,599,599,561,585,593,591,570,570,568,587,567,583,589,589,599,573,566,561,566,571,603,596,583,571,566,590,572,592,575,572,598,584,580,559,579,579,594,582,642,667,665,659,641,676,693,672,648,650,653,660,668,655,668,664,670,676,664,667,666,669,653,642,654,674,666,667,676,677,684,661,677,661,675,659,672,655,667,671,707,724,700,736,701,733,725,691,713,686,737,715,727,756,700,658,747,727,735,758,734,720,697,752,762,721,725,727,694,698,750,731,676,719,725,745,688,700,720,716,719,704,683,698,691,689,727,728,698,707,723,704,708,712,715,709,708,723,697,719,693,724,716,704,710,719,719,721,700,697,687,696,719,730,721,721,715,694,699,707,709,716,724,630,629,641,621,627,643,653,626,643,667,645,627,629,646,651,643,658,634,633,658,648,619,654,644,640,622,666,613,635,627,644,646,663,620,645,623,653,660,644,641,669,663,608,563,582,595,592,561,568,579,596,562,611,581,573,595,616,581,587,587,591,572,576,578,591,599,574,593,599,565,595,561,575,585,581,614,594,587,554,608,580,561,609,564,559,596,580,598,583,595,592,603,616,613,604,604,617,599,594,596,603,588,612,596,602,615,591,595,603,612,603,601,606,611,610,594,601,607,602,615,611,593,600,608,590,601,597,594,597,627,579,573,576,576,602,580,573,599,582,570,591,582,578,571,570,594,594,573,568,584,599,567,595,591,582,575,570,576,591,578,575,587,586,574,578,582,590,575,570,591,555,685,713,692,699,685,723,702,712,701,708,695,706,696,692,709,699,713,701,709,710,714,685,711,689,679,716,717,677,676,709,718,699,700,702,700,729,682,705,709,704,676,711,695,711,668,661,673,666,698,686,682,682,702,681,706,666,653,669,667,694,680,683,679,663,677,689,672,667,657,657,688,680,662,677,663,695,692,667,692,686,675,671,670,683,649,665,661,687,665,661,645,651,672,691,664,677,673,676,701,639,673,657,665,667,657,678,663,640,674,661,644,661,651,642,694,659,663,663,684,661,676,660,652,668,659,670,674,651,639,637,642,637,644,649,633,643,647,655,655,657,669,650,634,651,659,658,651,649,653,658,657,646,648,637,638,645,662,643,651,670,627,653,638,658,657,633,652,650,652,773,713,766,775,755,683,751,760,750,761,755,713,689,739,697,742,741,782,727,747,758,748,750,759,720,769,746,732,726,714,750,735,721,736,744,774,743,742,787,769,704,726,780,735,745,736,734,756,734,730,726,766,707,719,728,712,754,733,745,738,719,754,780,753,698,741,716,766,718,742,746,721,716,772,729,778,730,711,764,742,697,703,742,742,736,774,712,750,796,688,741,705,759,722,762,759,712,716,756,763,766,724,745,785,773,794,733,720,726,741,748,778,727,729,775,731,772,695,706,731,750,716,721,756,744,737,743,677,723,707,690,720,744,723,666,725,727,697,725,734,683,723,708,715,696,712,681,688,747,746,706,661,670,728,719,766,726,734,720,679,710,719,710,718,721,690,726,722,711,666,632,655,631,638,671,633,640,652,665,652,647,665,625,663,661,655,635,658,653,665,688,641,665,674,672,660,654,642,649,659,654,653,651,668,619,657,637,656,657,652,623,656,660,639,641,644,629,636,635,630,650,601,635,648,665,625,642,650,649,601,642,627,664,638,636,620,653,665,632,612,628,656,650,622,675,597,649,637,643,620,633,645,667,636,665,696,689,692,699,693,688,696,675,694,695,664,691,709,698,695,688,698,683,688,703,708,692,694,691,680,698,686,718,709,678,712,681,692,697,680,696,703,681,710,689,686,679,691,662,650,654,655,676,652,653,652,671,661,661,677,681,660,657,681,671,666,673,680,679,672,676,674,665,677,672,660,682,673,673,667,654,682,654,660,670,666,658,674,689,668,677,604,606,577,598,574,587,595,603,571,566,597,612,594,593,589,603,607,591,615,575,600,605,586,597,582,587,591,610,592,600,598,593,587,603,609,584,570,606,581,586,601,589,721,684,698,736,737,713,746,730,721,754,746,786,696,680,703,721,773,691,685,697,725,706,755,716,745,702,729,765,691,778,747,721,721,703,709,732,709,725,776,738,673,749,725,734,700,700,713,695,687,687,719,681,711,704,700,722,709,730,690,689,688,725,727,697,688,703,705,701,716,733,690,688,728,684,733,712,708,675,677,707,714,735,698,720,722,717,712,712,690,692,721,693,689,662,661,639,682,680,661,671,664,665,681,665,682,658,652,675,675,637,690,648,658,671,676,673,688,671,672,676,684,643,650,649,671,655,667,654,642,699,686,687,683,678,666,717,646,628,633,637,657,627,635,644,629,637,628,636,638,656,645,632,653,636,638,643,634,648,636,632,653,655,652,653,642,658,644,650,628,635,638,639,643,633,654,640,638,635,643,626,636,619,650,643,664,671,667,674,675,658,666,646,665,664,645,663,645,663,664,635,640,645,662,669,661,652,656,664,653,663,655,658,642,667,653,650,662,673,640,666,631,653,649,659,647,662,675,654,658,649,664,652,637,665,650,712,689,684,691,713,676,725,732,717,696,675,713,735,687,686,716,710,720,721,714,693,691,697,749,721,695,730,705,722,695,706,723,703,687,714,724,695,709,727,694,700,606,636,627,632,629,643,654,647,627,639,643,654,630,650,631,614,624,659,636,613,677,630,664,672,656,649,618,626,639,620,648,640,661,613,645,667,641,615,659,664,642,645,653,633,638,650,641,635,625,620,648,653,635,631,650,692,558,676,670,618,663,642,589,648,618,690,637,599,623,654,630,664,647,575,618,618,685,652,577,659,593,604,674,584,752,615,637,583,633,653,653,615,622,638,660,576,724,725,704,696,716,706,734,705,699,722,704,707,730,723,716,705,714,719,719,701,717,722,703,693,713,741,705,684,733,724,703,706,729,735,707,754,704,708,698,709,708,695,719,700,712,687,713,708,675,707,714,731,722,713,687,696,668,705,685,687,707,690,716,666,713,712,709,742,724,717,697,684,662,707,698,723,693,687,672,692,687,703,720,706,724,735,717,707,740,717,719,717,718,716,716,751,714,713,729,711,720,725,730,720,705,705,745,713,724,725,725,704,725,734,706,719,744,729,713,712,747,716,719,736,723,711,715,716,741,645,620,625,651,645,629,631,654,636,633,663,678,686,630,631,640,646,676,627,626,609,632,666,664,660,639,622,635,643,629,654,632,694,619,667,630,673,561,563,577,576,570,560,562,574,571,569,583,562,563,558,566,570,566,554,568,553,557,577,580,565,575,562,581,560,579,578,558,570,579,562,557,578,571,565,580,550,531,557,549,564,533,540,532,561,568,554,553,557,567,545,545,545,546,550,540,555,553,551,547,561,555,564,547,552,548,562,556,550,548,556,558,551,552,543,550,554,557,563,672,713,688,624,728,692,707,703,640,697,668,679,679,654,660,749,732,621,660,651,713,616,636,663,667,710,632,622,637,697,671,615,681,643,681,714,667,626,720,642,654,634,676,661,760,634,638,640,630,649,656,643,635,653,660,659,637,633,652,644,637,653,625,648,637,659,640,633,670,663,628,654,639,621,641,656,649,645,643,622,628,659,659,630,625,619,656,643,653,644,637,601,592,598,576,604,568,582,611,612,583,588,606,597,567,599,592,591,583,585,583,583,604,578,592,582,606,593,583,595,585,568,581,577,592,601,579,571,567,583,589,589,595,597,589,577,602,579,540,526,521,523,519,531,532,516,530,525,529,537,529,548,542,516,522,540,525,527,524,528,532,536,520,526,534,533,519,532,546,534,522,536,543,527,535,535,524,534,537,512,527,539,543,533,542,541,522,539,513,535,537,522,531,530,538,530,546,547,545,523,537,531,514,529,524,527,526,530,546,536,528,537,548,537,543,534,519,526,535,527,527,513,539,529,527,540,527,535,564,550,554,543,549,554,540,538,550,539,536,540,546,526,545,547,535,539,552,552,548,554,542,545,560,533,544,541,548,547,545,541,537,542,550,539,548,543,549,541,537,554,559,572,536,558,547,554,558,553,555,568,547,554,567,554,556,555,561,563,560,556,562,551,552,561,555,561,546,555,566,546,560,554,555,562,569,562,549,552,638,624,596,636,659,609,595,638,667,601,639,610,596,663,620,630,647,650,620,619,683,653,646,654,646,633,623,656,636,634,662,649,641,651,581,684,622,570,665,683,669,670,664,690,661,655,660,658,663,667,665,684,689,668,692,684,688,669,687,676,677,680,688,646,679,670,673,679,676,669,652,686,695,679,681,684,662,672,673,656,677,619,580,615,603,604,610,591,589,601,603,577,610,611,612,587,605,584,583,591,597,591,584,582,597,588,592,585,585,612,596,587,591,615,584,603,598,604,604,615,610,616,605,677,600,609,661,637,636,641,657,623,668,624,630,610,630,636,601,654,614,626,633,612,598,575,613,624,599,618,588,600,652,622,657,600,630,620,650,656,621,575,641,687,700,710,698,695,682,671,695,698,690,696,694,701,676,692,664,691,691,690,696,675,689,676,685,697,687,693,677,692,697,682,698,689,662,682,715,690,691,707,692,696,693,685,699,685,690,667,673,681,683,689,684,693,686,692,692,691,669,677,702,691,685,687,682,678,700,682,689,648,679,690,682,689,693,655,669,676,673,680,676,668,688,685,667,678,691,674,653,673,658,659,676,682,653,652,668,676,679,675,677,659,661,667,662,670,663,640,666,675,674,675,678,670,658,676,652,676,659,656,677,675,655,664,652,639,649,664,660,638,645,651,643,661,650,633,652,655,659,640,662,637,647,669,649,644,647,649,676,649,651,673,648,632,647,671,654,659,656,649,670,649,672,642,628,649,656,671,647,646,672,590,572,589,593,576,581,578,573,598,596,582,593,579,602,584,596,591,588,590,597,582,580,573,570,578,578,592,589,594,589,584,596,590,584,590,595,588,588,584,597,567,578,595,624,596,554,574,571,617,639,588,661,611,619,633,621,612,620,612,597,642,642,566,619,574,615,602,607,595,648,616,580,592,601,621,636,604,593,609,635,633,602,608,566,589,614,600,607,583,584,578,584,599,592,606,592,594,590,566,588,579,587,565,584,584,605,593,575,595,584,586,581,571,580,582,591,589,591,582,604,596,575,570,587,588,589,586,588,598,584,603,586,647,614,600,655,597,635,635,649,629,614,680,593,610,631,630,625,659,631,662,620,673,602,616,660,590,630,642,666,639,627,651,647,629,633,632,629,571,635,651,619,676,635,626,629,669,662,725,710,691,689,663,686,680,691,693,699,672,699,696,678,707,695,689,695,683,680,678,677,688,691,683,691,687,692,696,684,668,696,692,693,699,698,708,690,685,687,675,668,688,687,714,683,682,670,690,673,684,674,683,676,683,691,695,668,696,679,690,676,668,690,704,696,682,680,698,672,678,673,697,685,683,687,670,668,666,659,674,671,673,659,683,661,673,683,668,665,665,674,679,677,667,662,655,677,678,670,686,669,670,666,685,670,666,657,664,679,665,682,679,646,676,656,678,659,672,662,702,659,666,662,645,668,656,668,652,668,666,652,650,649,662,646,658,670,648,652,652,646,664,650,646,662,660,659,667,647,668,642,663,670,663,666,647,660,636,657,670,670,597,575,588,599,582,583,584,567,589,600,591,598,602,599,585,590,582,591,577,583,576,579,582,584,585,612,615,595,592,601,599,584,585,617,592,601,579,572,589,593,581,601,581,589,586,589,599,543,548,541,513,543,540,532,545,543,558,548,540,544,533,525,534,536,537,540,550,540,535,548,541,535,542,553,536,537,540,537,537,541,543,542,534,554,525,531,536,548,535,517,535,518,511,513,521,522,522,525,523,523,515,517,507,517,527,532,525,521,519,523,522,512,509,522,505,520,495,524,512,511,526,509,516,520,527,525,515,527,537,522,525,735,718,743,765,743,719,755,678,683,725,755,740,736,725,769,753,740,735,694,763,717,733,721,735,710,755,727,721,730,737,735,724,788,735,695,739,678,731,754,721,731,729,733,711,682,711,714,702,708,680,715,708,692,722,680,700,691,709,713,691,719,709,698,688,704,705,704,717,703,708,704,704,695,710,720,670,717,691,712,677,710,708,697,710,695,729,757,714,732,752,758,782,755,750,733,732,766,725,729,709,721,729,708,766,774,759,759,703,721,752,760,791,732,735,760,731,745,740,758,730,747,756,759,738,770,763,729,745,674,703,707,730,682,754,701,736,709,693,735,740,733,713,723,689,670,779,673,715,706,722,709,772,700,708,758,739,722,740,723,711,672,716,711,746,690,702,697,733,729,699,678,739,740,731,671,712,668,662,683,648,665,673,655,671,675,684,635,682,677,694,684,672,692,659,662,671,626,649,671,648,678,666,685,682,670,666,679,651,668,680,683,680,669,574,589,589,573,557,578,594,586,573,591,587,558,570,570,604,583,564,594,578,590,580,608,578,565,606,603,595,588,581,580,584,598,578,572,589,608,586,578,600,587,600,578,666,675,678,673,695,664,692,662,738,680,659,658,698,655,679,693,669,720,616,696,713,624,704,673,638,634,689,695,696,641,695,690,724,675,713,691,705,688,679,654,673,639,689,722,707,699,693,716,694,695,705,696,705,716,716,719,697,699,692,694,690,725,701,716,724,715,696,713,706,724,711,697,704,712,704,709,707,711,729,716,713,701,718,712,617,611,605,624,637,591,612,607,612,615,615,621,639,619,628,620,645,623,644,632,629,627,640,624,600,611,624,629,595,617,615,622,638,626,631,637,640,608,603,630,617,624,674,590,591,612,577,615,588,593,589,612,604,599,584,608,608,604,606,596,604,592,584,611,580,582,584,602,608,586,580,601,605,583,610,582,596,634,588,616,606,613,610,600,659,661,654,668,660,668,665,671,656,650,650,660,653,669,657,660,670,649,656,641,654,674,651,652,674,659,646,656,652,671,661,656,663,689,643,632,654,643,667,654,664,648,658,647,633,662,691,638,613,637,642,613,616,642,624,629,629,622,624,623,623,637,623,634,632,613,632,627,627,618,614,610,652,613,631,606,616,628,608,605,616,627,596,635,631,619,587,600,589,592,610,579,581,586,578,576,586,592,601,604,591,585,591,592,596,584,600,589,593,591,586,575,602,581,590,590,597,578,594,572,573,591,602,591,582,582,583,586,593,611,561,585,586,585,579,609,591,591,605,589,586,592,574,583,595,581,606,585,587,601,597,573,581,581,589,593,575,596,590,587,603,593,604,591,603,580,574,582,584,552,560,550,548,551,554,566,555,555,561,548,548,562,547,551,554,551,559,559,557,569,551,562,560,549,540,561,563,541,558,559,554,559,540,554,550,551,550,549,556,550,569,550,538,550,540,530,527,531,546,546,536,532,544,533,531,541,541,547,533,544,538,543,552,529,537,523,552,548,532,543,538,545,533,526,555,545,533,544,551,541,528,529,528,538,552,563,557,538,562,548,553,540,552,579,573,567,542,539,557,548,567,574,571,559,557,548,553,570,551,558,561,550,563,550,554,542,567,559,568,556,551,557,580,546,549,548,579,538,556,551,549,766,737,735,749,711,732,726,733,740,720,712,734,744,772,726,733,746,721,725,703,741,745,708,741,719,708,739,715,725,737,714,717,749,732,711,734,712,740,761,738,739,708,715,720,703,722,756,723,750,726,735,705,687,726,725,722,729,723,737,715,718,706,740,691,742,688,679,709,710,714,681,682,695,702,739,717,688,679,744,711,714,733,663,655,659,651,666,659,628,672,649,653,644,673,618,654,653,655,652,647,639,646,630,664,644,659,640,646,658,638,658,656,667,652,649,660,650,634,652,648,653,672,658,661,661,626,634,647,673,636,562,570,567,572,586,560,579,588,567,580,586,575,579,585,583,585,598,577,577,581,561,565,591,576,583,585,574,569,572,590,563,588,573,591,591,577,574,581,574,570,566,554,572,556,550,563,548,556,563,562,565,560,577,567,563,556,567,555,564,569,581,566,564,570,564,562,561,555,552,574,566,550,558,550,560,557,547,553,583,554,561,563,573,567,579,562,553,573,567,567,562,576,563,563,570,551,566,557,556,563,543,576,583,565,573,571,551,558,566,533,560,561,565,566,563,568,579,572,571,560,569,571,566,573,560,568,557,567,556,564,571,558,574,554,545,565,551,548,565,561,562,546,554,554,566,561,559,550,565,556,560,564,568,570,567,544,558,553,569,562,551,563,557,554,567,567,575,551,549,557,545,555,558,566,562,565,565,557,564,552,565,567,557,554,579,551,553,576,553,541,557,567,565,561,560,546,556,560,566,577,570,545,567,556,570,560,533,549,565,562,557,567,567,552,553,561,563,557,561,564,561,561,556,557,551,563,530,564,552,558,561,565,543,554,554,552,546,550,560,563,560,551,555,558,550,557,533,546,557,547,558,555,548,548,552,555,544,568,687,669,708,661,681,636,687,652,683,627,675,670,701,669,633,728,712,621,654,700,695,629,682,634,676,673,710,665,715,643,642,636,662,648,652,677,680,628,640,640,646,644,646,632,650,643,653,636,639,616,635,627,641,662,596,653,627,647,636,646,619,622,617,623,625,614,669,643,633,636,642,656,672,635,648,643,585,577,580,573,585,566,592,580,587,576,596,572,564,582,579,583,592,580,566,589,598,573,593,568,588,571,578,600,593,579,585,585,568,597,586,599,569,578,588,563,586,588,569,602,624,629,636,641,593,629,617,647,652,612,653,628,631,621,637,616,634,612,627,632,672,633,636,619,620,620,637,632,644,641,661,598,614,608,632,610,602,593,647,618,577,780,736,751,735,735,710,690,734,759,769,743,706,733,751,744,765,722,751,727,732,709,737,737,748,726,748,737,751,755,750,732,712,721,748,720,735,737,750,728,700,770,729,724,718,691,660,689,705,656,667,670,671,657,687,689,698,682,661,684,670,704,664,653,688,680,698,671,681,678,649,715,728,691,694,689,680,678,675,707,658,686,690,697,707,652,664,690,663,669,594,607,616,587,614,612,613,595,594,590,604,605,615,598,595,609,602,619,609,606,604,603,607,600,606,593,603,611,596,607,607,605,599,624,594,603,611,606,606,609,605,599,606,603,589,553,562,543,545,552,541,559,552,545,545,555,537,563,556,546,557,553,544,541,560,554,552,550,547,551,539,554,560,545,562,550,566,549,551,553,567,555,551,548,555,552,705,672,670,640,652,682,675,701,696,675,690,658,677,676,668,668,642,618,673,687,659,683,693,683,649,690,710,664,686,664,623,657,665,684,691,636,677,679,724,632,690,678,642,659,692,637,624,615,619,630,637,612,623,619,612,629,621,637,641,592,634,640,604,599,598,643,641,636,623,607,620,640,627,622,624,609,631,642,639,624,623,622,630,623,613,616,642,622,600,602,552,595,585,583,587,561,606,588,596,575,602,603,601,584,588,606,577,583,582,583,582,589,581,595,577,586,587,598,591,591,590,585,578,603,594,590,603,569,591,597,590,588,593,601,576,562,565,574,562,580,557,566,581,554,563,544,560,557,552,559,559,570,556,547,555,563,546,552,559,557,568,565,564,558,548,564,553,564,543,561,578,558,566,570,565,588,673,688,697,682,671,710,672,691,678,667,693,684,688,680,667,680,673,697,685,688,663,707,696,672,687,714,651,657,670,701,687,673,711,708,688,695,705,654,685,677,660,689,689,692,673,698,706,674,714,691,672,686,713,727,700,712,719,718,740,715,711,707,684,718,688,733,695,740,723,755,719,715,728,674,710,684,716,708,716,719,710,752,721,717,719,771,576,655,603,581,625,565,632,626,630,611,582,652,567,602,647,666,679,599,628,599,591,629,621,654,633,600,647,584,582,621,597,628,574,600,632,615,655,678,609,653,658,593,539,524,599,616,622,612,606,591,627,571,631,593,584,598,611,584,610,627,610,603,596,616,633,608,634,607,594,605,622,602,619,611,607,594,606,583,600,622,597,612,631,628,612,601,598,630,605,602,591,614,603,561,559,573,575,571,567,565,564,567,590,577,561,576,549,561,573,565,559,559,569,561,567,570,583,582,574,567,561,564,570,563,584,564,576,552,567,569,560,560,567,544,567,658,659,680,666,705,682,710,645,678,655,671,651,672,679,640,649,634,676,660,724,672,666,731,665,664,652,640,628,676,656,680,676,672,677,661,688,683,654,632,694,686,724,746,674,663,687,664,676,698,713,707,701,719,721,705,713,701,693,722,726,726,709,717,709,719,719,734,707,735,713,711,713,703,712,705,725,699,706,733,700,709,744,714,718,713,710,712,730,742,731,696,679,696,713,709,720,692,741,603,612,600,626,634,606,639,646,604,601,594,582,614,589,641,640,599,629,631,595,616,647,612,661,613,654,594,607,612,609,620,629,592,625,607,610,619,630,617,625,630,606,624,620,627,578,558,571,573,563,548,559,581,556,567,567,567,571,570,575,544,560,553,554,567,558,555,561,568,575,569,583,556,573,553,572,544,566,551,561,552,560,561,568,560,561,559,555,569,552,572,608,623,631,573,629,627,620,615,663,643,593,589,549,606,619,633,618,633,615,621,628,624,631,631,594,605,595,624,615,605,641,623,599,614,619,638,599,615,604,594,614,610,622,603,612,549,556,573,573,586,588,552,585,569,575,584,571,562,576,563,578,575,571,582,572,570,560,558,575,568,567,585,576,566,557,577,565,579,574,572,567,563,571,573,572,594,578,565,571,638,575,656,626,648,602,693,652,630,619,622,639,655,617,622,624,640,618,647,635,644,644,659,628,667,612,610,611,650,561,616,629,625,624,617,645,641,605,624,618,655,683,675,675,700,662,648,671,689,665,684,682,691,667,690,679,680,691,675,682,663,695,694,676,703,682,668,699,683,697,674,690,685,676,683,669,696,683,704,686,666,701,685,685,688,654,701,672,727,683,704,688,702,697,680,691,672,677,677,689,690,699,686,696,695,669,682,684,691,721,691,665,718,691,709,723,679,671,681,683,667,711,732,764,614,627,618,613,629,624,627,632,619,596,627,656,633,610,628,620,643,623,627,616,621,609,613,637,617,639,643,646,652,622,632,623,610,645,631,666,575,561,589,570,577,565,565,562,568,576,558,580,579,570,582,569,585,573,553,554,581,571,571,587,571,554,565,575,575,587,549,578,585,577,587,592,569,577,575,575,577,556,559,580,562,556,569,566,556,560,550,559,565,544,573,547,546,566,565,555,560,553,567,562,565,543,551,548,558,553,568,551,553,561,563,545,554,565,553,564,564,554,564,572,563,546,695,705,707,721,702,703,739,707,721,690,703,728,725,729,727,729,672,693,682,738,662,717,703,706,740,698,728,698,678,722,686,694,728,700,715,727,716,702,695,712,685,676,699,766,703,698,699,682,714,710,704,690,694,694,697,709,698,710,718,691,702,711,706,700,684,705,705,687,703,720,710,708,712,708,701,698,710,716,697,708,714,703,699,694,694,686,665,634,658,657,640,657,635,663,655,666,681,630,686,644,652,665,650,663,660,682,670,662,662,650,687,660,627,630,639,664,645,658,631,655,625,654,645,643,651,662,631,651,654,648,698,611,595,662,600,636,631,593,552,626,652,607,614,555,578,669,658,668,599,651,575,645,615,627,596,654,644,651,683,615,613,656,615,581,631,645,710,621,617,680,578,744,702,712,725,692,712,714,696,707,712,721,689,698,709,712,704,688,718,715,696,700,698,688,679,715,683,678,685,708,710,712,711,708,711,695,694,724,717,709,687,695,699,689,580,590,575,585,573,564,640,583,592,588,618,580,608,598,624,616,640,602,585,600,608,569,585,590,621,592,595,590,625,626,617,599,610,604,581,595,593,548,623,612,589,589,626,602,584,579,559,564,565,573,572,609,555,577,574,578,581,586,583,570,576,592,575,548,581,576,578,544,586,569,574,569,579,586,576,577,587,575,584,560,594,570,576,559,580,579,579,569,602,599,622,609,621,609,602,609,613,599,583,608,602,586,602,611,582,615,620,597,596,611,637,636,612,609,615,595,624,601,612,619,596,617,587,598,612,610,599,616,592,616,611,606,593,568,589,566,586,572,547,563,567,564,544,591,562,562,557,565,561,567,580,581,562,579,583,587,558,564,566,560,576,547,571,572,575,550,581,575,574,573,558,556,576,550,580,565,581,562,586,571,575,585,575,554,568,556,577,569,593,574,580,569,595,586,568,564,580,576,558,551,589,587,575,570,569,579,573,588,570,587,561,600,585,546,561,569,578,559,567,556,553,552,549,553,547,544,550,549,543,553,553,544,559,531,551,544,543,549,556,544,552,548,558,562,537,538,554,532,540,555,552,559,552,544,561,548,553,567,569,539,544,547,604,662,619,663,693,651,632,706,657,643,612,630,699,644,641,620,687,609,648,672,626,643,646,696,618,652,563,653,633,644,622,640,669,647,630,658,693,639,672,642,648,685,667,675,676,675,696,667,691,672,695,669,663,666,664,680,673,696,664,668,678,674,679,695,666,667,684,660,677,705,665,687,676,668,687,674,665,693,684,690,661,686,670,687,672,663,684,675,670,752,724,756,698,704,694,698,745,700,742,747,751,728,765,713,743,724,732,739,728,718,743,685,671,745,716,750,720,734,722,732,759,743,720,719,748,736,768,710,707,686,693,699,722,710,693,702,708,707,681,714,709,708,700,700,694,711,695,711,701,694,708,708,709,718,710,702,680,695,709,719,671,698,697,704,729,701,691,686,694,701,692,710,697,695,714,602,606,645,613,613,643,640,570,685,632,657,646,647,613,610,622,630,633,644,555,626,645,657,607,631,652,649,636,674,660,627,667,629,585,678,645,605,646,607,632,631,543,581,578,585,564,585,536,579,579,591,583,544,567,571,569,588,575,561,568,543,570,554,575,552,562,593,549,586,554,585,548,592,553,569,554,591,582,596,573,564,626,565,575,568,563,583,553,572,574,577,542,573,574,570,557,561,583,588,557,558,573,556,570,567,566,544,540,582,578,572,565,572,571,580,555,563,540,554,561,548,532,570,567,550,561,743,743,744,729,737,724,724,720,738,752,738,723,730,751,694,716,707,730,731,736,743,716,751,694,707,723,770,719,690,720,720,754,725,734,732,742,714,730,729,735,724,729,658,645,649,650,631,655,652,655,694,631,653,647,662,645,651,645,642,654,662,629,618,625,670,640,682,691,646,673,667,665,651,650,674,670,689,633,665,643,667,637,665,677,637,707,709,632,650,676,631,619,639,672,623,638,632,630,639,621,653,671,613,650,650,665,654,662,606,649,623,641,648,603,653,649,669,631,659,641,637,637,622,617,619,667,640,634,612,667,623,689,547,526,554,534,556,545,550,548,555,541,547,532,539,560,537,558,556,556,542,553,542,542,541,548,533,560,539,539,531,565,541,551,546,537,555,554,548,534,554,544,554,559,542,555,556,538,562,560,549,554,551,558,552,563,558,562,565,560,556,559,557,563,550,554,572,567,551,556,547,558,562,563,552,551,556,557,555,556,571,555,554,610,608,591,609,588,634,629,632,606,607,608,621,603,656,608,589,617,597,649,613,620,614,597,627,595,645,634,613,615,593,632,643,646,614,598,602,644,595,603,627,785,786,793,762,751,749,755,765,795,750,797,769,761,760,780,771,778,764,757,760,787,753,770,776,774,784,787,786,767,731,776,761,735,776,734,774,773,775,775,775,758,762,755,780,716,737,765,720,742,737,733,728,732,750,715,740,756,689,715,710,727,745,777,765,761,731,723,716,757,734,748,747,770,739,737,736,717,758,746,734,744,739,749,711,694,741,767,737,739,645,660,646,657,705,692,663,653,655,655,650,663,664,646,656,666,684,654,653,650,658,665,658,669,669,650,682,661,645,635,683,667,670,669,639,651,679,666,647,673,664,679,646,699,576,558,573,583,569,570,573,574,570,581,562,588,579,594,578,592,579,584,556,568,568,571,580,566,578,586,560,573,581,578,581,577,571,584,572,580,584,577,584,587,525,531,530,537,539,528,525,501,537,521,521,522,528,528,516,523,524,525,524,523,515,532,512,524,520,526,525,522,541,521,540,521,508,522,546,526,528,526,515,518,532,524,529,512,524,521,533,539,533,519,519,534,527,524,534,533,533,523,530,515,527,522,530,523,536,514,526,513,530,524,538,539,526,530,541,523,526,530,541,527,525,544,523,542,533,516,523,521,554,552,558,565,552,568,568,566,566,564,560,558,560,560,567,554,564,567,562,565,558,574,549,561,566,576,558,552,569,559,575,562,575,572,544,569,568,572,561,568,552,572,567,560,587,584,601,585,595,585,594,580,600,579,596,559,588,586,583,597,585,592,591,616,595,595,609,585,586,604,600,592,588,597,574,557,610,589,598,588,573,564,608,590,588,593,623,559,578,577,558,565,566,567,560,568,571,582,570,566,580,569,559,587,576,566,554,566,559,554,577,579,574,581,571,566,567,570,559,567,561,566,563,560,572,565,573,561,568,568,580,620,625,650,647,643,664,641,613,674,673,661,660,676,614,640,682,686,625,648,605,633,650,640,643,618,671,619,688,657,612,636,643,628,644,678,628,631,663,618,628,675,636,650,667,638,633,674,660,667,677,691,681,670,670,664,665,693,684,678,680,667,665,669,668,661,662,653,690,664,680,687,671,645,654,671,678,676,674,690,680,670,667,639,685,663,677,690,664,599,608,590,589,592,601,612,592,590,596,592,599,593,601,592,604,588,605,577,573,584,588,572,609,604,611,590,587,595,591,607,617,605,593,583,597,608,599,603,583,594,579,552,559,565,551,558,559,564,565,549,572,552,557,563,566,548,555,554,573,553,551,539,557,546,566,560,552,561,564,540,555,561,563,570,561,556,564,557,554,548,616,592,570,587,618,597,576,584,591,594,583,565,602,562,541,596,598,572,597,614,585,587,606,591,595,630,590,573,601,540,565,620,572,567,560,577,603,556,587,587,584,575,595,581,581,587,584,591,592,587,578,595,569,588,588,578,582,582,576,578,577,583,591,568,574,568,590,574,572,580,577,596,576,567,593,577,585,566,582,586,577,587,552,574,572,562,563,564,549,559,565,560,552,556,554,572,560,565,552,569,570,555,560,564,570,552,571,555,571,567,566,557,551,558,550,571,543,563,568,564,550,565,551,552,561,553,542,554,553,548,573,545,553,540,545,549,542,560,553,569,561,555,557,540,553,550,554,546,546,547,562,556,533,549,549,531,553,542,555,549,547,543,555,555,546,559,545,681,675,655,682,674,666,666,686,658,643,673,674,671,674,646,662,680,670,662,650,674,665,661,681,702,670,662,644,682,653,682,695,680,654,685,696,634,659,670,666,683,663,620,623,633,637,622,626,635,626,617,631,625,621,638,627,632,611,639,601,615,618,620,625,617,631,629,608,627,643,634,606,631,640,620,626,629,620,635,624,633,658,647,613,621,611,632,607,617,577,574,581,586,561,570,582,590,574,577,561,577,585,576,584,582,570,600,571,561,580,565,586,596,594,595,595,594,581,580,575,572,577,585,580,598,576,574,572,579,570,571,526,526,533,527,517,525,525,534,542,533,539,532,536,532,522,522,525,541,525,529,519,517,529,529,526,532,518,519,513,536,523,516,533,534,518,540,649,637,650,680,633,650,655,671,649,657,635,658,650,670,645,676,652,643,651,651,664,635,650,660,671,654,654,658,649,646,654,661,637,669,663,665,632,648,654,660,658,655,668,651,679,699,670,687,699,670,685,666,601,656,669,654,607,677,679,665,666,660,633,686,661,694,691,691,654,680,670,680,661,686,691,673,696,692,675,676,665,658,647,648,658,655,655,708,671,702,673,678,724,676,676,638,727,733,712,704,672,699,684,638,704,664,734,658,659,647,698,719,661,706,721,720,696,716,745,685,668,731,661,696,680,700,652,663,689,665,722,625,597,621,613,642,581,604,590,612,600,602,617,620,598,612,598,647,608,626,618,598,592,615,614,585,614,607,636,615,597,603,616,593,614,624,608,649,614,568,581,623,633,579,615,618,587,629,524,529,515,529,532,523,521,532,520,535,527,531,533,526,533,535,536,520,536,537,541,541,524,527,533,531,529,540,527,544,527,537,518,533,529,531,521,541,522,520,533,521,545,659,608,657,614,648,650,647,635,663,672,647,643,661,629,637,633,643,657,644,671,651,649,646,628,653,643,646,653,663,638,642,624,650,644,638,644,639,647,648,649,575,590,580,595,546,586,556,587,588,572,569,550,571,563,586,576,564,590,566,582,565,589,596,592,590,575,555,577,561,573,580,582,551,568,564,575,585,568,565,547,574,558,571,545,566,597,568,584,565,609,583,636,613,586,626,558,663,619,601,607,579,521,612,630,663,605,646,583,507,581,645,717,639,616,632,694,598,560,556,571,623,588,562,639,622,607,597,676,590,605,599,611,584,585,601,602,615,622,599,599,587,611,599,604,593,578,601,609,594,575,607,592,588,607,605,587,615,618,566,597,620,593,601,603,605,598,600,599,598,587,577,579,596,582,611,573,571,573,557,556,576,567,578,566,582,566,580,569,559,568,566,568,578,574,587,563,565,562,569,582,573,566,568,569,552,571,575,572,576,571,563,554,549,566,568,565,573,570,559,559,549,572,569,554,543,550,543,541,556,545,552,558,516,547,553,541,532,540,559,537,536,528,533,549,552,553,529,565,569,544,545,546,530,556,539,536,549,531,543,532,544,533,552,545,566,553,545,526,501,516,514,507,527,503,519,514,513,514,511,529,503,523,516,516,521,526,512,513,523,532,523,509,508,525,522,503,535,522,516,521,514,521,531,502,537,509,515,524,509,524,508,509,503,500,683,678,677,668,685,687,653,667,699,658,686,682,681,663,673,684,675,674,684,668,670,641,709,671,671,667,701,683,680,689,660,676,688,666,666,689,695,653,678,697,696,687,678,677,723,633,657,648,638,635,660,662,639,662,642,648,666,643,649,638,643,649,653,650,638,649,642,671,657,630,650,670,638,649,666,633,650,668,663,652,649,592,584,596,588,566,603,609,610,611,591,608,614,602,587,585,604,600,591,626,603,591,594,612,581,617,592,612,606,606,615,640,606,624,590,610,589,608,626,602,597,595,610,625,546,542,563,549,556,553,542,560,536,558,551,547,552,546,547,555,570,544,555,540,565,543,534,562,550,546,559,553,557,550,554,558,543,549,545,548,552,558,560,572,547,537,535,555,535,508,517,546,539,533,539,525,516,554,537,555,542,528,534,543,519,537,534,534,562,540,552,554,532,543,519,526,553,547,528,536,540,534,531,543,541,513,516,517,529,520,528,531,520,536,511,534,518,535,525,512,529,517,513,511,522,528,534,509,541,524,510,516,518,521,530,499,515,525,511,522,509,505,523,517,522,525,526,518,520,509,508,522,521,513,523,508,523,507,527,513,526,511,506,522,513,518,527,517,522,508,515,512,525,511,522,525,532,515,501,511,521,512,522,509,512,533,516,517,516,517,511,491,545,578,555,553,578,548,568,557,547,546,547,551,566,577,564,563,556,529,557,560,563,552,547,547,565,548,546,564,557,533,565,568,569,553,567,563,564,582,549,554,557,542,562,543,549,554,561,555,557,549,546,549,556,550,539,557,552,547,537,551,560,543,539,541,539,552,549,554,560,544,566,555,547,547,548,560,550,539,540,539,547,544,550,562,552,542,553,572,588,561,591,577,580,557,568,581,574,565,579,564,575,562,555,574,569,552,576,565,575,575,561,591,577,577,568,575,572,567,557,573,573,585,562,592,566,584,574,589,541,548,550,543,543,558,560,546,552,555,560,539,561,555,555,559,561,551,547,546,553,554,542,553,540,548,564,561,567,559,545,544,562,544,553,550,554,564,549,549,544,562,544,695,651,729,671,683,660,690,689,724,659,630,699,629,674,672,712,717,704,692,653,656,629,632,670,715,645,652,644,738,645,709,674,688,657,619,700,659,703,648,654,653,647,634,629,633,608,639,646,648,636,621,624,632,613,638,611,632,661,628,644,632,633,638,640,630,653,645,605,605,638,617,602,637,661,627,624,632,636,636,628,632,636,635,629,580,589,585,582,569,590,573,575,583,568,588,572,580,593,568,588,563,582,578,566,583,574,571,584,588,560,588,575,590,587,578,580,587,577,579,574,585,596,547,560,553,556,556,572,553,564,544,563,545,556,559,560,554,557,545,553,560,548,564,556,548,566,553,568,551,559,554,571,561,565,561,563,556,552,555,560,570,552,542,565,553,644,687,608,674,593,671,664,608,610,675,680,664,641,629,653,674,584,632,623,615,646,634,661,656,633,619,662,684,693,644,603,655,613,633,591,630,634,679,656,604,721,550,571,571,554,563,567,572,552,578,580,570,559,588,554,597,570,575,565,570,554,573,558,560,574,565,580,579,573,568,581,572,570,572,565,569,560,572,579,572,579,567,585,570,589,573,561,589,561,564,566,550,564,558,549,560,540,546,548,569,554,563,574,548,568,576,574,557,570,547,559,552,564,563,582,579,557,563,566,566,554,554,555,557,562,575,563,568,564,569,581,553,578,580,565,575,542,627,608,634,619,634,593,623,628,634,615,616,627,617,630,635,634,637,630,608,627,598,608,626,615,621,638,602,623,620,644,622,619,620,633,621,596,628,616,624,632,606,658,629,597,623,671,681,679,660,704,674,675,662,676,673,698,689,678,645,703,677,676,685,640,657,671,681,674,667,682,655,670,636,686,668,682,665,665,676,673,697,699,655,672,679,690,706,662,639,616,624,620,659,627,612,637,638,616,627,635,608,637,636,610,626,573,598,619,621,626,603,645,645,593,641,634,615,611,628,655,650,644,628,617,642,640,615,634,647,633,604,572,597,583,588,568,588,573,593,587,556,575,580,594,581,568,575,588,579,582,606,563,578,589,601,575,587,559,565,571,582,591,571,581,554,563,575,568,579,596,571,570,576,504,505,512,506,526,503,514,513,506,511,521,506,522,522,498,519,513,511,512,510,519,514,526,517,506,510,514,501,527,508,518,513,513,513,520,515,506,509,507,513,528,515,523,532,595,573,590,578,559,589,578,581,575,579,566,595,572,581,577,571,597,615,584,574,571,563,550,586,577,566,593,577,581,554,552,576,577,577,597,592,588,580,586,586,600,624,632,632,602,608,635,618,624,638,616,610,614,653,616,597,585,636,612,608,618,620,617,621,637,613,623,620,615,635,644,616,608,628,608,630,628,620,606,614,601,645,692,667,688,685,647,695,686,673,708,694,722,651,694,684,686,683,664,688,675,734,669,668,636,708,714,722,673,693,716,701,687,652,680,663,685,658,676,701,642,697,683,693,645,618,630,643,622,634,630,642,627,634,615,681,619,618,643,632,611,609,645,624,635,629,633,617,650,626,626,657,642,636,650,633,628,648,619,637,640,621,608,609,626,635,634,615,637,618,618,637,581,580,564,576,575,575,577,575,569,574,574,564,596,597,584,574,573,591,582,555,577,583,590,594,581,593,577,568,600,586,570,577,595,601,592,570,576,585,581,562,581,570,577,550,527,511,500,498,507,506,526,519,514,519,512,524,501,520,508,520,516,511,510,505,517,521,496,517,509,528,536,518,526,514,518,509,520,526,518,507,530,525,519,486,544,534,541,547,544,545,550,548,562,537,536,549,536,557,548,559,537,534,553,554,537,550,558,535,537,546,541,554,522,543,526,539,542,554,549,542,536,529,536,552,547,531,536,533,534,527,534,529,542,537,531,535,530,529,531,540,538,532,546,530,523,533,534,531,545,534,545,543,538,530,530,540,527,538,518,533,536,536,534,539,523,533,534,537,538,533,542,566,590,570,581,569,583,575,565,594,603,580,588,567,583,579,578,568,585,574,585,560,572,578,565,593,602,593,593,569,570,576,594,598,560,587,577,571,573,554,580,594,591,570,697,714,705,713,735,722,747,747,754,722,717,754,738,720,739,716,726,760,704,724,744,728,722,703,727,729,703,730,762,749,731,721,733,761,696,715,782,722,725,739,753,666,697,684,697,718,738,724,703,708,722,701,741,733,741,716,729,746,695,676,748,670,694,724,731,690,706,721,757,727,693,714,737,702,700,697,695,720,716,692,729,717,709,692,702,696,685,714,643,659,659,652,624,646,636,636,658,645,653,649,673,648,652,660,643,642,665,644,674,639,655,666,664,659,657,666,654,657,639,647,631,651,632,652,667,667,671,665,623,648,570,599,576,575,567,567,589,566,561,574,567,574,585,578,572,568,588,580,578,568,569,571,572,574,575,586,590,565,584,578,575,571,567,569,579,554,595,582,583,572,571,575,605,570,572,553,563,560,562,562,557,555,553,557,564,565,553,564,557,560,551,558,562,561,564,563,558,565,557,562,564,557,562,570,563,559,567,562,556,556,556,573,557,557,552,556,572,570,562,558,584,569,561,556,566,574,569,552,542,566,568,560,569,560,551,566,554,557,566,564,558,574,560,562,569,570,572,566,562,557,547,574,558,556,571,564,566,557,564,559,567,573,562,558,564,568,567,557,553,562,570,554,567,556,567,554,561,565,563,563,571,562,565,558,555,547,559,561,565,562,566,566,559,557,546,562,574,576,568,566,566,578,560,544,569,572,562,562,565,554,569,576,562,568,574,555,562,563,572,546,571,562,574,575,560,551,571,574,560,573,556,555,562,568,587,581,561,557,557,579,551,567,545,563,572,545,549,556,555,566,560,571,550,547,554,549,566,560,563,556,555,572,561,569,570,564,561,549,559,568,558,548,557,545,560,567,562,571,572,560,562,566,567,586,549,545,548,554,575,570,552,559,563,564,568,566,547,555,572,571,558,556,546,564,562,549,560,562,555,556,561,557,554,553,556,556,561,567,562,566,569,559,551,559,548,567,545,552,553,546,559,549,563,536,558,557,562,557,558,562,545,547,553,554,553,553,547,543,565,547,559,551,563,545,544,547,553,545,555,561,544,562,540,560,560,545,556,554,556,550,554,577,559,561,569,549,563,574,577,563,570,569,565,574,569,567,564,563,550,559,578,562,559,566,560,569,572,568,566,580,561,565,563,557,563,559,546,565,571,578,566,552,564,544,564,553,574,722,724,707,712,703,713,720,705,719,701,709,677,708,691,711,717,703,698,699,694,737,693,710,675,689,692,708,691,727,695,703,716,709,697,698,720,711,698,706,704,700,719,693,693,726,700,751,670,680,683,689,675,677,669,680,659,670,689,676,681,675,682,675,684,683,691,680,673,684,677,664,694,662,683,672,696,698,681,675,670,678,678,667,699,677,689,672,667,663,732,753,781,771,789,750,726,763,778,734,727,773,765,756,757,746,777,752,760,704,730,719,737,708,752,746,744,740,716,746,745,762,767,746,740,760,733,748,734,788,650,651,677,649,686,680,666,647,639,661,681,676,645,666,638,701,715,693,648,675,667,671,650,697,622,673,665,712,657,642,663,677,640,664,676,675,675,681,644,650,651,648,612,636,656,632,640,622,654,650,625,636,663,630,630,634,645,642,634,666,667,641,627,610,648,667,661,665,636,676,641,659,621,660,624,664,653,660,631,644,644,642,661,630,627,635,602,549,555,571,544,541,558,551,554,549,548,546,550,565,576,545,567,547,544,541,555,563,555,553,555,544,545,552,560,552,558,563,539,554,556,549,558,541,540,557,555,548,566,540,552,558,556,542,557,544,544,553,545,568,546,543,557,545,537,539,537,545,543,551,550,548,542,545,537,536,542,533,564,537,528,544,544,531,551,556,548,551,535,541,553,550,549,554,519,555,556,551,544,535,548,548,534,547,541,549,556,570,547,549,555,548,549,534,548,547,556,562,556,550,555,548,561,545,541,562,544,558,550,553,554,552,555,549,558,549,554,552,643,616,642,633,673,656,649,662,654,588,676,651,624,648,642,635,638,623,617,643,611,614,666,652,655,618,625,615,633,641,639,612,613,646,614,641,622,641,664,665,613,663,641,629,587,633,635,659,655,664,653,648,670,663,651,648,700,663,663,665,668,656,640,657,652,660,653,662,662,652,653,658,666,651,672,678,674,651,660,649,657,664,677,619,555,575,583,572,563,575,580,567,570,581,568,579,584,600,573,579,564,568,568,563,574,576,587,567,585,571,576,569,579,590,577,587,586,582,578,582,557,582,580,574,565,587,587,560,595,608,562,578,579,576,596,589,590,586,596,592,610,616,574,584,580,608,584,612,586,572,588,585,578,600,576,593,589,577,580,580,614,569,595,605,619,585,596,584,586,601,587,565,581,589,598,587,633,606,608,619,596,570,600,592,581,597,588,608,615,610,620,598,601,610,599,618,594,608,594,598,616,593,612,601,620,587,595,611,617,611,610,592,599,576,586,584,571,577,577,582,579,540,558,579,554,568,565,551,565,568,569,561,575,570,570,604,573,579,559,559,569,562,568,553,587,564,578,551,575,577,565,602,559,579,555,581,646,685,659,662,658,656,690,651,683,680,655,683,681,674,659,649,673,659,662,660,668,662,665,677,669,663,659,651,650,646,656,657,650,661,643,650,667,655,672,572,593,600,585,603,595,600,569,577,590,612,578,598,595,595,573,582,591,569,561,593,589,614,585,580,591,595,591,571,567,554,574,602,564,583,577,582,605,575,594,588,592,551,674,688,712,687,673,675,636,646,716,607,665,706,707,625,708,669,718,698,718,700,690,635,610,710,677,728,665,691,687,683,632,623,726,713,674,626,656,664,641,635,708,673,665,662,549,735,664,710,740,715,702,728,704,691,704,731,672,685,707,719,721,718,711,694,708,705,695,697,711,693,712,664,714,722,702,700,698,678,706,690,700,712,711,654,651,647,618,653,641,666,646,642,633,684,659,625,650,647,651,666,644,648,648,669,652,663,630,640,664,663,615,649,636,667,637,659,658,664,610,666,653,652,649,649,649,696,733,716,713,737,736,780,746,712,715,742,726,713,731,724,692,710,715,748,721,733,742,730,721,717,764,705,704,756,712,716,696,725,737,725,740,718,751,709,743,701,737,779,711,724,772,698,671,748,710,712,713,703,719,662,735,739,702,701,708,705,741,771,704,736,673,696,727,725,741,719,733,711,689,748,739,718,741,732,688,749,686,724,685,700,719,673,677,684,699,675,653,674,675,675,698,702,663,663,680,690,675,704,673,659,659,653,656,683,685,666,678,651,660,660,664,681,672,675,655,667,697,676,672,725,663,674,649,648,659,643,656,670,653,650,651,654,650,657,657,658,637,653,671,652,652,646,651,642,644,652,660,666,655,646,653,647,643,648,646,665,651,670,652,658,655,651,731,743,730,772,752,744,746,762,758,732,757,761,761,765,757,735,751,727,765,773,753,735,751,728,741,750,686,722,768,721,737,743,756,721,746,705,763,762,755,771,748,777,711,745,732,771,739,716,712,694,679,721,684,712,743,707,691,743,693,744,737,724,713,684,714,725,709,697,789,711,754,724,692,710,699,741,752,739,703,716,722,741,740,734,717,751,722,714,741,681,676,653,635,681,671,711,684,699,667,668,659,690,634,689,655,691,650,665,657,649,663,656,658,684,658,653,655,664,671,645,655,658,674,639,649,667,682,654,670,693,651,642,674,593,587,617,604,620,615,583,589,595,591,600,607,605,604,631,605,609,604,594,613,630,624,595,605,611,606,605,615,605,615,607,591,605,606,617,598,597,603,607,595,623,598,604,589,614,605,609,588,566,575,572,587,568,576,573,577,563,573,573,593,569,591,561,560,583,567,579,590,588,562,574,572,578,577,571,569,587,573,574,593,564,588,568,578,583,587,569,567,597,599,579,572,711,714,699,713,707,722,685,696,693,701,695,727,709,690,717,712,711,720,692,721,683,698,700,692,701,687,678,698,718,692,699,715,707,677,705,710,686,678,700,685,692,713,672,663,665,661,685,675,670,681,663,654,688,688,660,681,670,670,681,675,681,674,656,679,650,660,672,673,686,679,675,692,685,669,672,638,684,661,664,632,601,603,623,615,628,608,609,609,608,597,644,637,608,605,617,616,600,610,604,611,623,614,617,629,602,615,617,632,596,626,609,624,596,619,620,577,620,582,618,614,604,610,621,580,583,578,580,577,562,591,583,583,592,574,591,587,586,567,574,578,590,565,581,592,593,590,572,587,580,580,581,579,572,582,563,590,587,594,588,580,593,579,576,582,593,590,582,570,610,640,636,645,626,666,666,625,640,619,627,606,666,616,646,631,641,645,643,650,626,663,626,684,684,634,654,650,690,617,644,656,653,641,660,665,633,627,654,629,667,631,625,685,720,665,670,664,673,665,690,672,685,655,679,685,680,671,679,655,666,674,663,658,669,678,657,681,665,669,671,675,660,675,664,671,661,685,665,657,663,694,672,684,675,677,674,668,659,699,606,634,591,610,613,636,611,624,603,623,606,599,605,594,598,635,610,613,618,639,616,625,621,617,605,616,616,644,607,624,622,628,604,613,606,602,613,621,600,625,625,626,586,580,574,581,584,585,582,582,565,590,565,569,578,582,582,578,566,575,586,577,582,563,575,569,589,582,568,582,571,586,585,571,573,580,582,577,578,583,569,568,581,588,556,550,539,547,529,555,551,551,542,562,535,547,539,547,557,559,542,545,569,546,554,541,559,535,549,554,557,547,542,552,560,547,534,535,526,553,551,550,561,550,544,545,546,569,523,532,528,521,541,543,550,537,529,531,547,534,530,526,526,528,538,536,543,529,539,546,540,542,527,529,548,528,525,518,538,531,534,520,528,551,528,532,543,530,536,531,538,550,542,510,583,587,583,579,584,583,570,584,571,569,588,571,564,566,580,577,591,574,579,589,585,588,576,579,571,568,568,548,563,587,574,579,559,563,572,577,599,602,609,631,615,595,610,615,610,624,612,604,608,625,622,623,613,577,607,605,623,612,605,623,589,619,615,633,617,613,617,612,610,627,589,616,600,621,610,624,611,628,614,615,588,611,627,629,613,619,603,596,593,619,627,609,605,585,595,598,634,610,612,597,612,607,618,596,616,585,600,594,596,585,617,631,583,590,601,601,604,623,611,604,599,623,605,605,597,623,598,590,608,607,610,589,602,589,566,565,583,591,584,588,580,571,579,571,581,577,585,575,574,578,583,588,568,576,601,586,579,574,589,576,585,569,569,589,594,580,592,585,563,575,573,567,684,668,689,683,642,677,683,666,680,645,662,667,675,663,679,660,668,691,649,669,668,668,671,682,646,671,677,685,668,646,657,668,660,680,707,653,671,676,649,658,587,576,572,589,590,591,597,573,579,600,614,576,597,580,592,599,565,584,596,587,600,592,585,585,580,578,594,580,586,570,585,581,578,586,576,579,579,577,577,588,584,600,575,579,551,559,570,569,565,572,555,538,571,552,550,568,561,571,559,549,547,602,566,548,557,576,554,585,576,595,589,552,556,581,554,553,569,582,572,561,586,580,571,589,571,570,565,663,644,613,655,631,655,653,627,658,642,643,633,646,658,632,637,646,647,643,650,646,659,661,660,662,637,656,648,652,653,664,651,652,633,632,647,638,655,638,644,622,605,605,603,595,606,603,587,604,603,593,600,580,588,601,600,590,597,575,597,604,585,584,593,583,590,606,599,594,581,605,616,605,573,601,604,597,592,580,611,587,631,567,565,574,550,564,561,556,541,566,558,556,539,545,552,563,551,566,558,579,563,536,553,547,570,554,562,553,555,550,561,540,544,575,547,553,559,542,556,561,559,560,527,621,573,570,574,583,591,624,581,568,607,587,566,529,613,580,609,561,557,596,564,617,585,565,566,555,577,615,600,586,605,574,567,578,582,564,593,591,577,584,543,575,581,588,580,579,573,571,592,569,568,594,590,589,577,582,586,585,586,582,574,583,567,586,583,570,566,575,581,590,593,578,592,587,581,582,582,588,595,570,575,590,581,572,581,578,581,594,576,539,570,550,557,551,546,558,543,557,560,556,552,565,562,553,554,557,557,553,555,544,555,555,541,548,541,566,558,550,552,556,559,551,565,550,555,551,569,573,561,556,560,582,584,617,619,627,589,627,606,610,574,567,585,557,619,613,605,637,608,598,616,607,597,605,577,603,628,638,578,635,612,599,626,596,627,618,620,583,617,582,598,596,597,612,580,677,580,579,571,571,565,574,586,579,571,574,571,586,558,588,564,572,570,588,574,591,575,570,572,580,567,578,585,566,573,559,566,539,574,560,595,587,609,570,578,579,565,602,606,622,614,593,592,573,595,611,566,577,574,618,572,634,557,604,590,614,643,561,605,634,624,614,614,603,584,628,603,618,573,600,610,600,580,583,581,595,574,630,619,614,567,576,625,686,702,731,716,689,703,705,716,679,716,688,696,718,714,698,691,707,676,716,718,685,700,703,712,709,740,725,691,689,720,680,675,684,704,692,692,669,724,693,700,709,716,684,721,705,713,597,617,623,620,637,647,614,618,621,623,639,614,628,622,599,627,606,609,644,609,606,646,634,635,591,632,629,613,604,615,633,618,627,630,630,633,611,657,614,572,632,590,674,627,644,576,588,637,617,576,633,629,557,642,634,587,624,612,607,618,627,671,626,688,634,648,592,600,612,611,658,634,615,601,652,580,557,670,648,642,575,634,621,602,604,676,594,599,594,561,594,581,615,600,603,601,602,587,588,601,588,579,615,588,601,572,617,592,584,582,614,600,579,584,585,585,586,580,582,592,579,586,586,591,584,604,531,534,590,581,636,624,640,642,573,600,622,593,638,608,579,617,620,511,574,595,610,639,633,641,650,632,658,661,566,552,623,541,580,593,581,606,685,583,552,625,622,644,658,716,682,704,704,708,702,678,688,692,724,706,730,709,675,706,673,718,707,710,707,709,703,718,690,726,703,687,706,714,701,689,723,723,702,704,706,706,726,692,698,716,708,694,695,708,703,692,700,729,678,688,657,721,706,653,709,758,695,719,691,718,701,646,655,686,725,718,695,713,703,706,696,721,691,657,722,626,722,705,715,706,703,709,677,680,664,704,705,741,670,715,722,659,653,668,670,619,645,642,679,662,647,646,665,675,663,655,665,656,654,645,646,650,662,656,662,657,645,666,648,643,623,666,646,657,637,647,672,685,637,660,651,640,659,635,648,698,582,577,569,569,585,586,608,591,592,594,583,575,592,604,575,605,590,587,580,609,587,570,577,580,608,577,593,581,595,569,587,590,566,588,579,577,600,592,585,597,582,580,601,546,534,549,550,537,548,541,542,533,553,533,527,552,542,546,547,546,532,542,547,561,538,533,551,531,547,543,540,540,527,529,542,538,542,544,543,533,533,541,538,529,549,539,547,538,532,541,543,543,552,540,551,538,534,551,553,524,545,546,541,554,548,537,554,548,554,537,552,549,528,549,550,559,547,554,559,543,546,527,548,544,528,558,562,572,539,561,511,525,526,531,530,519,522,532,526,531,523,533,519,533,528,515,523,522,527,515,540,537,542,533,533,523,520,530,524,529,536,523,523,539,520,523,522,527,538,520,524,532,523,537,535,512,532,505,690,693,691,718,698,683,697,676,701,715,711,711,696,696,689,694,683,673,690,697,684,696,706,688,706,697,682,720,721,721,723,704,700,707,713,683,706,693,688,718,678,723,695,642,657,673,638,667,654,649,660,645,644,642,654,655,661,651,656,656,668,656,679,653,658,665,625,682,648,681,648,641,675,673,655,677,670,638,653,653,660,638,651,651,649,663,661,649,653,666,590,577,620,610,592,602,607,603,618,604,613,611,611,628,622,608,628,600,609,631,612,591,618,620,600,625,611,587,620,614,602,591,608,585,617,601,616,582,606,600,594,649,638,638,592,632,609,613,629,647,647,603,628,641,619,610,650,651,621,599,620,650,628,635,641,600,630,595,627,579,598,652,574,623,621,607,611,681,695,627,631,608,582,648,568,624,597,592,609,608,590,618,606,631,616,625,603,609,605,603,602,587,601,614,591,590,612,595,624,618,599,592,606,600,602,589,604,593,625,607,583,569,569,582,567,570,565,544,577,550,562,570,559,570,562,565,558,580,573,573,572,565,582,566,573,571,572,567,569,582,574,568,567,553,564,561,581,575,566,562,566,559,585,546,566,562,563,582,561,542,569,572,560,553,551,549,548,566,559,545,552,563,539,542,543,562,567,572,546,550,549,557,551,546,548,555,554,570,560,555,571,552,570,559,566,551,567,552,555,555,546,542,560,539,552,554,545,544,555,554,563,555,538,554,549,552,567,558,556,537,553,543,554,553,543,542,557,549,546,545,543,544,546,539,551,557,658,584,680,629,596,595,623,647,629,644,580,594,628,608,597,640,575,650,601,626,604,608,641,647,610,599,577,666,664,614,587,613,596,656,634,593,640,617,632,630,605,605,580,603,764,726,739,737,716,741,739,714,767,727,755,723,770,742,743,710,714,704,697,731,720,772,733,725,755,710,698,718,718,703,767,735,745,733,719,734,730,752,746,773,799,721,724,732,714,755,717,737,729,730,708,745,746,728,748,722,722,755,728,742,710,703,736,737,707,729,734,733,717,709,733,734,733,737,754,724,726,714,713,739,750,654,670,665,678,661,654,693,654,652,674,652,694,667,664,660,662,674,685,670,674,663,673,638,681,657,675,675,664,662,691,652,665,671,697,668,643,692,668,678,640,673,672,676,650,653,681,604,594,570,573,585,555,600,568,590,570,575,598,580,589,576,569,601,579,588,576,583,575,599,579,576,580,587,577,585,593,580,567,587,568,594,593,584,596,587,576,587,587,559,666,663,680,679,667,690,690,680,664,668,681,679,674,689,646,694,643,659,671,674,664,660,680,673,682,673,676,680,664,679,695,671,652,681,670,668,691,691,688,672,683,659,682,664,693,680,675,647,673,678,681,721,669,709,682,657,691,678,657,696,720,655,687,686,667,661,682,636,672,681,705,671,667,660,688,632,665,673,702,659,657,660,680,683,658,668,664,710,649,665,666,701,681,669,579,587,589,559,614,531,554,553,589,606,579,595,607,586,618,567,581,580,561,580,590,584,621,564,560,583,607,596,589,576,581,571,570,592,538,559,602,578,603,588,575,547,571,546,556,570,571,565,551,577,551,538,533,558,580,554,536,556,554,527,561,548,541,549,582,546,541,558,556,551,541,558,557,558,556,571,531,564,541,561,562,560,696,637,660,680,643,674,625,676,681,656,675,694,699,685,679,655,665,675,676,670,691,667,666,684,671,687,708,680,684,637,670,657,664,641,647,675,720,665,688,622,631,624,625,648,634,616,629,616,622,636,588,623,626,608,614,598,608,601,635,622,656,638,608,603,597,615,633,630,630,617,628,640,608,634,604,630,618,615,581,585,578,576,590,589,566,574,580,576,584,581,589,583,583,584,591,580,576,576,572,582,584,573,580,590,571,591,575,570,567,582,583,579,575,583,581,579,577,576,588,582,587,657,636,610,630,652,631,630,629,637,662,638,625,670,620,654,656,676,633,667,646,644,636,653,609,635,616,652,622,699,646,633,672,649,643,668,689,634,650,685,633,601,652,692,695,680,706,699,679,680,692,683,680,676,681,685,671,690,675,682,688,687,684,669,689,684,681,689,668,693,683,668,658,693,670,667,697,691,692,699,701,684,674,666,696,663,704,650,673,666,669,645,673,682,675,669,669,666,664,655,641,663,672,655,667,668,657,665,662,670,664,678,653,656,661,664,661,668,650,646,663,664,664,671,657,676,672,659,656,675,675,663,583,602,592,577,584,602,589,572,600,590,593,589,581,576,570,574,584,602,593,572,582,592,572,593,553,598,585,576,607,598,599,588,593,575,611,573,592,582,582,574,583,588,576,634,595,592,603,579,608,624,595,582,639,609,630,564,601,627,595,589,636,578,596,595,630,582,579,609,589,622,626,615,606,618,609,574,631,653,580,601,612,610,587,607,589,639,603,537,589,583,587,598,578,585,582,576,575,594,593,582,605,582,579,595,569,578,601,594,586,586,587,586,592,599,586,589,584,578,584,599,577,574,591,600,591,621,581,595,603,605,592,580,563,584,593,579,631,595,572,582,621,561,558,611,613,587,599,644,568,591,569,574,554,584,615,593,646,628,621,550,596,516,563,569,560,578,561,562,571,565,557,557,564,574,566,559,569,552,572,568,571,570,564,570,552,572,552,573,565,564,557,558,585,554,551,557,576,570,559,568,564,574,577,564,579,559,586,588,605,604,577,605,594,595,589,596,615,597,599,592,591,565,600,584,594,596,585,584,577,590,599,601,616,601,576,566,583,585,585,601,598,588,599,591,582,622,616,618,617,611,616,610,605,599,623,609,607,641,608,589,609,633,608,604,625,606,612,610,614,613,620,599,645,603,600,602,593,620,635,608,633,599,618,615,618,622,612,581,592,558,577,574,579,588,580,560,580,573,589,599,591,582,592,579,571,578,579,573,594,594,579,595,582,579,583,590,591,586,585,563,582,597,562,583,577,584,578,575,566,594,541,624,642,624,578,626,630,637,603,570,635,601,620,651,640,639,605,605,601,621,617,653,656,646,627,673,620,612,605,652,638,615,609,623,618,648,619,611,637,623,619,563,538,689,705,679,680,696,686,672,696,665,678,699,680,659,678,685,686,707,680,700,701,721,691,676,701,705,691,667,670,683,692,711,671,687,685,675,688,685,691,678,705,699,683,719,688,678,696,658,668,679,664,671,694,660,674,683,674,653,687,680,659,664,690,682,674,665,671,668,678,670,691,685,677,657,683,668,666,665,678,667,678,708,691,664,668,686,673,698,682,684,657,684,674,685,575,600,569,562,573,569,588,571,577,599,569,583,576,568,596,560,586,566,595,581,563,589,583,580,586,590,598,575,584,586,582,573,577,583,575,557,579,571,588,577,610,590,561,588,578,602,577,653,634,647,653,635,606,644,603,626,646,669,630,631,665,638,636,616,655,637,649,643,668,615,629,615,658,611,638,636,628,655,619,638,659,619,651,632,642,636,639,635,633,578,602,600,607,595,579,594,568,602,591,588,589,594,593,603,596,584,605,563,595,598,572,577,593,588,592,587,594,586,590,598,586,613,586,593,613,592,594,583,599,588,601,586,572,565,562,568,553,560,561,577,580,565,563,554,570,546,563,563,571,571,575,571,563,562,559,568,567,567,567,561,567,556,553,565,552,559,569,582,559,563,576,575,560,557,575,568,556,560,554,551,560,566,553,558,557,560,557,573,552,558,558,558,551,551,565,556,556,546,539,555,551,572,552,561,552,568,549,561,567,568,550,567,558,570,564,566,555,571,564,550,553,565,553,552,549,549,546,551,546,548,540,540,567,552,551,545,560,544,561,547,549,541,559,558,560,543,550,557,555,565,553,544,557,563,572,550,551,554,735,717,720,744,755,736,763,709,738,679,729,731,675,747,726,743,707,705,733,732,719,737,757,786,714,706,755,731,769,756,717,717,703,744,689,762,741,712,714,707,724,692,687,770,786,724,728,712,718,719,732,732,727,735,729,726,694,716,724,726,690,704,727,702,700,727,718,762,751,734,711,744,743,724,712,718,731,723,731,744,723,714,700,746,707,734,732,705,717,710,774,597,596,613,596,562,621,565,631,602,606,597,573,606,589,639,594,613,610,584,605,599,608,563,611,600,636,600,604,633,602,610,638,554,603,580,568,623,589,591,621,678,542,574,585,575,589,590,569,573,575,577,563,558,540,554,567,566,553,553,549,555,565,563,572,572,574,534,576,563,560,580,569,570,576,572,569,563,570,552,535,537,525,530,531,542,547,536,525,531,530,547,531,540,539,525,549,539,534,534,535,543,542,521,534,530,535,533,538,533,539,524,537,530,540,543,533,545,531,544,527,537,544,536,531,537,676,645,635,622,659,642,631,623,612,641,631,643,649,634,653,661,629,671,631,640,645,653,665,656,663,650,658,640,661,646,656,654,651,663,651,659,672,653,643,648,670,636,679,581,577,594,597,597,597,587,589,571,574,595,583,596,601,589,590,598,588,593,572,585,589,589,575,583,588,600,583,591,604,582,584,608,577,589,593,588,580,578,552,549,543,557,553,563,569,548,559,558,545,560,553,558,553,543,553,556,540,566,565,566,556,553,559,547,551,549,562,546,553,557,553,558,554,547,557,558,555,545,559,560,584,667,663,687,656,648,628,600,644,665,657,593,599,658,652,625,633,621,610,692,631,622,598,654,674,658,620,647,666,625,614,601,618,621,610,644,669,618,658,645,626,635,582,559,586,581,561,572,551,576,566,566,559,577,577,562,571,577,561,578,573,559,576,553,589,578,571,572,570,577,560,576,554,566,583,563,572,578,572,587,667,655,601,573,666,626,636,628,647,595,633,623,617,638,593,607,608,670,640,635,581,656,603,584,564,630,673,650,632,615,634,598,665,595,650,634,657,632,641,666,628,619,612,603,603,622,609,609,600,638,629,615,610,605,605,598,607,617,590,610,606,600,608,623,626,604,605,601,637,587,623,590,594,596,608,594,592,632,613,603,616,586,628,609,609,607,611,578,562,559,578,575,563,560,586,561,594,573,572,567,577,589,586,568,572,574,567,591,578,579,572,571,573,591,602,583,566,576,575,575,563,571,575,582,564,571,579,573,575,575,574,602,671,635,658,637,616,646,629,636,668,658,640,653,621,620,638,666,601,638,594,617,657,666,633,627,662,669,656,644,650,607,636,649,607,619,652,633,650,640,645,656,621,672,669,687,646,667,658,654,649,677,663,659,672,673,652,679,667,671,683,664,665,672,680,669,661,669,666,683,665,666,692,660,688,674,677,680,681,643,666,670,665,665,670,677,593,579,580,583,593,572,595,590,587,574,567,599,578,597,572,571,581,596,601,596,588,606,598,591,584,582,566,587,579,583,579,579,575,587,567,591,588,584,586,584,622,604,576,697,704,687,687,685,696,697,692,703,710,685,692,688,666,689,687,701,669,693,708,695,702,713,704,689,690,690,676,694,684,705,688,684,719,692,683,702,683,710,679,688,709,697,710,687,676,685,693,678,741,657,659,670,688,651,667,637,659,654,675,645,661,668,657,648,676,652,630,652,662,643,648,662,663,672,658,661,650,651,632,666,679,672,660,662,632,659,663,650,651,656,661,684,596,627,622,601,581,618,599,608,583,613,605,593,594,567,595,621,600,598,605,597,611,606,600,569,610,580,616,599,607,601,586,590,613,612,619,612,615,605,596,558,627,629,654,642,667,647,656,647,650,662,604,628,641,608,639,635,634,649,637,645,667,658,618,662,647,602,645,601,632,643,654,656,643,694,664,640,627,633,661,709,683,694,678,695,698,703,706,695,683,695,681,691,681,694,666,690,683,669,702,693,692,689,699,688,678,695,701,668,717,698,703,690,697,697,682,689,693,694,692,696,677,650,665,679,668,671,658,663,673,672,665,669,658,672,677,673,673,669,672,672,685,674,678,649,658,659,671,673,666,692,662,674,674,676,676,685,665,669,681,656,664,673,656,665,664,669,666,656,680,668,604,608,619,621,611,616,615,619,614,630,593,609,598,610,598,603,608,601,605,617,609,615,631,626,617,597,610,607,630,612,609,605,625,647,617,615,624,599,617,630,610,630,623,603,605,622,611,561,571,571,577,561,579,571,593,579,588,596,575,582,567,574,587,568,570,582,577,582,569,580,565,556,595,574,583,574,570,584,576,576,570,554,572,573,567,572,568,588,637,662,653,668,688,677,677,663,703,649,686,665,700,657,653,667,676,676,676,656,661,674,698,659,688,657,661,664,672,672,683,678,656,650,681,658,666,647,618,643,627,633,626,632,605,617,644,608,638,624,638,623,629,615,639,624,642,644,650,623,621,618,612,622,631,634,638,644,640,629,628,639,630,607,625,599,634,602,634,624,626,629,639,574,573,569,568,565,568,573,584,568,576,562,588,597,592,612,579,571,585,569,561,574,556,571,593,584,592,577,564,593,582,599,593,578,558,586,566,578,573,584,578,591,580,607,559,558,559,549,559,558,557,555,545,548,540,554,549,565,543,554,540,554,539,558,559,553,551,549,549,556,542,553,552,555,556,548,547,551,555,553,556,546,546,547,553,564,560,560,561,542,650,659,648,660,647,704,648,664,685,702,613,652,678,582,687,617,614,700,611,696,640,665,655,647,643,664,638,636,644,658,634,665,627,587,639,664,610,652,628,617,667,649,627,643,638,628,654,698,604,603,609,595,592,603,597,617,601,587,594,596,591,592,610,614,604,610,601,590,594,603,598,608,583,594,599,606,603,589,601,584,602,594,617,608,592,597,600,589,605,588,613,596,591,560,561,571,584,573,577,583,572,574,573,574,572,567,568,579,565,568,575,555,568,566,575,585,570,566,574,572,568,572,578,575,573,564,576,560,569,580,577,570,566,547,545,544,554,554,562,530,538,543,561,562,547,561,549,554,548,532,567,559,542,553,558,552,558,556,560,554,551,556,534,580,575,559,562,568,557,567,547,552,564,550,564,564,543,552,567,561,558,564,540,566,557,565,555,544,552,543,557,547,557,559,559,547,546,545,543,554,551,560,543,548,542,555,548,544,554,550,558,552,550,564,550,555,538,550,553,543,548,553,570,565,564,557,555,541,565,561,552,566,551,567,560,557,565,561,575,568,575,569,568,583,575,568,544,568,558,565,559,570,580,568,563,576,563,574,560,560,570,556,570,586,699,689,680,706,707,697,714,696,697,694,698,687,710,692,703,693,707,700,691,676,732,706,699,728,705,702,700,717,687,697,706,698,703,735,700,691,711,698,684,716,696,703,683,686,714,677,675,692,681,667,701,682,688,659,654,657,682,670,678,678,686,663,689,669,690,685,673,663,700,681,676,669,677,687,688,662,688,683,683,680,668,670,675,686,663,680,661,681,678,666,674,639,627,627,620,626,653,633,606,629,622,631,644,648,634,660,631,643,667,624,637,629,653,667,621,626,632,624,646,622,628,605,639,640,598,637,629,668,657,611,656,628,639,638,617,698,713,721,681,674,699,657,647,668,675,661,694,707,661,664,720,690,701,645,672,684,682,689,674,685,707,706,688,698,689,704,687,667,665,706,717,706,738,706,687,682,695,676,690,676,656,640,680,657,640,667,657,636,652,642,651,683,673,675,669,670,693,656,689,655,658,664,679,695,680,659,661,638,615,641,660,679,663,669,656,677,655,650,654,650,659,596,589,613,614,598,581,594,599,612,588,600,597,597,614,604,602,599,602,603,609,601,608,618,622,593,623,606,617,592,607,589,614,601,617,615,596,597,616,614,601,551,555,559,566,563,564,552,557,563,557,549,552,563,552,567,577,559,557,566,565,559,565,567,551,564,549,559,557,574,567,561,549,551,560,565,554,557,539,560,556,562,568,557,584,573,590,557,572,591,563,580,575,566,595,581,579,573,575,565,573,573,598,588,575,570,579,572,569,584,578,576,564,571,558,578,549,577,570,556,608,586,563,581,561,582,566,575,585,584,602,619,624,597,598,616,637,604,606,606,617,613,596,599,603,615,607,606,582,601,613,608,593,617,585,622,603,589,589,603,601,616,607,619,614,578,617,613,606,597,624,597,629,631,648,609,660,645,635,621,627,622,594,647,620,635,626,631,626,608,622,626,622,601,638,627,639,616,639,616,643,665,636,643,641,648,637,645,622,637,647,649,670,609,603,611,591,608,594,606,609,589,599,571,605,592,586,608,609,608,597,603,585,594,602,593,601,580,613,628,610,595,598,591,587,599,598,606,617,592,601,566,569,605,574,580,583,574,573,582,595,562,578,589,598,562,561,590,583,588,582,570,580,570,591,583,603,584,564,570,570,579,581,593,573,584,584,591,583,584,569,592,591,568,583,558,547,555,550,547,549,555,544,558,554,553,559,551,549,561,563,562,543,557,558,563,546,562,565,561,555,555,566,544,550,552,553,551,549,572,558,555,560,550,549,555,566,544,547,725,677,682,636,631,701,673,661,655,700,639,668,705,638,646,629,679,670,674,699,667,633,673,697,664,621,638,653,648,680,686,669,664,664,674,695,653,635,688,664,691,597,607,614,599,608,604,606,570,591,607,592,599,589,592,623,573,588,621,630,595,596,591,579,604,606,594,589,600,596,613,596,628,567,591,609,636,616,604,592,578,580,617,590,616,552,573,588,577,577,605,563,567,553,572,567,559,587,586,546,569,578,576,550,576,579,586,567,561,576,568,574,572,562,580,580,617,547,575,577,592,579,569,572,549,614,663,670,659,678,660,647,672,677,650,677,663,667,676,651,658,681,685,659,663,651,662,670,663,680,660,669,669,680,653,684,688,655,649,651,674,654,661,687,650,682,651,673,669,650,652,663,666,737,753,746,734,742,752,758,775,768,708,749,743,718,701,742,754,715,730,719,753,773,726,741,757,749,737,774,761,730,690,758,755,727,748,725,718,723,764,740,761,757,754,731,710,771,653,662,677,667,696,655,685,701,683,665,697,707,674,676,685,673,655,674,659,637,680,685,701,659,663,653,621,684,711,665,673,645,664,676,677,656,677,668,654,640,516,538,521,543,547,512,549,552,532,534,558,524,544,538,524,545,559,536,559,548,565,561,564,538,548,563,569,502,553,567,558,510,548,553,518,556,529,521,563,543,531,576,547,553,546,596,525,530,517,526,521,536,542,522,529,519,527,532,515,524,534,537,530,519,521,521,533,530,514,524,533,534,537,530,525,510,535,516,539,530,533,534,522,530,530,522,520,655,651,639,680,666,646,658,641,649,659,619,670,630,640,636,667,658,645,651,649,624,652,640,620,650,638,628,658,656,653,642,617,649,651,643,624,696,701,669,668,697,664,659,685,687,700,646,684,672,695,670,692,673,684,674,697,690,669,680,702,655,666,643,700,661,645,677,678,668,667,705,689,680,666,653,719,612,615,662,719,703,680,690,699,704,695,705,730,652,732,685,667,658,658,670,663,692,715,700,707,667,695,682,660,656,678,729,716,645,675,611,715,660,654,639,727,674,730,624,675,651,668,675,672,659,674,642,624,645,628,645,659,639,635,644,670,638,654,631,639,655,644,649,640,643,669,638,660,652,677,658,642,622,641,665,635,651,629,649,663,627,677,660,660,671,644,670,645,655,638,576,572,555,581,580,566,569,564,573,560,578,577,544,558,579,588,550,584,575,554,572,555,584,570,562,568,567,571,565,584,579,565,567,570,569,570,556,569,556,547,590,562,595,605,612,607,603,575,598,624,582,575,561,643,611,609,621,614,584,594,650,572,596,563,596,601,611,555,606,575,649,596,579,573,579,595,584,549,580,639,772,780,711,765,780,775,801,810,759,766,766,768,756,771,739,779,763,752,783,756,766,771,751,795,805,767,779,775,742,761,753,785,758,735,748,758,744,750,778,778,760,740,758,748,767,762,761,766,657,690,659,674,671,705,657,683,682,676,666,670,710,654,681,716,706,690,687,692,618,680,694,681,694,693,699,697,702,689,677,634,663,692,693,676,677,677,704,701,638,543,553,547,558,526,547,530,560,523,541,560,536,526,566,537,547,544,580,568,567,570,559,559,549,566,537,560,538,560,537,563,551,541,530,560,515,548,539,522,523,524,544,533,524,532,533,544,532,522,544,539,518,531,527,534,536,541,546,529,531,537,533,523,531,533,526,526,525,529,526,535,531,525,517,530,553,540,533,533,517,509,506,517,494,502,507,520,521,483,496,521,519,514,503,520,510,511,528,510,520,521,514,512,525,497,517,508,512,502,527,515,508,500,520,514,497,514,522,508,514,519,508,529,499,519,524,552,565,559,551,547,552,537,535,571,561,556,575,554,564,572,560,563,551,555,557,563,560,554,558,554,562,567,574,560,549,562,563,561,547,561,550,562,561,556,541,576,528,549,537,546,532,545,545,537,542,545,536,539,544,538,541,544,532,553,545,542,541,538,537,539,539,540,545,530,538,557,549,547,531,549,544,534,537,548,533,550,537,541,772,714,771,740,664,764,764,770,773,762,703,771,758,691,748,740,817,706,741,770,738,756,685,739,729,741,783,754,770,783,717,768,734,757,743,739,735,753,753,726,698,714,724,714,721,715,739,723,718,713,730,759,733,730,712,736,731,710,721,725,736,704,722,761,728,733,716,719,711,722,707,691,721,730,737,718,735,756,715,719,663,701,693,685,646,717,703,662,691,705,674,742,708,666,694,693,668,695,655,719,705,690,681,643,693,695,680,669,715,684,671,726,724,688,713,706,670,646,665,687,683,646,603,619,629,623,603,618,607,629,605,603,618,620,615,620,611,610,609,613,631,605,631,584,594,604,611,661,630,622,636,609,625,624,609,619,625,609,612,643,615,619,641,617,630,617,613,624,616,581,587,583,595,589,581,598,583,573,570,585,595,594,584,579,573,582,585,587,588,585,569,576,582,582,586,592,591,576,578,572,572,580,595,596,585,596,591,576,559,567,562,565,563,566,568,568,578,575,570,567,568,561,576,577,561,558,565,578,561,582,575,554,560,553,567,562,561,564,575,570,580,569,569,566,567,579,561,542,601,618,628,613,605,603,608,614,615,605,616,601,616,615,610,602,624,607,600,604,601,607,601,597,599,595,615,606,588,609,619,603,607,606,599,634,631,614,602,628,586,608,602,599,608,607,643,637,617,632,645,646,633,639,622,636,647,649,642,666,639,621,662,642,633,638,630,632,659,661,640,642,627,644,645,620,643,647,646,641,647,639,637,632,671,622,655,651,732,756,692,708,743,739,713,699,703,718,736,729,730,731,710,734,699,705,739,742,701,714,724,685,688,715,694,705,742,739,710,695,765,752,728,747,727,682,757,736,670,675,654,698,689,730,719,731,732,721,687,726,722,709,697,709,707,707,721,715,721,721,709,737,734,710,724,693,716,711,693,707,728,720,714,720,709,694,711,704,715,711,732,724,696,705,710,695,694,717,681,705,690,677,706,695,685,719,694,699,677,702,686,708,714,704,702,693,687,678,705,704,705,682,671,689,674,684,663,716,701,693,682,683,679,730,656,680,692,718,688,727,640,712,741,655,666,642,671,772,653,672,676,679,686,694,727,706,634,634,699,682,733,689,732,684,725,652,688,692,712,634,668,633,694,744,660,660,637,651,633,645,675,629,634,625,639,673,630,645,655,629,645,632,668,650,629,650,645,672,667,655,655,647,662,656,649,657,642,649,662,683,674,642,651,646,661,635,643,607,587,577,605,604,600,610,608,599,591,597,601,591,615,612,587,592,591,610,595,592,615,594,615,589,603,617,603,618,592,603,588,583,602,604,603,571,608,602,568,596,586,614,593,590,592,610,593,596,598,584,562,563,587,567,571,588,565,566,569,569,581,584,588,578,589,575,591,569,572,572,590,567,576,581,581,583,588,571,580,575,584,593,574,580,575,587,581,588,589,587,580,573,564,556,553,550,556,567,538,548,558,556,571,550,551,551,553,544,559,558,546,552,553,540,553,567,552,563,544,554,563,556,547,562,562,555,548,548,561,554,546,567,538,679,699,672,652,741,654,666,674,683,672,658,680,707,704,685,657,655,669,640,686,674,662,701,637,610,667,679,680,677,677,689,693,672,685,705,656,651,713,658,640,628,642,613,637,623,626,619,637,651,638,624,613,650,619,629,652,645,650,645,623,641,638,634,622,601,635,624,638,644,631,642,642,639,644,634,623,636,642,643,622,641,630,626,630,598,578,590,595,578,569,575,579,580,564,563,569,570,575,557,574,578,578,584,585,563,584,568,556,571,589,587,577,574,570,574,562,564,577,574,579,581,573,571,576,577,573,570,562,544,712,704,783,684,713,689,716,641,770,743,695,702,704,697,781,707,694,741,703,692,705,724,678,716,678,741,742,773,690,723,699,705,767,702,747,739,698,708,725,720,665,738,697,727,694,713,724,681,787,741,722,740,714,709,711,751,718,727,753,701,716,714,723,735,729,723,705,736,723,731,723,732,733,735,717,714,722,722,711,733,707,737,709,742,699,685,717,644,663,724,715,694,691,671,672,671,704,666,674,698,675,670,693,692,683,712,701,720,679,650,684,658,682,670,668,698,676,672,680,664,687,731,681,674,694,682,680,661,676,707,624,617,620,624,617,612,608,626,614,602,618,603,591,609,642,637,627,614,596,614,646,597,622,624,629,601,628,616,620,626,610,600,583,614,628,597,600,639,593,604,638,621,600,581,579,562,565,592,576,573,577,564,571,575,569,579,570,571,577,571,559,575,573,571,565,578,578,579,585,558,556,561,566,571,569,569,579,565,590,580,594,583,580,566,563,567,576,572,586,580,580,563,573,576,574,575,577,576,714,698,694,700,688,693,684,704,727,692,730,713,686,698,680,662,708,709,689,712,725,692,673,686,706,676,680,668,678,722,720,720,659,702,711,698,631,682,678,712,676,671,692,696,706,702,682,694,694,669,690,671,708,694,694,707,686,693,693,662,702,709,668,676,685,703,712,688,684,685,679,692,685,696,679,695,696,684,657,674,683,675,685,678,691,700,668,675,692,667,685,714,715,697,687,682,653,691,676,695,667,677,669,688,651,679,691,717,704,660,693,701,663,681,686,692,677,700,660,679,682,673,617,599,600,615,615,593,609,602,596,627,600,631,605,612,623,644,587,609,601,609,608,630,603,579,588,597,610,604,595,602,667,640,598,607,639,614,591,627,600,616,599,596,576,622,546,558,571,552,550,540,542,549,558,567,548,556,545,555,545,574,559,548,562,555,543,565,531,549,549,558,560,564,552,563,552,558,570,556,550,540,560,565,532,504,507,504,499,483,502,496,510,492,486,513,502,504,511,499,503,498,494,510,498,507,500,500,493,497,489,494,499,500,515,488,509,492,497,515,506,501,510,506,495,521,499,513,508,506,507,499,500,513,516,493,510,502,511,504,498,507,508,513,504,496,515,496,507,517,518,503,490,514,511,497,513,504,497,514,492,501,498,498,508,506,507,501,493,530,506,533,519,502,515,501,503,510,504,519,523,527,503,522,515,517,502,528,517,524,523,521,514,503,515,511,516,506,508,512,514,519,502,508,532,516,526,511,532,525,500,528,562,565,567,569,588,569,569,553,563,561,561,562,557,575,577,556,541,555,545,555,560,578,584,567,564,564,562,578,563,568,567,568,581,578,581,548,587,560,559,574,567,579,525,606,597,601,603,587,613,591,590,598,603,602,593,600,579,597,586,594,599,606,588,579,578,590,590,614,599,597,592,605,606,589,586,589,596,595,598,596,593,589,579,605,591,584,585,657,699,702,673,653,680,691,694,684,672,680,689,678,672,690,737,662,656,693,719,694,677,681,704,689,661,678,712,675,694,700,678,671,708,714,704,673,698,702,678,694,652,610,613,637,614,644,632,652,610,601,634,640,652,619,643,625,639,618,594,620,623,626,649,610,636,625,616,625,625,628,623,631,605,644,619,617,651,612,627,620,622,618,619,622,592,574,584,580,571,584,573,573,584,592,589,573,599,593,578,582,577,584,582,571,578,568,571,569,600,590,568,589,577,591,586,582,576,573,578,580,564,591,562,559,558,567,553,545,569,559,571,551,567,570,554,562,565,569,559,563,574,560,553,557,560,559,567,563,557,555,557,560,554,564,567,564,551,567,562,556,564,559,556,534,562,558,565,566,557,550,563,564,562,545,552,565,550,550,558,558,564,557,551,538,558,564,555,554,549,554,545,554,551,542,550,552,543,553,560,564,560,550,559,550,553,550,562,574,588,573,561,561,565,582,580,558,555,573,581,565,571,582,570,575,582,573,571,567,561,572,571,571,586,579,561,571,569,558,581,580,551,575,572,559,551,569,590,587,569,588,598,600,599,594,583,589,599,609,595,592,590,603,596,589,593,586,594,609,596,600,592,594,595,578,602,589,587,602,595,600,588,603,599,608,606,613,581,608,600,598,596,592,589,736,717,712,736,711,706,728,718,707,706,712,723,698,718,717,746,722,717,720,714,743,725,748,740,715,736,731,702,732,734,717,703,757,711,734,688,766,621,640,617,619,637,610,601,597,648,609,628,599,628,600,583,613,627,636,607,619,595,624,643,604,627,590,614,625,612,619,625,612,615,568,618,640,609,621,627,614,606,620,604,616,601,593,608,607,550,576,555,573,561,573,555,572,531,564,587,550,593,571,531,572,553,584,577,549,545,554,552,580,579,547,553,572,557,547,577,558,560,563,566,571,567,562,539,565,557,541,560,544,567,546,707,713,732,736,699,716,722,735,709,739,698,713,740,709,720,697,727,721,769,720,699,709,710,728,740,731,749,691,713,730,725,731,706,719,698,704,714,711,745,701,732,665,678,669,665,676,676,687,662,680,688,638,666,684,671,665,678,673,673,682,659,673,684,631,659,714,685,704,659,696,690,679,704,670,661,640,703,674,645,673,679,692,700,671,683,626,600,604,592,607,592,583,594,599,617,603,586,613,616,619,593,600,618,592,590,603,594,610,591,609,610,590,600,600,588,610,584,599,610,614,603,604,609,598,598,604,635,561,559,554,560,554,555,572,565,555,564,569,581,547,580,554,553,548,560,567,547,559,575,558,558,577,552,570,575,563,567,555,560,549,562,560,559,558,560,562,555,546,574,576,568,578,572,558,572,563,566,563,542,561,582,576,577,563,563,569,551,569,562,576,575,562,564,565,561,570,574,579,570,566,568,564,553,576,559,552,574,571,564,563,568,548,639,606,603,642,659,657,621,582,571,594,593,635,592,643,594,623,621,590,629,623,599,631,621,610,635,618,639,602,622,598,607,613,605,664,627,590,591,639,624,647,613,588,616,620,554,747,756,738,720,724,706,727,731,738,740,728,750,774,743,732,751,738,723,756,768,731,781,765,744,743,723,734,764,714,733,725,705,732,756,782,752,729,736,720,746,736,730,798,673,683,681,686,672,702,675,689,696,673,683,664,660,673,715,680,680,684,690,671,663,687,704,698,724,694,662,660,698,661,648,669,678,674,677,667,671,669,689,694,651,596,615,585,601,597,587,594,605,592,593,600,588,611,583,599,605,613,608,613,598,604,599,619,581,609,616,589,605,596,596,603,597,628,601,598,598,585,591,596,651,660,670,671,672,648,637,672,687,657,675,678,666,662,671,700,646,676,676,658,677,664,663,686,661,672,664,687,660,679,676,649,664,640,683,683,681,686,651,656,662,673,675,705,609,590,584,601,585,611,583,574,587,605,603,591,595,582,595,592,591,586,575,591,590,587,586,601,589,604,587,578,592,592,597,581,582,587,594,583,583,589,599,595,584,594,582,590,572,545,531,548,513,537,578,525,544,548,564,569,542,526,558,533,521,533,553,539,542,545,537,526,540,553,545,553,557,558,538,532,543,532,538,541,558,533,561,541,558,549,554,549,534,592,753,745,727,771,743,731,763,739,745,715,749,729,737,756,752,751,730,745,699,723,704,705,743,689,722,718,747,727,756,737,760,736,724,751,754,724,758,758,728,725,738,735,730,737,722,741,729,703,721,719,735,715,719,733,733,731,728,720,729,740,729,719,742,757,731,720,721,721,740,733,753,725,737,727,733,743,747,728,742,710,699,678,656,661,677,661,664,653,638,695,679,672,685,648,650,686,663,656,674,656,646,660,650,662,653,652,658,659,684,663,673,661,682,668,662,713,682,661,670,697,686,684,693,715,683,664,646,583,574,583,594,575,592,586,595,582,586,586,554,577,577,573,567,586,580,581,577,597,588,587,579,587,599,579,570,589,608,582,583,569,603,601,570,597,580,592,588,567,587,598,583,548,728,687,713,673,714,714,692,713,700,684,695,697,703,692,699,675,699,708,687,693,689,703,705,713,700,714,691,705,675,714,704,713,708,699,703,704,674,699,671,716,706,725,743,689,682,690,672,671,678,696,676,685,676,682,665,676,669,696,681,675,691,675,689,684,670,668,662,688,683,680,691,689,698,662,693,690,681,671,690,679,684,681,698,692,652,692,724,683,668,713,696,740,760,706,764,718,743,700,769,713,680,719,707,679,698,737,716,708,703,676,697,699,728,700,720,730,650,718,691,681,751,710,673,691,693,714,701,746,646,714,715,710,738,710,706,737,720,700,727,711,714,712,710,704,702,719,726,701,699,696,689,720,720,704,714,709,685,706,734,698,710,691,702,724,705,718,723,687,709,707,724,713,716,686,721,688,690,688,689,714,693,697,678,682,692,720,698,684,717,713,669,708,698,687,679,712,713,678,706,751,691,684,677,697,683,693,707,704,701,699,703,695,698,699,679,686,688,647,667,750,738,642,714,681,674,670,682,706,733,644,702,614,709,653,691,675,741,671,678,677,651,673,669,640,689,648,730,639,691,668,683,655,698,697,626,669,688,737,639,675,683,668,669,661,641,656,665,633,643,647,677,692,655,657,652,629,642,657,624,663,661,651,649,666,670,670,666,639,654,635,616,651,644,670,651,656,639,622,655,677,663,660,642,672,643,671,658,614,647,604,586,593,589,582,571,569,568,575,589,584,600,597,584,554,580,587,582,575,569,584,577,572,575,581,578,581,587,598,572,592,583,570,565,590,563,583,571,576,571,587,593,602,587,582,620,676,684,724,641,673,696,649,681,630,680,669,723,680,633,699,699,742,682,694,721,680,718,709,643,778,705,698,742,672,705,701,725,769,683,733,718,615,725,725,706,715,699,678,708,709,707,717,720,714,682,700,694,714,708,707,719,703,694,702,686,700,688,683,735,692,709,710,714,704,708,713,699,717,685,706,713,706,688,702,707,685,714,724,677,713,619,640,661,667,660,638,622,649,646,651,658,636,651,646,676,635,606,662,620,607,636,646,659,624,661,658,617,649,644,651,640,607,606,623,649,631,688,580,567,580,600,577,582,585,576,595,581,594,599,580,573,602,583,559,584,575,580,585,570,583,570,593,597,588,591,590,590,595,583,560,575,587,584,590,590,559,665,684,629,660,669,665,632,700,601,649,622,661,710,654,717,678,672,680,649,613,702,631,643,658,591,662,639,644,665,639,665,654,702,647,659,633,682,643,708,670,677,638,720,674,678,716,651,656,651,638,644,625,617,688,664,646,645,648,646,623,641,670,622,653,670,635,636,649,649,655,619,660,650,637,637,616,624,660,647,643,661,628,640,640,626,635,647,583,583,588,566,580,581,598,571,587,604,608,566,586,590,586,600,592,586,572,571,593,599,579,586,584,593,574,586,596,585,565,584,589,581,597,580,612,584,592,581,596,593,591,582,624,518,512,528,528,527,526,525,530,528,523,531,528,521,512,529,535,545,527,531,529,541,532,550,524,530,544,525,529,521,542,540,530,521,536,537,538,503,526,512,523,534,528,551,531,538,520,542,541,531,528,525,547,515,546,536,544,533,552,534,528,533,532,536,532,522,527,534,529,540,535,519,519,536,526,536,547,527,537,535,535,540,559,552,559,556,552,559,555,537,550,555,548,543,552,541,559,542,549,537,566,549,542,550,552,549,559,541,547,549,546,535,544,538,545,538,543,550,538,548,545,543,540,551,543,540,680,639,662,608,672,669,613,655,624,609,662,609,618,681,635,665,683,629,703,679,649,644,697,690,652,622,683,636,646,611,650,675,617,635,635,622,639,669,581,630,634,632,630,666,573,633,576,578,591,582,588,570,586,591,587,582,602,567,587,606,592,591,594,604,571,601,577,608,579,590,603,602,595,594,580,564,575,602,598,576,574,582,589,571,575,600,587,574,577,591,619,589,646,617,701,614,636,639,611,614,622,611,591,573,610,637,632,610,581,597,667,663,603,608,584,644,631,600,632,602,602,620,661,660,614,607,643,631,565,576,577,561,556,558,575,578,571,578,592,562,556,568,589,595,585,565,553,576,568,568,587,552,566,570,569,564,594,571,544,591,577,556,575,580,582,562,586,579,594,593,557,562,550,574,573,549,562,539,551,560,577,564,550,560,566,548,569,545,535,553,558,534,543,549,541,578,535,552,554,579,555,553,547,569,559,558,573,564,534,545,558,546,552,532,582,566,541,557,546,568,565,564,560,549,556,572,576,571,551,547,570,568,551,555,580,549,568,568,555,555,556,564,577,572,583,566,564,570,568,586,580,564,561,553,549,578,569,556,557,572,549,572,556,566,561,572,563,689,700,708,676,704,672,691,693,710,712,674,723,696,689,707,720,675,682,687,675,708,693,688,679,704,705,688,700,696,694,695,716,684,686,701,706,687,694,699,684,688,685,698,640,643,658,660,677,658,663,665,671,655,670,664,672,668,669,645,649,672,705,665,673,663,657,670,663,662,681,667,678,658,639,667,679,666,659,681,662,580,593,618,608,570,558,580,583,610,571,617,603,600,562,617,575,585,638,578,621,632,596,562,587,575,600,610,597,582,602,583,608,600,599,601,581,605,568,574,597,587,592,605,585,599,652,683,668,681,676,668,694,666,654,687,683,693,698,673,678,684,700,690,678,681,662,678,682,682,697,691,707,693,663,684,701,691,691,687,706,670,675,683,690,653,655,665,674,658,652,657,643,668,668,671,667,660,660,662,672,657,664,673,673,667,657,679,662,655,670,650,654,679,676,664,667,678,669,647,657,652,643,662,662,662,668,644,670,671,667,694,643,638,646,634,625,661,648,644,626,619,621,609,655,655,622,652,617,626,634,663,621,621,627,634,653,607,615,646,643,669,638,642,632,653,624,648,657,667,610,650,631,632,661,660,631,649,656,651,627,629,621,612,694,740,717,715,704,733,716,730,745,765,711,743,765,701,733,737,695,718,718,733,734,752,731,745,740,698,736,755,742,726,733,671,713,759,722,761,719,728,734,727,775,719,704,695,687,712,696,732,688,722,728,699,725,747,735,696,762,738,707,740,712,737,694,734,699,705,680,751,705,707,748,698,701,748,749,744,691,697,738,711,752,718,702,723,659,644,646,652,635,632,657,663,677,641,646,654,658,652,646,658,644,656,642,627,651,684,649,653,648,630,638,628,677,655,641,652,664,635,678,670,657,621,645,640,688,625,662,634,682,654,604,665,647,603,633,632,610,598,613,638,618,648,631,630,663,638,600,683,602,635,665,625,624,654,618,602,634,607,657,638,624,667,578,672,614,604,654,638,610,625,613,657,615,611,677,669,674,648,683,676,666,673,661,682,673,667,668,665,674,674,650,658,676,653,662,666,669,650,661,672,677,667,678,671,667,670,694,683,655,667,667,663,663,685,657,641,572,576,550,581,597,591,589,556,569,573,582,601,571,570,554,572,579,593,580,580,586,548,566,578,580,570,559,583,574,572,552,567,588,569,566,558,588,592,583,618,567,569,567,565,546,574,574,575,556,595,564,570,565,577,583,550,566,587,559,572,574,575,569,571,568,561,563,560,560,580,571,580,574,585,572,571,577,588,595,571,557,556,568,573,570,565,558,561,572,568,553,570,563,559,558,559,556,557,557,551,560,565,577,561,566,560,558,559,559,561,556,564,559,558,575,562,542,576,557,561,557,551,567,564,540,573,573,556,569,575,563,587,577,577,581,567,563,578,570,571,576,565,558,583,565,580,560,569,576,574,556,581,573,569,574,573,566,571,591,574,580,569,585,557,574,576,561,604,542,547,556,538,550,540,559,532,557,534,563,557,558,544,559,562,539,553,554,550,550,553,556,554,546,544,554,547,554,547,552,558,533,571,550,550,542,550,553,544,543,553,530,727,762,721,740,704,733,712,702,729,750,730,745,753,743,699,716,779,718,740,723,727,738,736,744,708,727,732,756,727,749,740,721,723,707,717,724,709,734,748,716,684,755,707,704,698,706,708,703,735,710,714,690,707,690,691,734,692,708,716,717,691,691,674,692,686,684,701,702,741,708,683,700,699,719,730,707,703,700,697,694,698,703,667,711,712,715,662,694,697,696,709,693,710,671,670,693,736,665,716,711,694,685,660,700,665,695,672,661,709,686,696,676,711,659,649,715,671,698,687,666,680,734,694,683,658,745,580,595,602,587,598,630,586,603,617,599,616,576,598,623,617,591,594,571,595,597,603,608,589,621,592,575,574,644,592,575,613,590,592,608,585,629,602,603,601,566,579,537,569,597,641,585,629,602,618,617,615,636,543,539,604,605,611,554,573,567,628,597,626,654,561,585,603,563,599,616,572,532,588,620,591,624,592,613,585,597,572,588,535,634,565,545,553,556,559,542,543,544,558,563,569,552,531,570,546,552,571,567,531,541,555,536,567,553,570,544,552,544,548,555,548,560,556,540,542,540,551,556,546,551,516,542,567,565,547,537,544,557,556,518,567,542,572,558,553,539,559,553,560,553,550,541,542,550,559,569,560,539,544,548,558,554,563,550,556,551,569,559,542,547,543,565,572,575,557,519,553,543,540,558,545,537,553,548,571,548,539,554,561,549,561,552,544,534,551,551,569,546,549,546,552,554,544,552,564,547,562,548,547,551,544,538,535,548,550,551,547,550,563,527,694,717,705,749,798,775,723,724,771,775,718,716,695,761,768,770,745,771,746,749,735,786,782,727,701,749,767,748,784,722,664,717,703,772,706,750,728,743,785,715,734,750,692,732,766,761,718,643,715,739,752,748,712,746,731,730,699,734,719,731,722,726,723,737,728,730,726,717,711,721,677,715,724,698,688,712,726,701,723,707,726,722,734,723,718,709,742,735,716,719,689,677,683,690,711,704,693,684,705,712,727,684,724,681,708,669,705,688,691,718,670,703,672,672,719,718,710,705,707,731,707,713,708,708,685,676,718,707,682,652,642,659,647,639,661,673,648,653,614,646,634,635,681,646,666,638,631,639,651,643,636,612,640,610,633,629,652,638,645,636,646,657,636,628,641,676,639,655,655,637,671,641,686,587,601,580,593,599,600,610,594,595,601,595,595,591,604,597,590,577,620,591,605,592,593,606,606,599,608,601,598,594,597,603,598,603,616,610,607,599,589,603,604,595,610,599,594,594,596,587,603,562,550,553,559,571,559,558,553,559,565,546,555,546,562,558,562,548,544,556,564,555,556,550,558,563,551,561,564,558,549,548,564,550,571,554,558,556,562,553,547,547,575,552,565,560,576,618,708,692,672,676,677,698,682,668,653,682,672,679,710,660,690,655,678,676,672,666,695,693,664,669,697,675,697,679,666,703,639,630,680,638,652,659,682,659,657,613,617,616,622,611,616,625,629,607,621,614,638,600,607,626,624,617,618,631,617,615,600,625,616,623,626,611,625,616,618,618,616,614,616,621,605,625,603,625,598,611,638,657,677,612,664,640,628,605,645,577,555,617,589,640,574,586,570,568,577,594,591,672,599,614,608,590,616,615,550,643,608,643,591,607,623,592,622,620,572,601,614,609,624,714,707,705,702,699,714,703,707,710,690,710,696,679,722,705,710,681,694,707,694,709,721,716,694,693,699,686,699,676,707,714,713,692,692,695,717,722,695,708,692,699,746,629,639,620,593,643,656,639,640,589,592,663,629,652,647,597,668,672,610,645,681,631,635,659,600,614,700,622,639,611,631,600,565,669,611,650,668,576,624,618,625,654,645,629,654,628,633,596,658,601,589,607,620,600,627,594,634,591,623,586,612,622,611,595,604,615,624,608,628,596,596,615,607,586,606,615,613,611,629,600,602,620,626,596,605,601,596,596,613,591,601,601,577,561,580,591,581,596,579,582,580,567,584,581,582,587,593,584,572,583,564,578,589,577,577,573,584,580,573,588,579,595,580,576,572,583,577,581,586,579,581,580,596,561,548,549,552,560,573,563,548,557,544,548,550,543,539,557,549,551,569,552,557,548,549,552,553,546,542,552,563,539,553,537,561,558,554,556,549,557,543,550,555,587,581,586,601,612,596,586,602,610,604,591,594,591,576,605,592,584,582,598,584,594,583,605,582,595,576,583,599,584,581,593,587,603,579,589,604,608,605,587,585,592,601,571,564,710,683,677,694,710,702,707,682,704,692,664,706,664,680,711,691,687,699,687,691,686,696,695,664,677,694,694,687,679,681,691,716,666,674,687,692,697,728,685,675,668,666,706,694,697,632,618,620,591,612,627,611,626,603,605,604,592,623,580,615,601,573,607,580,614,590,605,625,638,598,591,615,588,598,596,625,603,585,617,628,605,671,685,586,659,651,702,685,668,703,631,654,612,660,656,634,619,623,679,645,623,621,661,660,634,648,605,628,670,701,620,673,654,599,655,679,623,655,611,605,658,667,651,671,646,644,662,647,684,651,659,645,648,674,664,649,655,661,646,668,666,653,678,672,662,647,682,655,667,664,653,659,669,659,672,660,636,667,664,652,659,657,663,679,628,620,618,602,627,630,623,620,646,632,620,627,639,645,625,632,625,632,637,631,634,622,629,654,623,616,612,625,631,636,597,619,633,602,616,607,613,634,637,651,640,617,657,628,581,589,589,583,576,589,579,610,595,585,593,574,602,590,584,582,571,598,587,592,584,567,580,581,588,572,592,614,576,598,601,595,582,564,596,591,584,610,609,622,589,598,595,596,584,617,618,604,605,610,598,611,631,616,615,621,607,601,614,612,591,603,624,595,603,621,598,619,608,633,629,629,612,603,632,629,617,604,602,609,626,663,664,666,636,675,677,650,658,654,699,651,658,668,638,683,642,665,659,664,674,638,690,642,671,664,667,691,658,642,679,647,663,664,652,643,633,679,664,660,679,646,646,662,647,716,676,648,638,669,661,658,638,655,670,667,656,669,662,672,654,661,655,662,661,659,650,662,669,663,672,646,665,671,641,660,671,673,653,640,646,652,662,664,653,698,677,710,667,660,707,698,667,688,683,659,696,682,682,703,702,726,663,668,725,702,637,692,680,679,707,683,653,678,643,672,692,704,692,705,695,697,682,716,671,690,699,702,677,652,628,640,629,640,618,617,613,635,613,595,616,611,645,608,619,607,616,600,649,616,601,650,615,612,636,651,613,613,622,634,597,621,624,625,623,640,628,639,585,568,568,577,574,582,568,573,568,575,579,598,574,585,584,582,579,585,564,574,584,584,589,595,571,579,580,576,586,590,562,565,583,563,580,589,575,571,574,577,581,555,554,564,538,559,547,548,555,560,552,542,548,557,543,548,555,553,552,540,561,549,563,557,555,541,565,570,552,550,566,562,567,554,551,560,551,553,554,558,548,555,549,568,558,558,563,567,566,559,556,565,547,560,554,564,570,562,556,574,578,561,566,576,554,574,582,569,568,560,559,584,570,556,556,556,565,554,551,572,563,558,550,564,560,548,567,533,593,587,602,599,591,585,593,588,601,598,586,601,588,610,588,598,596,586,578,605,596,608,599,605,594,603,584,601,591,607,587,595,593,599,599,588,581,591,584,594,592,588,585,592,600,601,603,596,575,563,576,580,583,570,569,576,568,577,572,573,571,572,557,567,577,557,567,579,557,564,558,581,567,560,559,551,570,571,558,573,563,564,555,575,581,573,573,570,571,566,559,637,641,644,615,632,642,593,588,651,641,662,634,611,635,660,652,675,672,643,646,673,656,648,630,623,670,643,656,633,612,667,661,638,626,617,640,622,627,625,643,689,645,678,667,661,564,692,680,677,677,673,678,651,682,684,678,670,676,685,696,668,695,664,685,685,697,673,686,682,691,673,667,659,659,695,696,702,691,674,677,671,689,682,715,775,794,783,725,746,780,731,776,765,766,726,738,716,778,789,710,716,746,739,746,732,727,737,737,754,759,780,745,750,726,763,778,756,708,765,697,762,736,771,748,732,703,696,712,699,753,696,737,728,720,717,702,701,738,721,713,702,727,701,707,747,724,693,724,711,744,719,701,708,711,743,718,725,716,689,749,625,634,639,638,645,642,650,616,635,648,656,653,616,653,661,643,656,667,624,647,660,643,634,661,619,617,619,633,651,624,663,654,652,668,626,632,646,667,660,627,736,734,735,735,706,724,667,754,762,735,693,724,731,723,694,755,717,735,692,738,731,665,737,673,753,749,761,687,679,722,715,712,682,759,705,682,745,752,676,736,731,751,710,680,738,765,611,695,708,716,722,705,703,711,711,693,705,708,703,680,700,691,693,716,706,722,715,694,726,712,715,707,697,682,700,721,717,733,693,719,689,691,723,679,711,675,761,656,670,649,663,666,674,660,683,661,660,690,687,680,672,665,670,654,652,670,663,694,678,643,661,647,688,652,636,679,682,643,693,661,674,644,649,641,663,699,658,688,660,645,658,641,643,651,655,642,667,655,638,639,647,640,634,653,651,655,664,652,636,631,656,646,643,652,645,656,643,645,650,665,644,632,640,621,663,647,645,654,634,636,645,632,646,644,648,645,644,648,654,642,635,611,631,612,616,601,608,609,607,623,613,625,614,594,621,628,615,606,592,628,615,606,613,616,616,595,604,612,615,618,600,610,615,605,636,598,633,590,618,597,623,606,631,649,583,586,583,586,575,575,563,573,601,581,596,559,579,588,583,582,577,559,582,573,581,589,561,566,579,575,571,591,566,583,584,576,577,599,579,576,583,582,580,567,556,573,565,588,589,585,600,555,549,552,551,538,562,555,546,554,559,533,546,547,543,552,550,540,538,541,551,543,554,548,552,543,522,536,552,538,524,539,551,550,546,554,545,551,535,560,545,549,574,603,602,613,610,649,595,618,620,619,638,613,649,612,633,609,604,603,643,626,620,600,637,610,594,644,660,620,624,630,603,670,624,585,566,600,685,623,605,540,636,566,562,600,598,593,601,583,602,595,597,574,590,592,599,601,582,596,588,582,573,585,582,602,584,590,590,592,574,584,601,583,599,587,580,562,582,592,594,603,583,582,592,601,594,582,590,584,558,636,675,669,634,624,593,673,567,600,698,683,607,595,618,660,627,640,637,615,572,622,626,648,652,628,636,634,696,642,632,563,680,623,689,687,587,583,679,593,682,579,596,577,594,585,582,590,582,583,572,571,583,598,591,572,588,586,596,575,588,568,582,592,586,586,595,583,579,567,587,595,605,589,573,575,562,594,579,571,598,575,564,580,581,583,608,678,674,638,615,725,648,686,678,670,649,648,680,743,718,634,696,701,650,642,660,698,693,672,657,744,655,712,700,676,708,648,674,635,643,685,669,704,702,651,552,675,665,669,683,668,693,664,661,677,662,669,659,683,677,675,686,671,652,672,640,674,654,643,674,689,655,664,675,680,679,684,660,669,662,666,647,681,673,682,678,678,690,677,665,669,636,688,695,721,676,644,623,675,693,715,656,702,676,665,667,682,700,668,658,669,676,702,666,665,684,699,701,711,649,668,670,675,654,654,634,655,651,703,661,655,649,674,653,675,672,709,626,613,620,609,606,612,647,628,611,614,605,598,593,616,605,601,623,604,631,625,626,636,617,623,593,627,628,629,628,625,612,613,636,614,617,636,608,614,608,620,599,662,582,570,586,574,578,574,565,571,571,585,573,575,583,569,567,589,583,583,568,590,587,583,585,573,572,582,577,575,569,579,587,590,574,570,585,569,566,566,570,580,573,569,623,654,648,661,644,624,650,657,650,655,595,655,616,609,661,625,608,652,635,649,667,651,698,657,637,630,667,655,617,660,617,647,640,650,638,618,678,684,686,681,670,669,668,687,675,672,673,677,667,684,675,670,650,667,658,660,673,670,674,681,678,660,700,678,675,688,685,666,673,678,702,655,682,674,661,680,681,672,686,728,691,688,739,726,723,729,687,711,712,701,710,727,748,681,723,733,712,726,717,716,688,742,705,716,717,692,707,746,739,699,716,677,727,740,762,709,722,674,719,744,737,725,665,634,646,674,664,673,675,654,633,626,689,631,643,648,657,663,652,642,640,653,667,640,668,668,659,645,681,643,633,632,658,647,662,642,635,675,646,608,666,652,669,625,626,595,602,611,606,612,590,612,607,589,602,617,616,605,600,606,598,603,609,594,618,606,617,613,624,607,618,615,608,606,609,605,597,603,630,609,584,598,576,570,576,538,578,565,555,577,578,564,554,556,561,553,566,558,568,567,576,556,555,552,563,559,565,558,574,558,575,565,567,570,572,565,567,554,577,561,554,570,558,563,565,562,553,612,614,621,622,601,593,612,610,602,600,619,614,613,612,630,608,604,613,607,618,603,607,626,606,607,615,599,596,594,595,613,625,611,624,620,610,618,618,598,617,608,635,601,620,634,649,641,629,661,645,637,658,624,651,640,635,647,660,652,629,630,640,632,651,628,647,655,642,639,654,658,638,635,633,629,625,647,680,649,660,640,640,631,667,653,661,655,660,634,605,736,760,786,712,750,751,701,726,770,732,733,743,759,741,787,727,750,739,731,726,735,764,770,770,750,670,765,737,739,778,748,688,732,712,743,711,719,806,714,718,718,709,722,713,731,679,715,720,720,723,701,719,704,736,726,729,717,697,700,706,715,708,735,668,721,711,713,737,696,736,729,693,715,694,681,692,709,702,754,747,729,717,648,644,652,631,682,636,642,650,617,639,655,652,640,661,634,655,651,653,660,619,631,631,654,661,614,659,646,639,641,639,635,630,632,635,635,626,661,651,656,656,617,564,682,642,671,595,648,676,609,674,637,596,610,601,585,596,648,648,645,600,620,598,692,687,643,595,627,640,531,647,628,631,651,625,585,669,650,599,618,632,604,652,559,600,574,595,578,593,578,554,576,584,570,580,588,577,571,558,560,578,579,596,564,587,584,588,590,579,592,578,572,564,601,582,583,561,556,581,599,550,559,574,562,586,588,565,609,617,646,566,651,639,631,598,641,630,688,592,629,650,577,624,594,680,644,660,601,654,609,647,616,659,625,637,615,603,628,671,584,643,666,608,619,603,639,529,584,593,578,559,570,605,573,578,587,577,567,571,605,563,572,569,556,574,570,577,578,600,570,571,587,584,590,598,592,571,599,564,562,579,563,577,585,578,576,550,586,542,579,548,574,563,556,581,579,602,562,568,567,554,564,567,557,592,564,578,564,565,563,571,566,590,575,577,581,569,571,554,588,538,595,581,586,563,563,595,586,573,560,566,561,530,669,666,681,675,667,666,651,662,652,659,662,646,687,663,654,664,656,683,655,655,647,684,658,663,663,680,665,648,656,661,659,662,681,646,668,643,671,662,762,752,715,774,773,747,764,761,761,798,764,786,735,771,715,732,761,722,755,730,742,751,759,790,757,741,740,737,750,754,787,763,715,755,755,742,716,739,749,759,773,721,748,735,746,749,765,688,707,743,708,687,734,712,664,712,792,681,707,730,722,718,723,698,727,681,736,730,736,701,751,730,669,712,711,711,725,718,703,737,732,735,699,723,724,671,686,643,653,691,676,689,629,659,655,672,688,672,683,624,644,656,671,671,656,640,654,661,692,663,671,670,669,677,681,649,679,650,671,684,650,674,663,665,649,668,643,679,616,595,593,600,596,605,617,607,585,591,601,611,592,586,596,598,619,597,616,613,593,600,605,581,603,595,608,598,596,592,619,579,585,583,609,592,603,614,597,615,593,581,584,587,579,587,584,574,587,589,582,574,583,594,588,591,560,566,574,588,581,586,585,585,555,565,584,587,578,591,567,577,597,567,585,582,573,591,586,579,574,587,581,571,583,562,572,608,609,637,610,629,619,646,650,626,646,620,612,612,587,619,653,629,603,600,644,616,600,635,631,620,627,616,632,637,586,616,603,602,636,610,591,628,589,624,575,786,791,792,789,781,721,745,794,806,789,779,796,767,758,757,800,803,800,756,773,771,789,747,781,791,769,762,730,754,762,810,774,781,776,782,790,782,786,805,750,788,771,791,783,764,775,759,786,840,712,723,730,717,731,755,701,724,732,704,739,734,717,735,745,734,723,737,706,772,719,738,729,737,720,712,727,694,753,688,717,715,720,734,727,722,710,709,757,688,718,695,674,681,670,681,706,676,686,676,706,660,651,675,682,659,667,672,697,675,670,665,669,664,672,670,681,663,652,675,689,683,658,703,706,681,672,667,703,670,674,695,684,670,639,660,636,636,643,659,672,644,648,660,651,647,643,648,657,650,655,642,640,652,660,642,655,623,653,657,664,637,647,647,653,666,668,643,647,652,657,654,680,729,728,710,779,748,742,783,790,729,736,724,762,724,751,766,716,721,736,764,732,727,730,725,716,740,773,741,747,753,715,736,724,768,750,741,774,716,734,711,647,683,677,657,703,635,667,661,686,674,691,665,670,673,668,696,676,687,656,650,693,692,638,673,642,679,667,647,660,628,655,637,667,694,659,676,598,673,681,684,655,654,639,531,528,557,526,537,547,560,529,558,566,582,526,554,517,564,534,559,571,556,546,563,572,583,527,550,544,568,531,558,574,585,536,545,529,575,525,534,577,563,537,524,547,532,523,525,535,519,530,518,526,529,539,517,537,532,531,512,537,531,526,520,534,535,528,528,523,517,518,513,534,530,530,528,523,535,531,523,536,524,524,525,528,636,636,667,638,647,648,668,640,623,650,651,627,634,632,656,635,668,647,652,638,632,646,655,650,624,643,631,650,656,630,643,648,642,638,656,638,641,638,645,617,644,636,613,570,563,554,568,574,545,564,565,547,562,574,557,554,587,582,555,557,562,574,554,542,559,558,568,565,574,542,575,555,559,542,564,575,592,545,563,569,583,540,580,565,552,552,560,552,572,553,566,600,537,563,540,563,569,525,572,562,553,550,568,569,562,562,549,540,550,542,582,571,551,562,552,543,558,536,575,545,551,559,571,533,561,556,579,539,563,558,564,564,570,555,560,560,564,553,543,536,555,559,565,556,549,557,558,551,562,553,552,561,540,569,575,573,557,554,555,561,547,555,566,549,550,567,565,569,564,550,562,553,562,559,577,593,578,574,599,588,589,577,588,598,598,578,613,596,600,581,582,575,589,587,561,605,589,589,599,582,610,592,609,597,587,585,590,586,600,568,587,583,587,588,583,603,557,594,599,614,616,608,585,603,604,598,618,603,593,611,604,595,604,592,624,610,636,595,589,597,581,591,593,616,618,584,597,610,604,576,628,604,611,579,624,613,623,598,582,560,557,550,596,581,540,572,555,566,562,571,567,569,568,565,554,570,578,569,568,570,554,591,549,577,548,568,545,580,567,562,566,576,558,546,582,581,569,597,614,602,578,569,591,592,592,584,588,585,609,594,592,621,581,577,590,578,584,583,576,606,590,603,577,614,581,600,593,598,585,593,597,579,596,605,615,600,607,605,579,600,602,596,570,598,601,583,586,593,595,600,614,621,631,599,624,625,608,632,628,623,640,618,609,613,607,630,633,647,615,609,631,590,632,606,634,627,599,622,627,629,599,622,639,625,628,662,738,731,728,669,697,710,681,698,706,721,696,725,713,705,649,686,733,687,714,686,722,738,714,670,699,699,700,712,704,708,693,682,695,710,711,697,704,738,721,675,741,680,667,681,687,722,753,634,624,619,602,631,623,609,615,586,597,602,593,609,617,623,598,604,637,606,628,595,625,648,606,599,632,617,625,626,599,606,618,626,595,605,610,643,610,635,617,634,613,616,615,633,567,598,597,590,556,590,594,593,594,595,589,582,573,587,564,574,583,593,537,599,606,614,589,607,580,580,575,593,578,605,596,587,584,559,594,602,575,579,577,561,602,525,659,663,664,666,671,682,678,660,666,637,659,674,672,663,682,671,684,679,664,677,665,674,665,659,671,671,646,654,669,682,661,645,654,663,656,695,669,674,677,665,662,663,665,658,659,648,780,716,736,720,745,732,736,744,789,758,779,725,808,712,775,741,784,747,754,680,721,741,750,762,729,746,717,740,731,731,754,723,757,769,791,731,729,734,720,773,732,698,766,701,747,709,719,736,717,702,677,724,732,752,727,703,757,701,704,696,734,684,737,708,728,716,693,715,721,708,730,710,732,738,757,678,697,724,733,716,742,675,730,716,711,757,702,722,706,692,674,641,671,634,653,631,656,633,664,661,635,659,634,636,660,668,644,631,674,667,672,687,672,672,623,622,633,646,641,635,652,630,649,625,645,646,657,662,627,608,577,568,567,570,551,567,575,569,585,594,566,567,574,574,593,568,568,567,560,567,566,574,573,572,575,578,577,573,579,556,553,567,573,562,554,559,573,582,580,576,568,560,564,568,559,637,666,684,660,694,692,655,686,712,666,652,709,631,682,671,672,635,682,645,689,657,688,658,620,653,597,674,663,655,650,648,688,670,714,698,679,684,711,695,668,693,612,705,705,707,685,714,686,722,702,700,687,717,701,708,703,730,700,712,704,691,716,701,693,689,725,685,723,687,717,706,700,711,704,725,725,700,702,668,703,697,691,682,698,694,724,707,729,684,692,713,708,704,683,690,694,699,705,707,708,665,680,719,711,709,686,716,714,688,691,690,724,708,696,692,722,706,699,702,704,693,704,662,692,701,740,693,682,671,746,680,679,687,678,691,675,635,718,691,672,697,686,676,643,723,675,690,666,685,679,707,700,617,662,703,682,708,678,762,624,679,706,661,696,706,706,682,669,661,642,650,648,651,663,688,637,659,650,649,648,629,661,648,650,659,668,658,648,663,670,639,659,649,644,658,654,648,679,647,651,653,676,653,648,656,669,628,641,689,643,669,652,665,659,674,679,660,673,662,647,623,628,688,691,653,701,655,673,655,671,684,658,705,671,692,695,680,677,692,689,691,657,700,671,666,670,646,731,612,600,607,592,619,573,617,597,614,632,607,613,604,609,618,598,600,600,618,614,612,608,617,596,592,595,628,616,618,630,613,627,600,610,604,604,595,642,601,611,596,598,597,647,653,579,596,616,618,650,652,561,619,631,627,582,615,590,585,595,644,626,614,595,633,583,624,605,579,603,556,642,597,572,566,640,640,606,633,614,544,548,589,588,632,582,582,623,646,645,643,662,685,641,669,676,659,647,642,697,634,663,640,672,663,678,679,677,662,650,667,676,642,634,661,691,672,650,650,668,694,674,642,683,695,661,639,695,620,555,568,585,620,577,599,579,573,577,587,600,574,592,558,570,589,574,560,594,558,604,563,582,584,570,594,603,576,602,596,594,588,564,577,592,566,592,598,597,593,561,599,636,586,588,553,648,571,579,565,587,586,582,571,562,582,572,562,587,563,588,578,575,588,610,577,579,589,560,553,572,570,558,580,586,563,557,575,575,578,578,561,584,554,579,566,580,571,577,585,573,616,594,620,626,592,616,589,599,610,603,603,582,610,587,588,593,627,603,594,611,622,611,586,593,616,594,615,607,605,641,588,606,613,617,594,597,618,624,606,599,590,626,589,604,609,589,568,578,563,568,576,590,558,581,576,552,580,586,566,565,553,559,567,584,582,572,583,591,571,555,583,562,578,575,574,568,562,551,568,592,548,575,588,564,567,574,588,573,571,556,567,578,607,682,655,688,655,661,659,660,678,656,687,660,670,663,683,687,635,660,666,660,689,668,663,661,664,651,662,671,661,664,670,673,674,661,641,664,668,676,631,674,678,677,672,669,673,660,656,702,643,649,664,677,627,655,682,637,682,654,655,664,653,642,679,672,693,673,656,686,667,672,691,655,651,659,673,678,660,667,632,643,648,662,651,662,638,721,710,693,715,694,732,679,687,667,675,709,699,699,693,688,686,696,703,706,681,691,705,699,712,684,707,711,687,701,705,690,712,698,679,686,729,715,689,712,697,700,716,662,706,732,707,670,681,709,660,666,708,703,703,698,775,678,710,723,759,671,719,659,686,718,704,725,677,744,669,700,715,709,679,743,701,759,666,682,707,710,688,719,714,691,696,701,668,654,790,739,705,711,679,735,737,705,748,706,723,722,702,715,735,698,727,728,736,704,719,738,742,718,696,727,728,701,702,746,711,735,724,718,669,715,754,704,732,734,748,708,676,724,707,730,725,705,693,737,746,717,725,702,741,692,727,716,735,710,732,727,759,748,695,730,720,709,730,700,699,732,696,739,743,743,708,723,672,688,661,698,707,732,729,702,746,749,722,709,691,691,704,678,695,672,685,659,656,697,672,651,657,657,667,657,691,678,685,686,656,670,666,685,693,663,678,674,666,668,689,663,678,674,664,658,654,677,677,661,671,686,689,684,658,680,650,636,654,636,656,636,656,650,662,650,668,657,645,663,644,659,644,629,646,659,655,633,635,648,655,633,642,639,647,644,631,640,635,656,631,640,636,640,632,648,637,617,582,595,595,616,605,594,596,592,594,595,581,599,600,586,591,595,605,588,585,590,591,565,590,585,601,582,613,602,607,575,586,590,601,599,577,587,589,591,668,621,687,644,696,653,730,660,669,686,655,673,676,665,649,677,625,648,685,660,682,630,671,677,684,725,661,624,684,699,668,707,694,662,637,645,695,668,631,704,600,637,608,602,599,604,592,609,643,628,604,620,598,607,614,633,615,625,624,613,603,606,639,626,629,595,611,611,647,599,606,625,599,620,619,615,608,635,604,637,615,612,628,636,622,590,649,609,569,638,672,621,618,650,624,676,642,641,679,670,700,743,685,740,704,645,658,642,643,686,712,643,633,642,647,633,659,643,703,636,684,708,731,681,688,582,592,579,593,610,650,641,691,669,639,697,730,737,717,711,698,733,719,724,702,761,693,718,714,716,712,726,706,727,730,715,723,712,732,733,683,696,717,715,715,722,696,702,722,731,695,670,734,732,700,705,720,706,702,702,691,707,699,666,669,684,697,703,719,683,686,691,719,720,711,711,690,698,696,688,719,735,715,695,709,727,724,717,690,698,667,705,656,682,726,720,678,672,693,683,703,652,636,611,631,640,610,634,659,623,647,632,669,639,659,600,598,648,626,624,625,649,659,610,640,633,634,684,630,631,618,640,644,679,647,638,626,617,624,668,636,635,626,639,669,684,634,658,557,650,522,591,563,689,643,612,575,625,622,637,605,624,630,659,583,635,605,633,612,643,680,612,643,645,611,640,671,638,709,592,649,610,585,649,602,624,656,602,628,661,618,629,700,693,697,711,685,681,697,684,685,679,690,700,697,657,696,706,709,688,707,730,711,700,717,706,736,693,717,696,685,672,721,711,718,682,724,704,673,689,718,688,726,687,681,702,678,656,668,657,676,660,655,653,696,671,677,671,636,692,669,661,673,675,680,687,646,707,660,654,663,683,664,688,689,657,675,681,655,695,673,688,683,664,668,666,650,667,663,670,650,636,638,657,639,659,650,657,644,645,644,633,638,663,654,653,646,673,637,647,655,637,665,647,661,653,632,624,645,644,646,662,636,647,649,630,647,667,635,653,659,658,638,748,737,710,772,759,745,753,765,764,740,754,742,755,767,756,764,762,771,744,718,715,727,758,722,727,760,707,739,739,741,792,721,728,704,765,749,695,736,737,672,659,677,691,673,627,661,676,710,687,665,670,671,680,678,652,649,678,652,692,679,658,703,666,697,643,658,680,666,661,645,691,664,699,648,663,669,692,711,679,692,676,667,639,745,622,611,635,673,608,668,609,639,660,622,589,678,683,636,627,628,636,656,673,677,642,643,667,673,645,627,634,640,670,686,653,660,637,666,651,612,604,645,616,635,650,650,667,658,668,636,597,541,545,545,565,557,546,565,563,565,551,556,557,558,564,555,556,564,562,567,558,538,550,553,543,541,553,558,547,553,554,536,555,546,558,549,549,559,563,571,551,556,583,568,581,579,565,553,572,562,575,581,573,541,572,576,573,564,550,576,573,569,539,551,560,574,578,561,546,572,565,571,578,586,586,569,560,557,557,561,538,610,627,601,608,613,591,612,595,580,611,608,612,597,621,615,617,615,608,608,624,605,613,601,595,616,607,621,603,618,620,602,613,616,599,620,610,616,612,598,622,599,606,609,647,616,604,629,622,634,605,625,616,622,602,600,642,609,625,625,656,638,629,614,635,622,613,640,629,604,610,609,611,602,625,628,608,636,612,614,608,645,636,634,637,623,625,626,635,615,566,574,589,573,574,560,577,576,592,569,592,581,581,571,579,566,604,567,594,586,591,557,571,593,569,565,581,591,567,576,565,586,558,578,571,537,538,547,552,535,543,535,548,530,538,555,526,537,536,532,550,537,534,543,546,546,539,539,544,535,548,534,559,550,541,536,538,535,549,535,539,550,533,529,525,560,521,524,532,519,535,515,518,541,516,512,542,528,519,530,528,526,513,528,516,514,523,518,528,529,526,541,520,513,526,527,522,525,525,520,528,518,522,540,620,596,605,597,660,640,619,627,619,624,617,579,602,672,616,611,621,621,637,641,598,610,620,615,612,587,608,622,633,632,582,610,593,630,633,576,653,606,609,570,650,603,634,623,660,663,604,589,612,604,603,599,605,605,610,588,601,600,584,611,598,602,601,596,609,595,603,601,610,609,600,599,601,594,618,609,603,601,608,610,592,621,594,610,593,602,600,600,623,580,577,585,590,580,588,591,582,565,593,561,578,577,586,579,575,589,583,576,575,573,577,574,583,596,577,593,579,581,559,581,574,572,585,583,577,577,574,570,567,576,583,549,551,553,569,555,563,556,546,554,561,572,546,555,555,549,553,535,551,564,560,556,552,535,581,559,553,554,553,558,551,563,552,558,556,552,557,556,557,548,548,522,586,604,572,579,591,587,549,581,584,568,581,587,579,587,577,575,560,593,586,574,576,582,590,601,600,583,591,579,576,562,587,575,581,590,585,581,584,568,596,570,584,570,593,589,607,555,556,550,541,560,549,549,541,554,544,549,540,537,566,547,548,541,557,557,543,548,551,554,554,553,550,546,553,551,559,551,559,556,563,538,556,544,556,549,548,553,560,554,563,527,577,600,617,593,584,598,605,602,590,596,628,585,593,605,597,615,612,603,613,616,592,601,613,595,564,592,592,586,615,604,595,588,600,578,598,589,600,615,595,596,595,607,600,610,598,565,597,623,618,605,609,629,596,643,626,620,620,592,633,617,636,611,605,610,609,629,618,606,610,589,604,613,611,618,627,585,602,616,621,605,622,595,610,597,586,615,613,585,596,612,594,596,591,620,607,616,610,609,604,589,629,604,609,614,605,609,598,619,599,625,618,602,597,599,589,615,585,603,611,595,610,616,573,587,601,604,597,583,596,580,618,577,582,571,573,564,569,577,570,576,572,574,590,581,590,574,577,571,572,588,600,588,582,558,579,585,562,583,589,571,579,593,565,576,578,574,576,558,579,580,583,590,567,573,583,575,579,569,586,714,664,672,680,665,682,675,661,672,666,679,659,666,646,660,653,655,661,661,702,669,693,686,671,693,666,639,698,662,677,713,693,661,647,641,657,673,677,670,680,662,670,685,659,684,719,660,662,681,679,667,654,652,710,706,653,644,670,647,676,688,660,683,636,699,681,685,652,688,707,669,652,628,658,709,685,693,675,659,678,684,660,671,677,624,685,659,714,618,609,613,619,636,614,617,608,609,626,620,623,648,608,620,621,624,633,607,623,608,653,623,630,588,633,631,598,613,611,607,626,631,630,603,613,642,615,610,624,554,578,579,569,594,574,592,577,586,549,564,598,583,576,577,579,532,580,606,567,593,553,579,575,561,560,592,569,585,575,553,557,572,570,571,567,598,587,610,718,733,733,715,700,738,698,759,733,710,734,705,695,737,726,711,705,730,701,747,727,713,760,728,747,743,725,704,724,720,733,708,706,746,748,708,665,733,711,713,696,736,752,645,621,621,623,644,617,615,612,637,610,601,643,622,625,627,655,638,625,635,615,639,597,617,612,629,653,627,601,634,632,632,635,632,632,645,602,630,630,632,644,609,635,631,646,604,688,596,570,571,589,579,589,560,571,587,602,592,600,591,596,572,561,588,578,586,557,562,579,576,595,573,553,573,585,581,590,617,550,581,591,545,565,566,567,562,602,553,558,549,568,567,570,557,560,554,561,569,561,560,565,560,568,565,558,558,550,562,558,541,552,567,559,573,559,559,555,552,555,550,559,556,541,567,558,571,563,554,554,559,535,563,550,567,571,567,583,555,547,571,574,570,588,559,581,557,580,567,566,567,588,575,574,548,574,573,580,575,573,568,547,579,553,559,550,554,570,547,559,581,569,550,562,581,565,539,555,552,544,545,549,544,549,557,553,549,564,538,540,547,543,546,533,550,549,540,547,554,555,542,555,547,550,543,544,546,537,547,537,534,548,551,545,546,555,551,553,543,559,551,541,546,546,535,545,533,531,553,539,528,529,531,537,535,527,532,545,541,537,537,530,544,524,527,543,540,539,536,527,536,525,541,542,525,539,543,542,545,540,535,537,526,535,526,533,525,536,539,543,544,520,530,510,529,524,522,529,527,518,532,528,516,518,526,544,516,519,522,524,533,530,530,528,523,520,523,527,530,525,526,524,531,525,520,532,506,519,524,556,635,603,606,616,641,674,606,627,621,593,617,606,595,585,567,614,645,620,600,608,649,617,628,572,628,620,652,622,634,589,637,656,619,597,611,649,611,631,589,668,643,620,640,603,552,785,740,766,770,738,778,795,766,725,744,773,789,754,749,731,722,730,777,769,779,752,754,782,721,775,754,747,762,767,724,792,780,777,734,739,788,768,765,765,760,750,778,784,733,670,685,694,703,669,708,671,669,688,701,666,665,685,692,665,672,721,676,679,669,663,668,689,745,719,670,695,687,696,670,682,694,715,681,673,676,683,672,700,681,711,685,704,701,618,627,638,649,622,638,627,614,638,615,644,598,606,672,620,647,600,602,642,648,628,629,589,617,638,616,610,631,638,588,608,634,622,610,625,639,626,622,619,606,625,626,601,633,587,565,570,567,558,551,554,582,556,552,567,572,576,573,564,546,579,570,556,558,585,549,565,568,563,575,563,585,563,564,570,563,563,566,571,574,561,553,580,563,553,570,561,563,565,546,588,655,676,661,679,664,681,682,683,676,647,626,651,659,659,665,665,678,679,671,656,682,673,691,689,675,680,667,706,680,686,673,660,633,634,672,662,705,706,685,706,711,682,643,702,646,695,685,665,701,577,556,563,585,609,573,582,571,613,596,573,605,596,585,582,590,588,577,594,584,598,577,575,581,622,580,589,581,569,584,605,569,596,571,569,558,618,627,561,547,556,558,552,548,567,578,573,561,551,552,569,579,573,557,561,584,573,565,571,564,560,568,568,556,557,570,554,574,576,561,544,574,561,561,572,560,560,545,574,559,616,635,622,642,629,623,620,623,646,603,621,633,618,635,610,617,632,610,628,620,655,645,610,607,603,609,610,629,617,600,633,614,624,643,633,644,595,635,616,615,648,619,717,720,678,661,677,661,675,679,673,667,695,674,699,678,675,665,677,690,670,647,666,703,681,677,702,716,666,665,687,667,658,663,697,713,680,727,660,670,625,689,718,660,697,690,637,612,616,588,613,592,626,623,624,612,618,627,599,620,640,610,611,616,635,628,628,618,622,636,606,635,649,618,636,663,619,616,614,626,633,653,630,616,634,633,621,609,627,618,623,634,570,581,588,589,579,573,573,586,576,585,581,565,587,581,580,573,572,573,598,580,573,580,575,587,579,577,571,586,580,574,583,587,563,574,586,565,575,584,572,570,576,549,646,649,646,662,631,649,661,635,642,601,640,658,682,662,659,614,642,609,631,651,677,635,643,633,655,627,663,663,630,666,621,685,632,691,665,655,643,621,634,647,656,600,616,630,674,645,650,669,685,684,692,684,677,681,692,691,669,682,684,675,667,684,657,700,681,688,662,692,687,675,667,692,678,688,677,706,659,682,686,677,667,677,678,685,692,677,701,677,697,694,674,671,680,694,671,695,671,709,672,685,669,706,686,697,672,651,682,669,687,680,694,685,681,678,687,704,683,673,682,689,685,681,695,683,693,693,687,674,695,682,684,683,693,697,694,694,683,680,698,698,639,659,644,665,688,663,651,684,649,662,656,676,666,664,655,664,640,633,666,678,665,649,666,668,662,671,671,675,657,670,660,646,670,676,656,677,652,666,665,666,673,669,758,761,748,720,714,768,753,721,708,733,736,753,757,754,746,711,723,734,730,759,705,756,741,750,723,738,750,729,723,734,781,746,732,723,763,737,705,767,724,698,742,754,817,738,714,737,729,745,798,726,741,681,736,754,788,758,740,732,743,721,744,751,695,722,712,768,733,764,771,697,743,699,751,735,726,727,738,716,739,791,700,753,717,747,705,713,730,757,739,780,745,744,717,729,761,718,757,729,749,755,746,749,728,728,725,757,740,741,721,746,746,726,744,729,730,732,719,712,757,748,734,743,720,747,739,731,740,723,753,711,722,707,748,738,715,738,719,718,737,695,683,734,713,744,708,729,668,730,695,716,715,764,705,696,703,723,676,703,698,714,696,748,699,699,740,703,716,708,731,731,715,720,708,745,648,679,659,667,684,669,686,647,649,694,650,646,674,693,689,671,679,690,674,680,690,656,693,671,683,675,659,681,660,711,678,669,667,649,691,686,683,703,645,647,651,645,634,655,633,637,640,653,653,644,653,672,647,634,649,653,657,648,651,640,658,651,639,640,669,668,659,644,672,633,644,663,652,646,657,638,640,660,654,652,639,647,638,652,656,649,670,682,737,748,674,696,667,727,692,752,724,680,694,713,683,676,681,684,685,713,706,692,703,679,674,680,696,744,681,669,679,728,712,752,708,733,769,677,739,696,692,769,658,676,641,659,680,661,630,647,689,629,647,625,657,669,642,661,676,660,665,658,647,641,656,663,672,645,641,691,639,656,665,665,616,631,616,578,598,595,607,606,596,600,596,596,592,602,610,603,584,599,578,593,597,623,600,600,605,594,598,607,595,606,598,617,601,592,591,594,579,591,590,605,597,600,590,630,612,651,592,625,612,585,607,656,616,606,648,602,597,623,606,621,595,640,584,598,602,618,575,598,610,594,645,626,615,598,604,628,614,605,614,646,633,623,594,615,625,603,626,613,612,625,607,624,622,642,608,617,612,612,625,619,606,607,613,632,603,619,612,635,600,614,607,606,625,596,616,614,619,612,616,590,633,613,629,615,611,614,607,592,584,583,582,567,576,562,572,581,572,579,571,582,579,581,591,581,585,562,578,581,584,582,585,578,584,569,571,563,578,571,581,564,586,574,569,577,569,575,548,663,628,704,687,693,637,631,672,660,649,668,665,647,634,669,669,666,705,719,681,694,695,678,691,674,675,672,655,645,645,634,674,649,685,645,658,675,685,682,677,638,648,696,708,721,714,704,709,715,732,724,715,697,728,722,719,719,734,715,695,706,716,701,692,704,726,716,714,696,711,723,704,705,729,707,722,712,727,716,705,718,712,693,725,733,609,587,572,609,581,614,593,554,622,600,584,583,580,564,615,608,590,585,612,565,612,566,608,549,586,575,615,584,595,591,618,578,615,601,607,600,595,616,621,579,584,578,615,552,564,533,562,574,546,536,558,553,565,553,571,564,535,563,553,563,529,553,562,563,565,534,572,552,561,540,558,572,540,579,538,568,563,558,545,549,562,560,567,575,557,584,700,683,696,693,687,697,664,664,668,669,667,688,685,682,657,711,665,700,686,679,675,660,681,689,639,673,715,653,713,684,666,682,666,671,690,690,606,627,625,626,616,641,617,625,619,615,630,606,627,616,639,603,607,633,628,620,648,623,647,615,627,604,630,622,641,643,625,619,618,624,622,651,609,618,636,635,600,632,607,630,662,581,566,557,572,560,574,598,574,589,585,563,577,577,568,571,563,573,577,584,576,576,571,569,560,572,564,569,581,568,577,571,567,573,563,575,576,569,562,584,565,571,595,757,741,714,722,725,732,747,753,743,730,724,715,693,707,702,702,710,749,714,705,713,689,729,741,710,747,736,742,708,739,698,699,703,715,710,720,709,727,710,736,698,762,755,724,746,755,796,714,690,730,712,699,693,711,693,694,724,688,705,676,697,701,704,679,690,699,719,707,712,716,681,684,710,721,698,705,701,723,722,685,727,692,712,696,684,717,687,752,685,606,651,610,615,611,595,624,610,620,631,597,578,627,613,593,596,605,615,608,597,605,642,631,603,624,626,606,601,593,594,587,646,623,598,632,626,616,623,671,535,559,546,549,542,539,552,540,549,552,549,541,545,553,548,535,549,537,533,540,542,550,531,553,552,552,541,534,525,534,550,534,566,529,539,551,549,556,554,555,553,555,557,559,561,569,558,562,561,550,559,568,562,548,561,560,556,559,539,555,551,556,546,548,554,557,558,566,568,555,554,564,559,548,556,566,552,551,545,560,622,665,630,626,616,655,635,644,621,629,659,626,652,667,615,640,671,628,672,632,675,642,630,627,631,634,635,653,623,661,658,648,684,651,595,633,689,704,696,690,701,715,715,687,705,683,685,717,705,678,703,711,709,709,691,692,690,684,712,710,704,708,695,700,715,696,697,700,698,682,684,708,706,717,703,690,679,687,702,702,683,683,735,641,678,682,684,652,673,664,662,666,664,658,676,680,663,665,655,668,678,654,670,671,678,678,670,664,660,690,681,655,662,662,660,669,672,666,674,668,687,683,664,692,657,681,683,681,638,583,594,613,581,611,574,605,589,585,581,574,577,593,587,570,579,577,578,581,586,597,591,588,588,586,595,575,580,568,611,571,592,594,578,589,581,577,575,587,574,588,579,587,567,612,586,580,555,562,643,630,574,602,601,573,655,617,595,578,629,602,553,576,582,579,622,613,615,619,647,586,571,598,671,594,578,598,572,599,598,587,598,565,576,571,607,577,624,585,542,582,594,558,557,559,611,599,589,613,793,757,742,779,747,789,774,749,769,741,776,777,730,746,746,765,736,740,762,764,765,752,749,744,761,742,737,775,765,755,781,769,724,779,756,789,767,767,760,791,753,696,743,779,730,715,751,719,723,747,743,753,733,763,768,749,729,765,765,768,777,782,721,762,730,770,763,744,749,732,750,761,740,718,752,744,778,722,758,764,756,722,812,692,690,718,677,702,711,711,697,688,707,678,687,712,692,716,691,706,718,708,695,680,741,726,705,680,713,713,758,689,700,731,681,689,747,715,687,725,714,767,657,637,629,668,611,648,666,636,644,634,621,653,642,655,615,637,629,629,648,657,653,630,639,633,643,634,613,611,615,614,633,615,598,647,628,629,639,655,648,745,692,668,603,650,606,678,610,655,743,651,640,619,632,627,598,615,641,591,721,625,644,685,635,741,597,643,695,627,575,654,614,646,665,611,598,651,570,714,698,701,714,693,694,706,704,685,704,740,717,685,699,705,725,697,708,704,704,726,662,691,690,688,698,707,708,690,687,704,706,717,699,702,699,698,727,690,715,675,666,706,723,691,685,726,650,691,633,685,692,677,682,677,668,670,692,666,666,671,657,676,682,670,664,683,677,642,673,667,687,656,687,672,674,700,660,666,671,675,679,655,634,611,651,651,665,634,637,647,635,643,650,644,642,640,653,635,646,638,620,647,629,641,640,643,642,650,645,642,660,647,641,656,658,633,645,658,649,672,627,652,625,651,662,637,631,606,657,667,658,660,665,665,669,650,644,658,670,672,650,647,662,676,664,677,656,652,668,649,671,653,655,661,657,642,652,653,653,658,675,659,659,653,648,659,653,658,627,704,748,711,717,717,713,728,699,709,708,723,707,713,723,721,716,725,700,746,728,731,732,706,685,695,698,720,719,697,720,725,750,684,727,729,734,740,702,747,689,684,708,693,696,706,705,696,709,709,713,714,705,710,708,710,696,695,686,703,702,684,704,700,715,701,692,700,697,705,707,703,709,689,699,704,700,712,704,683,702,703,699,694,695,685,698,701,708,721,677,666,717,721,679,674,737,670,689,656,671,696,708,698,653,731,664,624,707,718,690,674,686,699,662,667,755,679,613,684,645,688,672,675,660,687,760,681,712,708,689,704,612,708,673,678,712,705,715,663,686,673,666,689,706,653,706,682,700,667,670,708,705,701,679,677,704,680,697,682,713,682,703,684,740,682,722,712,713,721,706,679,706,666,678,699,694,687,659,721,667,641,608,604,615,599,586,603,615,609,592,614,584,587,610,613,616,608,609,618,622,603,652,647,615,606,574,613,626,621,603,582,614,620,631,610,612,620,644,624,622,609,625,648,571,556,550,560,569,555,540,560,541,557,572,554,582,547,577,549,570,539,561,559,540,573,548,544,552,546,574,564,557,561,581,558,572,579,567,534,562,587,554,544,555,535,569,558,535,565,586,721,743,734,712,730,729,708,704,769,713,723,750,760,747,773,744,718,722,707,722,722,708,772,741,736,729,720,754,721,746,741,752,785,715,740,735,727,729,727,768,742,750,725,720,732,723,729,709,738,737,728,720,731,748,743,728,736,724,726,730,721,735,739,726,747,747,736,749,725,735,729,747,720,740,739,733,749,734,760,698,702,656,679,687,709,668,694,684,717,695,697,688,704,669,694,696,684,689,683,707,695,699,676,717,699,672,679,746,696,711,693,689,657,706,698,705,695,734,683,703,645,725,679,659,674,711,689,629,691,658,691,677,678,698,730,658,721,695,672,689,710,696,687,707,729,682,704,612,663,691,668,693,709,671,719,692,684,659,663,722,707,653,681,703,669,644,677,721,655,687,669,668,672,678,683,674,638,660,671,658,646,649,661,654,665,653,673,665,653,676,630,724,660,661,667,677,669,660,661,664,696,671,664,667,661,662,656,668,700,682,642,659,638,653,646,646,650,633,644,633,681,645,656,647,664,632,645,654,630,642,670,651,644,644,653,648,650,649,645,655,652,659,653,645,652,658,642,654,653,655,641,655,664,597,613,589,590,613,612,587,585,580,599,580,581,603,583,601,573,589,572,599,597,578,590,575,585,598,577,590,579,600,599,595,576,557,564,574,610,596,586,615,609,581,590,595,543,544,542,553,543,552,536,554,539,552,548,547,537,545,544,550,548,539,525,540,536,531,534,546,550,521,531,540,535,549,541,543,551,538,537,538,525,534,551,545,558,536,547,540,550,525,551,570,566,553,554,544,566,558,551,554,557,577,575,556,543,558,550,550,546,549,557,539,555,555,568,573,557,558,557,529,578,562,570,548,565,552,554,566,567,570,557,550,585,737,715,731,734,744,723,732,697,694,784,741,743,732,708,740,725,719,737,747,712,716,730,742,712,743,724,749,710,734,745,713,713,729,738,756,738,766,715,712,732,759,719,703,685,717,739,720,709,715,692,756,722,721,691,719,727,716,749,739,759,735,737,722,734,717,712,713,678,752,726,753,754,749,761,703,746,731,691,732,732,736,699,718,713,713,703,754,753,708,746,724,742,725,750,716,722,735,745,733,759,754,728,678,747,746,774,757,730,754,727,752,733,724,742,721,743,722,772,753,746,711,739,752,787,767,743,752,818,706,745,734,723,711,715,720,714,743,743,735,713,712,733,699,740,750,772,750,692,713,719,751,730,757,685,753,730,708,751,734,705,716,729,767,712,712,739,727,749,739,724,719,732,752,797,719,701,713,686,721,686,733,691,696,721,707,739,722,682,755,669,692,695,746,681,734,709,713,715,769,695,740,728,726,720,702,712,694,749,730,707,700,731,712,678,717,700,688,721,694,662,719,742,730,742,736,738,714,699,719,727,723,726,733,734,718,720,717,717,740,747,707,724,712,727,735,725,727,722,733,725,737,700,715,714,713,721,727,752,627,627,623,625,662,614,623,617,636,591,626,609,623,609,627,635,631,646,607,631,627,595,602,595,644,642,612,615,619,620,632,654,632,610,602,594,641,622,630,638,650,577,570,591,562,563,579,566,558,569,566,588,555,570,572,564,567,577,565,562,584,579,597,587,568,565,581,552,579,570,565,594,567,576,579,557,581,582,571,589,592,577,566,589,564,529,616,652,646,625,632,640,637,635,628,636,635,642,621,624,637,648,651,630,645,646,626,636,648,636,636,633,636,631,645,630,638,614,642,629,650,635,641,633,631,640,630,645,690,657,667,645,671,648,668,658,656,655,645,675,654,675,672,658,669,640,651,653,657,651,658,655,661,661,661,664,655,655,659,653,671,661,659,669,644,661,657,661,679,641,676,653,658,633,697,695,678,660,724,682,646,677,686,691,695,676,707,688,690,685,662,657,708,696,723,686,654,696,718,675,671,688,664,676,659,722,685,693,686,670,681,711,703,680,702,698,655,670,675,639,581,598,603,578,582,586,586,594,615,594,602,607,588,566,572,574,593,609,612,582,555,569,594,568,604,605,578,609,583,570,556,583,563,574,563,580,593,584,560,586,540,556,554,579,566,565,557,562,572,560,565,568,560,561,546,564,550,567,560,555,566,552,552,540,562,564,582,567,567,569,575,541,567,568,566,566,569,545,550,572,560,569,555,564,562,567,573,560,583,543,556,549,628,617,587,614,618,603,617,589,607,620,614,604,630,610,610,602,598,608,595,620,627,604,617,623,600,571,590,591,630,594,605,600,600,621,595,618,601,612,589,583,599,569,564,574,549,540,564,575,557,564,559,549,574,577,547,589,563,600,566,575,571,554,566,558,579,564,575,577,573,559,577,557,563,579,566,560,560,551,548,578,564,562,563,573,545,565,547,561,563,570,589,585,569,568,566,572,557,575,575,570,579,572,568,548,575,543,573,551,578,553,572,559,570,567,559,565,579,580,557,543,592,577,566,569,585,559,562,572,576,565,571,573,604,548,537,527,541,539,537,537,540,535,548,535,541,541,530,536,534,527,528,538,537,535,541,536,529,534,529,538,532,544,540,525,544,539,534,537,540,537,542,527,538,514,516,700,715,710,679,698,675,693,708,685,727,703,701,726,683,683,707,736,694,708,701,699,713,678,717,669,694,682,716,720,699,693,682,715,702,700,701,702,696,721,702,674,706,710,722,715,667,663,658,652,665,666,656,663,684,667,658,660,665,665,649,679,667,679,671,658,679,671,672,666,666,679,682,656,672,672,663,662,664,664,658,670,653,667,670,677,673,687,674,681,656,629,605,610,622,586,624,589,609,587,613,603,621,629,605,589,658,613,629,605,606,612,633,680,592,611,566,600,606,600,585,586,617,634,636,601,630,588,615,582,593,576,631,609,593,555,516,530,522,538,540,542,524,545,542,544,531,539,535,527,546,531,513,535,527,547,537,533,533,537,545,548,528,522,545,535,538,534,542,538,526,529,548,536,529,536,541,535,537,529,534,538,520,539,552,536,530,538,511,527,532,505,514,516,516,494,503,520,529,516,521,533,522,518,516,515,514,517,516,521,509,527,514,527,508,518,514,526,530,495,526,518,512,526,530,500,514,528,519,514,502,675,727,739,741,758,701,719,770,707,701,750,736,740,758,713,720,766,756,711,737,734,750,733,698,708,730,720,727,717,748,794,709,735,739,695,716,720,716,747,707,734,705,807,699,724,724,713,741,702,724,704,718,731,701,688,706,701,687,701,710,701,714,702,711,709,715,680,703,693,672,721,692,707,706,694,716,713,677,709,699,734,700,711,700,731,710,677,696,618,604,625,620,590,604,641,642,644,594,630,643,616,621,603,638,619,641,627,636,608,655,648,624,653,633,639,628,639,641,632,610,631,612,595,613,608,618,620,590,526,515,522,522,521,526,530,521,528,526,531,540,545,535,533,530,536,534,520,528,522,525,529,529,528,523,538,528,529,521,531,534,519,521,521,531,518,531,519,542,538,529,528,535,526,656,663,672,650,673,682,672,693,660,641,667,675,686,671,676,687,680,683,682,685,671,665,661,666,680,695,661,669,662,644,665,661,695,698,674,676,652,669,693,659,664,635,667,643,661,646,650,643,644,670,647,643,655,653,650,657,676,662,653,636,644,659,643,637,659,638,650,636,672,660,661,651,658,631,659,646,650,650,660,649,654,645,644,663,633,618,586,568,575,549,554,587,537,565,588,561,531,582,580,582,581,576,567,591,583,618,603,585,566,569,601,581,610,603,595,616,575,593,570,566,606,593,598,598,583,559,575,569,563,552,573,559,556,573,568,565,561,561,565,588,577,567,567,550,572,569,554,561,568,564,590,571,568,554,570,566,588,553,575,576,576,569,572,556,577,562,553,575,575,565,570,573,587,545,542,545,558,562,548,564,537,539,543,566,542,544,549,539,544,549,534,541,547,540,544,549,540,536,544,555,542,545,538,547,544,531,551,547,548,546,538,553,552,545,545,551,548,545,520,545,535,536,545,529,548,536,534,530,541,542,534,549,541,527,552,543,549,546,532,523,533,542,536,534,529,525,529,547,531,535,537,546,537,546,540,551,564,575,556,552,554,551,561,557,554,545,562,561,544,568,539,538,554,554,561,561,531,541,555,564,554,560,563,553,564,571,552,558,551,538,555,568,561,540,536,543,536,552,546,546,556,536,548,546,549,555,563,541,557,526,537,541,551,519,551,539,535,544,548,540,553,548,528,538,543,549,542,538,548,547,544,550,532,536,545,569,575,618,617,604,598,597,582,618,603,555,621,611,579,586,600,607,566,520,571,618,599,612,602,614,618,610,579,583,635,576,621,654,590,614,625,550,609,630,598,612,638,588,594,581,562,595,574,584,595,585,596,593,579,591,578,593,593,600,593,585,595,584,586,574,585,594,571,581,592,588,600,576,580,587,583,588,585,589,593,590,572,575,550,548,521,545,541,538,542,550,549,525,541,530,539,544,528,534,546,533,529,551,535,521,531,534,542,533,531,537,529,532,543,538,550,536,526,544,541,529,550,495,513,527,505,514,530,505,509,511,521,521,517,506,512,516,504,500,502,497,528,512,521,489,513,510,501,513,507,520,511,507,491,529,517,510,508,513,505,508,502,529,512,508,517,522,504,568,567,555,566,560,547,544,568,562,546,557,550,558,563,549,567,567,551,560,548,559,559,550,560,562,554,551,553,542,571,567,549,556,573,551,559,574,540,553,556,549,551,563,555,586,552,531,535,527,531,545,546,549,544,545,543,524,540,542,539,537,537,538,531,542,548,534,543,541,544,544,545,533,552,531,534,553,547,536,546,546,537,543,528,531,526,531,541,538,542,531,550,527,533,520,654,716,648,668,658,671,649,742,713,682,719,742,747,717,686,718,677,696,749,688,726,718,745,724,738,691,706,763,741,718,691,750,758,731,680,691,734,681,730,672,734,662,713,702,713,697,709,699,699,716,706,690,703,718,686,702,686,728,700,692,719,714,719,713,713,719,708,713,719,715,717,692,696,696,719,721,705,686,727,703,711,706,662,704,686,668,686,713,686,743,648,691,676,664,631,678,667,710,663,713,642,665,725,640,695,670,740,662,634,673,694,712,631,718,666,716,710,672,659,697,696,673,629,679,743,746,703,683,677,673,683,714,696,692,722,661,674,683,681,678,682,704,694,709,726,673,666,682,711,679,674,700,698,677,687,702,684,703,669,699,697,684,703,654,709,678,682,643,689,701,695,675,707,694,720,690,713,703,691,722,700,713,691,707,702,702,709,700,711,701,709,686,692,696,698,700,697,697,702,677,726,710,698,693,689,692,693,693,696,700,658,656,671,593,651,659,699,612,631,645,706,603,607,613,651,628,632,601,630,647,587,622,602,638,601,630,640,586,624,634,639,621,624,628,629,613,625,679,638,723,546,647,585,603,590,615,592,646,586,598,630,612,640,612,622,617,576,629,622,584,608,650,588,595,603,599,619,583,569,612,591,612,570,598,562,612,598,600,578,621,542,530,534,540,530,516,530,534,531,548,534,536,529,523,531,528,551,532,545,522,520,541,540,535,542,543,531,529,525,529,529,521,519,538,522,543,519,535,520,545,518,529,528,526,557,545,507,538,521,521,535,522,545,523,536,536,523,515,520,520,524,533,533,520,529,535,514,534,545,516,521,539,511,542,526,525,510,515,519,540,512,537,542,528,539,552,548,551,539,560,552,558,543,550,554,559,540,564,550,548,531,561,560,557,565,548,546,544,548,564,552,553,558,561,554,551,552,543,559,544,557,561,544,567,549,544,556,569,563,566,556,537,618,595,658,599,584,661,612,563,600,614,629,623,615,627,625,618,616,631,629,632,581,623,606,611,615,566,621,637,612,608,602,651,619,599,617,642,583,580,601,612,642,622,569,615,601,647,632,618,612,624,607,630,610,620,613,630,621,621,629,622,630,626,624,612,619,606,615,609,598,618,606,628,614,631,616,627,613,604,612,610,617,616,624,608,621,630,623,614,626,605,624,652,556,555,575,592,585,562,572,573,562,567,555,573,580,570,567,565,573,585,572,567,579,561,576,566,563,576,571,579,587,557,578,577,576,585,573,569,560,554,555,602,506,510,512,527,528,510,522,526,514,529,524,516,510,538,521,531,520,506,530,518,517,525,520,519,535,522,508,528,514,507,517,523,520,513,519,530,509,516,507,506,525,519,517,516,506,501,493,668,654,671,666,657,647,657,650,657,671,675,657,682,661,667,659,686,644,651,658,662,641,656,658,630,631,656,666,637,669,639,665,662,667,678,647,666,654,666,666,637,659,650,647,635,698,685,695,659,663,669,704,657,711,669,675,620,680,674,692,646,666,654,665,639,675,672,658,678,682,674,634,660,661,673,701,675,670,635,689,657,654,686,661,634,680,680,662,640,706,690,682,659,716,691,690,720,644,673,745,709,713,692,673,694,642,682,757,689,742,676,711,732,666,689,677,697,696,773,743,659,678,715,713,711,715,669,694,680,718,692,687,707,691,577,644,646,647,675,703,670,675,673,660,654,663,640,683,670,682,667,667,667,676,666,672,674,665,642,660,634,664,683,674,669,653,665,685,675,645,661,664,650,660,690,605,652,641,651,654,652,640,634,631,656,643,644,639,657,644,658,642,640,643,617,665,651,646,657,654,651,661,646,641,652,657,647,642,642,643,629,659,662,642,654,650,664,633,651,656,647,650,680,577,608,572,582,595,578,570,588,585,588,573,577,584,590,576,584,579,581,559,566,587,566,578,579,586,580,580,567,580,584,586,609,572,571,596,585,578,576,572,578,580,573,566,658,654,648,660,668,655,656,650,635,703,691,663,656,658,653,663,673,650,647,643,652,681,663,663,672,648,686,693,669,652,647,663,641,660,675,659,696,625,629,630,626,630,604,592,599,617,613,598,636,630,633,603,613,617,597,620,594,610,615,609,604,619,616,619,602,596,604,597,598,623,595,619,624,611,602,606,631,585,583,598,577,580,573,589,565,562,574,576,568,603,565,569,574,586,595,564,577,564,583,579,591,578,579,574,580,582,596,587,578,589,585,574,583,587,565,587,562,592,587,602,567,590,586,572,582,592,548,546,573,566,560,573,557,566,571,580,570,582,545,557,567,556,575,571,541,548,570,583,565,551,567,581,566,561,569,553,564,554,564,561,573,571,570,572,576,563,549,571,550,561,550,550,547,565,550,569,555,558,555,565,567,582,565,545,549,562,552,564,558,569,567,554,569,557,553,545,554,548,569,575,553,554,557,572,557,555,556,540,556,559,560,553,562,568,535,555,547,540,544,550,538,564,557,556,549,549,548,555,549,548,566,560,544,560,563,564,548,542,544,552,553,533,558,560,546,538,553,539,552,544,556,542,561,551,564,556,535,557,564,555,562,545,551,552,544,557,549,541,576,601,648,700,682,613,627,668,613,620,658,617,612,629,674,672,637,636,586,654,623,619,614,683,650,730,606,606,673,728,636,592,678,664,624,675,602,640,616,602,645,641,624,640,592,602,604,615,591,592,612,608,596,613,605,614,607,606,606,593,605,615,617,595,595,608,609,604,599,604,610,597,608,633,604,621,601,607,588,609,617,607,622,610,616,584,614,576,566,541,563,544,530,556,556,530,579,554,565,552,540,562,546,561,535,560,564,557,527,545,554,545,558,535,555,556,532,543,537,549,550,549,560,556,544,545,574,528,521,525,516,520,531,523,520,540,521,516,520,528,519,547,525,517,516,530,538,523,522,527,528,527,531,533,526,537,526,521,524,533,526,530,521,528,531,519,535,529,537,547,536,532,550,545,552,547,550,538,538,541,528,542,530,530,535,544,536,549,534,536,536,536,549,544,535,545,538,546,535,541,536,555,526,545,526,536,538,533,556,572,550,567,553,561,564,562,559,560,542,567,541,551,556,548,561,553,553,549,541,560,567,547,547,552,553,547,557,556,549,561,549,568,572,571,548,548,574,553,539,580,675,684,674,672,684,703,693,677,690,718,680,688,682,684,696,682,712,680,667,688,683,677,680,673,672,698,686,687,675,694,683,668,694,701,688,685,693,695,687,707,685,649,667,683,676,642,711,689,677,667,676,693,653,698,674,664,648,675,694,666,651,652,664,674,694,685,690,652,664,705,669,696,698,678,666,676,663,660,697,664,674,661,660,678,656,679,681,649,685,589,618,593,575,615,621,597,593,600,636,579,575,635,638,573,582,605,593,582,608,593,597,606,595,605,633,612,621,613,589,606,581,599,587,620,600,615,601,541,598,575,584,576,586,515,617,645,574,572,627,636,616,633,672,636,594,565,582,590,631,644,565,580,603,602,636,591,584,628,620,583,630,592,665,589,603,606,639,607,659,625,617,630,596,593,606,575,594,587,599,594,572,579,579,574,593,588,588,589,583,570,586,583,592,576,587,592,569,596,605,584,586,589,592,600,584,597,589,597,576,580,583,587,576,579,594,545,557,562,538,549,563,555,550,554,547,540,564,549,546,542,554,551,529,541,553,544,548,540,545,553,566,550,553,549,547,542,560,535,565,554,534,550,548,562,561,533,549,555,563,546,548,557,551,566,566,550,545,572,573,554,535,545,558,552,561,548,560,576,576,539,555,558,568,569,549,541,554,554,548,564,567,570,567,564,546,561,577,551,548,574,572,566,577,547,535,705,657,641,682,672,671,686,642,686,675,665,667,651,675,661,686,709,677,671,682,700,652,678,683,653,688,715,648,672,645,684,616,684,680,692,688,665,634,657,667,675,664,685,655,603,585,626,622,584,623,601,611,608,600,614,589,598,586,605,612,612,582,595,605,597,586,624,602,586,600,607,586,590,593,643,613,601,609,594,585,594,618,629,619,617,621,632,676,670,687,650,637,670,677,654,729,674,662,637,676,649,659,673,651,636,650,698,700,661,639,677,655,647,682,655,663,653,620,652,726,629,617,672,662,670,713,642,630,669,695,621,672,739,666,675,691,666,679,691,673,672,689,663,667,671,672,666,684,674,684,675,672,689,692,670,687,652,672,674,673,678,681,685,678,676,690,660,662,653,666,670,670,678,674,669,670,653,669,684,610,603,641,589,552,567,615,644,574,583,645,568,614,590,606,622,609,608,568,601,583,611,607,590,580,583,614,592,604,604,576,581,590,594,599,599,561,656,614,596,606,586,588,614,603,559,553,563,541,544,549,544,562,553,548,544,543,550,570,544,551,557,553,536,555,557,553,566,557,560,548,553,551,557,569,539,550,567,532,552,557,543,551,565,535,538,554,552,554,527,541,534,540,541,550,539,528,550,540,551,546,522,546,567,531,542,542,551,564,552,519,539,542,530,539,537,521,554,530,549,545,569,551,537,543,539,531,543,536,546,574,517,529,525,511,507,509,521,506,522,520,530,516,512,525,526,519,523,524,519,508,498,518,528,523,519,526,516,521,512,531,505,510,507,507,518,514,524,524,524,511,513,509,549,506,505,506,497,512,490,506,514,504,491,507,507,503,499,501,508,498,520,509,506,503,506,516,498,509,508,511,503,511,504,508,502,506,508,503,498,490,499,505,504,507,503,503,511,492,507,488,509,497,506,496,492,498,490,494,499,489,498,490,482,480,485,483,496,497,494,476,490,493,496,488,499,488,501,511,490,501,509,488,504,487,510,489,502,493,492,493,495,499,508,488,500,487,493,492,481,502,492,495,500,490,494,508,499,500,490,496,498,493,494,507,508,493,502,497,488,510,488,497,503,492,502,491,493,488,510,502,511,497,490,478,497,500,501,495,487,508,488,500,504,491,487,499,517,506,503,486,496,507,500,508,485,496,477,499,487,505,499,492,496,497,491,501,490,499,499,500,506,491,503,503,487,490,504,507,503,523,511,520,508,530,507,513,508,502,508,516,513,510,506,515,502,522,512,516,499,500,522,514,519,500,510,512,510,519,515,512,509,505,521,511,504,498,514,511,501,556,532,541,526,539,543,561,551,517,560,552,557,534,548,523,560,548,548,537,542,541,541,537,546,535,543,552,551,530,554,534,553,551,538,556,538,554,550,540,547,549,539,558,533,529,517,542,546,538,529,518,526,528,533,541,525,533,526,518,544,538,532,534,524,543,540,528,529,545,534,541,541,543,531,531,537,521,530,526,522,527,535,540,567,568,570,593,577,589,582,569,576,578,551,569,563,589,583,563,595,567,595,601,573,580,558,590,571,589,579,596,591,576,585,561,590,559,588,576,575,575,585,572,549,557,539,558,546,543,557,545,554,539,565,552,552,552,550,556,547,545,540,543,563,557,537,546,556,551,557,552,544,546,554,536,545,552,546,553,549,551,547,574,578,574,597,637,590,562,539,604,606,598,590,561,596,609,613,611,572,594,603,555,588,611,577,564,565,604,567,639,601,592,611,567,581,629,568,632,613,597,664,577,601,585,586,578,581,580,582,591,578,588,577,586,599,589,607,579,572,597,583,577,586,591,591,573,591,580,590,592,577,586,580,594,578,585,577,582,579,592,586,592,595,585,595,547,530,539,540,551,532,527,549,542,546,528,529,524,540,525,532,530,532,539,535,541,538,538,544,527,546,542,529,531,541,529,534,535,526,549,537,528,538,537,522,540,532,508,493,510,507,495,517,507,501,529,510,500,514,513,502,516,515,501,521,506,504,513,507,516,518,496,507,500,504,516,495,516,512,509,490,522,507,515,508,506,506,500,505,505,511,581,597,550,574,585,585,594,583,561,579,576,596,573,578,574,566,574,569,585,576,582,586,582,560,557,570,576,594,565,582,567,580,567,575,604,582,587,613,601,607,593,585,582,588,598,583,579,611,612,603,578,617,601,588,601,607,583,587,594,601,604,588,592,596,584,607,600,613,581,604,605,607,610,599,609,588,598,553,573,601,582,570,581,574,581,583,590,579,564,573,591,574,569,585,574,592,575,573,572,566,572,570,578,560,582,571,574,573,590,567,558,563,589,581,590,563,569,574,557,549,538,533,521,542,549,537,530,549,528,548,531,544,531,528,536,541,528,535,551,527,549,540,540,529,544,547,538,549,523,547,541,533,537,524,528,531,524,525,515,525,550,540,538,539,530,524,490,507,506,510,509,515,513,513,518,507,516,501,499,522,513,515,520,510,523,509,517,522,513,502,506,511,526,504,507,500,519,518,515,505,511,501,524,523,556,550,553,556,571,548,531,544,536,539,543,548,527,542,524,552,541,554,549,539,549,532,542,544,545,562,552,546,526,539,565,534,551,543,519,535,547,540,559,519,510,536,522,537,544,532,529,543,536,536,530,540,545,531,534,529,531,528,534,534,532,531,528,531,547,524,536,527,529,528,535,535,524,546,534,529,530,534,525,532,530,530,524,552,544,546,532,534,537,526,536,532,522,515,519,525,537,510,513,536,515,519,535,525,525,532,533,522,535,544,548,509,539,520,524,545,526,520,534,524,545,538,501,498,494,502,493,491,504,507,504,489,503,507,487,501,500,497,507,499,494,501,506,511,496,504,521,502,507,502,509,495,497,502,500,495,489,501,502,497,479,495,493,514,511,505,499,503,510,504,487,506,505,507,506,501,494,501,522,511,498,490,500,498,499,502,503,508,503,506,524,494,503,517,496,505,504,496,518,520,513,505,492,644,616,607,597,637,641,630,638,611,611,633,602,609,617,612,644,627,628,609,633,639,614,628,622,621,611,620,605,635,624,630,630,633,632,639,630,614,603,638,625,588,555,572,566,557,565,574,565,556,554,555,582,559,563,561,558,557,553,569,559,540,550,555,552,546,554,569,561,545,545,547,555,551,570,554,558,560,568,575,559,538,555,560,621,620,635,613,639,640,672,618,679,661,627,570,622,604,612,692,633,662,648,703,629,644,638,616,607,678,636,638,647,634,599,642,636,639,659,638,622,655,642,604,647,679,629,642,625,611,599,663,649,653,689,609,683,654,664,646,687,635,635,654,668,672,649,678,654,643,701,671,681,656,650,665,666,679,680,686,678,670,625,694,692,686,644,694,664,695,695,684,649,675,681,621,614,611,594,609,584,604,607,626,626,626,579,609,609,602,586,615,586,593,610,598,616,630,584,620,620,584,590,614,611,575,607,624,616,644,624,592,598,626,667,564,577,564,582,580,556,575,571,564,579,566,586,580,566,557,566,571,557,577,568,588,568,573,560,579,568,564,568,578,563,582,579,565,570,577,573,571,567,562,564,568,578,559,591,573,542,557,548,544,548,541,550,535,550,543,536,549,542,533,535,560,551,533,544,542,542,533,553,533,567,547,550,543,546,530,548,532,550,550,526,553,544,535,534,549,559,526,519,525,517,508,494,517,520,512,531,515,515,516,516,522,523,501,507,503,521,522,514,510,510,508,534,519,523,534,516,514,519,517,504,513,529,526,518,510,509,515,521,510,651,638,641,637,657,643,646,638,650,641,638,646,658,645,654,653,655,625,642,671,659,654,666,655,674,669,640,650,656,638,650,654,661,638,661,637,653,653,651,629,625,670,686,597,622,587,611,591,592,586,608,582,591,582,606,603,586,598,576,613,578,609,586,576,611,587,594,591,603,591,607,590,589,595,594,587,579,591,599,594,588,595,592,564,580,587,570,592,580,581,574,583,581,574,585,578,573,570,582,568,591,568,575,554,592,584,577,580,602,585,568,583,580,572,564,580,601,590,585,577,577,577,565,580,587,591,601,566,583,566,568,570,578,558,571,560,556,572,580,564,561,567,563,564,579,560,561,569,565,570,570,557,564,562,582,572,570,551,557,571,570,554,558,567,551,586,566,545,559,557,564,563,556,561,549,573,555,555,569,548,561,561,553,554,570,562,556,569,570,560,564,557,561,562,566,564,555,557,563,567,563,558,571,556,546,565,563,547,541,550,541,548,535,551,549,550,541,558,534,547,557,546,533,547,547,547,551,535,536,542,547,562,546,547,546,545,556,549,544,548,559,546,544,546,541,555,540,545,534,553,540,556,561,518,541,531,561,540,537,531,536,530,542,541,528,534,546,527,525,548,532,535,533,534,541,546,541,547,532,525,531,550,535,528,528,534,533,545,537,533,546,532,523,525,534,524,541,552,534,543,557,557,529,526,513,532,532,532,551,534,533,536,537,509,530,526,538,533,535,538,538,535,524,529,528,502,536,521,531,535,525,523,528,525,524,528,523,518,524,526,532,542,525,543,523,526,536,543,546,545,544,539,548,532,547,542,539,546,546,533,552,548,538,532,531,531,551,543,543,553,522,542,542,533,539,542,543,539,545,539,535,546,541,531,542,544,531,540,545,542,549,541,565,536,566,556,545,552,533,549,544,555,540,543,555,543,553,549,532,550,538,540,558,545,549,538,535,552,532,554,548,547,550,541,543,538,533,556,538,547,535,554,543,538,547,545,543,523,531,535,537,552,540,531,534,533,535,525,544,536,534,540,524,544,532,525,544,526,538,545,531,538,547,547,528,528,535,543,527,542,548,535,540,532,537,534,528,539,539,533,529,542,536,520,520,524,526,541,531,546,535,539,524,531,536,552,517,526,530,537,530,545,521,523,514,526,541,516,529,545,528,538,544,522,524,523,533,534,522,533,540,542,531,545,518,528,508,554,536,538,558,552,559,547,558,543,538,548,548,552,535,534,542,546,551,545,532,536,552,542,549,541,541,553,549,555,556,549,556,536,531,535,545,547,554,552,543,545,540,557,557,527,564,564,543,555,563,548,570,559,554,563,552,560,552,563,554,547,551,551,557,560,554,562,545,561,564,557,552,538,566,564,548,559,565,549,554,547,553,534,603,579,639,579,580,628,570,635,611,627,573,591,596,595,641,620,577,630,595,627,553,631,621,619,598,623,565,596,585,595,599,583,582,553,605,600,620,601,619,598,656,593,597,590,601,595,593,586,599,598,588,601,577,595,595,598,594,605,594,587,596,596,597,584,585,593,592,588,592,597,603,577,586,577,598,590,579,578,591,591,598,569,564,555,549,550,559,557,563,552,552,564,558,570,555,567,576,553,555,561,569,564,547,565,566,580,553,562,555,565,582,539,553,551,559,546,580,563,570,557,555,548,556,534,572,552,556,549,545,563,555,548,534,563,548,547,534,555,529,550,560,529,539,534,549,558,565,555,551,549,565,541,560,548,534,551,561,570,562,555,550,546,565,561,547,533,548,660,644,642,641,666,627,623,629,654,656,661,634,655,652,649,643,644,654,664,649,646,649,653,638,639,639,640,658,648,642,641,648,638,631,655,668,661,637,652,602,572,559,552,547,554,582,576,563,555,568,583,557,554,555,565,540,559,556,556,555,558,551,570,555,551,565,584,558,569,576,561,576,572,573,563,550,566,564,571,551,566,564,558,563,559,546,526,520,529,555,563,518,528,533,544,536,530,527,516,544,519,540,552,538,543,547,533,532,515,552,506,515,544,536,541,516,530,524,554,553,545,513,519,546,538,539,536,540,712,690,709,686,720,732,697,731,712,733,699,687,683,692,707,679,732,726,689,703,708,713,734,694,707,702,714,662,722,711,708,687,748,694,711,733,730,728,699,721,716,645,647,657,642,641,659,639,659,666,674,623,656,650,617,651,657,662,644,652,665,642,674,659,651,656,646,672,674,656,665,650,620,632,619,650,643,677,655,641,683,652,601,598,605,602,585,598,599,595,600,587,609,591,589,612,581,588,584,606,598,596,614,598,594,608,594,599,606,603,592,603,603,597,603,593,618,612,597,594,599,608,592,606,601,603,573,585,571,610,587,604,621,579,579,617,597,582,602,606,606,591,589,562,598,598,612,619,594,577,608,605,635,587,558,651,647,591,610,541,605,582,671,601,590,596,590,606,602,591,579,598,593,587,584,582,596,587,581,584,588,586,593,606,589,594,587,603,593,585,589,601,587,590,585,581,592,579,585,602,594,567,592,598,548,542,545,521,542,533,541,540,539,542,538,545,536,533,545,527,538,546,534,536,537,541,538,550,518,536,543,517,537,528,531,542,522,529,531,518,642,637,652,661,663,662,650,671,671,651,648,653,625,663,645,650,641,662,643,650,628,652,659,659,629,620,671,661,638,652,645,649,642,667,652,655,658,660,660,641,666,645,645,656,686,631,667,680,687,657,676,670,675,672,705,684,687,671,678,685,659,654,660,640,678,706,676,719,657,619,635,686,630,633,640,646,657,701,686,666,680,670,674,678,666,656,688,707,685,700,698,672,661,683,687,677,687,704,731,685,673,686,634,665,678,691,681,674,697,696,687,662,680,628,722,699,677,686,653,687,707,644,643,727,687,661,713,690,707,746,670,713,755,692,664,675,710,674,679,681,644,704,676,698,701,690,685,670,715,642,679,670,673,665,653,670,654,695,668,680,668,677,698,709,668,701,658,676,656,721,683,657,690,687,690,651,691,747,587,574,578,582,563,583,581,576,587,574,578,605,597,559,593,575,599,589,551,593,622,597,562,581,576,578,563,584,564,575,593,589,570,577,548,554,575,583,595,600,575,579,556,556,574,554,581,573,570,634,542,560,534,544,544,543,545,545,537,553,526,565,542,538,534,537,564,552,520,538,554,549,544,541,544,530,555,561,534,552,550,556,536,527,549,553,527,523,543,520,693,685,671,648,669,681,687,635,685,677,675,668,708,695,673,681,666,681,665,659,685,689,678,671,661,684,685,675,687,686,647,682,701,683,669,682,660,655,656,666,622,571,618,616,600,611,603,593,566,595,633,591,600,600,604,617,594,577,591,590,609,593,593,595,596,614,598,611,634,625,602,628,578,582,616,605,597,615,610,607,615,613,602,605,607,583,625,600,639,589,601,658,605,543,634,576,603,641,606,633,599,618,569,582,641,569,684,634,602,576,637,601,646,586,606,600,601,643,608,640,537,586,561,570,646,508,656,669,702,677,686,623,632,652,669,651,693,691,650,651,662,661,661,695,643,670,665,657,648,632,685,681,715,627,662,659,672,630,645,660,665,684,649,658,645,671,645,685,623,602,601,580,582,603,602,586,568,590,572,622,592,613,610,614,588,585,585,592,605,582,608,635,601,598,591,610,590,587,586,574,586,577,627,592,600,606,621,595,616,612,602,587,611,599,685,642,587,630,607,642,612,633,654,596,564,644,590,600,629,660,611,601,644,671,599,541,618,595,624,639,591,588,619,656,590,617,666,611,651,621,680,612,568,646,675,636,623,646,653,698,712,675,657,628,669,687,654,661,652,638,688,638,674,654,649,651,665,650,650,676,675,650,676,672,626,686,692,672,668,657,645,669,652,633,656,649,674,660,625,642,679,672,684,695,689,689,707,682,701,694,661,691,677,691,649,660,693,687,681,668,690,703,692,701,717,687,692,691,700,666,676,680,673,688,688,678,689,665,722,678,695,676,689,674,684,688,694,666,704,676,672,691,694,671,683,705,686,662,700,680,700,671,707,673,685,710,677,666,712,714,697,680,672,672,688,707,679,683,672,680,688,684,687,711,707,666,692,709,588,589,619,586,606,597,616,627,596,619,626,657,621,587,618,583,608,628,594,583,602,600,595,630,614,600,553,592,605,610,604,607,615,605,594,579,605,572,585,581,610,550,541,541,536,563,540,547,559,560,545,548,556,551,562,541,542,554,559,541,547,536,537,542,538,549,554,550,547,545,551,534,585,544,547,553,542,551,555,548,555,552,560,548,588,586,598,575,584,570,593,584,576,597,572,575,573,575,566,586,572,588,595,571,577,573,571,572,569,574,601,574,586,599,588,569,581,572,584,585,584,584,568,560,595,564,621,622,626,624,642,660,653,626,632,661,626,645,627,633,631,618,649,638,628,653,633,622,640,649,652,624,647,620,670,645,637,651,614,655,627,637,650,654,625,636,646,649,658,656,653,666,663,645,642,646,659,645,643,660,665,652,640,652,653,644,644,652,662,650,652,649,665,650,667,655,655,652,671,649,664,656,662,664,640,651,685,581,589,578,576,573,571,596,583,580,589,587,594,564,568,584,564,583,577,590,581,550,571,567,583,553,569,597,583,578,561,561,574,592,573,577,572,570,577,608,662,665,691,690,693,644,667,658,664,646,649,649,675,671,641,651,680,665,670,671,679,648,699,683,661,677,673,661,656,672,669,675,675,674,699,669,670,688,676,694,660,629,670,665,660,694,608,657,659,719,677,688,650,652,647,672,688,657,673,659,653,636,678,623,673,633,665,684,686,673,656,679,660,671,678,662,684,650,650,657,665,674,696,613,618,588,581,618,620,626,598,581,587,620,598,623,612,592,600,641,605,601,594,600,616,583,604,604,596,605,583,619,579,608,596,603,547,598,601,571,586,662,592,559,588,595,585,609,645,557,605,589,629,596,626,597,599,646,651,597,631,619,584,635,562,564,586,626,547,627,637,678,639,594,605,613,612,590,549,607,578,620,608,619,580,641,656,618,576,708,561,564,560,560,556,552,577,577,576,560,578,571,576,543,550,558,583,560,584,562,549,576,575,560,558,553,565,566,566,573,573,571,567,556,558,554,560,565,555,552,562,561,554,555,569,586,606,598,567,613,581,551,585,552,604,621,566,610,610,612,639,596,592,636,620,600,622,636,629,613,631,582,571,548,568,622,613,564,549,555,634,607,614,653,607,576,607,622,698,565,558,581,558,567,560,577,564,561,567,566,567,561,564,580,561,579,568,558,574,561,559,564,559,572,569,569,564,565,570,576,567,559,569,563,564,562,559,568,560,559,571,589,612,649,685,644,670,628,604,590,694,620,628,609,657,678,590,703,619,674,619,683,677,675,655,619,643,625,632,611,604,642,594,620,601,712,585,668,612,577,592,641,643,677,675,595,670,646,585,556,663,656,661,677,701,671,663,625,682,701,671,680,660,663,636,661,661,694,657,668,671,701,652,663,648,666,692,645,643,660,662,648,681,684,641,672,664,662,653,701,665,659,677,727,640,633,622,614,632,648,649,659,627,664,645,651,638,658,614,641,659,654,629,627,666,611,661,645,653,645,611,639,615,651,659,630,646,647,621,672,640,654,624,637,644,599,602,584,587,590,582,587,583,587,593,603,569,588,598,593,589,589,604,582,583,569,595,590,583,592,608,586,597,593,595,580,597,588,589,574,598,576,573,592,599,595,588,604,600,581,599,585,605,592,591,589,585,600,601,599,605,596,595,597,598,590,603,593,595,595,611,600,577,574,591,579,616,592,587,606,574,579,593,595,596,605,594,597,603,595,602,589,600,575,597,611,589,586,607,609,564,744,712,753,737,745,734,732,747,723,754,726,713,735,751,711,729,718,752,738,711,723,729,724,727,733,712,724,700,740,745,717,733,726,707,707,712,743,748,730,730,723,697,715,701,719,706,733,712,717,703,714,706,707,714,708,710,708,700,716,710,702,729,707,706,705,712,708,710,702,692,705,715,707,717,719,711,735,696,717,711,695,682,718,683,692,686,692,702,682,685,732,712,714,698,681,707,669,688,714,665,682,709,668,672,701,642,686,686,682,701,686,696,669,703,713,728,693,683,674,717,696,697,699,676,680,679,687,672,688,677,688,707,689,678,700,688,679,657,661,682,686,645,671,661,680,682,680,640,640,679,683,668,670,688,686,684,712,648,702,665,685,669,691,637,643,674,685,674,675,677,680,666,681,688,668,721,678,678,681,691,707,658,686,669,709,686,691,688,667,676,678,675,696,675,657,667,711,671,683,670,690,686,675,674,685,708,676,697,703,679,671,696,684,708,688,672,688,656,695,723,702,670,692,682,693,694,676,685,672,654,666,671,675,742,674,668,630,709,690,667,695,689,680,715,680,655,660,665,731,705,695,658,743,722,687,695,725,665,662,702,706,706,682,653,696,716,688,657,654,627,656,678,652,666,667,686,662,663,644,630,630,682,676,648,637,662,660,661,657,649,668,661,675,677,650,654,667,634,653,689,642,627,665,673,701,660,670,647,670,671,642,676,670,682,661,702,671,673,676,698,680,714,700,755,696,700,672,723,695,680,697,725,685,726,680,721,712,654,714,693,673,718,717,671,699,716,710,661,701,705,636,716,725,718,707,709,697,706,709,702,728,711,709,737,680,710,707,714,725,722,746,707,710,692,727,731,713,716,722,727,725,725,716,719,703,721,715,744,718,712,712,691,735,722,706,708,676,705,704,655,684,702,713,687,697,683,676,699,689,687,689,695,698,686,691,661,693,684,681,693,690,696,662,678,721,711,694,699,668,686,697,668,686,705,669,683,660,693,689,685,687,677,678,699,683,648,662,706,680,678,693,674,661,687,671,688,670,675,696,673,678,672,699,676,675,661,687,669,654,681,655,666,703,670,681,652,704,672,675,680,664,677,673,661,669,675,703,680,681,674,686,682,660,670,675,665,685,676,660,668,701,675,677,677,669,694,712,669,671,693,693,680,712,692,697,697,668,673,683,661,715,694,702,720,657,663,632,675,681,635,676,705,707,677,688,739,745,633,685,678,634,706,730,694,694,692,663,729,676,710,678,693,662,668,704,714,674,679,620 0 261.607313 0 0 0 diff --git a/test/rna_prefixyes_slow5.exp b/test/rna_prefixyes_slow5.exp old mode 100644 new mode 100755 index a334ec4..24ac612 --- a/test/rna_prefixyes_slow5.exp +++ b/test/rna_prefixyes_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO002 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 3000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna002 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 2048 -263.72473 548.788269 3000 81282 485,497,491,501,501,503,498,494,506,492,492,488,491,496,492,509,514,507,501,499,495,496,503,504,503,487,505,494,500,512,484,483,485,495,504,489,508,506,495,476,498,482,493,496,500,502,502,491,489,505,488,497,489,486,497,488,514,496,497,493,499,499,498,509,498,502,486,488,496,493,498,494,478,494,501,494,497,490,487,503,494,504,503,489,495,493,477,499,508,494,504,504,494,484,495,498,505,497,503,494,503,491,507,494,508,489,495,505,492,509,491,489,493,487,491,503,487,501,501,488,509,487,509,494,494,507,492,487,508,505,497,506,491,500,499,500,487,484,490,508,497,513,497,490,490,501,505,483,502,500,505,502,495,513,490,506,491,496,516,501,499,492,500,511,491,490,510,486,505,496,513,498,489,506,494,505,493,506,499,490,497,493,483,507,505,496,492,500,499,486,503,496,492,504,502,491,488,488,502,491,509,501,509,490,485,488,496,504,500,484,504,496,495,490,502,508,499,503,496,508,492,503,492,512,486,490,493,487,490,489,500,490,495,490,493,500,490,491,489,492,494,499,509,499,497,477,493,498,504,483,500,506,499,508,502,480,487,495,489,506,503,486,504,495,509,500,489,498,496,495,503,485,501,496,485,500,497,496,497,477,495,482,499,505,489,488,487,500,513,493,499,487,487,495,493,499,503,491,490,481,498,483,506,477,501,484,500,495,509,502,507,480,498,499,502,496,505,508,504,494,493,485,504,501,492,496,502,498,483,492,497,505,497,493,502,496,503,487,488,496,499,486,488,496,489,496,497,487,495,498,497,495,492,505,503,494,492,499,508,487,502,483,490,488,495,503,507,508,495,496,484,499,497,514,494,498,504,496,489,490,489,504,508,508,488,501,494,502,516,496,487,482,495,499,502,489,486,505,506,496,479,496,494,502,507,500,498,494,491,488,493,499,491,496,487,498,505,487,496,509,505,502,488,495,498,499,496,518,500,503,498,508,503,497,507,495,492,502,497,486,497,506,496,491,493,489,501,491,513,486,489,488,501,510,496,494,503,490,504,497,506,485,493,491,499,496,492,498,490,497,492,497,490,480,494,510,496,504,501,494,494,508,494,516,491,504,477,498,495,508,505,493,493,496,495,494,509,486,494,493,503,491,498,483,489,487,482,487,494,492,483,491,501,507,491,491,489,499,496,483,501,504,486,512,504,497,509,490,492,487,500,503,501,498,490,504,507,489,490,495,498,501,515,496,485,497,489,486,499,494,500,481,478,493,497,501,490,492,486,490,496,500,500,500,498,492,500,496,522,487,509,481,506,507,508,496,503,500,494,484,489,501,512,512,484,484,493,501,511,493,508,487,493,481,501,488,489,502,514,511,507,517,517,503,519,506,523,508,520,509,512,506,512,506,509,513,522,515,502,517,508,512,509,503,521,517,493,518,527,518,508,498,515,518,510,514,502,503,524,521,516,581,556,586,588,579,561,567,565,569,578,587,577,592,576,573,587,560,585,582,584,597,589,590,582,577,572,587,597,590,590,553,574,585,589,584,568,566,574,575,623,642,627,646,647,624,613,671,655,629,648,649,637,630,628,635,624,655,634,636,642,648,639,639,647,644,644,609,635,630,630,635,642,642,650,633,626,645,616,640,646,641,644,673,659,677,652,660,665,652,669,677,676,666,659,681,659,665,666,655,663,656,660,644,680,648,664,652,659,669,661,688,675,675,659,686,671,663,659,674,656,665,654,665,647,665,656,677,660,667,655,668,656,670,669,671,687,665,670,658,671,664,667,666,662,659,674,661,686,649,668,668,656,660,657,686,654,675,675,660,680,660,676,674,676,673,657,663,666,659,671,669,679,660,663,667,670,660,678,654,678,648,676,681,655,668,668,673,670,666,663,671,677,646,662,673,680,663,653,680,657,675,668,672,663,647,654,651,662,663,650,670,654,660,658,673,644,652,653,679,638,640,648,657,658,668,664,656,679,667,664,675,672,665,662,678,646,661,637,657,665,659,681,658,657,758,741,754,742,711,765,758,756,713,767,746,723,774,746,727,710,735,736,742,772,740,731,717,745,712,757,699,774,720,744,763,712,737,731,766,764,741,743,743,729,778,722,752,741,713,717,753,729,714,707,731,734,706,674,729,723,779,736,724,725,736,690,743,719,729,709,693,684,744,701,730,718,707,735,705,739,743,703,715,705,728,723,700,720,718,693,698,715,712,672,688,667,680,677,694,659,656,680,662,655,676,671,681,674,670,692,696,671,673,655,679,677,684,659,664,661,679,697,668,693,662,665,692,656,663,687,660,647,679,672,696,636,655,645,652,655,652,630,640,656,645,659,642,639,626,639,657,653,661,631,638,660,648,650,639,628,650,655,636,631,647,648,616,631,634,652,641,640,636,648,649,652,641,640,659,652,638,632,686,660,670,661,674,687,672,666,683,652,677,669,669,662,663,692,670,662,672,671,660,673,666,679,677,675,671,671,671,672,663,676,674,653,686,664,670,660,674,669,674,528,543,542,543,539,548,513,528,519,536,534,553,528,522,517,569,522,518,555,564,530,553,548,543,526,497,527,508,521,512,508,506,537,546,526,529,536,526,533,556,529,544,517,539,535,529,437,436,430,428,432,438,460,447,437,440,430,440,444,440,450,441,427,443,440,437,447,433,434,438,437,454,433,445,440,440,449,452,439,449,425,437,438,424,433,430,429,430,442,430,429,450,448,445,456,426,442,436,453,435,422,455,460,432,435,435,433,428,449,454,461,442,452,434,429,459,463,430,450,423,444,452,448,445,466,419,432,447,455,439,434,448,448,441,455,433,452,435,439,444,439,436,425,445,439,449,439,450,450,449,435,447,428,438,439,438,430,436,437,451,449,450,434,439,434,436,451,435,457,452,423,441,455,499,509,515,468,510,515,525,489,531,486,531,485,493,476,512,476,497,484,490,503,508,533,471,511,504,527,486,494,492,521,486,524,570,529,480,487,485,433,529,501,477,536,508,575,625,656,659,684,704,608,683,660,647,663,652,683,633,673,630,641,611,654,671,671,663,660,646,646,670,690,629,638,639,666,621,690,651,661,662,650,640,630,659,647,623,657,652,600,595,634,627,600,649,642,634,611,619,641,621,575,560,631,656,575,622,600,614,610,602,611,600,608,612,637,617,617,595,642,625,609,603,643,628,639,592,641,621,675,623,610,583,559,557,563,573,578,580,564,556,575,567,549,589,567,567,545,548,574,568,556,576,565,552,563,585,583,591,570,607,569,556,567,580,539,568,572,561,583,575,568,436,471,459,447,458,471,452,466,462,472,454,456,448,459,479,450,464,462,456,443,442,430,446,463,481,470,464,468,451,463,450,456,456,447,465,495,458,479,454,459,466,465,438,519,559,534,536,535,525,537,549,554,533,549,571,556,538,536,535,526,554,549,571,536,533,540,538,532,539,537,546,549,565,592,571,553,533,529,537,530,534,579,553,546,549,563,540,539,565,479,470,457,454,446,474,481,489,487,467,483,474,458,450,482,473,458,471,471,482,457,464,475,446,474,472,474,465,479,468,462,477,459,485,472,484,475,463,465,452,477,461,458,463,460,437,412,434,439,432,439,441,422,442,451,388,416,446,440,440,425,427,464,434,416,441,426,423,430,460,428,418,443,445,441,426,428,436,430,435,404,429,421,640,617,609,596,622,636,604,576,619,641,623,621,588,629,577,619,612,616,617,594,625,639,627,618,591,622,636,574,614,567,640,613,620,623,632,611,635,643,635,617,618,581,640,634,601,602,618,497,527,500,513,529,526,513,522,520,545,523,499,518,547,526,561,527,488,508,495,523,543,541,492,522,515,502,484,523,508,515,531,519,542,491,497,539,530,462,474,448,458,476,442,446,493,458,441,453,480,474,490,465,471,459,463,464,492,443,449,470,476,464,485,478,436,454,450,467,468,471,478,436,454,455,457,446,475,455,492,446,442,476,470,452,447,416,490,499,493,493,506,470,506,476,486,500,509,499,490,479,493,491,483,483,499,477,493,492,481,496,487,494,482,479,488,495,468,490,474,468,483,484,481,491,475,491,487,469,469,484,475,463,473,460,462,487,471,468,456,474,477,475,459,463,456,458,470,460,467,461,455,457,451,467,452,470,477,459,467,470,468,450,479,452,472,486,471,456,478,477,453,473,489,431,454,457,446,454,447,450,448,447,448,440,444,440,450,443,448,450,455,447,465,446,451,451,448,436,458,454,448,447,459,448,449,450,448,458,449,449,444,449,455,478,461,445,455,464,467,456,443,447,464,460,454,461,460,458,454,449,467,453,453,461,440,455,447,452,452,456,451,458,456,453,453,449,455,452,452,451,459,465,459,457,451,458,459,456,461,449,442,443,453,448,448,455,466,454,462,450,451,452,471,447,464,458,464,456,459,452,458,464,458,457,453,456,450,464,465,466,457,461,445,454,451,452,466,458,465,465,471,446,464,452,459,469,452,469,453,448,447,456,445,466,452,455,457,447,462,446,460,457,455,453,445,463,452,449,460,459,442,454,453,450,448,449,445,454,455,449,451,463,446,453,448,456,463,456,450,448,449,449,469,449,450,455,462,474,452,442,459,456,447,462,445,462,455,452,458,456,457,452,459,450,446,450,469,454,473,454,443,459,467,452,452,452,461,453,458,462,445,451,451,460,446,446,455,456,467,466,457,455,445,458,444,448,459,451,450,460,447,452,465,439,453,462,462,453,445,452,448,458,461,452,470,470,462,458,450,450,454,458,447,466,446,454,457,460,449,451,455,439,462,449,448,450,466,467,458,455,442,453,438,464,451,461,454,461,446,467,457,455,454,449,455,455,446,459,464,454,453,445,449,449,456,457,460,465,450,441,460,452,451,458,448,460,450,457,448,449,467,453,449,452,451,440,457,454,455,460,458,450,451,459,452,465,453,465,429,449,447,448,450,454,444,446,451,460,453,447,457,456,453,452,462,450,465,453,456,460,439,453,444,464,455,454,445,458,462,463,460,448,447,458,457,449,458,452,437,461,455,441,451,451,447,462,459,470,453,451,460,449,459,455,460,450,458,454,456,454,443,458,447,442,462,450,453,451,446,451,461,455,444,466,449,452,452,446,454,450,449,450,441,457,448,439,445,445,449,460,457,443,443,442,449,446,444,451,443,440,452,451,450,435,442,453,452,439,453,445,444,450,465,449,441,461,451,448,452,463,448,451,453,459,462,440,454,449,453,447,446,447,446,443,448,440,441,447,446,451,436,436,448,457,467,438,447,438,459,450,473,453,456,465,460,471,467,451,454,454,449,457,456,455,452,455,471,450,453,450,562,568,548,560,537,573,586,548,546,561,549,585,565,563,576,542,569,549,590,585,547,569,568,571,588,536,574,556,551,570,582,547,552,568,565,548,583,566,545,572,566,543,598,500,517,506,504,508,532,483,512,508,520,486,488,498,505,497,508,501,511,509,506,505,498,507,513,506,502,492,521,501,497,522,493,480,531,502,497,493,489,469,473,460,477,463,478,463,460,460,466,453,468,461,467,463,465,467,453,478,437,477,460,454,462,460,450,468,468,463,449,459,468,466,467,480,477,468,468,462,442,460,461,456,447,530,490,503,509,485,510,495,486,494,479,525,479,488,504,508,502,532,503,525,525,497,490,475,512,485,481,529,484,485,513,537,500,487,498,500,522,512,523,497,501,465,493,477,482,486,490,499,505,476,500,473,499,480,478,501,493,489,504,489,480,487,482,499,508,484,494,493,496,490,491,488,485,482,493,492,496,487,467,498,493,492,487,492,505,429,493,450,467,466,482,503,528,478,461,486,468,517,510,473,487,488,500,488,461,457,446,456,450,515,506,480,507,495,501,474,502,474,431,459,463,446,523,489,576,612,611,589,615,624,638,641,589,625,610,631,637,608,626,645,594,638,647,604,645,615,613,627,645,619,629,625,577,589,628,628,588,599,652,619,612,617,659,597,591,627,601,628,645,625,561,599,548,574,583,590,578,572,568,561,559,573,591,563,563,579,556,555,577,583,553,564,568,569,538,546,576,567,544,533,566,564,578,583,537,565,563,556,568,576,560,550,525,519,564,561,579,557,566,557,598,481,468,487,490,488,480,483,481,489,477,481,482,489,481,488,493,490,488,476,471,483,488,500,494,475,488,492,475,478,500,501,484,472,492,498,493,496,500,485,468,504,497,478,499,477,495,468,462,558,556,552,545,569,543,545,568,550,550,535,552,553,559,579,562,547,569,548,538,567,557,545,541,534,548,542,561,564,537,568,561,535,549,549,570,550,569,547,557,566,556,556,562,580,551,498,486,486,490,487,500,486,466,505,492,504,453,461,473,470,502,490,502,483,471,486,489,496,477,496,495,489,491,481,505,483,473,501,489,499,486,486,495,485,472,475,526,502,490,513,521,498,486,461,505,494,511,508,500,480,446,514,507,524,464,490,550,465,470,476,537,480,521,460,499,494,494,585,575,558,458,429,508,477,465,491,512,508,579,585,586,575,586,597,581,584,575,581,591,588,586,597,575,593,586,576,561,582,567,571,580,570,580,559,585,584,587,578,587,570,576,597,583,567,574,588,572,593,567,570,622,546,553,541,525,549,495,534,542,522,535,516,528,538,554,508,548,541,531,523,530,571,531,519,522,538,546,568,531,541,540,564,525,513,554,512,539,551,514,541,544,539,558,512,531,542,473,461,461,458,467,463,476,475,476,456,458,482,468,445,465,471,484,471,479,472,445,468,472,470,469,469,465,475,478,471,457,470,480,475,460,487,469,469,468,472,460,477,490,515,542,525,579,538,587,571,585,521,499,538,519,533,545,556,588,553,601,506,553,507,540,518,584,548,547,530,585,600,504,555,513,582,541,559,588,547,522,603,548,555,513,531,539,558,539,553,532,534,530,543,517,532,526,526,529,520,527,508,560,556,539,520,542,509,523,530,539,537,533,524,544,567,548,536,552,523,542,550,540,486,476,486,462,467,484,464,472,482,453,459,473,500,469,456,474,475,466,477,480,480,455,495,466,472,457,494,446,461,477,484,458,445,476,460,479,459,469,466,462,469,453,448,451,453,453,459,448,439,448,449,434,445,454,460,443,441,453,445,452,453,457,456,451,453,453,450,450,458,444,449,443,448,460,449,455,436,448,444,457,450,438,448,447,447,459,446,447,434,441,455,456,449,467,462,452,439,439,455,455,451,465,474,428,450,454,450,452,443,449,447,460,450,450,439,443,454,461,434,447,440,439,453,448,426,458,454,447,427,454,439,440,443,438,443,436,448,454,448,442,433,443,437,442,444,433,433,445,446,432,445,444,459,437,450,448,429,454,446,440,439,443,442,441,435,443,452,438,436,442,438,447,442,435,440,443,439,437,607,566,608,572,567,593,538,536,538,575,595,519,560,519,582,515,593,565,541,517,571,552,544,553,566,550,572,573,575,593,557,563,604,612,584,570,580,557,558,567,570,545,517,518,492,508,536,537,535,499,527,518,535,527,518,522,544,550,508,517,518,511,520,531,517,533,535,532,508,526,527,522,517,515,541,511,517,545,520,522,531,535,524,502,508,472,440,473,467,476,476,453,459,459,471,462,479,461,458,465,453,462,466,452,459,466,470,474,463,466,459,468,450,461,461,449,467,449,442,459,456,463,472,464,464,465,453,460,469,460,476,483,471,589,575,567,581,525,503,572,569,581,606,483,593,537,537,534,521,579,533,566,553,545,553,519,587,538,569,540,576,563,570,549,524,606,568,589,542,568,608,555,584,604,542,558,573,557,607,619,591,578,616,612,611,620,583,603,590,608,581,579,581,619,602,584,608,579,602,583,605,602,608,586,586,587,597,591,581,610,604,584,600,603,590,616,624,603,587,607,599,606,506,489,501,489,502,518,511,494,507,528,518,520,513,514,506,514,521,465,504,489,515,542,501,515,511,538,497,535,507,501,534,533,465,503,514,497,492,506,456,441,503,457,465,458,480,478,447,487,447,468,458,439,470,464,462,475,439,448,452,440,433,461,472,475,480,468,455,476,466,487,453,497,488,468,460,488,472,450,451,565,588,568,607,574,602,568,563,576,545,588,592,558,576,585,598,553,574,569,587,631,584,554,598,581,587,594,592,603,579,592,579,581,598,576,590,561,584,579,623,587,565,601,514,507,511,476,470,449,471,492,468,491,461,484,480,475,468,481,464,451,475,466,478,448,463,485,478,486,490,458,474,485,474,470,483,500,448,499,473,488,498,489,511,449,435,430,448,433,452,427,421,404,424,440,451,437,440,442,445,411,440,442,423,429,442,435,441,431,451,435,435,448,436,433,445,449,431,425,414,440,418,453,431,429,650,659,660,639,639,631,621,611,639,633,627,615,641,655,634,634,606,657,606,637,601,629,622,611,622,645,618,608,634,609,623,648,611,622,640,645,596,611,637,633,612,621,677,631,589,585,609,613,606,585,594,594,614,594,607,599,603,599,562,577,609,637,628,630,597,623,597,576,642,601,626,608,546,619,584,613,575,600,594,592,603,583,657,587,606,601,525,557,547,567,546,553,549,546,521,542,520,523,528,550,561,568,541,561,537,563,509,556,545,546,532,542,542,508,557,550,551,542,550,545,534,536,562,535,540,539,560,468,478,485,443,479,497,453,490,490,468,504,514,476,526,501,484,490,493,517,484,511,505,500,515,489,519,501,489,512,497,501,475,504,458,483,485,501,478,483,495,500,491,498,564,620,624,646,598,579,644,639,662,624,646,639,611,628,657,635,602,613,605,620,617,633,651,656,604,619,624,622,619,606,616,626,584,624,642,656,627,621,630,601,639,655,615,627,616,597,608,616,602,641,622,612,612,620,622,624,630,634,607,619,594,606,625,596,613,612,606,626,615,600,604,600,631,613,622,620,624,615,615,589,611,606,600,610,577,607,578,595,593,576,574,584,564,570,604,589,556,581,608,576,619,602,573,555,575,605,574,581,587,593,591,580,590,581,600,589,566,565,574,591,571,581,514,559,616,585,577,612,558,539,593,582,562,569,630,549,555,591,582,613,580,552,576,606,567,560,610,598,633,516,591,535,549,577,576,578,626,549,581,593,585,530,557,589,587,573,619,610,555,561,595,578,596,584,586,553,589,569,575,578,593,576,595,565,579,559,544,599,592,575,609,557,627,563,589,580,601,568,588,577,632,571,590,593,551,578,553,581,579,564,550,591,523,500,491,515,516,489,506,511,490,512,522,503,507,480,503,524,478,517,482,524,534,492,524,514,492,477,492,506,502,505,514,467,500,470,501,490,518,530,485,494,497,483,435,465,435,455,443,432,467,444,464,441,439,439,458,447,459,454,452,450,461,450,450,449,465,456,461,421,433,472,457,442,443,455,442,459,440,442,441,462,437,435,449,441,607,635,602,617,622,599,591,655,629,652,590,603,618,642,612,608,614,615,558,604,606,641,606,575,622,628,578,632,575,624,608,566,597,592,602,615,617,612,573,638,605,602,538,525,500,530,476,521,525,508,536,538,528,528,511,541,526,520,512,510,503,511,521,507,530,499,526,496,523,530,523,492,505,511,518,511,553,505,512,488,505,532,514,414,469,455,458,457,434,430,469,429,431,432,407,442,452,413,460,432,459,458,414,432,483,463,445,438,448,444,446,452,461,448,473,440,424,433,429,438,589,625,606,604,588,639,582,621,591,567,622,603,621,634,577,605,604,615,616,629,618,616,614,614,619,614,636,631,623,621,612,623,612,594,608,617,628,608,573,605,596,603,614,613,607,525,518,530,527,505,528,521,532,517,516,506,504,513,537,537,488,502,528,501,496,532,532,499,530,503,512,553,487,547,548,516,498,510,504,510,518,533,498,527,524,522,450,489,448,449,438,465,493,451,479,455,459,479,500,469,483,476,479,455,488,468,473,491,492,481,466,478,476,458,496,491,467,469,476,449,499,461,477,456,494,478,483,482,460,472,465,472,480,565,577,576,550,572,571,582,566,558,571,562,561,542,571,568,562,562,568,568,569,569,566,543,556,572,577,574,571,554,554,568,532,535,549,557,593,569,550,563,559,554,565,587,535,556,587,578,562,580,580,586,581,593,566,572,582,594,574,588,573,577,587,576,572,590,564,554,587,589,567,570,564,559,582,573,574,594,571,585,565,569,576,547,569,563,550,553,555,557,567,555,557,547,570,551,551,550,560,657,661,676,667,671,680,674,690,659,662,664,684,671,683,680,666,672,661,668,677,670,667,678,649,673,673,671,672,646,674,658,663,663,677,665,680,656,673,664,666,661,682,667,671,654,672,655,678,667,672,674,667,668,688,671,657,671,663,673,659,671,669,655,671,667,666,671,673,664,671,676,679,666,680,693,674,641,670,679,674,665,674,671,666,668,668,682,673,651,675,679,672,683,669,653,678,665,672,662,680,677,667,673,669,673,671,676,680,675,670,677,671,673,648,661,677,670,655,660,678,674,676,678,664,683,676,674,662,663,655,666,673,657,667,655,678,665,646,671,651,669,680,660,677,649,696,668,656,665,667,676,665,653,680,684,666,679,667,682,656,675,668,659,680,684,682,676,659,676,670,671,672,657,668,689,689,680,673,660,645,696,668,683,676,671,662,684,659,668,669,664,669,667,685,672,676,669,678,663,664,680,686,671,670,676,670,668,668,673,676,667,675,679,676,685,665,686,673,675,676,669,677,686,676,682,669,673,685,655,678,655,668,667,673,679,671,672,666,669,667,677,657,663,662,668,680,690,663,660,668,688,674,660,679,664,685,673,673,673,662,682,655,684,668,682,678,666,662,667,665,668,666,674,677,664,677,674,671,646,664,676,680,675,682,664,692,665,674,660,659,665,663,687,661,674,669,650,670,677,653,694,688,690,675,682,647,682,670,668,663,669,679,674,656,678,658,668,679,668,675,683,693,659,653,687,674,673,661,661,654,675,663,666,674,657,675,656,681,685,664,669,669,676,673,666,659,668,650,664,657,665,687,678,667,675,662,676,658,672,681,662,655,686,671,653,650,672,674,673,669,666,685,670,682,673,670,659,671,668,666,689,678,672,674,653,675,657,680,649,692,671,688,678,674,675,673,659,658,668,683,676,653,670,664,685,681,658,651,681,655,665,675,650,670,693,679,682,673,670,668,685,663,678,669,670,660,663,677,658,677,672,663,685,674,687,698,660,685,670,683,660,660,668,662,647,678,668,678,684,659,668,649,676,669,658,662,670,674,682,653,690,660,669,653,672,676,673,681,684,661,675,690,664,666,670,674,672,671,668,685,663,651,665,683,670,652,666,689,677,663,669,674,696,674,670,678,684,678,676,663,675,666,673,646,675,651,667,662,654,675,646,670,680,668,666,665,666,669,673,675,661,664,664,674,675,666,671,685,688,676,676,669,664,680,691,683,668,684,677,673,672,676,671,649,660,674,667,667,673,660,683,681,671,676,672,676,651,688,671,668,650,670,665,658,677,668,665,648,692,662,662,677,669,673,665,671,675,664,667,657,663,671,674,683,655,669,673,660,665,665,663,670,675,661,680,670,669,675,648,662,686,653,676,672,672,675,653,662,659,661,665,681,681,667,655,681,659,675,676,679,679,655,666,677,677,667,675,676,663,681,652,665,684,669,637,685,686,675,670,668,662,639,665,667,681,684,676,692,678,680,659,668,666,649,659,657,675,669,670,683,663,677,669,680,669,667,674,666,664,679,657,678,671,681,682,675,673,679,664,686,674,673,693,681,667,678,682,661,661,686,668,661,680,678,659,653,672,663,661,655,659,676,667,681,661,661,659,683,692,660,674,673,672,665,693,679,662,661,667,676,691,653,659,667,678,667,675,674,674,671,675,675,659,674,669,686,674,671,668,665,685,667,660,673,677,677,680,663,667,675,676,684,658,676,661,668,687,666,673,661,685,660,667,680,679,645,665,686,681,657,648,688,657,664,672,681,661,654,655,672,653,673,663,671,681,677,670,679,663,682,679,672,664,677,672,666,677,681,649,674,675,681,664,661,648,670,674,683,655,665,649,644,661,662,673,670,671,678,671,664,678,675,676,659,669,678,665,649,676,684,692,663,666,664,696,675,670,672,690,666,676,677,659,672,680,663,676,682,676,667,671,655,666,677,682,664,664,672,672,665,661,664,671,647,673,666,669,681,663,680,671,677,688,661,666,687,674,683,664,670,674,664,673,676,674,685,664,666,657,675,648,689,648,663,667,689,655,676,670,671,678,678,678,685,674,675,666,658,657,680,681,641,691,683,666,674,667,653,669,668,690,667,682,658,685,685,675,655,670,665,659,660,671,666,666,650,671,675,675,663,684,663,672,669,662,666,679,667,674,659,676,681,662,666,672,662,660,675,660,678,666,660,681,660,665,664,656,673,673,649,656,669,672,673,681,672,678,674,647,674,685,688,668,662,674,675,677,675,680,678,677,668,665,659,670,671,657,662,669,683,676,666,666,673,674,669,676,665,677,644,684,676,655,685,669,687,664,659,671,645,670,663,668,642,670,665,677,671,663,681,674,665,680,661,682,677,667,668,684,663,673,669,664,670,669,690,660,672,688,675,662,670,687,668,664,669,667,676,663,679,657,662,649,667,661,671,683,664,676,676,675,669,680,666,662,674,666,671,678,679,652,670,666,667,677,668,666,651,671,684,653,661,680,668,693,663,680,655,666,661,665,674,673,659,664,664,654,681,673,667,671,667,661,658,677,660,664,656,667,665,682,665,675,664,672,678,656,654,663,671,657,681,677,690,674,663,658,654,661,701,665,667,673,679,665,664,668,657,667,661,658,678,673,650,673,659,676,657,670,657,668,695,692,667,671,663,677,677,673,661,657,682,686,685,680,663,672,665,665,677,666,676,676,667,670,655,673,661,670,670,672,675,680,674,668,664,688,644,661,678,666,650,658,669,668,671,689,662,671,673,687,673,666,673,668,649,673,672,667,672,682,655,666,670,660,691,670,684,665,684,682,675,676,666,657,667,669,687,675,671,664,670,663,665,672,674,670,677,668,673,677,670,665,676,690,676,676,681,679,641,665,675,667,666,664,675,675,674,665,670,675,683,667,682,663,670,664,671,682,682,667,661,681,673,673,658,665,649,659,658,685,669,672,661,682,671,692,685,655,663,665,655,664,665,675,678,662,674,668,661,675,691,668,677,689,671,676,672,670,673,666,663,666,668,663,659,661,671,682,663,693,675,685,661,675,674,674,680,668,688,665,668,658,669,676,676,663,683,669,687,656,655,654,677,669,656,673,676,664,669,686,677,662,676,653,663,681,663,662,655,653,686,666,657,671,675,682,679,660,667,676,646,658,692,673,681,648,670,679,678,658,671,669,657,670,680,663,680,679,680,658,658,688,653,658,683,681,685,672,698,686,663,661,672,685,646,687,673,652,675,652,662,672,669,665,659,662,668,665,676,674,658,673,672,674,681,667,663,668,659,683,682,672,676,664,662,669,674,682,661,682,686,662,678,666,655,677,654,671,682,663,653,660,678,680,667,666,668,660,668,675,643,661,669,699,665,694,666,685,676,656,670,674,662,660,652,665,680,665,671,677,677,673,678,678,684,665,653,681,666,660,679,681,660,668,673,681,672,662,660,678,672,670,661,665,664,666,681,675,662,677,672,675,646,673,655,661,667,669,671,682,674,680,654,680,650,656,671,667,673,693,646,666,671,669,675,663,663,667,655,644,662,681,651,682,679,671,665,685,675,664,668,658,668,678,675,673,661,676,655,670,665,664,671,672,656,667,679,680,668,660,690,683,657,674,680,653,670,674,675,666,676,665,674,676,655,670,663,675,678,672,670,674,675,664,676,676,672,672,667,681,676,663,660,665,659,675,661,668,663,669,654,690,667,672,664,665,667,662,661,663,669,668,673,678,663,653,667,675,657,673,668,675,653,672,679,669,653,671,675,658,666,680,679,691,668,663,675,672,649,671,677,677,679,668,674,686,680,657,649,664,679,679,681,667,675,646,679,680,665,674,668,670,679,666,675,677,674,671,663,688,666,652,657,672,678,674,688,670,686,661,673,667,649,648,659,671,669,648,673,655,678,666,653,655,683,662,664,680,690,684,684,694,667,678,675,659,673,676,681,676,660,675,648,663,684,661,676,669,669,682,654,687,645,666,672,681,666,681,674,650,669,658,656,679,670,678,664,674,680,671,648,664,670,683,668,663,666,677,644,664,664,679,672,674,673,665,671,686,662,669,663,669,674,672,655,674,674,673,674,666,674,666,672,666,668,671,668,658,654,671,663,662,662,691,683,665,666,681,669,671,673,660,673,676,678,685,661,673,662,676,677,661,663,658,657,669,671,686,686,681,671,663,671,673,662,665,660,674,681,646,679,676,665,662,689,659,658,676,667,657,666,654,674,685,672,665,665,649,678,655,672,689,663,686,671,685,686,667,658,667,665,672,660,651,668,669,668,668,656,658,689,675,661,674,645,673,683,667,669,667,689,672,686,675,678,680,681,667,671,660,669,667,687,670,657,669,662,683,663,665,679,665,674,661,681,680,642,652,671,666,665,677,669,652,665,674,666,689,665,659,669,660,681,670,678,677,678,643,676,667,655,659,677,681,658,657,689,670,652,662,689,686,673,684,676,698,675,661,672,662,689,662,666,672,674,665,668,656,678,672,669,676,659,672,652,662,673,685,663,671,663,675,657,674,669,670,666,667,678,677,663,658,650,675,661,657,680,661,684,666,658,646,685,676,679,659,676,672,681,674,675,668,675,645,656,658,670,668,681,667,676,663,667,666,675,657,665,669,675,658,667,654,669,648,665,659,675,648,659,670,664,668,669,649,667,651,665,666,665,663,666,679,667,673,665,655,679,682,667,663,648,671,665,657,668,665,677,672,666,670,648,668,690,648,669,667,673,677,672,684,658,670,679,683,677,668,656,678,677,691,671,661,659,679,670,663,665,660,669,674,669,672,687,678,665,668,669,680,676,668,669,667,662,681,691,664,675,664,679,659,667,665,665,675,651,672,682,679,682,663,668,668,679,684,669,677,669,652,662,678,668,672,664,672,680,658,684,672,660,682,647,655,654,676,645,666,670,659,693,662,653,684,674,657,646,659,669,663,661,664,680,667,671,671,672,665,668,675,675,691,683,671,661,679,685,673,672,666,685,664,676,682,675,675,683,670,674,669,675,695,679,657,663,675,679,684,664,678,673,679,644,662,661,672,695,681,655,678,686,660,664,668,654,670,686,667,666,657,680,652,664,658,674,649,656,662,673,670,654,678,670,681,671,693,678,682,669,669,682,671,671,668,664,674,677,657,675,676,650,688,690,671,662,669,670,664,657,661,690,674,679,669,666,679,664,649,661,660,680,655,659,673,664,676,677,663,667,682,664,654,660,662,671,683,668,665,671,658,664,659,675,664,686,684,670,667,675,674,680,683,677,670,664,673,665,674,665,660,675,670,665,677,667,668,662,681,685,678,662,676,669,672,664,669,697,672,668,663,668,673,691,659,685,662,669,670,664,677,675,649,652,662,665,684,674,679,670,688,671,688,678,662,688,665,668,663,664,670,664,661,681,658,685,660,675,673,668,667,664,673,673,667,664,671,663,669,648,668,668,678,668,665,684,679,676,673,670,659,658,653,693,669,663,675,670,646,678,651,670,662,676,668,658,673,668,656,657,671,675,681,678,689,672,656,664,665,683,672,667,689,678,651,682,665,669,678,683,680,658,676,658,671,683,671,688,659,674,665,674,670,654,661,677,671,657,670,672,683,676,681,663,673,660,662,679,683,689,658,646,675,677,685,671,654,677,668,666,672,680,664,681,671,682,670,682,686,669,661,667,669,675,670,661,659,661,661,674,661,671,652,669,664,673,686,667,668,667,664,669,661,673,676,654,661,685,664,668,669,685,670,651,667,673,667,658,680,672,678,683,680,653,679,675,659,665,648,678,668,667,669,674,661,689,670,663,666,667,665,654,669,661,674,669,659,677,652,672,683,673,674,682,686,672,676,665,667,666,691,653,660,660,678,653,677,661,663,677,669,684,671,660,652,679,679,666,670,672,666,671,665,669,661,689,671,672,657,678,685,689,667,666,664,678,662,668,667,648,682,657,674,665,660,669,667,670,665,679,671,663,661,651,672,649,672,669,662,673,680,675,648,665,675,681,679,669,685,664,667,663,666,672,668,674,689,670,655,664,651,672,685,673,670,685,670,681,650,649,670,667,653,661,664,671,656,674,662,671,670,663,676,665,676,646,667,655,670,671,660,654,676,669,651,666,669,666,663,666,653,659,665,666,679,678,660,684,663,655,675,676,660,666,665,680,675,668,649,652,655,664,661,680,673,690,646,661,687,669,673,677,672,669,655,671,688,682,663,670,657,666,693,674,672,681,669,661,652,679,665,680,681,672,675,685,662,673,672,679,671,688,660,663,642,663,680,671,672,669,664,665,673,659,670,674,663,670,682,645,661,667,675,674,664,685,670,660,662,673,679,664,662,695,693,681,668,684,661,665,666,659,659,670,675,681,641,662,679,666,672,652,684,673,653,679,660,684,655,657,664,667,673,662,675,663,681,674,689,673,671,653,666,682,673,684,668,665,647,665,684,668,671,663,656,677,677,668,682,675,675,661,670,661,669,675,665,682,652,673,680,667,680,671,655,655,661,663,674,657,691,671,681,663,673,675,668,671,669,674,680,658,663,658,659,670,681,666,675,667,653,684,680,666,677,672,657,653,664,657,660,660,665,670,661,668,677,687,662,652,672,676,672,667,671,670,669,670,642,662,640,671,664,674,674,666,680,686,668,670,675,675,671,682,657,655,681,663,671,681,673,647,662,681,667,664,647,652,664,664,670,673,657,687,681,681,682,667,661,652,688,664,648,681,657,677,690,661,662,679,687,659,674,672,666,676,663,668,676,659,652,659,662,657,684,667,680,688,682,670,655,680,680,662,667,659,679,667,683,671,671,670,684,678,677,682,678,658,674,671,669,690,669,654,659,670,675,664,660,671,674,672,682,668,655,685,663,665,668,674,676,689,665,675,681,674,674,656,654,683,675,671,673,678,662,659,667,666,678,682,680,664,672,677,676,661,680,675,659,669,674,662,664,655,679,683,661,668,681,657,662,669,696,668,671,673,663,673,665,659,666,684,655,679,669,689,681,678,657,674,674,664,657,659,673,658,674,677,671,666,669,662,680,683,675,667,666,675,661,679,667,675,677,657,671,673,667,662,684,669,663,651,661,663,654,681,668,679,672,654,666,672,666,668,675,662,640,674,670,661,666,677,662,660,670,663,681,666,674,661,684,681,681,665,676,666,665,672,683,674,670,672,688,667,689,653,688,678,679,668,670,669,669,673,688,685,673,671,648,656,672,670,665,692,679,654,689,669,680,652,672,679,676,666,672,685,683,664,665,660,673,665,660,659,682,683,682,661,669,694,674,686,691,683,643,672,662,650,661,660,661,664,676,690,678,674,675,666,667,660,661,656,671,669,673,659,674,662,666,653,672,653,671,672,667,655,678,678,674,662,670,673,687,669,664,671,667,680,668,671,682,675,672,702,681,658,669,675,649,665,664,673,674,665,670,662,675,675,666,666,678,674,673,651,678,675,683,677,655,673,672,679,659,676,665,678,659,647,677,677,668,670,685,671,664,668,663,681,647,668,683,670,674,661,655,670,672,655,670,687,681,694,684,670,692,661,690,640,672,675,659,658,685,662,665,671,669,671,673,671,669,671,672,662,677,663,666,674,666,684,664,661,670,680,674,676,671,658,671,673,682,653,684,652,642,675,679,676,669,664,670,674,667,657,656,675,664,655,683,669,656,690,659,665,663,675,633,683,672,663,677,664,663,672,670,679,680,674,649,681,683,678,662,683,674,678,666,676,671,675,696,679,668,652,675,679,660,662,657,681,679,678,661,677,686,673,668,673,667,670,646,687,665,677,681,679,669,658,674,667,672,674,667,678,671,670,669,679,665,680,679,671,664,676,677,672,678,673,655,673,644,680,676,679,673,664,670,677,653,660,680,663,666,670,687,654,660,664,642,663,672,654,680,660,664,668,664,666,656,669,675,678,680,653,678,659,671,672,665,661,688,671,656,671,665,667,672,681,676,656,689,675,660,655,678,691,676,670,679,674,677,653,669,661,680,671,674,680,675,658,658,679,665,680,665,663,669,671,653,697,648,662,668,681,674,654,675,651,669,666,652,669,666,683,661,685,652,683,671,670,678,671,660,653,651,670,669,659,682,652,681,660,693,670,666,663,653,671,672,681,672,674,663,661,658,677,660,671,680,667,663,658,671,665,675,674,665,676,670,649,679,679,657,673,664,672,667,669,668,675,680,692,668,675,675,674,665,647,672,673,672,659,681,664,668,676,667,668,689,658,687,674,661,683,672,676,659,672,683,668,665,656,676,660,657,677,658,673,658,677,663,672,694,671,659,680,667,671,685,681,678,675,656,672,666,673,670,660,669,677,662,653,659,679,658,683,668,683,673,669,667,680,655,665,662,660,673,666,661,669,669,655,663,680,674,691,682,669,665,661,680,684,668,674,679,675,664,654,673,662,657,677,672,658,669,696,664,672,679,667,679,667,679,663,679,663,682,683,671,685,675,650,673,684,657,662,664,672,677,670,655,675,673,655,666,667,699,671,674,663,672,678,679,655,672,654,667,684,663,676,664,653,683,666,668,688,671,660,687,660,673,679,678,693,664,667,681,669,671,680,676,660,679,684,685,678,652,676,667,668,654,685,658,673,679,669,681,658,668,655,667,652,683,690,657,675,669,665,665,667,684,677,666,679,672,675,649,660,648,698,681,675,686,673,674,659,693,678,664,663,672,686,677,680,682,671,671,655,675,671,673,670,684,672,677,659,663,658,669,653,682,667,680,678,659,649,667,660,664,675,668,664,660,677,674,670,669,671,665,661,663,666,665,659,654,669,686,672,672,661,687,691,654,662,675,647,670,678,660,664,688,658,663,653,660,675,678,652,676,672,662,664,669,659,654,686,678,679,655,670,683,665,682,677,686,671,679,685,671,658,652,687,670,657,661,676,660,678,683,688,659,675,675,666,660,649,662,683,665,668,670,676,647,662,667,669,665,666,670,648,681,661,673,652,662,656,677,670,664,679,653,683,654,671,670,672,650,667,673,661,670,662,671,675,663,674,678,684,679,677,675,673,667,677,657,659,665,674,675,666,676,668,659,669,667,667,685,679,667,684,685,667,667,667,659,674,686,674,664,659,669,673,654,665,685,663,668,667,664,677,683,659,673,665,665,662,677,676,654,663,677,678,661,665,659,659,666,662,684,665,679,664,666,660,683,655,667,681,688,670,662,668,667,676,674,682,665,667,668,671,678,670,647,685,664,675,672,669,668,680,645,650,674,679,670,673,655,686,672,667,665,652,667,669,676,672,673,674,667,679,681,679,681,681,664,660,670,673,676,681,670,681,671,690,675,667,670,673,644,662,676,669,687,650,667,683,677,671,673,664,673,681,686,685,663,671,675,672,684,663,666,653,658,673,668,670,673,679,644,652,675,662,686,668,665,670,674,662,661,669,679,674,665,664,648,664,663,665,682,689,682,661,682,655,674,672,660,658,662,685,659,665,670,673,683,677,665,676,694,682,692,677,658,656,685,664,667,671,685,680,666,671,667,677,684,658,679,673,684,662,687,663,665,686,689,656,670,668,661,671,675,657,673,677,661,683,677,678,666,677,662,677,668,664,671,677,690,658,674,679,671,677,662,675,671,660,676,685,657,680,678,644,689,666,684,685,681,672,670,680,672,681,680,660,663,669,669,654,674,678,671,672,662,692,684,651,665,677,658,674,663,675,683,683,671,669,666,675,656,660,677,669,679,670,671,661,683,657,657,672,656,658,670,681,666,654,675,671,671,671,667,682,678,670,672,667,680,694,670,685,680,676,684,664,679,659,662,673,681,669,679,663,668,677,674,667,638,671,668,672,675,667,671,683,657,658,659,666,678,665,667,687,641,675,658,674,685,677,679,679,656,663,651,669,665,659,669,665,665,674,662,670,686,672,661,665,658,667,684,665,680,668,669,676,666,688,672,652,662,657,655,680,673,658,666,665,671,655,670,671,671,677,671,673,671,681,665,659,673,662,682,692,667,676,689,679,646,657,673,652,668,674,657,664,677,673,671,667,676,653,681,678,684,674,683,665,663,673,666,666,669,671,665,673,668,665,677,665,674,646,664,668,658,663,671,679,656,673,666,664,669,665,682,673,686,669,672,668,674,657,678,666,669,663,676,675,686,667,667,659,668,665,673,674,695,656,658,667,675,654,677,692,660,667,669,683,671,657,677,671,661,655,664,673,675,675,670,671,664,673,654,674,655,677,690,674,639,668,678,684,667,667,664,678,671,671,677,678,682,659,656,687,666,654,675,680,669,676,675,658,682,661,661,672,676,665,656,673,661,674,682,650,660,673,669,675,679,651,667,672,670,652,671,663,688,675,670,678,675,670,670,658,675,652,673,668,702,680,669,677,680,676,670,663,675,685,674,661,655,682,674,666,679,683,667,677,680,677,666,662,653,665,674,665,676,675,664,674,667,674,656,663,661,675,659,665,644,661,678,681,683,662,672,674,664,671,667,670,666,669,660,651,669,660,655,652,665,679,682,685,658,668,690,667,674,661,660,665,663,659,671,669,668,693,681,665,683,679,687,667,665,683,675,666,663,676,678,659,689,665,659,653,659,667,669,669,667,686,676,649,686,679,675,648,674,660,671,677,671,670,665,676,671,672,660,664,675,661,671,676,682,666,688,682,655,654,671,672,677,664,662,657,660,655,689,656,679,676,681,671,681,686,653,671,646,676,682,668,692,673,681,692,651,667,676,664,680,699,671,670,671,676,673,661,676,686,683,663,659,662,678,672,675,659,671,670,649,669,663,696,647,668,671,674,661,688,656,663,662,674,668,650,666,668,665,661,657,651,678,664,676,674,655,682,679,666,661,674,661,671,672,629,654,668,680,666,680,672,678,654,663,682,662,673,677,676,666,677,670,674,660,656,673,664,678,682,681,660,697,662,670,669,673,661,682,702,664,657,669,671,679,666,687,675,684,665,674,668,650,678,644,686,665,657,675,669,685,659,668,680,666,677,657,684,673,669,667,684,668,681,669,679,678,668,668,656,666,676,673,653,680,646,676,676,670,670,661,670,665,677,664,668,686,661,679,661,668,672,671,652,659,669,659,670,685,661,661,671,670,665,671,644,685,675,664,662,674,673,682,671,685,698,667,660,675,679,664,684,654,659,663,674,671,685,654,673,666,652,661,681,670,680,668,678,680,674,658,673,674,675,689,676,669,655,663,679,664,680,663,669,662,672,652,659,665,649,679,664,667,668,675,670,666,677,659,658,670,674,653,668,669,654,662,672,691,676,674,676,669,671,685,647,688,663,673,678,663,656,663,660,653,675,659,680,648,675,670,652,672,671,678,687,663,663,648,685,665,688,684,665,696,667,667,674,679,670,662,672,676,675,671,684,672,661,677,665,677,664,668,673,671,669,664,673,660,677,673,669,663,680,663,676,665,666,660,672,658,661,658,653,677,682,674,665,671,666,648,675,672,682,671,671,652,668,687,661,684,674,676,686,666,658,654,663,662,670,660,662,677,657,671,669,651,673,673,671,683,676,665,668,684,671,660,663,678,660,654,658,664,661,675,673,665,653,680,672,673,656,672,664,671,680,665,680,659,673,659,666,662,664,664,676,659,634,672,655,675,652,681,675,671,671,676,663,670,672,674,669,677,682,663,666,666,677,674,676,645,670,669,655,663,672,668,649,663,683,651,676,673,682,664,671,689,668,652,668,688,652,671,676,673,670,662,679,655,671,670,678,686,664,661,673,683,676,672,674,661,682,671,659,659,695,659,658,675,657,664,661,641,675,666,657,660,680,660,683,665,670,667,668,689,677,662,669,669,669,658,664,672,663,669,672,666,651,675,668,662,685,660,669,669,648,657,675,689,678,682,676,655,695,662,682,674,659,668,642,670,671,674,670,665,682,672,657,660,670,656,657,692,680,672,658,659,681,657,663,679,690,657,670,687,655,680,638,662,650,675,680,675,667,669,666,650,664,670,656,650,682,673,682,659,670,664,688,680,670,675,678,677,686,671,683,663,677,667,663,657,643,663,658,665,691,668,670,673,666,656,668,658,679,667,680,667,669,662,675,670,667,657,654,654,656,674,679,662,667,664,668,675,652,670,690,691,693,660,665,672,664,645,659,664,676,677,683,665,665,646,672,666,680,662,676,659,673,684,665,682,670,655,668,686,671,673,673,667,668,682,650,670,660,660,649,661,659,670,659,661,656,684,652,670,653,666,666,665,676,665,678,677,659,657,680,684,692,664,674,687,684,665,687,673,666,680,669,663,673,684,682,672,661,671,670,671,679,677,667,651,684,673,671,678,649,673,676,676,679,673,679,669,660,662,655,680,654,689,687,654,666,676,673,675,679,672,675,666,664,674,669,660,667,660,658,681,686,673,671,671,681,677,671,665,668,679,689,671,667,671,684,659,672,674,663,669,666,668,643,657,673,664,675,683,677,688,672,675,656,663,681,656,683,685,684,689,684,676,654,677,668,663,658,675,681,676,683,669,668,665,680,671,678,653,685,672,654,668,661,673,668,671,678,668,659,691,683,686,682,678,669,645,665,669,671,663,686,679,668,665,669,675,654,678,664,667,675,682,661,662,666,659,663,691,659,668,651,689,696,670,664,665,668,685,675,654,683,664,664,646,674,674,677,674,667,655,677,663,681,666,679,670,667,685,668,661,676,669,670,656,662,662,659,694,670,668,660,663,678,653,674,678,658,678,671,675,663,672,679,679,686,673,670,687,672,666,673,659,673,671,687,688,664,674,672,668,671,677,682,665,649,671,667,675,689,683,675,669,666,651,672,662,666,661,673,653,674,670,682,676,655,679,662,679,672,659,669,662,679,679,677,672,664,680,673,663,664,654,680,676,671,658,679,680,666,650,668,689,683,679,664,672,686,675,683,669,669,666,661,675,673,657,668,672,658,662,669,675,678,656,672,672,671,654,681,677,673,663,701,668,655,657,673,690,665,667,673,676,666,668,668,661,656,670,691,663,658,667,677,677,653,674,672,681,680,677,673,654,681,669,675,660,675,685,661,697,663,664,673,672,672,692,668,676,670,668,668,676,661,673,654,682,657,678,696,667,676,669,673,665,660,662,680,678,671,676,669,676,672,673,682,676,655,664,667,643,671,672,664,667,666,673,667,669,668,667,661,667,644,675,678,662,667,673,661,682,657,674,662,673,685,674,678,676,660,670,680,663,667,660,657,649,669,660,666,674,685,674,663,666,659,678,666,684,665,672,676,687,662,661,675,647,672,671,647,683,675,668,674,668,662,679,679,673,671,670,667,659,675,673,668,668,678,667,652,677,676,656,660,671,661,679,645,666,660,652,674,668,671,684,674,669,676,668,671,677,663,680,664,671,668,676,677,679,661,659,669,664,674,676,676,656,655,669,670,674,694,684,673,678,665,682,679,677,671,674,673,669,669,661,663,671,657,672,672,672,652,657,667,670,673,654,668,669,670,690,677,669,665,665,649,645,654,665,659,667,673,663,661,664,666,667,671,677,657,679,662,670,675,674,675,679,673,667,680,664,672,664,675,672,680,677,683,673,669,667,694,665,662,662,655,670,671,670,678,660,678,677,658,676,656,676,656,670,662,674,648,661,680,662,675,675,681,668,663,658,680,669,657,660,662,679,673,646,675,649,697,675,678,665,667,660,665,659,670,670,656,681,665,659,665,670,668,653,685,663,680,668,672,668,670,653,693,688,668,673,665,656,670,662,675,670,679,675,679,668,680,682,680,661,670,669,658,687,670,676,661,673,655,670,669,671,694,671,677,684,672,685,663,669,659,683,679,661,661,660,660,680,683,666,675,652,678,664,670,664,672,679,656,666,674,670,679,659,676,661,677,670,660,676,651,666,673,696,670,656,684,688,672,672,658,665,682,655,661,661,678,689,677,677,666,667,670,671,658,667,673,675,668,666,676,679,660,681,669,678,681,681,676,668,679,672,665,662,660,661,682,660,668,661,683,664,686,667,661,660,662,669,667,683,663,655,649,676,670,664,659,675,660,672,665,670,685,671,675,659,673,665,657,664,676,663,668,663,669,675,677,656,665,671,683,656,666,655,663,666,664,672,676,675,663,655,679,660,678,680,661,670,686,664,659,664,678,642,682,636,672,663,670,667,690,683,670,678,659,671,673,693,676,684,683,662,670,647,670,681,679,677,667,657,673,669,684,661,661,675,674,649,661,683,673,674,664,694,661,659,667,675,678,675,671,663,664,686,658,673,673,667,693,654,672,680,670,680,677,668,671,666,664,680,661,677,678,662,668,658,691,680,665,682,676,658,667,678,660,663,683,661,693,676,671,689,667,670,668,672,665,659,660,669,687,675,668,679,662,678,680,660,649,676,679,667,662,679,671,670,667,670,675,659,668,676,672,669,665,666,655,665,666,675,667,667,671,672,664,674,686,675,659,682,679,656,667,658,668,664,653,691,661,670,667,664,667,678,666,677,646,656,678,668,656,698,654,667,662,675,663,661,672,664,639,665,672,663,679,677,658,661,659,657,676,672,686,668,688,679,677,657,658,681,671,667,666,683,670,650,688,664,655,665,677,670,674,660,653,682,676,674,668,675,675,658,680,675,665,669,663,680,673,673,675,684,662,665,661,684,680,674,664,690,673,648,662,670,662,676,680,666,678,685,680,700,660,686,671,673,676,659,670,661,668,668,667,656,667,658,670,662,657,683,684,646,677,650,660,659,665,649,665,654,668,676,662,666,675,666,679,677,670,688,658,670,684,665,679,667,664,676,681,687,656,673,688,660,673,681,669,679,673,671,659,653,667,663,681,682,675,657,672,664,669,667,685,670,646,672,694,642,646,647,653,631,669,657,636,635,644,655,642,647,660,667,658,667,661,660,658,654,644,672,655,647,662,648,659,657,639,660,644,668,656,661,658,650,655,650,655,650,648,659,601,579,602,606,613,600,590,601,588,604,597,599,572,577,585,565,596,587,604,568,566,605,610,581,570,588,598,597,621,589,584,590,583,608,612,594,587,598,616,586,594,605,597,583,619,608,707,696,736,710,708,743,700,744,757,710,694,729,731,718,762,748,690,752,703,722,822,714,743,714,722,688,682,795,728,727,671,727,751,716,697,713,770,706,751,708,662,772,733,771,745,722,710,736,712,719,753,697,728,721,731,737,727,707,711,713,708,716,746,724,707,729,706,722,712,722,756,692,729,726,732,740,746,716,731,759,713,720,710,732,715,715,624,617,661,628,581,616,629,624,621,630,615,624,599,581,606,617,620,639,612,590,599,615,589,597,647,634,629,606,643,612,643,604,614,634,634,653,593,613,529,538,526,535,534,535,525,535,536,537,526,550,534,525,531,540,530,538,541,524,546,530,530,539,521,547,522,536,534,533,540,543,539,522,536,537,539,523,536,526,525,534,515,527,517,513,531,512,516,521,526,522,510,517,530,519,513,500,505,519,511,523,521,528,541,502,520,528,520,527,528,528,519,521,518,523,529,527,530,510,530,525,530,527,515,686,689,716,712,723,670,699,687,710,674,704,715,704,667,705,700,717,665,711,689,722,729,655,709,719,681,749,700,738,713,683,702,682,694,684,658,688,660,716,653,683,711,713,686,679,683,696,686,697,672,698,656,705,698,682,680,683,672,689,705,674,700,692,722,695,690,680,685,681,698,686,696,685,705,684,702,672,682,709,713,690,708,682,685,684,671,690,699,723,653,654,646,668,653,642,638,678,651,653,675,698,661,662,643,666,656,686,650,654,657,646,642,656,670,627,638,664,669,652,656,658,672,667,662,638,665,644,674,685,652,650,646,582,597,569,571,569,580,583,584,587,583,582,571,586,590,584,553,567,576,584,575,581,572,569,590,574,580,588,593,581,588,579,593,579,578,588,579,575,583,594,585,691,699,702,699,677,711,704,705,688,708,721,685,708,684,686,690,698,686,692,718,715,713,693,701,710,716,684,707,701,701,715,694,688,709,706,699,695,693,700,685,685,680,679,687,660,692,692,664,687,682,689,682,658,664,673,663,679,682,678,677,655,681,666,661,670,677,688,666,653,632,659,678,664,666,686,666,675,683,666,669,668,686,685,695,622,607,604,613,624,594,617,630,613,622,622,594,641,631,599,609,609,622,608,623,625,604,611,624,623,616,601,605,643,613,605,596,634,615,624,625,615,645,614,608,598,635,628,625,597,568,580,579,596,595,579,572,581,586,589,590,581,608,571,570,607,574,566,575,584,579,593,588,585,583,574,575,580,568,580,594,562,578,588,582,593,589,575,593,590,561,555,573,535,561,538,563,560,561,552,560,556,547,554,542,538,554,557,561,547,560,541,545,563,562,550,553,557,554,548,552,544,537,546,550,539,561,534,566,562,547,551,540,560,560,693,686,714,704,696,701,703,684,706,688,711,692,729,708,714,696,688,704,716,703,701,715,736,702,706,681,686,701,717,717,718,704,694,703,705,700,691,700,707,676,701,696,673,666,685,655,667,659,679,660,683,685,665,673,656,673,673,664,671,660,662,672,677,665,670,671,663,652,675,650,652,683,675,657,678,678,677,684,636,660,672,667,673,690,685,675,668,593,599,601,614,629,610,599,597,634,601,621,618,629,592,603,597,595,586,593,621,625,601,617,600,599,623,635,617,604,606,602,601,606,616,614,622,609,610,602,634,601,613,624,632,598,751,701,716,748,739,748,761,720,745,753,695,716,754,702,675,748,705,767,750,771,732,736,706,700,719,719,700,680,741,712,692,724,755,663,742,701,759,684,690,731,721,722,697,729,712,710,709,704,670,703,692,724,712,702,741,717,731,716,718,675,709,731,701,722,727,738,736,703,723,708,711,712,713,736,725,757,676,713,701,685,702,692,679,656,712,702,678,694,681,687,645,705,684,687,689,704,690,704,697,718,694,681,717,729,687,700,680,668,714,693,664,704,682,659,718,675,641,660,645,665,623,625,612,675,653,616,619,631,665,632,638,684,637,700,661,654,656,652,654,656,681,629,641,618,633,683,625,641,639,626,658,655,659,675,637,634,637,651,647,600,613,591,601,610,575,589,581,605,604,599,594,605,597,606,590,594,579,602,593,591,592,593,612,585,598,599,601,585,592,597,610,588,598,598,600,588,593,592,589,585,621,619,706,729,661,697,700,742,746,699,743,729,721,743,751,710,740,722,732,756,698,677,717,752,691,697,764,731,701,692,661,730,738,730,679,697,740,665,735,678,743,694,735,723,746,731,697,731,730,696,696,703,701,707,718,711,719,721,725,685,704,724,673,692,702,704,705,713,721,727,734,716,718,740,687,685,716,713,693,701,710,706,698,707,694,705,696,746,714,691,695,705,727,719,688,693,733,686,659,652,648,640,671,670,629,672,634,663,650,646,643,650,649,689,643,645,645,654,657,671,665,654,669,639,640,677,637,623,670,691,668,635,659,639,655,681,646,656,654,681,633,656,628,675,692,690,652,697,689,631,670,700,681,677,678,633,663,700,645,677,680,676,699,637,673,704,699,691,649,683,681,674,661,627,706,686,671,654,675,672,678,588,606,591,617,609,611,587,592,585,612,631,611,599,611,601,606,600,606,618,606,621,610,603,616,611,599,610,598,586,620,609,607,601,616,598,601,608,603,585,605,536,622,603,601,620,627,583,568,608,654,589,569,619,624,628,582,570,632,581,591,613,600,626,570,584,582,634,633,563,661,581,564,576,611,610,565,622,554,568,616,615,557,650,622,539,596,580,575,600,570,588,593,587,593,584,587,592,591,568,595,595,571,583,593,593,592,600,603,582,591,586,568,615,587,591,588,584,580,593,565,594,587,582,568,559,566,559,573,579,567,568,569,565,551,574,566,561,566,566,567,559,578,559,561,570,574,576,570,565,558,561,570,573,575,559,572,562,564,559,566,565,564,565,563,551,559,572,561,556,563,568,580,568,552,556,568,553,528,562,552,545,553,540,536,550,550,545,542,555,548,537,549,548,557,543,541,548,550,553,551,548,550,547,537,540,553,559,550,554,544,557,547,554,545,551,547,541,533,550,552,552,537,717,666,690,681,676,689,588,704,661,674,671,706,664,686,638,652,707,651,643,658,689,665,712,655,697,673,633,680,689,661,657,686,692,702,681,663,665,671,684,666,667,691,639,736,640,589,619,596,593,597,584,604,617,604,599,577,583,588,608,568,585,590,604,589,584,582,611,561,574,598,607,584,592,595,578,603,578,614,611,615,604,570,568,617,587,575,591,597,555,580,577,563,579,583,571,585,566,559,583,569,586,561,568,571,568,600,588,578,552,558,587,552,573,571,553,548,587,598,598,562,562,592,595,558,571,580,569,568,543,574,568,557,687,662,676,680,670,677,692,675,670,678,665,685,659,660,685,683,652,674,683,674,676,670,668,702,675,666,657,682,684,683,670,685,696,683,662,678,697,680,676,689,725,681,675,673,675,682,681,679,687,680,683,665,676,658,677,674,673,674,672,703,701,676,701,655,664,675,671,675,672,693,678,683,695,687,686,672,679,670,688,663,668,673,680,677,679,755,718,732,749,737,747,745,710,735,735,736,768,747,752,735,740,753,739,730,757,755,750,762,769,736,703,767,745,763,730,765,707,741,744,792,739,736,731,765,713,757,776,715,726,737,758,758,736,749,717,710,736,713,708,702,754,715,714,713,724,719,800,737,728,729,726,741,751,711,769,714,742,739,779,751,710,713,710,734,714,706,746,737,736,671,710,688,673,689,744,713,680,700,688,691,725,682,702,695,709,692,719,713,710,696,686,717,703,720,741,728,682,706,728,697,695,665,695,682,700,723,665,663,693,684,609,613,602,628,646,603,613,629,625,605,620,644,610,615,634,604,595,630,644,629,606,625,618,606,598,637,596,633,630,640,610,630,617,618,624,621,598,633,634,617,632,604,579,556,578,581,570,577,574,574,570,563,558,557,584,568,567,563,564,577,574,565,558,577,582,570,567,567,575,579,563,551,563,562,567,553,575,554,575,588,572,562,579,564,525,521,516,525,530,523,510,531,523,525,528,529,524,531,523,537,532,542,537,528,531,531,529,528,527,537,530,541,525,514,512,540,521,544,524,543,524,533,511,507,539,517,534,533,528,528,534,560,538,530,550,556,545,532,561,547,554,543,546,549,519,533,527,547,548,539,534,542,539,558,547,546,543,535,545,551,545,539,542,549,548,551,534,544,542,537,538,552,562,543,549,549,562,546,553,533,550,547,563,560,548,558,551,553,553,552,548,564,558,568,556,543,540,553,560,539,549,553,566,564,561,546,555,558,548,556,568,548,549,549,542,552,561,545,546,559,543,542,548,558,564,543,555,542,545,564,543,558,557,556,555,545,546,561,544,541,559,561,536,563,545,558,544,547,551,545,535,542,524,534,543,536,558,549,553,535,543,516,516,522,530,535,534,537,525,517,517,541,518,527,530,526,515,515,532,528,522,526,508,523,524,531,532,522,513,527,524,523,521,532,527,545,536,535,525,517,510,500,508,508,505,500,503,512,490,503,516,506,501,499,508,495,500,491,514,513,515,494,497,508,500,501,482,499,498,528,505,520,517,502,518,492,493,497,486,500,506,496,506,514,494,487,511,494,500,520,506,505,498,506,506,512,514,500,523,509,498,501,510,494,507,502,498,524,505,526,508,503,505,522,501,507,495,504,509,483,504,508,496,521,498,500,523,649,658,634,640,647,633,628,648,661,657,650,639,668,609,630,619,648,639,643,660,645,644,660,639,679,638,641,652,644,628,637,628,639,656,656,644,654,674,661,651,674,655,635,661,556,579,577,553,554,557,548,551,560,526,560,566,559,562,569,559,571,583,565,560,532,564,565,557,596,572,565,559,558,563,577,569,556,569,568,558,550,544,588,552,557,553,557,569,550,556,542,548,574,541,548,561,553,565,566,562,540,556,604,550,547,575,535,534,559,585,557,528,560,562,593,561,553,564,560,558,541,557,561,545,531,539,568,587,557,579,574,531,603,591,596,586,606,603,592,599,590,590,595,595,591,591,607,607,615,593,606,613,597,598,610,594,586,604,596,592,598,596,596,595,597,593,601,594,604,600,601,615,587,571,586,584,591,577,571,586,571,573,604,582,575,586,578,576,577,562,583,590,576,577,588,584,572,578,558,580,564,582,587,603,591,585,582,571,583,585,568,582,580,572,583,573,590,661,676,666,696,649,674,667,666,676,677,665,661,656,650,655,696,700,673,678,682,653,680,646,676,658,643,667,672,661,666,674,672,651,676,696,676,687,669,649,656,687,694,659,688,646,599,612,613,621,620,609,628,624,618,615,628,635,607,599,610,599,625,616,609,615,612,611,589,602,608,620,603,623,618,620,637,615,620,626,610,613,615,606,611,637,626,611,582,582,578,578,580,574,587,572,594,578,578,601,583,571,579,588,571,584,563,588,569,570,572,569,578,559,573,581,569,575,587,571,591,585,556,569,573,563,580,622,675,646,644,612,636,622,604,628,645,633,607,640,606,600,647,644,614,590,623,619,646,639,598,636,613,625,611,621,614,620,621,620,603,632,624,630,622,610,653,600,603,598,623,631,647,621,606,617,617,607,618,611,620,621,602,632,602,611,621,608,609,607,618,603,610,611,619,603,609,612,605,602,616,610,617,624,611,602,607,620,604,620,616,616,621,627,642,610,596,605,568,581,578,572,574,590,570,572,590,588,587,571,575,570,581,582,585,582,560,566,580,570,564,579,565,564,572,589,585,583,583,575,584,580,571,588,563,576,567,587,575,576,574,683,723,685,692,672,637,724,670,657,601,640,721,648,689,691,684,659,618,655,713,697,681,689,673,667,650,715,693,629,673,678,686,643,711,664,677,656,668,707,713,709,724,704,702,728,706,722,734,731,710,705,729,709,688,707,689,723,713,708,714,711,712,715,701,694,711,690,693,702,721,675,677,689,719,712,707,704,709,698,713,641,639,662,649,630,652,616,657,625,645,648,662,654,642,650,637,651,655,644,688,637,661,630,628,643,639,630,651,666,666,650,665,654,634,637,617,659,635,657,647,666,642,643,643,558,579,587,586,563,570,578,597,592,593,596,592,565,586,585,572,574,589,570,592,566,565,577,572,566,583,576,582,587,597,582,590,591,552,575,579,589,572,573,574,574,566,660,703,638,727,679,634,682,636,657,676,699,687,671,672,671,627,747,702,670,683,680,741,738,616,671,685,674,673,651,677,706,666,659,730,684,704,658,652,656,690,700,677,702,627,585,721,699,712,706,707,711,722,705,703,703,715,684,736,704,718,726,716,714,715,722,714,703,721,716,723,708,707,713,713,709,721,702,737,707,728,632,559,589,609,612,563,561,610,607,610,611,616,575,612,642,591,633,588,594,604,582,588,552,596,612,609,618,589,612,593,591,650,609,597,577,604,605,573,591,581,564,601,586,570,591,586,585,557,576,568,568,562,550,589,596,592,557,557,563,578,564,576,579,579,561,569,573,578,575,585,562,558,583,585,577,566,572,597,639,627,632,621,611,627,610,625,619,646,630,606,635,638,621,622,610,616,637,603,639,623,607,623,614,603,624,613,633,619,627,644,602,619,597,607,631,617,606,657,607,583,610,594,621,601,608,608,602,617,606,595,589,605,607,584,610,622,612,592,598,603,603,613,593,612,610,588,620,628,604,610,614,594,618,621,602,607,634,592,604,577,584,600,590,583,592,575,588,585,582,577,598,587,577,578,590,593,598,579,604,589,592,581,593,584,590,575,588,583,594,584,585,583,584,596,576,586,581,581,610,590,589,601,571,586,591,602,588,601,570,589,583,602,600,584,590,591,576,576,585,592,587,591,580,610,603,586,601,580,593,590,575,582,594,597,582,583,588,587,576,590,587,550,551,554,551,553,551,548,549,544,555,555,552,561,546,549,550,552,557,543,556,560,551,556,555,558,556,556,555,556,545,543,561,545,541,542,554,567,550,545,546,550,562,549,559,540,525,519,531,536,534,535,531,544,514,524,526,549,531,539,527,532,531,516,543,518,527,538,529,544,532,531,514,524,538,529,532,529,524,527,523,526,533,531,540,526,548,659,663,676,665,677,672,672,678,674,683,683,677,668,686,686,673,655,684,670,671,675,669,683,658,669,646,669,653,669,683,674,664,666,691,659,698,652,665,667,680,677,621,672,632,660,643,623,639,645,638,633,641,644,649,636,660,647,653,619,640,635,629,625,651,623,647,638,652,636,648,638,648,654,634,660,633,636,642,663,642,635,641,639,657,650,640,650,639,643,645,629,605,615,625,603,642,622,590,626,627,645,629,602,584,622,597,614,631,615,627,606,611,619,619,600,611,629,622,615,601,639,610,621,631,644,618,598,636,622,631,603,625,615,572,579,571,581,587,580,568,579,575,569,579,583,581,576,573,588,589,586,569,569,586,577,578,578,584,584,566,569,575,592,577,597,565,588,577,583,571,573,579,575,577,589,581,591,574,571,582,592,599,640,615,655,606,595,615,676,608,642,636,652,630,604,604,626,586,616,633,585,592,597,633,597,702,602,614,618,585,637,638,638,593,600,593,613,644,599,616,602,614,595,607,603,623,613,619,617,609,620,645,619,620,608,623,609,612,611,622,605,623,608,624,623,618,613,621,612,613,617,605,608,605,614,639,629,610,610,608,613,624,625,588,573,580,573,570,573,598,554,578,575,573,598,573,581,580,582,571,590,581,582,589,586,576,582,576,591,569,584,580,563,581,584,587,576,580,589,572,584,577,574,582,559,558,568,560,552,554,565,571,562,562,569,571,549,557,545,552,540,546,552,575,559,554,546,554,551,564,544,551,559,571,545,556,552,549,563,561,569,560,550,558,547,548,526,566,550,559,564,551,572,546,554,544,551,565,551,559,555,546,564,558,562,557,558,567,558,552,554,554,557,570,550,566,555,562,561,556,557,557,556,547,565,568,557,531,603,585,613,598,567,607,645,601,605,633,648,615,617,604,608,607,614,588,612,649,598,617,609,610,623,622,586,617,620,636,635,602,615,598,658,650,582,626,616,616,606,565,578,569,567,581,594,576,572,574,590,577,587,571,574,569,575,588,558,580,570,575,570,584,571,574,592,585,564,568,594,584,563,572,592,548,563,559,580,580,597,569,580,568,607,669,632,639,675,626,650,649,646,612,623,653,604,611,647,617,570,661,588,640,626,664,623,642,661,642,635,641,645,665,629,636,650,617,644,621,629,598,641,650,643,649,622,624,651,638,699,708,691,677,686,691,692,680,671,700,690,701,687,689,676,699,683,661,687,708,688,715,684,683,689,722,687,686,683,681,683,697,700,706,677,699,695,707,689,690,672,657,663,678,675,684,674,696,687,685,662,686,672,688,672,664,677,692,674,687,672,677,673,666,661,658,669,685,662,694,661,667,676,668,675,665,682,677,690,677,673,660,694,714,722,668,700,705,730,709,714,710,731,710,740,719,714,722,736,734,729,746,725,724,756,721,691,725,697,742,699,692,721,739,744,697,664,743,696,723,744,675,709,713,738,699,726,677,697,712,697,699,720,693,682,710,712,682,701,701,709,672,717,691,725,705,699,700,698,713,712,706,704,716,706,724,685,713,665,687,693,704,694,698,684,708,701,694,632,700,676,681,704,687,677,689,624,759,683,692,681,688,688,642,713,681,727,719,662,695,755,719,717,674,640,690,662,657,688,641,718,707,706,728,727,675,686,736,684,658,667,652,658,648,647,642,653,668,671,661,653,667,637,627,665,637,657,629,659,659,653,645,670,666,636,668,657,665,640,674,669,644,627,670,683,673,653,663,648,658,636,671,639,650,736,703,732,709,703,730,699,700,730,686,693,701,677,688,707,718,728,673,673,678,693,711,702,701,692,678,719,663,710,691,738,686,709,682,703,697,686,666,680,669,684,698,709,741,720,706,722,728,720,704,697,727,704,721,710,723,733,731,713,750,747,727,722,702,724,735,708,742,730,728,707,720,746,729,732,728,742,724,718,688,698,736,722,646,654,632,648,639,612,625,641,631,641,655,629,641,646,625,671,642,650,630,636,660,637,627,639,636,649,641,643,641,619,631,604,637,636,628,625,670,661,638,640,639,640,631,621,628,671,651,672,672,618,602,663,727,655,632,649,710,651,581,678,653,689,672,648,681,631,672,661,674,648,640,665,711,645,705,647,630,634,672,637,636,691,701,649,622,697,670,692,716,574,681,673,669,675,696,664,689,699,675,674,656,660,664,653,661,670,670,673,687,669,653,675,674,652,688,670,663,666,671,684,680,673,650,649,676,682,651,659,668,665,674,669,678,651,667,728,674,702,672,669,669,690,671,670,645,666,703,646,654,693,683,682,642,698,703,653,666,681,681,660,679,680,700,689,658,717,679,673,665,654,648,672,680,672,577,597,586,573,590,569,586,537,595,571,596,604,585,567,569,594,608,597,580,605,593,554,601,590,592,579,587,578,546,566,570,590,593,601,599,578,584,603,602,563,566,552,567,571,551,558,566,554,549,564,541,560,571,558,558,557,558,549,546,533,547,570,549,549,558,552,561,562,557,565,544,575,559,563,576,554,565,554,558,547,570,597,542,548,529,541,539,537,545,549,551,531,545,541,541,539,539,542,546,549,551,539,545,533,535,547,538,535,538,541,536,542,548,544,543,530,529,535,541,539,542,530,531,546,528,544,544,542,555,540,535,532,530,656,707,674,642,671,679,649,690,658,663,674,643,656,676,666,659,686,653,653,653,678,677,653,679,663,646,687,654,653,650,665,684,687,673,655,668,666,668,672,672,675,565,563,604,594,586,575,615,580,584,596,587,586,599,586,579,595,605,577,589,581,584,582,601,595,572,582,587,572,591,595,582,591,582,599,590,562,590,606,602,576,582,654,607,613,567,595,616,586,589,610,544,576,553,570,627,550,566,577,560,636,573,552,576,636,525,639,609,632,579,595,574,558,584,628,569,641,631,570,532,578,568,566,561,559,597,661,611,636,601,576,579,582,582,580,557,570,573,588,567,574,575,570,573,576,574,572,565,578,581,573,564,578,563,575,562,562,588,586,561,571,572,590,571,581,592,565,571,566,590,570,574,610,686,644,660,654,665,647,677,681,705,678,712,671,684,738,693,675,609,656,658,613,623,660,640,695,645,671,642,701,658,670,699,669,675,686,695,658,720,687,676,656,675,676,635,675,681,659,665,667,690,695,671,677,685,660,659,676,672,685,663,674,671,673,662,652,683,668,665,666,670,682,675,678,671,666,677,677,690,676,667,665,678,682,671,684,684,660,679,678,754,765,726,678,707,699,712,701,739,754,696,766,703,740,720,711,705,731,702,708,738,702,726,730,728,728,698,734,696,714,674,719,713,697,741,713,744,693,708,731,737,766,727,744,687,733,698,696,715,697,723,701,713,726,711,712,709,720,728,727,714,697,709,724,718,699,737,728,693,703,727,707,706,712,717,703,708,718,708,718,706,735,753,708,667,704,689,698,706,675,679,681,666,669,695,703,668,700,695,704,712,698,664,732,694,695,693,692,670,707,686,707,677,711,711,707,672,687,696,685,708,679,715,677,691,685,692,696,693,669,684,676,679,683,684,660,701,676,652,695,679,688,694,665,677,669,704,663,679,667,678,685,663,682,671,670,659,657,660,708,695,667,665,650,672,703,631,679,669,679,665,665,687,675,667,705,699,686,668,682,686,642,660,688,681,682,699,643,695,683,677,680,689,687,680,684,672,678,696,690,697,659,675,685,667,644,678,686,700,667,676,659,660,665,663,696,675,682,673,687,696,654,664,669,675,662,681,671,675,672,680,661,695,682,692,655,698,687,664,686,641,665,640,673,681,693,667,664,677,672,668,665,676,672,669,687,689,701,691,674,660,677,668,673,689,671,690,677,688,660,668,677,653,691,699,701,701,655,701,686,678,684,677,654,689,690,649,686,674,670,659,687,698,684,667,668,686,682,654,694,677,667,692,617,619,614,614,603,611,610,627,613,654,618,617,657,610,623,617,597,600,607,626,628,622,612,616,632,635,631,619,581,586,618,603,591,619,624,634,616,614,621,634,620,638,613,601,613,655,624,632,700,695,611,640,679,581,652,574,682,627,609,656,678,673,666,629,662,679,622,647,569,668,653,627,612,611,657,600,649,595,619,668,596,654,599,644,724,661,667,650,644,693,705,699,704,679,672,700,658,682,685,688,689,670,689,697,695,679,710,702,701,684,710,684,675,713,713,708,704,686,674,687,664,701,676,696,712,673,690,694,677,671,671,716,706,678,675,684,691,697,678,701,693,679,675,672,700,682,695,689,669,667,698,685,674,673,695,660,668,695,676,673,670,710,674,674,671,664,692,683,704,650,682,669,700,686,699,653,592,621,612,634,604,620,639,624,633,618,610,641,615,597,609,601,620,627,612,598,596,618,602,590,607,626,616,600,620,620,612,594,625,634,593,610,612,597,620,613,567,646,571,563,586,589,594,589,569,587,564,576,574,576,570,558,560,568,583,574,555,581,565,564,589,565,562,574,542,548,576,563,570,554,592,564,573,577,576,550,588,589,596,564,578,562,599,562,575,715,714,763,721,718,730,693,747,721,703,714,697,712,718,743,712,748,729,750,766,724,712,712,716,737,715,726,721,717,733,735,724,722,728,725,711,666,686,734,725,737,710,705,729,696,754,669,643,658,674,679,638,663,654,634,659,622,691,644,660,651,658,651,626,666,647,664,644,665,642,655,667,677,672,663,689,684,646,657,643,651,674,650,648,649,649,683,629,628,668,612,629,633,604,683,616,586,619,606,603,593,623,578,662,594,676,651,578,576,642,651,599,619,632,628,616,615,631,613,575,614,564,600,634,671,671,572,628,576,602,568,690,681,701,703,712,683,700,701,698,682,692,691,701,684,686,688,690,707,700,703,697,708,681,706,703,689,685,681,684,694,697,715,699,699,711,689,704,696,704,703,682,662,718,669,695,682,695,688,692,688,679,705,689,665,723,694,694,697,682,699,697,702,691,671,713,685,682,691,694,679,670,671,681,676,687,679,681,689,684,685,682,676,684,681,673,691,686,736,685,654,657,674,691,668,691,652,677,685,693,685,700,670,647,687,653,664,691,660,687,696,662,682,681,692,667,679,682,706,669,660,647,711,690,682,678,683,674,665,669,662,686,674,649,683,661,666,706,681,683,675,666,696,682,668,658,665,694,658,671,677,671,662,660,675,686,668,662,670,675,683,701,685,635,674,672,665,688,694,687,657,698,686,684,704,672,690,676,680,660,691,694,656,698,659,662,659,675,692,692,698,698,700,658,650,691,670,679,662,674,679,654,660,694,664,672,682,671,649,669,685,684,711,668,687,683,675,660,677,668,701,697,679,671,679,715,681,719,678,673,669,706,680,686,697,692,691,689,686,707,701,700,686,668,686,703,690,686,690,677,693,699,691,694,671,690,696,718,691,711,692,672,690,663,694,589,643,599,609,563,590,638,623,598,611,635,617,567,564,617,609,567,605,617,625,564,580,594,595,599,600,624,636,609,639,573,562,504,615,586,623,588,592,577,587,535,664,551,604,547,597,622,615,616,620,593,593,587,562,648,590,568,609,626,582,610,596,638,617,589,611,637,604,607,618,564,631,598,641,594,603,618,610,606,595,602,597,603,524,519,535,533,540,529,544,522,510,524,527,515,538,527,529,516,526,530,544,537,525,527,526,530,528,508,526,524,517,530,528,533,524,538,530,531,531,530,515,537,539,523,527,518,522,540,515,532,523,655,659,642,652,655,659,662,642,652,657,653,665,659,634,668,660,644,630,640,668,649,658,657,660,649,636,642,635,666,654,646,653,679,659,641,645,649,639,652,652,657,638,667,699,663,680,715,691,652,710,667,660,657,658,679,677,673,661,669,645,670,718,678,655,712,694,675,714,667,663,688,651,674,647,660,661,651,675,702,659,668,652,672,701,685,654,673,645,693,678,694,712,656,718,688,782,685,721,747,654,692,672,681,668,712,659,697,700,668,731,704,698,689,684,709,682,716,681,699,660,681,685,733,729,654,691,683,727,681,714,640,678,679,697,685,663,661,621,670,633,634,672,650,665,679,663,660,673,643,688,671,647,658,673,660,654,658,644,646,669,663,663,652,661,646,638,635,663,659,652,665,665,638,653,635,654,625,644,670,652,662,635,686,695,749,701,707,680,692,670,666,683,703,680,694,692,699,696,687,700,700,724,689,635,691,705,706,677,668,683,691,642,732,703,697,707,710,686,666,713,680,701,684,679,683,696,719,709,713,709,711,685,696,690,700,679,734,692,702,709,698,705,697,700,702,689,694,696,689,710,692,685,717,691,692,696,722,706,705,698,718,713,719,699,700,719,689,715,702,716,689,696,684,648,616,656,652,633,623,626,629,698,604,630,609,652,606,593,606,671,588,667,587,628,692,628,661,604,630,633,573,608,649,614,631,647,626,645,645,609,683,652,607,573,606,565,572,592,582,591,554,580,573,600,554,570,578,552,588,575,594,544,586,621,599,544,545,551,559,562,568,596,573,598,548,576,590,586,585,575,589,601,600,626,583,606,598,574,555,573,548,566,548,561,576,563,553,555,569,546,580,549,558,563,567,558,556,558,552,552,569,569,549,559,560,547,553,580,579,561,562,551,557,552,571,523,543,541,571,557,552,556,548,552,549,536,545,551,556,538,545,550,551,544,554,539,547,544,537,546,554,546,554,546,541,548,544,545,541,544,531,540,546,553,551,559,757,725,708,699,715,679,723,711,739,714,710,743,710,713,648,712,651,724,783,722,646,712,754,684,768,722,769,684,681,728,716,637,763,722,692,677,704,737,697,729,703,716,706,737,733,721,728,730,703,707,704,722,708,707,696,714,713,706,735,718,713,711,714,716,720,734,704,716,728,730,716,721,722,725,730,727,718,696,717,722,727,730,722,691,721,622,618,603,626,664,595,599,618,620,644,638,628,638,642,625,625,615,620,616,629,637,631,629,625,635,604,618,615,600,616,610,602,627,621,623,632,624,621,629,603,603,562,571,567,547,563,572,557,559,567,581,558,560,555,555,557,555,557,544,568,561,551,574,560,583,566,560,559,566,574,558,557,554,577,562,550,550,562,571,566,555,566,566,606,598,619,580,575,577,605,576,607,596,584,597,618,600,608,596,586,566,590,609,576,588,581,565,593,600,594,636,619,578,621,566,582,601,579,591,593,559,580,607,608,591,654,558,549,555,539,551,548,549,569,561,569,550,564,563,551,558,560,553,571,563,574,562,547,536,562,555,558,561,566,559,554,546,552,542,560,549,554,544,551,562,550,556,566,554,537,547,574,568,568,578,581,561,574,570,573,570,556,573,565,551,571,576,584,555,566,575,568,559,561,563,571,553,589,575,561,589,555,569,595,576,550,556,571,589,556,574,610,679,624,657,671,671,692,659,662,656,678,658,685,711,670,692,653,660,692,652,689,692,644,646,666,687,689,681,667,673,632,657,686,678,693,663,661,724,660,604,590,605,588,601,587,618,600,629,599,586,620,588,600,609,607,621,613,609,615,621,611,610,622,613,608,602,605,613,611,602,640,612,585,609,618,608,598,583,619,598,615,629,605,548,568,637,663,627,670,623,583,594,618,638,590,595,586,577,585,573,587,608,593,618,660,577,624,643,602,637,618,611,611,600,537,588,605,617,636,609,639,630,587,576,598,595,581,586,593,608,583,596,589,598,592,604,583,596,593,569,576,567,598,581,608,590,579,575,587,595,579,600,595,594,602,577,577,594,587,588,575,580,570,583,594,557,546,559,566,544,531,540,548,541,557,536,559,561,571,556,554,544,553,554,534,540,565,543,546,550,556,545,550,546,564,568,552,542,557,568,554,555,571,559,552,549,549,547,567,555,550,555,558,560,558,555,564,565,552,567,568,567,523,569,578,568,569,557,571,552,561,564,546,572,550,560,563,563,569,549,575,571,540,549,561,573,688,704,695,680,701,712,721,690,698,704,694,710,701,717,697,689,728,676,703,704,700,687,695,736,688,677,719,677,710,694,730,721,702,720,734,723,697,685,687,725,732,719,656,630,652,649,627,627,639,638,648,643,651,644,637,644,636,651,661,645,625,639,653,672,639,641,688,630,657,624,663,654,651,681,664,636,667,655,641,653,662,656,647,590,611,611,587,584,606,595,596,592,604,598,576,596,596,607,609,595,604,582,593,594,587,617,615,593,603,613,601,605,610,586,598,596,591,591,620,609,609,581,589,585,608,594,608,561,549,569,558,561,568,583,550,560,560,570,562,559,563,551,568,568,570,561,570,555,568,574,568,565,575,574,559,552,561,563,549,560,564,562,561,573,565,565,558,560,562,553,578,573,553,568,555,550,560,567,563,563,552,564,578,577,570,567,569,561,567,564,555,556,552,564,554,565,558,565,577,559,563,548,559,564,561,550,570,566,565,572,584,568,570,566,558,570,556,688,718,669,658,686,696,670,667,672,673,677,675,684,658,685,685,675,688,707,668,670,699,667,701,686,688,680,690,692,666,682,686,695,687,672,710,682,668,678,684,701,685,683,674,682,688,631,665,653,690,660,692,682,663,660,686,646,691,659,679,678,656,656,616,673,666,668,699,670,656,669,631,672,669,662,704,646,694,658,691,682,682,679,701,690,670,616,640,618,622,636,634,625,619,613,629,638,589,648,629,616,619,641,613,627,633,617,612,649,633,630,627,628,632,621,636,639,617,617,609,595,623,598,589,633,625,617,629,628,608,623,657,603,590,629,595,623,628,591,606,638,628,611,611,671,667,550,675,584,577,606,599,623,618,601,571,600,587,631,630,615,721,629,601,606,612,602,578,606,607,586,593,597,596,588,591,588,611,603,613,603,587,596,621,596,601,593,606,605,606,602,582,602,602,605,602,599,593,604,590,614,585,581,603,586,598,561,558,557,581,574,560,589,552,568,582,572,569,567,576,565,567,567,579,569,579,571,566,545,564,569,570,566,552,553,579,572,560,577,564,573,570,570,579,560,576,566,555,545,553,548,546,542,555,550,561,549,546,544,545,554,561,548,548,550,549,557,572,553,569,554,552,563,548,559,547,565,543,557,548,554,549,543,551,546,563,552,543,558,565,560,563,551,556,539,552,548,572,548,549,546,543,564,552,545,558,549,544,546,558,542,553,558,544,566,566,553,563,555,554,556,553,546,556,557,550,556,548,560,557,553,551,548,561,557,552,679,672,699,696,697,687,676,679,684,668,687,686,695,705,664,698,682,690,669,689,711,677,667,690,687,691,691,705,674,697,685,675,655,670,684,690,689,679,670,694,653,686,679,694,689,704,692,682,652,661,643,650,698,669,653,661,689,671,709,662,678,696,669,695,649,664,692,667,660,661,695,655,657,658,664,665,683,672,666,672,661,670,700,663,663,724,621,591,595,631,615,660,579,630,636,609,608,568,624,643,622,633,585,636,571,604,594,625,631,627,627,646,594,613,591,632,591,642,628,634,575,596,600,608,594,633,612,608,590,561,572,583,573,567,570,565,558,568,578,559,556,565,555,558,559,569,559,569,573,566,575,573,574,564,577,566,568,578,574,573,561,578,558,558,578,575,566,559,565,570,558,547,559,566,557,549,555,554,561,560,551,563,559,549,564,554,561,561,568,559,534,559,564,548,557,563,561,556,556,558,550,572,560,546,550,561,563,544,555,560,553,563,555,529,657,634,631,639,657,640,653,645,619,646,652,645,641,630,672,662,629,663,670,647,648,648,616,678,658,622,656,675,644,654,625,650,669,648,663,656,642,648,644,667,647,671,673,649,653,675,668,677,657,682,662,672,660,672,659,683,674,664,671,665,688,664,686,681,686,674,676,652,666,680,673,651,659,679,663,683,666,695,667,673,654,648,675,687,594,597,616,612,599,603,587,615,601,585,614,576,588,594,615,620,588,613,599,602,599,584,595,605,617,625,577,596,593,588,590,614,599,610,620,586,605,605,603,614,608,619,596,699,731,657,672,662,705,692,651,763,712,734,678,731,695,697,703,730,681,638,667,633,697,692,723,663,677,665,718,687,684,726,673,677,725,684,687,696,680,697,685,738,684,720,732,713,723,709,707,718,725,720,710,739,736,728,693,749,726,695,755,725,718,715,724,731,715,715,701,721,710,732,724,702,756,724,699,711,716,718,725,725,734,720,730,720,680,622,644,631,639,642,634,612,635,629,619,648,678,648,637,595,637,625,644,614,623,626,605,632,652,649,618,634,620,639,638,610,647,633,659,627,674,676,561,553,549,539,567,553,540,551,543,556,532,556,545,567,550,548,547,565,527,550,543,551,543,553,556,551,539,556,541,554,545,547,535,551,553,533,541,549,550,546,539,578,561,548,571,546,557,566,547,578,574,565,564,546,558,549,544,551,595,549,569,567,588,553,575,570,572,574,560,563,558,549,553,576,552,565,544,559,565,567,540,559,557,717,726,694,751,709,745,744,720,730,738,748,705,729,726,715,742,740,699,731,727,742,743,754,703,755,712,708,732,726,715,740,732,730,738,769,745,759,750,740,720,716,747,734,647,664,627,650,723,647,674,638,662,597,659,629,698,620,656,642,650,646,683,678,642,625,669,650,632,649,657,650,682,646,640,661,653,640,660,676,656,674,648,651,710,673,664,538,557,552,543,525,575,538,559,534,550,565,568,576,612,572,574,562,537,549,528,536,552,545,554,540,567,578,542,527,563,575,539,525,544,587,556,539,539,570,553,540,544,555,532,526,529,540,536,539,541,525,529,542,534,525,534,530,537,540,529,533,536,533,542,524,539,519,537,545,523,535,539,526,536,552,543,525,533,528,535,537,522,541,537,520,523,533,537,533,553,560,554,558,562,565,548,546,567,539,556,535,545,557,556,564,557,545,548,554,553,562,549,566,555,544,546,532,559,572,554,549,556,557,564,568,569,555,560,578,574,572,543,566,555,750,740,745,715,762,714,724,728,746,764,759,733,709,727,728,739,715,714,728,724,709,719,749,733,704,722,779,737,754,754,723,737,758,711,742,719,744,747,746,724,738,738,752,729,724,737,719,642,655,653,640,657,678,695,662,662,647,657,683,642,663,648,682,652,699,668,669,666,689,663,617,694,616,648,673,665,668,672,670,654,678,653,700,701,660,648,621,659,672,678,707,675,545,573,562,532,555,540,548,581,550,525,565,537,555,536,524,553,572,540,542,540,547,574,530,556,564,515,558,581,565,527,546,515,535,540,565,538,494,530,548,531,577,543,537,528,533,510,532,532,526,530,536,524,514,521,533,546,521,542,527,534,538,525,530,520,511,536,534,543,527,557,530,546,538,536,521,521,537,531,534,533,542,532,509,487,495,504,513,489,492,496,490,499,510,495,499,497,497,491,489,491,502,491,495,500,492,493,497,500,512,495,485,492,489,510,497,501,511,497,508,499,486,496,507,490,505,490,503,486,490,499,496,494,500,491,502,486,489,502,504,488,482,503,503,505,487,494,501,500,496,503,493,501,492,488,500,511,509,488,497,487,504,490,498,501,501,502,500,484,487,503,498,519,514,510,519,500,517,512,515,510,511,504,510,523,509,507,523,503,508,514,510,507,507,503,513,525,519,509,513,510,505,512,521,502,510,503,516,515,515,513,539,562,555,570,545,546,548,553,553,568,545,554,549,547,549,558,565,548,554,570,562,544,554,564,546,557,551,551,558,574,564,557,552,557,540,570,556,550,549,546,560,557,546,556,546,541,546,548,546,537,544,548,544,545,551,538,540,548,549,555,553,564,542,555,557,553,548,558,542,551,541,547,544,548,546,561,543,559,546,538,565,559,560,580,581,587,585,588,582,584,571,569,597,600,584,587,587,577,576,589,584,606,588,582,594,586,603,570,585,588,588,592,583,577,581,588,574,558,595,602,610,604,605,610,600,585,595,592,617,625,597,594,602,603,612,591,606,600,588,600,601,604,611,607,583,591,611,575,621,603,591,616,598,586,606,599,600,597,598,596,598,585,593,751,724,741,744,752,752,720,727,765,738,722,761,736,758,775,758,752,745,736,740,755,734,732,734,734,745,761,744,763,748,752,711,747,747,721,730,705,771,752,740,752,716,685,694,695,712,719,714,732,741,770,677,761,722,729,724,724,691,695,687,717,733,738,673,697,690,698,710,746,708,721,738,720,729,676,692,707,714,729,731,685,724,734,672,699,627,647,692,691,666,671,680,679,694,702,650,661,655,674,664,662,681,662,711,661,701,685,670,658,644,690,672,683,655,689,666,660,690,703,650,709,559,587,560,553,554,573,576,576,581,564,566,545,587,568,574,582,568,541,574,563,567,569,585,574,592,562,586,588,566,559,575,555,572,563,563,568,558,568,591,567,575,586,571,556,588,695,694,689,710,683,711,699,683,697,694,687,664,687,684,705,693,691,683,702,692,690,710,694,692,712,695,693,702,693,687,714,676,692,706,685,675,713,686,701,709,667,685,664,648,665,656,644,653,663,646,656,647,667,650,669,645,662,628,665,669,642,654,642,639,657,663,638,644,652,664,671,653,655,664,652,667,668,652,673,646,655,677,669,613,610,634,613,608,638,651,618,606,625,629,620,616,608,619,615,627,632,608,613,617,621,626,637,625,598,635,615,585,621,604,595,615,623,622,624,599,637,588,632,636,639,616,602,629,634,570,584,581,568,580,575,570,582,572,581,592,579,587,570,572,575,577,577,597,585,571,586,580,569,569,580,578,569,575,576,576,577,575,572,588,582,580,590,576,576,590,561,571,577,571,618,648,610,640,628,636,645,642,633,660,620,651,672,650,660,649,629,614,632,663,615,634,651,627,623,645,633,650,657,636,644,652,624,627,655,639,691,623,655,607,664,621,615,614,675,668,670,703,684,677,676,701,685,681,669,647,703,681,692,683,670,652,687,680,682,678,674,672,686,681,711,693,673,678,679,694,688,672,693,688,691,672,677,671,699,680,686,691,670,665,724,778,778,758,776,768,746,751,766,750,723,780,716,741,717,731,747,791,750,768,733,756,738,721,717,785,756,718,752,721,775,763,756,752,700,740,790,752,745,746,747,688,700,709,704,728,711,706,720,710,745,711,700,705,710,719,703,694,723,726,737,735,763,697,713,740,688,731,689,740,721,731,728,695,695,736,695,776,705,745,754,726,739,707,759,684,694,722,672,707,672,646,682,629,651,643,661,644,647,636,681,652,667,658,648,652,656,640,630,636,656,675,659,655,688,641,653,685,646,656,650,681,645,648,675,660,635,642,663,629,656,657,644,735,752,728,713,708,709,744,719,731,706,737,689,738,683,692,691,721,707,717,738,770,679,718,728,747,713,728,695,704,756,691,707,735,699,733,727,738,726,738,765,716,735,723,725,708,746,681,727,722,703,722,738,720,658,711,702,722,714,716,730,715,720,731,747,665,715,718,735,727,751,722,706,736,722,729,700,717,711,760,697,761,693,728,716,678,722,728,695,694,684,656,653,682,675,681,656,679,683,683,675,660,671,680,683,685,669,689,665,687,672,655,667,659,702,676,672,674,657,654,690,657,646,695,664,668,709,667,701,631,643,652,633,645,656,656,648,629,649,646,650,651,651,662,626,640,640,647,651,638,655,670,643,635,643,639,644,655,623,658,641,615,634,633,650,629,641,638,642,644,620,649,658,667,653,651,660,671,669,670,636,660,665,653,662,671,672,647,673,667,648,685,681,649,666,652,659,647,653,660,662,679,676,679,669,668,670,682,639,661,679,673,658,781,722,718,728,773,731,763,768,724,764,748,779,756,752,731,780,738,787,775,754,780,745,729,750,725,745,729,732,718,762,711,743,739,765,763,752,708,783,716,743,759,745,693,730,754,734,703,709,691,726,735,684,693,751,685,712,695,740,710,715,720,680,719,734,707,744,747,727,707,728,724,672,732,722,761,716,693,740,760,749,772,658,666,683,623,669,678,641,633,624,664,658,631,657,632,688,626,679,678,645,651,649,669,669,672,648,658,681,645,682,661,653,620,653,662,690,671,654,693,644,694,683,664,652,684,666,647,667,659,671,645,724,727,700,713,694,683,689,715,679,710,691,709,691,667,689,673,710,700,682,694,714,676,695,684,686,712,727,700,740,712,702,684,669,705,679,670,696,710,715,701,739,725,710,725,710,733,719,712,733,713,725,724,722,708,706,714,724,722,719,712,732,716,706,712,710,712,725,719,697,719,722,728,721,705,709,704,728,707,718,721,711,696,694,661,727,706,719,684,680,691,668,709,678,691,711,677,684,683,696,690,698,701,701,712,675,714,680,665,713,677,704,676,693,704,668,675,710,682,691,680,695,671,681,670,685,684,646,661,661,695,662,687,686,688,694,691,681,659,678,677,691,674,666,667,699,693,695,675,701,709,675,705,705,693,701,666,671,706,682,704,688,664,527,574,596,594,566,557,559,583,574,542,572,587,579,563,580,545,608,575,601,562,584,561,564,596,578,583,565,604,557,564,586,587,595,563,614,544,592,575,580,565,569,566,558,555,564,569,578,590,556,566,603,584,573,576,580,560,543,565,579,564,589,565,564,565,586,560,596,591,556,577,576,576,578,579,572,554,556,564,576,579,563,600,578,564,576,568,594,568,576,563,563,592,574,558,649,642,631,631,635,627,634,622,635,637,632,642,644,646,630,664,655,638,644,619,644,634,663,669,651,678,614,654,641,641,630,642,669,641,639,646,645,663,627,648,640,662,647,647,661,655,650,666,663,652,663,672,649,648,658,662,657,665,659,650,650,648,653,652,658,658,661,640,660,655,652,656,656,651,655,664,650,659,649,640,645,634,660,653,755,721,700,746,679,705,693,757,717,713,704,679,755,695,678,728,726,735,720,691,723,692,716,716,726,712,733,708,695,717,751,701,700,725,730,718,718,720,690,752,691,708,713,707,725,709,734,732,719,699,700,720,703,709,722,732,704,727,728,702,723,728,731,736,719,706,727,708,690,731,735,706,716,713,706,705,724,723,723,719,691,703,709,722,729,695,683,692,702,669,697,681,704,677,699,692,716,700,705,691,680,674,710,691,686,702,703,693,706,714,690,706,721,663,699,681,705,683,686,682,714,670,667,718,710,692,690,610,600,608,582,610,651,585,593,591,591,630,612,628,601,612,566,620,618,621,585,601,621,610,606,579,603,611,637,610,630,570,586,594,606,630,648,582,600,612,595,593,628,577,570,559,552,571,546,568,568,571,547,547,554,573,557,563,561,553,576,557,549,556,563,565,557,570,562,566,553,550,557,560,564,552,560,557,571,572,572,562,564,565,554,563,558,560,558,677,605,661,658,602,600,687,640,614,645,613,640,611,650,651,644,678,622,630,588,611,651,642,652,637,625,623,634,634,661,673,644,673,632,623,623,618,634,615,666,627,630,688,689,685,677,688,688,671,681,669,690,686,688,667,662,686,672,681,687,701,684,678,667,686,690,679,688,683,675,677,661,676,693,673,688,702,665,676,685,667,677,667,683,687,687,688,692,674,683,689,681,673,674,687,670,670,663,692,677,686,680,682,674,688,664,682,678,680,688,672,663,692,683,661,676,655,674,669,663,674,664,672,670,673,649,682,695,685,687,693,677,728,744,717,762,758,770,776,719,765,719,745,734,711,762,732,766,753,775,720,769,736,737,790,720,751,714,729,728,740,734,719,742,727,717,752,730,702,714,710,729,676,657,702,646,629,659,655,690,683,683,651,683,669,658,719,640,664,687,713,697,702,684,694,693,637,652,642,651,657,643,682,695,688,684,662,622,644,717,675,691,649,665,682,645,657,663,665,640,617,632,652,623,636,642,644,629,605,642,639,634,644,657,649,630,631,618,628,642,638,605,669,647,629,612,642,647,659,630,644,617,646,617,638,630,641,648,616,663,602,632,643,668,542,554,548,556,558,558,552,553,560,545,540,559,543,560,552,552,560,566,565,558,550,561,548,555,561,568,554,560,564,549,562,562,562,538,550,566,553,550,553,556,558,568,568,555,551,555,538,555,551,547,548,531,542,545,543,552,518,524,538,546,547,531,557,547,562,530,550,551,559,542,536,546,537,544,539,554,553,534,532,536,551,529,539,526,538,554,564,535,516,504,520,525,509,524,518,505,497,526,523,523,501,527,515,513,512,513,514,513,513,511,519,507,525,514,518,520,523,517,515,506,507,518,508,533,512,510,513,519,513,504,522,525,696,669,692,698,670,663,690,678,687,689,665,680,658,675,689,672,684,677,665,700,693,678,684,668,681,663,677,681,681,692,687,686,681,688,672,696,664,634,634,647,660,642,631,639,624,632,636,650,653,655,627,644,618,644,631,648,641,662,621,645,662,633,638,624,640,636,650,662,631,649,628,662,642,664,646,627,632,643,626,626,676,611,616,606,606,590,617,593,611,601,614,591,622,629,609,605,601,590,598,613,586,590,598,584,592,626,624,638,605,602,590,570,644,588,620,627,618,601,625,597,592,613,627,593,614,568,611,607,616,631,600,602,569,576,607,559,606,612,592,622,582,620,608,580,577,586,622,600,614,562,615,615,611,606,577,543,642,600,607,602,617,600,567,575,636,593,600,600,606,619,638,622,630,616,622,621,621,616,643,596,634,623,617,616,618,620,627,602,611,621,612,614,611,618,610,617,604,635,627,607,619,604,620,637,610,631,625,626,603,595,585,562,568,583,581,577,595,590,587,576,564,590,554,571,580,580,582,562,585,568,584,568,582,589,580,591,594,587,593,573,577,573,571,589,566,570,578,682,672,670,680,689,690,656,630,679,658,671,656,668,687,691,676,668,666,664,685,676,660,686,688,690,678,693,654,695,695,686,686,677,697,674,680,673,703,699,700,669,662,690,672,658,712,702,680,689,680,689,680,701,646,663,709,714,664,658,691,720,658,696,685,719,663,690,685,684,716,710,653,723,658,643,670,669,717,659,681,688,717,636,706,690,708,671,665,686,670,663,700,681,689,679,708,696,674,685,686,689,707,686,711,688,679,697,699,680,677,679,665,700,658,692,680,668,685,685,691,681,688,704,668,688,684,690,677,688,650,613,594,615,614,621,609,608,604,603,617,632,596,612,631,623,604,607,579,626,638,619,639,614,611,612,618,614,612,603,614,599,586,602,614,594,627,638,602,575,584,613,655,584,573,578,586,581,597,595,585,576,575,569,587,600,585,557,578,565,577,582,603,578,574,607,580,577,595,592,609,587,599,597,575,593,566,588,592,576,580,588,592,542,537,576,564,584,589,575,564,576,570,570,560,563,574,591,570,572,574,578,578,576,566,564,560,575,572,570,580,575,571,581,577,562,568,576,564,568,569,562,582,578,567,566,562,597,539,549,549,541,541,546,544,548,534,541,547,551,543,540,545,534,538,546,541,552,539,557,544,550,540,535,547,541,536,537,527,538,562,552,544,548,541,547,535,532,536,533,546,533,524,545,538,533,571,543,555,527,527,540,543,547,542,529,547,570,537,547,554,541,544,539,566,538,535,545,562,547,561,546,544,543,568,555,539,536,540,555,562,541,553,551,549,549,536,538,536,543,534,551,546,529,549,542,543,547,545,559,545,537,545,541,542,525,533,535,539,533,542,538,527,546,550,545,541,540,535,557,527,539,537,552,532,545,551,540,539,548,532,534,544,552,560,545,554,556,548,542,569,548,534,560,555,568,558,556,540,567,556,555,548,558,556,558,554,553,559,565,574,571,556,551,552,551,558,566,554,558,556,565,555,552,561,553,534,630,606,584,604,621,599,609,634,612,652,615,617,615,598,655,569,619,653,592,626,605,593,602,626,592,637,606,602,607,623,614,590,605,587,594,623,591,597,618,583,765,762,774,813,783,744,794,761,746,758,755,755,772,781,768,757,787,769,776,764,759,777,796,767,776,771,741,768,750,749,763,766,761,769,758,736,795,742,768,772,724,767,740,735,696,742,698,749,766,767,673,711,716,735,720,714,729,725,711,741,695,709,711,724,721,733,702,707,728,799,722,726,683,722,696,757,740,744,740,733,751,668,701,649,676,654,651,680,676,656,646,657,658,663,641,659,670,636,654,621,648,666,649,662,653,640,662,658,642,644,646,651,644,642,652,651,662,665,666,637,678,654,635,687,716,730,721,688,686,681,713,669,663,705,686,693,731,691,730,689,699,687,680,691,696,694,693,649,699,681,665,699,702,688,693,705,690,700,678,671,696,687,653,662,668,681,657,666,658,680,659,693,660,663,665,657,662,689,648,662,656,662,639,660,663,677,665,661,684,654,683,671,670,672,671,685,672,669,688,673,649,655,696,672,613,603,589,609,603,619,615,614,616,607,605,603,603,628,602,604,587,599,612,618,602,597,602,598,592,607,605,620,604,614,617,610,610,589,599,595,591,616,597,591,601,593,612,599,555,578,553,559,554,570,564,552,560,555,564,555,554,550,564,556,566,568,554,570,553,557,543,556,564,569,562,549,550,547,565,552,554,551,562,564,561,551,565,584,567,560,568,557,554,560,562,547,561,572,555,554,564,543,563,568,538,571,556,556,561,565,550,554,560,564,574,569,570,579,558,559,560,544,569,556,557,550,554,546,568,585,682,713,702,700,694,713,709,687,688,715,700,721,733,689,699,716,707,703,688,698,725,696,702,704,698,730,710,724,717,688,690,700,687,714,703,704,705,705,695,712,710,694,731,695,717,698,666,668,670,661,669,667,679,674,674,670,658,678,652,676,663,672,680,661,692,668,667,669,673,667,688,694,691,664,675,661,670,657,683,676,666,671,670,664,655,668,668,604,630,646,628,645,631,630,621,633,615,633,625,626,631,633,606,626,620,616,634,611,619,637,644,626,627,624,602,612,627,623,623,637,634,619,615,626,617,615,635,624,637,577,593,579,596,571,585,599,607,587,588,585,596,573,575,617,578,580,570,576,574,602,571,587,578,589,579,590,584,558,587,585,587,584,598,585,586,577,580,587,569,575,586,600,608,616,609,605,621,610,609,623,621,639,621,608,617,601,610,627,626,601,617,618,604,613,614,620,611,599,592,610,614,603,610,619,603,606,609,617,604,607,607,606,626,605,610,623,625,612,623,590,607,607,620,628,628,640,620,629,642,643,643,613,642,646,629,639,624,645,631,653,618,637,636,614,644,636,635,627,637,625,637,626,617,628,636,632,642,622,627,632,620,650,624,634,593,569,595,586,610,586,612,587,601,567,608,595,608,622,590,597,569,605,604,595,607,588,595,623,610,617,578,602,605,583,604,581,586,606,601,593,605,611,587,595,587,611,579,586,579,588,612,575,593,601,578,572,562,573,598,579,583,580,571,576,581,571,597,582,582,592,579,586,584,582,567,567,589,590,567,588,598,579,597,581,580,576,682,641,632,614,586,619,644,609,626,636,582,596,592,645,587,598,640,595,617,609,600,619,640,569,610,625,598,635,578,631,629,652,638,621,654,602,632,615,618,577,637,706,738,728,793,758,754,729,735,729,753,754,755,764,722,722,703,775,752,747,737,750,724,766,748,742,725,736,749,759,738,736,741,742,759,767,737,759,773,770,731,776,761,740,752,718,700,723,727,711,719,706,711,708,730,737,725,742,725,730,724,709,738,728,721,712,725,744,731,739,716,731,718,714,726,732,718,742,720,722,713,714,734,733,718,726,739,697,700,697,698,706,683,679,671,689,692,685,692,674,701,684,717,686,709,684,677,719,699,694,699,707,690,668,686,707,705,677,688,692,692,693,699,699,664,669,696,694,679,683,699,715,690,675,700,711,676,681,661,672,688,676,682,687,695,704,673,709,673,662,667,699,703,684,674,698,674,678,678,699,695,695,692,690,683,682,686,687,578,592,554,597,612,646,603,591,611,600,607,572,558,618,557,584,607,582,566,571,578,602,591,558,586,570,577,580,618,588,587,592,571,599,579,575,612,580,578,601,623,586,584,570,659,592,661,650,629,626,609,668,643,610,579,673,644,552,635,629,628,621,630,618,634,659,653,598,608,705,665,607,617,586,638,632,606,602,607,615,648,614,647,627,629,688,694,646,655,695,652,693,705,689,648,675,669,736,657,692,684,708,651,659,645,673,679,682,662,693,666,682,691,714,717,700,659,691,704,688,665,661,682,703,683,612,665,683,692,679,670,679,678,675,651,673,669,651,676,688,692,697,679,711,672,701,683,650,721,716,676,677,757,730,668,722,645,658,657,665,691,704,679,649,689,649,673,636,706,718,754,679,694,674,699,654,643,645,669,632,657,665,667,660,674,639,640,673,650,657,654,677,670,644,668,673,623,647,655,636,630,671,645,653,643,668,658,664,622,669,664,661,632,649,648,608,612,585,621,620,600,599,610,611,600,605,610,587,601,605,596,607,622,600,589,630,603,631,608,605,621,614,620,612,631,605,601,599,616,609,611,593,621,597,598,592,572,604,600,588,603,587,574,604,572,577,590,600,594,587,595,573,581,591,588,580,596,588,593,593,602,586,610,593,582,584,580,586,575,594,592,599,596,581,596,576,584,604,590,603,599,619,599,597,602,606,602,600,587,613,600,588,613,598,591,609,594,594,597,591,588,603,584,599,593,586,601,607,594,595,607,611,596,597,612,594,599,583,605,618,727,718,724,765,747,749,770,745,749,756,730,762,724,713,749,777,742,728,777,724,744,761,720,735,743,779,724,733,741,735,767,727,710,737,777,775,776,732,726,766,737,752,738,798,684,680,692,679,670,625,672,669,690,674,640,685,658,641,682,622,697,703,670,665,653,644,694,686,660,671,670,642,679,652,677,658,716,660,647,667,655,658,617,688,648,672,673,646,634,644,643,625,635,635,620,615,629,634,600,635,651,650,671,603,656,628,649,606,654,611,629,615,599,633,642,634,595,655,638,652,645,624,635,629,639,660,618,658,642,654,643,650,650,617,695,690,673,691,656,700,700,701,680,676,671,677,695,690,695,684,671,675,675,694,699,694,675,681,679,697,669,698,679,683,697,700,679,685,696,687,682,695,677,677,668,704,678,665,669,688,671,672,657,673,694,669,663,670,674,662,673,661,656,677,690,677,665,677,645,657,660,671,643,682,649,661,669,660,659,677,645,647,666,664,661,675,649,687,660,663,665,680,653,679,665,675,664,653,652,637,610,636,658,669,649,613,648,604,625,621,648,634,655,643,641,663,642,628,634,642,628,645,623,634,639,608,636,642,631,648,606,654,645,621,658,628,617,663,618,722,677,663,667,678,725,651,668,693,693,665,681,655,672,676,696,703,657,654,723,676,664,653,669,652,666,682,669,659,684,679,676,713,679,675,660,661,665,640,683,672,631,635,644,614,604,639,597,626,615,612,623,587,612,602,603,592,630,617,611,620,623,621,612,624,631,588,630,605,606,612,587,588,614,598,606,593,618,618,604,634,652,604,609,599,568,617,551,589,579,591,620,623,701,625,570,605,634,579,583,584,594,605,624,600,551,583,575,647,575,595,625,625,545,608,637,585,650,617,625,632,592,582,591,608,582,608,583,595,590,582,592,596,584,598,580,589,588,592,594,582,601,592,586,599,592,594,592,586,580,593,578,584,591,587,593,603,591,608,593,594,591,584,586,596,595,575,534,564,529,547,536,554,550,567,554,547,544,545,549,551,544,541,573,543,553,557,532,538,545,560,562,548,554,548,534,570,557,551,550,531,536,547,555,550,547,561,556,548,558,529,569,553,574,551,563,579,561,574,576,548,571,544,561,562,543,555,565,557,555,545,551,553,558,565,553,560,558,556,531,562,568,555,579,544,558,568,553,553,704,711,715,705,688,696,728,700,707,706,679,701,721,727,727,703,719,690,695,705,698,702,711,711,668,675,708,698,705,687,702,729,713,713,698,717,693,686,700,671,620,626,647,629,634,656,636,619,616,616,657,604,592,627,635,595,660,650,622,660,663,629,660,654,618,636,638,649,625,583,628,650,627,654,633,624,654,608,613,644,649,609,619,683,611,672,683,621,619,631,662,698,654,606,697,623,688,642,648,586,641,591,683,598,687,582,645,729,644,611,627,603,590,649,612,598,728,658,645,635,594,665,639,656,666,654,614,603,666,720,710,701,718,701,723,707,713,700,693,695,707,700,731,699,729,701,698,710,711,728,729,709,707,702,714,672,697,718,673,715,698,726,724,709,699,682,699,689,711,701,698,714,742,607,601,591,611,597,614,610,625,620,566,612,605,618,583,647,605,614,604,615,587,587,598,625,596,593,583,593,610,623,605,619,629,593,622,610,609,604,615,586,613,634,588,596,615,627,613,632,633,615,593,615,616,605,636,610,623,618,635,627,607,625,613,629,632,624,634,650,619,590,624,621,642,586,641,617,622,633,611,613,649,649,636,623,593,591,595,589,593,582,566,579,600,590,581,580,573,591,580,593,595,598,590,591,583,594,591,596,590,583,583,605,596,599,592,588,605,583,584,584,584,597,588,621,561,553,561,529,528,538,539,558,544,555,548,564,555,561,538,549,566,554,558,544,563,551,541,546,566,544,560,555,554,539,573,556,551,558,546,549,537,540,561,547,547,550,560,555,553,550,566,569,560,563,545,559,557,543,535,565,571,551,557,554,546,565,571,561,550,533,568,558,559,540,564,560,560,549,543,545,575,539,555,560,561,557,567,560,572,546,565,547,574,560,558,587,552,544,542,554,536,553,546,548,554,552,539,536,550,548,554,555,543,545,535,550,550,552,546,554,566,562,551,537,563,534,561,546,553,551,539,551,538,542,536,544,555,542,552,545,552,543,585,585,587,580,583,588,582,599,591,592,566,578,582,583,567,594,580,589,575,573,586,606,583,596,605,585,589,583,583,592,598,575,597,604,584,580,595,570,594,588,574,576,594,582,623,621,614,623,618,603,617,610,612,619,618,594,617,604,604,583,608,611,611,617,614,628,604,632,619,612,615,592,621,607,598,626,599,617,600,616,607,590,624,616,610,624,672,704,691,662,660,653,631,673,653,673,676,666,656,644,671,652,671,665,652,662,670,675,659,677,659,658,651,650,674,652,654,671,698,660,658,647,656,649,693,636,642,640,655,657,661,644,641,660,676,652,644,654,635,659,656,663,654,653,660,654,655,658,659,644,666,653,660,663,648,625,643,674,650,658,664,651,643,671,652,581,559,604,567,580,577,586,571,570,570,592,574,590,584,572,577,575,575,573,588,586,575,582,585,604,571,596,559,576,592,586,578,592,594,578,560,598,569,572,571,582,572,566,572,571,582,568,583,562,590,661,659,662,683,658,690,652,693,686,676,696,693,682,684,677,651,669,674,680,671,679,695,649,681,683,641,675,674,701,690,685,662,676,661,665,681,658,651,679,645,683,677,680,672,670,655,676,658,686,681,659,650,673,728,697,641,651,684,674,707,696,662,683,668,682,686,688,676,667,702,691,636,669,705,671,663,661,664,680,687,679,665,652,633,687,700,713,670,655,659,770,720,685,725,713,614,657,686,681,703,663,653,648,685,690,742,711,680,725,672,714,660,669,706,724,683,669,685,674,666,693,712,708,733,698,677,690,665,687,675,666,648,674,637,671,646,670,666,635,672,664,649,654,688,665,667,687,679,671,664,682,654,680,680,689,679,655,678,691,651,666,655,686,698,675,675,650,653,654,644,636,639,644,641,656,667,652,669,651,641,638,648,652,655,640,653,633,629,653,656,653,647,646,642,646,623,662,635,655,655,629,654,649,656,650,653,646,651,645,642,646,651,651,658,656,661,648,741,772,762,734,723,756,732,734,742,737,742,758,767,743,716,725,719,741,722,727,754,742,738,730,744,728,753,771,740,756,742,780,741,765,741,734,756,719,736,757,721,765,706,745,753,755,716,716,723,722,735,721,728,718,778,740,731,733,723,694,720,737,722,687,768,757,735,741,790,705,717,727,734,727,700,746,713,733,700,745,768,725,782,728,702,754,725,752,706,744,734,765,742,735,744,720,720,730,733,755,752,725,730,763,749,719,756,743,757,763,788,804,743,720,743,722,731,730,719,734,719,751,761,750,735,739,740,689,685,676,710,721,746,744,724,723,656,708,724,748,717,745,716,693,698,735,740,697,759,742,723,742,743,699,750,735,725,739,705,728,721,707,708,708,716,710,671,701,675,698,676,693,672,678,655,680,691,644,713,704,697,699,691,696,686,670,650,673,688,647,672,694,690,659,659,675,683,689,706,683,660,650,662,670,668,662,673,689,707,683,636,646,647,657,655,650,675,659,665,664,650,639,649,641,662,642,637,647,674,650,649,650,643,640,645,646,647,653,650,666,663,653,643,657,653,660,651,644,635,641,648,654,672,658,778,732,738,734,751,767,729,760,744,746,740,767,764,726,749,726,769,705,727,770,738,735,749,751,749,725,768,752,751,712,731,768,748,746,740,749,746,783,709,749,755,770,725,745,734,706,789,719,751,731,709,741,722,721,734,755,723,716,682,723,740,745,692,718,765,705,715,744,703,730,729,717,760,738,738,726,731,699,703,729,735,735,764,704,724,712,736,729,726,743,754,751,752,695,767,698,715,697,697,698,738,732,728,706,742,718,682,748,699,708,681,675,718,698,737,678,704,728,690,680,702,698,686,690,670,692,735,697,719,712,692,704,715,693,732,693,701,699,748,684,724,731,723,709,722,715,692,727,722,710,736,712,720,729,733,724,725,712,741,730,735,734,723,720,705,701,724,731,724,697,730,718,710,737,720,727,733,719,707,725,698,729,733,725,723,712,660,617,629,630,611,633,659,632,645,595,616,624,594,619,633,658,633,640,642,600,643,614,648,605,627,620,592,615,598,650,639,600,599,604,627,608,635,631,609,588,579,582,586,568,591,569,566,602,592,589,589,573,572,602,582,566,606,564,580,589,582,573,584,579,588,563,584,584,568,577,573,582,590,552,572,578,583,577,565,562,584,570,586,607,596,620,614,575,642,601,592,611,604,588,617,607,618,601,602,603,601,624,633,605,615,599,619,625,608,616,612,624,597,627,632,590,587,591,604,643,549,559,556,558,569,572,548,559,553,571,556,566,578,568,559,563,559,564,562,566,578,554,569,559,561,572,560,577,541,543,574,557,558,587,578,552,550,580,558,569,554,566,584,568,588,583,564,555,561,576,558,575,571,590,596,585,573,590,578,566,585,579,574,558,574,585,586,573,577,583,581,578,549,561,580,587,562,570,590,558,580,575,569,575,584,560,559,569,553,544,544,565,550,544,548,555,540,548,544,540,554,560,540,536,539,555,555,547,557,550,547,547,544,542,555,570,534,537,545,545,548,541,548,546,538,553,552,553,794,680,767,728,719,749,766,768,733,801,722,723,803,742,760,774,750,761,725,727,770,740,663,742,754,727,818,770,745,778,736,776,777,804,778,751,692,689,780,722,752,816,746,723,684,710,705,704,689,716,685,696,693,689,719,701,691,706,716,713,723,706,705,702,703,698,705,694,723,678,725,711,701,693,692,728,745,734,711,709,697,694,708,714,721,703,694,697,698,666,653,670,660,655,684,674,678,673,649,675,663,638,684,669,672,696,670,690,661,686,669,680,695,649,649,698,649,673,671,705,679,692,655,645,651,668,650,642,673,681,654,686,676,638,656,639,629,623,644,623,652,652,661,668,641,637,629,630,625,657,625,647,638,633,664,652,648,644,657,632,631,636,658,644,640,644,654,642,645,643,635,652,654,628,635,648,643,665,666,673,654,656,655,676,671,675,661,682,674,648,658,666,675,663,674,667,650,670,659,663,682,668,670,662,664,666,679,676,686,670,683,678,669,664,682,676,657,681,668,674,661,661,655,630,655,653,655,662,649,679,650,668,661,672,646,663,657,651,657,652,649,651,658,664,654,671,651,649,657,648,654,646,664,664,645,650,665,680,652,654,677,648,670,670,669,719,724,697,731,755,725,742,778,760,715,748,705,727,748,763,750,758,747,724,765,756,738,762,743,701,726,761,715,783,710,752,747,743,764,713,731,747,755,735,716,724,761,699,714,752,717,757,738,689,741,726,734,697,709,712,704,716,721,749,729,692,718,752,751,721,748,727,765,705,759,722,735,708,737,766,704,753,733,721,766,695,743,772,690,713,711,711,694,691,659,704,711,723,685,708,690,693,707,704,661,723,696,657,683,649,759,726,674,694,731,673,681,674,739,717,683,736,694,712,727,677,709,694,704,725,697,672,586,603,618,619,598,602,619,603,615,595,617,565,646,602,563,608,600,590,600,593,613,609,597,596,616,569,594,606,602,595,614,589,600,603,585,608,598,617,618,605,605,622,586,609,611,601,589,592,591,668,699,687,674,648,703,645,641,647,627,655,655,658,648,642,675,659,621,679,673,643,691,687,655,630,698,647,644,653,738,619,681,670,653,672,601,645,664,682,636,669,647,646,666,642,655,679,623,667,641,662,660,647,659,668,667,651,677,653,674,671,667,660,658,653,662,650,646,658,656,639,663,660,655,652,645,665,649,661,668,650,662,664,668,639,616,613,602,626,597,616,612,612,604,627,609,608,614,622,598,630,616,621,609,605,619,589,590,605,606,620,619,613,625,637,616,613,604,622,605,616,595,621,591,623,643,596,606,597,622,604,691,681,664,701,713,722,697,682,723,795,661,755,768,687,752,679,688,660,735,717,746,737,741,741,751,715,750,719,674,813,726,748,705,759,725,687,706,703,687,695,739,707,697,723,665,693,691,690,708,705,697,679,706,687,729,709,731,729,725,723,714,715,707,741,714,661,710,699,705,722,707,724,699,706,732,710,701,722,693,708,710,705,745,721,607,628,614,613,599,595,633,591,616,632,627,603,630,635,628,594,627,605,616,606,595,587,601,639,607,601,621,605,599,623,635,597,608,619,629,637,607,599,607,588,639,650,666,666,649,646,650,612,648,636,644,674,641,656,634,624,620,613,608,606,639,660,673,657,633,646,645,626,616,658,599,634,624,658,643,640,643,631,620,631,623,660,695,594,677,693,686,694,684,682,703,684,688,677,680,704,672,717,704,689,690,698,695,691,663,703,718,687,704,694,700,670,689,690,683,695,685,684,690,690,685,685,687,707,689,684,682,690,705,683,680,667,697,676,669,674,686,677,673,677,681,681,672,691,676,701,689,697,659,690,676,690,677,682,698,669,670,687,679,677,680,677,676,680,665,664,680,679,702,693,696,662,677,680,649,690,692,670,724,725,741,758,763,760,733,751,740,717,699,732,696,748,713,766,761,736,729,754,735,731,718,740,751,699,746,720,728,736,788,761,749,761,759,712,781,722,746,786,757,738,761,701,756,701,726,739,702,724,693,696,727,736,706,707,694,682,711,750,716,715,716,727,702,751,732,728,731,720,726,747,684,738,703,713,749,707,752,732,719,689,709,693,698,700,734,716,756,670,658,683,672,651,698,668,669,687,676,662,664,679,694,675,674,690,649,666,646,680,665,663,669,684,667,667,676,636,648,667,674,676,643,672,666,661,700,681,662,601,577,587,565,571,592,558,567,565,569,574,558,569,584,569,568,570,581,586,575,561,581,548,568,577,572,597,567,578,573,562,571,569,568,579,564,577,568,585,555,580,621,607,610,580,551,648,601,577,620,617,590,621,584,628,626,616,610,588,594,608,595,640,630,598,604,618,624,625,557,592,599,599,613,609,578,603,670,615,592,580,596,583,588,635,546,556,613,590,578,581,578,574,580,584,576,577,586,594,589,583,594,585,585,582,595,601,593,585,580,589,591,577,584,592,586,583,580,580,586,586,578,582,599,582,593,592,580,580,585,583,536,552,544,532,544,550,554,542,545,534,525,535,532,540,542,541,545,533,538,540,559,543,531,538,542,545,545,549,546,534,536,535,548,530,531,542,550,537,532,535,541,534,536,542,541,541,528,655,648,638,644,654,653,642,636,663,640,623,627,643,629,618,657,642,648,644,638,641,637,648,649,642,644,660,638,665,627,619,632,637,642,618,665,665,640,654,641,644,585,546,565,603,578,570,589,579,580,578,587,549,587,571,585,581,567,568,569,563,586,560,580,574,559,575,578,584,578,588,576,584,559,589,565,579,577,568,573,584,568,570,669,571,635,596,626,625,663,629,587,576,603,617,594,582,628,571,635,617,621,583,656,597,604,599,574,589,660,609,649,637,634,596,607,643,622,586,556,647,599,590,607,664,599,506,643,637,643,641,609,627,625,631,618,629,636,632,631,608,639,645,604,604,611,640,608,628,611,634,639,612,620,626,648,643,592,651,617,620,604,637,618,623,645,637,617,596,578,587,581,575,577,584,583,593,577,577,573,570,595,587,590,579,594,560,587,613,584,592,573,580,562,578,587,583,577,579,573,584,556,576,574,584,588,584,591,575,587,549,541,574,547,559,544,565,565,561,561,566,554,555,554,573,551,564,562,557,545,544,568,558,562,567,556,561,549,564,558,555,557,565,564,573,565,560,554,551,559,560,565,533,611,594,588,624,642,585,578,620,604,656,576,603,614,608,614,585,619,580,630,650,623,613,628,584,606,639,648,647,605,607,620,596,646,632,614,589,648,595,605,597,628,633,621,592,661,624,631,623,762,751,768,730,751,747,766,738,734,771,737,728,779,744,771,745,772,750,746,738,746,729,737,761,705,727,764,743,771,784,757,776,726,730,738,760,777,704,731,746,758,742,733,760,733,716,732,734,716,723,742,707,745,729,739,712,728,721,720,730,727,713,733,723,724,723,722,723,738,751,712,712,729,727,730,712,756,715,723,716,744,705,708,690,711,665,683,700,685,702,710,711,709,724,696,690,692,704,692,695,708,688,671,706,705,687,672,699,688,700,693,721,671,697,705,688,718,691,707,715,704,704,695,676,696,749,675,691,704,673,716,665,668,652,695,700,666,701,669,709,698,693,689,724,716,716,730,697,713,705,717,666,673,716,683,681,677,677,669,688,732,675,659,717,626,728,704,703,694,726,703,767,706,731,696,742,703,697,740,721,702,751,706,715,699,733,745,690,735,741,738,715,704,694,725,741,722,757,690,715,699,715,634,683,633,658,650,669,675,637,678,635,703,671,679,672,688,678,659,661,645,665,649,651,684,666,684,675,670,663,685,643,651,679,678,684,668,689,634,669,650,692,668,560,547,515,565,585,554,565,563,543,517,555,527,560,555,523,539,545,563,538,509,564,553,557,537,508,546,549,563,533,520,546,563,546,566,579,528,557,565,495,541,539,552,532,541,528,546,542,531,533,539,538,516,537,529,545,543,522,535,536,529,534,524,551,532,524,527,535,534,538,532,536,532,532,534,540,528,529,543,534,537,524,531,539,539,559,551,570,559,559,541,545,556,563,558,545,549,543,533,566,557,576,554,552,557,545,560,549,544,553,544,558,565,565,552,543,569,562,549,563,560,552,555,540,558,554,560,549,566,541,556,541,573,674,646,694,654,650,673,680,681,698,656,703,676,648,664,655,676,647,683,666,679,671,672,685,662,684,644,692,683,701,662,653,683,655,679,679,624,655,721,680,692,678,668,662,621,624,638,657,615,644,624,642,644,601,633,610,618,621,627,645,630,627,627,608,612,637,630,613,627,621,599,646,618,605,630,630,638,592,623,618,628,642,632,608,618,647,626,624,619,617,597,576,596,575,586,578,559,581,582,564,556,577,572,580,600,585,583,588,574,573,582,590,573,593,572,594,587,578,575,582,585,584,573,583,568,578,569,569,565,565,563,584,580,590,586,578,608,650,617,644,614,599,602,648,622,630,609,642,631,625,605,630,603,628,633,599,589,625,628,657,624,632,642,630,639,608,624,620,612,604,642,603,601,586,591,658,635,647,644,557,683,731,721,661,723,709,693,726,682,708,689,725,717,711,701,702,687,732,695,722,729,712,730,682,715,699,721,685,721,701,700,693,684,687,739,716,703,700,730,708,732,688,664,630,612,620,623,640,631,622,639,639,619,646,635,636,659,655,608,645,624,618,622,637,655,647,653,645,652,605,638,636,608,611,625,620,614,648,643,626,637,657,637,627,633,651,639,654,564,563,580,574,574,578,587,573,582,577,568,563,571,574,568,570,572,578,581,581,582,574,575,580,580,573,571,569,578,578,583,561,570,570,562,566,588,576,701,704,668,665,680,634,666,668,700,656,696,663,679,672,685,657,665,662,631,670,707,662,690,639,667,649,662,713,689,685,685,694,689,700,718,654,658,674,701,692,727,660,677,685,733,637,638,635,605,630,620,624,633,608,638,650,603,631,655,611,630,637,644,621,667,637,632,604,616,623,639,618,619,618,649,616,628,628,649,636,622,645,616,630,616,644,610,677,588,598,589,591,600,588,576,586,583,578,590,581,582,578,590,585,583,608,594,595,585,591,594,591,578,587,570,602,581,604,579,569,599,578,591,585,576,577,578,585,606,574,590,530,531,519,534,533,528,537,532,518,550,517,533,520,530,528,525,535,534,523,524,554,531,520,521,523,539,529,524,518,520,532,539,525,528,520,526,519,527,521,530,516,530,522,494,559,571,572,577,564,573,585,558,576,558,564,571,595,580,566,584,589,575,590,585,585,581,580,595,568,588,559,584,583,569,587,584,579,579,592,577,582,563,572,589,575,577,657,609,634,596,627,629,605,616,615,626,641,611,621,623,618,606,615,615,605,619,596,619,622,600,612,618,625,626,610,602,623,630,621,622,613,615,618,624,690,663,681,711,696,683,674,662,687,678,686,714,713,687,709,648,658,692,705,659,698,691,652,669,683,697,684,676,691,679,672,648,628,672,720,669,654,701,680,707,659,688,656,694,702,627,613,644,636,645,620,626,629,625,655,619,620,611,621,625,613,623,637,610,615,633,632,649,602,637,606,624,616,651,618,588,635,655,610,609,632,594,654,619,627,643,627,620,642,614,610,624,618,590,587,586,592,570,567,570,574,567,584,572,597,569,565,583,574,585,584,565,564,556,577,585,582,579,570,571,580,573,560,579,586,568,571,572,572,572,574,577,581,569,571,570,635,651,620,628,649,617,617,679,649,614,634,684,632,661,632,635,662,666,662,628,606,655,606,651,664,622,641,600,604,639,675,620,665,666,695,692,684,680,660,683,686,693,678,680,670,690,685,718,677,683,706,679,691,686,683,693,693,659,686,666,683,694,673,680,698,704,687,678,686,686,687,677,687,660,693,670,667,676,694,679,671,675,684,670,676,681,701,684,694,668,675,678,687,690,683,666,681,674,660,677,690,664,673,674,665,676,682,667,686,681,669,672,693,673,682,683,674,674,682,675,701,709,739,712,742,761,750,728,734,758,727,747,738,741,733,735,760,733,735,737,724,793,780,737,758,746,740,726,780,770,742,747,736,748,750,727,750,747,743,732,739,726,732,725,746,726,730,722,759,699,702,735,723,683,728,674,739,726,706,748,733,749,719,728,707,665,669,697,736,698,733,752,733,723,727,737,735,743,720,727,671,713,747,708,753,710,701,737,719,734,735,723,729,684,714,699,663,667,671,664,692,688,663,681,669,689,672,692,680,675,678,695,663,683,696,654,673,675,680,688,674,709,671,662,689,680,647,658,662,708,671,671,652,692,665,686,641,635,647,651,636,650,637,649,650,667,659,646,641,648,652,631,640,645,643,677,659,668,661,636,650,661,648,649,659,651,656,642,657,646,647,671,654,623,648,644,654,653,583,564,601,570,584,598,585,604,612,590,593,598,578,584,587,590,604,622,597,574,606,597,583,589,572,605,597,601,585,571,584,601,581,580,573,579,591,606,598,596,521,542,536,558,540,552,543,530,542,545,546,534,538,542,544,518,533,543,536,541,536,535,542,541,543,535,545,525,548,540,540,546,547,537,539,546,537,550,534,526,524,532,530,523,524,531,529,522,515,529,525,523,515,526,523,527,531,528,527,516,510,519,524,534,516,516,522,519,521,526,524,528,527,516,520,529,513,519,531,526,532,517,523,521,525,545,524,519,536,616,645,647,627,654,656,659,654,651,612,645,667,645,646,688,673,633,650,649,643,615,677,656,657,633,655,684,624,678,645,672,646,612,671,666,646,631,649,669,635,618,640,656,665,630,636,655,650,715,656,663,670,677,688,641,681,642,650,682,676,655,662,651,671,673,659,663,648,664,668,660,638,654,651,663,644,669,652,667,646,665,665,649,652,659,665,665,675,673,667,671,605,592,593,596,611,607,590,602,594,603,597,580,603,621,588,595,601,604,606,612,603,611,598,579,612,591,592,599,586,610,604,609,611,590,608,583,574,588,620,595,563,559,558,555,566,565,560,562,561,552,570,556,562,561,564,560,551,549,564,554,555,582,551,551,555,560,549,545,554,545,558,554,558,556,565,557,570,579,573,554,537,562,558,555,569,567,558,551,554,546,623,616,576,604,623,625,596,585,578,636,614,611,615,582,595,589,619,633,602,589,590,602,670,613,627,593,623,590,579,600,592,609,619,591,598,633,653,633,578,578,583,586,568,577,581,581,582,578,570,558,581,565,598,583,576,563,566,583,563,573,562,580,580,570,553,569,568,570,582,562,563,571,582,572,575,566,577,568,574,565,582,590,577,583,573,572,601,645,591,592,567,616,520,579,591,617,585,642,568,613,553,592,572,575,604,631,599,585,592,598,648,593,571,585,619,548,644,621,584,609,614,579,578,592,645,593,571,617,590,598,730,735,736,740,742,737,709,719,723,722,745,734,706,758,779,731,713,745,714,703,773,728,763,731,749,783,755,720,719,721,767,743,720,747,725,732,746,711,785,723,737,725,720,720,708,712,735,714,711,713,707,704,723,718,699,721,724,721,717,719,731,733,714,705,702,702,718,710,718,703,715,708,708,726,713,674,665,633,608,628,642,613,620,642,616,653,575,646,602,676,597,631,596,637,612,642,639,611,650,613,564,600,643,620,653,623,648,649,656,627,676,614,646,616,615,643,546,642,611,574,512,621,582,570,595,533,617,564,543,581,566,578,577,602,567,589,561,561,623,561,570,576,591,552,574,535,569,581,551,569,557,604,564,580,584,590,607,586,580,554,582,567,584,576,578,595,597,595,586,575,613,591,586,585,585,587,591,598,607,591,574,592,581,601,579,572,606,588,574,616,592,598,591,564,572,589,575,602,605,593,604,586,593,587,587,643,640,623,644,628,609,638,618,661,634,642,646,641,614,639,639,634,635,635,633,639,626,633,629,638,610,668,623,626,642,641,625,634,623,654,640,647,628,651,642,635,625,610,654,669,687,670,669,668,670,668,648,672,670,666,661,654,676,673,667,675,653,677,665,649,659,675,659,660,659,673,677,661,670,680,685,674,672,675,652,644,675,661,689,657,674,674,671,663,663,673,677,666,670,671,670,671,693,690,677,661,660,684,650,675,661,661,671,675,655,670,677,680,677,659,671,688,661,669,656,675,681,693,665,662,678,677,657,645,667,682,686,671,694,666,665,668,667,660,673,647,659,682,669,685,680,688,670,669,670,662,665,676,661,679,686,679,660,676,659,665,671,659,664,655,681,677,668,666,669,684,660,657,658,659,657,650,666,664,677,680,665,660,662,676,662,650,664,670,672,658,683,670,673,674,654,677,688,688,667,671,668,668,673,652,674,665,689,674,664,650,649,656,654,661,660,668,649,663,641,663,664,650,648,650,647,659,664,645,640,644,673,659,655,644,637,651,665,668,663,633,632,656,665,661,662,653,594,576,584,595,580,573,601,583,582,604,599,592,594,564,597,591,585,589,590,595,592,587,617,603,603,601,588,595,596,613,611,587,601,587,595,590,601,563,597,584,581,590,605,718,662,716,744,729,673,699,707,769,703,758,722,761,750,730,695,727,766,736,782,743,690,672,725,713,674,627,741,687,747,715,731,765,713,785,731,747,721,747,767,733,710,683,688,760,761,702,726,721,737,747,730,743,715,732,712,723,744,739,726,731,746,724,728,703,715,747,725,724,747,716,729,724,682,749,730,714,746,721,739,706,694,698,713,714,709,742,742,680,615,601,615,576,623,601,622,585,591,568,588,601,590,624,631,597,618,583,611,602,612,602,611,605,617,629,619,599,561,615,628,615,597,587,581,596,585,584,613,604,593,570,634,619,624,607,612,620,636,634,624,629,625,604,639,595,619,610,627,634,628,619,630,610,622,606,641,628,628,623,633,630,614,592,598,646,629,641,640,610,632,619,621,622,627,634,675,573,572,569,563,563,568,562,566,551,567,554,564,575,564,580,558,568,547,557,552,566,561,576,562,570,569,569,580,573,573,550,569,590,563,563,570,548,578,569,567,575,544,642,644,631,630,691,661,636,646,574,600,623,624,676,643,681,641,670,647,622,637,623,638,596,608,594,636,589,628,710,655,636,627,633,611,629,637,611,663,620,654,680,659,668,685,724,649,689,686,649,666,657,666,673,674,663,659,623,695,649,685,651,697,662,648,656,662,696,689,653,677,646,679,692,649,663,637,655,677,682,695,622,674,627,646,639,641,624,637,641,631,629,649,649,649,652,627,620,622,621,640,614,623,633,631,643,659,621,676,644,651,635,633,631,642,646,630,652,665,634,639,629,615,625,643,631,610,653,575,583,589,593,584,596,577,593,595,592,600,576,585,595,592,577,602,606,602,595,585,577,614,583,588,583,611,592,596,603,606,573,578,586,603,595,613,572,581,573,579,553,567,551,565,557,571,543,565,587,561,566,566,561,555,561,562,543,565,561,544,569,553,569,556,576,574,570,575,561,563,554,556,549,563,571,543,566,569,564,603,586,583,600,605,598,596,592,581,595,585,605,602,599,603,585,596,595,608,589,613,618,571,564,587,589,594,610,601,598,605,579,605,603,595,599,577,596,597,587,588,606,607,615,586,587,595,717,763,726,710,729,702,733,750,750,745,745,717,727,702,713,728,712,748,719,730,690,739,720,733,757,752,721,709,690,734,735,711,740,707,688,730,763,742,746,727,728,707,716,717,716,688,731,731,724,722,698,725,732,699,710,732,703,718,696,728,709,713,726,701,737,709,710,721,717,720,703,719,706,714,733,727,732,717,700,698,728,713,715,704,713,754,640,637,643,635,622,618,674,610,602,643,655,636,617,620,651,600,621,627,601,618,611,587,622,632,612,595,633,608,617,608,592,598,603,593,660,618,640,601,605,644,632,635,622,638,652,620,556,573,565,543,540,552,571,558,552,580,567,557,554,533,567,570,550,563,574,574,557,560,583,561,572,553,579,571,556,568,567,572,573,551,568,589,557,574,555,528,564,562,564,565,560,572,561,549,559,562,555,550,566,550,572,573,564,577,569,557,558,558,565,560,557,558,567,575,575,561,550,562,568,559,536,564,555,562,565,554,561,556,571,567,581,578,577,570,583,587,581,575,575,578,575,569,586,577,584,587,583,568,580,587,591,584,585,583,583,581,557,579,573,584,566,595,572,598,572,587,583,564,577,578,582,589,586,565,690,619,635,667,647,647,614,651,625,602,637,673,627,651,674,691,658,650,608,628,603,639,630,635,647,668,635,596,654,654,651,606,616,651,655,614,642,642,633,656,711,699,707,716,710,694,675,703,725,697,680,696,691,678,711,705,691,702,718,691,704,690,702,677,702,681,700,693,706,687,681,671,689,707,699,683,714,691,695,682,662,672,682,661,657,681,662,680,667,667,678,665,693,662,677,665,684,666,667,662,686,680,660,672,664,662,674,664,678,667,671,657,665,665,664,675,680,664,679,670,675,672,657,673,660,608,597,576,602,596,582,604,582,574,571,576,603,590,590,587,583,587,584,610,597,583,596,589,582,581,566,573,579,581,586,580,573,570,568,580,581,587,596,593,589,592,574,585,591,605,592,597,635,689,583,643,632,627,591,619,641,664,673,640,655,601,623,611,606,629,640,600,635,580,634,644,606,631,598,643,648,612,682,609,604,619,686,629,698,697,694,705,671,690,682,695,688,699,689,704,704,682,693,714,683,683,700,687,680,710,705,683,670,682,698,672,686,701,679,677,696,678,686,672,717,693,687,660,694,676,688,667,693,664,670,674,659,660,686,673,692,677,674,681,677,673,665,682,699,676,679,657,672,669,682,686,660,680,668,702,673,677,671,674,677,679,656,659,660,679,654,663,580,583,567,575,569,603,571,573,561,575,565,577,544,579,580,584,561,570,568,580,574,557,582,586,577,585,574,574,581,574,590,576,577,574,582,578,585,593,568,661,652,671,645,679,655,642,617,657,635,690,649,658,654,677,653,674,642,686,688,654,690,634,681,679,669,654,648,687,645,637,652,683,650,633,649,660,642,682,663,649,642,635,587,582,572,575,567,565,567,577,589,601,579,581,597,557,592,564,591,592,568,592,569,566,565,591,576,580,585,595,564,561,578,574,584,577,576,579,572,594,585,590,570,603,608,608,567,596,562,554,571,572,604,568,572,565,575,539,581,580,546,583,550,576,558,556,570,550,600,587,549,561,578,569,583,572,554,568,577,560,572,561,556,584,565,559,574,571,553,642,654,668,668,658,661,656,651,659,665,640,658,673,684,672,662,665,658,641,648,646,651,650,633,647,674,655,648,659,655,651,661,660,662,662,662,654,647,644,647,655,656,641,652,660,654,649,660,668,634,619,631,614,625,623,608,602,598,640,606,620,624,621,633,616,615,617,592,627,611,614,611,612,615,642,612,610,613,595,623,633,620,618,605,619,608,619,613,603,612,616,599,595,573,592,582,580,587,585,576,591,580,590,578,581,592,580,575,581,584,570,580,586,586,572,592,592,586,583,567,580,590,577,573,586,594,584,597,583,585,586,590,579,589,654,610,657,628,680,649,638,621,647,618,649,622,644,648,640,629,665,627,604,647,604,616,634,635,640,660,656,612,634,620,623,647,660,657,626,626,620,601,630,626,642,700,686,685,731,713,694,691,708,720,699,706,706,697,696,685,705,703,711,679,694,694,691,683,716,688,697,688,695,699,706,710,676,706,707,702,690,682,699,697,692,684,686,681,678,690,674,703,677,683,671,675,691,687,679,681,687,674,681,675,684,691,691,690,698,689,694,686,670,687,660,678,682,681,683,676,702,719,673,683,691,685,679,666,657,669,708,662,670,673,674,665,655,653,682,677,674,685,666,661,681,665,677,668,668,668,677,651,659,668,671,667,675,668,662,674,657,680,677,672,676,656,663,681,654,681,663,676,670,659,670,656,657,679,661,663,649,663,649,677,660,662,663,664,676,656,660,674,661,660,669,653,676,663,659,667,655,681,654,651,668,671,656,672,666,654,662,655,673,675,733,751,739,749,724,720,662,708,718,689,717,710,719,743,711,722,730,691,717,699,719,731,703,706,709,728,697,728,702,734,723,762,762,688,726,762,703,747,684,713,708,701,700,689,698,691,693,696,705,700,726,720,690,692,680,715,708,677,715,731,692,683,712,723,704,685,713,699,701,698,692,696,716,705,694,694,717,703,641,698,716,662,701,664,706,673,732,709,687,678,704,708,646,699,729,645,725,711,661,691,704,656,681,688,675,616,683,680,649,699,664,694,732,730,689,706,680,756,678,693,656,654,620,656,666,659,659,667,657,666,685,652,654,638,663,670,642,673,661,644,615,686,667,664,678,631,652,650,664,664,664,676,669,670,671,634,649,677,665,643,666,671,665,531,539,566,558,555,568,562,576,548,560,560,563,570,552,572,557,553,563,541,562,541,549,573,561,557,562,564,553,549,559,546,553,544,552,559,547,534,551,555,573,590,607,600,583,589,591,598,598,609,584,575,583,587,569,582,587,587,610,609,582,584,577,591,602,607,594,596,585,593,593,593,584,593,591,585,580,612,593,615,604,616,624,602,638,611,608,647,627,617,604,619,630,627,626,626,625,651,606,633,604,609,623,615,626,605,625,627,621,649,611,609,610,612,632,613,641,621,623,632,624,696,689,712,728,690,718,698,701,694,704,699,685,717,725,713,722,678,722,695,701,764,733,714,691,691,717,751,683,722,673,670,723,691,716,730,731,750,715,701,697,676,712,715,718,683,701,629,639,662,663,584,639,670,647,662,637,657,652,661,623,668,674,632,635,664,622,613,641,657,636,654,615,655,638,648,634,650,632,596,629,655,624,657,653,646,626,643,631,666,655,653,574,614,605,629,640,622,629,670,619,680,604,627,632,610,665,654,621,664,651,567,671,641,656,603,623,673,596,690,727,579,622,633,677,617,645,627,619,592,618,605,625,660,638,649,649,596,652,587,720,688,704,719,678,701,691,713,708,713,692,691,718,675,700,694,714,711,703,692,693,712,701,718,696,691,696,683,711,670,700,710,691,688,690,699,737,695,711,723,696,697,689,689,676,670,667,657,677,662,660,670,664,659,657,662,655,658,659,677,692,689,671,674,704,690,665,671,670,663,668,647,672,652,685,664,671,666,696,672,668,694,661,666,662,668,696,688,648,654,634,672,640,650,654,641,649,652,647,671,644,643,650,633,648,640,643,631,659,637,632,630,644,644,629,630,651,648,668,642,626,650,640,643,631,636,647,635,653,653,652,653,658,661,655,656,662,669,660,670,680,661,667,667,657,668,677,651,660,673,647,648,675,661,648,663,672,659,655,652,664,666,663,659,661,643,650,664,660,668,655,661,671,650,652,745,754,712,708,720,682,704,730,741,730,724,749,741,687,745,689,685,715,738,710,724,752,709,748,683,697,716,741,701,695,728,695,701,742,714,682,715,795,701,699,725,694,705,704,718,718,701,678,698,720,693,683,680,699,704,719,705,711,692,700,696,686,708,713,692,706,701,692,704,699,711,709,700,691,693,688,700,718,701,711,701,686,697,696,700,715,673,700,711,734,699,766,687,686,685,738,746,697,685,655,677,654,642,729,735,688,645,697,706,674,753,714,737,752,697,713,701,722,776,693,660,687,675,687,700,706,647,658,649,701,677,673,685,715,668,667,647,688,674,658,685,671,665,672,691,645,661,661,669,675,669,679,676,653,639,664,676,659,665,676,686,687,683,642,656,686,648,667,676,682,657,678,677,666,648,634,656,650,646,651,637,655,643,623,633,667,643,649,678,646,642,628,631,639,640,638,657,635,638,643,675,623,647,635,659,653,649,648,637,644,633,650,645,661,628,647,631,636,630,636,639,641,658,644,654,649,649,646,630,658,663,650,658,651,634,643,661,652,653,639,658,663,634,661,637,659,640,655,650,649,642,665,645,653,632,639,657,662,634,657,643,590,609,600,591,581,604,581,596,600,594,605,602,590,605,588,575,606,598,592,616,597,603,587,603,599,581,588,608,600,595,603,605,618,594,572,593,585,594,602,579,591,601,629,622,673,620,676,654,607,637,621,660,641,642,702,665,566,636,624,656,620,650,604,691,584,644,656,694,616,716,616,592,653,696,621,675,642,583,736,630,644,659,634,651,632,677,630,636,626,650,659,669,649,645,653,623,659,655,647,653,634,636,671,648,646,656,639,645,647,659,627,637,624,624,650,640,654,641,643,636,663,665,659,658,620,578,581,556,549,561,554,560,564,562,539,561,540,556,568,555,539,560,566,549,568,561,569,558,560,556,573,538,547,554,550,565,573,551,544,540,569,548,552,572,548,571,555,568,555,568,565,551,560,564,566,557,558,554,565,576,560,548,554,573,565,574,564,566,562,555,568,576,559,564,563,562,556,553,576,562,559,560,572,557,562,579,558,547,565,540,576,567,569,556,547,561,584,555,547,578,555,558,559,554,554,576,558,546,562,574,545,539,564,555,583,580,558,568,558,567,565,561,560,566,564,578,555,542,539,523,510,518,522,524,522,519,541,528,511,523,526,535,515,510,512,533,520,510,534,539,533,518,518,520,516,535,523,514,521,529,526,534,523,531,521,529,512,531,523,519,523,539,525,534,521,534,532,509,528,534,536,540,527,540,542,522,525,542,530,535,530,529,519,524,542,537,536,539,542,536,525,529,537,533,531,538,528,536,539,525,525,526,522,529,529,526,521,538,530,532,550,544,555,535,536,550,529,533,547,545,546,540,534,552,531,553,542,549,529,526,539,535,530,539,540,538,549,542,540,541,547,536,549,535,550,531,548,545,538,555,535,549,526,549,566,555,555,559,569,556,546,578,568,565,559,565,572,557,565,559,553,553,562,561,568,565,567,569,565,552,567,554,543,569,569,564,560,568,573,576,547,570,561,567,554,556,553,566,608,623,621,589,610,594,620,621,609,605,616,610,597,612,619,614,597,609,609,611,612,617,611,602,620,631,618,609,605,628,607,627,614,594,614,608,645,620,632,649,646,614,630,622,666,616,634,647,634,628,639,643,649,649,625,664,631,642,637,623,628,634,652,648,650,617,655,665,621,628,646,628,643,641,639,726,745,715,703,701,738,694,711,675,732,766,734,730,716,678,673,694,719,728,712,717,717,731,669,721,720,736,728,708,686,729,738,698,713,716,699,744,687,689,724,744,711,747,677,732,738,723,738,729,726,727,741,744,711,725,723,719,711,728,735,740,722,736,720,715,719,729,730,732,714,719,725,738,707,730,727,740,714,722,728,736,718,725,750,669,657,645,659,667,673,643,698,653,633,661,644,672,672,680,676,672,660,644,637,622,662,669,649,670,683,645,669,670,683,690,664,673,673,676,665,665,656,636,631,663,686,647,596,555,559,535,542,559,548,547,554,532,545,545,553,539,557,562,538,544,558,544,559,556,538,544,565,567,542,545,561,552,542,578,550,552,545,553,538,556,548,562,551,577,587,562,582,563,574,585,579,595,570,572,589,566,568,583,572,592,571,567,573,554,569,592,585,568,570,579,562,579,585,587,579,560,570,568,586,592,577,577,576,614,604,607,569,597,631,624,591,605,618,593,597,595,636,614,604,612,589,638,638,601,630,631,613,590,604,602,596,615,622,600,607,618,610,605,601,595,634,606,611,592,619,617,585,615,594,590,599,613,612,620,612,584,604,607,599,594,597,617,633,598,605,598,621,625,580,592,600,598,614,585,633,612,602,628,622,594,595,612,617,604,587,616,606,603,618,576,595,582,578,592,573,589,585,585,558,578,582,576,576,574,582,580,570,571,571,588,585,594,584,585,565,574,584,583,581,587,577,576,583,572,563,583,590,581,567,579,579,586,681,666,677,670,664,661,646,665,682,672,667,701,654,676,679,677,674,672,670,698,681,652,661,663,659,681,668,677,667,707,683,677,693,696,687,667,658,658,672,662,660,661,672,700,709,722,694,665,695,703,704,684,672,717,681,670,672,655,740,695,672,676,684,661,677,678,674,696,711,667,683,684,697,647,691,685,703,680,688,682,708,694,686,685,696,701,680,703,695,685,742,698,676,704,676,693,692,709,694,692,698,687,689,683,693,673,664,699,670,664,681,664,688,680,696,670,709,684,699,671,680,678,666,677,702,691,615,586,583,630,574,595,606,611,584,623,588,593,559,619,614,615,569,613,599,586,615,615,586,621,602,613,626,621,628,580,600,590,603,583,619,638,573,588,651,565,587,562,568,567,568,557,562,577,574,559,577,565,581,559,576,569,581,578,563,569,572,580,574,573,557,581,575,576,580,565,572,566,547,568,570,569,569,574,573,545,538,531,530,556,528,532,545,521,544,542,536,536,534,542,556,522,533,519,529,579,560,551,531,549,536,537,533,542,543,548,558,532,562,531,548,560,554,535,544,542,544,538,543,528,526,520,524,515,520,519,540,538,540,498,516,532,502,519,517,519,529,540,531,529,530,524,513,513,531,532,515,517,538,514,513,510,509,518,519,529,523,532,526,527,505,540,501,560,585,586,597,574,564,582,563,596,571,577,572,571,568,567,578,587,600,561,592,583,578,566,582,584,582,576,577,578,590,579,571,572,571,577,570,583,563,583,561,581,637,639,637,650,631,631,651,635,650,637,627,641,653,660,625,635,600,628,641,636,646,626,626,659,639,632,646,644,624,651,649,660,646,636,626,640,655,636,627,633,642,625,657,652,645,649,663,636,663,639,646,640,652,651,652,644,643,639,635,653,652,640,660,651,652,658,660,633,641,631,649,628,652,662,643,648,639,654,632,656,662,645,664,644,647,635,653,642,636,610,621,606,634,602,601,638,601,610,629,594,601,598,597,599,613,625,617,616,607,621,613,617,595,608,604,615,597,610,613,587,615,606,607,611,626,631,630,595,610,609,632,599,624,619,597,632,607,605,618,584,586,600,586,572,569,587,575,587,582,582,576,582,576,583,586,585,589,585,572,575,584,577,583,581,590,589,585,581,582,561,575,570,587,569,579,583,589,559,568,579,575,567,678,656,671,681,668,658,692,681,658,678,673,693,674,678,680,671,678,682,669,700,684,662,658,677,675,671,677,688,655,693,688,681,670,669,672,661,664,664,667,669,696,677,672,664,651,681,674,643,669,668,647,658,666,649,681,703,668,653,675,659,639,671,706,673,683,675,663,640,639,713,678,679,677,685,659,685,649,662,662,710,668,622,610,664,619,586,654,619,635,622,635,643,617,607,652,631,657,648,603,624,645,616,599,644,632,646,641,615,651,624,629,627,592,623,595,614,632,658,597,643,649,565,628,576,651,619,622,676,566,594,633,596,639,664,632,712,554,647,641,685,578,565,627,671,587,624,618,676,597,612,651,594,655,669,627,691,672,693,615,629,654,670,551,630,606,646,625,626,619,612,620,634,638,624,596,612,625,628,641,631,621,635,633,612,653,637,618,617,628,617,602,632,614,631,612,603,655,609,615,626,619,630,650,629,611,609,630,583,580,588,585,593,590,575,584,584,585,592,574,584,570,577,582,590,576,588,571,582,583,582,576,579,576,591,567,586,575,582,595,569,585,574,574,574,572,588,594,592,579,586,582,574,583,586,633,631,657,625,643,660,639,687,642,669,651,644,613,652,656,644,660,630,642,665,641,657,644,654,627,652,641,638,593,637,582,627,632,664,642,649,650,650,644,647,660,693,711,709,684,708,676,695,683,696,694,698,669,718,707,685,708,714,687,692,693,681,695,702,709,677,701,716,687,676,685,709,686,695,696,714,709,689,705,703,684,685,684,682,699,686,670,687,675,670,667,679,686,675,672,668,678,661,684,683,677,672,649,681,681,685,678,672,664,663,679,672,679,687,664,650,670,672,672,667,679,670,685,659,661,672,666,672,668,669,701,679,682,571,575,584,571,575,583,570,576,544,583,574,585,589,570,573,593,565,578,581,578,565,544,568,573,589,571,582,568,594,550,546,569,571,553,557,568,560,558,571,571,572,590,572,580,529,612,587,598,597,581,595,581,608,578,583,590,582,616,594,580,603,576,627,581,589,574,590,589,591,582,596,578,598,577,577,582,596,616,586,603,595,579,597,600,590,604,592,600,605,592,606,625,612,602,626,622,614,607,597,612,592,597,628,628,616,618,601,633,594,618,628,594,616,614,616,615,634,606,617,604,592,616,618,600,627,605,640,630,596,598,606,621,597,631,602,609,598,600,576,588,576,574,594,570,559,585,575,586,582,552,583,571,579,582,574,587,579,583,591,556,562,579,576,574,581,579,582,570,586,590,579,573,588,574,585,566,582,589,560,565,578,619,619,616,585,632,641,572,635,602,640,609,633,633,621,657,597,648,627,663,613,635,634,629,611,603,649,590,655,639,642,590,617,613,651,614,603,649,651,602,650,636,639,670,680,667,656,662,679,659,672,667,662,696,651,672,671,678,681,660,671,680,665,677,669,685,669,657,665,645,669,665,670,667,664,666,662,667,649,672,690,665,670,661,681,671,693,674,664,623,615,590,604,589,607,599,587,619,627,619,613,607,605,615,610,613,592,618,595,607,631,592,588,598,603,600,601,589,600,597,594,629,629,606,607,600,586,612,589,606,606,595,626,606,631,772,739,697,742,706,711,727,705,748,651,737,715,776,718,696,693,772,693,791,676,730,755,717,754,688,697,721,749,626,708,706,669,755,695,755,691,658,727,774,747,706,753,695,734,721,761,733,698,707,692,700,715,707,748,707,712,689,697,712,723,720,684,707,712,709,695,740,716,703,722,719,717,714,704,699,725,731,727,668,717,699,722,719,711,707,721,700,727,701,683,727,683,662,670,635,643,593,647,656,650,649,633,629,683,674,660,638,634,663,648,665,662,647,643,647,683,665,661,642,639,654,651,663,662,643,635,635,658,636,657,648,657,624,642,659,726,704,711,697,719,715,707,701,740,718,727,731,731,702,736,716,706,751,791,686,736,774,710,715,708,709,718,747,723,705,717,707,761,728,707,739,726,729,729,714,716,731,729,702,679,715,734,702,716,685,736,697,738,692,724,779,748,721,710,739,754,699,773,681,725,722,737,719,717,709,728,740,742,728,739,757,720,706,680,728,718,668,666,667,660,694,658,657,659,669,663,668,670,655,654,644,646,671,654,683,672,654,646,653,648,652,669,669,679,677,671,672,663,640,671,679,644,642,646,678,672,576,577,559,589,577,583,586,580,579,582,577,586,570,600,590,565,564,569,577,572,568,566,583,591,577,582,579,584,575,587,570,567,573,590,581,586,566,573,582,571,573,572,547,693,675,676,673,690,663,693,681,682,668,700,681,673,670,655,682,679,642,660,678,698,674,675,673,660,707,656,662,683,669,668,692,696,688,692,670,665,691,700,685,693,728,719,699,676,691,702,708,688,667,640,681,688,678,663,693,682,670,690,675,676,678,696,671,689,695,639,690,679,684,711,695,626,685,676,704,683,696,679,673,678,676,667,692,706,695,667,722,706,671,712,713,704,695,664,669,690,695,690,684,681,662,669,683,680,666,686,681,687,685,697,700,687,682,737,607,605,581,597,570,591,613,582,578,592,580,598,592,571,589,578,569,614,607,585,598,588,619,577,593,605,594,598,573,597,611,591,597,608,609,571,592,620,569,565,570,598,577,603,537,627,621,606,641,614,605,630,637,667,663,639,622,636,630,661,593,597,583,659,641,664,620,572,648,658,660,618,642,673,594,685,622,663,667,659,628,626,593,618,619,675,686,675,686,683,700,713,656,656,660,657,693,669,697,668,676,681,691,710,683,696,695,698,681,691,688,710,705,674,685,693,670,702,690,712,661,676,709,672,675,684,680,703,675,678,652,753,641,593,579,591,648,610,584,631,580,585,605,634,597,596,599,641,648,616,637,593,645,629,631,622,601,633,579,592,605,594,669,561,626,614,614,646,587,664,557,598,613,613,623,612,665,663,685,702,693,708,686,676,690,694,646,656,689,674,695,680,673,690,697,678,699,694,676,677,688,685,703,694,679,685,681,668,683,677,682,708,730,695,663,674,663,603,678,621,734,627,660,678,660,652,642,618,695,653,714,712,687,627,645,673,623,690,645,638,676,678,628,625,687,686,670,629,669,655,675,709,665,695,695,645,723,745,688,722,697,712,726,683,718,710,709,699,704,715,713,697,698,713,721,705,715,710,715,704,696,712,691,715,707,710,709,722,688,727,705,718,722,702,684,700,702,702,602,608,597,603,613,631,613,623,647,608,629,606,622,599,635,644,608,638,607,606,648,586,623,646,624,644,618,615,622,623,620,614,615,640,635,601,643,602,626,627,622,614,632,625,579,601,581,584,638,587,592,586,604,565,606,598,615,609,619,604,587,600,600,589,569,589,619,587,584,593,582,594,598,602,599,575,591,608,591,613,602,572,580,596,598,577,601,600,607,587,654,660,644,635,638,660,633,660,664,676,645,653,655,674,658,680,657,672,653,645,637,638,642,658,668,678,661,636,632,644,641,647,663,661,641,673,662,632,646,635,678,649,667,641,650,647,654,662,648,603,589,588,603,595,606,588,591,593,591,602,594,597,595,603,633,596,594,600,608,583,599,598,604,610,600,600,573,591,610,588,587,594,579,619,614,593,590,604,599,591,606,600,604,580,591,583,617,650,598,633,606,611,604,564,572,623,615,608,603,568,607,604,628,656,612,597,607,620,606,613,591,617,634,608,595,590,611,607,611,646,595,635,566,595,576,630,614,585,593,576,576,590,589,588,585,580,607,597,582,572,581,599,569,582,579,602,608,580,587,569,585,571,580,594,593,585,581,585,595,587,582,599,596,590,653,647,638,645,657,642,636,633,626,594,573,605,669,629,608,590,619,620,658,619,640,647,657,613,664,623,610,649,646,618,619,637,589,630,635,633,671,629,641,671,632,633,687,679,666,667,673,686,655,667,662,660,666,660,674,680,686,664,666,678,666,662,672,670,684,683,672,661,683,678,654,663,686,663,655,661,656,667,666,672,667,569,566,604,582,573,572,582,580,591,572,575,575,572,571,566,577,565,571,573,591,565,574,562,594,590,575,596,577,582,587,563,571,554,543,584,566,556,578,595,585,581,595,578,589,553,574,584,599,568,575,557,584,580,574,580,588,565,573,568,563,553,586,577,583,593,564,576,582,581,594,576,588,574,574,568,571,584,577,575,576,559,586,551,589,566,583,575,565,573,552,566,567,557,565,557,555,570,562,551,562,558,559,568,571,561,565,572,567,551,570,561,566,552,555,567,553,569,561,561,555,566,559,563,570,570,557,549,584,570,577,574,570,587,568,595,598,589,593,575,582,584,568,582,580,571,573,581,585,574,579,582,576,600,564,571,568,578,581,575,586,589,584,589,582,568,579,585,578,585,586,597,595,627,610,646,583,568,654,599,572,627,619,607,550,615,620,632,628,650,642,626,598,614,570,602,630,639,644,603,628,613,644,627,599,593,605,594,638,609,609,642,615,597,620,678,610,606,617,605,594,587,609,617,590,611,601,592,618,584,597,596,606,592,602,614,609,596,592,621,596,598,608,587,607,621,574,590,604,607,593,610,603,608,588,603,595,586,578,644,612,612,629,651,692,649,640,637,667,642,636,648,604,636,621,616,615,588,594,617,658,632,643,644,630,601,633,670,609,619,643,657,668,593,623,640,630,637,581,590,625,677,653,618,683,683,678,674,695,672,689,671,689,674,666,676,680,681,651,682,678,674,698,703,677,683,671,666,690,666,676,679,683,672,690,682,688,690,665,683,686,685,673,691,674,674,688,694,655,689,699,686,715,726,733,708,705,724,694,715,711,747,754,719,716,744,712,714,724,759,747,742,726,699,698,701,767,715,756,731,722,712,736,738,690,731,694,708,669,718,715,703,719,698,700,693,710,706,701,700,717,697,702,707,703,699,722,707,707,712,707,698,715,714,708,709,724,701,694,679,721,708,684,707,696,672,713,710,701,704,689,695,708,703,702,679,690,711,698,696,704,743,685,634,720,673,709,709,623,731,699,691,706,714,656,722,703,740,685,727,708,739,748,688,663,683,660,666,665,677,680,647,681,720,761,675,669,727,659,683,664,653,656,670,666,655,659,666,646,663,688,660,652,641,654,641,646,654,660,664,647,646,643,661,617,654,668,650,663,633,667,672,643,630,633,659,653,659,673,651,679,609,658,653,643,687,687,738,704,738,719,693,734,745,691,708,719,743,729,752,704,670,712,743,725,733,741,747,735,720,698,709,731,716,732,708,736,759,725,703,695,718,723,720,752,742,717,732,716,695,712,717,696,710,721,678,715,711,719,693,716,755,694,712,719,733,735,730,737,726,760,710,753,678,711,682,749,717,729,759,710,671,734,755,729,710,743,658,682,659,670,650,667,684,653,639,662,639,645,670,679,671,665,658,669,677,668,655,674,683,672,652,663,640,678,702,669,668,679,662,668,666,667,691,672,647,673,680,672,615,670,658,671,652,658,566,582,559,570,577,569,582,562,581,573,556,582,573,587,572,555,574,563,556,549,573,563,586,577,558,569,576,571,584,585,589,583,570,570,559,572,571,557,599,614,612,601,631,599,585,593,609,544,578,594,589,606,563,606,604,614,594,633,610,608,603,584,564,597,620,542,577,606,545,587,603,565,593,587,565,570,593,636,631,604,621,658,561,577,567,559,552,573,572,560,567,588,587,575,568,571,579,589,565,580,590,575,571,571,575,565,568,580,586,594,580,565,576,569,569,560,582,566,576,556,576,577,584,546,675,639,648,648,671,643,663,637,668,669,633,667,649,660,667,651,659,628,663,635,659,647,651,663,682,653,671,647,640,663,650,683,643,656,676,663,669,660,646,664,670,676,621,680,614,578,589,575,598,586,595,586,613,591,608,577,599,598,583,585,604,591,595,566,597,593,606,566,580,586,600,597,580,589,593,608,573,581,579,621,592,584,566,576,584,593,585,593,572,612,575,596,577,576,595,551,589,593,583,605,560,641,564,624,668,648,591,624,640,586,583,576,593,597,603,570,624,621,592,637,598,639,556,589,633,626,579,597,569,573,593,604,617,525,667,650,646,533,598,612,616,605,591,593,602,602,598,589,613,578,602,600,604,595,601,602,619,601,602,592,589,612,595,585,588,596,594,604,593,592,600,606,623,592,595,603,605,592,608,600,617,607,593,593,571,560,575,566,573,573,562,575,573,565,565,581,573,585,570,567,569,584,557,564,578,579,572,572,548,567,557,573,553,565,568,569,551,566,562,573,594,552,544,549,538,545,546,541,545,537,552,551,550,535,552,552,562,549,561,562,562,554,550,538,535,560,538,560,553,566,546,568,555,550,553,548,549,556,541,549,543,546,649,694,700,689,671,641,655,704,681,658,669,704,680,600,690,664,702,662,647,663,662,685,689,694,684,722,695,700,660,652,704,581,661,645,701,671,757,683,631,663,636,588,583,624,582,579,615,590,601,588,596,592,611,620,587,598,565,599,581,594,603,593,611,566,590,602,571,587,587,604,592,617,601,603,579,582,611,600,599,596,593,604,605,607,594,554,549,577,561,559,546,536,535,528,545,547,562,570,531,528,535,529,528,551,551,549,549,571,538,568,572,557,546,550,567,562,554,564,513,552,555,552,544,565,553,566,540,548,550,535,553,786,768,773,749,753,779,741,807,735,753,778,733,749,772,736,754,761,733,733,758,733,762,774,791,767,797,759,725,722,793,766,751,765,761,773,760,742,775,749,722,788,732,752,704,712,735,712,684,703,720,696,698,686,726,737,698,718,704,716,721,766,753,721,718,717,732,754,761,731,705,698,745,745,723,693,706,756,731,746,708,732,638,669,675,660,648,656,653,659,661,661,663,650,650,644,629,666,660,658,656,648,675,662,678,647,666,654,670,648,669,669,663,674,626,682,656,685,689,647,671,654,640,633,655,694,635,657,723,743,744,733,710,717,699,725,731,693,730,687,766,722,696,732,726,726,744,719,739,714,714,714,707,741,727,695,665,722,724,735,701,716,714,741,740,745,701,748,735,695,744,737,746,722,731,762,731,749,735,716,752,753,706,748,759,713,763,733,748,741,738,741,744,728,725,767,715,755,709,714,739,738,729,711,700,751,727,721,706,671,697,674,695,743,708,718,707,716,720,725,712,718,690,678,700,709,729,670,699,713,713,717,709,690,717,717,734,704,696,714,722,702,725,685,716,673,697,694,725,706,701,697,726,729,719,718,687,669,688,710,707,710,709,690,713,705,671,687,693,681,720,686,705,696,703,713,700,712,696,699,703,694,685,699,698,686,699,705,708,698,693,711,706,697,697,710,712,688,731,701,701,613,602,633,589,633,611,680,608,641,578,628,606,654,637,647,578,604,663,658,622,648,629,609,647,660,618,621,635,669,568,649,638,656,641,641,612,601,550,579,575,580,590,580,601,588,572,565,569,589,560,535,599,584,602,595,586,605,582,607,568,581,581,583,584,590,546,543,593,563,602,597,584,551,549,600,574,550,586,554,551,568,575,573,581,560,556,573,565,568,573,556,546,581,560,567,561,576,552,578,577,559,544,553,579,569,579,572,579,575,566,573,575,571,549,571,574,554,553,540,552,545,547,530,544,550,541,559,542,538,539,541,562,550,543,539,551,542,541,547,551,544,544,548,555,545,557,546,550,548,540,542,553,545,541,548,545,552,563,539,549,538,554,539,547,543,557,540,552,554,543,551,542,548,531,540,544,546,546,558,550,540,558,551,549,536,553,538,549,552,558,546,543,547,556,545,550,554,547,539,539,550,552,554,549,554,553,575,643,630,654,659,641,640,622,666,662,610,646,642,616,665,617,603,603,632,636,643,637,626,590,638,639,631,607,609,617,635,649,622,639,634,611,657,642,613,604,672,659,624,623,630,599,560,554,562,554,542,571,541,554,569,573,548,561,542,537,554,550,556,539,556,549,565,564,574,568,558,557,556,567,561,576,580,550,551,542,559,554,560,569,559,545,565,532,513,542,550,545,533,562,567,553,533,529,548,554,544,543,531,543,543,579,529,549,534,543,544,552,530,539,533,544,538,533,537,552,540,517,553,569,553,550,539,518,543,530,545,529,583,700,709,688,728,708,705,701,716,709,708,705,694,676,690,726,717,712,721,721,700,701,734,698,712,692,693,694,712,717,698,733,734,756,694,715,745,711,703,748,714,718,707,714,760,696,699,715,726,703,713,697,704,691,682,708,691,701,689,682,694,688,710,691,711,709,713,710,694,698,722,716,708,708,701,712,708,714,702,714,702,701,719,685,690,715,716,707,682,723,704,697,686,680,691,720,685,685,679,703,681,672,685,696,682,707,669,673,716,693,715,704,683,688,695,688,697,702,709,685,716,690,684,688,705,683,734,713,734,716,703,709,676,675,669,625,597,609,611,614,616,608,618,636,625,587,635,608,588,606,593,594,639,594,614,622,620,605,608,666,584,643,595,599,618,611,588,598,625,624,616,614,605,620,601,627,592,543,537,553,530,529,550,558,569,543,534,543,548,535,548,529,542,538,548,563,553,541,549,545,543,543,555,551,533,543,548,541,545,565,552,539,540,531,559,550,538,537,563,537,532,675,681,686,690,667,672,675,679,685,659,686,668,680,692,659,690,675,661,679,676,651,679,686,679,673,665,669,664,678,683,702,676,669,682,647,688,672,703,634,645,622,658,625,649,655,654,643,657,642,620,660,633,618,648,637,639,655,646,644,648,658,642,655,669,637,652,635,644,667,642,646,640,649,639,639,692,641,647,628,633,645,639,633,640,652,626,652,591,644,619,635,636,654,665,650,649,630,660,627,671,665,615,631,623,636,627,657,654,631,643,639,628,632,651,655,638,659,666,643,711,688,668,710,712,682,661,681,699,678,725,681,678,720,731,704,682,691,710,703,696,686,667,696,662,669,705,690,690,705,694,715,668,693,714,695,657,683,733,702,689,746,699,687,671,642,645,669,608,642,638,626,648,628,639,665,637,625,621,635,630,630,680,643,643,617,641,661,647,629,642,649,668,624,655,637,640,646,635,672,606,624,635,662,689,656,635,628,654,684,660,666,595,602,621,629,679,594,604,664,656,603,602,611,640,571,616,571,557,636,665,617,609,681,610,614,639,645,621,585,564,601,664,534,607,583,615,682,625,593,603,608,735,597,597,614,601,624,581,602,600,608,571,582,596,602,595,588,600,611,584,607,592,601,590,589,593,600,602,597,591,608,617,605,625,610,609,605,598,587,614,610,612,599,603,615,576,599,594,605,591,563,572,574,569,569,561,564,571,576,573,559,563,586,545,587,567,575,568,583,568,569,562,560,564,577,558,557,581,576,566,575,582,559,563,573,572,575,584,577,566,566,592,558,574,573,534,552,535,541,527,552,558,543,549,544,544,543,545,536,535,555,554,560,542,526,539,543,553,525,559,536,543,542,536,525,542,546,547,540,532,525,543,541,553,548,557,513,514,518,520,525,516,528,527,528,518,517,499,522,518,525,527,519,516,516,505,498,521,533,538,520,530,522,516,518,522,530,522,517,523,509,535,515,508,517,523,521,523,506,508,507,507,514,504,512,499,502,499,510,502,495,516,504,505,504,500,500,499,506,497,510,484,493,507,505,503,500,498,500,490,502,501,509,510,499,515,499,495,502,492,498,509,508,495,488,504,499,496,502,497,493,501,490,488,505,497,502,482,497,495,491,505,501,502,504,486,495,480,504,514,497,500,508,488,500,491,496,504,487,502,500,506,500,517,506,500,504,495,504,509,507,485,499,503,497,506,509,502,514,516,501,488,505,508,516,507,498,501,493,512,506,507,502,510,490,507,513,508,509,501,509,492,502,525,496,640,638,643,638,650,656,638,659,652,634,637,635,651,643,633,656,641,641,643,643,644,645,643,646,654,628,646,671,645,647,661,659,655,675,659,648,614,591,615,608,595,605,594,618,592,593,600,611,597,609,617,615,607,606,597,602,613,593,608,613,605,598,617,575,592,592,594,614,589,606,606,619,610,603,586,601,601,605,588,601,608,599,619,638,586,587,575,571,597,581,575,579,577,583,578,569,566,574,590,571,569,576,568,576,575,575,597,565,557,577,593,570,558,577,574,558,574,584,597,582,568,582,563,545,543,558,551,553,537,552,547,540,552,563,561,545,545,555,562,544,548,549,550,554,566,564,523,544,556,543,578,547,555,544,540,561,559,550,553,548,555,542,544,553,549,537,584,595,619,586,578,621,614,615,611,573,602,547,563,608,606,637,598,632,618,641,578,618,548,631,622,577,597,613,595,611,535,588,588,606,569,591,601,611,588,599,578,606,664,556,548,562,553,559,567,566,559,556,576,557,562,555,567,552,557,560,579,549,557,570,570,555,558,549,545,569,549,554,532,554,572,581,555,549,558,548,551,555,554,558,564,565,558,555,567,578,557,593,560,578,597,560,589,588,570,579,564,573,568,568,571,564,580,562,573,578,579,571,564,574,577,586,555,567,560,566,570,575,584,575,562,579,554,574,567,555,599,566,560,552,556,548,544,558,550,551,533,546,556,530,548,545,549,555,545,555,546,554,555,546,538,548,545,556,538,555,546,547,538,540,550,538,546,545,549,545,544,545,533,548,546,544,548,551,546,768,767,729,713,780,728,732,741,694,740,698,707,790,745,685,761,727,747,711,717,673,745,723,780,771,728,716,706,762,772,758,710,735,725,757,746,744,741,744,686,783,818,771,698,696,729,695,723,709,683,699,715,709,711,684,684,684,711,705,718,690,710,719,728,719,689,690,731,699,702,698,695,700,706,695,719,704,727,728,736,724,751,616,616,624,612,612,626,646,628,605,629,615,636,629,599,633,626,608,620,650,639,622,638,641,627,602,606,629,609,612,634,601,624,612,629,599,628,625,628,648,574,584,585,571,586,568,561,569,580,577,576,581,575,553,570,587,577,575,573,571,577,582,568,588,568,603,585,579,575,568,576,565,574,595,572,581,574,574,572,573,593,570,578,553,554,559,548,558,558,545,559,550,554,568,565,551,557,556,544,560,559,545,542,561,564,550,554,554,551,552,545,559,557,549,562,548,552,566,561,533,549,548,543,565,567,544,658,682,693,681,693,653,653,725,711,685,655,689,642,714,685,646,671,684,696,695,669,681,691,644,727,666,670,673,669,706,709,671,693,654,705,683,681,731,734,722,690,611,703,681,698,699,699,694,700,715,706,716,691,717,691,720,723,717,682,718,685,717,728,711,710,688,716,704,699,706,696,710,705,722,696,690,694,716,705,726,725,621,627,630,609,626,630,606,611,621,601,630,630,619,615,588,647,599,608,625,587,628,640,635,607,601,625,629,625,626,619,624,608,604,629,643,632,614,639,602,613,629,613,621,626,581,603,601,591,600,587,628,596,590,607,592,604,599,575,595,609,607,571,603,587,579,593,585,609,583,617,592,592,587,590,583,603,594,606,593,602,612,593,668,650,645,677,674,663,653,665,663,671,653,663,658,666,664,653,668,679,665,660,655,667,689,656,657,668,669,666,662,672,690,651,673,664,668,652,656,657,669,671,747,681,698,773,748,732,679,731,695,725,758,704,734,715,724,743,753,742,719,743,734,752,696,710,712,709,714,727,730,706,718,705,737,688,713,710,730,715,730,729,721,696,709,726,706,709,737,733,737,703,691,682,707,687,725,698,718,711,699,691,719,693,691,689,708,703,699,678,732,713,691,699,710,696,691,710,706,729,708,694,678,688,693,704,720,700,710,671,710,700,697,647,615,701,725,716,659,655,706,654,704,713,660,665,648,648,696,655,622,671,668,705,709,719,659,664,661,699,666,680,749,670,687,681,675,690,717,673,660,703,684,709,699,698,674,681,683,679,636,690,655,699,717,650,659,643,685,673,694,698,650,654,680,662,654,670,645,721,667,705,651,714,684,683,653,694,703,665,691,677,722,561,579,596,589,580,601,572,581,580,593,552,597,606,577,571,602,577,590,586,561,562,573,581,581,575,611,557,560,561,571,564,558,571,569,572,578,576,601,596,587,587,573,581,591,574,575,556,567,566,554,560,573,548,576,560,558,555,552,559,577,559,581,589,559,568,595,554,562,555,566,591,565,571,559,549,561,563,571,562,553,577,548,544,568,563,575,554,571,563,568,542,560,565,556,528,556,542,618,604,593,589,613,610,592,631,588,586,598,602,619,620,600,607,594,614,599,597,629,612,603,582,633,637,616,604,601,599,576,605,586,593,644,613,617,596,611,611,605,617,573,553,561,542,547,571,569,570,565,570,559,559,570,563,565,567,556,573,564,561,576,561,585,557,561,559,584,573,565,561,564,565,566,559,557,585,551,550,563,569,590,542,594,592,561,574,564,583,571,563,558,557,558,554,566,582,573,563,568,575,568,576,590,558,562,577,589,555,546,566,563,572,554,570,569,590,575,565,569,563,560,592,569,562,566,548,569,568,558,531,717,713,752,734,709,712,703,691,693,706,680,689,687,714,687,726,717,694,695,721,697,689,728,737,704,686,738,702,684,680,702,710,714,711,733,726,713,693,704,730,730,723,707,717,737,724,712,710,716,705,694,719,693,702,701,721,727,704,720,720,702,706,704,704,696,709,713,712,698,691,707,697,709,697,683,708,721,713,697,682,700,702,725,703,701,709,688,718,709,710,716,683,714,706,672,682,688,698,679,690,681,685,683,681,670,686,675,690,675,705,682,669,648,691,692,697,703,693,679,700,678,671,723,706,689,705,702,710,690,704,716,700,671,698,695,695,673,675,686,695,694,705,672,680,682,690,670,679,688,687,667,695,670,688,678,679,667,677,694,675,686,662,677,667,701,683,664,710,683,683,659,656,676,676,653,660,671,632,625,646,608,673,628,636,648,630,624,632,638,641,643,643,654,623,641,619,640,650,621,631,631,653,640,643,637,668,639,658,643,653,646,664,691,665,658,628,627,660,600,596,603,608,577,575,599,594,578,591,597,574,577,594,615,575,588,591,577,607,596,583,593,595,605,573,583,603,591,593,593,583,571,600,585,597,587,603,566,606,579,597,616,623,612,602,616,587,608,596,615,603,611,623,612,605,612,614,614,596,604,596,598,614,599,613,617,613,616,589,616,622,604,629,608,622,596,614,600,615,609,606,601,621,616,613,613,630,627,611,609,637,617,625,649,637,636,620,620,635,633,633,628,623,626,626,617,630,637,627,615,600,616,586,612,634,621,632,600,599,621,633,629,615,608,627,605,610,631,555,571,574,570,572,578,558,575,581,556,559,578,572,559,568,550,580,566,562,576,562,568,565,576,564,585,569,570,574,542,557,561,566,562,559,543,736,691,700,698,691,691,672,665,715,680,692,691,703,694,686,682,672,696,708,698,701,708,668,706,695,664,697,697,704,694,688,711,671,696,683,693,708,660,679,704,697,697,712,682,709,683,646,649,649,654,672,662,656,644,679,679,675,652,660,662,651,654,667,669,664,671,664,653,672,670,667,677,676,657,656,665,669,655,662,662,676,662,666,658,634,646,636,621,608,661,624,632,627,607,615,638,652,632,616,635,645,625,671,609,632,646,606,635,636,610,655,641,646,655,666,639,628,650,604,639,622,659,645,625,616,634,634,640,662,685,688,700,684,686,701,716,657,674,678,721,687,714,656,651,696,682,698,674,665,645,705,697,723,708,717,715,705,684,682,672,716,693,681,726,704,691,637,609,613,595,607,633,613,635,638,615,588,594,631,611,604,598,610,605,601,603,624,625,628,633,593,625,604,610,621,601,576,608,627,604,625,588,649,612,595,597,627,629,627,584,551,563,587,532,543,564,540,554,555,558,547,565,554,558,566,566,532,579,575,535,555,571,539,537,556,535,566,564,563,546,560,558,547,553,532,541,540,597,553,717,728,683,734,710,711,730,727,735,705,716,690,720,710,709,731,726,698,737,711,702,693,718,713,708,739,724,748,723,762,738,723,747,728,741,729,723,733,733,619,676,635,585,607,610,621,614,639,620,617,616,636,613,635,638,630,637,630,624,625,613,614,605,625,646,614,618,628,606,649,646,620,623,623,607,617,620,623,632,637,672,550,617,585,582,590,595,604,581,561,571,624,579,582,606,590,577,596,601,579,585,555,589,576,575,565,562,604,618,604,563,561,586,603,585,578,605,583,594,576,597,582,564,547,649,659,649,635,641,659,663,637,630,634,662,638,633,659,649,652,651,660,662,658,641,642,677,668,635,646,638,641,637,653,633,648,653,661,656,643,651,645,656,645,666,668,649,635,632,630,574,599,591,581,588,583,606,601,565,575,574,600,596,597,574,579,591,594,590,587,587,581,583,585,578,577,574,578,609,587,593,565,575,577,603,617,582,582,576,579,583,715,673,658,673,686,692,675,698,666,675,694,716,679,701,706,691,680,678,671,679,694,696,680,717,693,699,710,704,705,709,705,704,677,690,699,711,702,697,669,677,651,669,653,667,646,672,666,671,673,663,672,646,674,661,655,660,671,655,653,640,661,670,686,655,678,676,660,669,682,658,665,668,683,669,665,660,666,665,671,669,727,713,689,701,639,706,686,705,751,723,711,715,694,718,720,714,701,719,729,715,666,670,724,687,708,714,689,696,718,688,701,673,687,724,711,675,753,726,698,681,716,723,690,681,734,628,610,630,649,655,621,613,641,636,633,618,656,620,644,646,660,643,649,627,640,655,650,646,626,663,619,601,619,640,656,638,624,650,623,634,621,663,653,657,628,639,664,632,638,662,640,587,645,626,640,657,639,687,706,605,694,649,650,689,643,644,607,622,662,639,643,696,617,659,583,666,664,641,624,629,655,688,617,655,693,646,658,714,720,732,701,704,706,698,719,708,731,727,714,726,718,727,723,715,701,695,712,730,711,738,709,734,698,717,701,735,736,709,719,721,716,732,717,692,717,697,705,710,725,715,709,704,701,742,718,736,691,749,757,761,736,716,752,745,741,743,714,739,730,702,732,711,714,731,770,726,739,748,761,736,743,745,720,766,778,705,752,749,727,768,757,735,696,718,722,752,699,750,751,697,659,717,746,717,736,747,746,756,753,715,706,725,718,701,708,769,757,709,702,730,692,722,681,700,692,703,739,723,723,733,700,732,723,681,742,716,739,733,710,657,642,641,662,634,670,673,664,655,677,668,639,642,636,647,653,652,656,677,642,675,679,661,664,650,655,657,655,656,659,653,649,661,666,643,633,623,667,641,637,665,650,634,726,714,746,717,731,757,747,733,711,726,706,742,700,754,734,716,715,712,732,731,721,739,697,754,719,729,720,736,743,784,679,717,715,716,741,722,719,760,724,725,691,736,745,721,723,711,735,687,689,721,718,719,705,712,728,756,745,727,711,730,699,732,746,736,732,693,703,718,729,745,734,704,730,688,719,693,742,755,742,726,758,726,615,637,658,683,658,664,662,650,642,670,669,655,635,654,679,661,659,651,671,703,679,651,633,671,678,666,675,677,671,652,661,664,651,663,673,668,658,636,645,657,650,641,723,713,702,684,716,697,702,723,710,705,682,686,707,681,733,710,718,710,664,673,714,699,697,675,712,716,692,651,718,718,685,686,708,669,707,703,701,696,679,660,665,670,668,627,612,606,589,586,639,629,604,597,607,616,617,588,635,602,633,614,648,633,634,618,631,616,632,615,663,607,589,655,651,640,607,609,601,582,618,588,611,617,603,614,603,563,566,561,547,561,550,540,568,561,554,582,538,556,546,553,599,564,567,563,582,565,549,545,565,561,571,554,584,574,564,563,562,553,557,545,571,524,560,581,592,565,581,570,565,700,714,760,744,755,737,748,769,721,732,732,727,752,722,738,733,766,742,739,787,714,746,762,740,698,739,702,720,741,712,745,734,733,734,719,727,735,739,734,761,717,783,759,769,732,738,741,726,720,747,723,727,730,722,728,729,723,725,732,716,729,716,740,738,755,716,737,743,729,730,730,744,717,721,704,718,736,734,735,745,736,721,719,722,719,726,722,712,707,688,692,648,685,693,687,693,672,687,694,689,665,716,678,678,693,684,696,713,705,688,714,700,708,693,691,687,685,702,701,705,723,708,673,709,690,691,703,684,694,695,693,713,722,736,594,569,587,595,587,545,617,584,554,614,563,564,577,553,591,614,589,584,611,551,596,585,559,526,558,603,580,568,572,532,591,543,521,584,637,571,577,566,564,561,573,574,577,585,569,586,577,574,587,574,572,579,579,571,581,578,579,578,557,583,597,572,568,579,575,585,575,579,575,584,554,569,564,577,570,574,567,554,576,587,606,605,641,622,627,617,627,630,617,614,625,640,623,639,626,632,617,628,619,602,623,642,632,629,629,614,612,662,617,641,619,613,626,623,619,617,624,619,638,619,742,724,718,727,710,692,688,757,710,721,715,734,697,699,745,760,708,726,712,717,699,684,750,693,761,726,736,690,713,714,718,736,688,709,699,714,684,678,690,677,713,681,686,696,701,713,718,703,701,709,715,703,706,705,698,691,697,680,707,700,689,691,716,702,702,695,706,696,708,677,699,706,703,717,693,694,696,686,700,693,695,644,718,712,648,689,705,686,688,737,663,642,692,699,686,656,731,687,713,710,676,716,699,636,709,689,688,697,669,723,722,687,675,678,630,682,681,694,706,691,597,653,654,656,647,635,661,650,641,634,649,647,654,669,696,671,654,640,662,648,639,650,650,675,637,662,645,653,640,642,624,689,646,669,655,652,670,657,614,642,657,643,647,653,646,667,644,732,722,708,705,699,693,723,728,702,761,710,749,708,732,685,716,725,709,736,726,703,744,756,759,747,740,668,740,722,727,775,734,729,725,712,712,745,725,762,725,716,737,664,703,722,716,683,756,741,750,742,718,730,719,708,740,702,760,749,729,728,714,726,729,734,725,705,747,740,698,732,749,713,717,733,706,741,726,746,703,721,710,710,709,738,721,732,718,707,688,694,712,704,734,706,712,731,670,703,668,734,665,715,690,713,678,718,671,716,681,727,710,708,716,736,677,696,668,718,695,698,683,712,716,669,701,731,664,741,664,647,681,644,649,670,666,655,652,649,650,667,644,679,657,658,657,642,661,658,662,644,670,688,636,645,649,641,670,668,656,671,645,642,655,652,653,665,651,680,624,669,660,654,604,622,619,617,619,601,601,620,631,614,601,624,597,608,620,611,615,612,625,614,619,616,613,600,607,611,615,621,627,613,597,622,624,629,623,617,620,628,618,599,598,646,615,593,608,604,606,604,617,617,592,600,605,620,607,617,606,636,594,624,621,621,596,613,598,601,610,602,601,606,601,613,590,598,610,609,601,620,609,615,611,602,617,614,634,622,613,613,647,674,659,689,659,673,667,643,663,660,672,676,630,658,693,637,661,669,656,663,663,685,640,668,646,675,652,648,666,672,656,662,674,674,683,661,642,644,661,651,660,663,669,656,647,651,644,656,654,653,665,665,667,652,660,656,653,664,629,641,664,651,659,660,661,665,662,646,652,651,662,678,671,666,649,671,664,659,652,669,672,669,661,653,665,644,666,669,657,647,653,656,691,739,699,688,699,665,679,696,664,683,675,697,683,707,660,667,694,641,684,707,714,670,716,665,710,630,673,692,671,635,663,642,657,684,686,691,654,701,690,674,622,638,608,616,609,628,626,638,642,633,625,613,638,632,630,611,626,636,641,653,616,640,609,633,631,626,626,637,632,624,618,622,598,622,630,633,617,612,626,630,634,626,635,630,643,621,640,638,581,565,573,585,559,578,590,574,571,575,574,573,562,582,573,575,556,572,576,571,578,574,581,566,575,567,570,586,579,579,566,580,584,574,565,581,576,575,556,568,573,580,580,572,580,585,579,580,582,575,586,578,573,723,707,717,768,717,785,748,777,763,735,735,738,740,738,672,729,686,717,724,734,724,720,750,744,712,706,759,740,729,732,722,732,757,749,749,735,725,735,687,706,699,758,752,739,703,674,717,696,702,718,696,722,684,712,685,694,716,728,709,716,719,695,702,690,705,698,717,699,700,730,690,681,708,736,717,724,685,723,712,721,679,715,689,691,687,711,695,603,629,612,569,587,608,636,587,619,613,635,630,617,619,603,597,604,606,577,610,581,615,608,650,573,611,630,623,628,593,618,619,602,589,594,595,584,633,603,622,602,600,609,607,590,600,602,579,576,592,599,574,582,556,582,579,593,568,597,605,590,588,597,580,602,574,582,581,593,563,586,588,568,584,578,613,577,590,584,592,618,582,599,586,591,599,582,536,633,626,645,607,616,639,634,629,618,647,627,616,629,623,620,629,617,638,618,628,642,612,620,635,653,636,639,627,636,639,605,632,619,632,608,631,652,622,646,630,626,617,644,632,602,680,643,658,647,649,636,665,642,655,639,666,665,664,662,674,646,666,644,656,646,677,664,663,649,660,674,648,665,656,663,649,669,637,661,649,661,684,677,688,682,731,698,709,694,719,707,698,683,717,726,707,719,689,698,693,659,683,724,747,705,678,702,690,713,715,697,725,699,699,683,705,700,686,688,713,687,645,626,630,646,627,624,623,661,619,649,624,623,632,613,625,641,636,640,621,630,635,644,652,664,665,646,644,641,652,633,641,645,647,647,639,643,649,629,667,653,649,627,615,651,646,625,629,682,685,604,636,622,619,631,650,655,608,682,652,675,642,644,596,630,639,614,644,630,663,604,657,613,662,625,603,595,671,651,658,666,552,661,616,639,598,584,668,610,636,685,620,703,745,711,715,704,699,695,694,692,696,726,717,733,718,708,706,725,727,675,701,712,710,713,691,708,729,720,717,735,706,696,713,705,685,730,712,701,729,724,716,721,704,724,693,690,715,692,690,721,684,686,711,703,688,684,647,708,679,714,705,700,695,673,680,701,685,691,674,689,674,682,680,721,686,658,691,694,694,719,668,731,694,673,654,707,670,639,662,650,664,665,685,659,649,644,656,679,644,627,626,632,656,649,664,653,650,640,646,648,652,653,646,654,645,631,659,665,649,637,633,646,632,648,640,659,662,598,597,612,609,604,599,601,599,609,589,606,609,589,594,593,601,608,600,602,599,601,613,605,598,600,607,606,603,597,607,593,596,615,590,615,591,593,587,613,582,578,582,609,598,592,602,589,607,643,613,633,606,641,633,639,613,653,639,632,611,662,648,667,674,636,670,634,651,600,667,645,663,624,659,657,644,628,642,645,629,617,634,645,631,630,639,691,669,675,683,664,689,696,693,683,670,673,709,687,690,689,682,680,691,652,683,685,697,659,678,693,672,683,680,683,681,670,678,697,673,681,681,671,675,668,683,645,763,752,728,764,754,765,736,735,737,769,762,792,746,748,721,753,713,759,720,750,722,728,738,753,749,730,733,758,759,730,784,773,774,773,772,728,769,797,738,752,759,725,702,691,686,725,719,724,728,689,694,692,710,671,710,723,690,692,753,693,718,758,722,720,754,708,697,728,726,736,769,688,698,716,733,710,728,716,729,769,725,704,702,706,695,724,744,668,671,678,647,647,654,677,657,674,662,647,655,632,657,671,644,648,656,658,674,633,687,670,639,667,644,669,674,655,676,651,654,648,657,663,661,670,665,662,649,663,650,671,669,607,682,696,694,701,679,672,691,686,703,683,676,663,730,700,705,689,693,712,696,669,680,652,700,672,675,719,675,700,691,690,708,695,689,708,685,724,676,662,651,666,665,671,677,703,621,633,614,620,613,597,607,639,617,628,622,644,599,628,615,623,617,613,612,603,661,606,619,620,610,620,600,606,613,631,599,604,628,615,600,609,579,613,600,570,559,598,584,599,599,561,585,593,591,570,570,568,587,567,583,589,589,599,573,566,561,566,571,603,596,583,571,566,590,572,592,575,572,598,584,580,559,579,579,594,582,642,667,665,659,641,676,693,672,648,650,653,660,668,655,668,664,670,676,664,667,666,669,653,642,654,674,666,667,676,677,684,661,677,661,675,659,672,655,667,671,707,724,700,736,701,733,725,691,713,686,737,715,727,756,700,658,747,727,735,758,734,720,697,752,762,721,725,727,694,698,750,731,676,719,725,745,688,700,720,716,719,704,683,698,691,689,727,728,698,707,723,704,708,712,715,709,708,723,697,719,693,724,716,704,710,719,719,721,700,697,687,696,719,730,721,721,715,694,699,707,709,716,724,630,629,641,621,627,643,653,626,643,667,645,627,629,646,651,643,658,634,633,658,648,619,654,644,640,622,666,613,635,627,644,646,663,620,645,623,653,660,644,641,669,663,608,563,582,595,592,561,568,579,596,562,611,581,573,595,616,581,587,587,591,572,576,578,591,599,574,593,599,565,595,561,575,585,581,614,594,587,554,608,580,561,609,564,559,596,580,598,583,595,592,603,616,613,604,604,617,599,594,596,603,588,612,596,602,615,591,595,603,612,603,601,606,611,610,594,601,607,602,615,611,593,600,608,590,601,597,594,597,627,579,573,576,576,602,580,573,599,582,570,591,582,578,571,570,594,594,573,568,584,599,567,595,591,582,575,570,576,591,578,575,587,586,574,578,582,590,575,570,591,555,685,713,692,699,685,723,702,712,701,708,695,706,696,692,709,699,713,701,709,710,714,685,711,689,679,716,717,677,676,709,718,699,700,702,700,729,682,705,709,704,676,711,695,711,668,661,673,666,698,686,682,682,702,681,706,666,653,669,667,694,680,683,679,663,677,689,672,667,657,657,688,680,662,677,663,695,692,667,692,686,675,671,670,683,649,665,661,687,665,661,645,651,672,691,664,677,673,676,701,639,673,657,665,667,657,678,663,640,674,661,644,661,651,642,694,659,663,663,684,661,676,660,652,668,659,670,674,651,639,637,642,637,644,649,633,643,647,655,655,657,669,650,634,651,659,658,651,649,653,658,657,646,648,637,638,645,662,643,651,670,627,653,638,658,657,633,652,650,652,773,713,766,775,755,683,751,760,750,761,755,713,689,739,697,742,741,782,727,747,758,748,750,759,720,769,746,732,726,714,750,735,721,736,744,774,743,742,787,769,704,726,780,735,745,736,734,756,734,730,726,766,707,719,728,712,754,733,745,738,719,754,780,753,698,741,716,766,718,742,746,721,716,772,729,778,730,711,764,742,697,703,742,742,736,774,712,750,796,688,741,705,759,722,762,759,712,716,756,763,766,724,745,785,773,794,733,720,726,741,748,778,727,729,775,731,772,695,706,731,750,716,721,756,744,737,743,677,723,707,690,720,744,723,666,725,727,697,725,734,683,723,708,715,696,712,681,688,747,746,706,661,670,728,719,766,726,734,720,679,710,719,710,718,721,690,726,722,711,666,632,655,631,638,671,633,640,652,665,652,647,665,625,663,661,655,635,658,653,665,688,641,665,674,672,660,654,642,649,659,654,653,651,668,619,657,637,656,657,652,623,656,660,639,641,644,629,636,635,630,650,601,635,648,665,625,642,650,649,601,642,627,664,638,636,620,653,665,632,612,628,656,650,622,675,597,649,637,643,620,633,645,667,636,665,696,689,692,699,693,688,696,675,694,695,664,691,709,698,695,688,698,683,688,703,708,692,694,691,680,698,686,718,709,678,712,681,692,697,680,696,703,681,710,689,686,679,691,662,650,654,655,676,652,653,652,671,661,661,677,681,660,657,681,671,666,673,680,679,672,676,674,665,677,672,660,682,673,673,667,654,682,654,660,670,666,658,674,689,668,677,604,606,577,598,574,587,595,603,571,566,597,612,594,593,589,603,607,591,615,575,600,605,586,597,582,587,591,610,592,600,598,593,587,603,609,584,570,606,581,586,601,589,721,684,698,736,737,713,746,730,721,754,746,786,696,680,703,721,773,691,685,697,725,706,755,716,745,702,729,765,691,778,747,721,721,703,709,732,709,725,776,738,673,749,725,734,700,700,713,695,687,687,719,681,711,704,700,722,709,730,690,689,688,725,727,697,688,703,705,701,716,733,690,688,728,684,733,712,708,675,677,707,714,735,698,720,722,717,712,712,690,692,721,693,689,662,661,639,682,680,661,671,664,665,681,665,682,658,652,675,675,637,690,648,658,671,676,673,688,671,672,676,684,643,650,649,671,655,667,654,642,699,686,687,683,678,666,717,646,628,633,637,657,627,635,644,629,637,628,636,638,656,645,632,653,636,638,643,634,648,636,632,653,655,652,653,642,658,644,650,628,635,638,639,643,633,654,640,638,635,643,626,636,619,650,643,664,671,667,674,675,658,666,646,665,664,645,663,645,663,664,635,640,645,662,669,661,652,656,664,653,663,655,658,642,667,653,650,662,673,640,666,631,653,649,659,647,662,675,654,658,649,664,652,637,665,650,712,689,684,691,713,676,725,732,717,696,675,713,735,687,686,716,710,720,721,714,693,691,697,749,721,695,730,705,722,695,706,723,703,687,714,724,695,709,727,694,700,606,636,627,632,629,643,654,647,627,639,643,654,630,650,631,614,624,659,636,613,677,630,664,672,656,649,618,626,639,620,648,640,661,613,645,667,641,615,659,664,642,645,653,633,638,650,641,635,625,620,648,653,635,631,650,692,558,676,670,618,663,642,589,648,618,690,637,599,623,654,630,664,647,575,618,618,685,652,577,659,593,604,674,584,752,615,637,583,633,653,653,615,622,638,660,576,724,725,704,696,716,706,734,705,699,722,704,707,730,723,716,705,714,719,719,701,717,722,703,693,713,741,705,684,733,724,703,706,729,735,707,754,704,708,698,709,708,695,719,700,712,687,713,708,675,707,714,731,722,713,687,696,668,705,685,687,707,690,716,666,713,712,709,742,724,717,697,684,662,707,698,723,693,687,672,692,687,703,720,706,724,735,717,707,740,717,719,717,718,716,716,751,714,713,729,711,720,725,730,720,705,705,745,713,724,725,725,704,725,734,706,719,744,729,713,712,747,716,719,736,723,711,715,716,741,645,620,625,651,645,629,631,654,636,633,663,678,686,630,631,640,646,676,627,626,609,632,666,664,660,639,622,635,643,629,654,632,694,619,667,630,673,561,563,577,576,570,560,562,574,571,569,583,562,563,558,566,570,566,554,568,553,557,577,580,565,575,562,581,560,579,578,558,570,579,562,557,578,571,565,580,550,531,557,549,564,533,540,532,561,568,554,553,557,567,545,545,545,546,550,540,555,553,551,547,561,555,564,547,552,548,562,556,550,548,556,558,551,552,543,550,554,557,563,672,713,688,624,728,692,707,703,640,697,668,679,679,654,660,749,732,621,660,651,713,616,636,663,667,710,632,622,637,697,671,615,681,643,681,714,667,626,720,642,654,634,676,661,760,634,638,640,630,649,656,643,635,653,660,659,637,633,652,644,637,653,625,648,637,659,640,633,670,663,628,654,639,621,641,656,649,645,643,622,628,659,659,630,625,619,656,643,653,644,637,601,592,598,576,604,568,582,611,612,583,588,606,597,567,599,592,591,583,585,583,583,604,578,592,582,606,593,583,595,585,568,581,577,592,601,579,571,567,583,589,589,595,597,589,577,602,579,540,526,521,523,519,531,532,516,530,525,529,537,529,548,542,516,522,540,525,527,524,528,532,536,520,526,534,533,519,532,546,534,522,536,543,527,535,535,524,534,537,512,527,539,543,533,542,541,522,539,513,535,537,522,531,530,538,530,546,547,545,523,537,531,514,529,524,527,526,530,546,536,528,537,548,537,543,534,519,526,535,527,527,513,539,529,527,540,527,535,564,550,554,543,549,554,540,538,550,539,536,540,546,526,545,547,535,539,552,552,548,554,542,545,560,533,544,541,548,547,545,541,537,542,550,539,548,543,549,541,537,554,559,572,536,558,547,554,558,553,555,568,547,554,567,554,556,555,561,563,560,556,562,551,552,561,555,561,546,555,566,546,560,554,555,562,569,562,549,552,638,624,596,636,659,609,595,638,667,601,639,610,596,663,620,630,647,650,620,619,683,653,646,654,646,633,623,656,636,634,662,649,641,651,581,684,622,570,665,683,669,670,664,690,661,655,660,658,663,667,665,684,689,668,692,684,688,669,687,676,677,680,688,646,679,670,673,679,676,669,652,686,695,679,681,684,662,672,673,656,677,619,580,615,603,604,610,591,589,601,603,577,610,611,612,587,605,584,583,591,597,591,584,582,597,588,592,585,585,612,596,587,591,615,584,603,598,604,604,615,610,616,605,677,600,609,661,637,636,641,657,623,668,624,630,610,630,636,601,654,614,626,633,612,598,575,613,624,599,618,588,600,652,622,657,600,630,620,650,656,621,575,641,687,700,710,698,695,682,671,695,698,690,696,694,701,676,692,664,691,691,690,696,675,689,676,685,697,687,693,677,692,697,682,698,689,662,682,715,690,691,707,692,696,693,685,699,685,690,667,673,681,683,689,684,693,686,692,692,691,669,677,702,691,685,687,682,678,700,682,689,648,679,690,682,689,693,655,669,676,673,680,676,668,688,685,667,678,691,674,653,673,658,659,676,682,653,652,668,676,679,675,677,659,661,667,662,670,663,640,666,675,674,675,678,670,658,676,652,676,659,656,677,675,655,664,652,639,649,664,660,638,645,651,643,661,650,633,652,655,659,640,662,637,647,669,649,644,647,649,676,649,651,673,648,632,647,671,654,659,656,649,670,649,672,642,628,649,656,671,647,646,672,590,572,589,593,576,581,578,573,598,596,582,593,579,602,584,596,591,588,590,597,582,580,573,570,578,578,592,589,594,589,584,596,590,584,590,595,588,588,584,597,567,578,595,624,596,554,574,571,617,639,588,661,611,619,633,621,612,620,612,597,642,642,566,619,574,615,602,607,595,648,616,580,592,601,621,636,604,593,609,635,633,602,608,566,589,614,600,607,583,584,578,584,599,592,606,592,594,590,566,588,579,587,565,584,584,605,593,575,595,584,586,581,571,580,582,591,589,591,582,604,596,575,570,587,588,589,586,588,598,584,603,586,647,614,600,655,597,635,635,649,629,614,680,593,610,631,630,625,659,631,662,620,673,602,616,660,590,630,642,666,639,627,651,647,629,633,632,629,571,635,651,619,676,635,626,629,669,662,725,710,691,689,663,686,680,691,693,699,672,699,696,678,707,695,689,695,683,680,678,677,688,691,683,691,687,692,696,684,668,696,692,693,699,698,708,690,685,687,675,668,688,687,714,683,682,670,690,673,684,674,683,676,683,691,695,668,696,679,690,676,668,690,704,696,682,680,698,672,678,673,697,685,683,687,670,668,666,659,674,671,673,659,683,661,673,683,668,665,665,674,679,677,667,662,655,677,678,670,686,669,670,666,685,670,666,657,664,679,665,682,679,646,676,656,678,659,672,662,702,659,666,662,645,668,656,668,652,668,666,652,650,649,662,646,658,670,648,652,652,646,664,650,646,662,660,659,667,647,668,642,663,670,663,666,647,660,636,657,670,670,597,575,588,599,582,583,584,567,589,600,591,598,602,599,585,590,582,591,577,583,576,579,582,584,585,612,615,595,592,601,599,584,585,617,592,601,579,572,589,593,581,601,581,589,586,589,599,543,548,541,513,543,540,532,545,543,558,548,540,544,533,525,534,536,537,540,550,540,535,548,541,535,542,553,536,537,540,537,537,541,543,542,534,554,525,531,536,548,535,517,535,518,511,513,521,522,522,525,523,523,515,517,507,517,527,532,525,521,519,523,522,512,509,522,505,520,495,524,512,511,526,509,516,520,527,525,515,527,537,522,525,735,718,743,765,743,719,755,678,683,725,755,740,736,725,769,753,740,735,694,763,717,733,721,735,710,755,727,721,730,737,735,724,788,735,695,739,678,731,754,721,731,729,733,711,682,711,714,702,708,680,715,708,692,722,680,700,691,709,713,691,719,709,698,688,704,705,704,717,703,708,704,704,695,710,720,670,717,691,712,677,710,708,697,710,695,729,757,714,732,752,758,782,755,750,733,732,766,725,729,709,721,729,708,766,774,759,759,703,721,752,760,791,732,735,760,731,745,740,758,730,747,756,759,738,770,763,729,745,674,703,707,730,682,754,701,736,709,693,735,740,733,713,723,689,670,779,673,715,706,722,709,772,700,708,758,739,722,740,723,711,672,716,711,746,690,702,697,733,729,699,678,739,740,731,671,712,668,662,683,648,665,673,655,671,675,684,635,682,677,694,684,672,692,659,662,671,626,649,671,648,678,666,685,682,670,666,679,651,668,680,683,680,669,574,589,589,573,557,578,594,586,573,591,587,558,570,570,604,583,564,594,578,590,580,608,578,565,606,603,595,588,581,580,584,598,578,572,589,608,586,578,600,587,600,578,666,675,678,673,695,664,692,662,738,680,659,658,698,655,679,693,669,720,616,696,713,624,704,673,638,634,689,695,696,641,695,690,724,675,713,691,705,688,679,654,673,639,689,722,707,699,693,716,694,695,705,696,705,716,716,719,697,699,692,694,690,725,701,716,724,715,696,713,706,724,711,697,704,712,704,709,707,711,729,716,713,701,718,712,617,611,605,624,637,591,612,607,612,615,615,621,639,619,628,620,645,623,644,632,629,627,640,624,600,611,624,629,595,617,615,622,638,626,631,637,640,608,603,630,617,624,674,590,591,612,577,615,588,593,589,612,604,599,584,608,608,604,606,596,604,592,584,611,580,582,584,602,608,586,580,601,605,583,610,582,596,634,588,616,606,613,610,600,659,661,654,668,660,668,665,671,656,650,650,660,653,669,657,660,670,649,656,641,654,674,651,652,674,659,646,656,652,671,661,656,663,689,643,632,654,643,667,654,664,648,658,647,633,662,691,638,613,637,642,613,616,642,624,629,629,622,624,623,623,637,623,634,632,613,632,627,627,618,614,610,652,613,631,606,616,628,608,605,616,627,596,635,631,619,587,600,589,592,610,579,581,586,578,576,586,592,601,604,591,585,591,592,596,584,600,589,593,591,586,575,602,581,590,590,597,578,594,572,573,591,602,591,582,582,583,586,593,611,561,585,586,585,579,609,591,591,605,589,586,592,574,583,595,581,606,585,587,601,597,573,581,581,589,593,575,596,590,587,603,593,604,591,603,580,574,582,584,552,560,550,548,551,554,566,555,555,561,548,548,562,547,551,554,551,559,559,557,569,551,562,560,549,540,561,563,541,558,559,554,559,540,554,550,551,550,549,556,550,569,550,538,550,540,530,527,531,546,546,536,532,544,533,531,541,541,547,533,544,538,543,552,529,537,523,552,548,532,543,538,545,533,526,555,545,533,544,551,541,528,529,528,538,552,563,557,538,562,548,553,540,552,579,573,567,542,539,557,548,567,574,571,559,557,548,553,570,551,558,561,550,563,550,554,542,567,559,568,556,551,557,580,546,549,548,579,538,556,551,549,766,737,735,749,711,732,726,733,740,720,712,734,744,772,726,733,746,721,725,703,741,745,708,741,719,708,739,715,725,737,714,717,749,732,711,734,712,740,761,738,739,708,715,720,703,722,756,723,750,726,735,705,687,726,725,722,729,723,737,715,718,706,740,691,742,688,679,709,710,714,681,682,695,702,739,717,688,679,744,711,714,733,663,655,659,651,666,659,628,672,649,653,644,673,618,654,653,655,652,647,639,646,630,664,644,659,640,646,658,638,658,656,667,652,649,660,650,634,652,648,653,672,658,661,661,626,634,647,673,636,562,570,567,572,586,560,579,588,567,580,586,575,579,585,583,585,598,577,577,581,561,565,591,576,583,585,574,569,572,590,563,588,573,591,591,577,574,581,574,570,566,554,572,556,550,563,548,556,563,562,565,560,577,567,563,556,567,555,564,569,581,566,564,570,564,562,561,555,552,574,566,550,558,550,560,557,547,553,583,554,561,563,573,567,579,562,553,573,567,567,562,576,563,563,570,551,566,557,556,563,543,576,583,565,573,571,551,558,566,533,560,561,565,566,563,568,579,572,571,560,569,571,566,573,560,568,557,567,556,564,571,558,574,554,545,565,551,548,565,561,562,546,554,554,566,561,559,550,565,556,560,564,568,570,567,544,558,553,569,562,551,563,557,554,567,567,575,551,549,557,545,555,558,566,562,565,565,557,564,552,565,567,557,554,579,551,553,576,553,541,557,567,565,561,560,546,556,560,566,577,570,545,567,556,570,560,533,549,565,562,557,567,567,552,553,561,563,557,561,564,561,561,556,557,551,563,530,564,552,558,561,565,543,554,554,552,546,550,560,563,560,551,555,558,550,557,533,546,557,547,558,555,548,548,552,555,544,568,687,669,708,661,681,636,687,652,683,627,675,670,701,669,633,728,712,621,654,700,695,629,682,634,676,673,710,665,715,643,642,636,662,648,652,677,680,628,640,640,646,644,646,632,650,643,653,636,639,616,635,627,641,662,596,653,627,647,636,646,619,622,617,623,625,614,669,643,633,636,642,656,672,635,648,643,585,577,580,573,585,566,592,580,587,576,596,572,564,582,579,583,592,580,566,589,598,573,593,568,588,571,578,600,593,579,585,585,568,597,586,599,569,578,588,563,586,588,569,602,624,629,636,641,593,629,617,647,652,612,653,628,631,621,637,616,634,612,627,632,672,633,636,619,620,620,637,632,644,641,661,598,614,608,632,610,602,593,647,618,577,780,736,751,735,735,710,690,734,759,769,743,706,733,751,744,765,722,751,727,732,709,737,737,748,726,748,737,751,755,750,732,712,721,748,720,735,737,750,728,700,770,729,724,718,691,660,689,705,656,667,670,671,657,687,689,698,682,661,684,670,704,664,653,688,680,698,671,681,678,649,715,728,691,694,689,680,678,675,707,658,686,690,697,707,652,664,690,663,669,594,607,616,587,614,612,613,595,594,590,604,605,615,598,595,609,602,619,609,606,604,603,607,600,606,593,603,611,596,607,607,605,599,624,594,603,611,606,606,609,605,599,606,603,589,553,562,543,545,552,541,559,552,545,545,555,537,563,556,546,557,553,544,541,560,554,552,550,547,551,539,554,560,545,562,550,566,549,551,553,567,555,551,548,555,552,705,672,670,640,652,682,675,701,696,675,690,658,677,676,668,668,642,618,673,687,659,683,693,683,649,690,710,664,686,664,623,657,665,684,691,636,677,679,724,632,690,678,642,659,692,637,624,615,619,630,637,612,623,619,612,629,621,637,641,592,634,640,604,599,598,643,641,636,623,607,620,640,627,622,624,609,631,642,639,624,623,622,630,623,613,616,642,622,600,602,552,595,585,583,587,561,606,588,596,575,602,603,601,584,588,606,577,583,582,583,582,589,581,595,577,586,587,598,591,591,590,585,578,603,594,590,603,569,591,597,590,588,593,601,576,562,565,574,562,580,557,566,581,554,563,544,560,557,552,559,559,570,556,547,555,563,546,552,559,557,568,565,564,558,548,564,553,564,543,561,578,558,566,570,565,588,673,688,697,682,671,710,672,691,678,667,693,684,688,680,667,680,673,697,685,688,663,707,696,672,687,714,651,657,670,701,687,673,711,708,688,695,705,654,685,677,660,689,689,692,673,698,706,674,714,691,672,686,713,727,700,712,719,718,740,715,711,707,684,718,688,733,695,740,723,755,719,715,728,674,710,684,716,708,716,719,710,752,721,717,719,771,576,655,603,581,625,565,632,626,630,611,582,652,567,602,647,666,679,599,628,599,591,629,621,654,633,600,647,584,582,621,597,628,574,600,632,615,655,678,609,653,658,593,539,524,599,616,622,612,606,591,627,571,631,593,584,598,611,584,610,627,610,603,596,616,633,608,634,607,594,605,622,602,619,611,607,594,606,583,600,622,597,612,631,628,612,601,598,630,605,602,591,614,603,561,559,573,575,571,567,565,564,567,590,577,561,576,549,561,573,565,559,559,569,561,567,570,583,582,574,567,561,564,570,563,584,564,576,552,567,569,560,560,567,544,567,658,659,680,666,705,682,710,645,678,655,671,651,672,679,640,649,634,676,660,724,672,666,731,665,664,652,640,628,676,656,680,676,672,677,661,688,683,654,632,694,686,724,746,674,663,687,664,676,698,713,707,701,719,721,705,713,701,693,722,726,726,709,717,709,719,719,734,707,735,713,711,713,703,712,705,725,699,706,733,700,709,744,714,718,713,710,712,730,742,731,696,679,696,713,709,720,692,741,603,612,600,626,634,606,639,646,604,601,594,582,614,589,641,640,599,629,631,595,616,647,612,661,613,654,594,607,612,609,620,629,592,625,607,610,619,630,617,625,630,606,624,620,627,578,558,571,573,563,548,559,581,556,567,567,567,571,570,575,544,560,553,554,567,558,555,561,568,575,569,583,556,573,553,572,544,566,551,561,552,560,561,568,560,561,559,555,569,552,572,608,623,631,573,629,627,620,615,663,643,593,589,549,606,619,633,618,633,615,621,628,624,631,631,594,605,595,624,615,605,641,623,599,614,619,638,599,615,604,594,614,610,622,603,612,549,556,573,573,586,588,552,585,569,575,584,571,562,576,563,578,575,571,582,572,570,560,558,575,568,567,585,576,566,557,577,565,579,574,572,567,563,571,573,572,594,578,565,571,638,575,656,626,648,602,693,652,630,619,622,639,655,617,622,624,640,618,647,635,644,644,659,628,667,612,610,611,650,561,616,629,625,624,617,645,641,605,624,618,655,683,675,675,700,662,648,671,689,665,684,682,691,667,690,679,680,691,675,682,663,695,694,676,703,682,668,699,683,697,674,690,685,676,683,669,696,683,704,686,666,701,685,685,688,654,701,672,727,683,704,688,702,697,680,691,672,677,677,689,690,699,686,696,695,669,682,684,691,721,691,665,718,691,709,723,679,671,681,683,667,711,732,764,614,627,618,613,629,624,627,632,619,596,627,656,633,610,628,620,643,623,627,616,621,609,613,637,617,639,643,646,652,622,632,623,610,645,631,666,575,561,589,570,577,565,565,562,568,576,558,580,579,570,582,569,585,573,553,554,581,571,571,587,571,554,565,575,575,587,549,578,585,577,587,592,569,577,575,575,577,556,559,580,562,556,569,566,556,560,550,559,565,544,573,547,546,566,565,555,560,553,567,562,565,543,551,548,558,553,568,551,553,561,563,545,554,565,553,564,564,554,564,572,563,546,695,705,707,721,702,703,739,707,721,690,703,728,725,729,727,729,672,693,682,738,662,717,703,706,740,698,728,698,678,722,686,694,728,700,715,727,716,702,695,712,685,676,699,766,703,698,699,682,714,710,704,690,694,694,697,709,698,710,718,691,702,711,706,700,684,705,705,687,703,720,710,708,712,708,701,698,710,716,697,708,714,703,699,694,694,686,665,634,658,657,640,657,635,663,655,666,681,630,686,644,652,665,650,663,660,682,670,662,662,650,687,660,627,630,639,664,645,658,631,655,625,654,645,643,651,662,631,651,654,648,698,611,595,662,600,636,631,593,552,626,652,607,614,555,578,669,658,668,599,651,575,645,615,627,596,654,644,651,683,615,613,656,615,581,631,645,710,621,617,680,578,744,702,712,725,692,712,714,696,707,712,721,689,698,709,712,704,688,718,715,696,700,698,688,679,715,683,678,685,708,710,712,711,708,711,695,694,724,717,709,687,695,699,689,580,590,575,585,573,564,640,583,592,588,618,580,608,598,624,616,640,602,585,600,608,569,585,590,621,592,595,590,625,626,617,599,610,604,581,595,593,548,623,612,589,589,626,602,584,579,559,564,565,573,572,609,555,577,574,578,581,586,583,570,576,592,575,548,581,576,578,544,586,569,574,569,579,586,576,577,587,575,584,560,594,570,576,559,580,579,579,569,602,599,622,609,621,609,602,609,613,599,583,608,602,586,602,611,582,615,620,597,596,611,637,636,612,609,615,595,624,601,612,619,596,617,587,598,612,610,599,616,592,616,611,606,593,568,589,566,586,572,547,563,567,564,544,591,562,562,557,565,561,567,580,581,562,579,583,587,558,564,566,560,576,547,571,572,575,550,581,575,574,573,558,556,576,550,580,565,581,562,586,571,575,585,575,554,568,556,577,569,593,574,580,569,595,586,568,564,580,576,558,551,589,587,575,570,569,579,573,588,570,587,561,600,585,546,561,569,578,559,567,556,553,552,549,553,547,544,550,549,543,553,553,544,559,531,551,544,543,549,556,544,552,548,558,562,537,538,554,532,540,555,552,559,552,544,561,548,553,567,569,539,544,547,604,662,619,663,693,651,632,706,657,643,612,630,699,644,641,620,687,609,648,672,626,643,646,696,618,652,563,653,633,644,622,640,669,647,630,658,693,639,672,642,648,685,667,675,676,675,696,667,691,672,695,669,663,666,664,680,673,696,664,668,678,674,679,695,666,667,684,660,677,705,665,687,676,668,687,674,665,693,684,690,661,686,670,687,672,663,684,675,670,752,724,756,698,704,694,698,745,700,742,747,751,728,765,713,743,724,732,739,728,718,743,685,671,745,716,750,720,734,722,732,759,743,720,719,748,736,768,710,707,686,693,699,722,710,693,702,708,707,681,714,709,708,700,700,694,711,695,711,701,694,708,708,709,718,710,702,680,695,709,719,671,698,697,704,729,701,691,686,694,701,692,710,697,695,714,602,606,645,613,613,643,640,570,685,632,657,646,647,613,610,622,630,633,644,555,626,645,657,607,631,652,649,636,674,660,627,667,629,585,678,645,605,646,607,632,631,543,581,578,585,564,585,536,579,579,591,583,544,567,571,569,588,575,561,568,543,570,554,575,552,562,593,549,586,554,585,548,592,553,569,554,591,582,596,573,564,626,565,575,568,563,583,553,572,574,577,542,573,574,570,557,561,583,588,557,558,573,556,570,567,566,544,540,582,578,572,565,572,571,580,555,563,540,554,561,548,532,570,567,550,561,743,743,744,729,737,724,724,720,738,752,738,723,730,751,694,716,707,730,731,736,743,716,751,694,707,723,770,719,690,720,720,754,725,734,732,742,714,730,729,735,724,729,658,645,649,650,631,655,652,655,694,631,653,647,662,645,651,645,642,654,662,629,618,625,670,640,682,691,646,673,667,665,651,650,674,670,689,633,665,643,667,637,665,677,637,707,709,632,650,676,631,619,639,672,623,638,632,630,639,621,653,671,613,650,650,665,654,662,606,649,623,641,648,603,653,649,669,631,659,641,637,637,622,617,619,667,640,634,612,667,623,689,547,526,554,534,556,545,550,548,555,541,547,532,539,560,537,558,556,556,542,553,542,542,541,548,533,560,539,539,531,565,541,551,546,537,555,554,548,534,554,544,554,559,542,555,556,538,562,560,549,554,551,558,552,563,558,562,565,560,556,559,557,563,550,554,572,567,551,556,547,558,562,563,552,551,556,557,555,556,571,555,554,610,608,591,609,588,634,629,632,606,607,608,621,603,656,608,589,617,597,649,613,620,614,597,627,595,645,634,613,615,593,632,643,646,614,598,602,644,595,603,627,785,786,793,762,751,749,755,765,795,750,797,769,761,760,780,771,778,764,757,760,787,753,770,776,774,784,787,786,767,731,776,761,735,776,734,774,773,775,775,775,758,762,755,780,716,737,765,720,742,737,733,728,732,750,715,740,756,689,715,710,727,745,777,765,761,731,723,716,757,734,748,747,770,739,737,736,717,758,746,734,744,739,749,711,694,741,767,737,739,645,660,646,657,705,692,663,653,655,655,650,663,664,646,656,666,684,654,653,650,658,665,658,669,669,650,682,661,645,635,683,667,670,669,639,651,679,666,647,673,664,679,646,699,576,558,573,583,569,570,573,574,570,581,562,588,579,594,578,592,579,584,556,568,568,571,580,566,578,586,560,573,581,578,581,577,571,584,572,580,584,577,584,587,525,531,530,537,539,528,525,501,537,521,521,522,528,528,516,523,524,525,524,523,515,532,512,524,520,526,525,522,541,521,540,521,508,522,546,526,528,526,515,518,532,524,529,512,524,521,533,539,533,519,519,534,527,524,534,533,533,523,530,515,527,522,530,523,536,514,526,513,530,524,538,539,526,530,541,523,526,530,541,527,525,544,523,542,533,516,523,521,554,552,558,565,552,568,568,566,566,564,560,558,560,560,567,554,564,567,562,565,558,574,549,561,566,576,558,552,569,559,575,562,575,572,544,569,568,572,561,568,552,572,567,560,587,584,601,585,595,585,594,580,600,579,596,559,588,586,583,597,585,592,591,616,595,595,609,585,586,604,600,592,588,597,574,557,610,589,598,588,573,564,608,590,588,593,623,559,578,577,558,565,566,567,560,568,571,582,570,566,580,569,559,587,576,566,554,566,559,554,577,579,574,581,571,566,567,570,559,567,561,566,563,560,572,565,573,561,568,568,580,620,625,650,647,643,664,641,613,674,673,661,660,676,614,640,682,686,625,648,605,633,650,640,643,618,671,619,688,657,612,636,643,628,644,678,628,631,663,618,628,675,636,650,667,638,633,674,660,667,677,691,681,670,670,664,665,693,684,678,680,667,665,669,668,661,662,653,690,664,680,687,671,645,654,671,678,676,674,690,680,670,667,639,685,663,677,690,664,599,608,590,589,592,601,612,592,590,596,592,599,593,601,592,604,588,605,577,573,584,588,572,609,604,611,590,587,595,591,607,617,605,593,583,597,608,599,603,583,594,579,552,559,565,551,558,559,564,565,549,572,552,557,563,566,548,555,554,573,553,551,539,557,546,566,560,552,561,564,540,555,561,563,570,561,556,564,557,554,548,616,592,570,587,618,597,576,584,591,594,583,565,602,562,541,596,598,572,597,614,585,587,606,591,595,630,590,573,601,540,565,620,572,567,560,577,603,556,587,587,584,575,595,581,581,587,584,591,592,587,578,595,569,588,588,578,582,582,576,578,577,583,591,568,574,568,590,574,572,580,577,596,576,567,593,577,585,566,582,586,577,587,552,574,572,562,563,564,549,559,565,560,552,556,554,572,560,565,552,569,570,555,560,564,570,552,571,555,571,567,566,557,551,558,550,571,543,563,568,564,550,565,551,552,561,553,542,554,553,548,573,545,553,540,545,549,542,560,553,569,561,555,557,540,553,550,554,546,546,547,562,556,533,549,549,531,553,542,555,549,547,543,555,555,546,559,545,681,675,655,682,674,666,666,686,658,643,673,674,671,674,646,662,680,670,662,650,674,665,661,681,702,670,662,644,682,653,682,695,680,654,685,696,634,659,670,666,683,663,620,623,633,637,622,626,635,626,617,631,625,621,638,627,632,611,639,601,615,618,620,625,617,631,629,608,627,643,634,606,631,640,620,626,629,620,635,624,633,658,647,613,621,611,632,607,617,577,574,581,586,561,570,582,590,574,577,561,577,585,576,584,582,570,600,571,561,580,565,586,596,594,595,595,594,581,580,575,572,577,585,580,598,576,574,572,579,570,571,526,526,533,527,517,525,525,534,542,533,539,532,536,532,522,522,525,541,525,529,519,517,529,529,526,532,518,519,513,536,523,516,533,534,518,540,649,637,650,680,633,650,655,671,649,657,635,658,650,670,645,676,652,643,651,651,664,635,650,660,671,654,654,658,649,646,654,661,637,669,663,665,632,648,654,660,658,655,668,651,679,699,670,687,699,670,685,666,601,656,669,654,607,677,679,665,666,660,633,686,661,694,691,691,654,680,670,680,661,686,691,673,696,692,675,676,665,658,647,648,658,655,655,708,671,702,673,678,724,676,676,638,727,733,712,704,672,699,684,638,704,664,734,658,659,647,698,719,661,706,721,720,696,716,745,685,668,731,661,696,680,700,652,663,689,665,722,625,597,621,613,642,581,604,590,612,600,602,617,620,598,612,598,647,608,626,618,598,592,615,614,585,614,607,636,615,597,603,616,593,614,624,608,649,614,568,581,623,633,579,615,618,587,629,524,529,515,529,532,523,521,532,520,535,527,531,533,526,533,535,536,520,536,537,541,541,524,527,533,531,529,540,527,544,527,537,518,533,529,531,521,541,522,520,533,521,545,659,608,657,614,648,650,647,635,663,672,647,643,661,629,637,633,643,657,644,671,651,649,646,628,653,643,646,653,663,638,642,624,650,644,638,644,639,647,648,649,575,590,580,595,546,586,556,587,588,572,569,550,571,563,586,576,564,590,566,582,565,589,596,592,590,575,555,577,561,573,580,582,551,568,564,575,585,568,565,547,574,558,571,545,566,597,568,584,565,609,583,636,613,586,626,558,663,619,601,607,579,521,612,630,663,605,646,583,507,581,645,717,639,616,632,694,598,560,556,571,623,588,562,639,622,607,597,676,590,605,599,611,584,585,601,602,615,622,599,599,587,611,599,604,593,578,601,609,594,575,607,592,588,607,605,587,615,618,566,597,620,593,601,603,605,598,600,599,598,587,577,579,596,582,611,573,571,573,557,556,576,567,578,566,582,566,580,569,559,568,566,568,578,574,587,563,565,562,569,582,573,566,568,569,552,571,575,572,576,571,563,554,549,566,568,565,573,570,559,559,549,572,569,554,543,550,543,541,556,545,552,558,516,547,553,541,532,540,559,537,536,528,533,549,552,553,529,565,569,544,545,546,530,556,539,536,549,531,543,532,544,533,552,545,566,553,545,526,501,516,514,507,527,503,519,514,513,514,511,529,503,523,516,516,521,526,512,513,523,532,523,509,508,525,522,503,535,522,516,521,514,521,531,502,537,509,515,524,509,524,508,509,503,500,683,678,677,668,685,687,653,667,699,658,686,682,681,663,673,684,675,674,684,668,670,641,709,671,671,667,701,683,680,689,660,676,688,666,666,689,695,653,678,697,696,687,678,677,723,633,657,648,638,635,660,662,639,662,642,648,666,643,649,638,643,649,653,650,638,649,642,671,657,630,650,670,638,649,666,633,650,668,663,652,649,592,584,596,588,566,603,609,610,611,591,608,614,602,587,585,604,600,591,626,603,591,594,612,581,617,592,612,606,606,615,640,606,624,590,610,589,608,626,602,597,595,610,625,546,542,563,549,556,553,542,560,536,558,551,547,552,546,547,555,570,544,555,540,565,543,534,562,550,546,559,553,557,550,554,558,543,549,545,548,552,558,560,572,547,537,535,555,535,508,517,546,539,533,539,525,516,554,537,555,542,528,534,543,519,537,534,534,562,540,552,554,532,543,519,526,553,547,528,536,540,534,531,543,541,513,516,517,529,520,528,531,520,536,511,534,518,535,525,512,529,517,513,511,522,528,534,509,541,524,510,516,518,521,530,499,515,525,511,522,509,505,523,517,522,525,526,518,520,509,508,522,521,513,523,508,523,507,527,513,526,511,506,522,513,518,527,517,522,508,515,512,525,511,522,525,532,515,501,511,521,512,522,509,512,533,516,517,516,517,511,491,545,578,555,553,578,548,568,557,547,546,547,551,566,577,564,563,556,529,557,560,563,552,547,547,565,548,546,564,557,533,565,568,569,553,567,563,564,582,549,554,557,542,562,543,549,554,561,555,557,549,546,549,556,550,539,557,552,547,537,551,560,543,539,541,539,552,549,554,560,544,566,555,547,547,548,560,550,539,540,539,547,544,550,562,552,542,553,572,588,561,591,577,580,557,568,581,574,565,579,564,575,562,555,574,569,552,576,565,575,575,561,591,577,577,568,575,572,567,557,573,573,585,562,592,566,584,574,589,541,548,550,543,543,558,560,546,552,555,560,539,561,555,555,559,561,551,547,546,553,554,542,553,540,548,564,561,567,559,545,544,562,544,553,550,554,564,549,549,544,562,544,695,651,729,671,683,660,690,689,724,659,630,699,629,674,672,712,717,704,692,653,656,629,632,670,715,645,652,644,738,645,709,674,688,657,619,700,659,703,648,654,653,647,634,629,633,608,639,646,648,636,621,624,632,613,638,611,632,661,628,644,632,633,638,640,630,653,645,605,605,638,617,602,637,661,627,624,632,636,636,628,632,636,635,629,580,589,585,582,569,590,573,575,583,568,588,572,580,593,568,588,563,582,578,566,583,574,571,584,588,560,588,575,590,587,578,580,587,577,579,574,585,596,547,560,553,556,556,572,553,564,544,563,545,556,559,560,554,557,545,553,560,548,564,556,548,566,553,568,551,559,554,571,561,565,561,563,556,552,555,560,570,552,542,565,553,644,687,608,674,593,671,664,608,610,675,680,664,641,629,653,674,584,632,623,615,646,634,661,656,633,619,662,684,693,644,603,655,613,633,591,630,634,679,656,604,721,550,571,571,554,563,567,572,552,578,580,570,559,588,554,597,570,575,565,570,554,573,558,560,574,565,580,579,573,568,581,572,570,572,565,569,560,572,579,572,579,567,585,570,589,573,561,589,561,564,566,550,564,558,549,560,540,546,548,569,554,563,574,548,568,576,574,557,570,547,559,552,564,563,582,579,557,563,566,566,554,554,555,557,562,575,563,568,564,569,581,553,578,580,565,575,542,627,608,634,619,634,593,623,628,634,615,616,627,617,630,635,634,637,630,608,627,598,608,626,615,621,638,602,623,620,644,622,619,620,633,621,596,628,616,624,632,606,658,629,597,623,671,681,679,660,704,674,675,662,676,673,698,689,678,645,703,677,676,685,640,657,671,681,674,667,682,655,670,636,686,668,682,665,665,676,673,697,699,655,672,679,690,706,662,639,616,624,620,659,627,612,637,638,616,627,635,608,637,636,610,626,573,598,619,621,626,603,645,645,593,641,634,615,611,628,655,650,644,628,617,642,640,615,634,647,633,604,572,597,583,588,568,588,573,593,587,556,575,580,594,581,568,575,588,579,582,606,563,578,589,601,575,587,559,565,571,582,591,571,581,554,563,575,568,579,596,571,570,576,504,505,512,506,526,503,514,513,506,511,521,506,522,522,498,519,513,511,512,510,519,514,526,517,506,510,514,501,527,508,518,513,513,513,520,515,506,509,507,513,528,515,523,532,595,573,590,578,559,589,578,581,575,579,566,595,572,581,577,571,597,615,584,574,571,563,550,586,577,566,593,577,581,554,552,576,577,577,597,592,588,580,586,586,600,624,632,632,602,608,635,618,624,638,616,610,614,653,616,597,585,636,612,608,618,620,617,621,637,613,623,620,615,635,644,616,608,628,608,630,628,620,606,614,601,645,692,667,688,685,647,695,686,673,708,694,722,651,694,684,686,683,664,688,675,734,669,668,636,708,714,722,673,693,716,701,687,652,680,663,685,658,676,701,642,697,683,693,645,618,630,643,622,634,630,642,627,634,615,681,619,618,643,632,611,609,645,624,635,629,633,617,650,626,626,657,642,636,650,633,628,648,619,637,640,621,608,609,626,635,634,615,637,618,618,637,581,580,564,576,575,575,577,575,569,574,574,564,596,597,584,574,573,591,582,555,577,583,590,594,581,593,577,568,600,586,570,577,595,601,592,570,576,585,581,562,581,570,577,550,527,511,500,498,507,506,526,519,514,519,512,524,501,520,508,520,516,511,510,505,517,521,496,517,509,528,536,518,526,514,518,509,520,526,518,507,530,525,519,486,544,534,541,547,544,545,550,548,562,537,536,549,536,557,548,559,537,534,553,554,537,550,558,535,537,546,541,554,522,543,526,539,542,554,549,542,536,529,536,552,547,531,536,533,534,527,534,529,542,537,531,535,530,529,531,540,538,532,546,530,523,533,534,531,545,534,545,543,538,530,530,540,527,538,518,533,536,536,534,539,523,533,534,537,538,533,542,566,590,570,581,569,583,575,565,594,603,580,588,567,583,579,578,568,585,574,585,560,572,578,565,593,602,593,593,569,570,576,594,598,560,587,577,571,573,554,580,594,591,570,697,714,705,713,735,722,747,747,754,722,717,754,738,720,739,716,726,760,704,724,744,728,722,703,727,729,703,730,762,749,731,721,733,761,696,715,782,722,725,739,753,666,697,684,697,718,738,724,703,708,722,701,741,733,741,716,729,746,695,676,748,670,694,724,731,690,706,721,757,727,693,714,737,702,700,697,695,720,716,692,729,717,709,692,702,696,685,714,643,659,659,652,624,646,636,636,658,645,653,649,673,648,652,660,643,642,665,644,674,639,655,666,664,659,657,666,654,657,639,647,631,651,632,652,667,667,671,665,623,648,570,599,576,575,567,567,589,566,561,574,567,574,585,578,572,568,588,580,578,568,569,571,572,574,575,586,590,565,584,578,575,571,567,569,579,554,595,582,583,572,571,575,605,570,572,553,563,560,562,562,557,555,553,557,564,565,553,564,557,560,551,558,562,561,564,563,558,565,557,562,564,557,562,570,563,559,567,562,556,556,556,573,557,557,552,556,572,570,562,558,584,569,561,556,566,574,569,552,542,566,568,560,569,560,551,566,554,557,566,564,558,574,560,562,569,570,572,566,562,557,547,574,558,556,571,564,566,557,564,559,567,573,562,558,564,568,567,557,553,562,570,554,567,556,567,554,561,565,563,563,571,562,565,558,555,547,559,561,565,562,566,566,559,557,546,562,574,576,568,566,566,578,560,544,569,572,562,562,565,554,569,576,562,568,574,555,562,563,572,546,571,562,574,575,560,551,571,574,560,573,556,555,562,568,587,581,561,557,557,579,551,567,545,563,572,545,549,556,555,566,560,571,550,547,554,549,566,560,563,556,555,572,561,569,570,564,561,549,559,568,558,548,557,545,560,567,562,571,572,560,562,566,567,586,549,545,548,554,575,570,552,559,563,564,568,566,547,555,572,571,558,556,546,564,562,549,560,562,555,556,561,557,554,553,556,556,561,567,562,566,569,559,551,559,548,567,545,552,553,546,559,549,563,536,558,557,562,557,558,562,545,547,553,554,553,553,547,543,565,547,559,551,563,545,544,547,553,545,555,561,544,562,540,560,560,545,556,554,556,550,554,577,559,561,569,549,563,574,577,563,570,569,565,574,569,567,564,563,550,559,578,562,559,566,560,569,572,568,566,580,561,565,563,557,563,559,546,565,571,578,566,552,564,544,564,553,574,722,724,707,712,703,713,720,705,719,701,709,677,708,691,711,717,703,698,699,694,737,693,710,675,689,692,708,691,727,695,703,716,709,697,698,720,711,698,706,704,700,719,693,693,726,700,751,670,680,683,689,675,677,669,680,659,670,689,676,681,675,682,675,684,683,691,680,673,684,677,664,694,662,683,672,696,698,681,675,670,678,678,667,699,677,689,672,667,663,732,753,781,771,789,750,726,763,778,734,727,773,765,756,757,746,777,752,760,704,730,719,737,708,752,746,744,740,716,746,745,762,767,746,740,760,733,748,734,788,650,651,677,649,686,680,666,647,639,661,681,676,645,666,638,701,715,693,648,675,667,671,650,697,622,673,665,712,657,642,663,677,640,664,676,675,675,681,644,650,651,648,612,636,656,632,640,622,654,650,625,636,663,630,630,634,645,642,634,666,667,641,627,610,648,667,661,665,636,676,641,659,621,660,624,664,653,660,631,644,644,642,661,630,627,635,602,549,555,571,544,541,558,551,554,549,548,546,550,565,576,545,567,547,544,541,555,563,555,553,555,544,545,552,560,552,558,563,539,554,556,549,558,541,540,557,555,548,566,540,552,558,556,542,557,544,544,553,545,568,546,543,557,545,537,539,537,545,543,551,550,548,542,545,537,536,542,533,564,537,528,544,544,531,551,556,548,551,535,541,553,550,549,554,519,555,556,551,544,535,548,548,534,547,541,549,556,570,547,549,555,548,549,534,548,547,556,562,556,550,555,548,561,545,541,562,544,558,550,553,554,552,555,549,558,549,554,552,643,616,642,633,673,656,649,662,654,588,676,651,624,648,642,635,638,623,617,643,611,614,666,652,655,618,625,615,633,641,639,612,613,646,614,641,622,641,664,665,613,663,641,629,587,633,635,659,655,664,653,648,670,663,651,648,700,663,663,665,668,656,640,657,652,660,653,662,662,652,653,658,666,651,672,678,674,651,660,649,657,664,677,619,555,575,583,572,563,575,580,567,570,581,568,579,584,600,573,579,564,568,568,563,574,576,587,567,585,571,576,569,579,590,577,587,586,582,578,582,557,582,580,574,565,587,587,560,595,608,562,578,579,576,596,589,590,586,596,592,610,616,574,584,580,608,584,612,586,572,588,585,578,600,576,593,589,577,580,580,614,569,595,605,619,585,596,584,586,601,587,565,581,589,598,587,633,606,608,619,596,570,600,592,581,597,588,608,615,610,620,598,601,610,599,618,594,608,594,598,616,593,612,601,620,587,595,611,617,611,610,592,599,576,586,584,571,577,577,582,579,540,558,579,554,568,565,551,565,568,569,561,575,570,570,604,573,579,559,559,569,562,568,553,587,564,578,551,575,577,565,602,559,579,555,581,646,685,659,662,658,656,690,651,683,680,655,683,681,674,659,649,673,659,662,660,668,662,665,677,669,663,659,651,650,646,656,657,650,661,643,650,667,655,672,572,593,600,585,603,595,600,569,577,590,612,578,598,595,595,573,582,591,569,561,593,589,614,585,580,591,595,591,571,567,554,574,602,564,583,577,582,605,575,594,588,592,551,674,688,712,687,673,675,636,646,716,607,665,706,707,625,708,669,718,698,718,700,690,635,610,710,677,728,665,691,687,683,632,623,726,713,674,626,656,664,641,635,708,673,665,662,549,735,664,710,740,715,702,728,704,691,704,731,672,685,707,719,721,718,711,694,708,705,695,697,711,693,712,664,714,722,702,700,698,678,706,690,700,712,711,654,651,647,618,653,641,666,646,642,633,684,659,625,650,647,651,666,644,648,648,669,652,663,630,640,664,663,615,649,636,667,637,659,658,664,610,666,653,652,649,649,649,696,733,716,713,737,736,780,746,712,715,742,726,713,731,724,692,710,715,748,721,733,742,730,721,717,764,705,704,756,712,716,696,725,737,725,740,718,751,709,743,701,737,779,711,724,772,698,671,748,710,712,713,703,719,662,735,739,702,701,708,705,741,771,704,736,673,696,727,725,741,719,733,711,689,748,739,718,741,732,688,749,686,724,685,700,719,673,677,684,699,675,653,674,675,675,698,702,663,663,680,690,675,704,673,659,659,653,656,683,685,666,678,651,660,660,664,681,672,675,655,667,697,676,672,725,663,674,649,648,659,643,656,670,653,650,651,654,650,657,657,658,637,653,671,652,652,646,651,642,644,652,660,666,655,646,653,647,643,648,646,665,651,670,652,658,655,651,731,743,730,772,752,744,746,762,758,732,757,761,761,765,757,735,751,727,765,773,753,735,751,728,741,750,686,722,768,721,737,743,756,721,746,705,763,762,755,771,748,777,711,745,732,771,739,716,712,694,679,721,684,712,743,707,691,743,693,744,737,724,713,684,714,725,709,697,789,711,754,724,692,710,699,741,752,739,703,716,722,741,740,734,717,751,722,714,741,681,676,653,635,681,671,711,684,699,667,668,659,690,634,689,655,691,650,665,657,649,663,656,658,684,658,653,655,664,671,645,655,658,674,639,649,667,682,654,670,693,651,642,674,593,587,617,604,620,615,583,589,595,591,600,607,605,604,631,605,609,604,594,613,630,624,595,605,611,606,605,615,605,615,607,591,605,606,617,598,597,603,607,595,623,598,604,589,614,605,609,588,566,575,572,587,568,576,573,577,563,573,573,593,569,591,561,560,583,567,579,590,588,562,574,572,578,577,571,569,587,573,574,593,564,588,568,578,583,587,569,567,597,599,579,572,711,714,699,713,707,722,685,696,693,701,695,727,709,690,717,712,711,720,692,721,683,698,700,692,701,687,678,698,718,692,699,715,707,677,705,710,686,678,700,685,692,713,672,663,665,661,685,675,670,681,663,654,688,688,660,681,670,670,681,675,681,674,656,679,650,660,672,673,686,679,675,692,685,669,672,638,684,661,664,632,601,603,623,615,628,608,609,609,608,597,644,637,608,605,617,616,600,610,604,611,623,614,617,629,602,615,617,632,596,626,609,624,596,619,620,577,620,582,618,614,604,610,621,580,583,578,580,577,562,591,583,583,592,574,591,587,586,567,574,578,590,565,581,592,593,590,572,587,580,580,581,579,572,582,563,590,587,594,588,580,593,579,576,582,593,590,582,570,610,640,636,645,626,666,666,625,640,619,627,606,666,616,646,631,641,645,643,650,626,663,626,684,684,634,654,650,690,617,644,656,653,641,660,665,633,627,654,629,667,631,625,685,720,665,670,664,673,665,690,672,685,655,679,685,680,671,679,655,666,674,663,658,669,678,657,681,665,669,671,675,660,675,664,671,661,685,665,657,663,694,672,684,675,677,674,668,659,699,606,634,591,610,613,636,611,624,603,623,606,599,605,594,598,635,610,613,618,639,616,625,621,617,605,616,616,644,607,624,622,628,604,613,606,602,613,621,600,625,625,626,586,580,574,581,584,585,582,582,565,590,565,569,578,582,582,578,566,575,586,577,582,563,575,569,589,582,568,582,571,586,585,571,573,580,582,577,578,583,569,568,581,588,556,550,539,547,529,555,551,551,542,562,535,547,539,547,557,559,542,545,569,546,554,541,559,535,549,554,557,547,542,552,560,547,534,535,526,553,551,550,561,550,544,545,546,569,523,532,528,521,541,543,550,537,529,531,547,534,530,526,526,528,538,536,543,529,539,546,540,542,527,529,548,528,525,518,538,531,534,520,528,551,528,532,543,530,536,531,538,550,542,510,583,587,583,579,584,583,570,584,571,569,588,571,564,566,580,577,591,574,579,589,585,588,576,579,571,568,568,548,563,587,574,579,559,563,572,577,599,602,609,631,615,595,610,615,610,624,612,604,608,625,622,623,613,577,607,605,623,612,605,623,589,619,615,633,617,613,617,612,610,627,589,616,600,621,610,624,611,628,614,615,588,611,627,629,613,619,603,596,593,619,627,609,605,585,595,598,634,610,612,597,612,607,618,596,616,585,600,594,596,585,617,631,583,590,601,601,604,623,611,604,599,623,605,605,597,623,598,590,608,607,610,589,602,589,566,565,583,591,584,588,580,571,579,571,581,577,585,575,574,578,583,588,568,576,601,586,579,574,589,576,585,569,569,589,594,580,592,585,563,575,573,567,684,668,689,683,642,677,683,666,680,645,662,667,675,663,679,660,668,691,649,669,668,668,671,682,646,671,677,685,668,646,657,668,660,680,707,653,671,676,649,658,587,576,572,589,590,591,597,573,579,600,614,576,597,580,592,599,565,584,596,587,600,592,585,585,580,578,594,580,586,570,585,581,578,586,576,579,579,577,577,588,584,600,575,579,551,559,570,569,565,572,555,538,571,552,550,568,561,571,559,549,547,602,566,548,557,576,554,585,576,595,589,552,556,581,554,553,569,582,572,561,586,580,571,589,571,570,565,663,644,613,655,631,655,653,627,658,642,643,633,646,658,632,637,646,647,643,650,646,659,661,660,662,637,656,648,652,653,664,651,652,633,632,647,638,655,638,644,622,605,605,603,595,606,603,587,604,603,593,600,580,588,601,600,590,597,575,597,604,585,584,593,583,590,606,599,594,581,605,616,605,573,601,604,597,592,580,611,587,631,567,565,574,550,564,561,556,541,566,558,556,539,545,552,563,551,566,558,579,563,536,553,547,570,554,562,553,555,550,561,540,544,575,547,553,559,542,556,561,559,560,527,621,573,570,574,583,591,624,581,568,607,587,566,529,613,580,609,561,557,596,564,617,585,565,566,555,577,615,600,586,605,574,567,578,582,564,593,591,577,584,543,575,581,588,580,579,573,571,592,569,568,594,590,589,577,582,586,585,586,582,574,583,567,586,583,570,566,575,581,590,593,578,592,587,581,582,582,588,595,570,575,590,581,572,581,578,581,594,576,539,570,550,557,551,546,558,543,557,560,556,552,565,562,553,554,557,557,553,555,544,555,555,541,548,541,566,558,550,552,556,559,551,565,550,555,551,569,573,561,556,560,582,584,617,619,627,589,627,606,610,574,567,585,557,619,613,605,637,608,598,616,607,597,605,577,603,628,638,578,635,612,599,626,596,627,618,620,583,617,582,598,596,597,612,580,677,580,579,571,571,565,574,586,579,571,574,571,586,558,588,564,572,570,588,574,591,575,570,572,580,567,578,585,566,573,559,566,539,574,560,595,587,609,570,578,579,565,602,606,622,614,593,592,573,595,611,566,577,574,618,572,634,557,604,590,614,643,561,605,634,624,614,614,603,584,628,603,618,573,600,610,600,580,583,581,595,574,630,619,614,567,576,625,686,702,731,716,689,703,705,716,679,716,688,696,718,714,698,691,707,676,716,718,685,700,703,712,709,740,725,691,689,720,680,675,684,704,692,692,669,724,693,700,709,716,684,721,705,713,597,617,623,620,637,647,614,618,621,623,639,614,628,622,599,627,606,609,644,609,606,646,634,635,591,632,629,613,604,615,633,618,627,630,630,633,611,657,614,572,632,590,674,627,644,576,588,637,617,576,633,629,557,642,634,587,624,612,607,618,627,671,626,688,634,648,592,600,612,611,658,634,615,601,652,580,557,670,648,642,575,634,621,602,604,676,594,599,594,561,594,581,615,600,603,601,602,587,588,601,588,579,615,588,601,572,617,592,584,582,614,600,579,584,585,585,586,580,582,592,579,586,586,591,584,604,531,534,590,581,636,624,640,642,573,600,622,593,638,608,579,617,620,511,574,595,610,639,633,641,650,632,658,661,566,552,623,541,580,593,581,606,685,583,552,625,622,644,658,716,682,704,704,708,702,678,688,692,724,706,730,709,675,706,673,718,707,710,707,709,703,718,690,726,703,687,706,714,701,689,723,723,702,704,706,706,726,692,698,716,708,694,695,708,703,692,700,729,678,688,657,721,706,653,709,758,695,719,691,718,701,646,655,686,725,718,695,713,703,706,696,721,691,657,722,626,722,705,715,706,703,709,677,680,664,704,705,741,670,715,722,659,653,668,670,619,645,642,679,662,647,646,665,675,663,655,665,656,654,645,646,650,662,656,662,657,645,666,648,643,623,666,646,657,637,647,672,685,637,660,651,640,659,635,648,698,582,577,569,569,585,586,608,591,592,594,583,575,592,604,575,605,590,587,580,609,587,570,577,580,608,577,593,581,595,569,587,590,566,588,579,577,600,592,585,597,582,580,601,546,534,549,550,537,548,541,542,533,553,533,527,552,542,546,547,546,532,542,547,561,538,533,551,531,547,543,540,540,527,529,542,538,542,544,543,533,533,541,538,529,549,539,547,538,532,541,543,543,552,540,551,538,534,551,553,524,545,546,541,554,548,537,554,548,554,537,552,549,528,549,550,559,547,554,559,543,546,527,548,544,528,558,562,572,539,561,511,525,526,531,530,519,522,532,526,531,523,533,519,533,528,515,523,522,527,515,540,537,542,533,533,523,520,530,524,529,536,523,523,539,520,523,522,527,538,520,524,532,523,537,535,512,532,505,690,693,691,718,698,683,697,676,701,715,711,711,696,696,689,694,683,673,690,697,684,696,706,688,706,697,682,720,721,721,723,704,700,707,713,683,706,693,688,718,678,723,695,642,657,673,638,667,654,649,660,645,644,642,654,655,661,651,656,656,668,656,679,653,658,665,625,682,648,681,648,641,675,673,655,677,670,638,653,653,660,638,651,651,649,663,661,649,653,666,590,577,620,610,592,602,607,603,618,604,613,611,611,628,622,608,628,600,609,631,612,591,618,620,600,625,611,587,620,614,602,591,608,585,617,601,616,582,606,600,594,649,638,638,592,632,609,613,629,647,647,603,628,641,619,610,650,651,621,599,620,650,628,635,641,600,630,595,627,579,598,652,574,623,621,607,611,681,695,627,631,608,582,648,568,624,597,592,609,608,590,618,606,631,616,625,603,609,605,603,602,587,601,614,591,590,612,595,624,618,599,592,606,600,602,589,604,593,625,607,583,569,569,582,567,570,565,544,577,550,562,570,559,570,562,565,558,580,573,573,572,565,582,566,573,571,572,567,569,582,574,568,567,553,564,561,581,575,566,562,566,559,585,546,566,562,563,582,561,542,569,572,560,553,551,549,548,566,559,545,552,563,539,542,543,562,567,572,546,550,549,557,551,546,548,555,554,570,560,555,571,552,570,559,566,551,567,552,555,555,546,542,560,539,552,554,545,544,555,554,563,555,538,554,549,552,567,558,556,537,553,543,554,553,543,542,557,549,546,545,543,544,546,539,551,557,658,584,680,629,596,595,623,647,629,644,580,594,628,608,597,640,575,650,601,626,604,608,641,647,610,599,577,666,664,614,587,613,596,656,634,593,640,617,632,630,605,605,580,603,764,726,739,737,716,741,739,714,767,727,755,723,770,742,743,710,714,704,697,731,720,772,733,725,755,710,698,718,718,703,767,735,745,733,719,734,730,752,746,773,799,721,724,732,714,755,717,737,729,730,708,745,746,728,748,722,722,755,728,742,710,703,736,737,707,729,734,733,717,709,733,734,733,737,754,724,726,714,713,739,750,654,670,665,678,661,654,693,654,652,674,652,694,667,664,660,662,674,685,670,674,663,673,638,681,657,675,675,664,662,691,652,665,671,697,668,643,692,668,678,640,673,672,676,650,653,681,604,594,570,573,585,555,600,568,590,570,575,598,580,589,576,569,601,579,588,576,583,575,599,579,576,580,587,577,585,593,580,567,587,568,594,593,584,596,587,576,587,587,559,666,663,680,679,667,690,690,680,664,668,681,679,674,689,646,694,643,659,671,674,664,660,680,673,682,673,676,680,664,679,695,671,652,681,670,668,691,691,688,672,683,659,682,664,693,680,675,647,673,678,681,721,669,709,682,657,691,678,657,696,720,655,687,686,667,661,682,636,672,681,705,671,667,660,688,632,665,673,702,659,657,660,680,683,658,668,664,710,649,665,666,701,681,669,579,587,589,559,614,531,554,553,589,606,579,595,607,586,618,567,581,580,561,580,590,584,621,564,560,583,607,596,589,576,581,571,570,592,538,559,602,578,603,588,575,547,571,546,556,570,571,565,551,577,551,538,533,558,580,554,536,556,554,527,561,548,541,549,582,546,541,558,556,551,541,558,557,558,556,571,531,564,541,561,562,560,696,637,660,680,643,674,625,676,681,656,675,694,699,685,679,655,665,675,676,670,691,667,666,684,671,687,708,680,684,637,670,657,664,641,647,675,720,665,688,622,631,624,625,648,634,616,629,616,622,636,588,623,626,608,614,598,608,601,635,622,656,638,608,603,597,615,633,630,630,617,628,640,608,634,604,630,618,615,581,585,578,576,590,589,566,574,580,576,584,581,589,583,583,584,591,580,576,576,572,582,584,573,580,590,571,591,575,570,567,582,583,579,575,583,581,579,577,576,588,582,587,657,636,610,630,652,631,630,629,637,662,638,625,670,620,654,656,676,633,667,646,644,636,653,609,635,616,652,622,699,646,633,672,649,643,668,689,634,650,685,633,601,652,692,695,680,706,699,679,680,692,683,680,676,681,685,671,690,675,682,688,687,684,669,689,684,681,689,668,693,683,668,658,693,670,667,697,691,692,699,701,684,674,666,696,663,704,650,673,666,669,645,673,682,675,669,669,666,664,655,641,663,672,655,667,668,657,665,662,670,664,678,653,656,661,664,661,668,650,646,663,664,664,671,657,676,672,659,656,675,675,663,583,602,592,577,584,602,589,572,600,590,593,589,581,576,570,574,584,602,593,572,582,592,572,593,553,598,585,576,607,598,599,588,593,575,611,573,592,582,582,574,583,588,576,634,595,592,603,579,608,624,595,582,639,609,630,564,601,627,595,589,636,578,596,595,630,582,579,609,589,622,626,615,606,618,609,574,631,653,580,601,612,610,587,607,589,639,603,537,589,583,587,598,578,585,582,576,575,594,593,582,605,582,579,595,569,578,601,594,586,586,587,586,592,599,586,589,584,578,584,599,577,574,591,600,591,621,581,595,603,605,592,580,563,584,593,579,631,595,572,582,621,561,558,611,613,587,599,644,568,591,569,574,554,584,615,593,646,628,621,550,596,516,563,569,560,578,561,562,571,565,557,557,564,574,566,559,569,552,572,568,571,570,564,570,552,572,552,573,565,564,557,558,585,554,551,557,576,570,559,568,564,574,577,564,579,559,586,588,605,604,577,605,594,595,589,596,615,597,599,592,591,565,600,584,594,596,585,584,577,590,599,601,616,601,576,566,583,585,585,601,598,588,599,591,582,622,616,618,617,611,616,610,605,599,623,609,607,641,608,589,609,633,608,604,625,606,612,610,614,613,620,599,645,603,600,602,593,620,635,608,633,599,618,615,618,622,612,581,592,558,577,574,579,588,580,560,580,573,589,599,591,582,592,579,571,578,579,573,594,594,579,595,582,579,583,590,591,586,585,563,582,597,562,583,577,584,578,575,566,594,541,624,642,624,578,626,630,637,603,570,635,601,620,651,640,639,605,605,601,621,617,653,656,646,627,673,620,612,605,652,638,615,609,623,618,648,619,611,637,623,619,563,538,689,705,679,680,696,686,672,696,665,678,699,680,659,678,685,686,707,680,700,701,721,691,676,701,705,691,667,670,683,692,711,671,687,685,675,688,685,691,678,705,699,683,719,688,678,696,658,668,679,664,671,694,660,674,683,674,653,687,680,659,664,690,682,674,665,671,668,678,670,691,685,677,657,683,668,666,665,678,667,678,708,691,664,668,686,673,698,682,684,657,684,674,685,575,600,569,562,573,569,588,571,577,599,569,583,576,568,596,560,586,566,595,581,563,589,583,580,586,590,598,575,584,586,582,573,577,583,575,557,579,571,588,577,610,590,561,588,578,602,577,653,634,647,653,635,606,644,603,626,646,669,630,631,665,638,636,616,655,637,649,643,668,615,629,615,658,611,638,636,628,655,619,638,659,619,651,632,642,636,639,635,633,578,602,600,607,595,579,594,568,602,591,588,589,594,593,603,596,584,605,563,595,598,572,577,593,588,592,587,594,586,590,598,586,613,586,593,613,592,594,583,599,588,601,586,572,565,562,568,553,560,561,577,580,565,563,554,570,546,563,563,571,571,575,571,563,562,559,568,567,567,567,561,567,556,553,565,552,559,569,582,559,563,576,575,560,557,575,568,556,560,554,551,560,566,553,558,557,560,557,573,552,558,558,558,551,551,565,556,556,546,539,555,551,572,552,561,552,568,549,561,567,568,550,567,558,570,564,566,555,571,564,550,553,565,553,552,549,549,546,551,546,548,540,540,567,552,551,545,560,544,561,547,549,541,559,558,560,543,550,557,555,565,553,544,557,563,572,550,551,554,735,717,720,744,755,736,763,709,738,679,729,731,675,747,726,743,707,705,733,732,719,737,757,786,714,706,755,731,769,756,717,717,703,744,689,762,741,712,714,707,724,692,687,770,786,724,728,712,718,719,732,732,727,735,729,726,694,716,724,726,690,704,727,702,700,727,718,762,751,734,711,744,743,724,712,718,731,723,731,744,723,714,700,746,707,734,732,705,717,710,774,597,596,613,596,562,621,565,631,602,606,597,573,606,589,639,594,613,610,584,605,599,608,563,611,600,636,600,604,633,602,610,638,554,603,580,568,623,589,591,621,678,542,574,585,575,589,590,569,573,575,577,563,558,540,554,567,566,553,553,549,555,565,563,572,572,574,534,576,563,560,580,569,570,576,572,569,563,570,552,535,537,525,530,531,542,547,536,525,531,530,547,531,540,539,525,549,539,534,534,535,543,542,521,534,530,535,533,538,533,539,524,537,530,540,543,533,545,531,544,527,537,544,536,531,537,676,645,635,622,659,642,631,623,612,641,631,643,649,634,653,661,629,671,631,640,645,653,665,656,663,650,658,640,661,646,656,654,651,663,651,659,672,653,643,648,670,636,679,581,577,594,597,597,597,587,589,571,574,595,583,596,601,589,590,598,588,593,572,585,589,589,575,583,588,600,583,591,604,582,584,608,577,589,593,588,580,578,552,549,543,557,553,563,569,548,559,558,545,560,553,558,553,543,553,556,540,566,565,566,556,553,559,547,551,549,562,546,553,557,553,558,554,547,557,558,555,545,559,560,584,667,663,687,656,648,628,600,644,665,657,593,599,658,652,625,633,621,610,692,631,622,598,654,674,658,620,647,666,625,614,601,618,621,610,644,669,618,658,645,626,635,582,559,586,581,561,572,551,576,566,566,559,577,577,562,571,577,561,578,573,559,576,553,589,578,571,572,570,577,560,576,554,566,583,563,572,578,572,587,667,655,601,573,666,626,636,628,647,595,633,623,617,638,593,607,608,670,640,635,581,656,603,584,564,630,673,650,632,615,634,598,665,595,650,634,657,632,641,666,628,619,612,603,603,622,609,609,600,638,629,615,610,605,605,598,607,617,590,610,606,600,608,623,626,604,605,601,637,587,623,590,594,596,608,594,592,632,613,603,616,586,628,609,609,607,611,578,562,559,578,575,563,560,586,561,594,573,572,567,577,589,586,568,572,574,567,591,578,579,572,571,573,591,602,583,566,576,575,575,563,571,575,582,564,571,579,573,575,575,574,602,671,635,658,637,616,646,629,636,668,658,640,653,621,620,638,666,601,638,594,617,657,666,633,627,662,669,656,644,650,607,636,649,607,619,652,633,650,640,645,656,621,672,669,687,646,667,658,654,649,677,663,659,672,673,652,679,667,671,683,664,665,672,680,669,661,669,666,683,665,666,692,660,688,674,677,680,681,643,666,670,665,665,670,677,593,579,580,583,593,572,595,590,587,574,567,599,578,597,572,571,581,596,601,596,588,606,598,591,584,582,566,587,579,583,579,579,575,587,567,591,588,584,586,584,622,604,576,697,704,687,687,685,696,697,692,703,710,685,692,688,666,689,687,701,669,693,708,695,702,713,704,689,690,690,676,694,684,705,688,684,719,692,683,702,683,710,679,688,709,697,710,687,676,685,693,678,741,657,659,670,688,651,667,637,659,654,675,645,661,668,657,648,676,652,630,652,662,643,648,662,663,672,658,661,650,651,632,666,679,672,660,662,632,659,663,650,651,656,661,684,596,627,622,601,581,618,599,608,583,613,605,593,594,567,595,621,600,598,605,597,611,606,600,569,610,580,616,599,607,601,586,590,613,612,619,612,615,605,596,558,627,629,654,642,667,647,656,647,650,662,604,628,641,608,639,635,634,649,637,645,667,658,618,662,647,602,645,601,632,643,654,656,643,694,664,640,627,633,661,709,683,694,678,695,698,703,706,695,683,695,681,691,681,694,666,690,683,669,702,693,692,689,699,688,678,695,701,668,717,698,703,690,697,697,682,689,693,694,692,696,677,650,665,679,668,671,658,663,673,672,665,669,658,672,677,673,673,669,672,672,685,674,678,649,658,659,671,673,666,692,662,674,674,676,676,685,665,669,681,656,664,673,656,665,664,669,666,656,680,668,604,608,619,621,611,616,615,619,614,630,593,609,598,610,598,603,608,601,605,617,609,615,631,626,617,597,610,607,630,612,609,605,625,647,617,615,624,599,617,630,610,630,623,603,605,622,611,561,571,571,577,561,579,571,593,579,588,596,575,582,567,574,587,568,570,582,577,582,569,580,565,556,595,574,583,574,570,584,576,576,570,554,572,573,567,572,568,588,637,662,653,668,688,677,677,663,703,649,686,665,700,657,653,667,676,676,676,656,661,674,698,659,688,657,661,664,672,672,683,678,656,650,681,658,666,647,618,643,627,633,626,632,605,617,644,608,638,624,638,623,629,615,639,624,642,644,650,623,621,618,612,622,631,634,638,644,640,629,628,639,630,607,625,599,634,602,634,624,626,629,639,574,573,569,568,565,568,573,584,568,576,562,588,597,592,612,579,571,585,569,561,574,556,571,593,584,592,577,564,593,582,599,593,578,558,586,566,578,573,584,578,591,580,607,559,558,559,549,559,558,557,555,545,548,540,554,549,565,543,554,540,554,539,558,559,553,551,549,549,556,542,553,552,555,556,548,547,551,555,553,556,546,546,547,553,564,560,560,561,542,650,659,648,660,647,704,648,664,685,702,613,652,678,582,687,617,614,700,611,696,640,665,655,647,643,664,638,636,644,658,634,665,627,587,639,664,610,652,628,617,667,649,627,643,638,628,654,698,604,603,609,595,592,603,597,617,601,587,594,596,591,592,610,614,604,610,601,590,594,603,598,608,583,594,599,606,603,589,601,584,602,594,617,608,592,597,600,589,605,588,613,596,591,560,561,571,584,573,577,583,572,574,573,574,572,567,568,579,565,568,575,555,568,566,575,585,570,566,574,572,568,572,578,575,573,564,576,560,569,580,577,570,566,547,545,544,554,554,562,530,538,543,561,562,547,561,549,554,548,532,567,559,542,553,558,552,558,556,560,554,551,556,534,580,575,559,562,568,557,567,547,552,564,550,564,564,543,552,567,561,558,564,540,566,557,565,555,544,552,543,557,547,557,559,559,547,546,545,543,554,551,560,543,548,542,555,548,544,554,550,558,552,550,564,550,555,538,550,553,543,548,553,570,565,564,557,555,541,565,561,552,566,551,567,560,557,565,561,575,568,575,569,568,583,575,568,544,568,558,565,559,570,580,568,563,576,563,574,560,560,570,556,570,586,699,689,680,706,707,697,714,696,697,694,698,687,710,692,703,693,707,700,691,676,732,706,699,728,705,702,700,717,687,697,706,698,703,735,700,691,711,698,684,716,696,703,683,686,714,677,675,692,681,667,701,682,688,659,654,657,682,670,678,678,686,663,689,669,690,685,673,663,700,681,676,669,677,687,688,662,688,683,683,680,668,670,675,686,663,680,661,681,678,666,674,639,627,627,620,626,653,633,606,629,622,631,644,648,634,660,631,643,667,624,637,629,653,667,621,626,632,624,646,622,628,605,639,640,598,637,629,668,657,611,656,628,639,638,617,698,713,721,681,674,699,657,647,668,675,661,694,707,661,664,720,690,701,645,672,684,682,689,674,685,707,706,688,698,689,704,687,667,665,706,717,706,738,706,687,682,695,676,690,676,656,640,680,657,640,667,657,636,652,642,651,683,673,675,669,670,693,656,689,655,658,664,679,695,680,659,661,638,615,641,660,679,663,669,656,677,655,650,654,650,659,596,589,613,614,598,581,594,599,612,588,600,597,597,614,604,602,599,602,603,609,601,608,618,622,593,623,606,617,592,607,589,614,601,617,615,596,597,616,614,601,551,555,559,566,563,564,552,557,563,557,549,552,563,552,567,577,559,557,566,565,559,565,567,551,564,549,559,557,574,567,561,549,551,560,565,554,557,539,560,556,562,568,557,584,573,590,557,572,591,563,580,575,566,595,581,579,573,575,565,573,573,598,588,575,570,579,572,569,584,578,576,564,571,558,578,549,577,570,556,608,586,563,581,561,582,566,575,585,584,602,619,624,597,598,616,637,604,606,606,617,613,596,599,603,615,607,606,582,601,613,608,593,617,585,622,603,589,589,603,601,616,607,619,614,578,617,613,606,597,624,597,629,631,648,609,660,645,635,621,627,622,594,647,620,635,626,631,626,608,622,626,622,601,638,627,639,616,639,616,643,665,636,643,641,648,637,645,622,637,647,649,670,609,603,611,591,608,594,606,609,589,599,571,605,592,586,608,609,608,597,603,585,594,602,593,601,580,613,628,610,595,598,591,587,599,598,606,617,592,601,566,569,605,574,580,583,574,573,582,595,562,578,589,598,562,561,590,583,588,582,570,580,570,591,583,603,584,564,570,570,579,581,593,573,584,584,591,583,584,569,592,591,568,583,558,547,555,550,547,549,555,544,558,554,553,559,551,549,561,563,562,543,557,558,563,546,562,565,561,555,555,566,544,550,552,553,551,549,572,558,555,560,550,549,555,566,544,547,725,677,682,636,631,701,673,661,655,700,639,668,705,638,646,629,679,670,674,699,667,633,673,697,664,621,638,653,648,680,686,669,664,664,674,695,653,635,688,664,691,597,607,614,599,608,604,606,570,591,607,592,599,589,592,623,573,588,621,630,595,596,591,579,604,606,594,589,600,596,613,596,628,567,591,609,636,616,604,592,578,580,617,590,616,552,573,588,577,577,605,563,567,553,572,567,559,587,586,546,569,578,576,550,576,579,586,567,561,576,568,574,572,562,580,580,617,547,575,577,592,579,569,572,549,614,663,670,659,678,660,647,672,677,650,677,663,667,676,651,658,681,685,659,663,651,662,670,663,680,660,669,669,680,653,684,688,655,649,651,674,654,661,687,650,682,651,673,669,650,652,663,666,737,753,746,734,742,752,758,775,768,708,749,743,718,701,742,754,715,730,719,753,773,726,741,757,749,737,774,761,730,690,758,755,727,748,725,718,723,764,740,761,757,754,731,710,771,653,662,677,667,696,655,685,701,683,665,697,707,674,676,685,673,655,674,659,637,680,685,701,659,663,653,621,684,711,665,673,645,664,676,677,656,677,668,654,640,516,538,521,543,547,512,549,552,532,534,558,524,544,538,524,545,559,536,559,548,565,561,564,538,548,563,569,502,553,567,558,510,548,553,518,556,529,521,563,543,531,576,547,553,546,596,525,530,517,526,521,536,542,522,529,519,527,532,515,524,534,537,530,519,521,521,533,530,514,524,533,534,537,530,525,510,535,516,539,530,533,534,522,530,530,522,520,655,651,639,680,666,646,658,641,649,659,619,670,630,640,636,667,658,645,651,649,624,652,640,620,650,638,628,658,656,653,642,617,649,651,643,624,696,701,669,668,697,664,659,685,687,700,646,684,672,695,670,692,673,684,674,697,690,669,680,702,655,666,643,700,661,645,677,678,668,667,705,689,680,666,653,719,612,615,662,719,703,680,690,699,704,695,705,730,652,732,685,667,658,658,670,663,692,715,700,707,667,695,682,660,656,678,729,716,645,675,611,715,660,654,639,727,674,730,624,675,651,668,675,672,659,674,642,624,645,628,645,659,639,635,644,670,638,654,631,639,655,644,649,640,643,669,638,660,652,677,658,642,622,641,665,635,651,629,649,663,627,677,660,660,671,644,670,645,655,638,576,572,555,581,580,566,569,564,573,560,578,577,544,558,579,588,550,584,575,554,572,555,584,570,562,568,567,571,565,584,579,565,567,570,569,570,556,569,556,547,590,562,595,605,612,607,603,575,598,624,582,575,561,643,611,609,621,614,584,594,650,572,596,563,596,601,611,555,606,575,649,596,579,573,579,595,584,549,580,639,772,780,711,765,780,775,801,810,759,766,766,768,756,771,739,779,763,752,783,756,766,771,751,795,805,767,779,775,742,761,753,785,758,735,748,758,744,750,778,778,760,740,758,748,767,762,761,766,657,690,659,674,671,705,657,683,682,676,666,670,710,654,681,716,706,690,687,692,618,680,694,681,694,693,699,697,702,689,677,634,663,692,693,676,677,677,704,701,638,543,553,547,558,526,547,530,560,523,541,560,536,526,566,537,547,544,580,568,567,570,559,559,549,566,537,560,538,560,537,563,551,541,530,560,515,548,539,522,523,524,544,533,524,532,533,544,532,522,544,539,518,531,527,534,536,541,546,529,531,537,533,523,531,533,526,526,525,529,526,535,531,525,517,530,553,540,533,533,517,509,506,517,494,502,507,520,521,483,496,521,519,514,503,520,510,511,528,510,520,521,514,512,525,497,517,508,512,502,527,515,508,500,520,514,497,514,522,508,514,519,508,529,499,519,524,552,565,559,551,547,552,537,535,571,561,556,575,554,564,572,560,563,551,555,557,563,560,554,558,554,562,567,574,560,549,562,563,561,547,561,550,562,561,556,541,576,528,549,537,546,532,545,545,537,542,545,536,539,544,538,541,544,532,553,545,542,541,538,537,539,539,540,545,530,538,557,549,547,531,549,544,534,537,548,533,550,537,541,772,714,771,740,664,764,764,770,773,762,703,771,758,691,748,740,817,706,741,770,738,756,685,739,729,741,783,754,770,783,717,768,734,757,743,739,735,753,753,726,698,714,724,714,721,715,739,723,718,713,730,759,733,730,712,736,731,710,721,725,736,704,722,761,728,733,716,719,711,722,707,691,721,730,737,718,735,756,715,719,663,701,693,685,646,717,703,662,691,705,674,742,708,666,694,693,668,695,655,719,705,690,681,643,693,695,680,669,715,684,671,726,724,688,713,706,670,646,665,687,683,646,603,619,629,623,603,618,607,629,605,603,618,620,615,620,611,610,609,613,631,605,631,584,594,604,611,661,630,622,636,609,625,624,609,619,625,609,612,643,615,619,641,617,630,617,613,624,616,581,587,583,595,589,581,598,583,573,570,585,595,594,584,579,573,582,585,587,588,585,569,576,582,582,586,592,591,576,578,572,572,580,595,596,585,596,591,576,559,567,562,565,563,566,568,568,578,575,570,567,568,561,576,577,561,558,565,578,561,582,575,554,560,553,567,562,561,564,575,570,580,569,569,566,567,579,561,542,601,618,628,613,605,603,608,614,615,605,616,601,616,615,610,602,624,607,600,604,601,607,601,597,599,595,615,606,588,609,619,603,607,606,599,634,631,614,602,628,586,608,602,599,608,607,643,637,617,632,645,646,633,639,622,636,647,649,642,666,639,621,662,642,633,638,630,632,659,661,640,642,627,644,645,620,643,647,646,641,647,639,637,632,671,622,655,651,732,756,692,708,743,739,713,699,703,718,736,729,730,731,710,734,699,705,739,742,701,714,724,685,688,715,694,705,742,739,710,695,765,752,728,747,727,682,757,736,670,675,654,698,689,730,719,731,732,721,687,726,722,709,697,709,707,707,721,715,721,721,709,737,734,710,724,693,716,711,693,707,728,720,714,720,709,694,711,704,715,711,732,724,696,705,710,695,694,717,681,705,690,677,706,695,685,719,694,699,677,702,686,708,714,704,702,693,687,678,705,704,705,682,671,689,674,684,663,716,701,693,682,683,679,730,656,680,692,718,688,727,640,712,741,655,666,642,671,772,653,672,676,679,686,694,727,706,634,634,699,682,733,689,732,684,725,652,688,692,712,634,668,633,694,744,660,660,637,651,633,645,675,629,634,625,639,673,630,645,655,629,645,632,668,650,629,650,645,672,667,655,655,647,662,656,649,657,642,649,662,683,674,642,651,646,661,635,643,607,587,577,605,604,600,610,608,599,591,597,601,591,615,612,587,592,591,610,595,592,615,594,615,589,603,617,603,618,592,603,588,583,602,604,603,571,608,602,568,596,586,614,593,590,592,610,593,596,598,584,562,563,587,567,571,588,565,566,569,569,581,584,588,578,589,575,591,569,572,572,590,567,576,581,581,583,588,571,580,575,584,593,574,580,575,587,581,588,589,587,580,573,564,556,553,550,556,567,538,548,558,556,571,550,551,551,553,544,559,558,546,552,553,540,553,567,552,563,544,554,563,556,547,562,562,555,548,548,561,554,546,567,538,679,699,672,652,741,654,666,674,683,672,658,680,707,704,685,657,655,669,640,686,674,662,701,637,610,667,679,680,677,677,689,693,672,685,705,656,651,713,658,640,628,642,613,637,623,626,619,637,651,638,624,613,650,619,629,652,645,650,645,623,641,638,634,622,601,635,624,638,644,631,642,642,639,644,634,623,636,642,643,622,641,630,626,630,598,578,590,595,578,569,575,579,580,564,563,569,570,575,557,574,578,578,584,585,563,584,568,556,571,589,587,577,574,570,574,562,564,577,574,579,581,573,571,576,577,573,570,562,544,712,704,783,684,713,689,716,641,770,743,695,702,704,697,781,707,694,741,703,692,705,724,678,716,678,741,742,773,690,723,699,705,767,702,747,739,698,708,725,720,665,738,697,727,694,713,724,681,787,741,722,740,714,709,711,751,718,727,753,701,716,714,723,735,729,723,705,736,723,731,723,732,733,735,717,714,722,722,711,733,707,737,709,742,699,685,717,644,663,724,715,694,691,671,672,671,704,666,674,698,675,670,693,692,683,712,701,720,679,650,684,658,682,670,668,698,676,672,680,664,687,731,681,674,694,682,680,661,676,707,624,617,620,624,617,612,608,626,614,602,618,603,591,609,642,637,627,614,596,614,646,597,622,624,629,601,628,616,620,626,610,600,583,614,628,597,600,639,593,604,638,621,600,581,579,562,565,592,576,573,577,564,571,575,569,579,570,571,577,571,559,575,573,571,565,578,578,579,585,558,556,561,566,571,569,569,579,565,590,580,594,583,580,566,563,567,576,572,586,580,580,563,573,576,574,575,577,576,714,698,694,700,688,693,684,704,727,692,730,713,686,698,680,662,708,709,689,712,725,692,673,686,706,676,680,668,678,722,720,720,659,702,711,698,631,682,678,712,676,671,692,696,706,702,682,694,694,669,690,671,708,694,694,707,686,693,693,662,702,709,668,676,685,703,712,688,684,685,679,692,685,696,679,695,696,684,657,674,683,675,685,678,691,700,668,675,692,667,685,714,715,697,687,682,653,691,676,695,667,677,669,688,651,679,691,717,704,660,693,701,663,681,686,692,677,700,660,679,682,673,617,599,600,615,615,593,609,602,596,627,600,631,605,612,623,644,587,609,601,609,608,630,603,579,588,597,610,604,595,602,667,640,598,607,639,614,591,627,600,616,599,596,576,622,546,558,571,552,550,540,542,549,558,567,548,556,545,555,545,574,559,548,562,555,543,565,531,549,549,558,560,564,552,563,552,558,570,556,550,540,560,565,532,504,507,504,499,483,502,496,510,492,486,513,502,504,511,499,503,498,494,510,498,507,500,500,493,497,489,494,499,500,515,488,509,492,497,515,506,501,510,506,495,521,499,513,508,506,507,499,500,513,516,493,510,502,511,504,498,507,508,513,504,496,515,496,507,517,518,503,490,514,511,497,513,504,497,514,492,501,498,498,508,506,507,501,493,530,506,533,519,502,515,501,503,510,504,519,523,527,503,522,515,517,502,528,517,524,523,521,514,503,515,511,516,506,508,512,514,519,502,508,532,516,526,511,532,525,500,528,562,565,567,569,588,569,569,553,563,561,561,562,557,575,577,556,541,555,545,555,560,578,584,567,564,564,562,578,563,568,567,568,581,578,581,548,587,560,559,574,567,579,525,606,597,601,603,587,613,591,590,598,603,602,593,600,579,597,586,594,599,606,588,579,578,590,590,614,599,597,592,605,606,589,586,589,596,595,598,596,593,589,579,605,591,584,585,657,699,702,673,653,680,691,694,684,672,680,689,678,672,690,737,662,656,693,719,694,677,681,704,689,661,678,712,675,694,700,678,671,708,714,704,673,698,702,678,694,652,610,613,637,614,644,632,652,610,601,634,640,652,619,643,625,639,618,594,620,623,626,649,610,636,625,616,625,625,628,623,631,605,644,619,617,651,612,627,620,622,618,619,622,592,574,584,580,571,584,573,573,584,592,589,573,599,593,578,582,577,584,582,571,578,568,571,569,600,590,568,589,577,591,586,582,576,573,578,580,564,591,562,559,558,567,553,545,569,559,571,551,567,570,554,562,565,569,559,563,574,560,553,557,560,559,567,563,557,555,557,560,554,564,567,564,551,567,562,556,564,559,556,534,562,558,565,566,557,550,563,564,562,545,552,565,550,550,558,558,564,557,551,538,558,564,555,554,549,554,545,554,551,542,550,552,543,553,560,564,560,550,559,550,553,550,562,574,588,573,561,561,565,582,580,558,555,573,581,565,571,582,570,575,582,573,571,567,561,572,571,571,586,579,561,571,569,558,581,580,551,575,572,559,551,569,590,587,569,588,598,600,599,594,583,589,599,609,595,592,590,603,596,589,593,586,594,609,596,600,592,594,595,578,602,589,587,602,595,600,588,603,599,608,606,613,581,608,600,598,596,592,589,736,717,712,736,711,706,728,718,707,706,712,723,698,718,717,746,722,717,720,714,743,725,748,740,715,736,731,702,732,734,717,703,757,711,734,688,766,621,640,617,619,637,610,601,597,648,609,628,599,628,600,583,613,627,636,607,619,595,624,643,604,627,590,614,625,612,619,625,612,615,568,618,640,609,621,627,614,606,620,604,616,601,593,608,607,550,576,555,573,561,573,555,572,531,564,587,550,593,571,531,572,553,584,577,549,545,554,552,580,579,547,553,572,557,547,577,558,560,563,566,571,567,562,539,565,557,541,560,544,567,546,707,713,732,736,699,716,722,735,709,739,698,713,740,709,720,697,727,721,769,720,699,709,710,728,740,731,749,691,713,730,725,731,706,719,698,704,714,711,745,701,732,665,678,669,665,676,676,687,662,680,688,638,666,684,671,665,678,673,673,682,659,673,684,631,659,714,685,704,659,696,690,679,704,670,661,640,703,674,645,673,679,692,700,671,683,626,600,604,592,607,592,583,594,599,617,603,586,613,616,619,593,600,618,592,590,603,594,610,591,609,610,590,600,600,588,610,584,599,610,614,603,604,609,598,598,604,635,561,559,554,560,554,555,572,565,555,564,569,581,547,580,554,553,548,560,567,547,559,575,558,558,577,552,570,575,563,567,555,560,549,562,560,559,558,560,562,555,546,574,576,568,578,572,558,572,563,566,563,542,561,582,576,577,563,563,569,551,569,562,576,575,562,564,565,561,570,574,579,570,566,568,564,553,576,559,552,574,571,564,563,568,548,639,606,603,642,659,657,621,582,571,594,593,635,592,643,594,623,621,590,629,623,599,631,621,610,635,618,639,602,622,598,607,613,605,664,627,590,591,639,624,647,613,588,616,620,554,747,756,738,720,724,706,727,731,738,740,728,750,774,743,732,751,738,723,756,768,731,781,765,744,743,723,734,764,714,733,725,705,732,756,782,752,729,736,720,746,736,730,798,673,683,681,686,672,702,675,689,696,673,683,664,660,673,715,680,680,684,690,671,663,687,704,698,724,694,662,660,698,661,648,669,678,674,677,667,671,669,689,694,651,596,615,585,601,597,587,594,605,592,593,600,588,611,583,599,605,613,608,613,598,604,599,619,581,609,616,589,605,596,596,603,597,628,601,598,598,585,591,596,651,660,670,671,672,648,637,672,687,657,675,678,666,662,671,700,646,676,676,658,677,664,663,686,661,672,664,687,660,679,676,649,664,640,683,683,681,686,651,656,662,673,675,705,609,590,584,601,585,611,583,574,587,605,603,591,595,582,595,592,591,586,575,591,590,587,586,601,589,604,587,578,592,592,597,581,582,587,594,583,583,589,599,595,584,594,582,590,572,545,531,548,513,537,578,525,544,548,564,569,542,526,558,533,521,533,553,539,542,545,537,526,540,553,545,553,557,558,538,532,543,532,538,541,558,533,561,541,558,549,554,549,534,592,753,745,727,771,743,731,763,739,745,715,749,729,737,756,752,751,730,745,699,723,704,705,743,689,722,718,747,727,756,737,760,736,724,751,754,724,758,758,728,725,738,735,730,737,722,741,729,703,721,719,735,715,719,733,733,731,728,720,729,740,729,719,742,757,731,720,721,721,740,733,753,725,737,727,733,743,747,728,742,710,699,678,656,661,677,661,664,653,638,695,679,672,685,648,650,686,663,656,674,656,646,660,650,662,653,652,658,659,684,663,673,661,682,668,662,713,682,661,670,697,686,684,693,715,683,664,646,583,574,583,594,575,592,586,595,582,586,586,554,577,577,573,567,586,580,581,577,597,588,587,579,587,599,579,570,589,608,582,583,569,603,601,570,597,580,592,588,567,587,598,583,548,728,687,713,673,714,714,692,713,700,684,695,697,703,692,699,675,699,708,687,693,689,703,705,713,700,714,691,705,675,714,704,713,708,699,703,704,674,699,671,716,706,725,743,689,682,690,672,671,678,696,676,685,676,682,665,676,669,696,681,675,691,675,689,684,670,668,662,688,683,680,691,689,698,662,693,690,681,671,690,679,684,681,698,692,652,692,724,683,668,713,696,740,760,706,764,718,743,700,769,713,680,719,707,679,698,737,716,708,703,676,697,699,728,700,720,730,650,718,691,681,751,710,673,691,693,714,701,746,646,714,715,710,738,710,706,737,720,700,727,711,714,712,710,704,702,719,726,701,699,696,689,720,720,704,714,709,685,706,734,698,710,691,702,724,705,718,723,687,709,707,724,713,716,686,721,688,690,688,689,714,693,697,678,682,692,720,698,684,717,713,669,708,698,687,679,712,713,678,706,751,691,684,677,697,683,693,707,704,701,699,703,695,698,699,679,686,688,647,667,750,738,642,714,681,674,670,682,706,733,644,702,614,709,653,691,675,741,671,678,677,651,673,669,640,689,648,730,639,691,668,683,655,698,697,626,669,688,737,639,675,683,668,669,661,641,656,665,633,643,647,677,692,655,657,652,629,642,657,624,663,661,651,649,666,670,670,666,639,654,635,616,651,644,670,651,656,639,622,655,677,663,660,642,672,643,671,658,614,647,604,586,593,589,582,571,569,568,575,589,584,600,597,584,554,580,587,582,575,569,584,577,572,575,581,578,581,587,598,572,592,583,570,565,590,563,583,571,576,571,587,593,602,587,582,620,676,684,724,641,673,696,649,681,630,680,669,723,680,633,699,699,742,682,694,721,680,718,709,643,778,705,698,742,672,705,701,725,769,683,733,718,615,725,725,706,715,699,678,708,709,707,717,720,714,682,700,694,714,708,707,719,703,694,702,686,700,688,683,735,692,709,710,714,704,708,713,699,717,685,706,713,706,688,702,707,685,714,724,677,713,619,640,661,667,660,638,622,649,646,651,658,636,651,646,676,635,606,662,620,607,636,646,659,624,661,658,617,649,644,651,640,607,606,623,649,631,688,580,567,580,600,577,582,585,576,595,581,594,599,580,573,602,583,559,584,575,580,585,570,583,570,593,597,588,591,590,590,595,583,560,575,587,584,590,590,559,665,684,629,660,669,665,632,700,601,649,622,661,710,654,717,678,672,680,649,613,702,631,643,658,591,662,639,644,665,639,665,654,702,647,659,633,682,643,708,670,677,638,720,674,678,716,651,656,651,638,644,625,617,688,664,646,645,648,646,623,641,670,622,653,670,635,636,649,649,655,619,660,650,637,637,616,624,660,647,643,661,628,640,640,626,635,647,583,583,588,566,580,581,598,571,587,604,608,566,586,590,586,600,592,586,572,571,593,599,579,586,584,593,574,586,596,585,565,584,589,581,597,580,612,584,592,581,596,593,591,582,624,518,512,528,528,527,526,525,530,528,523,531,528,521,512,529,535,545,527,531,529,541,532,550,524,530,544,525,529,521,542,540,530,521,536,537,538,503,526,512,523,534,528,551,531,538,520,542,541,531,528,525,547,515,546,536,544,533,552,534,528,533,532,536,532,522,527,534,529,540,535,519,519,536,526,536,547,527,537,535,535,540,559,552,559,556,552,559,555,537,550,555,548,543,552,541,559,542,549,537,566,549,542,550,552,549,559,541,547,549,546,535,544,538,545,538,543,550,538,548,545,543,540,551,543,540,680,639,662,608,672,669,613,655,624,609,662,609,618,681,635,665,683,629,703,679,649,644,697,690,652,622,683,636,646,611,650,675,617,635,635,622,639,669,581,630,634,632,630,666,573,633,576,578,591,582,588,570,586,591,587,582,602,567,587,606,592,591,594,604,571,601,577,608,579,590,603,602,595,594,580,564,575,602,598,576,574,582,589,571,575,600,587,574,577,591,619,589,646,617,701,614,636,639,611,614,622,611,591,573,610,637,632,610,581,597,667,663,603,608,584,644,631,600,632,602,602,620,661,660,614,607,643,631,565,576,577,561,556,558,575,578,571,578,592,562,556,568,589,595,585,565,553,576,568,568,587,552,566,570,569,564,594,571,544,591,577,556,575,580,582,562,586,579,594,593,557,562,550,574,573,549,562,539,551,560,577,564,550,560,566,548,569,545,535,553,558,534,543,549,541,578,535,552,554,579,555,553,547,569,559,558,573,564,534,545,558,546,552,532,582,566,541,557,546,568,565,564,560,549,556,572,576,571,551,547,570,568,551,555,580,549,568,568,555,555,556,564,577,572,583,566,564,570,568,586,580,564,561,553,549,578,569,556,557,572,549,572,556,566,561,572,563,689,700,708,676,704,672,691,693,710,712,674,723,696,689,707,720,675,682,687,675,708,693,688,679,704,705,688,700,696,694,695,716,684,686,701,706,687,694,699,684,688,685,698,640,643,658,660,677,658,663,665,671,655,670,664,672,668,669,645,649,672,705,665,673,663,657,670,663,662,681,667,678,658,639,667,679,666,659,681,662,580,593,618,608,570,558,580,583,610,571,617,603,600,562,617,575,585,638,578,621,632,596,562,587,575,600,610,597,582,602,583,608,600,599,601,581,605,568,574,597,587,592,605,585,599,652,683,668,681,676,668,694,666,654,687,683,693,698,673,678,684,700,690,678,681,662,678,682,682,697,691,707,693,663,684,701,691,691,687,706,670,675,683,690,653,655,665,674,658,652,657,643,668,668,671,667,660,660,662,672,657,664,673,673,667,657,679,662,655,670,650,654,679,676,664,667,678,669,647,657,652,643,662,662,662,668,644,670,671,667,694,643,638,646,634,625,661,648,644,626,619,621,609,655,655,622,652,617,626,634,663,621,621,627,634,653,607,615,646,643,669,638,642,632,653,624,648,657,667,610,650,631,632,661,660,631,649,656,651,627,629,621,612,694,740,717,715,704,733,716,730,745,765,711,743,765,701,733,737,695,718,718,733,734,752,731,745,740,698,736,755,742,726,733,671,713,759,722,761,719,728,734,727,775,719,704,695,687,712,696,732,688,722,728,699,725,747,735,696,762,738,707,740,712,737,694,734,699,705,680,751,705,707,748,698,701,748,749,744,691,697,738,711,752,718,702,723,659,644,646,652,635,632,657,663,677,641,646,654,658,652,646,658,644,656,642,627,651,684,649,653,648,630,638,628,677,655,641,652,664,635,678,670,657,621,645,640,688,625,662,634,682,654,604,665,647,603,633,632,610,598,613,638,618,648,631,630,663,638,600,683,602,635,665,625,624,654,618,602,634,607,657,638,624,667,578,672,614,604,654,638,610,625,613,657,615,611,677,669,674,648,683,676,666,673,661,682,673,667,668,665,674,674,650,658,676,653,662,666,669,650,661,672,677,667,678,671,667,670,694,683,655,667,667,663,663,685,657,641,572,576,550,581,597,591,589,556,569,573,582,601,571,570,554,572,579,593,580,580,586,548,566,578,580,570,559,583,574,572,552,567,588,569,566,558,588,592,583,618,567,569,567,565,546,574,574,575,556,595,564,570,565,577,583,550,566,587,559,572,574,575,569,571,568,561,563,560,560,580,571,580,574,585,572,571,577,588,595,571,557,556,568,573,570,565,558,561,572,568,553,570,563,559,558,559,556,557,557,551,560,565,577,561,566,560,558,559,559,561,556,564,559,558,575,562,542,576,557,561,557,551,567,564,540,573,573,556,569,575,563,587,577,577,581,567,563,578,570,571,576,565,558,583,565,580,560,569,576,574,556,581,573,569,574,573,566,571,591,574,580,569,585,557,574,576,561,604,542,547,556,538,550,540,559,532,557,534,563,557,558,544,559,562,539,553,554,550,550,553,556,554,546,544,554,547,554,547,552,558,533,571,550,550,542,550,553,544,543,553,530,727,762,721,740,704,733,712,702,729,750,730,745,753,743,699,716,779,718,740,723,727,738,736,744,708,727,732,756,727,749,740,721,723,707,717,724,709,734,748,716,684,755,707,704,698,706,708,703,735,710,714,690,707,690,691,734,692,708,716,717,691,691,674,692,686,684,701,702,741,708,683,700,699,719,730,707,703,700,697,694,698,703,667,711,712,715,662,694,697,696,709,693,710,671,670,693,736,665,716,711,694,685,660,700,665,695,672,661,709,686,696,676,711,659,649,715,671,698,687,666,680,734,694,683,658,745,580,595,602,587,598,630,586,603,617,599,616,576,598,623,617,591,594,571,595,597,603,608,589,621,592,575,574,644,592,575,613,590,592,608,585,629,602,603,601,566,579,537,569,597,641,585,629,602,618,617,615,636,543,539,604,605,611,554,573,567,628,597,626,654,561,585,603,563,599,616,572,532,588,620,591,624,592,613,585,597,572,588,535,634,565,545,553,556,559,542,543,544,558,563,569,552,531,570,546,552,571,567,531,541,555,536,567,553,570,544,552,544,548,555,548,560,556,540,542,540,551,556,546,551,516,542,567,565,547,537,544,557,556,518,567,542,572,558,553,539,559,553,560,553,550,541,542,550,559,569,560,539,544,548,558,554,563,550,556,551,569,559,542,547,543,565,572,575,557,519,553,543,540,558,545,537,553,548,571,548,539,554,561,549,561,552,544,534,551,551,569,546,549,546,552,554,544,552,564,547,562,548,547,551,544,538,535,548,550,551,547,550,563,527,694,717,705,749,798,775,723,724,771,775,718,716,695,761,768,770,745,771,746,749,735,786,782,727,701,749,767,748,784,722,664,717,703,772,706,750,728,743,785,715,734,750,692,732,766,761,718,643,715,739,752,748,712,746,731,730,699,734,719,731,722,726,723,737,728,730,726,717,711,721,677,715,724,698,688,712,726,701,723,707,726,722,734,723,718,709,742,735,716,719,689,677,683,690,711,704,693,684,705,712,727,684,724,681,708,669,705,688,691,718,670,703,672,672,719,718,710,705,707,731,707,713,708,708,685,676,718,707,682,652,642,659,647,639,661,673,648,653,614,646,634,635,681,646,666,638,631,639,651,643,636,612,640,610,633,629,652,638,645,636,646,657,636,628,641,676,639,655,655,637,671,641,686,587,601,580,593,599,600,610,594,595,601,595,595,591,604,597,590,577,620,591,605,592,593,606,606,599,608,601,598,594,597,603,598,603,616,610,607,599,589,603,604,595,610,599,594,594,596,587,603,562,550,553,559,571,559,558,553,559,565,546,555,546,562,558,562,548,544,556,564,555,556,550,558,563,551,561,564,558,549,548,564,550,571,554,558,556,562,553,547,547,575,552,565,560,576,618,708,692,672,676,677,698,682,668,653,682,672,679,710,660,690,655,678,676,672,666,695,693,664,669,697,675,697,679,666,703,639,630,680,638,652,659,682,659,657,613,617,616,622,611,616,625,629,607,621,614,638,600,607,626,624,617,618,631,617,615,600,625,616,623,626,611,625,616,618,618,616,614,616,621,605,625,603,625,598,611,638,657,677,612,664,640,628,605,645,577,555,617,589,640,574,586,570,568,577,594,591,672,599,614,608,590,616,615,550,643,608,643,591,607,623,592,622,620,572,601,614,609,624,714,707,705,702,699,714,703,707,710,690,710,696,679,722,705,710,681,694,707,694,709,721,716,694,693,699,686,699,676,707,714,713,692,692,695,717,722,695,708,692,699,746,629,639,620,593,643,656,639,640,589,592,663,629,652,647,597,668,672,610,645,681,631,635,659,600,614,700,622,639,611,631,600,565,669,611,650,668,576,624,618,625,654,645,629,654,628,633,596,658,601,589,607,620,600,627,594,634,591,623,586,612,622,611,595,604,615,624,608,628,596,596,615,607,586,606,615,613,611,629,600,602,620,626,596,605,601,596,596,613,591,601,601,577,561,580,591,581,596,579,582,580,567,584,581,582,587,593,584,572,583,564,578,589,577,577,573,584,580,573,588,579,595,580,576,572,583,577,581,586,579,581,580,596,561,548,549,552,560,573,563,548,557,544,548,550,543,539,557,549,551,569,552,557,548,549,552,553,546,542,552,563,539,553,537,561,558,554,556,549,557,543,550,555,587,581,586,601,612,596,586,602,610,604,591,594,591,576,605,592,584,582,598,584,594,583,605,582,595,576,583,599,584,581,593,587,603,579,589,604,608,605,587,585,592,601,571,564,710,683,677,694,710,702,707,682,704,692,664,706,664,680,711,691,687,699,687,691,686,696,695,664,677,694,694,687,679,681,691,716,666,674,687,692,697,728,685,675,668,666,706,694,697,632,618,620,591,612,627,611,626,603,605,604,592,623,580,615,601,573,607,580,614,590,605,625,638,598,591,615,588,598,596,625,603,585,617,628,605,671,685,586,659,651,702,685,668,703,631,654,612,660,656,634,619,623,679,645,623,621,661,660,634,648,605,628,670,701,620,673,654,599,655,679,623,655,611,605,658,667,651,671,646,644,662,647,684,651,659,645,648,674,664,649,655,661,646,668,666,653,678,672,662,647,682,655,667,664,653,659,669,659,672,660,636,667,664,652,659,657,663,679,628,620,618,602,627,630,623,620,646,632,620,627,639,645,625,632,625,632,637,631,634,622,629,654,623,616,612,625,631,636,597,619,633,602,616,607,613,634,637,651,640,617,657,628,581,589,589,583,576,589,579,610,595,585,593,574,602,590,584,582,571,598,587,592,584,567,580,581,588,572,592,614,576,598,601,595,582,564,596,591,584,610,609,622,589,598,595,596,584,617,618,604,605,610,598,611,631,616,615,621,607,601,614,612,591,603,624,595,603,621,598,619,608,633,629,629,612,603,632,629,617,604,602,609,626,663,664,666,636,675,677,650,658,654,699,651,658,668,638,683,642,665,659,664,674,638,690,642,671,664,667,691,658,642,679,647,663,664,652,643,633,679,664,660,679,646,646,662,647,716,676,648,638,669,661,658,638,655,670,667,656,669,662,672,654,661,655,662,661,659,650,662,669,663,672,646,665,671,641,660,671,673,653,640,646,652,662,664,653,698,677,710,667,660,707,698,667,688,683,659,696,682,682,703,702,726,663,668,725,702,637,692,680,679,707,683,653,678,643,672,692,704,692,705,695,697,682,716,671,690,699,702,677,652,628,640,629,640,618,617,613,635,613,595,616,611,645,608,619,607,616,600,649,616,601,650,615,612,636,651,613,613,622,634,597,621,624,625,623,640,628,639,585,568,568,577,574,582,568,573,568,575,579,598,574,585,584,582,579,585,564,574,584,584,589,595,571,579,580,576,586,590,562,565,583,563,580,589,575,571,574,577,581,555,554,564,538,559,547,548,555,560,552,542,548,557,543,548,555,553,552,540,561,549,563,557,555,541,565,570,552,550,566,562,567,554,551,560,551,553,554,558,548,555,549,568,558,558,563,567,566,559,556,565,547,560,554,564,570,562,556,574,578,561,566,576,554,574,582,569,568,560,559,584,570,556,556,556,565,554,551,572,563,558,550,564,560,548,567,533,593,587,602,599,591,585,593,588,601,598,586,601,588,610,588,598,596,586,578,605,596,608,599,605,594,603,584,601,591,607,587,595,593,599,599,588,581,591,584,594,592,588,585,592,600,601,603,596,575,563,576,580,583,570,569,576,568,577,572,573,571,572,557,567,577,557,567,579,557,564,558,581,567,560,559,551,570,571,558,573,563,564,555,575,581,573,573,570,571,566,559,637,641,644,615,632,642,593,588,651,641,662,634,611,635,660,652,675,672,643,646,673,656,648,630,623,670,643,656,633,612,667,661,638,626,617,640,622,627,625,643,689,645,678,667,661,564,692,680,677,677,673,678,651,682,684,678,670,676,685,696,668,695,664,685,685,697,673,686,682,691,673,667,659,659,695,696,702,691,674,677,671,689,682,715,775,794,783,725,746,780,731,776,765,766,726,738,716,778,789,710,716,746,739,746,732,727,737,737,754,759,780,745,750,726,763,778,756,708,765,697,762,736,771,748,732,703,696,712,699,753,696,737,728,720,717,702,701,738,721,713,702,727,701,707,747,724,693,724,711,744,719,701,708,711,743,718,725,716,689,749,625,634,639,638,645,642,650,616,635,648,656,653,616,653,661,643,656,667,624,647,660,643,634,661,619,617,619,633,651,624,663,654,652,668,626,632,646,667,660,627,736,734,735,735,706,724,667,754,762,735,693,724,731,723,694,755,717,735,692,738,731,665,737,673,753,749,761,687,679,722,715,712,682,759,705,682,745,752,676,736,731,751,710,680,738,765,611,695,708,716,722,705,703,711,711,693,705,708,703,680,700,691,693,716,706,722,715,694,726,712,715,707,697,682,700,721,717,733,693,719,689,691,723,679,711,675,761,656,670,649,663,666,674,660,683,661,660,690,687,680,672,665,670,654,652,670,663,694,678,643,661,647,688,652,636,679,682,643,693,661,674,644,649,641,663,699,658,688,660,645,658,641,643,651,655,642,667,655,638,639,647,640,634,653,651,655,664,652,636,631,656,646,643,652,645,656,643,645,650,665,644,632,640,621,663,647,645,654,634,636,645,632,646,644,648,645,644,648,654,642,635,611,631,612,616,601,608,609,607,623,613,625,614,594,621,628,615,606,592,628,615,606,613,616,616,595,604,612,615,618,600,610,615,605,636,598,633,590,618,597,623,606,631,649,583,586,583,586,575,575,563,573,601,581,596,559,579,588,583,582,577,559,582,573,581,589,561,566,579,575,571,591,566,583,584,576,577,599,579,576,583,582,580,567,556,573,565,588,589,585,600,555,549,552,551,538,562,555,546,554,559,533,546,547,543,552,550,540,538,541,551,543,554,548,552,543,522,536,552,538,524,539,551,550,546,554,545,551,535,560,545,549,574,603,602,613,610,649,595,618,620,619,638,613,649,612,633,609,604,603,643,626,620,600,637,610,594,644,660,620,624,630,603,670,624,585,566,600,685,623,605,540,636,566,562,600,598,593,601,583,602,595,597,574,590,592,599,601,582,596,588,582,573,585,582,602,584,590,590,592,574,584,601,583,599,587,580,562,582,592,594,603,583,582,592,601,594,582,590,584,558,636,675,669,634,624,593,673,567,600,698,683,607,595,618,660,627,640,637,615,572,622,626,648,652,628,636,634,696,642,632,563,680,623,689,687,587,583,679,593,682,579,596,577,594,585,582,590,582,583,572,571,583,598,591,572,588,586,596,575,588,568,582,592,586,586,595,583,579,567,587,595,605,589,573,575,562,594,579,571,598,575,564,580,581,583,608,678,674,638,615,725,648,686,678,670,649,648,680,743,718,634,696,701,650,642,660,698,693,672,657,744,655,712,700,676,708,648,674,635,643,685,669,704,702,651,552,675,665,669,683,668,693,664,661,677,662,669,659,683,677,675,686,671,652,672,640,674,654,643,674,689,655,664,675,680,679,684,660,669,662,666,647,681,673,682,678,678,690,677,665,669,636,688,695,721,676,644,623,675,693,715,656,702,676,665,667,682,700,668,658,669,676,702,666,665,684,699,701,711,649,668,670,675,654,654,634,655,651,703,661,655,649,674,653,675,672,709,626,613,620,609,606,612,647,628,611,614,605,598,593,616,605,601,623,604,631,625,626,636,617,623,593,627,628,629,628,625,612,613,636,614,617,636,608,614,608,620,599,662,582,570,586,574,578,574,565,571,571,585,573,575,583,569,567,589,583,583,568,590,587,583,585,573,572,582,577,575,569,579,587,590,574,570,585,569,566,566,570,580,573,569,623,654,648,661,644,624,650,657,650,655,595,655,616,609,661,625,608,652,635,649,667,651,698,657,637,630,667,655,617,660,617,647,640,650,638,618,678,684,686,681,670,669,668,687,675,672,673,677,667,684,675,670,650,667,658,660,673,670,674,681,678,660,700,678,675,688,685,666,673,678,702,655,682,674,661,680,681,672,686,728,691,688,739,726,723,729,687,711,712,701,710,727,748,681,723,733,712,726,717,716,688,742,705,716,717,692,707,746,739,699,716,677,727,740,762,709,722,674,719,744,737,725,665,634,646,674,664,673,675,654,633,626,689,631,643,648,657,663,652,642,640,653,667,640,668,668,659,645,681,643,633,632,658,647,662,642,635,675,646,608,666,652,669,625,626,595,602,611,606,612,590,612,607,589,602,617,616,605,600,606,598,603,609,594,618,606,617,613,624,607,618,615,608,606,609,605,597,603,630,609,584,598,576,570,576,538,578,565,555,577,578,564,554,556,561,553,566,558,568,567,576,556,555,552,563,559,565,558,574,558,575,565,567,570,572,565,567,554,577,561,554,570,558,563,565,562,553,612,614,621,622,601,593,612,610,602,600,619,614,613,612,630,608,604,613,607,618,603,607,626,606,607,615,599,596,594,595,613,625,611,624,620,610,618,618,598,617,608,635,601,620,634,649,641,629,661,645,637,658,624,651,640,635,647,660,652,629,630,640,632,651,628,647,655,642,639,654,658,638,635,633,629,625,647,680,649,660,640,640,631,667,653,661,655,660,634,605,736,760,786,712,750,751,701,726,770,732,733,743,759,741,787,727,750,739,731,726,735,764,770,770,750,670,765,737,739,778,748,688,732,712,743,711,719,806,714,718,718,709,722,713,731,679,715,720,720,723,701,719,704,736,726,729,717,697,700,706,715,708,735,668,721,711,713,737,696,736,729,693,715,694,681,692,709,702,754,747,729,717,648,644,652,631,682,636,642,650,617,639,655,652,640,661,634,655,651,653,660,619,631,631,654,661,614,659,646,639,641,639,635,630,632,635,635,626,661,651,656,656,617,564,682,642,671,595,648,676,609,674,637,596,610,601,585,596,648,648,645,600,620,598,692,687,643,595,627,640,531,647,628,631,651,625,585,669,650,599,618,632,604,652,559,600,574,595,578,593,578,554,576,584,570,580,588,577,571,558,560,578,579,596,564,587,584,588,590,579,592,578,572,564,601,582,583,561,556,581,599,550,559,574,562,586,588,565,609,617,646,566,651,639,631,598,641,630,688,592,629,650,577,624,594,680,644,660,601,654,609,647,616,659,625,637,615,603,628,671,584,643,666,608,619,603,639,529,584,593,578,559,570,605,573,578,587,577,567,571,605,563,572,569,556,574,570,577,578,600,570,571,587,584,590,598,592,571,599,564,562,579,563,577,585,578,576,550,586,542,579,548,574,563,556,581,579,602,562,568,567,554,564,567,557,592,564,578,564,565,563,571,566,590,575,577,581,569,571,554,588,538,595,581,586,563,563,595,586,573,560,566,561,530,669,666,681,675,667,666,651,662,652,659,662,646,687,663,654,664,656,683,655,655,647,684,658,663,663,680,665,648,656,661,659,662,681,646,668,643,671,662,762,752,715,774,773,747,764,761,761,798,764,786,735,771,715,732,761,722,755,730,742,751,759,790,757,741,740,737,750,754,787,763,715,755,755,742,716,739,749,759,773,721,748,735,746,749,765,688,707,743,708,687,734,712,664,712,792,681,707,730,722,718,723,698,727,681,736,730,736,701,751,730,669,712,711,711,725,718,703,737,732,735,699,723,724,671,686,643,653,691,676,689,629,659,655,672,688,672,683,624,644,656,671,671,656,640,654,661,692,663,671,670,669,677,681,649,679,650,671,684,650,674,663,665,649,668,643,679,616,595,593,600,596,605,617,607,585,591,601,611,592,586,596,598,619,597,616,613,593,600,605,581,603,595,608,598,596,592,619,579,585,583,609,592,603,614,597,615,593,581,584,587,579,587,584,574,587,589,582,574,583,594,588,591,560,566,574,588,581,586,585,585,555,565,584,587,578,591,567,577,597,567,585,582,573,591,586,579,574,587,581,571,583,562,572,608,609,637,610,629,619,646,650,626,646,620,612,612,587,619,653,629,603,600,644,616,600,635,631,620,627,616,632,637,586,616,603,602,636,610,591,628,589,624,575,786,791,792,789,781,721,745,794,806,789,779,796,767,758,757,800,803,800,756,773,771,789,747,781,791,769,762,730,754,762,810,774,781,776,782,790,782,786,805,750,788,771,791,783,764,775,759,786,840,712,723,730,717,731,755,701,724,732,704,739,734,717,735,745,734,723,737,706,772,719,738,729,737,720,712,727,694,753,688,717,715,720,734,727,722,710,709,757,688,718,695,674,681,670,681,706,676,686,676,706,660,651,675,682,659,667,672,697,675,670,665,669,664,672,670,681,663,652,675,689,683,658,703,706,681,672,667,703,670,674,695,684,670,639,660,636,636,643,659,672,644,648,660,651,647,643,648,657,650,655,642,640,652,660,642,655,623,653,657,664,637,647,647,653,666,668,643,647,652,657,654,680,729,728,710,779,748,742,783,790,729,736,724,762,724,751,766,716,721,736,764,732,727,730,725,716,740,773,741,747,753,715,736,724,768,750,741,774,716,734,711,647,683,677,657,703,635,667,661,686,674,691,665,670,673,668,696,676,687,656,650,693,692,638,673,642,679,667,647,660,628,655,637,667,694,659,676,598,673,681,684,655,654,639,531,528,557,526,537,547,560,529,558,566,582,526,554,517,564,534,559,571,556,546,563,572,583,527,550,544,568,531,558,574,585,536,545,529,575,525,534,577,563,537,524,547,532,523,525,535,519,530,518,526,529,539,517,537,532,531,512,537,531,526,520,534,535,528,528,523,517,518,513,534,530,530,528,523,535,531,523,536,524,524,525,528,636,636,667,638,647,648,668,640,623,650,651,627,634,632,656,635,668,647,652,638,632,646,655,650,624,643,631,650,656,630,643,648,642,638,656,638,641,638,645,617,644,636,613,570,563,554,568,574,545,564,565,547,562,574,557,554,587,582,555,557,562,574,554,542,559,558,568,565,574,542,575,555,559,542,564,575,592,545,563,569,583,540,580,565,552,552,560,552,572,553,566,600,537,563,540,563,569,525,572,562,553,550,568,569,562,562,549,540,550,542,582,571,551,562,552,543,558,536,575,545,551,559,571,533,561,556,579,539,563,558,564,564,570,555,560,560,564,553,543,536,555,559,565,556,549,557,558,551,562,553,552,561,540,569,575,573,557,554,555,561,547,555,566,549,550,567,565,569,564,550,562,553,562,559,577,593,578,574,599,588,589,577,588,598,598,578,613,596,600,581,582,575,589,587,561,605,589,589,599,582,610,592,609,597,587,585,590,586,600,568,587,583,587,588,583,603,557,594,599,614,616,608,585,603,604,598,618,603,593,611,604,595,604,592,624,610,636,595,589,597,581,591,593,616,618,584,597,610,604,576,628,604,611,579,624,613,623,598,582,560,557,550,596,581,540,572,555,566,562,571,567,569,568,565,554,570,578,569,568,570,554,591,549,577,548,568,545,580,567,562,566,576,558,546,582,581,569,597,614,602,578,569,591,592,592,584,588,585,609,594,592,621,581,577,590,578,584,583,576,606,590,603,577,614,581,600,593,598,585,593,597,579,596,605,615,600,607,605,579,600,602,596,570,598,601,583,586,593,595,600,614,621,631,599,624,625,608,632,628,623,640,618,609,613,607,630,633,647,615,609,631,590,632,606,634,627,599,622,627,629,599,622,639,625,628,662,738,731,728,669,697,710,681,698,706,721,696,725,713,705,649,686,733,687,714,686,722,738,714,670,699,699,700,712,704,708,693,682,695,710,711,697,704,738,721,675,741,680,667,681,687,722,753,634,624,619,602,631,623,609,615,586,597,602,593,609,617,623,598,604,637,606,628,595,625,648,606,599,632,617,625,626,599,606,618,626,595,605,610,643,610,635,617,634,613,616,615,633,567,598,597,590,556,590,594,593,594,595,589,582,573,587,564,574,583,593,537,599,606,614,589,607,580,580,575,593,578,605,596,587,584,559,594,602,575,579,577,561,602,525,659,663,664,666,671,682,678,660,666,637,659,674,672,663,682,671,684,679,664,677,665,674,665,659,671,671,646,654,669,682,661,645,654,663,656,695,669,674,677,665,662,663,665,658,659,648,780,716,736,720,745,732,736,744,789,758,779,725,808,712,775,741,784,747,754,680,721,741,750,762,729,746,717,740,731,731,754,723,757,769,791,731,729,734,720,773,732,698,766,701,747,709,719,736,717,702,677,724,732,752,727,703,757,701,704,696,734,684,737,708,728,716,693,715,721,708,730,710,732,738,757,678,697,724,733,716,742,675,730,716,711,757,702,722,706,692,674,641,671,634,653,631,656,633,664,661,635,659,634,636,660,668,644,631,674,667,672,687,672,672,623,622,633,646,641,635,652,630,649,625,645,646,657,662,627,608,577,568,567,570,551,567,575,569,585,594,566,567,574,574,593,568,568,567,560,567,566,574,573,572,575,578,577,573,579,556,553,567,573,562,554,559,573,582,580,576,568,560,564,568,559,637,666,684,660,694,692,655,686,712,666,652,709,631,682,671,672,635,682,645,689,657,688,658,620,653,597,674,663,655,650,648,688,670,714,698,679,684,711,695,668,693,612,705,705,707,685,714,686,722,702,700,687,717,701,708,703,730,700,712,704,691,716,701,693,689,725,685,723,687,717,706,700,711,704,725,725,700,702,668,703,697,691,682,698,694,724,707,729,684,692,713,708,704,683,690,694,699,705,707,708,665,680,719,711,709,686,716,714,688,691,690,724,708,696,692,722,706,699,702,704,693,704,662,692,701,740,693,682,671,746,680,679,687,678,691,675,635,718,691,672,697,686,676,643,723,675,690,666,685,679,707,700,617,662,703,682,708,678,762,624,679,706,661,696,706,706,682,669,661,642,650,648,651,663,688,637,659,650,649,648,629,661,648,650,659,668,658,648,663,670,639,659,649,644,658,654,648,679,647,651,653,676,653,648,656,669,628,641,689,643,669,652,665,659,674,679,660,673,662,647,623,628,688,691,653,701,655,673,655,671,684,658,705,671,692,695,680,677,692,689,691,657,700,671,666,670,646,731,612,600,607,592,619,573,617,597,614,632,607,613,604,609,618,598,600,600,618,614,612,608,617,596,592,595,628,616,618,630,613,627,600,610,604,604,595,642,601,611,596,598,597,647,653,579,596,616,618,650,652,561,619,631,627,582,615,590,585,595,644,626,614,595,633,583,624,605,579,603,556,642,597,572,566,640,640,606,633,614,544,548,589,588,632,582,582,623,646,645,643,662,685,641,669,676,659,647,642,697,634,663,640,672,663,678,679,677,662,650,667,676,642,634,661,691,672,650,650,668,694,674,642,683,695,661,639,695,620,555,568,585,620,577,599,579,573,577,587,600,574,592,558,570,589,574,560,594,558,604,563,582,584,570,594,603,576,602,596,594,588,564,577,592,566,592,598,597,593,561,599,636,586,588,553,648,571,579,565,587,586,582,571,562,582,572,562,587,563,588,578,575,588,610,577,579,589,560,553,572,570,558,580,586,563,557,575,575,578,578,561,584,554,579,566,580,571,577,585,573,616,594,620,626,592,616,589,599,610,603,603,582,610,587,588,593,627,603,594,611,622,611,586,593,616,594,615,607,605,641,588,606,613,617,594,597,618,624,606,599,590,626,589,604,609,589,568,578,563,568,576,590,558,581,576,552,580,586,566,565,553,559,567,584,582,572,583,591,571,555,583,562,578,575,574,568,562,551,568,592,548,575,588,564,567,574,588,573,571,556,567,578,607,682,655,688,655,661,659,660,678,656,687,660,670,663,683,687,635,660,666,660,689,668,663,661,664,651,662,671,661,664,670,673,674,661,641,664,668,676,631,674,678,677,672,669,673,660,656,702,643,649,664,677,627,655,682,637,682,654,655,664,653,642,679,672,693,673,656,686,667,672,691,655,651,659,673,678,660,667,632,643,648,662,651,662,638,721,710,693,715,694,732,679,687,667,675,709,699,699,693,688,686,696,703,706,681,691,705,699,712,684,707,711,687,701,705,690,712,698,679,686,729,715,689,712,697,700,716,662,706,732,707,670,681,709,660,666,708,703,703,698,775,678,710,723,759,671,719,659,686,718,704,725,677,744,669,700,715,709,679,743,701,759,666,682,707,710,688,719,714,691,696,701,668,654,790,739,705,711,679,735,737,705,748,706,723,722,702,715,735,698,727,728,736,704,719,738,742,718,696,727,728,701,702,746,711,735,724,718,669,715,754,704,732,734,748,708,676,724,707,730,725,705,693,737,746,717,725,702,741,692,727,716,735,710,732,727,759,748,695,730,720,709,730,700,699,732,696,739,743,743,708,723,672,688,661,698,707,732,729,702,746,749,722,709,691,691,704,678,695,672,685,659,656,697,672,651,657,657,667,657,691,678,685,686,656,670,666,685,693,663,678,674,666,668,689,663,678,674,664,658,654,677,677,661,671,686,689,684,658,680,650,636,654,636,656,636,656,650,662,650,668,657,645,663,644,659,644,629,646,659,655,633,635,648,655,633,642,639,647,644,631,640,635,656,631,640,636,640,632,648,637,617,582,595,595,616,605,594,596,592,594,595,581,599,600,586,591,595,605,588,585,590,591,565,590,585,601,582,613,602,607,575,586,590,601,599,577,587,589,591,668,621,687,644,696,653,730,660,669,686,655,673,676,665,649,677,625,648,685,660,682,630,671,677,684,725,661,624,684,699,668,707,694,662,637,645,695,668,631,704,600,637,608,602,599,604,592,609,643,628,604,620,598,607,614,633,615,625,624,613,603,606,639,626,629,595,611,611,647,599,606,625,599,620,619,615,608,635,604,637,615,612,628,636,622,590,649,609,569,638,672,621,618,650,624,676,642,641,679,670,700,743,685,740,704,645,658,642,643,686,712,643,633,642,647,633,659,643,703,636,684,708,731,681,688,582,592,579,593,610,650,641,691,669,639,697,730,737,717,711,698,733,719,724,702,761,693,718,714,716,712,726,706,727,730,715,723,712,732,733,683,696,717,715,715,722,696,702,722,731,695,670,734,732,700,705,720,706,702,702,691,707,699,666,669,684,697,703,719,683,686,691,719,720,711,711,690,698,696,688,719,735,715,695,709,727,724,717,690,698,667,705,656,682,726,720,678,672,693,683,703,652,636,611,631,640,610,634,659,623,647,632,669,639,659,600,598,648,626,624,625,649,659,610,640,633,634,684,630,631,618,640,644,679,647,638,626,617,624,668,636,635,626,639,669,684,634,658,557,650,522,591,563,689,643,612,575,625,622,637,605,624,630,659,583,635,605,633,612,643,680,612,643,645,611,640,671,638,709,592,649,610,585,649,602,624,656,602,628,661,618,629,700,693,697,711,685,681,697,684,685,679,690,700,697,657,696,706,709,688,707,730,711,700,717,706,736,693,717,696,685,672,721,711,718,682,724,704,673,689,718,688,726,687,681,702,678,656,668,657,676,660,655,653,696,671,677,671,636,692,669,661,673,675,680,687,646,707,660,654,663,683,664,688,689,657,675,681,655,695,673,688,683,664,668,666,650,667,663,670,650,636,638,657,639,659,650,657,644,645,644,633,638,663,654,653,646,673,637,647,655,637,665,647,661,653,632,624,645,644,646,662,636,647,649,630,647,667,635,653,659,658,638,748,737,710,772,759,745,753,765,764,740,754,742,755,767,756,764,762,771,744,718,715,727,758,722,727,760,707,739,739,741,792,721,728,704,765,749,695,736,737,672,659,677,691,673,627,661,676,710,687,665,670,671,680,678,652,649,678,652,692,679,658,703,666,697,643,658,680,666,661,645,691,664,699,648,663,669,692,711,679,692,676,667,639,745,622,611,635,673,608,668,609,639,660,622,589,678,683,636,627,628,636,656,673,677,642,643,667,673,645,627,634,640,670,686,653,660,637,666,651,612,604,645,616,635,650,650,667,658,668,636,597,541,545,545,565,557,546,565,563,565,551,556,557,558,564,555,556,564,562,567,558,538,550,553,543,541,553,558,547,553,554,536,555,546,558,549,549,559,563,571,551,556,583,568,581,579,565,553,572,562,575,581,573,541,572,576,573,564,550,576,573,569,539,551,560,574,578,561,546,572,565,571,578,586,586,569,560,557,557,561,538,610,627,601,608,613,591,612,595,580,611,608,612,597,621,615,617,615,608,608,624,605,613,601,595,616,607,621,603,618,620,602,613,616,599,620,610,616,612,598,622,599,606,609,647,616,604,629,622,634,605,625,616,622,602,600,642,609,625,625,656,638,629,614,635,622,613,640,629,604,610,609,611,602,625,628,608,636,612,614,608,645,636,634,637,623,625,626,635,615,566,574,589,573,574,560,577,576,592,569,592,581,581,571,579,566,604,567,594,586,591,557,571,593,569,565,581,591,567,576,565,586,558,578,571,537,538,547,552,535,543,535,548,530,538,555,526,537,536,532,550,537,534,543,546,546,539,539,544,535,548,534,559,550,541,536,538,535,549,535,539,550,533,529,525,560,521,524,532,519,535,515,518,541,516,512,542,528,519,530,528,526,513,528,516,514,523,518,528,529,526,541,520,513,526,527,522,525,525,520,528,518,522,540,620,596,605,597,660,640,619,627,619,624,617,579,602,672,616,611,621,621,637,641,598,610,620,615,612,587,608,622,633,632,582,610,593,630,633,576,653,606,609,570,650,603,634,623,660,663,604,589,612,604,603,599,605,605,610,588,601,600,584,611,598,602,601,596,609,595,603,601,610,609,600,599,601,594,618,609,603,601,608,610,592,621,594,610,593,602,600,600,623,580,577,585,590,580,588,591,582,565,593,561,578,577,586,579,575,589,583,576,575,573,577,574,583,596,577,593,579,581,559,581,574,572,585,583,577,577,574,570,567,576,583,549,551,553,569,555,563,556,546,554,561,572,546,555,555,549,553,535,551,564,560,556,552,535,581,559,553,554,553,558,551,563,552,558,556,552,557,556,557,548,548,522,586,604,572,579,591,587,549,581,584,568,581,587,579,587,577,575,560,593,586,574,576,582,590,601,600,583,591,579,576,562,587,575,581,590,585,581,584,568,596,570,584,570,593,589,607,555,556,550,541,560,549,549,541,554,544,549,540,537,566,547,548,541,557,557,543,548,551,554,554,553,550,546,553,551,559,551,559,556,563,538,556,544,556,549,548,553,560,554,563,527,577,600,617,593,584,598,605,602,590,596,628,585,593,605,597,615,612,603,613,616,592,601,613,595,564,592,592,586,615,604,595,588,600,578,598,589,600,615,595,596,595,607,600,610,598,565,597,623,618,605,609,629,596,643,626,620,620,592,633,617,636,611,605,610,609,629,618,606,610,589,604,613,611,618,627,585,602,616,621,605,622,595,610,597,586,615,613,585,596,612,594,596,591,620,607,616,610,609,604,589,629,604,609,614,605,609,598,619,599,625,618,602,597,599,589,615,585,603,611,595,610,616,573,587,601,604,597,583,596,580,618,577,582,571,573,564,569,577,570,576,572,574,590,581,590,574,577,571,572,588,600,588,582,558,579,585,562,583,589,571,579,593,565,576,578,574,576,558,579,580,583,590,567,573,583,575,579,569,586,714,664,672,680,665,682,675,661,672,666,679,659,666,646,660,653,655,661,661,702,669,693,686,671,693,666,639,698,662,677,713,693,661,647,641,657,673,677,670,680,662,670,685,659,684,719,660,662,681,679,667,654,652,710,706,653,644,670,647,676,688,660,683,636,699,681,685,652,688,707,669,652,628,658,709,685,693,675,659,678,684,660,671,677,624,685,659,714,618,609,613,619,636,614,617,608,609,626,620,623,648,608,620,621,624,633,607,623,608,653,623,630,588,633,631,598,613,611,607,626,631,630,603,613,642,615,610,624,554,578,579,569,594,574,592,577,586,549,564,598,583,576,577,579,532,580,606,567,593,553,579,575,561,560,592,569,585,575,553,557,572,570,571,567,598,587,610,718,733,733,715,700,738,698,759,733,710,734,705,695,737,726,711,705,730,701,747,727,713,760,728,747,743,725,704,724,720,733,708,706,746,748,708,665,733,711,713,696,736,752,645,621,621,623,644,617,615,612,637,610,601,643,622,625,627,655,638,625,635,615,639,597,617,612,629,653,627,601,634,632,632,635,632,632,645,602,630,630,632,644,609,635,631,646,604,688,596,570,571,589,579,589,560,571,587,602,592,600,591,596,572,561,588,578,586,557,562,579,576,595,573,553,573,585,581,590,617,550,581,591,545,565,566,567,562,602,553,558,549,568,567,570,557,560,554,561,569,561,560,565,560,568,565,558,558,550,562,558,541,552,567,559,573,559,559,555,552,555,550,559,556,541,567,558,571,563,554,554,559,535,563,550,567,571,567,583,555,547,571,574,570,588,559,581,557,580,567,566,567,588,575,574,548,574,573,580,575,573,568,547,579,553,559,550,554,570,547,559,581,569,550,562,581,565,539,555,552,544,545,549,544,549,557,553,549,564,538,540,547,543,546,533,550,549,540,547,554,555,542,555,547,550,543,544,546,537,547,537,534,548,551,545,546,555,551,553,543,559,551,541,546,546,535,545,533,531,553,539,528,529,531,537,535,527,532,545,541,537,537,530,544,524,527,543,540,539,536,527,536,525,541,542,525,539,543,542,545,540,535,537,526,535,526,533,525,536,539,543,544,520,530,510,529,524,522,529,527,518,532,528,516,518,526,544,516,519,522,524,533,530,530,528,523,520,523,527,530,525,526,524,531,525,520,532,506,519,524,556,635,603,606,616,641,674,606,627,621,593,617,606,595,585,567,614,645,620,600,608,649,617,628,572,628,620,652,622,634,589,637,656,619,597,611,649,611,631,589,668,643,620,640,603,552,785,740,766,770,738,778,795,766,725,744,773,789,754,749,731,722,730,777,769,779,752,754,782,721,775,754,747,762,767,724,792,780,777,734,739,788,768,765,765,760,750,778,784,733,670,685,694,703,669,708,671,669,688,701,666,665,685,692,665,672,721,676,679,669,663,668,689,745,719,670,695,687,696,670,682,694,715,681,673,676,683,672,700,681,711,685,704,701,618,627,638,649,622,638,627,614,638,615,644,598,606,672,620,647,600,602,642,648,628,629,589,617,638,616,610,631,638,588,608,634,622,610,625,639,626,622,619,606,625,626,601,633,587,565,570,567,558,551,554,582,556,552,567,572,576,573,564,546,579,570,556,558,585,549,565,568,563,575,563,585,563,564,570,563,563,566,571,574,561,553,580,563,553,570,561,563,565,546,588,655,676,661,679,664,681,682,683,676,647,626,651,659,659,665,665,678,679,671,656,682,673,691,689,675,680,667,706,680,686,673,660,633,634,672,662,705,706,685,706,711,682,643,702,646,695,685,665,701,577,556,563,585,609,573,582,571,613,596,573,605,596,585,582,590,588,577,594,584,598,577,575,581,622,580,589,581,569,584,605,569,596,571,569,558,618,627,561,547,556,558,552,548,567,578,573,561,551,552,569,579,573,557,561,584,573,565,571,564,560,568,568,556,557,570,554,574,576,561,544,574,561,561,572,560,560,545,574,559,616,635,622,642,629,623,620,623,646,603,621,633,618,635,610,617,632,610,628,620,655,645,610,607,603,609,610,629,617,600,633,614,624,643,633,644,595,635,616,615,648,619,717,720,678,661,677,661,675,679,673,667,695,674,699,678,675,665,677,690,670,647,666,703,681,677,702,716,666,665,687,667,658,663,697,713,680,727,660,670,625,689,718,660,697,690,637,612,616,588,613,592,626,623,624,612,618,627,599,620,640,610,611,616,635,628,628,618,622,636,606,635,649,618,636,663,619,616,614,626,633,653,630,616,634,633,621,609,627,618,623,634,570,581,588,589,579,573,573,586,576,585,581,565,587,581,580,573,572,573,598,580,573,580,575,587,579,577,571,586,580,574,583,587,563,574,586,565,575,584,572,570,576,549,646,649,646,662,631,649,661,635,642,601,640,658,682,662,659,614,642,609,631,651,677,635,643,633,655,627,663,663,630,666,621,685,632,691,665,655,643,621,634,647,656,600,616,630,674,645,650,669,685,684,692,684,677,681,692,691,669,682,684,675,667,684,657,700,681,688,662,692,687,675,667,692,678,688,677,706,659,682,686,677,667,677,678,685,692,677,701,677,697,694,674,671,680,694,671,695,671,709,672,685,669,706,686,697,672,651,682,669,687,680,694,685,681,678,687,704,683,673,682,689,685,681,695,683,693,693,687,674,695,682,684,683,693,697,694,694,683,680,698,698,639,659,644,665,688,663,651,684,649,662,656,676,666,664,655,664,640,633,666,678,665,649,666,668,662,671,671,675,657,670,660,646,670,676,656,677,652,666,665,666,673,669,758,761,748,720,714,768,753,721,708,733,736,753,757,754,746,711,723,734,730,759,705,756,741,750,723,738,750,729,723,734,781,746,732,723,763,737,705,767,724,698,742,754,817,738,714,737,729,745,798,726,741,681,736,754,788,758,740,732,743,721,744,751,695,722,712,768,733,764,771,697,743,699,751,735,726,727,738,716,739,791,700,753,717,747,705,713,730,757,739,780,745,744,717,729,761,718,757,729,749,755,746,749,728,728,725,757,740,741,721,746,746,726,744,729,730,732,719,712,757,748,734,743,720,747,739,731,740,723,753,711,722,707,748,738,715,738,719,718,737,695,683,734,713,744,708,729,668,730,695,716,715,764,705,696,703,723,676,703,698,714,696,748,699,699,740,703,716,708,731,731,715,720,708,745,648,679,659,667,684,669,686,647,649,694,650,646,674,693,689,671,679,690,674,680,690,656,693,671,683,675,659,681,660,711,678,669,667,649,691,686,683,703,645,647,651,645,634,655,633,637,640,653,653,644,653,672,647,634,649,653,657,648,651,640,658,651,639,640,669,668,659,644,672,633,644,663,652,646,657,638,640,660,654,652,639,647,638,652,656,649,670,682,737,748,674,696,667,727,692,752,724,680,694,713,683,676,681,684,685,713,706,692,703,679,674,680,696,744,681,669,679,728,712,752,708,733,769,677,739,696,692,769,658,676,641,659,680,661,630,647,689,629,647,625,657,669,642,661,676,660,665,658,647,641,656,663,672,645,641,691,639,656,665,665,616,631,616,578,598,595,607,606,596,600,596,596,592,602,610,603,584,599,578,593,597,623,600,600,605,594,598,607,595,606,598,617,601,592,591,594,579,591,590,605,597,600,590,630,612,651,592,625,612,585,607,656,616,606,648,602,597,623,606,621,595,640,584,598,602,618,575,598,610,594,645,626,615,598,604,628,614,605,614,646,633,623,594,615,625,603,626,613,612,625,607,624,622,642,608,617,612,612,625,619,606,607,613,632,603,619,612,635,600,614,607,606,625,596,616,614,619,612,616,590,633,613,629,615,611,614,607,592,584,583,582,567,576,562,572,581,572,579,571,582,579,581,591,581,585,562,578,581,584,582,585,578,584,569,571,563,578,571,581,564,586,574,569,577,569,575,548,663,628,704,687,693,637,631,672,660,649,668,665,647,634,669,669,666,705,719,681,694,695,678,691,674,675,672,655,645,645,634,674,649,685,645,658,675,685,682,677,638,648,696,708,721,714,704,709,715,732,724,715,697,728,722,719,719,734,715,695,706,716,701,692,704,726,716,714,696,711,723,704,705,729,707,722,712,727,716,705,718,712,693,725,733,609,587,572,609,581,614,593,554,622,600,584,583,580,564,615,608,590,585,612,565,612,566,608,549,586,575,615,584,595,591,618,578,615,601,607,600,595,616,621,579,584,578,615,552,564,533,562,574,546,536,558,553,565,553,571,564,535,563,553,563,529,553,562,563,565,534,572,552,561,540,558,572,540,579,538,568,563,558,545,549,562,560,567,575,557,584,700,683,696,693,687,697,664,664,668,669,667,688,685,682,657,711,665,700,686,679,675,660,681,689,639,673,715,653,713,684,666,682,666,671,690,690,606,627,625,626,616,641,617,625,619,615,630,606,627,616,639,603,607,633,628,620,648,623,647,615,627,604,630,622,641,643,625,619,618,624,622,651,609,618,636,635,600,632,607,630,662,581,566,557,572,560,574,598,574,589,585,563,577,577,568,571,563,573,577,584,576,576,571,569,560,572,564,569,581,568,577,571,567,573,563,575,576,569,562,584,565,571,595,757,741,714,722,725,732,747,753,743,730,724,715,693,707,702,702,710,749,714,705,713,689,729,741,710,747,736,742,708,739,698,699,703,715,710,720,709,727,710,736,698,762,755,724,746,755,796,714,690,730,712,699,693,711,693,694,724,688,705,676,697,701,704,679,690,699,719,707,712,716,681,684,710,721,698,705,701,723,722,685,727,692,712,696,684,717,687,752,685,606,651,610,615,611,595,624,610,620,631,597,578,627,613,593,596,605,615,608,597,605,642,631,603,624,626,606,601,593,594,587,646,623,598,632,626,616,623,671,535,559,546,549,542,539,552,540,549,552,549,541,545,553,548,535,549,537,533,540,542,550,531,553,552,552,541,534,525,534,550,534,566,529,539,551,549,556,554,555,553,555,557,559,561,569,558,562,561,550,559,568,562,548,561,560,556,559,539,555,551,556,546,548,554,557,558,566,568,555,554,564,559,548,556,566,552,551,545,560,622,665,630,626,616,655,635,644,621,629,659,626,652,667,615,640,671,628,672,632,675,642,630,627,631,634,635,653,623,661,658,648,684,651,595,633,689,704,696,690,701,715,715,687,705,683,685,717,705,678,703,711,709,709,691,692,690,684,712,710,704,708,695,700,715,696,697,700,698,682,684,708,706,717,703,690,679,687,702,702,683,683,735,641,678,682,684,652,673,664,662,666,664,658,676,680,663,665,655,668,678,654,670,671,678,678,670,664,660,690,681,655,662,662,660,669,672,666,674,668,687,683,664,692,657,681,683,681,638,583,594,613,581,611,574,605,589,585,581,574,577,593,587,570,579,577,578,581,586,597,591,588,588,586,595,575,580,568,611,571,592,594,578,589,581,577,575,587,574,588,579,587,567,612,586,580,555,562,643,630,574,602,601,573,655,617,595,578,629,602,553,576,582,579,622,613,615,619,647,586,571,598,671,594,578,598,572,599,598,587,598,565,576,571,607,577,624,585,542,582,594,558,557,559,611,599,589,613,793,757,742,779,747,789,774,749,769,741,776,777,730,746,746,765,736,740,762,764,765,752,749,744,761,742,737,775,765,755,781,769,724,779,756,789,767,767,760,791,753,696,743,779,730,715,751,719,723,747,743,753,733,763,768,749,729,765,765,768,777,782,721,762,730,770,763,744,749,732,750,761,740,718,752,744,778,722,758,764,756,722,812,692,690,718,677,702,711,711,697,688,707,678,687,712,692,716,691,706,718,708,695,680,741,726,705,680,713,713,758,689,700,731,681,689,747,715,687,725,714,767,657,637,629,668,611,648,666,636,644,634,621,653,642,655,615,637,629,629,648,657,653,630,639,633,643,634,613,611,615,614,633,615,598,647,628,629,639,655,648,745,692,668,603,650,606,678,610,655,743,651,640,619,632,627,598,615,641,591,721,625,644,685,635,741,597,643,695,627,575,654,614,646,665,611,598,651,570,714,698,701,714,693,694,706,704,685,704,740,717,685,699,705,725,697,708,704,704,726,662,691,690,688,698,707,708,690,687,704,706,717,699,702,699,698,727,690,715,675,666,706,723,691,685,726,650,691,633,685,692,677,682,677,668,670,692,666,666,671,657,676,682,670,664,683,677,642,673,667,687,656,687,672,674,700,660,666,671,675,679,655,634,611,651,651,665,634,637,647,635,643,650,644,642,640,653,635,646,638,620,647,629,641,640,643,642,650,645,642,660,647,641,656,658,633,645,658,649,672,627,652,625,651,662,637,631,606,657,667,658,660,665,665,669,650,644,658,670,672,650,647,662,676,664,677,656,652,668,649,671,653,655,661,657,642,652,653,653,658,675,659,659,653,648,659,653,658,627,704,748,711,717,717,713,728,699,709,708,723,707,713,723,721,716,725,700,746,728,731,732,706,685,695,698,720,719,697,720,725,750,684,727,729,734,740,702,747,689,684,708,693,696,706,705,696,709,709,713,714,705,710,708,710,696,695,686,703,702,684,704,700,715,701,692,700,697,705,707,703,709,689,699,704,700,712,704,683,702,703,699,694,695,685,698,701,708,721,677,666,717,721,679,674,737,670,689,656,671,696,708,698,653,731,664,624,707,718,690,674,686,699,662,667,755,679,613,684,645,688,672,675,660,687,760,681,712,708,689,704,612,708,673,678,712,705,715,663,686,673,666,689,706,653,706,682,700,667,670,708,705,701,679,677,704,680,697,682,713,682,703,684,740,682,722,712,713,721,706,679,706,666,678,699,694,687,659,721,667,641,608,604,615,599,586,603,615,609,592,614,584,587,610,613,616,608,609,618,622,603,652,647,615,606,574,613,626,621,603,582,614,620,631,610,612,620,644,624,622,609,625,648,571,556,550,560,569,555,540,560,541,557,572,554,582,547,577,549,570,539,561,559,540,573,548,544,552,546,574,564,557,561,581,558,572,579,567,534,562,587,554,544,555,535,569,558,535,565,586,721,743,734,712,730,729,708,704,769,713,723,750,760,747,773,744,718,722,707,722,722,708,772,741,736,729,720,754,721,746,741,752,785,715,740,735,727,729,727,768,742,750,725,720,732,723,729,709,738,737,728,720,731,748,743,728,736,724,726,730,721,735,739,726,747,747,736,749,725,735,729,747,720,740,739,733,749,734,760,698,702,656,679,687,709,668,694,684,717,695,697,688,704,669,694,696,684,689,683,707,695,699,676,717,699,672,679,746,696,711,693,689,657,706,698,705,695,734,683,703,645,725,679,659,674,711,689,629,691,658,691,677,678,698,730,658,721,695,672,689,710,696,687,707,729,682,704,612,663,691,668,693,709,671,719,692,684,659,663,722,707,653,681,703,669,644,677,721,655,687,669,668,672,678,683,674,638,660,671,658,646,649,661,654,665,653,673,665,653,676,630,724,660,661,667,677,669,660,661,664,696,671,664,667,661,662,656,668,700,682,642,659,638,653,646,646,650,633,644,633,681,645,656,647,664,632,645,654,630,642,670,651,644,644,653,648,650,649,645,655,652,659,653,645,652,658,642,654,653,655,641,655,664,597,613,589,590,613,612,587,585,580,599,580,581,603,583,601,573,589,572,599,597,578,590,575,585,598,577,590,579,600,599,595,576,557,564,574,610,596,586,615,609,581,590,595,543,544,542,553,543,552,536,554,539,552,548,547,537,545,544,550,548,539,525,540,536,531,534,546,550,521,531,540,535,549,541,543,551,538,537,538,525,534,551,545,558,536,547,540,550,525,551,570,566,553,554,544,566,558,551,554,557,577,575,556,543,558,550,550,546,549,557,539,555,555,568,573,557,558,557,529,578,562,570,548,565,552,554,566,567,570,557,550,585,737,715,731,734,744,723,732,697,694,784,741,743,732,708,740,725,719,737,747,712,716,730,742,712,743,724,749,710,734,745,713,713,729,738,756,738,766,715,712,732,759,719,703,685,717,739,720,709,715,692,756,722,721,691,719,727,716,749,739,759,735,737,722,734,717,712,713,678,752,726,753,754,749,761,703,746,731,691,732,732,736,699,718,713,713,703,754,753,708,746,724,742,725,750,716,722,735,745,733,759,754,728,678,747,746,774,757,730,754,727,752,733,724,742,721,743,722,772,753,746,711,739,752,787,767,743,752,818,706,745,734,723,711,715,720,714,743,743,735,713,712,733,699,740,750,772,750,692,713,719,751,730,757,685,753,730,708,751,734,705,716,729,767,712,712,739,727,749,739,724,719,732,752,797,719,701,713,686,721,686,733,691,696,721,707,739,722,682,755,669,692,695,746,681,734,709,713,715,769,695,740,728,726,720,702,712,694,749,730,707,700,731,712,678,717,700,688,721,694,662,719,742,730,742,736,738,714,699,719,727,723,726,733,734,718,720,717,717,740,747,707,724,712,727,735,725,727,722,733,725,737,700,715,714,713,721,727,752,627,627,623,625,662,614,623,617,636,591,626,609,623,609,627,635,631,646,607,631,627,595,602,595,644,642,612,615,619,620,632,654,632,610,602,594,641,622,630,638,650,577,570,591,562,563,579,566,558,569,566,588,555,570,572,564,567,577,565,562,584,579,597,587,568,565,581,552,579,570,565,594,567,576,579,557,581,582,571,589,592,577,566,589,564,529,616,652,646,625,632,640,637,635,628,636,635,642,621,624,637,648,651,630,645,646,626,636,648,636,636,633,636,631,645,630,638,614,642,629,650,635,641,633,631,640,630,645,690,657,667,645,671,648,668,658,656,655,645,675,654,675,672,658,669,640,651,653,657,651,658,655,661,661,661,664,655,655,659,653,671,661,659,669,644,661,657,661,679,641,676,653,658,633,697,695,678,660,724,682,646,677,686,691,695,676,707,688,690,685,662,657,708,696,723,686,654,696,718,675,671,688,664,676,659,722,685,693,686,670,681,711,703,680,702,698,655,670,675,639,581,598,603,578,582,586,586,594,615,594,602,607,588,566,572,574,593,609,612,582,555,569,594,568,604,605,578,609,583,570,556,583,563,574,563,580,593,584,560,586,540,556,554,579,566,565,557,562,572,560,565,568,560,561,546,564,550,567,560,555,566,552,552,540,562,564,582,567,567,569,575,541,567,568,566,566,569,545,550,572,560,569,555,564,562,567,573,560,583,543,556,549,628,617,587,614,618,603,617,589,607,620,614,604,630,610,610,602,598,608,595,620,627,604,617,623,600,571,590,591,630,594,605,600,600,621,595,618,601,612,589,583,599,569,564,574,549,540,564,575,557,564,559,549,574,577,547,589,563,600,566,575,571,554,566,558,579,564,575,577,573,559,577,557,563,579,566,560,560,551,548,578,564,562,563,573,545,565,547,561,563,570,589,585,569,568,566,572,557,575,575,570,579,572,568,548,575,543,573,551,578,553,572,559,570,567,559,565,579,580,557,543,592,577,566,569,585,559,562,572,576,565,571,573,604,548,537,527,541,539,537,537,540,535,548,535,541,541,530,536,534,527,528,538,537,535,541,536,529,534,529,538,532,544,540,525,544,539,534,537,540,537,542,527,538,514,516,700,715,710,679,698,675,693,708,685,727,703,701,726,683,683,707,736,694,708,701,699,713,678,717,669,694,682,716,720,699,693,682,715,702,700,701,702,696,721,702,674,706,710,722,715,667,663,658,652,665,666,656,663,684,667,658,660,665,665,649,679,667,679,671,658,679,671,672,666,666,679,682,656,672,672,663,662,664,664,658,670,653,667,670,677,673,687,674,681,656,629,605,610,622,586,624,589,609,587,613,603,621,629,605,589,658,613,629,605,606,612,633,680,592,611,566,600,606,600,585,586,617,634,636,601,630,588,615,582,593,576,631,609,593,555,516,530,522,538,540,542,524,545,542,544,531,539,535,527,546,531,513,535,527,547,537,533,533,537,545,548,528,522,545,535,538,534,542,538,526,529,548,536,529,536,541,535,537,529,534,538,520,539,552,536,530,538,511,527,532,505,514,516,516,494,503,520,529,516,521,533,522,518,516,515,514,517,516,521,509,527,514,527,508,518,514,526,530,495,526,518,512,526,530,500,514,528,519,514,502,675,727,739,741,758,701,719,770,707,701,750,736,740,758,713,720,766,756,711,737,734,750,733,698,708,730,720,727,717,748,794,709,735,739,695,716,720,716,747,707,734,705,807,699,724,724,713,741,702,724,704,718,731,701,688,706,701,687,701,710,701,714,702,711,709,715,680,703,693,672,721,692,707,706,694,716,713,677,709,699,734,700,711,700,731,710,677,696,618,604,625,620,590,604,641,642,644,594,630,643,616,621,603,638,619,641,627,636,608,655,648,624,653,633,639,628,639,641,632,610,631,612,595,613,608,618,620,590,526,515,522,522,521,526,530,521,528,526,531,540,545,535,533,530,536,534,520,528,522,525,529,529,528,523,538,528,529,521,531,534,519,521,521,531,518,531,519,542,538,529,528,535,526,656,663,672,650,673,682,672,693,660,641,667,675,686,671,676,687,680,683,682,685,671,665,661,666,680,695,661,669,662,644,665,661,695,698,674,676,652,669,693,659,664,635,667,643,661,646,650,643,644,670,647,643,655,653,650,657,676,662,653,636,644,659,643,637,659,638,650,636,672,660,661,651,658,631,659,646,650,650,660,649,654,645,644,663,633,618,586,568,575,549,554,587,537,565,588,561,531,582,580,582,581,576,567,591,583,618,603,585,566,569,601,581,610,603,595,616,575,593,570,566,606,593,598,598,583,559,575,569,563,552,573,559,556,573,568,565,561,561,565,588,577,567,567,550,572,569,554,561,568,564,590,571,568,554,570,566,588,553,575,576,576,569,572,556,577,562,553,575,575,565,570,573,587,545,542,545,558,562,548,564,537,539,543,566,542,544,549,539,544,549,534,541,547,540,544,549,540,536,544,555,542,545,538,547,544,531,551,547,548,546,538,553,552,545,545,551,548,545,520,545,535,536,545,529,548,536,534,530,541,542,534,549,541,527,552,543,549,546,532,523,533,542,536,534,529,525,529,547,531,535,537,546,537,546,540,551,564,575,556,552,554,551,561,557,554,545,562,561,544,568,539,538,554,554,561,561,531,541,555,564,554,560,563,553,564,571,552,558,551,538,555,568,561,540,536,543,536,552,546,546,556,536,548,546,549,555,563,541,557,526,537,541,551,519,551,539,535,544,548,540,553,548,528,538,543,549,542,538,548,547,544,550,532,536,545,569,575,618,617,604,598,597,582,618,603,555,621,611,579,586,600,607,566,520,571,618,599,612,602,614,618,610,579,583,635,576,621,654,590,614,625,550,609,630,598,612,638,588,594,581,562,595,574,584,595,585,596,593,579,591,578,593,593,600,593,585,595,584,586,574,585,594,571,581,592,588,600,576,580,587,583,588,585,589,593,590,572,575,550,548,521,545,541,538,542,550,549,525,541,530,539,544,528,534,546,533,529,551,535,521,531,534,542,533,531,537,529,532,543,538,550,536,526,544,541,529,550,495,513,527,505,514,530,505,509,511,521,521,517,506,512,516,504,500,502,497,528,512,521,489,513,510,501,513,507,520,511,507,491,529,517,510,508,513,505,508,502,529,512,508,517,522,504,568,567,555,566,560,547,544,568,562,546,557,550,558,563,549,567,567,551,560,548,559,559,550,560,562,554,551,553,542,571,567,549,556,573,551,559,574,540,553,556,549,551,563,555,586,552,531,535,527,531,545,546,549,544,545,543,524,540,542,539,537,537,538,531,542,548,534,543,541,544,544,545,533,552,531,534,553,547,536,546,546,537,543,528,531,526,531,541,538,542,531,550,527,533,520,654,716,648,668,658,671,649,742,713,682,719,742,747,717,686,718,677,696,749,688,726,718,745,724,738,691,706,763,741,718,691,750,758,731,680,691,734,681,730,672,734,662,713,702,713,697,709,699,699,716,706,690,703,718,686,702,686,728,700,692,719,714,719,713,713,719,708,713,719,715,717,692,696,696,719,721,705,686,727,703,711,706,662,704,686,668,686,713,686,743,648,691,676,664,631,678,667,710,663,713,642,665,725,640,695,670,740,662,634,673,694,712,631,718,666,716,710,672,659,697,696,673,629,679,743,746,703,683,677,673,683,714,696,692,722,661,674,683,681,678,682,704,694,709,726,673,666,682,711,679,674,700,698,677,687,702,684,703,669,699,697,684,703,654,709,678,682,643,689,701,695,675,707,694,720,690,713,703,691,722,700,713,691,707,702,702,709,700,711,701,709,686,692,696,698,700,697,697,702,677,726,710,698,693,689,692,693,693,696,700,658,656,671,593,651,659,699,612,631,645,706,603,607,613,651,628,632,601,630,647,587,622,602,638,601,630,640,586,624,634,639,621,624,628,629,613,625,679,638,723,546,647,585,603,590,615,592,646,586,598,630,612,640,612,622,617,576,629,622,584,608,650,588,595,603,599,619,583,569,612,591,612,570,598,562,612,598,600,578,621,542,530,534,540,530,516,530,534,531,548,534,536,529,523,531,528,551,532,545,522,520,541,540,535,542,543,531,529,525,529,529,521,519,538,522,543,519,535,520,545,518,529,528,526,557,545,507,538,521,521,535,522,545,523,536,536,523,515,520,520,524,533,533,520,529,535,514,534,545,516,521,539,511,542,526,525,510,515,519,540,512,537,542,528,539,552,548,551,539,560,552,558,543,550,554,559,540,564,550,548,531,561,560,557,565,548,546,544,548,564,552,553,558,561,554,551,552,543,559,544,557,561,544,567,549,544,556,569,563,566,556,537,618,595,658,599,584,661,612,563,600,614,629,623,615,627,625,618,616,631,629,632,581,623,606,611,615,566,621,637,612,608,602,651,619,599,617,642,583,580,601,612,642,622,569,615,601,647,632,618,612,624,607,630,610,620,613,630,621,621,629,622,630,626,624,612,619,606,615,609,598,618,606,628,614,631,616,627,613,604,612,610,617,616,624,608,621,630,623,614,626,605,624,652,556,555,575,592,585,562,572,573,562,567,555,573,580,570,567,565,573,585,572,567,579,561,576,566,563,576,571,579,587,557,578,577,576,585,573,569,560,554,555,602,506,510,512,527,528,510,522,526,514,529,524,516,510,538,521,531,520,506,530,518,517,525,520,519,535,522,508,528,514,507,517,523,520,513,519,530,509,516,507,506,525,519,517,516,506,501,493,668,654,671,666,657,647,657,650,657,671,675,657,682,661,667,659,686,644,651,658,662,641,656,658,630,631,656,666,637,669,639,665,662,667,678,647,666,654,666,666,637,659,650,647,635,698,685,695,659,663,669,704,657,711,669,675,620,680,674,692,646,666,654,665,639,675,672,658,678,682,674,634,660,661,673,701,675,670,635,689,657,654,686,661,634,680,680,662,640,706,690,682,659,716,691,690,720,644,673,745,709,713,692,673,694,642,682,757,689,742,676,711,732,666,689,677,697,696,773,743,659,678,715,713,711,715,669,694,680,718,692,687,707,691,577,644,646,647,675,703,670,675,673,660,654,663,640,683,670,682,667,667,667,676,666,672,674,665,642,660,634,664,683,674,669,653,665,685,675,645,661,664,650,660,690,605,652,641,651,654,652,640,634,631,656,643,644,639,657,644,658,642,640,643,617,665,651,646,657,654,651,661,646,641,652,657,647,642,642,643,629,659,662,642,654,650,664,633,651,656,647,650,680,577,608,572,582,595,578,570,588,585,588,573,577,584,590,576,584,579,581,559,566,587,566,578,579,586,580,580,567,580,584,586,609,572,571,596,585,578,576,572,578,580,573,566,658,654,648,660,668,655,656,650,635,703,691,663,656,658,653,663,673,650,647,643,652,681,663,663,672,648,686,693,669,652,647,663,641,660,675,659,696,625,629,630,626,630,604,592,599,617,613,598,636,630,633,603,613,617,597,620,594,610,615,609,604,619,616,619,602,596,604,597,598,623,595,619,624,611,602,606,631,585,583,598,577,580,573,589,565,562,574,576,568,603,565,569,574,586,595,564,577,564,583,579,591,578,579,574,580,582,596,587,578,589,585,574,583,587,565,587,562,592,587,602,567,590,586,572,582,592,548,546,573,566,560,573,557,566,571,580,570,582,545,557,567,556,575,571,541,548,570,583,565,551,567,581,566,561,569,553,564,554,564,561,573,571,570,572,576,563,549,571,550,561,550,550,547,565,550,569,555,558,555,565,567,582,565,545,549,562,552,564,558,569,567,554,569,557,553,545,554,548,569,575,553,554,557,572,557,555,556,540,556,559,560,553,562,568,535,555,547,540,544,550,538,564,557,556,549,549,548,555,549,548,566,560,544,560,563,564,548,542,544,552,553,533,558,560,546,538,553,539,552,544,556,542,561,551,564,556,535,557,564,555,562,545,551,552,544,557,549,541,576,601,648,700,682,613,627,668,613,620,658,617,612,629,674,672,637,636,586,654,623,619,614,683,650,730,606,606,673,728,636,592,678,664,624,675,602,640,616,602,645,641,624,640,592,602,604,615,591,592,612,608,596,613,605,614,607,606,606,593,605,615,617,595,595,608,609,604,599,604,610,597,608,633,604,621,601,607,588,609,617,607,622,610,616,584,614,576,566,541,563,544,530,556,556,530,579,554,565,552,540,562,546,561,535,560,564,557,527,545,554,545,558,535,555,556,532,543,537,549,550,549,560,556,544,545,574,528,521,525,516,520,531,523,520,540,521,516,520,528,519,547,525,517,516,530,538,523,522,527,528,527,531,533,526,537,526,521,524,533,526,530,521,528,531,519,535,529,537,547,536,532,550,545,552,547,550,538,538,541,528,542,530,530,535,544,536,549,534,536,536,536,549,544,535,545,538,546,535,541,536,555,526,545,526,536,538,533,556,572,550,567,553,561,564,562,559,560,542,567,541,551,556,548,561,553,553,549,541,560,567,547,547,552,553,547,557,556,549,561,549,568,572,571,548,548,574,553,539,580,675,684,674,672,684,703,693,677,690,718,680,688,682,684,696,682,712,680,667,688,683,677,680,673,672,698,686,687,675,694,683,668,694,701,688,685,693,695,687,707,685,649,667,683,676,642,711,689,677,667,676,693,653,698,674,664,648,675,694,666,651,652,664,674,694,685,690,652,664,705,669,696,698,678,666,676,663,660,697,664,674,661,660,678,656,679,681,649,685,589,618,593,575,615,621,597,593,600,636,579,575,635,638,573,582,605,593,582,608,593,597,606,595,605,633,612,621,613,589,606,581,599,587,620,600,615,601,541,598,575,584,576,586,515,617,645,574,572,627,636,616,633,672,636,594,565,582,590,631,644,565,580,603,602,636,591,584,628,620,583,630,592,665,589,603,606,639,607,659,625,617,630,596,593,606,575,594,587,599,594,572,579,579,574,593,588,588,589,583,570,586,583,592,576,587,592,569,596,605,584,586,589,592,600,584,597,589,597,576,580,583,587,576,579,594,545,557,562,538,549,563,555,550,554,547,540,564,549,546,542,554,551,529,541,553,544,548,540,545,553,566,550,553,549,547,542,560,535,565,554,534,550,548,562,561,533,549,555,563,546,548,557,551,566,566,550,545,572,573,554,535,545,558,552,561,548,560,576,576,539,555,558,568,569,549,541,554,554,548,564,567,570,567,564,546,561,577,551,548,574,572,566,577,547,535,705,657,641,682,672,671,686,642,686,675,665,667,651,675,661,686,709,677,671,682,700,652,678,683,653,688,715,648,672,645,684,616,684,680,692,688,665,634,657,667,675,664,685,655,603,585,626,622,584,623,601,611,608,600,614,589,598,586,605,612,612,582,595,605,597,586,624,602,586,600,607,586,590,593,643,613,601,609,594,585,594,618,629,619,617,621,632,676,670,687,650,637,670,677,654,729,674,662,637,676,649,659,673,651,636,650,698,700,661,639,677,655,647,682,655,663,653,620,652,726,629,617,672,662,670,713,642,630,669,695,621,672,739,666,675,691,666,679,691,673,672,689,663,667,671,672,666,684,674,684,675,672,689,692,670,687,652,672,674,673,678,681,685,678,676,690,660,662,653,666,670,670,678,674,669,670,653,669,684,610,603,641,589,552,567,615,644,574,583,645,568,614,590,606,622,609,608,568,601,583,611,607,590,580,583,614,592,604,604,576,581,590,594,599,599,561,656,614,596,606,586,588,614,603,559,553,563,541,544,549,544,562,553,548,544,543,550,570,544,551,557,553,536,555,557,553,566,557,560,548,553,551,557,569,539,550,567,532,552,557,543,551,565,535,538,554,552,554,527,541,534,540,541,550,539,528,550,540,551,546,522,546,567,531,542,542,551,564,552,519,539,542,530,539,537,521,554,530,549,545,569,551,537,543,539,531,543,536,546,574,517,529,525,511,507,509,521,506,522,520,530,516,512,525,526,519,523,524,519,508,498,518,528,523,519,526,516,521,512,531,505,510,507,507,518,514,524,524,524,511,513,509,549,506,505,506,497,512,490,506,514,504,491,507,507,503,499,501,508,498,520,509,506,503,506,516,498,509,508,511,503,511,504,508,502,506,508,503,498,490,499,505,504,507,503,503,511,492,507,488,509,497,506,496,492,498,490,494,499,489,498,490,482,480,485,483,496,497,494,476,490,493,496,488,499,488,501,511,490,501,509,488,504,487,510,489,502,493,492,493,495,499,508,488,500,487,493,492,481,502,492,495,500,490,494,508,499,500,490,496,498,493,494,507,508,493,502,497,488,510,488,497,503,492,502,491,493,488,510,502,511,497,490,478,497,500,501,495,487,508,488,500,504,491,487,499,517,506,503,486,496,507,500,508,485,496,477,499,487,505,499,492,496,497,491,501,490,499,499,500,506,491,503,503,487,490,504,507,503,523,511,520,508,530,507,513,508,502,508,516,513,510,506,515,502,522,512,516,499,500,522,514,519,500,510,512,510,519,515,512,509,505,521,511,504,498,514,511,501,556,532,541,526,539,543,561,551,517,560,552,557,534,548,523,560,548,548,537,542,541,541,537,546,535,543,552,551,530,554,534,553,551,538,556,538,554,550,540,547,549,539,558,533,529,517,542,546,538,529,518,526,528,533,541,525,533,526,518,544,538,532,534,524,543,540,528,529,545,534,541,541,543,531,531,537,521,530,526,522,527,535,540,567,568,570,593,577,589,582,569,576,578,551,569,563,589,583,563,595,567,595,601,573,580,558,590,571,589,579,596,591,576,585,561,590,559,588,576,575,575,585,572,549,557,539,558,546,543,557,545,554,539,565,552,552,552,550,556,547,545,540,543,563,557,537,546,556,551,557,552,544,546,554,536,545,552,546,553,549,551,547,574,578,574,597,637,590,562,539,604,606,598,590,561,596,609,613,611,572,594,603,555,588,611,577,564,565,604,567,639,601,592,611,567,581,629,568,632,613,597,664,577,601,585,586,578,581,580,582,591,578,588,577,586,599,589,607,579,572,597,583,577,586,591,591,573,591,580,590,592,577,586,580,594,578,585,577,582,579,592,586,592,595,585,595,547,530,539,540,551,532,527,549,542,546,528,529,524,540,525,532,530,532,539,535,541,538,538,544,527,546,542,529,531,541,529,534,535,526,549,537,528,538,537,522,540,532,508,493,510,507,495,517,507,501,529,510,500,514,513,502,516,515,501,521,506,504,513,507,516,518,496,507,500,504,516,495,516,512,509,490,522,507,515,508,506,506,500,505,505,511,581,597,550,574,585,585,594,583,561,579,576,596,573,578,574,566,574,569,585,576,582,586,582,560,557,570,576,594,565,582,567,580,567,575,604,582,587,613,601,607,593,585,582,588,598,583,579,611,612,603,578,617,601,588,601,607,583,587,594,601,604,588,592,596,584,607,600,613,581,604,605,607,610,599,609,588,598,553,573,601,582,570,581,574,581,583,590,579,564,573,591,574,569,585,574,592,575,573,572,566,572,570,578,560,582,571,574,573,590,567,558,563,589,581,590,563,569,574,557,549,538,533,521,542,549,537,530,549,528,548,531,544,531,528,536,541,528,535,551,527,549,540,540,529,544,547,538,549,523,547,541,533,537,524,528,531,524,525,515,525,550,540,538,539,530,524,490,507,506,510,509,515,513,513,518,507,516,501,499,522,513,515,520,510,523,509,517,522,513,502,506,511,526,504,507,500,519,518,515,505,511,501,524,523,556,550,553,556,571,548,531,544,536,539,543,548,527,542,524,552,541,554,549,539,549,532,542,544,545,562,552,546,526,539,565,534,551,543,519,535,547,540,559,519,510,536,522,537,544,532,529,543,536,536,530,540,545,531,534,529,531,528,534,534,532,531,528,531,547,524,536,527,529,528,535,535,524,546,534,529,530,534,525,532,530,530,524,552,544,546,532,534,537,526,536,532,522,515,519,525,537,510,513,536,515,519,535,525,525,532,533,522,535,544,548,509,539,520,524,545,526,520,534,524,545,538,501,498,494,502,493,491,504,507,504,489,503,507,487,501,500,497,507,499,494,501,506,511,496,504,521,502,507,502,509,495,497,502,500,495,489,501,502,497,479,495,493,514,511,505,499,503,510,504,487,506,505,507,506,501,494,501,522,511,498,490,500,498,499,502,503,508,503,506,524,494,503,517,496,505,504,496,518,520,513,505,492,644,616,607,597,637,641,630,638,611,611,633,602,609,617,612,644,627,628,609,633,639,614,628,622,621,611,620,605,635,624,630,630,633,632,639,630,614,603,638,625,588,555,572,566,557,565,574,565,556,554,555,582,559,563,561,558,557,553,569,559,540,550,555,552,546,554,569,561,545,545,547,555,551,570,554,558,560,568,575,559,538,555,560,621,620,635,613,639,640,672,618,679,661,627,570,622,604,612,692,633,662,648,703,629,644,638,616,607,678,636,638,647,634,599,642,636,639,659,638,622,655,642,604,647,679,629,642,625,611,599,663,649,653,689,609,683,654,664,646,687,635,635,654,668,672,649,678,654,643,701,671,681,656,650,665,666,679,680,686,678,670,625,694,692,686,644,694,664,695,695,684,649,675,681,621,614,611,594,609,584,604,607,626,626,626,579,609,609,602,586,615,586,593,610,598,616,630,584,620,620,584,590,614,611,575,607,624,616,644,624,592,598,626,667,564,577,564,582,580,556,575,571,564,579,566,586,580,566,557,566,571,557,577,568,588,568,573,560,579,568,564,568,578,563,582,579,565,570,577,573,571,567,562,564,568,578,559,591,573,542,557,548,544,548,541,550,535,550,543,536,549,542,533,535,560,551,533,544,542,542,533,553,533,567,547,550,543,546,530,548,532,550,550,526,553,544,535,534,549,559,526,519,525,517,508,494,517,520,512,531,515,515,516,516,522,523,501,507,503,521,522,514,510,510,508,534,519,523,534,516,514,519,517,504,513,529,526,518,510,509,515,521,510,651,638,641,637,657,643,646,638,650,641,638,646,658,645,654,653,655,625,642,671,659,654,666,655,674,669,640,650,656,638,650,654,661,638,661,637,653,653,651,629,625,670,686,597,622,587,611,591,592,586,608,582,591,582,606,603,586,598,576,613,578,609,586,576,611,587,594,591,603,591,607,590,589,595,594,587,579,591,599,594,588,595,592,564,580,587,570,592,580,581,574,583,581,574,585,578,573,570,582,568,591,568,575,554,592,584,577,580,602,585,568,583,580,572,564,580,601,590,585,577,577,577,565,580,587,591,601,566,583,566,568,570,578,558,571,560,556,572,580,564,561,567,563,564,579,560,561,569,565,570,570,557,564,562,582,572,570,551,557,571,570,554,558,567,551,586,566,545,559,557,564,563,556,561,549,573,555,555,569,548,561,561,553,554,570,562,556,569,570,560,564,557,561,562,566,564,555,557,563,567,563,558,571,556,546,565,563,547,541,550,541,548,535,551,549,550,541,558,534,547,557,546,533,547,547,547,551,535,536,542,547,562,546,547,546,545,556,549,544,548,559,546,544,546,541,555,540,545,534,553,540,556,561,518,541,531,561,540,537,531,536,530,542,541,528,534,546,527,525,548,532,535,533,534,541,546,541,547,532,525,531,550,535,528,528,534,533,545,537,533,546,532,523,525,534,524,541,552,534,543,557,557,529,526,513,532,532,532,551,534,533,536,537,509,530,526,538,533,535,538,538,535,524,529,528,502,536,521,531,535,525,523,528,525,524,528,523,518,524,526,532,542,525,543,523,526,536,543,546,545,544,539,548,532,547,542,539,546,546,533,552,548,538,532,531,531,551,543,543,553,522,542,542,533,539,542,543,539,545,539,535,546,541,531,542,544,531,540,545,542,549,541,565,536,566,556,545,552,533,549,544,555,540,543,555,543,553,549,532,550,538,540,558,545,549,538,535,552,532,554,548,547,550,541,543,538,533,556,538,547,535,554,543,538,547,545,543,523,531,535,537,552,540,531,534,533,535,525,544,536,534,540,524,544,532,525,544,526,538,545,531,538,547,547,528,528,535,543,527,542,548,535,540,532,537,534,528,539,539,533,529,542,536,520,520,524,526,541,531,546,535,539,524,531,536,552,517,526,530,537,530,545,521,523,514,526,541,516,529,545,528,538,544,522,524,523,533,534,522,533,540,542,531,545,518,528,508,554,536,538,558,552,559,547,558,543,538,548,548,552,535,534,542,546,551,545,532,536,552,542,549,541,541,553,549,555,556,549,556,536,531,535,545,547,554,552,543,545,540,557,557,527,564,564,543,555,563,548,570,559,554,563,552,560,552,563,554,547,551,551,557,560,554,562,545,561,564,557,552,538,566,564,548,559,565,549,554,547,553,534,603,579,639,579,580,628,570,635,611,627,573,591,596,595,641,620,577,630,595,627,553,631,621,619,598,623,565,596,585,595,599,583,582,553,605,600,620,601,619,598,656,593,597,590,601,595,593,586,599,598,588,601,577,595,595,598,594,605,594,587,596,596,597,584,585,593,592,588,592,597,603,577,586,577,598,590,579,578,591,591,598,569,564,555,549,550,559,557,563,552,552,564,558,570,555,567,576,553,555,561,569,564,547,565,566,580,553,562,555,565,582,539,553,551,559,546,580,563,570,557,555,548,556,534,572,552,556,549,545,563,555,548,534,563,548,547,534,555,529,550,560,529,539,534,549,558,565,555,551,549,565,541,560,548,534,551,561,570,562,555,550,546,565,561,547,533,548,660,644,642,641,666,627,623,629,654,656,661,634,655,652,649,643,644,654,664,649,646,649,653,638,639,639,640,658,648,642,641,648,638,631,655,668,661,637,652,602,572,559,552,547,554,582,576,563,555,568,583,557,554,555,565,540,559,556,556,555,558,551,570,555,551,565,584,558,569,576,561,576,572,573,563,550,566,564,571,551,566,564,558,563,559,546,526,520,529,555,563,518,528,533,544,536,530,527,516,544,519,540,552,538,543,547,533,532,515,552,506,515,544,536,541,516,530,524,554,553,545,513,519,546,538,539,536,540,712,690,709,686,720,732,697,731,712,733,699,687,683,692,707,679,732,726,689,703,708,713,734,694,707,702,714,662,722,711,708,687,748,694,711,733,730,728,699,721,716,645,647,657,642,641,659,639,659,666,674,623,656,650,617,651,657,662,644,652,665,642,674,659,651,656,646,672,674,656,665,650,620,632,619,650,643,677,655,641,683,652,601,598,605,602,585,598,599,595,600,587,609,591,589,612,581,588,584,606,598,596,614,598,594,608,594,599,606,603,592,603,603,597,603,593,618,612,597,594,599,608,592,606,601,603,573,585,571,610,587,604,621,579,579,617,597,582,602,606,606,591,589,562,598,598,612,619,594,577,608,605,635,587,558,651,647,591,610,541,605,582,671,601,590,596,590,606,602,591,579,598,593,587,584,582,596,587,581,584,588,586,593,606,589,594,587,603,593,585,589,601,587,590,585,581,592,579,585,602,594,567,592,598,548,542,545,521,542,533,541,540,539,542,538,545,536,533,545,527,538,546,534,536,537,541,538,550,518,536,543,517,537,528,531,542,522,529,531,518,642,637,652,661,663,662,650,671,671,651,648,653,625,663,645,650,641,662,643,650,628,652,659,659,629,620,671,661,638,652,645,649,642,667,652,655,658,660,660,641,666,645,645,656,686,631,667,680,687,657,676,670,675,672,705,684,687,671,678,685,659,654,660,640,678,706,676,719,657,619,635,686,630,633,640,646,657,701,686,666,680,670,674,678,666,656,688,707,685,700,698,672,661,683,687,677,687,704,731,685,673,686,634,665,678,691,681,674,697,696,687,662,680,628,722,699,677,686,653,687,707,644,643,727,687,661,713,690,707,746,670,713,755,692,664,675,710,674,679,681,644,704,676,698,701,690,685,670,715,642,679,670,673,665,653,670,654,695,668,680,668,677,698,709,668,701,658,676,656,721,683,657,690,687,690,651,691,747,587,574,578,582,563,583,581,576,587,574,578,605,597,559,593,575,599,589,551,593,622,597,562,581,576,578,563,584,564,575,593,589,570,577,548,554,575,583,595,600,575,579,556,556,574,554,581,573,570,634,542,560,534,544,544,543,545,545,537,553,526,565,542,538,534,537,564,552,520,538,554,549,544,541,544,530,555,561,534,552,550,556,536,527,549,553,527,523,543,520,693,685,671,648,669,681,687,635,685,677,675,668,708,695,673,681,666,681,665,659,685,689,678,671,661,684,685,675,687,686,647,682,701,683,669,682,660,655,656,666,622,571,618,616,600,611,603,593,566,595,633,591,600,600,604,617,594,577,591,590,609,593,593,595,596,614,598,611,634,625,602,628,578,582,616,605,597,615,610,607,615,613,602,605,607,583,625,600,639,589,601,658,605,543,634,576,603,641,606,633,599,618,569,582,641,569,684,634,602,576,637,601,646,586,606,600,601,643,608,640,537,586,561,570,646,508,656,669,702,677,686,623,632,652,669,651,693,691,650,651,662,661,661,695,643,670,665,657,648,632,685,681,715,627,662,659,672,630,645,660,665,684,649,658,645,671,645,685,623,602,601,580,582,603,602,586,568,590,572,622,592,613,610,614,588,585,585,592,605,582,608,635,601,598,591,610,590,587,586,574,586,577,627,592,600,606,621,595,616,612,602,587,611,599,685,642,587,630,607,642,612,633,654,596,564,644,590,600,629,660,611,601,644,671,599,541,618,595,624,639,591,588,619,656,590,617,666,611,651,621,680,612,568,646,675,636,623,646,653,698,712,675,657,628,669,687,654,661,652,638,688,638,674,654,649,651,665,650,650,676,675,650,676,672,626,686,692,672,668,657,645,669,652,633,656,649,674,660,625,642,679,672,684,695,689,689,707,682,701,694,661,691,677,691,649,660,693,687,681,668,690,703,692,701,717,687,692,691,700,666,676,680,673,688,688,678,689,665,722,678,695,676,689,674,684,688,694,666,704,676,672,691,694,671,683,705,686,662,700,680,700,671,707,673,685,710,677,666,712,714,697,680,672,672,688,707,679,683,672,680,688,684,687,711,707,666,692,709,588,589,619,586,606,597,616,627,596,619,626,657,621,587,618,583,608,628,594,583,602,600,595,630,614,600,553,592,605,610,604,607,615,605,594,579,605,572,585,581,610,550,541,541,536,563,540,547,559,560,545,548,556,551,562,541,542,554,559,541,547,536,537,542,538,549,554,550,547,545,551,534,585,544,547,553,542,551,555,548,555,552,560,548,588,586,598,575,584,570,593,584,576,597,572,575,573,575,566,586,572,588,595,571,577,573,571,572,569,574,601,574,586,599,588,569,581,572,584,585,584,584,568,560,595,564,621,622,626,624,642,660,653,626,632,661,626,645,627,633,631,618,649,638,628,653,633,622,640,649,652,624,647,620,670,645,637,651,614,655,627,637,650,654,625,636,646,649,658,656,653,666,663,645,642,646,659,645,643,660,665,652,640,652,653,644,644,652,662,650,652,649,665,650,667,655,655,652,671,649,664,656,662,664,640,651,685,581,589,578,576,573,571,596,583,580,589,587,594,564,568,584,564,583,577,590,581,550,571,567,583,553,569,597,583,578,561,561,574,592,573,577,572,570,577,608,662,665,691,690,693,644,667,658,664,646,649,649,675,671,641,651,680,665,670,671,679,648,699,683,661,677,673,661,656,672,669,675,675,674,699,669,670,688,676,694,660,629,670,665,660,694,608,657,659,719,677,688,650,652,647,672,688,657,673,659,653,636,678,623,673,633,665,684,686,673,656,679,660,671,678,662,684,650,650,657,665,674,696,613,618,588,581,618,620,626,598,581,587,620,598,623,612,592,600,641,605,601,594,600,616,583,604,604,596,605,583,619,579,608,596,603,547,598,601,571,586,662,592,559,588,595,585,609,645,557,605,589,629,596,626,597,599,646,651,597,631,619,584,635,562,564,586,626,547,627,637,678,639,594,605,613,612,590,549,607,578,620,608,619,580,641,656,618,576,708,561,564,560,560,556,552,577,577,576,560,578,571,576,543,550,558,583,560,584,562,549,576,575,560,558,553,565,566,566,573,573,571,567,556,558,554,560,565,555,552,562,561,554,555,569,586,606,598,567,613,581,551,585,552,604,621,566,610,610,612,639,596,592,636,620,600,622,636,629,613,631,582,571,548,568,622,613,564,549,555,634,607,614,653,607,576,607,622,698,565,558,581,558,567,560,577,564,561,567,566,567,561,564,580,561,579,568,558,574,561,559,564,559,572,569,569,564,565,570,576,567,559,569,563,564,562,559,568,560,559,571,589,612,649,685,644,670,628,604,590,694,620,628,609,657,678,590,703,619,674,619,683,677,675,655,619,643,625,632,611,604,642,594,620,601,712,585,668,612,577,592,641,643,677,675,595,670,646,585,556,663,656,661,677,701,671,663,625,682,701,671,680,660,663,636,661,661,694,657,668,671,701,652,663,648,666,692,645,643,660,662,648,681,684,641,672,664,662,653,701,665,659,677,727,640,633,622,614,632,648,649,659,627,664,645,651,638,658,614,641,659,654,629,627,666,611,661,645,653,645,611,639,615,651,659,630,646,647,621,672,640,654,624,637,644,599,602,584,587,590,582,587,583,587,593,603,569,588,598,593,589,589,604,582,583,569,595,590,583,592,608,586,597,593,595,580,597,588,589,574,598,576,573,592,599,595,588,604,600,581,599,585,605,592,591,589,585,600,601,599,605,596,595,597,598,590,603,593,595,595,611,600,577,574,591,579,616,592,587,606,574,579,593,595,596,605,594,597,603,595,602,589,600,575,597,611,589,586,607,609,564,744,712,753,737,745,734,732,747,723,754,726,713,735,751,711,729,718,752,738,711,723,729,724,727,733,712,724,700,740,745,717,733,726,707,707,712,743,748,730,730,723,697,715,701,719,706,733,712,717,703,714,706,707,714,708,710,708,700,716,710,702,729,707,706,705,712,708,710,702,692,705,715,707,717,719,711,735,696,717,711,695,682,718,683,692,686,692,702,682,685,732,712,714,698,681,707,669,688,714,665,682,709,668,672,701,642,686,686,682,701,686,696,669,703,713,728,693,683,674,717,696,697,699,676,680,679,687,672,688,677,688,707,689,678,700,688,679,657,661,682,686,645,671,661,680,682,680,640,640,679,683,668,670,688,686,684,712,648,702,665,685,669,691,637,643,674,685,674,675,677,680,666,681,688,668,721,678,678,681,691,707,658,686,669,709,686,691,688,667,676,678,675,696,675,657,667,711,671,683,670,690,686,675,674,685,708,676,697,703,679,671,696,684,708,688,672,688,656,695,723,702,670,692,682,693,694,676,685,672,654,666,671,675,742,674,668,630,709,690,667,695,689,680,715,680,655,660,665,731,705,695,658,743,722,687,695,725,665,662,702,706,706,682,653,696,716,688,657,654,627,656,678,652,666,667,686,662,663,644,630,630,682,676,648,637,662,660,661,657,649,668,661,675,677,650,654,667,634,653,689,642,627,665,673,701,660,670,647,670,671,642,676,670,682,661,702,671,673,676,698,680,714,700,755,696,700,672,723,695,680,697,725,685,726,680,721,712,654,714,693,673,718,717,671,699,716,710,661,701,705,636,716,725,718,707,709,697,706,709,702,728,711,709,737,680,710,707,714,725,722,746,707,710,692,727,731,713,716,722,727,725,725,716,719,703,721,715,744,718,712,712,691,735,722,706,708,676,705,704,655,684,702,713,687,697,683,676,699,689,687,689,695,698,686,691,661,693,684,681,693,690,696,662,678,721,711,694,699,668,686,697,668,686,705,669,683,660,693,689,685,687,677,678,699,683,648,662,706,680,678,693,674,661,687,671,688,670,675,696,673,678,672,699,676,675,661,687,669,654,681,655,666,703,670,681,652,704,672,675,680,664,677,673,661,669,675,703,680,681,674,686,682,660,670,675,665,685,676,660,668,701,675,677,677,669,694,712,669,671,693,693,680,712,692,697,697,668,673,683,661,715,694,702,720,657,663,632,675,681,635,676,705,707,677,688,739,745,633,685,678,634,706,730,694,694,692,663,729,676,710,678,693,662,668,704,714,674,679,620 0 261.607313 0 0 0 diff --git a/test/rna_slow5.exp b/test/rna_slow5.exp index 3e177d8..0c1fe3a 100755 --- a/test/rna_slow5.exp +++ b/test/rna_slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO002 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 3000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna002 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 2048 -263.72473 548.788269 3000 81282 485,497,491,501,501,503,498,494,506,492,492,488,491,496,492,509,514,507,501,499,495,496,503,504,503,487,505,494,500,512,484,483,485,495,504,489,508,506,495,476,498,482,493,496,500,502,502,491,489,505,488,497,489,486,497,488,514,496,497,493,499,499,498,509,498,502,486,488,496,493,498,494,478,494,501,494,497,490,487,503,494,504,503,489,495,493,477,499,508,494,504,504,494,484,495,498,505,497,503,494,503,491,507,494,508,489,495,505,492,509,491,489,493,487,491,503,487,501,501,488,509,487,509,494,494,507,492,487,508,505,497,506,491,500,499,500,487,484,490,508,497,513,497,490,490,501,505,483,502,500,505,502,495,513,490,506,491,496,516,501,499,492,500,511,491,490,510,486,505,496,513,498,489,506,494,505,493,506,499,490,497,493,483,507,505,496,492,500,499,486,503,496,492,504,502,491,488,488,502,491,509,501,509,490,485,488,496,504,500,484,504,496,495,490,502,508,499,503,496,508,492,503,492,512,486,490,493,487,490,489,500,490,495,490,493,500,490,491,489,492,494,499,509,499,497,477,493,498,504,483,500,506,499,508,502,480,487,495,489,506,503,486,504,495,509,500,489,498,496,495,503,485,501,496,485,500,497,496,497,477,495,482,499,505,489,488,487,500,513,493,499,487,487,495,493,499,503,491,490,481,498,483,506,477,501,484,500,495,509,502,507,480,498,499,502,496,505,508,504,494,493,485,504,501,492,496,502,498,483,492,497,505,497,493,502,496,503,487,488,496,499,486,488,496,489,496,497,487,495,498,497,495,492,505,503,494,492,499,508,487,502,483,490,488,495,503,507,508,495,496,484,499,497,514,494,498,504,496,489,490,489,504,508,508,488,501,494,502,516,496,487,482,495,499,502,489,486,505,506,496,479,496,494,502,507,500,498,494,491,488,493,499,491,496,487,498,505,487,496,509,505,502,488,495,498,499,496,518,500,503,498,508,503,497,507,495,492,502,497,486,497,506,496,491,493,489,501,491,513,486,489,488,501,510,496,494,503,490,504,497,506,485,493,491,499,496,492,498,490,497,492,497,490,480,494,510,496,504,501,494,494,508,494,516,491,504,477,498,495,508,505,493,493,496,495,494,509,486,494,493,503,491,498,483,489,487,482,487,494,492,483,491,501,507,491,491,489,499,496,483,501,504,486,512,504,497,509,490,492,487,500,503,501,498,490,504,507,489,490,495,498,501,515,496,485,497,489,486,499,494,500,481,478,493,497,501,490,492,486,490,496,500,500,500,498,492,500,496,522,487,509,481,506,507,508,496,503,500,494,484,489,501,512,512,484,484,493,501,511,493,508,487,493,481,501,488,489,502,514,511,507,517,517,503,519,506,523,508,520,509,512,506,512,506,509,513,522,515,502,517,508,512,509,503,521,517,493,518,527,518,508,498,515,518,510,514,502,503,524,521,516,581,556,586,588,579,561,567,565,569,578,587,577,592,576,573,587,560,585,582,584,597,589,590,582,577,572,587,597,590,590,553,574,585,589,584,568,566,574,575,623,642,627,646,647,624,613,671,655,629,648,649,637,630,628,635,624,655,634,636,642,648,639,639,647,644,644,609,635,630,630,635,642,642,650,633,626,645,616,640,646,641,644,673,659,677,652,660,665,652,669,677,676,666,659,681,659,665,666,655,663,656,660,644,680,648,664,652,659,669,661,688,675,675,659,686,671,663,659,674,656,665,654,665,647,665,656,677,660,667,655,668,656,670,669,671,687,665,670,658,671,664,667,666,662,659,674,661,686,649,668,668,656,660,657,686,654,675,675,660,680,660,676,674,676,673,657,663,666,659,671,669,679,660,663,667,670,660,678,654,678,648,676,681,655,668,668,673,670,666,663,671,677,646,662,673,680,663,653,680,657,675,668,672,663,647,654,651,662,663,650,670,654,660,658,673,644,652,653,679,638,640,648,657,658,668,664,656,679,667,664,675,672,665,662,678,646,661,637,657,665,659,681,658,657,758,741,754,742,711,765,758,756,713,767,746,723,774,746,727,710,735,736,742,772,740,731,717,745,712,757,699,774,720,744,763,712,737,731,766,764,741,743,743,729,778,722,752,741,713,717,753,729,714,707,731,734,706,674,729,723,779,736,724,725,736,690,743,719,729,709,693,684,744,701,730,718,707,735,705,739,743,703,715,705,728,723,700,720,718,693,698,715,712,672,688,667,680,677,694,659,656,680,662,655,676,671,681,674,670,692,696,671,673,655,679,677,684,659,664,661,679,697,668,693,662,665,692,656,663,687,660,647,679,672,696,636,655,645,652,655,652,630,640,656,645,659,642,639,626,639,657,653,661,631,638,660,648,650,639,628,650,655,636,631,647,648,616,631,634,652,641,640,636,648,649,652,641,640,659,652,638,632,686,660,670,661,674,687,672,666,683,652,677,669,669,662,663,692,670,662,672,671,660,673,666,679,677,675,671,671,671,672,663,676,674,653,686,664,670,660,674,669,674,528,543,542,543,539,548,513,528,519,536,534,553,528,522,517,569,522,518,555,564,530,553,548,543,526,497,527,508,521,512,508,506,537,546,526,529,536,526,533,556,529,544,517,539,535,529,437,436,430,428,432,438,460,447,437,440,430,440,444,440,450,441,427,443,440,437,447,433,434,438,437,454,433,445,440,440,449,452,439,449,425,437,438,424,433,430,429,430,442,430,429,450,448,445,456,426,442,436,453,435,422,455,460,432,435,435,433,428,449,454,461,442,452,434,429,459,463,430,450,423,444,452,448,445,466,419,432,447,455,439,434,448,448,441,455,433,452,435,439,444,439,436,425,445,439,449,439,450,450,449,435,447,428,438,439,438,430,436,437,451,449,450,434,439,434,436,451,435,457,452,423,441,455,499,509,515,468,510,515,525,489,531,486,531,485,493,476,512,476,497,484,490,503,508,533,471,511,504,527,486,494,492,521,486,524,570,529,480,487,485,433,529,501,477,536,508,575,625,656,659,684,704,608,683,660,647,663,652,683,633,673,630,641,611,654,671,671,663,660,646,646,670,690,629,638,639,666,621,690,651,661,662,650,640,630,659,647,623,657,652,600,595,634,627,600,649,642,634,611,619,641,621,575,560,631,656,575,622,600,614,610,602,611,600,608,612,637,617,617,595,642,625,609,603,643,628,639,592,641,621,675,623,610,583,559,557,563,573,578,580,564,556,575,567,549,589,567,567,545,548,574,568,556,576,565,552,563,585,583,591,570,607,569,556,567,580,539,568,572,561,583,575,568,436,471,459,447,458,471,452,466,462,472,454,456,448,459,479,450,464,462,456,443,442,430,446,463,481,470,464,468,451,463,450,456,456,447,465,495,458,479,454,459,466,465,438,519,559,534,536,535,525,537,549,554,533,549,571,556,538,536,535,526,554,549,571,536,533,540,538,532,539,537,546,549,565,592,571,553,533,529,537,530,534,579,553,546,549,563,540,539,565,479,470,457,454,446,474,481,489,487,467,483,474,458,450,482,473,458,471,471,482,457,464,475,446,474,472,474,465,479,468,462,477,459,485,472,484,475,463,465,452,477,461,458,463,460,437,412,434,439,432,439,441,422,442,451,388,416,446,440,440,425,427,464,434,416,441,426,423,430,460,428,418,443,445,441,426,428,436,430,435,404,429,421,640,617,609,596,622,636,604,576,619,641,623,621,588,629,577,619,612,616,617,594,625,639,627,618,591,622,636,574,614,567,640,613,620,623,632,611,635,643,635,617,618,581,640,634,601,602,618,497,527,500,513,529,526,513,522,520,545,523,499,518,547,526,561,527,488,508,495,523,543,541,492,522,515,502,484,523,508,515,531,519,542,491,497,539,530,462,474,448,458,476,442,446,493,458,441,453,480,474,490,465,471,459,463,464,492,443,449,470,476,464,485,478,436,454,450,467,468,471,478,436,454,455,457,446,475,455,492,446,442,476,470,452,447,416,490,499,493,493,506,470,506,476,486,500,509,499,490,479,493,491,483,483,499,477,493,492,481,496,487,494,482,479,488,495,468,490,474,468,483,484,481,491,475,491,487,469,469,484,475,463,473,460,462,487,471,468,456,474,477,475,459,463,456,458,470,460,467,461,455,457,451,467,452,470,477,459,467,470,468,450,479,452,472,486,471,456,478,477,453,473,489,431,454,457,446,454,447,450,448,447,448,440,444,440,450,443,448,450,455,447,465,446,451,451,448,436,458,454,448,447,459,448,449,450,448,458,449,449,444,449,455,478,461,445,455,464,467,456,443,447,464,460,454,461,460,458,454,449,467,453,453,461,440,455,447,452,452,456,451,458,456,453,453,449,455,452,452,451,459,465,459,457,451,458,459,456,461,449,442,443,453,448,448,455,466,454,462,450,451,452,471,447,464,458,464,456,459,452,458,464,458,457,453,456,450,464,465,466,457,461,445,454,451,452,466,458,465,465,471,446,464,452,459,469,452,469,453,448,447,456,445,466,452,455,457,447,462,446,460,457,455,453,445,463,452,449,460,459,442,454,453,450,448,449,445,454,455,449,451,463,446,453,448,456,463,456,450,448,449,449,469,449,450,455,462,474,452,442,459,456,447,462,445,462,455,452,458,456,457,452,459,450,446,450,469,454,473,454,443,459,467,452,452,452,461,453,458,462,445,451,451,460,446,446,455,456,467,466,457,455,445,458,444,448,459,451,450,460,447,452,465,439,453,462,462,453,445,452,448,458,461,452,470,470,462,458,450,450,454,458,447,466,446,454,457,460,449,451,455,439,462,449,448,450,466,467,458,455,442,453,438,464,451,461,454,461,446,467,457,455,454,449,455,455,446,459,464,454,453,445,449,449,456,457,460,465,450,441,460,452,451,458,448,460,450,457,448,449,467,453,449,452,451,440,457,454,455,460,458,450,451,459,452,465,453,465,429,449,447,448,450,454,444,446,451,460,453,447,457,456,453,452,462,450,465,453,456,460,439,453,444,464,455,454,445,458,462,463,460,448,447,458,457,449,458,452,437,461,455,441,451,451,447,462,459,470,453,451,460,449,459,455,460,450,458,454,456,454,443,458,447,442,462,450,453,451,446,451,461,455,444,466,449,452,452,446,454,450,449,450,441,457,448,439,445,445,449,460,457,443,443,442,449,446,444,451,443,440,452,451,450,435,442,453,452,439,453,445,444,450,465,449,441,461,451,448,452,463,448,451,453,459,462,440,454,449,453,447,446,447,446,443,448,440,441,447,446,451,436,436,448,457,467,438,447,438,459,450,473,453,456,465,460,471,467,451,454,454,449,457,456,455,452,455,471,450,453,450,562,568,548,560,537,573,586,548,546,561,549,585,565,563,576,542,569,549,590,585,547,569,568,571,588,536,574,556,551,570,582,547,552,568,565,548,583,566,545,572,566,543,598,500,517,506,504,508,532,483,512,508,520,486,488,498,505,497,508,501,511,509,506,505,498,507,513,506,502,492,521,501,497,522,493,480,531,502,497,493,489,469,473,460,477,463,478,463,460,460,466,453,468,461,467,463,465,467,453,478,437,477,460,454,462,460,450,468,468,463,449,459,468,466,467,480,477,468,468,462,442,460,461,456,447,530,490,503,509,485,510,495,486,494,479,525,479,488,504,508,502,532,503,525,525,497,490,475,512,485,481,529,484,485,513,537,500,487,498,500,522,512,523,497,501,465,493,477,482,486,490,499,505,476,500,473,499,480,478,501,493,489,504,489,480,487,482,499,508,484,494,493,496,490,491,488,485,482,493,492,496,487,467,498,493,492,487,492,505,429,493,450,467,466,482,503,528,478,461,486,468,517,510,473,487,488,500,488,461,457,446,456,450,515,506,480,507,495,501,474,502,474,431,459,463,446,523,489,576,612,611,589,615,624,638,641,589,625,610,631,637,608,626,645,594,638,647,604,645,615,613,627,645,619,629,625,577,589,628,628,588,599,652,619,612,617,659,597,591,627,601,628,645,625,561,599,548,574,583,590,578,572,568,561,559,573,591,563,563,579,556,555,577,583,553,564,568,569,538,546,576,567,544,533,566,564,578,583,537,565,563,556,568,576,560,550,525,519,564,561,579,557,566,557,598,481,468,487,490,488,480,483,481,489,477,481,482,489,481,488,493,490,488,476,471,483,488,500,494,475,488,492,475,478,500,501,484,472,492,498,493,496,500,485,468,504,497,478,499,477,495,468,462,558,556,552,545,569,543,545,568,550,550,535,552,553,559,579,562,547,569,548,538,567,557,545,541,534,548,542,561,564,537,568,561,535,549,549,570,550,569,547,557,566,556,556,562,580,551,498,486,486,490,487,500,486,466,505,492,504,453,461,473,470,502,490,502,483,471,486,489,496,477,496,495,489,491,481,505,483,473,501,489,499,486,486,495,485,472,475,526,502,490,513,521,498,486,461,505,494,511,508,500,480,446,514,507,524,464,490,550,465,470,476,537,480,521,460,499,494,494,585,575,558,458,429,508,477,465,491,512,508,579,585,586,575,586,597,581,584,575,581,591,588,586,597,575,593,586,576,561,582,567,571,580,570,580,559,585,584,587,578,587,570,576,597,583,567,574,588,572,593,567,570,622,546,553,541,525,549,495,534,542,522,535,516,528,538,554,508,548,541,531,523,530,571,531,519,522,538,546,568,531,541,540,564,525,513,554,512,539,551,514,541,544,539,558,512,531,542,473,461,461,458,467,463,476,475,476,456,458,482,468,445,465,471,484,471,479,472,445,468,472,470,469,469,465,475,478,471,457,470,480,475,460,487,469,469,468,472,460,477,490,515,542,525,579,538,587,571,585,521,499,538,519,533,545,556,588,553,601,506,553,507,540,518,584,548,547,530,585,600,504,555,513,582,541,559,588,547,522,603,548,555,513,531,539,558,539,553,532,534,530,543,517,532,526,526,529,520,527,508,560,556,539,520,542,509,523,530,539,537,533,524,544,567,548,536,552,523,542,550,540,486,476,486,462,467,484,464,472,482,453,459,473,500,469,456,474,475,466,477,480,480,455,495,466,472,457,494,446,461,477,484,458,445,476,460,479,459,469,466,462,469,453,448,451,453,453,459,448,439,448,449,434,445,454,460,443,441,453,445,452,453,457,456,451,453,453,450,450,458,444,449,443,448,460,449,455,436,448,444,457,450,438,448,447,447,459,446,447,434,441,455,456,449,467,462,452,439,439,455,455,451,465,474,428,450,454,450,452,443,449,447,460,450,450,439,443,454,461,434,447,440,439,453,448,426,458,454,447,427,454,439,440,443,438,443,436,448,454,448,442,433,443,437,442,444,433,433,445,446,432,445,444,459,437,450,448,429,454,446,440,439,443,442,441,435,443,452,438,436,442,438,447,442,435,440,443,439,437,607,566,608,572,567,593,538,536,538,575,595,519,560,519,582,515,593,565,541,517,571,552,544,553,566,550,572,573,575,593,557,563,604,612,584,570,580,557,558,567,570,545,517,518,492,508,536,537,535,499,527,518,535,527,518,522,544,550,508,517,518,511,520,531,517,533,535,532,508,526,527,522,517,515,541,511,517,545,520,522,531,535,524,502,508,472,440,473,467,476,476,453,459,459,471,462,479,461,458,465,453,462,466,452,459,466,470,474,463,466,459,468,450,461,461,449,467,449,442,459,456,463,472,464,464,465,453,460,469,460,476,483,471,589,575,567,581,525,503,572,569,581,606,483,593,537,537,534,521,579,533,566,553,545,553,519,587,538,569,540,576,563,570,549,524,606,568,589,542,568,608,555,584,604,542,558,573,557,607,619,591,578,616,612,611,620,583,603,590,608,581,579,581,619,602,584,608,579,602,583,605,602,608,586,586,587,597,591,581,610,604,584,600,603,590,616,624,603,587,607,599,606,506,489,501,489,502,518,511,494,507,528,518,520,513,514,506,514,521,465,504,489,515,542,501,515,511,538,497,535,507,501,534,533,465,503,514,497,492,506,456,441,503,457,465,458,480,478,447,487,447,468,458,439,470,464,462,475,439,448,452,440,433,461,472,475,480,468,455,476,466,487,453,497,488,468,460,488,472,450,451,565,588,568,607,574,602,568,563,576,545,588,592,558,576,585,598,553,574,569,587,631,584,554,598,581,587,594,592,603,579,592,579,581,598,576,590,561,584,579,623,587,565,601,514,507,511,476,470,449,471,492,468,491,461,484,480,475,468,481,464,451,475,466,478,448,463,485,478,486,490,458,474,485,474,470,483,500,448,499,473,488,498,489,511,449,435,430,448,433,452,427,421,404,424,440,451,437,440,442,445,411,440,442,423,429,442,435,441,431,451,435,435,448,436,433,445,449,431,425,414,440,418,453,431,429,650,659,660,639,639,631,621,611,639,633,627,615,641,655,634,634,606,657,606,637,601,629,622,611,622,645,618,608,634,609,623,648,611,622,640,645,596,611,637,633,612,621,677,631,589,585,609,613,606,585,594,594,614,594,607,599,603,599,562,577,609,637,628,630,597,623,597,576,642,601,626,608,546,619,584,613,575,600,594,592,603,583,657,587,606,601,525,557,547,567,546,553,549,546,521,542,520,523,528,550,561,568,541,561,537,563,509,556,545,546,532,542,542,508,557,550,551,542,550,545,534,536,562,535,540,539,560,468,478,485,443,479,497,453,490,490,468,504,514,476,526,501,484,490,493,517,484,511,505,500,515,489,519,501,489,512,497,501,475,504,458,483,485,501,478,483,495,500,491,498,564,620,624,646,598,579,644,639,662,624,646,639,611,628,657,635,602,613,605,620,617,633,651,656,604,619,624,622,619,606,616,626,584,624,642,656,627,621,630,601,639,655,615,627,616,597,608,616,602,641,622,612,612,620,622,624,630,634,607,619,594,606,625,596,613,612,606,626,615,600,604,600,631,613,622,620,624,615,615,589,611,606,600,610,577,607,578,595,593,576,574,584,564,570,604,589,556,581,608,576,619,602,573,555,575,605,574,581,587,593,591,580,590,581,600,589,566,565,574,591,571,581,514,559,616,585,577,612,558,539,593,582,562,569,630,549,555,591,582,613,580,552,576,606,567,560,610,598,633,516,591,535,549,577,576,578,626,549,581,593,585,530,557,589,587,573,619,610,555,561,595,578,596,584,586,553,589,569,575,578,593,576,595,565,579,559,544,599,592,575,609,557,627,563,589,580,601,568,588,577,632,571,590,593,551,578,553,581,579,564,550,591,523,500,491,515,516,489,506,511,490,512,522,503,507,480,503,524,478,517,482,524,534,492,524,514,492,477,492,506,502,505,514,467,500,470,501,490,518,530,485,494,497,483,435,465,435,455,443,432,467,444,464,441,439,439,458,447,459,454,452,450,461,450,450,449,465,456,461,421,433,472,457,442,443,455,442,459,440,442,441,462,437,435,449,441,607,635,602,617,622,599,591,655,629,652,590,603,618,642,612,608,614,615,558,604,606,641,606,575,622,628,578,632,575,624,608,566,597,592,602,615,617,612,573,638,605,602,538,525,500,530,476,521,525,508,536,538,528,528,511,541,526,520,512,510,503,511,521,507,530,499,526,496,523,530,523,492,505,511,518,511,553,505,512,488,505,532,514,414,469,455,458,457,434,430,469,429,431,432,407,442,452,413,460,432,459,458,414,432,483,463,445,438,448,444,446,452,461,448,473,440,424,433,429,438,589,625,606,604,588,639,582,621,591,567,622,603,621,634,577,605,604,615,616,629,618,616,614,614,619,614,636,631,623,621,612,623,612,594,608,617,628,608,573,605,596,603,614,613,607,525,518,530,527,505,528,521,532,517,516,506,504,513,537,537,488,502,528,501,496,532,532,499,530,503,512,553,487,547,548,516,498,510,504,510,518,533,498,527,524,522,450,489,448,449,438,465,493,451,479,455,459,479,500,469,483,476,479,455,488,468,473,491,492,481,466,478,476,458,496,491,467,469,476,449,499,461,477,456,494,478,483,482,460,472,465,472,480,565,577,576,550,572,571,582,566,558,571,562,561,542,571,568,562,562,568,568,569,569,566,543,556,572,577,574,571,554,554,568,532,535,549,557,593,569,550,563,559,554,565,587,535,556,587,578,562,580,580,586,581,593,566,572,582,594,574,588,573,577,587,576,572,590,564,554,587,589,567,570,564,559,582,573,574,594,571,585,565,569,576,547,569,563,550,553,555,557,567,555,557,547,570,551,551,550,560,657,661,676,667,671,680,674,690,659,662,664,684,671,683,680,666,672,661,668,677,670,667,678,649,673,673,671,672,646,674,658,663,663,677,665,680,656,673,664,666,661,682,667,671,654,672,655,678,667,672,674,667,668,688,671,657,671,663,673,659,671,669,655,671,667,666,671,673,664,671,676,679,666,680,693,674,641,670,679,674,665,674,671,666,668,668,682,673,651,675,679,672,683,669,653,678,665,672,662,680,677,667,673,669,673,671,676,680,675,670,677,671,673,648,661,677,670,655,660,678,674,676,678,664,683,676,674,662,663,655,666,673,657,667,655,678,665,646,671,651,669,680,660,677,649,696,668,656,665,667,676,665,653,680,684,666,679,667,682,656,675,668,659,680,684,682,676,659,676,670,671,672,657,668,689,689,680,673,660,645,696,668,683,676,671,662,684,659,668,669,664,669,667,685,672,676,669,678,663,664,680,686,671,670,676,670,668,668,673,676,667,675,679,676,685,665,686,673,675,676,669,677,686,676,682,669,673,685,655,678,655,668,667,673,679,671,672,666,669,667,677,657,663,662,668,680,690,663,660,668,688,674,660,679,664,685,673,673,673,662,682,655,684,668,682,678,666,662,667,665,668,666,674,677,664,677,674,671,646,664,676,680,675,682,664,692,665,674,660,659,665,663,687,661,674,669,650,670,677,653,694,688,690,675,682,647,682,670,668,663,669,679,674,656,678,658,668,679,668,675,683,693,659,653,687,674,673,661,661,654,675,663,666,674,657,675,656,681,685,664,669,669,676,673,666,659,668,650,664,657,665,687,678,667,675,662,676,658,672,681,662,655,686,671,653,650,672,674,673,669,666,685,670,682,673,670,659,671,668,666,689,678,672,674,653,675,657,680,649,692,671,688,678,674,675,673,659,658,668,683,676,653,670,664,685,681,658,651,681,655,665,675,650,670,693,679,682,673,670,668,685,663,678,669,670,660,663,677,658,677,672,663,685,674,687,698,660,685,670,683,660,660,668,662,647,678,668,678,684,659,668,649,676,669,658,662,670,674,682,653,690,660,669,653,672,676,673,681,684,661,675,690,664,666,670,674,672,671,668,685,663,651,665,683,670,652,666,689,677,663,669,674,696,674,670,678,684,678,676,663,675,666,673,646,675,651,667,662,654,675,646,670,680,668,666,665,666,669,673,675,661,664,664,674,675,666,671,685,688,676,676,669,664,680,691,683,668,684,677,673,672,676,671,649,660,674,667,667,673,660,683,681,671,676,672,676,651,688,671,668,650,670,665,658,677,668,665,648,692,662,662,677,669,673,665,671,675,664,667,657,663,671,674,683,655,669,673,660,665,665,663,670,675,661,680,670,669,675,648,662,686,653,676,672,672,675,653,662,659,661,665,681,681,667,655,681,659,675,676,679,679,655,666,677,677,667,675,676,663,681,652,665,684,669,637,685,686,675,670,668,662,639,665,667,681,684,676,692,678,680,659,668,666,649,659,657,675,669,670,683,663,677,669,680,669,667,674,666,664,679,657,678,671,681,682,675,673,679,664,686,674,673,693,681,667,678,682,661,661,686,668,661,680,678,659,653,672,663,661,655,659,676,667,681,661,661,659,683,692,660,674,673,672,665,693,679,662,661,667,676,691,653,659,667,678,667,675,674,674,671,675,675,659,674,669,686,674,671,668,665,685,667,660,673,677,677,680,663,667,675,676,684,658,676,661,668,687,666,673,661,685,660,667,680,679,645,665,686,681,657,648,688,657,664,672,681,661,654,655,672,653,673,663,671,681,677,670,679,663,682,679,672,664,677,672,666,677,681,649,674,675,681,664,661,648,670,674,683,655,665,649,644,661,662,673,670,671,678,671,664,678,675,676,659,669,678,665,649,676,684,692,663,666,664,696,675,670,672,690,666,676,677,659,672,680,663,676,682,676,667,671,655,666,677,682,664,664,672,672,665,661,664,671,647,673,666,669,681,663,680,671,677,688,661,666,687,674,683,664,670,674,664,673,676,674,685,664,666,657,675,648,689,648,663,667,689,655,676,670,671,678,678,678,685,674,675,666,658,657,680,681,641,691,683,666,674,667,653,669,668,690,667,682,658,685,685,675,655,670,665,659,660,671,666,666,650,671,675,675,663,684,663,672,669,662,666,679,667,674,659,676,681,662,666,672,662,660,675,660,678,666,660,681,660,665,664,656,673,673,649,656,669,672,673,681,672,678,674,647,674,685,688,668,662,674,675,677,675,680,678,677,668,665,659,670,671,657,662,669,683,676,666,666,673,674,669,676,665,677,644,684,676,655,685,669,687,664,659,671,645,670,663,668,642,670,665,677,671,663,681,674,665,680,661,682,677,667,668,684,663,673,669,664,670,669,690,660,672,688,675,662,670,687,668,664,669,667,676,663,679,657,662,649,667,661,671,683,664,676,676,675,669,680,666,662,674,666,671,678,679,652,670,666,667,677,668,666,651,671,684,653,661,680,668,693,663,680,655,666,661,665,674,673,659,664,664,654,681,673,667,671,667,661,658,677,660,664,656,667,665,682,665,675,664,672,678,656,654,663,671,657,681,677,690,674,663,658,654,661,701,665,667,673,679,665,664,668,657,667,661,658,678,673,650,673,659,676,657,670,657,668,695,692,667,671,663,677,677,673,661,657,682,686,685,680,663,672,665,665,677,666,676,676,667,670,655,673,661,670,670,672,675,680,674,668,664,688,644,661,678,666,650,658,669,668,671,689,662,671,673,687,673,666,673,668,649,673,672,667,672,682,655,666,670,660,691,670,684,665,684,682,675,676,666,657,667,669,687,675,671,664,670,663,665,672,674,670,677,668,673,677,670,665,676,690,676,676,681,679,641,665,675,667,666,664,675,675,674,665,670,675,683,667,682,663,670,664,671,682,682,667,661,681,673,673,658,665,649,659,658,685,669,672,661,682,671,692,685,655,663,665,655,664,665,675,678,662,674,668,661,675,691,668,677,689,671,676,672,670,673,666,663,666,668,663,659,661,671,682,663,693,675,685,661,675,674,674,680,668,688,665,668,658,669,676,676,663,683,669,687,656,655,654,677,669,656,673,676,664,669,686,677,662,676,653,663,681,663,662,655,653,686,666,657,671,675,682,679,660,667,676,646,658,692,673,681,648,670,679,678,658,671,669,657,670,680,663,680,679,680,658,658,688,653,658,683,681,685,672,698,686,663,661,672,685,646,687,673,652,675,652,662,672,669,665,659,662,668,665,676,674,658,673,672,674,681,667,663,668,659,683,682,672,676,664,662,669,674,682,661,682,686,662,678,666,655,677,654,671,682,663,653,660,678,680,667,666,668,660,668,675,643,661,669,699,665,694,666,685,676,656,670,674,662,660,652,665,680,665,671,677,677,673,678,678,684,665,653,681,666,660,679,681,660,668,673,681,672,662,660,678,672,670,661,665,664,666,681,675,662,677,672,675,646,673,655,661,667,669,671,682,674,680,654,680,650,656,671,667,673,693,646,666,671,669,675,663,663,667,655,644,662,681,651,682,679,671,665,685,675,664,668,658,668,678,675,673,661,676,655,670,665,664,671,672,656,667,679,680,668,660,690,683,657,674,680,653,670,674,675,666,676,665,674,676,655,670,663,675,678,672,670,674,675,664,676,676,672,672,667,681,676,663,660,665,659,675,661,668,663,669,654,690,667,672,664,665,667,662,661,663,669,668,673,678,663,653,667,675,657,673,668,675,653,672,679,669,653,671,675,658,666,680,679,691,668,663,675,672,649,671,677,677,679,668,674,686,680,657,649,664,679,679,681,667,675,646,679,680,665,674,668,670,679,666,675,677,674,671,663,688,666,652,657,672,678,674,688,670,686,661,673,667,649,648,659,671,669,648,673,655,678,666,653,655,683,662,664,680,690,684,684,694,667,678,675,659,673,676,681,676,660,675,648,663,684,661,676,669,669,682,654,687,645,666,672,681,666,681,674,650,669,658,656,679,670,678,664,674,680,671,648,664,670,683,668,663,666,677,644,664,664,679,672,674,673,665,671,686,662,669,663,669,674,672,655,674,674,673,674,666,674,666,672,666,668,671,668,658,654,671,663,662,662,691,683,665,666,681,669,671,673,660,673,676,678,685,661,673,662,676,677,661,663,658,657,669,671,686,686,681,671,663,671,673,662,665,660,674,681,646,679,676,665,662,689,659,658,676,667,657,666,654,674,685,672,665,665,649,678,655,672,689,663,686,671,685,686,667,658,667,665,672,660,651,668,669,668,668,656,658,689,675,661,674,645,673,683,667,669,667,689,672,686,675,678,680,681,667,671,660,669,667,687,670,657,669,662,683,663,665,679,665,674,661,681,680,642,652,671,666,665,677,669,652,665,674,666,689,665,659,669,660,681,670,678,677,678,643,676,667,655,659,677,681,658,657,689,670,652,662,689,686,673,684,676,698,675,661,672,662,689,662,666,672,674,665,668,656,678,672,669,676,659,672,652,662,673,685,663,671,663,675,657,674,669,670,666,667,678,677,663,658,650,675,661,657,680,661,684,666,658,646,685,676,679,659,676,672,681,674,675,668,675,645,656,658,670,668,681,667,676,663,667,666,675,657,665,669,675,658,667,654,669,648,665,659,675,648,659,670,664,668,669,649,667,651,665,666,665,663,666,679,667,673,665,655,679,682,667,663,648,671,665,657,668,665,677,672,666,670,648,668,690,648,669,667,673,677,672,684,658,670,679,683,677,668,656,678,677,691,671,661,659,679,670,663,665,660,669,674,669,672,687,678,665,668,669,680,676,668,669,667,662,681,691,664,675,664,679,659,667,665,665,675,651,672,682,679,682,663,668,668,679,684,669,677,669,652,662,678,668,672,664,672,680,658,684,672,660,682,647,655,654,676,645,666,670,659,693,662,653,684,674,657,646,659,669,663,661,664,680,667,671,671,672,665,668,675,675,691,683,671,661,679,685,673,672,666,685,664,676,682,675,675,683,670,674,669,675,695,679,657,663,675,679,684,664,678,673,679,644,662,661,672,695,681,655,678,686,660,664,668,654,670,686,667,666,657,680,652,664,658,674,649,656,662,673,670,654,678,670,681,671,693,678,682,669,669,682,671,671,668,664,674,677,657,675,676,650,688,690,671,662,669,670,664,657,661,690,674,679,669,666,679,664,649,661,660,680,655,659,673,664,676,677,663,667,682,664,654,660,662,671,683,668,665,671,658,664,659,675,664,686,684,670,667,675,674,680,683,677,670,664,673,665,674,665,660,675,670,665,677,667,668,662,681,685,678,662,676,669,672,664,669,697,672,668,663,668,673,691,659,685,662,669,670,664,677,675,649,652,662,665,684,674,679,670,688,671,688,678,662,688,665,668,663,664,670,664,661,681,658,685,660,675,673,668,667,664,673,673,667,664,671,663,669,648,668,668,678,668,665,684,679,676,673,670,659,658,653,693,669,663,675,670,646,678,651,670,662,676,668,658,673,668,656,657,671,675,681,678,689,672,656,664,665,683,672,667,689,678,651,682,665,669,678,683,680,658,676,658,671,683,671,688,659,674,665,674,670,654,661,677,671,657,670,672,683,676,681,663,673,660,662,679,683,689,658,646,675,677,685,671,654,677,668,666,672,680,664,681,671,682,670,682,686,669,661,667,669,675,670,661,659,661,661,674,661,671,652,669,664,673,686,667,668,667,664,669,661,673,676,654,661,685,664,668,669,685,670,651,667,673,667,658,680,672,678,683,680,653,679,675,659,665,648,678,668,667,669,674,661,689,670,663,666,667,665,654,669,661,674,669,659,677,652,672,683,673,674,682,686,672,676,665,667,666,691,653,660,660,678,653,677,661,663,677,669,684,671,660,652,679,679,666,670,672,666,671,665,669,661,689,671,672,657,678,685,689,667,666,664,678,662,668,667,648,682,657,674,665,660,669,667,670,665,679,671,663,661,651,672,649,672,669,662,673,680,675,648,665,675,681,679,669,685,664,667,663,666,672,668,674,689,670,655,664,651,672,685,673,670,685,670,681,650,649,670,667,653,661,664,671,656,674,662,671,670,663,676,665,676,646,667,655,670,671,660,654,676,669,651,666,669,666,663,666,653,659,665,666,679,678,660,684,663,655,675,676,660,666,665,680,675,668,649,652,655,664,661,680,673,690,646,661,687,669,673,677,672,669,655,671,688,682,663,670,657,666,693,674,672,681,669,661,652,679,665,680,681,672,675,685,662,673,672,679,671,688,660,663,642,663,680,671,672,669,664,665,673,659,670,674,663,670,682,645,661,667,675,674,664,685,670,660,662,673,679,664,662,695,693,681,668,684,661,665,666,659,659,670,675,681,641,662,679,666,672,652,684,673,653,679,660,684,655,657,664,667,673,662,675,663,681,674,689,673,671,653,666,682,673,684,668,665,647,665,684,668,671,663,656,677,677,668,682,675,675,661,670,661,669,675,665,682,652,673,680,667,680,671,655,655,661,663,674,657,691,671,681,663,673,675,668,671,669,674,680,658,663,658,659,670,681,666,675,667,653,684,680,666,677,672,657,653,664,657,660,660,665,670,661,668,677,687,662,652,672,676,672,667,671,670,669,670,642,662,640,671,664,674,674,666,680,686,668,670,675,675,671,682,657,655,681,663,671,681,673,647,662,681,667,664,647,652,664,664,670,673,657,687,681,681,682,667,661,652,688,664,648,681,657,677,690,661,662,679,687,659,674,672,666,676,663,668,676,659,652,659,662,657,684,667,680,688,682,670,655,680,680,662,667,659,679,667,683,671,671,670,684,678,677,682,678,658,674,671,669,690,669,654,659,670,675,664,660,671,674,672,682,668,655,685,663,665,668,674,676,689,665,675,681,674,674,656,654,683,675,671,673,678,662,659,667,666,678,682,680,664,672,677,676,661,680,675,659,669,674,662,664,655,679,683,661,668,681,657,662,669,696,668,671,673,663,673,665,659,666,684,655,679,669,689,681,678,657,674,674,664,657,659,673,658,674,677,671,666,669,662,680,683,675,667,666,675,661,679,667,675,677,657,671,673,667,662,684,669,663,651,661,663,654,681,668,679,672,654,666,672,666,668,675,662,640,674,670,661,666,677,662,660,670,663,681,666,674,661,684,681,681,665,676,666,665,672,683,674,670,672,688,667,689,653,688,678,679,668,670,669,669,673,688,685,673,671,648,656,672,670,665,692,679,654,689,669,680,652,672,679,676,666,672,685,683,664,665,660,673,665,660,659,682,683,682,661,669,694,674,686,691,683,643,672,662,650,661,660,661,664,676,690,678,674,675,666,667,660,661,656,671,669,673,659,674,662,666,653,672,653,671,672,667,655,678,678,674,662,670,673,687,669,664,671,667,680,668,671,682,675,672,702,681,658,669,675,649,665,664,673,674,665,670,662,675,675,666,666,678,674,673,651,678,675,683,677,655,673,672,679,659,676,665,678,659,647,677,677,668,670,685,671,664,668,663,681,647,668,683,670,674,661,655,670,672,655,670,687,681,694,684,670,692,661,690,640,672,675,659,658,685,662,665,671,669,671,673,671,669,671,672,662,677,663,666,674,666,684,664,661,670,680,674,676,671,658,671,673,682,653,684,652,642,675,679,676,669,664,670,674,667,657,656,675,664,655,683,669,656,690,659,665,663,675,633,683,672,663,677,664,663,672,670,679,680,674,649,681,683,678,662,683,674,678,666,676,671,675,696,679,668,652,675,679,660,662,657,681,679,678,661,677,686,673,668,673,667,670,646,687,665,677,681,679,669,658,674,667,672,674,667,678,671,670,669,679,665,680,679,671,664,676,677,672,678,673,655,673,644,680,676,679,673,664,670,677,653,660,680,663,666,670,687,654,660,664,642,663,672,654,680,660,664,668,664,666,656,669,675,678,680,653,678,659,671,672,665,661,688,671,656,671,665,667,672,681,676,656,689,675,660,655,678,691,676,670,679,674,677,653,669,661,680,671,674,680,675,658,658,679,665,680,665,663,669,671,653,697,648,662,668,681,674,654,675,651,669,666,652,669,666,683,661,685,652,683,671,670,678,671,660,653,651,670,669,659,682,652,681,660,693,670,666,663,653,671,672,681,672,674,663,661,658,677,660,671,680,667,663,658,671,665,675,674,665,676,670,649,679,679,657,673,664,672,667,669,668,675,680,692,668,675,675,674,665,647,672,673,672,659,681,664,668,676,667,668,689,658,687,674,661,683,672,676,659,672,683,668,665,656,676,660,657,677,658,673,658,677,663,672,694,671,659,680,667,671,685,681,678,675,656,672,666,673,670,660,669,677,662,653,659,679,658,683,668,683,673,669,667,680,655,665,662,660,673,666,661,669,669,655,663,680,674,691,682,669,665,661,680,684,668,674,679,675,664,654,673,662,657,677,672,658,669,696,664,672,679,667,679,667,679,663,679,663,682,683,671,685,675,650,673,684,657,662,664,672,677,670,655,675,673,655,666,667,699,671,674,663,672,678,679,655,672,654,667,684,663,676,664,653,683,666,668,688,671,660,687,660,673,679,678,693,664,667,681,669,671,680,676,660,679,684,685,678,652,676,667,668,654,685,658,673,679,669,681,658,668,655,667,652,683,690,657,675,669,665,665,667,684,677,666,679,672,675,649,660,648,698,681,675,686,673,674,659,693,678,664,663,672,686,677,680,682,671,671,655,675,671,673,670,684,672,677,659,663,658,669,653,682,667,680,678,659,649,667,660,664,675,668,664,660,677,674,670,669,671,665,661,663,666,665,659,654,669,686,672,672,661,687,691,654,662,675,647,670,678,660,664,688,658,663,653,660,675,678,652,676,672,662,664,669,659,654,686,678,679,655,670,683,665,682,677,686,671,679,685,671,658,652,687,670,657,661,676,660,678,683,688,659,675,675,666,660,649,662,683,665,668,670,676,647,662,667,669,665,666,670,648,681,661,673,652,662,656,677,670,664,679,653,683,654,671,670,672,650,667,673,661,670,662,671,675,663,674,678,684,679,677,675,673,667,677,657,659,665,674,675,666,676,668,659,669,667,667,685,679,667,684,685,667,667,667,659,674,686,674,664,659,669,673,654,665,685,663,668,667,664,677,683,659,673,665,665,662,677,676,654,663,677,678,661,665,659,659,666,662,684,665,679,664,666,660,683,655,667,681,688,670,662,668,667,676,674,682,665,667,668,671,678,670,647,685,664,675,672,669,668,680,645,650,674,679,670,673,655,686,672,667,665,652,667,669,676,672,673,674,667,679,681,679,681,681,664,660,670,673,676,681,670,681,671,690,675,667,670,673,644,662,676,669,687,650,667,683,677,671,673,664,673,681,686,685,663,671,675,672,684,663,666,653,658,673,668,670,673,679,644,652,675,662,686,668,665,670,674,662,661,669,679,674,665,664,648,664,663,665,682,689,682,661,682,655,674,672,660,658,662,685,659,665,670,673,683,677,665,676,694,682,692,677,658,656,685,664,667,671,685,680,666,671,667,677,684,658,679,673,684,662,687,663,665,686,689,656,670,668,661,671,675,657,673,677,661,683,677,678,666,677,662,677,668,664,671,677,690,658,674,679,671,677,662,675,671,660,676,685,657,680,678,644,689,666,684,685,681,672,670,680,672,681,680,660,663,669,669,654,674,678,671,672,662,692,684,651,665,677,658,674,663,675,683,683,671,669,666,675,656,660,677,669,679,670,671,661,683,657,657,672,656,658,670,681,666,654,675,671,671,671,667,682,678,670,672,667,680,694,670,685,680,676,684,664,679,659,662,673,681,669,679,663,668,677,674,667,638,671,668,672,675,667,671,683,657,658,659,666,678,665,667,687,641,675,658,674,685,677,679,679,656,663,651,669,665,659,669,665,665,674,662,670,686,672,661,665,658,667,684,665,680,668,669,676,666,688,672,652,662,657,655,680,673,658,666,665,671,655,670,671,671,677,671,673,671,681,665,659,673,662,682,692,667,676,689,679,646,657,673,652,668,674,657,664,677,673,671,667,676,653,681,678,684,674,683,665,663,673,666,666,669,671,665,673,668,665,677,665,674,646,664,668,658,663,671,679,656,673,666,664,669,665,682,673,686,669,672,668,674,657,678,666,669,663,676,675,686,667,667,659,668,665,673,674,695,656,658,667,675,654,677,692,660,667,669,683,671,657,677,671,661,655,664,673,675,675,670,671,664,673,654,674,655,677,690,674,639,668,678,684,667,667,664,678,671,671,677,678,682,659,656,687,666,654,675,680,669,676,675,658,682,661,661,672,676,665,656,673,661,674,682,650,660,673,669,675,679,651,667,672,670,652,671,663,688,675,670,678,675,670,670,658,675,652,673,668,702,680,669,677,680,676,670,663,675,685,674,661,655,682,674,666,679,683,667,677,680,677,666,662,653,665,674,665,676,675,664,674,667,674,656,663,661,675,659,665,644,661,678,681,683,662,672,674,664,671,667,670,666,669,660,651,669,660,655,652,665,679,682,685,658,668,690,667,674,661,660,665,663,659,671,669,668,693,681,665,683,679,687,667,665,683,675,666,663,676,678,659,689,665,659,653,659,667,669,669,667,686,676,649,686,679,675,648,674,660,671,677,671,670,665,676,671,672,660,664,675,661,671,676,682,666,688,682,655,654,671,672,677,664,662,657,660,655,689,656,679,676,681,671,681,686,653,671,646,676,682,668,692,673,681,692,651,667,676,664,680,699,671,670,671,676,673,661,676,686,683,663,659,662,678,672,675,659,671,670,649,669,663,696,647,668,671,674,661,688,656,663,662,674,668,650,666,668,665,661,657,651,678,664,676,674,655,682,679,666,661,674,661,671,672,629,654,668,680,666,680,672,678,654,663,682,662,673,677,676,666,677,670,674,660,656,673,664,678,682,681,660,697,662,670,669,673,661,682,702,664,657,669,671,679,666,687,675,684,665,674,668,650,678,644,686,665,657,675,669,685,659,668,680,666,677,657,684,673,669,667,684,668,681,669,679,678,668,668,656,666,676,673,653,680,646,676,676,670,670,661,670,665,677,664,668,686,661,679,661,668,672,671,652,659,669,659,670,685,661,661,671,670,665,671,644,685,675,664,662,674,673,682,671,685,698,667,660,675,679,664,684,654,659,663,674,671,685,654,673,666,652,661,681,670,680,668,678,680,674,658,673,674,675,689,676,669,655,663,679,664,680,663,669,662,672,652,659,665,649,679,664,667,668,675,670,666,677,659,658,670,674,653,668,669,654,662,672,691,676,674,676,669,671,685,647,688,663,673,678,663,656,663,660,653,675,659,680,648,675,670,652,672,671,678,687,663,663,648,685,665,688,684,665,696,667,667,674,679,670,662,672,676,675,671,684,672,661,677,665,677,664,668,673,671,669,664,673,660,677,673,669,663,680,663,676,665,666,660,672,658,661,658,653,677,682,674,665,671,666,648,675,672,682,671,671,652,668,687,661,684,674,676,686,666,658,654,663,662,670,660,662,677,657,671,669,651,673,673,671,683,676,665,668,684,671,660,663,678,660,654,658,664,661,675,673,665,653,680,672,673,656,672,664,671,680,665,680,659,673,659,666,662,664,664,676,659,634,672,655,675,652,681,675,671,671,676,663,670,672,674,669,677,682,663,666,666,677,674,676,645,670,669,655,663,672,668,649,663,683,651,676,673,682,664,671,689,668,652,668,688,652,671,676,673,670,662,679,655,671,670,678,686,664,661,673,683,676,672,674,661,682,671,659,659,695,659,658,675,657,664,661,641,675,666,657,660,680,660,683,665,670,667,668,689,677,662,669,669,669,658,664,672,663,669,672,666,651,675,668,662,685,660,669,669,648,657,675,689,678,682,676,655,695,662,682,674,659,668,642,670,671,674,670,665,682,672,657,660,670,656,657,692,680,672,658,659,681,657,663,679,690,657,670,687,655,680,638,662,650,675,680,675,667,669,666,650,664,670,656,650,682,673,682,659,670,664,688,680,670,675,678,677,686,671,683,663,677,667,663,657,643,663,658,665,691,668,670,673,666,656,668,658,679,667,680,667,669,662,675,670,667,657,654,654,656,674,679,662,667,664,668,675,652,670,690,691,693,660,665,672,664,645,659,664,676,677,683,665,665,646,672,666,680,662,676,659,673,684,665,682,670,655,668,686,671,673,673,667,668,682,650,670,660,660,649,661,659,670,659,661,656,684,652,670,653,666,666,665,676,665,678,677,659,657,680,684,692,664,674,687,684,665,687,673,666,680,669,663,673,684,682,672,661,671,670,671,679,677,667,651,684,673,671,678,649,673,676,676,679,673,679,669,660,662,655,680,654,689,687,654,666,676,673,675,679,672,675,666,664,674,669,660,667,660,658,681,686,673,671,671,681,677,671,665,668,679,689,671,667,671,684,659,672,674,663,669,666,668,643,657,673,664,675,683,677,688,672,675,656,663,681,656,683,685,684,689,684,676,654,677,668,663,658,675,681,676,683,669,668,665,680,671,678,653,685,672,654,668,661,673,668,671,678,668,659,691,683,686,682,678,669,645,665,669,671,663,686,679,668,665,669,675,654,678,664,667,675,682,661,662,666,659,663,691,659,668,651,689,696,670,664,665,668,685,675,654,683,664,664,646,674,674,677,674,667,655,677,663,681,666,679,670,667,685,668,661,676,669,670,656,662,662,659,694,670,668,660,663,678,653,674,678,658,678,671,675,663,672,679,679,686,673,670,687,672,666,673,659,673,671,687,688,664,674,672,668,671,677,682,665,649,671,667,675,689,683,675,669,666,651,672,662,666,661,673,653,674,670,682,676,655,679,662,679,672,659,669,662,679,679,677,672,664,680,673,663,664,654,680,676,671,658,679,680,666,650,668,689,683,679,664,672,686,675,683,669,669,666,661,675,673,657,668,672,658,662,669,675,678,656,672,672,671,654,681,677,673,663,701,668,655,657,673,690,665,667,673,676,666,668,668,661,656,670,691,663,658,667,677,677,653,674,672,681,680,677,673,654,681,669,675,660,675,685,661,697,663,664,673,672,672,692,668,676,670,668,668,676,661,673,654,682,657,678,696,667,676,669,673,665,660,662,680,678,671,676,669,676,672,673,682,676,655,664,667,643,671,672,664,667,666,673,667,669,668,667,661,667,644,675,678,662,667,673,661,682,657,674,662,673,685,674,678,676,660,670,680,663,667,660,657,649,669,660,666,674,685,674,663,666,659,678,666,684,665,672,676,687,662,661,675,647,672,671,647,683,675,668,674,668,662,679,679,673,671,670,667,659,675,673,668,668,678,667,652,677,676,656,660,671,661,679,645,666,660,652,674,668,671,684,674,669,676,668,671,677,663,680,664,671,668,676,677,679,661,659,669,664,674,676,676,656,655,669,670,674,694,684,673,678,665,682,679,677,671,674,673,669,669,661,663,671,657,672,672,672,652,657,667,670,673,654,668,669,670,690,677,669,665,665,649,645,654,665,659,667,673,663,661,664,666,667,671,677,657,679,662,670,675,674,675,679,673,667,680,664,672,664,675,672,680,677,683,673,669,667,694,665,662,662,655,670,671,670,678,660,678,677,658,676,656,676,656,670,662,674,648,661,680,662,675,675,681,668,663,658,680,669,657,660,662,679,673,646,675,649,697,675,678,665,667,660,665,659,670,670,656,681,665,659,665,670,668,653,685,663,680,668,672,668,670,653,693,688,668,673,665,656,670,662,675,670,679,675,679,668,680,682,680,661,670,669,658,687,670,676,661,673,655,670,669,671,694,671,677,684,672,685,663,669,659,683,679,661,661,660,660,680,683,666,675,652,678,664,670,664,672,679,656,666,674,670,679,659,676,661,677,670,660,676,651,666,673,696,670,656,684,688,672,672,658,665,682,655,661,661,678,689,677,677,666,667,670,671,658,667,673,675,668,666,676,679,660,681,669,678,681,681,676,668,679,672,665,662,660,661,682,660,668,661,683,664,686,667,661,660,662,669,667,683,663,655,649,676,670,664,659,675,660,672,665,670,685,671,675,659,673,665,657,664,676,663,668,663,669,675,677,656,665,671,683,656,666,655,663,666,664,672,676,675,663,655,679,660,678,680,661,670,686,664,659,664,678,642,682,636,672,663,670,667,690,683,670,678,659,671,673,693,676,684,683,662,670,647,670,681,679,677,667,657,673,669,684,661,661,675,674,649,661,683,673,674,664,694,661,659,667,675,678,675,671,663,664,686,658,673,673,667,693,654,672,680,670,680,677,668,671,666,664,680,661,677,678,662,668,658,691,680,665,682,676,658,667,678,660,663,683,661,693,676,671,689,667,670,668,672,665,659,660,669,687,675,668,679,662,678,680,660,649,676,679,667,662,679,671,670,667,670,675,659,668,676,672,669,665,666,655,665,666,675,667,667,671,672,664,674,686,675,659,682,679,656,667,658,668,664,653,691,661,670,667,664,667,678,666,677,646,656,678,668,656,698,654,667,662,675,663,661,672,664,639,665,672,663,679,677,658,661,659,657,676,672,686,668,688,679,677,657,658,681,671,667,666,683,670,650,688,664,655,665,677,670,674,660,653,682,676,674,668,675,675,658,680,675,665,669,663,680,673,673,675,684,662,665,661,684,680,674,664,690,673,648,662,670,662,676,680,666,678,685,680,700,660,686,671,673,676,659,670,661,668,668,667,656,667,658,670,662,657,683,684,646,677,650,660,659,665,649,665,654,668,676,662,666,675,666,679,677,670,688,658,670,684,665,679,667,664,676,681,687,656,673,688,660,673,681,669,679,673,671,659,653,667,663,681,682,675,657,672,664,669,667,685,670,646,672,694,642,646,647,653,631,669,657,636,635,644,655,642,647,660,667,658,667,661,660,658,654,644,672,655,647,662,648,659,657,639,660,644,668,656,661,658,650,655,650,655,650,648,659,601,579,602,606,613,600,590,601,588,604,597,599,572,577,585,565,596,587,604,568,566,605,610,581,570,588,598,597,621,589,584,590,583,608,612,594,587,598,616,586,594,605,597,583,619,608,707,696,736,710,708,743,700,744,757,710,694,729,731,718,762,748,690,752,703,722,822,714,743,714,722,688,682,795,728,727,671,727,751,716,697,713,770,706,751,708,662,772,733,771,745,722,710,736,712,719,753,697,728,721,731,737,727,707,711,713,708,716,746,724,707,729,706,722,712,722,756,692,729,726,732,740,746,716,731,759,713,720,710,732,715,715,624,617,661,628,581,616,629,624,621,630,615,624,599,581,606,617,620,639,612,590,599,615,589,597,647,634,629,606,643,612,643,604,614,634,634,653,593,613,529,538,526,535,534,535,525,535,536,537,526,550,534,525,531,540,530,538,541,524,546,530,530,539,521,547,522,536,534,533,540,543,539,522,536,537,539,523,536,526,525,534,515,527,517,513,531,512,516,521,526,522,510,517,530,519,513,500,505,519,511,523,521,528,541,502,520,528,520,527,528,528,519,521,518,523,529,527,530,510,530,525,530,527,515,686,689,716,712,723,670,699,687,710,674,704,715,704,667,705,700,717,665,711,689,722,729,655,709,719,681,749,700,738,713,683,702,682,694,684,658,688,660,716,653,683,711,713,686,679,683,696,686,697,672,698,656,705,698,682,680,683,672,689,705,674,700,692,722,695,690,680,685,681,698,686,696,685,705,684,702,672,682,709,713,690,708,682,685,684,671,690,699,723,653,654,646,668,653,642,638,678,651,653,675,698,661,662,643,666,656,686,650,654,657,646,642,656,670,627,638,664,669,652,656,658,672,667,662,638,665,644,674,685,652,650,646,582,597,569,571,569,580,583,584,587,583,582,571,586,590,584,553,567,576,584,575,581,572,569,590,574,580,588,593,581,588,579,593,579,578,588,579,575,583,594,585,691,699,702,699,677,711,704,705,688,708,721,685,708,684,686,690,698,686,692,718,715,713,693,701,710,716,684,707,701,701,715,694,688,709,706,699,695,693,700,685,685,680,679,687,660,692,692,664,687,682,689,682,658,664,673,663,679,682,678,677,655,681,666,661,670,677,688,666,653,632,659,678,664,666,686,666,675,683,666,669,668,686,685,695,622,607,604,613,624,594,617,630,613,622,622,594,641,631,599,609,609,622,608,623,625,604,611,624,623,616,601,605,643,613,605,596,634,615,624,625,615,645,614,608,598,635,628,625,597,568,580,579,596,595,579,572,581,586,589,590,581,608,571,570,607,574,566,575,584,579,593,588,585,583,574,575,580,568,580,594,562,578,588,582,593,589,575,593,590,561,555,573,535,561,538,563,560,561,552,560,556,547,554,542,538,554,557,561,547,560,541,545,563,562,550,553,557,554,548,552,544,537,546,550,539,561,534,566,562,547,551,540,560,560,693,686,714,704,696,701,703,684,706,688,711,692,729,708,714,696,688,704,716,703,701,715,736,702,706,681,686,701,717,717,718,704,694,703,705,700,691,700,707,676,701,696,673,666,685,655,667,659,679,660,683,685,665,673,656,673,673,664,671,660,662,672,677,665,670,671,663,652,675,650,652,683,675,657,678,678,677,684,636,660,672,667,673,690,685,675,668,593,599,601,614,629,610,599,597,634,601,621,618,629,592,603,597,595,586,593,621,625,601,617,600,599,623,635,617,604,606,602,601,606,616,614,622,609,610,602,634,601,613,624,632,598,751,701,716,748,739,748,761,720,745,753,695,716,754,702,675,748,705,767,750,771,732,736,706,700,719,719,700,680,741,712,692,724,755,663,742,701,759,684,690,731,721,722,697,729,712,710,709,704,670,703,692,724,712,702,741,717,731,716,718,675,709,731,701,722,727,738,736,703,723,708,711,712,713,736,725,757,676,713,701,685,702,692,679,656,712,702,678,694,681,687,645,705,684,687,689,704,690,704,697,718,694,681,717,729,687,700,680,668,714,693,664,704,682,659,718,675,641,660,645,665,623,625,612,675,653,616,619,631,665,632,638,684,637,700,661,654,656,652,654,656,681,629,641,618,633,683,625,641,639,626,658,655,659,675,637,634,637,651,647,600,613,591,601,610,575,589,581,605,604,599,594,605,597,606,590,594,579,602,593,591,592,593,612,585,598,599,601,585,592,597,610,588,598,598,600,588,593,592,589,585,621,619,706,729,661,697,700,742,746,699,743,729,721,743,751,710,740,722,732,756,698,677,717,752,691,697,764,731,701,692,661,730,738,730,679,697,740,665,735,678,743,694,735,723,746,731,697,731,730,696,696,703,701,707,718,711,719,721,725,685,704,724,673,692,702,704,705,713,721,727,734,716,718,740,687,685,716,713,693,701,710,706,698,707,694,705,696,746,714,691,695,705,727,719,688,693,733,686,659,652,648,640,671,670,629,672,634,663,650,646,643,650,649,689,643,645,645,654,657,671,665,654,669,639,640,677,637,623,670,691,668,635,659,639,655,681,646,656,654,681,633,656,628,675,692,690,652,697,689,631,670,700,681,677,678,633,663,700,645,677,680,676,699,637,673,704,699,691,649,683,681,674,661,627,706,686,671,654,675,672,678,588,606,591,617,609,611,587,592,585,612,631,611,599,611,601,606,600,606,618,606,621,610,603,616,611,599,610,598,586,620,609,607,601,616,598,601,608,603,585,605,536,622,603,601,620,627,583,568,608,654,589,569,619,624,628,582,570,632,581,591,613,600,626,570,584,582,634,633,563,661,581,564,576,611,610,565,622,554,568,616,615,557,650,622,539,596,580,575,600,570,588,593,587,593,584,587,592,591,568,595,595,571,583,593,593,592,600,603,582,591,586,568,615,587,591,588,584,580,593,565,594,587,582,568,559,566,559,573,579,567,568,569,565,551,574,566,561,566,566,567,559,578,559,561,570,574,576,570,565,558,561,570,573,575,559,572,562,564,559,566,565,564,565,563,551,559,572,561,556,563,568,580,568,552,556,568,553,528,562,552,545,553,540,536,550,550,545,542,555,548,537,549,548,557,543,541,548,550,553,551,548,550,547,537,540,553,559,550,554,544,557,547,554,545,551,547,541,533,550,552,552,537,717,666,690,681,676,689,588,704,661,674,671,706,664,686,638,652,707,651,643,658,689,665,712,655,697,673,633,680,689,661,657,686,692,702,681,663,665,671,684,666,667,691,639,736,640,589,619,596,593,597,584,604,617,604,599,577,583,588,608,568,585,590,604,589,584,582,611,561,574,598,607,584,592,595,578,603,578,614,611,615,604,570,568,617,587,575,591,597,555,580,577,563,579,583,571,585,566,559,583,569,586,561,568,571,568,600,588,578,552,558,587,552,573,571,553,548,587,598,598,562,562,592,595,558,571,580,569,568,543,574,568,557,687,662,676,680,670,677,692,675,670,678,665,685,659,660,685,683,652,674,683,674,676,670,668,702,675,666,657,682,684,683,670,685,696,683,662,678,697,680,676,689,725,681,675,673,675,682,681,679,687,680,683,665,676,658,677,674,673,674,672,703,701,676,701,655,664,675,671,675,672,693,678,683,695,687,686,672,679,670,688,663,668,673,680,677,679,755,718,732,749,737,747,745,710,735,735,736,768,747,752,735,740,753,739,730,757,755,750,762,769,736,703,767,745,763,730,765,707,741,744,792,739,736,731,765,713,757,776,715,726,737,758,758,736,749,717,710,736,713,708,702,754,715,714,713,724,719,800,737,728,729,726,741,751,711,769,714,742,739,779,751,710,713,710,734,714,706,746,737,736,671,710,688,673,689,744,713,680,700,688,691,725,682,702,695,709,692,719,713,710,696,686,717,703,720,741,728,682,706,728,697,695,665,695,682,700,723,665,663,693,684,609,613,602,628,646,603,613,629,625,605,620,644,610,615,634,604,595,630,644,629,606,625,618,606,598,637,596,633,630,640,610,630,617,618,624,621,598,633,634,617,632,604,579,556,578,581,570,577,574,574,570,563,558,557,584,568,567,563,564,577,574,565,558,577,582,570,567,567,575,579,563,551,563,562,567,553,575,554,575,588,572,562,579,564,525,521,516,525,530,523,510,531,523,525,528,529,524,531,523,537,532,542,537,528,531,531,529,528,527,537,530,541,525,514,512,540,521,544,524,543,524,533,511,507,539,517,534,533,528,528,534,560,538,530,550,556,545,532,561,547,554,543,546,549,519,533,527,547,548,539,534,542,539,558,547,546,543,535,545,551,545,539,542,549,548,551,534,544,542,537,538,552,562,543,549,549,562,546,553,533,550,547,563,560,548,558,551,553,553,552,548,564,558,568,556,543,540,553,560,539,549,553,566,564,561,546,555,558,548,556,568,548,549,549,542,552,561,545,546,559,543,542,548,558,564,543,555,542,545,564,543,558,557,556,555,545,546,561,544,541,559,561,536,563,545,558,544,547,551,545,535,542,524,534,543,536,558,549,553,535,543,516,516,522,530,535,534,537,525,517,517,541,518,527,530,526,515,515,532,528,522,526,508,523,524,531,532,522,513,527,524,523,521,532,527,545,536,535,525,517,510,500,508,508,505,500,503,512,490,503,516,506,501,499,508,495,500,491,514,513,515,494,497,508,500,501,482,499,498,528,505,520,517,502,518,492,493,497,486,500,506,496,506,514,494,487,511,494,500,520,506,505,498,506,506,512,514,500,523,509,498,501,510,494,507,502,498,524,505,526,508,503,505,522,501,507,495,504,509,483,504,508,496,521,498,500,523,649,658,634,640,647,633,628,648,661,657,650,639,668,609,630,619,648,639,643,660,645,644,660,639,679,638,641,652,644,628,637,628,639,656,656,644,654,674,661,651,674,655,635,661,556,579,577,553,554,557,548,551,560,526,560,566,559,562,569,559,571,583,565,560,532,564,565,557,596,572,565,559,558,563,577,569,556,569,568,558,550,544,588,552,557,553,557,569,550,556,542,548,574,541,548,561,553,565,566,562,540,556,604,550,547,575,535,534,559,585,557,528,560,562,593,561,553,564,560,558,541,557,561,545,531,539,568,587,557,579,574,531,603,591,596,586,606,603,592,599,590,590,595,595,591,591,607,607,615,593,606,613,597,598,610,594,586,604,596,592,598,596,596,595,597,593,601,594,604,600,601,615,587,571,586,584,591,577,571,586,571,573,604,582,575,586,578,576,577,562,583,590,576,577,588,584,572,578,558,580,564,582,587,603,591,585,582,571,583,585,568,582,580,572,583,573,590,661,676,666,696,649,674,667,666,676,677,665,661,656,650,655,696,700,673,678,682,653,680,646,676,658,643,667,672,661,666,674,672,651,676,696,676,687,669,649,656,687,694,659,688,646,599,612,613,621,620,609,628,624,618,615,628,635,607,599,610,599,625,616,609,615,612,611,589,602,608,620,603,623,618,620,637,615,620,626,610,613,615,606,611,637,626,611,582,582,578,578,580,574,587,572,594,578,578,601,583,571,579,588,571,584,563,588,569,570,572,569,578,559,573,581,569,575,587,571,591,585,556,569,573,563,580,622,675,646,644,612,636,622,604,628,645,633,607,640,606,600,647,644,614,590,623,619,646,639,598,636,613,625,611,621,614,620,621,620,603,632,624,630,622,610,653,600,603,598,623,631,647,621,606,617,617,607,618,611,620,621,602,632,602,611,621,608,609,607,618,603,610,611,619,603,609,612,605,602,616,610,617,624,611,602,607,620,604,620,616,616,621,627,642,610,596,605,568,581,578,572,574,590,570,572,590,588,587,571,575,570,581,582,585,582,560,566,580,570,564,579,565,564,572,589,585,583,583,575,584,580,571,588,563,576,567,587,575,576,574,683,723,685,692,672,637,724,670,657,601,640,721,648,689,691,684,659,618,655,713,697,681,689,673,667,650,715,693,629,673,678,686,643,711,664,677,656,668,707,713,709,724,704,702,728,706,722,734,731,710,705,729,709,688,707,689,723,713,708,714,711,712,715,701,694,711,690,693,702,721,675,677,689,719,712,707,704,709,698,713,641,639,662,649,630,652,616,657,625,645,648,662,654,642,650,637,651,655,644,688,637,661,630,628,643,639,630,651,666,666,650,665,654,634,637,617,659,635,657,647,666,642,643,643,558,579,587,586,563,570,578,597,592,593,596,592,565,586,585,572,574,589,570,592,566,565,577,572,566,583,576,582,587,597,582,590,591,552,575,579,589,572,573,574,574,566,660,703,638,727,679,634,682,636,657,676,699,687,671,672,671,627,747,702,670,683,680,741,738,616,671,685,674,673,651,677,706,666,659,730,684,704,658,652,656,690,700,677,702,627,585,721,699,712,706,707,711,722,705,703,703,715,684,736,704,718,726,716,714,715,722,714,703,721,716,723,708,707,713,713,709,721,702,737,707,728,632,559,589,609,612,563,561,610,607,610,611,616,575,612,642,591,633,588,594,604,582,588,552,596,612,609,618,589,612,593,591,650,609,597,577,604,605,573,591,581,564,601,586,570,591,586,585,557,576,568,568,562,550,589,596,592,557,557,563,578,564,576,579,579,561,569,573,578,575,585,562,558,583,585,577,566,572,597,639,627,632,621,611,627,610,625,619,646,630,606,635,638,621,622,610,616,637,603,639,623,607,623,614,603,624,613,633,619,627,644,602,619,597,607,631,617,606,657,607,583,610,594,621,601,608,608,602,617,606,595,589,605,607,584,610,622,612,592,598,603,603,613,593,612,610,588,620,628,604,610,614,594,618,621,602,607,634,592,604,577,584,600,590,583,592,575,588,585,582,577,598,587,577,578,590,593,598,579,604,589,592,581,593,584,590,575,588,583,594,584,585,583,584,596,576,586,581,581,610,590,589,601,571,586,591,602,588,601,570,589,583,602,600,584,590,591,576,576,585,592,587,591,580,610,603,586,601,580,593,590,575,582,594,597,582,583,588,587,576,590,587,550,551,554,551,553,551,548,549,544,555,555,552,561,546,549,550,552,557,543,556,560,551,556,555,558,556,556,555,556,545,543,561,545,541,542,554,567,550,545,546,550,562,549,559,540,525,519,531,536,534,535,531,544,514,524,526,549,531,539,527,532,531,516,543,518,527,538,529,544,532,531,514,524,538,529,532,529,524,527,523,526,533,531,540,526,548,659,663,676,665,677,672,672,678,674,683,683,677,668,686,686,673,655,684,670,671,675,669,683,658,669,646,669,653,669,683,674,664,666,691,659,698,652,665,667,680,677,621,672,632,660,643,623,639,645,638,633,641,644,649,636,660,647,653,619,640,635,629,625,651,623,647,638,652,636,648,638,648,654,634,660,633,636,642,663,642,635,641,639,657,650,640,650,639,643,645,629,605,615,625,603,642,622,590,626,627,645,629,602,584,622,597,614,631,615,627,606,611,619,619,600,611,629,622,615,601,639,610,621,631,644,618,598,636,622,631,603,625,615,572,579,571,581,587,580,568,579,575,569,579,583,581,576,573,588,589,586,569,569,586,577,578,578,584,584,566,569,575,592,577,597,565,588,577,583,571,573,579,575,577,589,581,591,574,571,582,592,599,640,615,655,606,595,615,676,608,642,636,652,630,604,604,626,586,616,633,585,592,597,633,597,702,602,614,618,585,637,638,638,593,600,593,613,644,599,616,602,614,595,607,603,623,613,619,617,609,620,645,619,620,608,623,609,612,611,622,605,623,608,624,623,618,613,621,612,613,617,605,608,605,614,639,629,610,610,608,613,624,625,588,573,580,573,570,573,598,554,578,575,573,598,573,581,580,582,571,590,581,582,589,586,576,582,576,591,569,584,580,563,581,584,587,576,580,589,572,584,577,574,582,559,558,568,560,552,554,565,571,562,562,569,571,549,557,545,552,540,546,552,575,559,554,546,554,551,564,544,551,559,571,545,556,552,549,563,561,569,560,550,558,547,548,526,566,550,559,564,551,572,546,554,544,551,565,551,559,555,546,564,558,562,557,558,567,558,552,554,554,557,570,550,566,555,562,561,556,557,557,556,547,565,568,557,531,603,585,613,598,567,607,645,601,605,633,648,615,617,604,608,607,614,588,612,649,598,617,609,610,623,622,586,617,620,636,635,602,615,598,658,650,582,626,616,616,606,565,578,569,567,581,594,576,572,574,590,577,587,571,574,569,575,588,558,580,570,575,570,584,571,574,592,585,564,568,594,584,563,572,592,548,563,559,580,580,597,569,580,568,607,669,632,639,675,626,650,649,646,612,623,653,604,611,647,617,570,661,588,640,626,664,623,642,661,642,635,641,645,665,629,636,650,617,644,621,629,598,641,650,643,649,622,624,651,638,699,708,691,677,686,691,692,680,671,700,690,701,687,689,676,699,683,661,687,708,688,715,684,683,689,722,687,686,683,681,683,697,700,706,677,699,695,707,689,690,672,657,663,678,675,684,674,696,687,685,662,686,672,688,672,664,677,692,674,687,672,677,673,666,661,658,669,685,662,694,661,667,676,668,675,665,682,677,690,677,673,660,694,714,722,668,700,705,730,709,714,710,731,710,740,719,714,722,736,734,729,746,725,724,756,721,691,725,697,742,699,692,721,739,744,697,664,743,696,723,744,675,709,713,738,699,726,677,697,712,697,699,720,693,682,710,712,682,701,701,709,672,717,691,725,705,699,700,698,713,712,706,704,716,706,724,685,713,665,687,693,704,694,698,684,708,701,694,632,700,676,681,704,687,677,689,624,759,683,692,681,688,688,642,713,681,727,719,662,695,755,719,717,674,640,690,662,657,688,641,718,707,706,728,727,675,686,736,684,658,667,652,658,648,647,642,653,668,671,661,653,667,637,627,665,637,657,629,659,659,653,645,670,666,636,668,657,665,640,674,669,644,627,670,683,673,653,663,648,658,636,671,639,650,736,703,732,709,703,730,699,700,730,686,693,701,677,688,707,718,728,673,673,678,693,711,702,701,692,678,719,663,710,691,738,686,709,682,703,697,686,666,680,669,684,698,709,741,720,706,722,728,720,704,697,727,704,721,710,723,733,731,713,750,747,727,722,702,724,735,708,742,730,728,707,720,746,729,732,728,742,724,718,688,698,736,722,646,654,632,648,639,612,625,641,631,641,655,629,641,646,625,671,642,650,630,636,660,637,627,639,636,649,641,643,641,619,631,604,637,636,628,625,670,661,638,640,639,640,631,621,628,671,651,672,672,618,602,663,727,655,632,649,710,651,581,678,653,689,672,648,681,631,672,661,674,648,640,665,711,645,705,647,630,634,672,637,636,691,701,649,622,697,670,692,716,574,681,673,669,675,696,664,689,699,675,674,656,660,664,653,661,670,670,673,687,669,653,675,674,652,688,670,663,666,671,684,680,673,650,649,676,682,651,659,668,665,674,669,678,651,667,728,674,702,672,669,669,690,671,670,645,666,703,646,654,693,683,682,642,698,703,653,666,681,681,660,679,680,700,689,658,717,679,673,665,654,648,672,680,672,577,597,586,573,590,569,586,537,595,571,596,604,585,567,569,594,608,597,580,605,593,554,601,590,592,579,587,578,546,566,570,590,593,601,599,578,584,603,602,563,566,552,567,571,551,558,566,554,549,564,541,560,571,558,558,557,558,549,546,533,547,570,549,549,558,552,561,562,557,565,544,575,559,563,576,554,565,554,558,547,570,597,542,548,529,541,539,537,545,549,551,531,545,541,541,539,539,542,546,549,551,539,545,533,535,547,538,535,538,541,536,542,548,544,543,530,529,535,541,539,542,530,531,546,528,544,544,542,555,540,535,532,530,656,707,674,642,671,679,649,690,658,663,674,643,656,676,666,659,686,653,653,653,678,677,653,679,663,646,687,654,653,650,665,684,687,673,655,668,666,668,672,672,675,565,563,604,594,586,575,615,580,584,596,587,586,599,586,579,595,605,577,589,581,584,582,601,595,572,582,587,572,591,595,582,591,582,599,590,562,590,606,602,576,582,654,607,613,567,595,616,586,589,610,544,576,553,570,627,550,566,577,560,636,573,552,576,636,525,639,609,632,579,595,574,558,584,628,569,641,631,570,532,578,568,566,561,559,597,661,611,636,601,576,579,582,582,580,557,570,573,588,567,574,575,570,573,576,574,572,565,578,581,573,564,578,563,575,562,562,588,586,561,571,572,590,571,581,592,565,571,566,590,570,574,610,686,644,660,654,665,647,677,681,705,678,712,671,684,738,693,675,609,656,658,613,623,660,640,695,645,671,642,701,658,670,699,669,675,686,695,658,720,687,676,656,675,676,635,675,681,659,665,667,690,695,671,677,685,660,659,676,672,685,663,674,671,673,662,652,683,668,665,666,670,682,675,678,671,666,677,677,690,676,667,665,678,682,671,684,684,660,679,678,754,765,726,678,707,699,712,701,739,754,696,766,703,740,720,711,705,731,702,708,738,702,726,730,728,728,698,734,696,714,674,719,713,697,741,713,744,693,708,731,737,766,727,744,687,733,698,696,715,697,723,701,713,726,711,712,709,720,728,727,714,697,709,724,718,699,737,728,693,703,727,707,706,712,717,703,708,718,708,718,706,735,753,708,667,704,689,698,706,675,679,681,666,669,695,703,668,700,695,704,712,698,664,732,694,695,693,692,670,707,686,707,677,711,711,707,672,687,696,685,708,679,715,677,691,685,692,696,693,669,684,676,679,683,684,660,701,676,652,695,679,688,694,665,677,669,704,663,679,667,678,685,663,682,671,670,659,657,660,708,695,667,665,650,672,703,631,679,669,679,665,665,687,675,667,705,699,686,668,682,686,642,660,688,681,682,699,643,695,683,677,680,689,687,680,684,672,678,696,690,697,659,675,685,667,644,678,686,700,667,676,659,660,665,663,696,675,682,673,687,696,654,664,669,675,662,681,671,675,672,680,661,695,682,692,655,698,687,664,686,641,665,640,673,681,693,667,664,677,672,668,665,676,672,669,687,689,701,691,674,660,677,668,673,689,671,690,677,688,660,668,677,653,691,699,701,701,655,701,686,678,684,677,654,689,690,649,686,674,670,659,687,698,684,667,668,686,682,654,694,677,667,692,617,619,614,614,603,611,610,627,613,654,618,617,657,610,623,617,597,600,607,626,628,622,612,616,632,635,631,619,581,586,618,603,591,619,624,634,616,614,621,634,620,638,613,601,613,655,624,632,700,695,611,640,679,581,652,574,682,627,609,656,678,673,666,629,662,679,622,647,569,668,653,627,612,611,657,600,649,595,619,668,596,654,599,644,724,661,667,650,644,693,705,699,704,679,672,700,658,682,685,688,689,670,689,697,695,679,710,702,701,684,710,684,675,713,713,708,704,686,674,687,664,701,676,696,712,673,690,694,677,671,671,716,706,678,675,684,691,697,678,701,693,679,675,672,700,682,695,689,669,667,698,685,674,673,695,660,668,695,676,673,670,710,674,674,671,664,692,683,704,650,682,669,700,686,699,653,592,621,612,634,604,620,639,624,633,618,610,641,615,597,609,601,620,627,612,598,596,618,602,590,607,626,616,600,620,620,612,594,625,634,593,610,612,597,620,613,567,646,571,563,586,589,594,589,569,587,564,576,574,576,570,558,560,568,583,574,555,581,565,564,589,565,562,574,542,548,576,563,570,554,592,564,573,577,576,550,588,589,596,564,578,562,599,562,575,715,714,763,721,718,730,693,747,721,703,714,697,712,718,743,712,748,729,750,766,724,712,712,716,737,715,726,721,717,733,735,724,722,728,725,711,666,686,734,725,737,710,705,729,696,754,669,643,658,674,679,638,663,654,634,659,622,691,644,660,651,658,651,626,666,647,664,644,665,642,655,667,677,672,663,689,684,646,657,643,651,674,650,648,649,649,683,629,628,668,612,629,633,604,683,616,586,619,606,603,593,623,578,662,594,676,651,578,576,642,651,599,619,632,628,616,615,631,613,575,614,564,600,634,671,671,572,628,576,602,568,690,681,701,703,712,683,700,701,698,682,692,691,701,684,686,688,690,707,700,703,697,708,681,706,703,689,685,681,684,694,697,715,699,699,711,689,704,696,704,703,682,662,718,669,695,682,695,688,692,688,679,705,689,665,723,694,694,697,682,699,697,702,691,671,713,685,682,691,694,679,670,671,681,676,687,679,681,689,684,685,682,676,684,681,673,691,686,736,685,654,657,674,691,668,691,652,677,685,693,685,700,670,647,687,653,664,691,660,687,696,662,682,681,692,667,679,682,706,669,660,647,711,690,682,678,683,674,665,669,662,686,674,649,683,661,666,706,681,683,675,666,696,682,668,658,665,694,658,671,677,671,662,660,675,686,668,662,670,675,683,701,685,635,674,672,665,688,694,687,657,698,686,684,704,672,690,676,680,660,691,694,656,698,659,662,659,675,692,692,698,698,700,658,650,691,670,679,662,674,679,654,660,694,664,672,682,671,649,669,685,684,711,668,687,683,675,660,677,668,701,697,679,671,679,715,681,719,678,673,669,706,680,686,697,692,691,689,686,707,701,700,686,668,686,703,690,686,690,677,693,699,691,694,671,690,696,718,691,711,692,672,690,663,694,589,643,599,609,563,590,638,623,598,611,635,617,567,564,617,609,567,605,617,625,564,580,594,595,599,600,624,636,609,639,573,562,504,615,586,623,588,592,577,587,535,664,551,604,547,597,622,615,616,620,593,593,587,562,648,590,568,609,626,582,610,596,638,617,589,611,637,604,607,618,564,631,598,641,594,603,618,610,606,595,602,597,603,524,519,535,533,540,529,544,522,510,524,527,515,538,527,529,516,526,530,544,537,525,527,526,530,528,508,526,524,517,530,528,533,524,538,530,531,531,530,515,537,539,523,527,518,522,540,515,532,523,655,659,642,652,655,659,662,642,652,657,653,665,659,634,668,660,644,630,640,668,649,658,657,660,649,636,642,635,666,654,646,653,679,659,641,645,649,639,652,652,657,638,667,699,663,680,715,691,652,710,667,660,657,658,679,677,673,661,669,645,670,718,678,655,712,694,675,714,667,663,688,651,674,647,660,661,651,675,702,659,668,652,672,701,685,654,673,645,693,678,694,712,656,718,688,782,685,721,747,654,692,672,681,668,712,659,697,700,668,731,704,698,689,684,709,682,716,681,699,660,681,685,733,729,654,691,683,727,681,714,640,678,679,697,685,663,661,621,670,633,634,672,650,665,679,663,660,673,643,688,671,647,658,673,660,654,658,644,646,669,663,663,652,661,646,638,635,663,659,652,665,665,638,653,635,654,625,644,670,652,662,635,686,695,749,701,707,680,692,670,666,683,703,680,694,692,699,696,687,700,700,724,689,635,691,705,706,677,668,683,691,642,732,703,697,707,710,686,666,713,680,701,684,679,683,696,719,709,713,709,711,685,696,690,700,679,734,692,702,709,698,705,697,700,702,689,694,696,689,710,692,685,717,691,692,696,722,706,705,698,718,713,719,699,700,719,689,715,702,716,689,696,684,648,616,656,652,633,623,626,629,698,604,630,609,652,606,593,606,671,588,667,587,628,692,628,661,604,630,633,573,608,649,614,631,647,626,645,645,609,683,652,607,573,606,565,572,592,582,591,554,580,573,600,554,570,578,552,588,575,594,544,586,621,599,544,545,551,559,562,568,596,573,598,548,576,590,586,585,575,589,601,600,626,583,606,598,574,555,573,548,566,548,561,576,563,553,555,569,546,580,549,558,563,567,558,556,558,552,552,569,569,549,559,560,547,553,580,579,561,562,551,557,552,571,523,543,541,571,557,552,556,548,552,549,536,545,551,556,538,545,550,551,544,554,539,547,544,537,546,554,546,554,546,541,548,544,545,541,544,531,540,546,553,551,559,757,725,708,699,715,679,723,711,739,714,710,743,710,713,648,712,651,724,783,722,646,712,754,684,768,722,769,684,681,728,716,637,763,722,692,677,704,737,697,729,703,716,706,737,733,721,728,730,703,707,704,722,708,707,696,714,713,706,735,718,713,711,714,716,720,734,704,716,728,730,716,721,722,725,730,727,718,696,717,722,727,730,722,691,721,622,618,603,626,664,595,599,618,620,644,638,628,638,642,625,625,615,620,616,629,637,631,629,625,635,604,618,615,600,616,610,602,627,621,623,632,624,621,629,603,603,562,571,567,547,563,572,557,559,567,581,558,560,555,555,557,555,557,544,568,561,551,574,560,583,566,560,559,566,574,558,557,554,577,562,550,550,562,571,566,555,566,566,606,598,619,580,575,577,605,576,607,596,584,597,618,600,608,596,586,566,590,609,576,588,581,565,593,600,594,636,619,578,621,566,582,601,579,591,593,559,580,607,608,591,654,558,549,555,539,551,548,549,569,561,569,550,564,563,551,558,560,553,571,563,574,562,547,536,562,555,558,561,566,559,554,546,552,542,560,549,554,544,551,562,550,556,566,554,537,547,574,568,568,578,581,561,574,570,573,570,556,573,565,551,571,576,584,555,566,575,568,559,561,563,571,553,589,575,561,589,555,569,595,576,550,556,571,589,556,574,610,679,624,657,671,671,692,659,662,656,678,658,685,711,670,692,653,660,692,652,689,692,644,646,666,687,689,681,667,673,632,657,686,678,693,663,661,724,660,604,590,605,588,601,587,618,600,629,599,586,620,588,600,609,607,621,613,609,615,621,611,610,622,613,608,602,605,613,611,602,640,612,585,609,618,608,598,583,619,598,615,629,605,548,568,637,663,627,670,623,583,594,618,638,590,595,586,577,585,573,587,608,593,618,660,577,624,643,602,637,618,611,611,600,537,588,605,617,636,609,639,630,587,576,598,595,581,586,593,608,583,596,589,598,592,604,583,596,593,569,576,567,598,581,608,590,579,575,587,595,579,600,595,594,602,577,577,594,587,588,575,580,570,583,594,557,546,559,566,544,531,540,548,541,557,536,559,561,571,556,554,544,553,554,534,540,565,543,546,550,556,545,550,546,564,568,552,542,557,568,554,555,571,559,552,549,549,547,567,555,550,555,558,560,558,555,564,565,552,567,568,567,523,569,578,568,569,557,571,552,561,564,546,572,550,560,563,563,569,549,575,571,540,549,561,573,688,704,695,680,701,712,721,690,698,704,694,710,701,717,697,689,728,676,703,704,700,687,695,736,688,677,719,677,710,694,730,721,702,720,734,723,697,685,687,725,732,719,656,630,652,649,627,627,639,638,648,643,651,644,637,644,636,651,661,645,625,639,653,672,639,641,688,630,657,624,663,654,651,681,664,636,667,655,641,653,662,656,647,590,611,611,587,584,606,595,596,592,604,598,576,596,596,607,609,595,604,582,593,594,587,617,615,593,603,613,601,605,610,586,598,596,591,591,620,609,609,581,589,585,608,594,608,561,549,569,558,561,568,583,550,560,560,570,562,559,563,551,568,568,570,561,570,555,568,574,568,565,575,574,559,552,561,563,549,560,564,562,561,573,565,565,558,560,562,553,578,573,553,568,555,550,560,567,563,563,552,564,578,577,570,567,569,561,567,564,555,556,552,564,554,565,558,565,577,559,563,548,559,564,561,550,570,566,565,572,584,568,570,566,558,570,556,688,718,669,658,686,696,670,667,672,673,677,675,684,658,685,685,675,688,707,668,670,699,667,701,686,688,680,690,692,666,682,686,695,687,672,710,682,668,678,684,701,685,683,674,682,688,631,665,653,690,660,692,682,663,660,686,646,691,659,679,678,656,656,616,673,666,668,699,670,656,669,631,672,669,662,704,646,694,658,691,682,682,679,701,690,670,616,640,618,622,636,634,625,619,613,629,638,589,648,629,616,619,641,613,627,633,617,612,649,633,630,627,628,632,621,636,639,617,617,609,595,623,598,589,633,625,617,629,628,608,623,657,603,590,629,595,623,628,591,606,638,628,611,611,671,667,550,675,584,577,606,599,623,618,601,571,600,587,631,630,615,721,629,601,606,612,602,578,606,607,586,593,597,596,588,591,588,611,603,613,603,587,596,621,596,601,593,606,605,606,602,582,602,602,605,602,599,593,604,590,614,585,581,603,586,598,561,558,557,581,574,560,589,552,568,582,572,569,567,576,565,567,567,579,569,579,571,566,545,564,569,570,566,552,553,579,572,560,577,564,573,570,570,579,560,576,566,555,545,553,548,546,542,555,550,561,549,546,544,545,554,561,548,548,550,549,557,572,553,569,554,552,563,548,559,547,565,543,557,548,554,549,543,551,546,563,552,543,558,565,560,563,551,556,539,552,548,572,548,549,546,543,564,552,545,558,549,544,546,558,542,553,558,544,566,566,553,563,555,554,556,553,546,556,557,550,556,548,560,557,553,551,548,561,557,552,679,672,699,696,697,687,676,679,684,668,687,686,695,705,664,698,682,690,669,689,711,677,667,690,687,691,691,705,674,697,685,675,655,670,684,690,689,679,670,694,653,686,679,694,689,704,692,682,652,661,643,650,698,669,653,661,689,671,709,662,678,696,669,695,649,664,692,667,660,661,695,655,657,658,664,665,683,672,666,672,661,670,700,663,663,724,621,591,595,631,615,660,579,630,636,609,608,568,624,643,622,633,585,636,571,604,594,625,631,627,627,646,594,613,591,632,591,642,628,634,575,596,600,608,594,633,612,608,590,561,572,583,573,567,570,565,558,568,578,559,556,565,555,558,559,569,559,569,573,566,575,573,574,564,577,566,568,578,574,573,561,578,558,558,578,575,566,559,565,570,558,547,559,566,557,549,555,554,561,560,551,563,559,549,564,554,561,561,568,559,534,559,564,548,557,563,561,556,556,558,550,572,560,546,550,561,563,544,555,560,553,563,555,529,657,634,631,639,657,640,653,645,619,646,652,645,641,630,672,662,629,663,670,647,648,648,616,678,658,622,656,675,644,654,625,650,669,648,663,656,642,648,644,667,647,671,673,649,653,675,668,677,657,682,662,672,660,672,659,683,674,664,671,665,688,664,686,681,686,674,676,652,666,680,673,651,659,679,663,683,666,695,667,673,654,648,675,687,594,597,616,612,599,603,587,615,601,585,614,576,588,594,615,620,588,613,599,602,599,584,595,605,617,625,577,596,593,588,590,614,599,610,620,586,605,605,603,614,608,619,596,699,731,657,672,662,705,692,651,763,712,734,678,731,695,697,703,730,681,638,667,633,697,692,723,663,677,665,718,687,684,726,673,677,725,684,687,696,680,697,685,738,684,720,732,713,723,709,707,718,725,720,710,739,736,728,693,749,726,695,755,725,718,715,724,731,715,715,701,721,710,732,724,702,756,724,699,711,716,718,725,725,734,720,730,720,680,622,644,631,639,642,634,612,635,629,619,648,678,648,637,595,637,625,644,614,623,626,605,632,652,649,618,634,620,639,638,610,647,633,659,627,674,676,561,553,549,539,567,553,540,551,543,556,532,556,545,567,550,548,547,565,527,550,543,551,543,553,556,551,539,556,541,554,545,547,535,551,553,533,541,549,550,546,539,578,561,548,571,546,557,566,547,578,574,565,564,546,558,549,544,551,595,549,569,567,588,553,575,570,572,574,560,563,558,549,553,576,552,565,544,559,565,567,540,559,557,717,726,694,751,709,745,744,720,730,738,748,705,729,726,715,742,740,699,731,727,742,743,754,703,755,712,708,732,726,715,740,732,730,738,769,745,759,750,740,720,716,747,734,647,664,627,650,723,647,674,638,662,597,659,629,698,620,656,642,650,646,683,678,642,625,669,650,632,649,657,650,682,646,640,661,653,640,660,676,656,674,648,651,710,673,664,538,557,552,543,525,575,538,559,534,550,565,568,576,612,572,574,562,537,549,528,536,552,545,554,540,567,578,542,527,563,575,539,525,544,587,556,539,539,570,553,540,544,555,532,526,529,540,536,539,541,525,529,542,534,525,534,530,537,540,529,533,536,533,542,524,539,519,537,545,523,535,539,526,536,552,543,525,533,528,535,537,522,541,537,520,523,533,537,533,553,560,554,558,562,565,548,546,567,539,556,535,545,557,556,564,557,545,548,554,553,562,549,566,555,544,546,532,559,572,554,549,556,557,564,568,569,555,560,578,574,572,543,566,555,750,740,745,715,762,714,724,728,746,764,759,733,709,727,728,739,715,714,728,724,709,719,749,733,704,722,779,737,754,754,723,737,758,711,742,719,744,747,746,724,738,738,752,729,724,737,719,642,655,653,640,657,678,695,662,662,647,657,683,642,663,648,682,652,699,668,669,666,689,663,617,694,616,648,673,665,668,672,670,654,678,653,700,701,660,648,621,659,672,678,707,675,545,573,562,532,555,540,548,581,550,525,565,537,555,536,524,553,572,540,542,540,547,574,530,556,564,515,558,581,565,527,546,515,535,540,565,538,494,530,548,531,577,543,537,528,533,510,532,532,526,530,536,524,514,521,533,546,521,542,527,534,538,525,530,520,511,536,534,543,527,557,530,546,538,536,521,521,537,531,534,533,542,532,509,487,495,504,513,489,492,496,490,499,510,495,499,497,497,491,489,491,502,491,495,500,492,493,497,500,512,495,485,492,489,510,497,501,511,497,508,499,486,496,507,490,505,490,503,486,490,499,496,494,500,491,502,486,489,502,504,488,482,503,503,505,487,494,501,500,496,503,493,501,492,488,500,511,509,488,497,487,504,490,498,501,501,502,500,484,487,503,498,519,514,510,519,500,517,512,515,510,511,504,510,523,509,507,523,503,508,514,510,507,507,503,513,525,519,509,513,510,505,512,521,502,510,503,516,515,515,513,539,562,555,570,545,546,548,553,553,568,545,554,549,547,549,558,565,548,554,570,562,544,554,564,546,557,551,551,558,574,564,557,552,557,540,570,556,550,549,546,560,557,546,556,546,541,546,548,546,537,544,548,544,545,551,538,540,548,549,555,553,564,542,555,557,553,548,558,542,551,541,547,544,548,546,561,543,559,546,538,565,559,560,580,581,587,585,588,582,584,571,569,597,600,584,587,587,577,576,589,584,606,588,582,594,586,603,570,585,588,588,592,583,577,581,588,574,558,595,602,610,604,605,610,600,585,595,592,617,625,597,594,602,603,612,591,606,600,588,600,601,604,611,607,583,591,611,575,621,603,591,616,598,586,606,599,600,597,598,596,598,585,593,751,724,741,744,752,752,720,727,765,738,722,761,736,758,775,758,752,745,736,740,755,734,732,734,734,745,761,744,763,748,752,711,747,747,721,730,705,771,752,740,752,716,685,694,695,712,719,714,732,741,770,677,761,722,729,724,724,691,695,687,717,733,738,673,697,690,698,710,746,708,721,738,720,729,676,692,707,714,729,731,685,724,734,672,699,627,647,692,691,666,671,680,679,694,702,650,661,655,674,664,662,681,662,711,661,701,685,670,658,644,690,672,683,655,689,666,660,690,703,650,709,559,587,560,553,554,573,576,576,581,564,566,545,587,568,574,582,568,541,574,563,567,569,585,574,592,562,586,588,566,559,575,555,572,563,563,568,558,568,591,567,575,586,571,556,588,695,694,689,710,683,711,699,683,697,694,687,664,687,684,705,693,691,683,702,692,690,710,694,692,712,695,693,702,693,687,714,676,692,706,685,675,713,686,701,709,667,685,664,648,665,656,644,653,663,646,656,647,667,650,669,645,662,628,665,669,642,654,642,639,657,663,638,644,652,664,671,653,655,664,652,667,668,652,673,646,655,677,669,613,610,634,613,608,638,651,618,606,625,629,620,616,608,619,615,627,632,608,613,617,621,626,637,625,598,635,615,585,621,604,595,615,623,622,624,599,637,588,632,636,639,616,602,629,634,570,584,581,568,580,575,570,582,572,581,592,579,587,570,572,575,577,577,597,585,571,586,580,569,569,580,578,569,575,576,576,577,575,572,588,582,580,590,576,576,590,561,571,577,571,618,648,610,640,628,636,645,642,633,660,620,651,672,650,660,649,629,614,632,663,615,634,651,627,623,645,633,650,657,636,644,652,624,627,655,639,691,623,655,607,664,621,615,614,675,668,670,703,684,677,676,701,685,681,669,647,703,681,692,683,670,652,687,680,682,678,674,672,686,681,711,693,673,678,679,694,688,672,693,688,691,672,677,671,699,680,686,691,670,665,724,778,778,758,776,768,746,751,766,750,723,780,716,741,717,731,747,791,750,768,733,756,738,721,717,785,756,718,752,721,775,763,756,752,700,740,790,752,745,746,747,688,700,709,704,728,711,706,720,710,745,711,700,705,710,719,703,694,723,726,737,735,763,697,713,740,688,731,689,740,721,731,728,695,695,736,695,776,705,745,754,726,739,707,759,684,694,722,672,707,672,646,682,629,651,643,661,644,647,636,681,652,667,658,648,652,656,640,630,636,656,675,659,655,688,641,653,685,646,656,650,681,645,648,675,660,635,642,663,629,656,657,644,735,752,728,713,708,709,744,719,731,706,737,689,738,683,692,691,721,707,717,738,770,679,718,728,747,713,728,695,704,756,691,707,735,699,733,727,738,726,738,765,716,735,723,725,708,746,681,727,722,703,722,738,720,658,711,702,722,714,716,730,715,720,731,747,665,715,718,735,727,751,722,706,736,722,729,700,717,711,760,697,761,693,728,716,678,722,728,695,694,684,656,653,682,675,681,656,679,683,683,675,660,671,680,683,685,669,689,665,687,672,655,667,659,702,676,672,674,657,654,690,657,646,695,664,668,709,667,701,631,643,652,633,645,656,656,648,629,649,646,650,651,651,662,626,640,640,647,651,638,655,670,643,635,643,639,644,655,623,658,641,615,634,633,650,629,641,638,642,644,620,649,658,667,653,651,660,671,669,670,636,660,665,653,662,671,672,647,673,667,648,685,681,649,666,652,659,647,653,660,662,679,676,679,669,668,670,682,639,661,679,673,658,781,722,718,728,773,731,763,768,724,764,748,779,756,752,731,780,738,787,775,754,780,745,729,750,725,745,729,732,718,762,711,743,739,765,763,752,708,783,716,743,759,745,693,730,754,734,703,709,691,726,735,684,693,751,685,712,695,740,710,715,720,680,719,734,707,744,747,727,707,728,724,672,732,722,761,716,693,740,760,749,772,658,666,683,623,669,678,641,633,624,664,658,631,657,632,688,626,679,678,645,651,649,669,669,672,648,658,681,645,682,661,653,620,653,662,690,671,654,693,644,694,683,664,652,684,666,647,667,659,671,645,724,727,700,713,694,683,689,715,679,710,691,709,691,667,689,673,710,700,682,694,714,676,695,684,686,712,727,700,740,712,702,684,669,705,679,670,696,710,715,701,739,725,710,725,710,733,719,712,733,713,725,724,722,708,706,714,724,722,719,712,732,716,706,712,710,712,725,719,697,719,722,728,721,705,709,704,728,707,718,721,711,696,694,661,727,706,719,684,680,691,668,709,678,691,711,677,684,683,696,690,698,701,701,712,675,714,680,665,713,677,704,676,693,704,668,675,710,682,691,680,695,671,681,670,685,684,646,661,661,695,662,687,686,688,694,691,681,659,678,677,691,674,666,667,699,693,695,675,701,709,675,705,705,693,701,666,671,706,682,704,688,664,527,574,596,594,566,557,559,583,574,542,572,587,579,563,580,545,608,575,601,562,584,561,564,596,578,583,565,604,557,564,586,587,595,563,614,544,592,575,580,565,569,566,558,555,564,569,578,590,556,566,603,584,573,576,580,560,543,565,579,564,589,565,564,565,586,560,596,591,556,577,576,576,578,579,572,554,556,564,576,579,563,600,578,564,576,568,594,568,576,563,563,592,574,558,649,642,631,631,635,627,634,622,635,637,632,642,644,646,630,664,655,638,644,619,644,634,663,669,651,678,614,654,641,641,630,642,669,641,639,646,645,663,627,648,640,662,647,647,661,655,650,666,663,652,663,672,649,648,658,662,657,665,659,650,650,648,653,652,658,658,661,640,660,655,652,656,656,651,655,664,650,659,649,640,645,634,660,653,755,721,700,746,679,705,693,757,717,713,704,679,755,695,678,728,726,735,720,691,723,692,716,716,726,712,733,708,695,717,751,701,700,725,730,718,718,720,690,752,691,708,713,707,725,709,734,732,719,699,700,720,703,709,722,732,704,727,728,702,723,728,731,736,719,706,727,708,690,731,735,706,716,713,706,705,724,723,723,719,691,703,709,722,729,695,683,692,702,669,697,681,704,677,699,692,716,700,705,691,680,674,710,691,686,702,703,693,706,714,690,706,721,663,699,681,705,683,686,682,714,670,667,718,710,692,690,610,600,608,582,610,651,585,593,591,591,630,612,628,601,612,566,620,618,621,585,601,621,610,606,579,603,611,637,610,630,570,586,594,606,630,648,582,600,612,595,593,628,577,570,559,552,571,546,568,568,571,547,547,554,573,557,563,561,553,576,557,549,556,563,565,557,570,562,566,553,550,557,560,564,552,560,557,571,572,572,562,564,565,554,563,558,560,558,677,605,661,658,602,600,687,640,614,645,613,640,611,650,651,644,678,622,630,588,611,651,642,652,637,625,623,634,634,661,673,644,673,632,623,623,618,634,615,666,627,630,688,689,685,677,688,688,671,681,669,690,686,688,667,662,686,672,681,687,701,684,678,667,686,690,679,688,683,675,677,661,676,693,673,688,702,665,676,685,667,677,667,683,687,687,688,692,674,683,689,681,673,674,687,670,670,663,692,677,686,680,682,674,688,664,682,678,680,688,672,663,692,683,661,676,655,674,669,663,674,664,672,670,673,649,682,695,685,687,693,677,728,744,717,762,758,770,776,719,765,719,745,734,711,762,732,766,753,775,720,769,736,737,790,720,751,714,729,728,740,734,719,742,727,717,752,730,702,714,710,729,676,657,702,646,629,659,655,690,683,683,651,683,669,658,719,640,664,687,713,697,702,684,694,693,637,652,642,651,657,643,682,695,688,684,662,622,644,717,675,691,649,665,682,645,657,663,665,640,617,632,652,623,636,642,644,629,605,642,639,634,644,657,649,630,631,618,628,642,638,605,669,647,629,612,642,647,659,630,644,617,646,617,638,630,641,648,616,663,602,632,643,668,542,554,548,556,558,558,552,553,560,545,540,559,543,560,552,552,560,566,565,558,550,561,548,555,561,568,554,560,564,549,562,562,562,538,550,566,553,550,553,556,558,568,568,555,551,555,538,555,551,547,548,531,542,545,543,552,518,524,538,546,547,531,557,547,562,530,550,551,559,542,536,546,537,544,539,554,553,534,532,536,551,529,539,526,538,554,564,535,516,504,520,525,509,524,518,505,497,526,523,523,501,527,515,513,512,513,514,513,513,511,519,507,525,514,518,520,523,517,515,506,507,518,508,533,512,510,513,519,513,504,522,525,696,669,692,698,670,663,690,678,687,689,665,680,658,675,689,672,684,677,665,700,693,678,684,668,681,663,677,681,681,692,687,686,681,688,672,696,664,634,634,647,660,642,631,639,624,632,636,650,653,655,627,644,618,644,631,648,641,662,621,645,662,633,638,624,640,636,650,662,631,649,628,662,642,664,646,627,632,643,626,626,676,611,616,606,606,590,617,593,611,601,614,591,622,629,609,605,601,590,598,613,586,590,598,584,592,626,624,638,605,602,590,570,644,588,620,627,618,601,625,597,592,613,627,593,614,568,611,607,616,631,600,602,569,576,607,559,606,612,592,622,582,620,608,580,577,586,622,600,614,562,615,615,611,606,577,543,642,600,607,602,617,600,567,575,636,593,600,600,606,619,638,622,630,616,622,621,621,616,643,596,634,623,617,616,618,620,627,602,611,621,612,614,611,618,610,617,604,635,627,607,619,604,620,637,610,631,625,626,603,595,585,562,568,583,581,577,595,590,587,576,564,590,554,571,580,580,582,562,585,568,584,568,582,589,580,591,594,587,593,573,577,573,571,589,566,570,578,682,672,670,680,689,690,656,630,679,658,671,656,668,687,691,676,668,666,664,685,676,660,686,688,690,678,693,654,695,695,686,686,677,697,674,680,673,703,699,700,669,662,690,672,658,712,702,680,689,680,689,680,701,646,663,709,714,664,658,691,720,658,696,685,719,663,690,685,684,716,710,653,723,658,643,670,669,717,659,681,688,717,636,706,690,708,671,665,686,670,663,700,681,689,679,708,696,674,685,686,689,707,686,711,688,679,697,699,680,677,679,665,700,658,692,680,668,685,685,691,681,688,704,668,688,684,690,677,688,650,613,594,615,614,621,609,608,604,603,617,632,596,612,631,623,604,607,579,626,638,619,639,614,611,612,618,614,612,603,614,599,586,602,614,594,627,638,602,575,584,613,655,584,573,578,586,581,597,595,585,576,575,569,587,600,585,557,578,565,577,582,603,578,574,607,580,577,595,592,609,587,599,597,575,593,566,588,592,576,580,588,592,542,537,576,564,584,589,575,564,576,570,570,560,563,574,591,570,572,574,578,578,576,566,564,560,575,572,570,580,575,571,581,577,562,568,576,564,568,569,562,582,578,567,566,562,597,539,549,549,541,541,546,544,548,534,541,547,551,543,540,545,534,538,546,541,552,539,557,544,550,540,535,547,541,536,537,527,538,562,552,544,548,541,547,535,532,536,533,546,533,524,545,538,533,571,543,555,527,527,540,543,547,542,529,547,570,537,547,554,541,544,539,566,538,535,545,562,547,561,546,544,543,568,555,539,536,540,555,562,541,553,551,549,549,536,538,536,543,534,551,546,529,549,542,543,547,545,559,545,537,545,541,542,525,533,535,539,533,542,538,527,546,550,545,541,540,535,557,527,539,537,552,532,545,551,540,539,548,532,534,544,552,560,545,554,556,548,542,569,548,534,560,555,568,558,556,540,567,556,555,548,558,556,558,554,553,559,565,574,571,556,551,552,551,558,566,554,558,556,565,555,552,561,553,534,630,606,584,604,621,599,609,634,612,652,615,617,615,598,655,569,619,653,592,626,605,593,602,626,592,637,606,602,607,623,614,590,605,587,594,623,591,597,618,583,765,762,774,813,783,744,794,761,746,758,755,755,772,781,768,757,787,769,776,764,759,777,796,767,776,771,741,768,750,749,763,766,761,769,758,736,795,742,768,772,724,767,740,735,696,742,698,749,766,767,673,711,716,735,720,714,729,725,711,741,695,709,711,724,721,733,702,707,728,799,722,726,683,722,696,757,740,744,740,733,751,668,701,649,676,654,651,680,676,656,646,657,658,663,641,659,670,636,654,621,648,666,649,662,653,640,662,658,642,644,646,651,644,642,652,651,662,665,666,637,678,654,635,687,716,730,721,688,686,681,713,669,663,705,686,693,731,691,730,689,699,687,680,691,696,694,693,649,699,681,665,699,702,688,693,705,690,700,678,671,696,687,653,662,668,681,657,666,658,680,659,693,660,663,665,657,662,689,648,662,656,662,639,660,663,677,665,661,684,654,683,671,670,672,671,685,672,669,688,673,649,655,696,672,613,603,589,609,603,619,615,614,616,607,605,603,603,628,602,604,587,599,612,618,602,597,602,598,592,607,605,620,604,614,617,610,610,589,599,595,591,616,597,591,601,593,612,599,555,578,553,559,554,570,564,552,560,555,564,555,554,550,564,556,566,568,554,570,553,557,543,556,564,569,562,549,550,547,565,552,554,551,562,564,561,551,565,584,567,560,568,557,554,560,562,547,561,572,555,554,564,543,563,568,538,571,556,556,561,565,550,554,560,564,574,569,570,579,558,559,560,544,569,556,557,550,554,546,568,585,682,713,702,700,694,713,709,687,688,715,700,721,733,689,699,716,707,703,688,698,725,696,702,704,698,730,710,724,717,688,690,700,687,714,703,704,705,705,695,712,710,694,731,695,717,698,666,668,670,661,669,667,679,674,674,670,658,678,652,676,663,672,680,661,692,668,667,669,673,667,688,694,691,664,675,661,670,657,683,676,666,671,670,664,655,668,668,604,630,646,628,645,631,630,621,633,615,633,625,626,631,633,606,626,620,616,634,611,619,637,644,626,627,624,602,612,627,623,623,637,634,619,615,626,617,615,635,624,637,577,593,579,596,571,585,599,607,587,588,585,596,573,575,617,578,580,570,576,574,602,571,587,578,589,579,590,584,558,587,585,587,584,598,585,586,577,580,587,569,575,586,600,608,616,609,605,621,610,609,623,621,639,621,608,617,601,610,627,626,601,617,618,604,613,614,620,611,599,592,610,614,603,610,619,603,606,609,617,604,607,607,606,626,605,610,623,625,612,623,590,607,607,620,628,628,640,620,629,642,643,643,613,642,646,629,639,624,645,631,653,618,637,636,614,644,636,635,627,637,625,637,626,617,628,636,632,642,622,627,632,620,650,624,634,593,569,595,586,610,586,612,587,601,567,608,595,608,622,590,597,569,605,604,595,607,588,595,623,610,617,578,602,605,583,604,581,586,606,601,593,605,611,587,595,587,611,579,586,579,588,612,575,593,601,578,572,562,573,598,579,583,580,571,576,581,571,597,582,582,592,579,586,584,582,567,567,589,590,567,588,598,579,597,581,580,576,682,641,632,614,586,619,644,609,626,636,582,596,592,645,587,598,640,595,617,609,600,619,640,569,610,625,598,635,578,631,629,652,638,621,654,602,632,615,618,577,637,706,738,728,793,758,754,729,735,729,753,754,755,764,722,722,703,775,752,747,737,750,724,766,748,742,725,736,749,759,738,736,741,742,759,767,737,759,773,770,731,776,761,740,752,718,700,723,727,711,719,706,711,708,730,737,725,742,725,730,724,709,738,728,721,712,725,744,731,739,716,731,718,714,726,732,718,742,720,722,713,714,734,733,718,726,739,697,700,697,698,706,683,679,671,689,692,685,692,674,701,684,717,686,709,684,677,719,699,694,699,707,690,668,686,707,705,677,688,692,692,693,699,699,664,669,696,694,679,683,699,715,690,675,700,711,676,681,661,672,688,676,682,687,695,704,673,709,673,662,667,699,703,684,674,698,674,678,678,699,695,695,692,690,683,682,686,687,578,592,554,597,612,646,603,591,611,600,607,572,558,618,557,584,607,582,566,571,578,602,591,558,586,570,577,580,618,588,587,592,571,599,579,575,612,580,578,601,623,586,584,570,659,592,661,650,629,626,609,668,643,610,579,673,644,552,635,629,628,621,630,618,634,659,653,598,608,705,665,607,617,586,638,632,606,602,607,615,648,614,647,627,629,688,694,646,655,695,652,693,705,689,648,675,669,736,657,692,684,708,651,659,645,673,679,682,662,693,666,682,691,714,717,700,659,691,704,688,665,661,682,703,683,612,665,683,692,679,670,679,678,675,651,673,669,651,676,688,692,697,679,711,672,701,683,650,721,716,676,677,757,730,668,722,645,658,657,665,691,704,679,649,689,649,673,636,706,718,754,679,694,674,699,654,643,645,669,632,657,665,667,660,674,639,640,673,650,657,654,677,670,644,668,673,623,647,655,636,630,671,645,653,643,668,658,664,622,669,664,661,632,649,648,608,612,585,621,620,600,599,610,611,600,605,610,587,601,605,596,607,622,600,589,630,603,631,608,605,621,614,620,612,631,605,601,599,616,609,611,593,621,597,598,592,572,604,600,588,603,587,574,604,572,577,590,600,594,587,595,573,581,591,588,580,596,588,593,593,602,586,610,593,582,584,580,586,575,594,592,599,596,581,596,576,584,604,590,603,599,619,599,597,602,606,602,600,587,613,600,588,613,598,591,609,594,594,597,591,588,603,584,599,593,586,601,607,594,595,607,611,596,597,612,594,599,583,605,618,727,718,724,765,747,749,770,745,749,756,730,762,724,713,749,777,742,728,777,724,744,761,720,735,743,779,724,733,741,735,767,727,710,737,777,775,776,732,726,766,737,752,738,798,684,680,692,679,670,625,672,669,690,674,640,685,658,641,682,622,697,703,670,665,653,644,694,686,660,671,670,642,679,652,677,658,716,660,647,667,655,658,617,688,648,672,673,646,634,644,643,625,635,635,620,615,629,634,600,635,651,650,671,603,656,628,649,606,654,611,629,615,599,633,642,634,595,655,638,652,645,624,635,629,639,660,618,658,642,654,643,650,650,617,695,690,673,691,656,700,700,701,680,676,671,677,695,690,695,684,671,675,675,694,699,694,675,681,679,697,669,698,679,683,697,700,679,685,696,687,682,695,677,677,668,704,678,665,669,688,671,672,657,673,694,669,663,670,674,662,673,661,656,677,690,677,665,677,645,657,660,671,643,682,649,661,669,660,659,677,645,647,666,664,661,675,649,687,660,663,665,680,653,679,665,675,664,653,652,637,610,636,658,669,649,613,648,604,625,621,648,634,655,643,641,663,642,628,634,642,628,645,623,634,639,608,636,642,631,648,606,654,645,621,658,628,617,663,618,722,677,663,667,678,725,651,668,693,693,665,681,655,672,676,696,703,657,654,723,676,664,653,669,652,666,682,669,659,684,679,676,713,679,675,660,661,665,640,683,672,631,635,644,614,604,639,597,626,615,612,623,587,612,602,603,592,630,617,611,620,623,621,612,624,631,588,630,605,606,612,587,588,614,598,606,593,618,618,604,634,652,604,609,599,568,617,551,589,579,591,620,623,701,625,570,605,634,579,583,584,594,605,624,600,551,583,575,647,575,595,625,625,545,608,637,585,650,617,625,632,592,582,591,608,582,608,583,595,590,582,592,596,584,598,580,589,588,592,594,582,601,592,586,599,592,594,592,586,580,593,578,584,591,587,593,603,591,608,593,594,591,584,586,596,595,575,534,564,529,547,536,554,550,567,554,547,544,545,549,551,544,541,573,543,553,557,532,538,545,560,562,548,554,548,534,570,557,551,550,531,536,547,555,550,547,561,556,548,558,529,569,553,574,551,563,579,561,574,576,548,571,544,561,562,543,555,565,557,555,545,551,553,558,565,553,560,558,556,531,562,568,555,579,544,558,568,553,553,704,711,715,705,688,696,728,700,707,706,679,701,721,727,727,703,719,690,695,705,698,702,711,711,668,675,708,698,705,687,702,729,713,713,698,717,693,686,700,671,620,626,647,629,634,656,636,619,616,616,657,604,592,627,635,595,660,650,622,660,663,629,660,654,618,636,638,649,625,583,628,650,627,654,633,624,654,608,613,644,649,609,619,683,611,672,683,621,619,631,662,698,654,606,697,623,688,642,648,586,641,591,683,598,687,582,645,729,644,611,627,603,590,649,612,598,728,658,645,635,594,665,639,656,666,654,614,603,666,720,710,701,718,701,723,707,713,700,693,695,707,700,731,699,729,701,698,710,711,728,729,709,707,702,714,672,697,718,673,715,698,726,724,709,699,682,699,689,711,701,698,714,742,607,601,591,611,597,614,610,625,620,566,612,605,618,583,647,605,614,604,615,587,587,598,625,596,593,583,593,610,623,605,619,629,593,622,610,609,604,615,586,613,634,588,596,615,627,613,632,633,615,593,615,616,605,636,610,623,618,635,627,607,625,613,629,632,624,634,650,619,590,624,621,642,586,641,617,622,633,611,613,649,649,636,623,593,591,595,589,593,582,566,579,600,590,581,580,573,591,580,593,595,598,590,591,583,594,591,596,590,583,583,605,596,599,592,588,605,583,584,584,584,597,588,621,561,553,561,529,528,538,539,558,544,555,548,564,555,561,538,549,566,554,558,544,563,551,541,546,566,544,560,555,554,539,573,556,551,558,546,549,537,540,561,547,547,550,560,555,553,550,566,569,560,563,545,559,557,543,535,565,571,551,557,554,546,565,571,561,550,533,568,558,559,540,564,560,560,549,543,545,575,539,555,560,561,557,567,560,572,546,565,547,574,560,558,587,552,544,542,554,536,553,546,548,554,552,539,536,550,548,554,555,543,545,535,550,550,552,546,554,566,562,551,537,563,534,561,546,553,551,539,551,538,542,536,544,555,542,552,545,552,543,585,585,587,580,583,588,582,599,591,592,566,578,582,583,567,594,580,589,575,573,586,606,583,596,605,585,589,583,583,592,598,575,597,604,584,580,595,570,594,588,574,576,594,582,623,621,614,623,618,603,617,610,612,619,618,594,617,604,604,583,608,611,611,617,614,628,604,632,619,612,615,592,621,607,598,626,599,617,600,616,607,590,624,616,610,624,672,704,691,662,660,653,631,673,653,673,676,666,656,644,671,652,671,665,652,662,670,675,659,677,659,658,651,650,674,652,654,671,698,660,658,647,656,649,693,636,642,640,655,657,661,644,641,660,676,652,644,654,635,659,656,663,654,653,660,654,655,658,659,644,666,653,660,663,648,625,643,674,650,658,664,651,643,671,652,581,559,604,567,580,577,586,571,570,570,592,574,590,584,572,577,575,575,573,588,586,575,582,585,604,571,596,559,576,592,586,578,592,594,578,560,598,569,572,571,582,572,566,572,571,582,568,583,562,590,661,659,662,683,658,690,652,693,686,676,696,693,682,684,677,651,669,674,680,671,679,695,649,681,683,641,675,674,701,690,685,662,676,661,665,681,658,651,679,645,683,677,680,672,670,655,676,658,686,681,659,650,673,728,697,641,651,684,674,707,696,662,683,668,682,686,688,676,667,702,691,636,669,705,671,663,661,664,680,687,679,665,652,633,687,700,713,670,655,659,770,720,685,725,713,614,657,686,681,703,663,653,648,685,690,742,711,680,725,672,714,660,669,706,724,683,669,685,674,666,693,712,708,733,698,677,690,665,687,675,666,648,674,637,671,646,670,666,635,672,664,649,654,688,665,667,687,679,671,664,682,654,680,680,689,679,655,678,691,651,666,655,686,698,675,675,650,653,654,644,636,639,644,641,656,667,652,669,651,641,638,648,652,655,640,653,633,629,653,656,653,647,646,642,646,623,662,635,655,655,629,654,649,656,650,653,646,651,645,642,646,651,651,658,656,661,648,741,772,762,734,723,756,732,734,742,737,742,758,767,743,716,725,719,741,722,727,754,742,738,730,744,728,753,771,740,756,742,780,741,765,741,734,756,719,736,757,721,765,706,745,753,755,716,716,723,722,735,721,728,718,778,740,731,733,723,694,720,737,722,687,768,757,735,741,790,705,717,727,734,727,700,746,713,733,700,745,768,725,782,728,702,754,725,752,706,744,734,765,742,735,744,720,720,730,733,755,752,725,730,763,749,719,756,743,757,763,788,804,743,720,743,722,731,730,719,734,719,751,761,750,735,739,740,689,685,676,710,721,746,744,724,723,656,708,724,748,717,745,716,693,698,735,740,697,759,742,723,742,743,699,750,735,725,739,705,728,721,707,708,708,716,710,671,701,675,698,676,693,672,678,655,680,691,644,713,704,697,699,691,696,686,670,650,673,688,647,672,694,690,659,659,675,683,689,706,683,660,650,662,670,668,662,673,689,707,683,636,646,647,657,655,650,675,659,665,664,650,639,649,641,662,642,637,647,674,650,649,650,643,640,645,646,647,653,650,666,663,653,643,657,653,660,651,644,635,641,648,654,672,658,778,732,738,734,751,767,729,760,744,746,740,767,764,726,749,726,769,705,727,770,738,735,749,751,749,725,768,752,751,712,731,768,748,746,740,749,746,783,709,749,755,770,725,745,734,706,789,719,751,731,709,741,722,721,734,755,723,716,682,723,740,745,692,718,765,705,715,744,703,730,729,717,760,738,738,726,731,699,703,729,735,735,764,704,724,712,736,729,726,743,754,751,752,695,767,698,715,697,697,698,738,732,728,706,742,718,682,748,699,708,681,675,718,698,737,678,704,728,690,680,702,698,686,690,670,692,735,697,719,712,692,704,715,693,732,693,701,699,748,684,724,731,723,709,722,715,692,727,722,710,736,712,720,729,733,724,725,712,741,730,735,734,723,720,705,701,724,731,724,697,730,718,710,737,720,727,733,719,707,725,698,729,733,725,723,712,660,617,629,630,611,633,659,632,645,595,616,624,594,619,633,658,633,640,642,600,643,614,648,605,627,620,592,615,598,650,639,600,599,604,627,608,635,631,609,588,579,582,586,568,591,569,566,602,592,589,589,573,572,602,582,566,606,564,580,589,582,573,584,579,588,563,584,584,568,577,573,582,590,552,572,578,583,577,565,562,584,570,586,607,596,620,614,575,642,601,592,611,604,588,617,607,618,601,602,603,601,624,633,605,615,599,619,625,608,616,612,624,597,627,632,590,587,591,604,643,549,559,556,558,569,572,548,559,553,571,556,566,578,568,559,563,559,564,562,566,578,554,569,559,561,572,560,577,541,543,574,557,558,587,578,552,550,580,558,569,554,566,584,568,588,583,564,555,561,576,558,575,571,590,596,585,573,590,578,566,585,579,574,558,574,585,586,573,577,583,581,578,549,561,580,587,562,570,590,558,580,575,569,575,584,560,559,569,553,544,544,565,550,544,548,555,540,548,544,540,554,560,540,536,539,555,555,547,557,550,547,547,544,542,555,570,534,537,545,545,548,541,548,546,538,553,552,553,794,680,767,728,719,749,766,768,733,801,722,723,803,742,760,774,750,761,725,727,770,740,663,742,754,727,818,770,745,778,736,776,777,804,778,751,692,689,780,722,752,816,746,723,684,710,705,704,689,716,685,696,693,689,719,701,691,706,716,713,723,706,705,702,703,698,705,694,723,678,725,711,701,693,692,728,745,734,711,709,697,694,708,714,721,703,694,697,698,666,653,670,660,655,684,674,678,673,649,675,663,638,684,669,672,696,670,690,661,686,669,680,695,649,649,698,649,673,671,705,679,692,655,645,651,668,650,642,673,681,654,686,676,638,656,639,629,623,644,623,652,652,661,668,641,637,629,630,625,657,625,647,638,633,664,652,648,644,657,632,631,636,658,644,640,644,654,642,645,643,635,652,654,628,635,648,643,665,666,673,654,656,655,676,671,675,661,682,674,648,658,666,675,663,674,667,650,670,659,663,682,668,670,662,664,666,679,676,686,670,683,678,669,664,682,676,657,681,668,674,661,661,655,630,655,653,655,662,649,679,650,668,661,672,646,663,657,651,657,652,649,651,658,664,654,671,651,649,657,648,654,646,664,664,645,650,665,680,652,654,677,648,670,670,669,719,724,697,731,755,725,742,778,760,715,748,705,727,748,763,750,758,747,724,765,756,738,762,743,701,726,761,715,783,710,752,747,743,764,713,731,747,755,735,716,724,761,699,714,752,717,757,738,689,741,726,734,697,709,712,704,716,721,749,729,692,718,752,751,721,748,727,765,705,759,722,735,708,737,766,704,753,733,721,766,695,743,772,690,713,711,711,694,691,659,704,711,723,685,708,690,693,707,704,661,723,696,657,683,649,759,726,674,694,731,673,681,674,739,717,683,736,694,712,727,677,709,694,704,725,697,672,586,603,618,619,598,602,619,603,615,595,617,565,646,602,563,608,600,590,600,593,613,609,597,596,616,569,594,606,602,595,614,589,600,603,585,608,598,617,618,605,605,622,586,609,611,601,589,592,591,668,699,687,674,648,703,645,641,647,627,655,655,658,648,642,675,659,621,679,673,643,691,687,655,630,698,647,644,653,738,619,681,670,653,672,601,645,664,682,636,669,647,646,666,642,655,679,623,667,641,662,660,647,659,668,667,651,677,653,674,671,667,660,658,653,662,650,646,658,656,639,663,660,655,652,645,665,649,661,668,650,662,664,668,639,616,613,602,626,597,616,612,612,604,627,609,608,614,622,598,630,616,621,609,605,619,589,590,605,606,620,619,613,625,637,616,613,604,622,605,616,595,621,591,623,643,596,606,597,622,604,691,681,664,701,713,722,697,682,723,795,661,755,768,687,752,679,688,660,735,717,746,737,741,741,751,715,750,719,674,813,726,748,705,759,725,687,706,703,687,695,739,707,697,723,665,693,691,690,708,705,697,679,706,687,729,709,731,729,725,723,714,715,707,741,714,661,710,699,705,722,707,724,699,706,732,710,701,722,693,708,710,705,745,721,607,628,614,613,599,595,633,591,616,632,627,603,630,635,628,594,627,605,616,606,595,587,601,639,607,601,621,605,599,623,635,597,608,619,629,637,607,599,607,588,639,650,666,666,649,646,650,612,648,636,644,674,641,656,634,624,620,613,608,606,639,660,673,657,633,646,645,626,616,658,599,634,624,658,643,640,643,631,620,631,623,660,695,594,677,693,686,694,684,682,703,684,688,677,680,704,672,717,704,689,690,698,695,691,663,703,718,687,704,694,700,670,689,690,683,695,685,684,690,690,685,685,687,707,689,684,682,690,705,683,680,667,697,676,669,674,686,677,673,677,681,681,672,691,676,701,689,697,659,690,676,690,677,682,698,669,670,687,679,677,680,677,676,680,665,664,680,679,702,693,696,662,677,680,649,690,692,670,724,725,741,758,763,760,733,751,740,717,699,732,696,748,713,766,761,736,729,754,735,731,718,740,751,699,746,720,728,736,788,761,749,761,759,712,781,722,746,786,757,738,761,701,756,701,726,739,702,724,693,696,727,736,706,707,694,682,711,750,716,715,716,727,702,751,732,728,731,720,726,747,684,738,703,713,749,707,752,732,719,689,709,693,698,700,734,716,756,670,658,683,672,651,698,668,669,687,676,662,664,679,694,675,674,690,649,666,646,680,665,663,669,684,667,667,676,636,648,667,674,676,643,672,666,661,700,681,662,601,577,587,565,571,592,558,567,565,569,574,558,569,584,569,568,570,581,586,575,561,581,548,568,577,572,597,567,578,573,562,571,569,568,579,564,577,568,585,555,580,621,607,610,580,551,648,601,577,620,617,590,621,584,628,626,616,610,588,594,608,595,640,630,598,604,618,624,625,557,592,599,599,613,609,578,603,670,615,592,580,596,583,588,635,546,556,613,590,578,581,578,574,580,584,576,577,586,594,589,583,594,585,585,582,595,601,593,585,580,589,591,577,584,592,586,583,580,580,586,586,578,582,599,582,593,592,580,580,585,583,536,552,544,532,544,550,554,542,545,534,525,535,532,540,542,541,545,533,538,540,559,543,531,538,542,545,545,549,546,534,536,535,548,530,531,542,550,537,532,535,541,534,536,542,541,541,528,655,648,638,644,654,653,642,636,663,640,623,627,643,629,618,657,642,648,644,638,641,637,648,649,642,644,660,638,665,627,619,632,637,642,618,665,665,640,654,641,644,585,546,565,603,578,570,589,579,580,578,587,549,587,571,585,581,567,568,569,563,586,560,580,574,559,575,578,584,578,588,576,584,559,589,565,579,577,568,573,584,568,570,669,571,635,596,626,625,663,629,587,576,603,617,594,582,628,571,635,617,621,583,656,597,604,599,574,589,660,609,649,637,634,596,607,643,622,586,556,647,599,590,607,664,599,506,643,637,643,641,609,627,625,631,618,629,636,632,631,608,639,645,604,604,611,640,608,628,611,634,639,612,620,626,648,643,592,651,617,620,604,637,618,623,645,637,617,596,578,587,581,575,577,584,583,593,577,577,573,570,595,587,590,579,594,560,587,613,584,592,573,580,562,578,587,583,577,579,573,584,556,576,574,584,588,584,591,575,587,549,541,574,547,559,544,565,565,561,561,566,554,555,554,573,551,564,562,557,545,544,568,558,562,567,556,561,549,564,558,555,557,565,564,573,565,560,554,551,559,560,565,533,611,594,588,624,642,585,578,620,604,656,576,603,614,608,614,585,619,580,630,650,623,613,628,584,606,639,648,647,605,607,620,596,646,632,614,589,648,595,605,597,628,633,621,592,661,624,631,623,762,751,768,730,751,747,766,738,734,771,737,728,779,744,771,745,772,750,746,738,746,729,737,761,705,727,764,743,771,784,757,776,726,730,738,760,777,704,731,746,758,742,733,760,733,716,732,734,716,723,742,707,745,729,739,712,728,721,720,730,727,713,733,723,724,723,722,723,738,751,712,712,729,727,730,712,756,715,723,716,744,705,708,690,711,665,683,700,685,702,710,711,709,724,696,690,692,704,692,695,708,688,671,706,705,687,672,699,688,700,693,721,671,697,705,688,718,691,707,715,704,704,695,676,696,749,675,691,704,673,716,665,668,652,695,700,666,701,669,709,698,693,689,724,716,716,730,697,713,705,717,666,673,716,683,681,677,677,669,688,732,675,659,717,626,728,704,703,694,726,703,767,706,731,696,742,703,697,740,721,702,751,706,715,699,733,745,690,735,741,738,715,704,694,725,741,722,757,690,715,699,715,634,683,633,658,650,669,675,637,678,635,703,671,679,672,688,678,659,661,645,665,649,651,684,666,684,675,670,663,685,643,651,679,678,684,668,689,634,669,650,692,668,560,547,515,565,585,554,565,563,543,517,555,527,560,555,523,539,545,563,538,509,564,553,557,537,508,546,549,563,533,520,546,563,546,566,579,528,557,565,495,541,539,552,532,541,528,546,542,531,533,539,538,516,537,529,545,543,522,535,536,529,534,524,551,532,524,527,535,534,538,532,536,532,532,534,540,528,529,543,534,537,524,531,539,539,559,551,570,559,559,541,545,556,563,558,545,549,543,533,566,557,576,554,552,557,545,560,549,544,553,544,558,565,565,552,543,569,562,549,563,560,552,555,540,558,554,560,549,566,541,556,541,573,674,646,694,654,650,673,680,681,698,656,703,676,648,664,655,676,647,683,666,679,671,672,685,662,684,644,692,683,701,662,653,683,655,679,679,624,655,721,680,692,678,668,662,621,624,638,657,615,644,624,642,644,601,633,610,618,621,627,645,630,627,627,608,612,637,630,613,627,621,599,646,618,605,630,630,638,592,623,618,628,642,632,608,618,647,626,624,619,617,597,576,596,575,586,578,559,581,582,564,556,577,572,580,600,585,583,588,574,573,582,590,573,593,572,594,587,578,575,582,585,584,573,583,568,578,569,569,565,565,563,584,580,590,586,578,608,650,617,644,614,599,602,648,622,630,609,642,631,625,605,630,603,628,633,599,589,625,628,657,624,632,642,630,639,608,624,620,612,604,642,603,601,586,591,658,635,647,644,557,683,731,721,661,723,709,693,726,682,708,689,725,717,711,701,702,687,732,695,722,729,712,730,682,715,699,721,685,721,701,700,693,684,687,739,716,703,700,730,708,732,688,664,630,612,620,623,640,631,622,639,639,619,646,635,636,659,655,608,645,624,618,622,637,655,647,653,645,652,605,638,636,608,611,625,620,614,648,643,626,637,657,637,627,633,651,639,654,564,563,580,574,574,578,587,573,582,577,568,563,571,574,568,570,572,578,581,581,582,574,575,580,580,573,571,569,578,578,583,561,570,570,562,566,588,576,701,704,668,665,680,634,666,668,700,656,696,663,679,672,685,657,665,662,631,670,707,662,690,639,667,649,662,713,689,685,685,694,689,700,718,654,658,674,701,692,727,660,677,685,733,637,638,635,605,630,620,624,633,608,638,650,603,631,655,611,630,637,644,621,667,637,632,604,616,623,639,618,619,618,649,616,628,628,649,636,622,645,616,630,616,644,610,677,588,598,589,591,600,588,576,586,583,578,590,581,582,578,590,585,583,608,594,595,585,591,594,591,578,587,570,602,581,604,579,569,599,578,591,585,576,577,578,585,606,574,590,530,531,519,534,533,528,537,532,518,550,517,533,520,530,528,525,535,534,523,524,554,531,520,521,523,539,529,524,518,520,532,539,525,528,520,526,519,527,521,530,516,530,522,494,559,571,572,577,564,573,585,558,576,558,564,571,595,580,566,584,589,575,590,585,585,581,580,595,568,588,559,584,583,569,587,584,579,579,592,577,582,563,572,589,575,577,657,609,634,596,627,629,605,616,615,626,641,611,621,623,618,606,615,615,605,619,596,619,622,600,612,618,625,626,610,602,623,630,621,622,613,615,618,624,690,663,681,711,696,683,674,662,687,678,686,714,713,687,709,648,658,692,705,659,698,691,652,669,683,697,684,676,691,679,672,648,628,672,720,669,654,701,680,707,659,688,656,694,702,627,613,644,636,645,620,626,629,625,655,619,620,611,621,625,613,623,637,610,615,633,632,649,602,637,606,624,616,651,618,588,635,655,610,609,632,594,654,619,627,643,627,620,642,614,610,624,618,590,587,586,592,570,567,570,574,567,584,572,597,569,565,583,574,585,584,565,564,556,577,585,582,579,570,571,580,573,560,579,586,568,571,572,572,572,574,577,581,569,571,570,635,651,620,628,649,617,617,679,649,614,634,684,632,661,632,635,662,666,662,628,606,655,606,651,664,622,641,600,604,639,675,620,665,666,695,692,684,680,660,683,686,693,678,680,670,690,685,718,677,683,706,679,691,686,683,693,693,659,686,666,683,694,673,680,698,704,687,678,686,686,687,677,687,660,693,670,667,676,694,679,671,675,684,670,676,681,701,684,694,668,675,678,687,690,683,666,681,674,660,677,690,664,673,674,665,676,682,667,686,681,669,672,693,673,682,683,674,674,682,675,701,709,739,712,742,761,750,728,734,758,727,747,738,741,733,735,760,733,735,737,724,793,780,737,758,746,740,726,780,770,742,747,736,748,750,727,750,747,743,732,739,726,732,725,746,726,730,722,759,699,702,735,723,683,728,674,739,726,706,748,733,749,719,728,707,665,669,697,736,698,733,752,733,723,727,737,735,743,720,727,671,713,747,708,753,710,701,737,719,734,735,723,729,684,714,699,663,667,671,664,692,688,663,681,669,689,672,692,680,675,678,695,663,683,696,654,673,675,680,688,674,709,671,662,689,680,647,658,662,708,671,671,652,692,665,686,641,635,647,651,636,650,637,649,650,667,659,646,641,648,652,631,640,645,643,677,659,668,661,636,650,661,648,649,659,651,656,642,657,646,647,671,654,623,648,644,654,653,583,564,601,570,584,598,585,604,612,590,593,598,578,584,587,590,604,622,597,574,606,597,583,589,572,605,597,601,585,571,584,601,581,580,573,579,591,606,598,596,521,542,536,558,540,552,543,530,542,545,546,534,538,542,544,518,533,543,536,541,536,535,542,541,543,535,545,525,548,540,540,546,547,537,539,546,537,550,534,526,524,532,530,523,524,531,529,522,515,529,525,523,515,526,523,527,531,528,527,516,510,519,524,534,516,516,522,519,521,526,524,528,527,516,520,529,513,519,531,526,532,517,523,521,525,545,524,519,536,616,645,647,627,654,656,659,654,651,612,645,667,645,646,688,673,633,650,649,643,615,677,656,657,633,655,684,624,678,645,672,646,612,671,666,646,631,649,669,635,618,640,656,665,630,636,655,650,715,656,663,670,677,688,641,681,642,650,682,676,655,662,651,671,673,659,663,648,664,668,660,638,654,651,663,644,669,652,667,646,665,665,649,652,659,665,665,675,673,667,671,605,592,593,596,611,607,590,602,594,603,597,580,603,621,588,595,601,604,606,612,603,611,598,579,612,591,592,599,586,610,604,609,611,590,608,583,574,588,620,595,563,559,558,555,566,565,560,562,561,552,570,556,562,561,564,560,551,549,564,554,555,582,551,551,555,560,549,545,554,545,558,554,558,556,565,557,570,579,573,554,537,562,558,555,569,567,558,551,554,546,623,616,576,604,623,625,596,585,578,636,614,611,615,582,595,589,619,633,602,589,590,602,670,613,627,593,623,590,579,600,592,609,619,591,598,633,653,633,578,578,583,586,568,577,581,581,582,578,570,558,581,565,598,583,576,563,566,583,563,573,562,580,580,570,553,569,568,570,582,562,563,571,582,572,575,566,577,568,574,565,582,590,577,583,573,572,601,645,591,592,567,616,520,579,591,617,585,642,568,613,553,592,572,575,604,631,599,585,592,598,648,593,571,585,619,548,644,621,584,609,614,579,578,592,645,593,571,617,590,598,730,735,736,740,742,737,709,719,723,722,745,734,706,758,779,731,713,745,714,703,773,728,763,731,749,783,755,720,719,721,767,743,720,747,725,732,746,711,785,723,737,725,720,720,708,712,735,714,711,713,707,704,723,718,699,721,724,721,717,719,731,733,714,705,702,702,718,710,718,703,715,708,708,726,713,674,665,633,608,628,642,613,620,642,616,653,575,646,602,676,597,631,596,637,612,642,639,611,650,613,564,600,643,620,653,623,648,649,656,627,676,614,646,616,615,643,546,642,611,574,512,621,582,570,595,533,617,564,543,581,566,578,577,602,567,589,561,561,623,561,570,576,591,552,574,535,569,581,551,569,557,604,564,580,584,590,607,586,580,554,582,567,584,576,578,595,597,595,586,575,613,591,586,585,585,587,591,598,607,591,574,592,581,601,579,572,606,588,574,616,592,598,591,564,572,589,575,602,605,593,604,586,593,587,587,643,640,623,644,628,609,638,618,661,634,642,646,641,614,639,639,634,635,635,633,639,626,633,629,638,610,668,623,626,642,641,625,634,623,654,640,647,628,651,642,635,625,610,654,669,687,670,669,668,670,668,648,672,670,666,661,654,676,673,667,675,653,677,665,649,659,675,659,660,659,673,677,661,670,680,685,674,672,675,652,644,675,661,689,657,674,674,671,663,663,673,677,666,670,671,670,671,693,690,677,661,660,684,650,675,661,661,671,675,655,670,677,680,677,659,671,688,661,669,656,675,681,693,665,662,678,677,657,645,667,682,686,671,694,666,665,668,667,660,673,647,659,682,669,685,680,688,670,669,670,662,665,676,661,679,686,679,660,676,659,665,671,659,664,655,681,677,668,666,669,684,660,657,658,659,657,650,666,664,677,680,665,660,662,676,662,650,664,670,672,658,683,670,673,674,654,677,688,688,667,671,668,668,673,652,674,665,689,674,664,650,649,656,654,661,660,668,649,663,641,663,664,650,648,650,647,659,664,645,640,644,673,659,655,644,637,651,665,668,663,633,632,656,665,661,662,653,594,576,584,595,580,573,601,583,582,604,599,592,594,564,597,591,585,589,590,595,592,587,617,603,603,601,588,595,596,613,611,587,601,587,595,590,601,563,597,584,581,590,605,718,662,716,744,729,673,699,707,769,703,758,722,761,750,730,695,727,766,736,782,743,690,672,725,713,674,627,741,687,747,715,731,765,713,785,731,747,721,747,767,733,710,683,688,760,761,702,726,721,737,747,730,743,715,732,712,723,744,739,726,731,746,724,728,703,715,747,725,724,747,716,729,724,682,749,730,714,746,721,739,706,694,698,713,714,709,742,742,680,615,601,615,576,623,601,622,585,591,568,588,601,590,624,631,597,618,583,611,602,612,602,611,605,617,629,619,599,561,615,628,615,597,587,581,596,585,584,613,604,593,570,634,619,624,607,612,620,636,634,624,629,625,604,639,595,619,610,627,634,628,619,630,610,622,606,641,628,628,623,633,630,614,592,598,646,629,641,640,610,632,619,621,622,627,634,675,573,572,569,563,563,568,562,566,551,567,554,564,575,564,580,558,568,547,557,552,566,561,576,562,570,569,569,580,573,573,550,569,590,563,563,570,548,578,569,567,575,544,642,644,631,630,691,661,636,646,574,600,623,624,676,643,681,641,670,647,622,637,623,638,596,608,594,636,589,628,710,655,636,627,633,611,629,637,611,663,620,654,680,659,668,685,724,649,689,686,649,666,657,666,673,674,663,659,623,695,649,685,651,697,662,648,656,662,696,689,653,677,646,679,692,649,663,637,655,677,682,695,622,674,627,646,639,641,624,637,641,631,629,649,649,649,652,627,620,622,621,640,614,623,633,631,643,659,621,676,644,651,635,633,631,642,646,630,652,665,634,639,629,615,625,643,631,610,653,575,583,589,593,584,596,577,593,595,592,600,576,585,595,592,577,602,606,602,595,585,577,614,583,588,583,611,592,596,603,606,573,578,586,603,595,613,572,581,573,579,553,567,551,565,557,571,543,565,587,561,566,566,561,555,561,562,543,565,561,544,569,553,569,556,576,574,570,575,561,563,554,556,549,563,571,543,566,569,564,603,586,583,600,605,598,596,592,581,595,585,605,602,599,603,585,596,595,608,589,613,618,571,564,587,589,594,610,601,598,605,579,605,603,595,599,577,596,597,587,588,606,607,615,586,587,595,717,763,726,710,729,702,733,750,750,745,745,717,727,702,713,728,712,748,719,730,690,739,720,733,757,752,721,709,690,734,735,711,740,707,688,730,763,742,746,727,728,707,716,717,716,688,731,731,724,722,698,725,732,699,710,732,703,718,696,728,709,713,726,701,737,709,710,721,717,720,703,719,706,714,733,727,732,717,700,698,728,713,715,704,713,754,640,637,643,635,622,618,674,610,602,643,655,636,617,620,651,600,621,627,601,618,611,587,622,632,612,595,633,608,617,608,592,598,603,593,660,618,640,601,605,644,632,635,622,638,652,620,556,573,565,543,540,552,571,558,552,580,567,557,554,533,567,570,550,563,574,574,557,560,583,561,572,553,579,571,556,568,567,572,573,551,568,589,557,574,555,528,564,562,564,565,560,572,561,549,559,562,555,550,566,550,572,573,564,577,569,557,558,558,565,560,557,558,567,575,575,561,550,562,568,559,536,564,555,562,565,554,561,556,571,567,581,578,577,570,583,587,581,575,575,578,575,569,586,577,584,587,583,568,580,587,591,584,585,583,583,581,557,579,573,584,566,595,572,598,572,587,583,564,577,578,582,589,586,565,690,619,635,667,647,647,614,651,625,602,637,673,627,651,674,691,658,650,608,628,603,639,630,635,647,668,635,596,654,654,651,606,616,651,655,614,642,642,633,656,711,699,707,716,710,694,675,703,725,697,680,696,691,678,711,705,691,702,718,691,704,690,702,677,702,681,700,693,706,687,681,671,689,707,699,683,714,691,695,682,662,672,682,661,657,681,662,680,667,667,678,665,693,662,677,665,684,666,667,662,686,680,660,672,664,662,674,664,678,667,671,657,665,665,664,675,680,664,679,670,675,672,657,673,660,608,597,576,602,596,582,604,582,574,571,576,603,590,590,587,583,587,584,610,597,583,596,589,582,581,566,573,579,581,586,580,573,570,568,580,581,587,596,593,589,592,574,585,591,605,592,597,635,689,583,643,632,627,591,619,641,664,673,640,655,601,623,611,606,629,640,600,635,580,634,644,606,631,598,643,648,612,682,609,604,619,686,629,698,697,694,705,671,690,682,695,688,699,689,704,704,682,693,714,683,683,700,687,680,710,705,683,670,682,698,672,686,701,679,677,696,678,686,672,717,693,687,660,694,676,688,667,693,664,670,674,659,660,686,673,692,677,674,681,677,673,665,682,699,676,679,657,672,669,682,686,660,680,668,702,673,677,671,674,677,679,656,659,660,679,654,663,580,583,567,575,569,603,571,573,561,575,565,577,544,579,580,584,561,570,568,580,574,557,582,586,577,585,574,574,581,574,590,576,577,574,582,578,585,593,568,661,652,671,645,679,655,642,617,657,635,690,649,658,654,677,653,674,642,686,688,654,690,634,681,679,669,654,648,687,645,637,652,683,650,633,649,660,642,682,663,649,642,635,587,582,572,575,567,565,567,577,589,601,579,581,597,557,592,564,591,592,568,592,569,566,565,591,576,580,585,595,564,561,578,574,584,577,576,579,572,594,585,590,570,603,608,608,567,596,562,554,571,572,604,568,572,565,575,539,581,580,546,583,550,576,558,556,570,550,600,587,549,561,578,569,583,572,554,568,577,560,572,561,556,584,565,559,574,571,553,642,654,668,668,658,661,656,651,659,665,640,658,673,684,672,662,665,658,641,648,646,651,650,633,647,674,655,648,659,655,651,661,660,662,662,662,654,647,644,647,655,656,641,652,660,654,649,660,668,634,619,631,614,625,623,608,602,598,640,606,620,624,621,633,616,615,617,592,627,611,614,611,612,615,642,612,610,613,595,623,633,620,618,605,619,608,619,613,603,612,616,599,595,573,592,582,580,587,585,576,591,580,590,578,581,592,580,575,581,584,570,580,586,586,572,592,592,586,583,567,580,590,577,573,586,594,584,597,583,585,586,590,579,589,654,610,657,628,680,649,638,621,647,618,649,622,644,648,640,629,665,627,604,647,604,616,634,635,640,660,656,612,634,620,623,647,660,657,626,626,620,601,630,626,642,700,686,685,731,713,694,691,708,720,699,706,706,697,696,685,705,703,711,679,694,694,691,683,716,688,697,688,695,699,706,710,676,706,707,702,690,682,699,697,692,684,686,681,678,690,674,703,677,683,671,675,691,687,679,681,687,674,681,675,684,691,691,690,698,689,694,686,670,687,660,678,682,681,683,676,702,719,673,683,691,685,679,666,657,669,708,662,670,673,674,665,655,653,682,677,674,685,666,661,681,665,677,668,668,668,677,651,659,668,671,667,675,668,662,674,657,680,677,672,676,656,663,681,654,681,663,676,670,659,670,656,657,679,661,663,649,663,649,677,660,662,663,664,676,656,660,674,661,660,669,653,676,663,659,667,655,681,654,651,668,671,656,672,666,654,662,655,673,675,733,751,739,749,724,720,662,708,718,689,717,710,719,743,711,722,730,691,717,699,719,731,703,706,709,728,697,728,702,734,723,762,762,688,726,762,703,747,684,713,708,701,700,689,698,691,693,696,705,700,726,720,690,692,680,715,708,677,715,731,692,683,712,723,704,685,713,699,701,698,692,696,716,705,694,694,717,703,641,698,716,662,701,664,706,673,732,709,687,678,704,708,646,699,729,645,725,711,661,691,704,656,681,688,675,616,683,680,649,699,664,694,732,730,689,706,680,756,678,693,656,654,620,656,666,659,659,667,657,666,685,652,654,638,663,670,642,673,661,644,615,686,667,664,678,631,652,650,664,664,664,676,669,670,671,634,649,677,665,643,666,671,665,531,539,566,558,555,568,562,576,548,560,560,563,570,552,572,557,553,563,541,562,541,549,573,561,557,562,564,553,549,559,546,553,544,552,559,547,534,551,555,573,590,607,600,583,589,591,598,598,609,584,575,583,587,569,582,587,587,610,609,582,584,577,591,602,607,594,596,585,593,593,593,584,593,591,585,580,612,593,615,604,616,624,602,638,611,608,647,627,617,604,619,630,627,626,626,625,651,606,633,604,609,623,615,626,605,625,627,621,649,611,609,610,612,632,613,641,621,623,632,624,696,689,712,728,690,718,698,701,694,704,699,685,717,725,713,722,678,722,695,701,764,733,714,691,691,717,751,683,722,673,670,723,691,716,730,731,750,715,701,697,676,712,715,718,683,701,629,639,662,663,584,639,670,647,662,637,657,652,661,623,668,674,632,635,664,622,613,641,657,636,654,615,655,638,648,634,650,632,596,629,655,624,657,653,646,626,643,631,666,655,653,574,614,605,629,640,622,629,670,619,680,604,627,632,610,665,654,621,664,651,567,671,641,656,603,623,673,596,690,727,579,622,633,677,617,645,627,619,592,618,605,625,660,638,649,649,596,652,587,720,688,704,719,678,701,691,713,708,713,692,691,718,675,700,694,714,711,703,692,693,712,701,718,696,691,696,683,711,670,700,710,691,688,690,699,737,695,711,723,696,697,689,689,676,670,667,657,677,662,660,670,664,659,657,662,655,658,659,677,692,689,671,674,704,690,665,671,670,663,668,647,672,652,685,664,671,666,696,672,668,694,661,666,662,668,696,688,648,654,634,672,640,650,654,641,649,652,647,671,644,643,650,633,648,640,643,631,659,637,632,630,644,644,629,630,651,648,668,642,626,650,640,643,631,636,647,635,653,653,652,653,658,661,655,656,662,669,660,670,680,661,667,667,657,668,677,651,660,673,647,648,675,661,648,663,672,659,655,652,664,666,663,659,661,643,650,664,660,668,655,661,671,650,652,745,754,712,708,720,682,704,730,741,730,724,749,741,687,745,689,685,715,738,710,724,752,709,748,683,697,716,741,701,695,728,695,701,742,714,682,715,795,701,699,725,694,705,704,718,718,701,678,698,720,693,683,680,699,704,719,705,711,692,700,696,686,708,713,692,706,701,692,704,699,711,709,700,691,693,688,700,718,701,711,701,686,697,696,700,715,673,700,711,734,699,766,687,686,685,738,746,697,685,655,677,654,642,729,735,688,645,697,706,674,753,714,737,752,697,713,701,722,776,693,660,687,675,687,700,706,647,658,649,701,677,673,685,715,668,667,647,688,674,658,685,671,665,672,691,645,661,661,669,675,669,679,676,653,639,664,676,659,665,676,686,687,683,642,656,686,648,667,676,682,657,678,677,666,648,634,656,650,646,651,637,655,643,623,633,667,643,649,678,646,642,628,631,639,640,638,657,635,638,643,675,623,647,635,659,653,649,648,637,644,633,650,645,661,628,647,631,636,630,636,639,641,658,644,654,649,649,646,630,658,663,650,658,651,634,643,661,652,653,639,658,663,634,661,637,659,640,655,650,649,642,665,645,653,632,639,657,662,634,657,643,590,609,600,591,581,604,581,596,600,594,605,602,590,605,588,575,606,598,592,616,597,603,587,603,599,581,588,608,600,595,603,605,618,594,572,593,585,594,602,579,591,601,629,622,673,620,676,654,607,637,621,660,641,642,702,665,566,636,624,656,620,650,604,691,584,644,656,694,616,716,616,592,653,696,621,675,642,583,736,630,644,659,634,651,632,677,630,636,626,650,659,669,649,645,653,623,659,655,647,653,634,636,671,648,646,656,639,645,647,659,627,637,624,624,650,640,654,641,643,636,663,665,659,658,620,578,581,556,549,561,554,560,564,562,539,561,540,556,568,555,539,560,566,549,568,561,569,558,560,556,573,538,547,554,550,565,573,551,544,540,569,548,552,572,548,571,555,568,555,568,565,551,560,564,566,557,558,554,565,576,560,548,554,573,565,574,564,566,562,555,568,576,559,564,563,562,556,553,576,562,559,560,572,557,562,579,558,547,565,540,576,567,569,556,547,561,584,555,547,578,555,558,559,554,554,576,558,546,562,574,545,539,564,555,583,580,558,568,558,567,565,561,560,566,564,578,555,542,539,523,510,518,522,524,522,519,541,528,511,523,526,535,515,510,512,533,520,510,534,539,533,518,518,520,516,535,523,514,521,529,526,534,523,531,521,529,512,531,523,519,523,539,525,534,521,534,532,509,528,534,536,540,527,540,542,522,525,542,530,535,530,529,519,524,542,537,536,539,542,536,525,529,537,533,531,538,528,536,539,525,525,526,522,529,529,526,521,538,530,532,550,544,555,535,536,550,529,533,547,545,546,540,534,552,531,553,542,549,529,526,539,535,530,539,540,538,549,542,540,541,547,536,549,535,550,531,548,545,538,555,535,549,526,549,566,555,555,559,569,556,546,578,568,565,559,565,572,557,565,559,553,553,562,561,568,565,567,569,565,552,567,554,543,569,569,564,560,568,573,576,547,570,561,567,554,556,553,566,608,623,621,589,610,594,620,621,609,605,616,610,597,612,619,614,597,609,609,611,612,617,611,602,620,631,618,609,605,628,607,627,614,594,614,608,645,620,632,649,646,614,630,622,666,616,634,647,634,628,639,643,649,649,625,664,631,642,637,623,628,634,652,648,650,617,655,665,621,628,646,628,643,641,639,726,745,715,703,701,738,694,711,675,732,766,734,730,716,678,673,694,719,728,712,717,717,731,669,721,720,736,728,708,686,729,738,698,713,716,699,744,687,689,724,744,711,747,677,732,738,723,738,729,726,727,741,744,711,725,723,719,711,728,735,740,722,736,720,715,719,729,730,732,714,719,725,738,707,730,727,740,714,722,728,736,718,725,750,669,657,645,659,667,673,643,698,653,633,661,644,672,672,680,676,672,660,644,637,622,662,669,649,670,683,645,669,670,683,690,664,673,673,676,665,665,656,636,631,663,686,647,596,555,559,535,542,559,548,547,554,532,545,545,553,539,557,562,538,544,558,544,559,556,538,544,565,567,542,545,561,552,542,578,550,552,545,553,538,556,548,562,551,577,587,562,582,563,574,585,579,595,570,572,589,566,568,583,572,592,571,567,573,554,569,592,585,568,570,579,562,579,585,587,579,560,570,568,586,592,577,577,576,614,604,607,569,597,631,624,591,605,618,593,597,595,636,614,604,612,589,638,638,601,630,631,613,590,604,602,596,615,622,600,607,618,610,605,601,595,634,606,611,592,619,617,585,615,594,590,599,613,612,620,612,584,604,607,599,594,597,617,633,598,605,598,621,625,580,592,600,598,614,585,633,612,602,628,622,594,595,612,617,604,587,616,606,603,618,576,595,582,578,592,573,589,585,585,558,578,582,576,576,574,582,580,570,571,571,588,585,594,584,585,565,574,584,583,581,587,577,576,583,572,563,583,590,581,567,579,579,586,681,666,677,670,664,661,646,665,682,672,667,701,654,676,679,677,674,672,670,698,681,652,661,663,659,681,668,677,667,707,683,677,693,696,687,667,658,658,672,662,660,661,672,700,709,722,694,665,695,703,704,684,672,717,681,670,672,655,740,695,672,676,684,661,677,678,674,696,711,667,683,684,697,647,691,685,703,680,688,682,708,694,686,685,696,701,680,703,695,685,742,698,676,704,676,693,692,709,694,692,698,687,689,683,693,673,664,699,670,664,681,664,688,680,696,670,709,684,699,671,680,678,666,677,702,691,615,586,583,630,574,595,606,611,584,623,588,593,559,619,614,615,569,613,599,586,615,615,586,621,602,613,626,621,628,580,600,590,603,583,619,638,573,588,651,565,587,562,568,567,568,557,562,577,574,559,577,565,581,559,576,569,581,578,563,569,572,580,574,573,557,581,575,576,580,565,572,566,547,568,570,569,569,574,573,545,538,531,530,556,528,532,545,521,544,542,536,536,534,542,556,522,533,519,529,579,560,551,531,549,536,537,533,542,543,548,558,532,562,531,548,560,554,535,544,542,544,538,543,528,526,520,524,515,520,519,540,538,540,498,516,532,502,519,517,519,529,540,531,529,530,524,513,513,531,532,515,517,538,514,513,510,509,518,519,529,523,532,526,527,505,540,501,560,585,586,597,574,564,582,563,596,571,577,572,571,568,567,578,587,600,561,592,583,578,566,582,584,582,576,577,578,590,579,571,572,571,577,570,583,563,583,561,581,637,639,637,650,631,631,651,635,650,637,627,641,653,660,625,635,600,628,641,636,646,626,626,659,639,632,646,644,624,651,649,660,646,636,626,640,655,636,627,633,642,625,657,652,645,649,663,636,663,639,646,640,652,651,652,644,643,639,635,653,652,640,660,651,652,658,660,633,641,631,649,628,652,662,643,648,639,654,632,656,662,645,664,644,647,635,653,642,636,610,621,606,634,602,601,638,601,610,629,594,601,598,597,599,613,625,617,616,607,621,613,617,595,608,604,615,597,610,613,587,615,606,607,611,626,631,630,595,610,609,632,599,624,619,597,632,607,605,618,584,586,600,586,572,569,587,575,587,582,582,576,582,576,583,586,585,589,585,572,575,584,577,583,581,590,589,585,581,582,561,575,570,587,569,579,583,589,559,568,579,575,567,678,656,671,681,668,658,692,681,658,678,673,693,674,678,680,671,678,682,669,700,684,662,658,677,675,671,677,688,655,693,688,681,670,669,672,661,664,664,667,669,696,677,672,664,651,681,674,643,669,668,647,658,666,649,681,703,668,653,675,659,639,671,706,673,683,675,663,640,639,713,678,679,677,685,659,685,649,662,662,710,668,622,610,664,619,586,654,619,635,622,635,643,617,607,652,631,657,648,603,624,645,616,599,644,632,646,641,615,651,624,629,627,592,623,595,614,632,658,597,643,649,565,628,576,651,619,622,676,566,594,633,596,639,664,632,712,554,647,641,685,578,565,627,671,587,624,618,676,597,612,651,594,655,669,627,691,672,693,615,629,654,670,551,630,606,646,625,626,619,612,620,634,638,624,596,612,625,628,641,631,621,635,633,612,653,637,618,617,628,617,602,632,614,631,612,603,655,609,615,626,619,630,650,629,611,609,630,583,580,588,585,593,590,575,584,584,585,592,574,584,570,577,582,590,576,588,571,582,583,582,576,579,576,591,567,586,575,582,595,569,585,574,574,574,572,588,594,592,579,586,582,574,583,586,633,631,657,625,643,660,639,687,642,669,651,644,613,652,656,644,660,630,642,665,641,657,644,654,627,652,641,638,593,637,582,627,632,664,642,649,650,650,644,647,660,693,711,709,684,708,676,695,683,696,694,698,669,718,707,685,708,714,687,692,693,681,695,702,709,677,701,716,687,676,685,709,686,695,696,714,709,689,705,703,684,685,684,682,699,686,670,687,675,670,667,679,686,675,672,668,678,661,684,683,677,672,649,681,681,685,678,672,664,663,679,672,679,687,664,650,670,672,672,667,679,670,685,659,661,672,666,672,668,669,701,679,682,571,575,584,571,575,583,570,576,544,583,574,585,589,570,573,593,565,578,581,578,565,544,568,573,589,571,582,568,594,550,546,569,571,553,557,568,560,558,571,571,572,590,572,580,529,612,587,598,597,581,595,581,608,578,583,590,582,616,594,580,603,576,627,581,589,574,590,589,591,582,596,578,598,577,577,582,596,616,586,603,595,579,597,600,590,604,592,600,605,592,606,625,612,602,626,622,614,607,597,612,592,597,628,628,616,618,601,633,594,618,628,594,616,614,616,615,634,606,617,604,592,616,618,600,627,605,640,630,596,598,606,621,597,631,602,609,598,600,576,588,576,574,594,570,559,585,575,586,582,552,583,571,579,582,574,587,579,583,591,556,562,579,576,574,581,579,582,570,586,590,579,573,588,574,585,566,582,589,560,565,578,619,619,616,585,632,641,572,635,602,640,609,633,633,621,657,597,648,627,663,613,635,634,629,611,603,649,590,655,639,642,590,617,613,651,614,603,649,651,602,650,636,639,670,680,667,656,662,679,659,672,667,662,696,651,672,671,678,681,660,671,680,665,677,669,685,669,657,665,645,669,665,670,667,664,666,662,667,649,672,690,665,670,661,681,671,693,674,664,623,615,590,604,589,607,599,587,619,627,619,613,607,605,615,610,613,592,618,595,607,631,592,588,598,603,600,601,589,600,597,594,629,629,606,607,600,586,612,589,606,606,595,626,606,631,772,739,697,742,706,711,727,705,748,651,737,715,776,718,696,693,772,693,791,676,730,755,717,754,688,697,721,749,626,708,706,669,755,695,755,691,658,727,774,747,706,753,695,734,721,761,733,698,707,692,700,715,707,748,707,712,689,697,712,723,720,684,707,712,709,695,740,716,703,722,719,717,714,704,699,725,731,727,668,717,699,722,719,711,707,721,700,727,701,683,727,683,662,670,635,643,593,647,656,650,649,633,629,683,674,660,638,634,663,648,665,662,647,643,647,683,665,661,642,639,654,651,663,662,643,635,635,658,636,657,648,657,624,642,659,726,704,711,697,719,715,707,701,740,718,727,731,731,702,736,716,706,751,791,686,736,774,710,715,708,709,718,747,723,705,717,707,761,728,707,739,726,729,729,714,716,731,729,702,679,715,734,702,716,685,736,697,738,692,724,779,748,721,710,739,754,699,773,681,725,722,737,719,717,709,728,740,742,728,739,757,720,706,680,728,718,668,666,667,660,694,658,657,659,669,663,668,670,655,654,644,646,671,654,683,672,654,646,653,648,652,669,669,679,677,671,672,663,640,671,679,644,642,646,678,672,576,577,559,589,577,583,586,580,579,582,577,586,570,600,590,565,564,569,577,572,568,566,583,591,577,582,579,584,575,587,570,567,573,590,581,586,566,573,582,571,573,572,547,693,675,676,673,690,663,693,681,682,668,700,681,673,670,655,682,679,642,660,678,698,674,675,673,660,707,656,662,683,669,668,692,696,688,692,670,665,691,700,685,693,728,719,699,676,691,702,708,688,667,640,681,688,678,663,693,682,670,690,675,676,678,696,671,689,695,639,690,679,684,711,695,626,685,676,704,683,696,679,673,678,676,667,692,706,695,667,722,706,671,712,713,704,695,664,669,690,695,690,684,681,662,669,683,680,666,686,681,687,685,697,700,687,682,737,607,605,581,597,570,591,613,582,578,592,580,598,592,571,589,578,569,614,607,585,598,588,619,577,593,605,594,598,573,597,611,591,597,608,609,571,592,620,569,565,570,598,577,603,537,627,621,606,641,614,605,630,637,667,663,639,622,636,630,661,593,597,583,659,641,664,620,572,648,658,660,618,642,673,594,685,622,663,667,659,628,626,593,618,619,675,686,675,686,683,700,713,656,656,660,657,693,669,697,668,676,681,691,710,683,696,695,698,681,691,688,710,705,674,685,693,670,702,690,712,661,676,709,672,675,684,680,703,675,678,652,753,641,593,579,591,648,610,584,631,580,585,605,634,597,596,599,641,648,616,637,593,645,629,631,622,601,633,579,592,605,594,669,561,626,614,614,646,587,664,557,598,613,613,623,612,665,663,685,702,693,708,686,676,690,694,646,656,689,674,695,680,673,690,697,678,699,694,676,677,688,685,703,694,679,685,681,668,683,677,682,708,730,695,663,674,663,603,678,621,734,627,660,678,660,652,642,618,695,653,714,712,687,627,645,673,623,690,645,638,676,678,628,625,687,686,670,629,669,655,675,709,665,695,695,645,723,745,688,722,697,712,726,683,718,710,709,699,704,715,713,697,698,713,721,705,715,710,715,704,696,712,691,715,707,710,709,722,688,727,705,718,722,702,684,700,702,702,602,608,597,603,613,631,613,623,647,608,629,606,622,599,635,644,608,638,607,606,648,586,623,646,624,644,618,615,622,623,620,614,615,640,635,601,643,602,626,627,622,614,632,625,579,601,581,584,638,587,592,586,604,565,606,598,615,609,619,604,587,600,600,589,569,589,619,587,584,593,582,594,598,602,599,575,591,608,591,613,602,572,580,596,598,577,601,600,607,587,654,660,644,635,638,660,633,660,664,676,645,653,655,674,658,680,657,672,653,645,637,638,642,658,668,678,661,636,632,644,641,647,663,661,641,673,662,632,646,635,678,649,667,641,650,647,654,662,648,603,589,588,603,595,606,588,591,593,591,602,594,597,595,603,633,596,594,600,608,583,599,598,604,610,600,600,573,591,610,588,587,594,579,619,614,593,590,604,599,591,606,600,604,580,591,583,617,650,598,633,606,611,604,564,572,623,615,608,603,568,607,604,628,656,612,597,607,620,606,613,591,617,634,608,595,590,611,607,611,646,595,635,566,595,576,630,614,585,593,576,576,590,589,588,585,580,607,597,582,572,581,599,569,582,579,602,608,580,587,569,585,571,580,594,593,585,581,585,595,587,582,599,596,590,653,647,638,645,657,642,636,633,626,594,573,605,669,629,608,590,619,620,658,619,640,647,657,613,664,623,610,649,646,618,619,637,589,630,635,633,671,629,641,671,632,633,687,679,666,667,673,686,655,667,662,660,666,660,674,680,686,664,666,678,666,662,672,670,684,683,672,661,683,678,654,663,686,663,655,661,656,667,666,672,667,569,566,604,582,573,572,582,580,591,572,575,575,572,571,566,577,565,571,573,591,565,574,562,594,590,575,596,577,582,587,563,571,554,543,584,566,556,578,595,585,581,595,578,589,553,574,584,599,568,575,557,584,580,574,580,588,565,573,568,563,553,586,577,583,593,564,576,582,581,594,576,588,574,574,568,571,584,577,575,576,559,586,551,589,566,583,575,565,573,552,566,567,557,565,557,555,570,562,551,562,558,559,568,571,561,565,572,567,551,570,561,566,552,555,567,553,569,561,561,555,566,559,563,570,570,557,549,584,570,577,574,570,587,568,595,598,589,593,575,582,584,568,582,580,571,573,581,585,574,579,582,576,600,564,571,568,578,581,575,586,589,584,589,582,568,579,585,578,585,586,597,595,627,610,646,583,568,654,599,572,627,619,607,550,615,620,632,628,650,642,626,598,614,570,602,630,639,644,603,628,613,644,627,599,593,605,594,638,609,609,642,615,597,620,678,610,606,617,605,594,587,609,617,590,611,601,592,618,584,597,596,606,592,602,614,609,596,592,621,596,598,608,587,607,621,574,590,604,607,593,610,603,608,588,603,595,586,578,644,612,612,629,651,692,649,640,637,667,642,636,648,604,636,621,616,615,588,594,617,658,632,643,644,630,601,633,670,609,619,643,657,668,593,623,640,630,637,581,590,625,677,653,618,683,683,678,674,695,672,689,671,689,674,666,676,680,681,651,682,678,674,698,703,677,683,671,666,690,666,676,679,683,672,690,682,688,690,665,683,686,685,673,691,674,674,688,694,655,689,699,686,715,726,733,708,705,724,694,715,711,747,754,719,716,744,712,714,724,759,747,742,726,699,698,701,767,715,756,731,722,712,736,738,690,731,694,708,669,718,715,703,719,698,700,693,710,706,701,700,717,697,702,707,703,699,722,707,707,712,707,698,715,714,708,709,724,701,694,679,721,708,684,707,696,672,713,710,701,704,689,695,708,703,702,679,690,711,698,696,704,743,685,634,720,673,709,709,623,731,699,691,706,714,656,722,703,740,685,727,708,739,748,688,663,683,660,666,665,677,680,647,681,720,761,675,669,727,659,683,664,653,656,670,666,655,659,666,646,663,688,660,652,641,654,641,646,654,660,664,647,646,643,661,617,654,668,650,663,633,667,672,643,630,633,659,653,659,673,651,679,609,658,653,643,687,687,738,704,738,719,693,734,745,691,708,719,743,729,752,704,670,712,743,725,733,741,747,735,720,698,709,731,716,732,708,736,759,725,703,695,718,723,720,752,742,717,732,716,695,712,717,696,710,721,678,715,711,719,693,716,755,694,712,719,733,735,730,737,726,760,710,753,678,711,682,749,717,729,759,710,671,734,755,729,710,743,658,682,659,670,650,667,684,653,639,662,639,645,670,679,671,665,658,669,677,668,655,674,683,672,652,663,640,678,702,669,668,679,662,668,666,667,691,672,647,673,680,672,615,670,658,671,652,658,566,582,559,570,577,569,582,562,581,573,556,582,573,587,572,555,574,563,556,549,573,563,586,577,558,569,576,571,584,585,589,583,570,570,559,572,571,557,599,614,612,601,631,599,585,593,609,544,578,594,589,606,563,606,604,614,594,633,610,608,603,584,564,597,620,542,577,606,545,587,603,565,593,587,565,570,593,636,631,604,621,658,561,577,567,559,552,573,572,560,567,588,587,575,568,571,579,589,565,580,590,575,571,571,575,565,568,580,586,594,580,565,576,569,569,560,582,566,576,556,576,577,584,546,675,639,648,648,671,643,663,637,668,669,633,667,649,660,667,651,659,628,663,635,659,647,651,663,682,653,671,647,640,663,650,683,643,656,676,663,669,660,646,664,670,676,621,680,614,578,589,575,598,586,595,586,613,591,608,577,599,598,583,585,604,591,595,566,597,593,606,566,580,586,600,597,580,589,593,608,573,581,579,621,592,584,566,576,584,593,585,593,572,612,575,596,577,576,595,551,589,593,583,605,560,641,564,624,668,648,591,624,640,586,583,576,593,597,603,570,624,621,592,637,598,639,556,589,633,626,579,597,569,573,593,604,617,525,667,650,646,533,598,612,616,605,591,593,602,602,598,589,613,578,602,600,604,595,601,602,619,601,602,592,589,612,595,585,588,596,594,604,593,592,600,606,623,592,595,603,605,592,608,600,617,607,593,593,571,560,575,566,573,573,562,575,573,565,565,581,573,585,570,567,569,584,557,564,578,579,572,572,548,567,557,573,553,565,568,569,551,566,562,573,594,552,544,549,538,545,546,541,545,537,552,551,550,535,552,552,562,549,561,562,562,554,550,538,535,560,538,560,553,566,546,568,555,550,553,548,549,556,541,549,543,546,649,694,700,689,671,641,655,704,681,658,669,704,680,600,690,664,702,662,647,663,662,685,689,694,684,722,695,700,660,652,704,581,661,645,701,671,757,683,631,663,636,588,583,624,582,579,615,590,601,588,596,592,611,620,587,598,565,599,581,594,603,593,611,566,590,602,571,587,587,604,592,617,601,603,579,582,611,600,599,596,593,604,605,607,594,554,549,577,561,559,546,536,535,528,545,547,562,570,531,528,535,529,528,551,551,549,549,571,538,568,572,557,546,550,567,562,554,564,513,552,555,552,544,565,553,566,540,548,550,535,553,786,768,773,749,753,779,741,807,735,753,778,733,749,772,736,754,761,733,733,758,733,762,774,791,767,797,759,725,722,793,766,751,765,761,773,760,742,775,749,722,788,732,752,704,712,735,712,684,703,720,696,698,686,726,737,698,718,704,716,721,766,753,721,718,717,732,754,761,731,705,698,745,745,723,693,706,756,731,746,708,732,638,669,675,660,648,656,653,659,661,661,663,650,650,644,629,666,660,658,656,648,675,662,678,647,666,654,670,648,669,669,663,674,626,682,656,685,689,647,671,654,640,633,655,694,635,657,723,743,744,733,710,717,699,725,731,693,730,687,766,722,696,732,726,726,744,719,739,714,714,714,707,741,727,695,665,722,724,735,701,716,714,741,740,745,701,748,735,695,744,737,746,722,731,762,731,749,735,716,752,753,706,748,759,713,763,733,748,741,738,741,744,728,725,767,715,755,709,714,739,738,729,711,700,751,727,721,706,671,697,674,695,743,708,718,707,716,720,725,712,718,690,678,700,709,729,670,699,713,713,717,709,690,717,717,734,704,696,714,722,702,725,685,716,673,697,694,725,706,701,697,726,729,719,718,687,669,688,710,707,710,709,690,713,705,671,687,693,681,720,686,705,696,703,713,700,712,696,699,703,694,685,699,698,686,699,705,708,698,693,711,706,697,697,710,712,688,731,701,701,613,602,633,589,633,611,680,608,641,578,628,606,654,637,647,578,604,663,658,622,648,629,609,647,660,618,621,635,669,568,649,638,656,641,641,612,601,550,579,575,580,590,580,601,588,572,565,569,589,560,535,599,584,602,595,586,605,582,607,568,581,581,583,584,590,546,543,593,563,602,597,584,551,549,600,574,550,586,554,551,568,575,573,581,560,556,573,565,568,573,556,546,581,560,567,561,576,552,578,577,559,544,553,579,569,579,572,579,575,566,573,575,571,549,571,574,554,553,540,552,545,547,530,544,550,541,559,542,538,539,541,562,550,543,539,551,542,541,547,551,544,544,548,555,545,557,546,550,548,540,542,553,545,541,548,545,552,563,539,549,538,554,539,547,543,557,540,552,554,543,551,542,548,531,540,544,546,546,558,550,540,558,551,549,536,553,538,549,552,558,546,543,547,556,545,550,554,547,539,539,550,552,554,549,554,553,575,643,630,654,659,641,640,622,666,662,610,646,642,616,665,617,603,603,632,636,643,637,626,590,638,639,631,607,609,617,635,649,622,639,634,611,657,642,613,604,672,659,624,623,630,599,560,554,562,554,542,571,541,554,569,573,548,561,542,537,554,550,556,539,556,549,565,564,574,568,558,557,556,567,561,576,580,550,551,542,559,554,560,569,559,545,565,532,513,542,550,545,533,562,567,553,533,529,548,554,544,543,531,543,543,579,529,549,534,543,544,552,530,539,533,544,538,533,537,552,540,517,553,569,553,550,539,518,543,530,545,529,583,700,709,688,728,708,705,701,716,709,708,705,694,676,690,726,717,712,721,721,700,701,734,698,712,692,693,694,712,717,698,733,734,756,694,715,745,711,703,748,714,718,707,714,760,696,699,715,726,703,713,697,704,691,682,708,691,701,689,682,694,688,710,691,711,709,713,710,694,698,722,716,708,708,701,712,708,714,702,714,702,701,719,685,690,715,716,707,682,723,704,697,686,680,691,720,685,685,679,703,681,672,685,696,682,707,669,673,716,693,715,704,683,688,695,688,697,702,709,685,716,690,684,688,705,683,734,713,734,716,703,709,676,675,669,625,597,609,611,614,616,608,618,636,625,587,635,608,588,606,593,594,639,594,614,622,620,605,608,666,584,643,595,599,618,611,588,598,625,624,616,614,605,620,601,627,592,543,537,553,530,529,550,558,569,543,534,543,548,535,548,529,542,538,548,563,553,541,549,545,543,543,555,551,533,543,548,541,545,565,552,539,540,531,559,550,538,537,563,537,532,675,681,686,690,667,672,675,679,685,659,686,668,680,692,659,690,675,661,679,676,651,679,686,679,673,665,669,664,678,683,702,676,669,682,647,688,672,703,634,645,622,658,625,649,655,654,643,657,642,620,660,633,618,648,637,639,655,646,644,648,658,642,655,669,637,652,635,644,667,642,646,640,649,639,639,692,641,647,628,633,645,639,633,640,652,626,652,591,644,619,635,636,654,665,650,649,630,660,627,671,665,615,631,623,636,627,657,654,631,643,639,628,632,651,655,638,659,666,643,711,688,668,710,712,682,661,681,699,678,725,681,678,720,731,704,682,691,710,703,696,686,667,696,662,669,705,690,690,705,694,715,668,693,714,695,657,683,733,702,689,746,699,687,671,642,645,669,608,642,638,626,648,628,639,665,637,625,621,635,630,630,680,643,643,617,641,661,647,629,642,649,668,624,655,637,640,646,635,672,606,624,635,662,689,656,635,628,654,684,660,666,595,602,621,629,679,594,604,664,656,603,602,611,640,571,616,571,557,636,665,617,609,681,610,614,639,645,621,585,564,601,664,534,607,583,615,682,625,593,603,608,735,597,597,614,601,624,581,602,600,608,571,582,596,602,595,588,600,611,584,607,592,601,590,589,593,600,602,597,591,608,617,605,625,610,609,605,598,587,614,610,612,599,603,615,576,599,594,605,591,563,572,574,569,569,561,564,571,576,573,559,563,586,545,587,567,575,568,583,568,569,562,560,564,577,558,557,581,576,566,575,582,559,563,573,572,575,584,577,566,566,592,558,574,573,534,552,535,541,527,552,558,543,549,544,544,543,545,536,535,555,554,560,542,526,539,543,553,525,559,536,543,542,536,525,542,546,547,540,532,525,543,541,553,548,557,513,514,518,520,525,516,528,527,528,518,517,499,522,518,525,527,519,516,516,505,498,521,533,538,520,530,522,516,518,522,530,522,517,523,509,535,515,508,517,523,521,523,506,508,507,507,514,504,512,499,502,499,510,502,495,516,504,505,504,500,500,499,506,497,510,484,493,507,505,503,500,498,500,490,502,501,509,510,499,515,499,495,502,492,498,509,508,495,488,504,499,496,502,497,493,501,490,488,505,497,502,482,497,495,491,505,501,502,504,486,495,480,504,514,497,500,508,488,500,491,496,504,487,502,500,506,500,517,506,500,504,495,504,509,507,485,499,503,497,506,509,502,514,516,501,488,505,508,516,507,498,501,493,512,506,507,502,510,490,507,513,508,509,501,509,492,502,525,496,640,638,643,638,650,656,638,659,652,634,637,635,651,643,633,656,641,641,643,643,644,645,643,646,654,628,646,671,645,647,661,659,655,675,659,648,614,591,615,608,595,605,594,618,592,593,600,611,597,609,617,615,607,606,597,602,613,593,608,613,605,598,617,575,592,592,594,614,589,606,606,619,610,603,586,601,601,605,588,601,608,599,619,638,586,587,575,571,597,581,575,579,577,583,578,569,566,574,590,571,569,576,568,576,575,575,597,565,557,577,593,570,558,577,574,558,574,584,597,582,568,582,563,545,543,558,551,553,537,552,547,540,552,563,561,545,545,555,562,544,548,549,550,554,566,564,523,544,556,543,578,547,555,544,540,561,559,550,553,548,555,542,544,553,549,537,584,595,619,586,578,621,614,615,611,573,602,547,563,608,606,637,598,632,618,641,578,618,548,631,622,577,597,613,595,611,535,588,588,606,569,591,601,611,588,599,578,606,664,556,548,562,553,559,567,566,559,556,576,557,562,555,567,552,557,560,579,549,557,570,570,555,558,549,545,569,549,554,532,554,572,581,555,549,558,548,551,555,554,558,564,565,558,555,567,578,557,593,560,578,597,560,589,588,570,579,564,573,568,568,571,564,580,562,573,578,579,571,564,574,577,586,555,567,560,566,570,575,584,575,562,579,554,574,567,555,599,566,560,552,556,548,544,558,550,551,533,546,556,530,548,545,549,555,545,555,546,554,555,546,538,548,545,556,538,555,546,547,538,540,550,538,546,545,549,545,544,545,533,548,546,544,548,551,546,768,767,729,713,780,728,732,741,694,740,698,707,790,745,685,761,727,747,711,717,673,745,723,780,771,728,716,706,762,772,758,710,735,725,757,746,744,741,744,686,783,818,771,698,696,729,695,723,709,683,699,715,709,711,684,684,684,711,705,718,690,710,719,728,719,689,690,731,699,702,698,695,700,706,695,719,704,727,728,736,724,751,616,616,624,612,612,626,646,628,605,629,615,636,629,599,633,626,608,620,650,639,622,638,641,627,602,606,629,609,612,634,601,624,612,629,599,628,625,628,648,574,584,585,571,586,568,561,569,580,577,576,581,575,553,570,587,577,575,573,571,577,582,568,588,568,603,585,579,575,568,576,565,574,595,572,581,574,574,572,573,593,570,578,553,554,559,548,558,558,545,559,550,554,568,565,551,557,556,544,560,559,545,542,561,564,550,554,554,551,552,545,559,557,549,562,548,552,566,561,533,549,548,543,565,567,544,658,682,693,681,693,653,653,725,711,685,655,689,642,714,685,646,671,684,696,695,669,681,691,644,727,666,670,673,669,706,709,671,693,654,705,683,681,731,734,722,690,611,703,681,698,699,699,694,700,715,706,716,691,717,691,720,723,717,682,718,685,717,728,711,710,688,716,704,699,706,696,710,705,722,696,690,694,716,705,726,725,621,627,630,609,626,630,606,611,621,601,630,630,619,615,588,647,599,608,625,587,628,640,635,607,601,625,629,625,626,619,624,608,604,629,643,632,614,639,602,613,629,613,621,626,581,603,601,591,600,587,628,596,590,607,592,604,599,575,595,609,607,571,603,587,579,593,585,609,583,617,592,592,587,590,583,603,594,606,593,602,612,593,668,650,645,677,674,663,653,665,663,671,653,663,658,666,664,653,668,679,665,660,655,667,689,656,657,668,669,666,662,672,690,651,673,664,668,652,656,657,669,671,747,681,698,773,748,732,679,731,695,725,758,704,734,715,724,743,753,742,719,743,734,752,696,710,712,709,714,727,730,706,718,705,737,688,713,710,730,715,730,729,721,696,709,726,706,709,737,733,737,703,691,682,707,687,725,698,718,711,699,691,719,693,691,689,708,703,699,678,732,713,691,699,710,696,691,710,706,729,708,694,678,688,693,704,720,700,710,671,710,700,697,647,615,701,725,716,659,655,706,654,704,713,660,665,648,648,696,655,622,671,668,705,709,719,659,664,661,699,666,680,749,670,687,681,675,690,717,673,660,703,684,709,699,698,674,681,683,679,636,690,655,699,717,650,659,643,685,673,694,698,650,654,680,662,654,670,645,721,667,705,651,714,684,683,653,694,703,665,691,677,722,561,579,596,589,580,601,572,581,580,593,552,597,606,577,571,602,577,590,586,561,562,573,581,581,575,611,557,560,561,571,564,558,571,569,572,578,576,601,596,587,587,573,581,591,574,575,556,567,566,554,560,573,548,576,560,558,555,552,559,577,559,581,589,559,568,595,554,562,555,566,591,565,571,559,549,561,563,571,562,553,577,548,544,568,563,575,554,571,563,568,542,560,565,556,528,556,542,618,604,593,589,613,610,592,631,588,586,598,602,619,620,600,607,594,614,599,597,629,612,603,582,633,637,616,604,601,599,576,605,586,593,644,613,617,596,611,611,605,617,573,553,561,542,547,571,569,570,565,570,559,559,570,563,565,567,556,573,564,561,576,561,585,557,561,559,584,573,565,561,564,565,566,559,557,585,551,550,563,569,590,542,594,592,561,574,564,583,571,563,558,557,558,554,566,582,573,563,568,575,568,576,590,558,562,577,589,555,546,566,563,572,554,570,569,590,575,565,569,563,560,592,569,562,566,548,569,568,558,531,717,713,752,734,709,712,703,691,693,706,680,689,687,714,687,726,717,694,695,721,697,689,728,737,704,686,738,702,684,680,702,710,714,711,733,726,713,693,704,730,730,723,707,717,737,724,712,710,716,705,694,719,693,702,701,721,727,704,720,720,702,706,704,704,696,709,713,712,698,691,707,697,709,697,683,708,721,713,697,682,700,702,725,703,701,709,688,718,709,710,716,683,714,706,672,682,688,698,679,690,681,685,683,681,670,686,675,690,675,705,682,669,648,691,692,697,703,693,679,700,678,671,723,706,689,705,702,710,690,704,716,700,671,698,695,695,673,675,686,695,694,705,672,680,682,690,670,679,688,687,667,695,670,688,678,679,667,677,694,675,686,662,677,667,701,683,664,710,683,683,659,656,676,676,653,660,671,632,625,646,608,673,628,636,648,630,624,632,638,641,643,643,654,623,641,619,640,650,621,631,631,653,640,643,637,668,639,658,643,653,646,664,691,665,658,628,627,660,600,596,603,608,577,575,599,594,578,591,597,574,577,594,615,575,588,591,577,607,596,583,593,595,605,573,583,603,591,593,593,583,571,600,585,597,587,603,566,606,579,597,616,623,612,602,616,587,608,596,615,603,611,623,612,605,612,614,614,596,604,596,598,614,599,613,617,613,616,589,616,622,604,629,608,622,596,614,600,615,609,606,601,621,616,613,613,630,627,611,609,637,617,625,649,637,636,620,620,635,633,633,628,623,626,626,617,630,637,627,615,600,616,586,612,634,621,632,600,599,621,633,629,615,608,627,605,610,631,555,571,574,570,572,578,558,575,581,556,559,578,572,559,568,550,580,566,562,576,562,568,565,576,564,585,569,570,574,542,557,561,566,562,559,543,736,691,700,698,691,691,672,665,715,680,692,691,703,694,686,682,672,696,708,698,701,708,668,706,695,664,697,697,704,694,688,711,671,696,683,693,708,660,679,704,697,697,712,682,709,683,646,649,649,654,672,662,656,644,679,679,675,652,660,662,651,654,667,669,664,671,664,653,672,670,667,677,676,657,656,665,669,655,662,662,676,662,666,658,634,646,636,621,608,661,624,632,627,607,615,638,652,632,616,635,645,625,671,609,632,646,606,635,636,610,655,641,646,655,666,639,628,650,604,639,622,659,645,625,616,634,634,640,662,685,688,700,684,686,701,716,657,674,678,721,687,714,656,651,696,682,698,674,665,645,705,697,723,708,717,715,705,684,682,672,716,693,681,726,704,691,637,609,613,595,607,633,613,635,638,615,588,594,631,611,604,598,610,605,601,603,624,625,628,633,593,625,604,610,621,601,576,608,627,604,625,588,649,612,595,597,627,629,627,584,551,563,587,532,543,564,540,554,555,558,547,565,554,558,566,566,532,579,575,535,555,571,539,537,556,535,566,564,563,546,560,558,547,553,532,541,540,597,553,717,728,683,734,710,711,730,727,735,705,716,690,720,710,709,731,726,698,737,711,702,693,718,713,708,739,724,748,723,762,738,723,747,728,741,729,723,733,733,619,676,635,585,607,610,621,614,639,620,617,616,636,613,635,638,630,637,630,624,625,613,614,605,625,646,614,618,628,606,649,646,620,623,623,607,617,620,623,632,637,672,550,617,585,582,590,595,604,581,561,571,624,579,582,606,590,577,596,601,579,585,555,589,576,575,565,562,604,618,604,563,561,586,603,585,578,605,583,594,576,597,582,564,547,649,659,649,635,641,659,663,637,630,634,662,638,633,659,649,652,651,660,662,658,641,642,677,668,635,646,638,641,637,653,633,648,653,661,656,643,651,645,656,645,666,668,649,635,632,630,574,599,591,581,588,583,606,601,565,575,574,600,596,597,574,579,591,594,590,587,587,581,583,585,578,577,574,578,609,587,593,565,575,577,603,617,582,582,576,579,583,715,673,658,673,686,692,675,698,666,675,694,716,679,701,706,691,680,678,671,679,694,696,680,717,693,699,710,704,705,709,705,704,677,690,699,711,702,697,669,677,651,669,653,667,646,672,666,671,673,663,672,646,674,661,655,660,671,655,653,640,661,670,686,655,678,676,660,669,682,658,665,668,683,669,665,660,666,665,671,669,727,713,689,701,639,706,686,705,751,723,711,715,694,718,720,714,701,719,729,715,666,670,724,687,708,714,689,696,718,688,701,673,687,724,711,675,753,726,698,681,716,723,690,681,734,628,610,630,649,655,621,613,641,636,633,618,656,620,644,646,660,643,649,627,640,655,650,646,626,663,619,601,619,640,656,638,624,650,623,634,621,663,653,657,628,639,664,632,638,662,640,587,645,626,640,657,639,687,706,605,694,649,650,689,643,644,607,622,662,639,643,696,617,659,583,666,664,641,624,629,655,688,617,655,693,646,658,714,720,732,701,704,706,698,719,708,731,727,714,726,718,727,723,715,701,695,712,730,711,738,709,734,698,717,701,735,736,709,719,721,716,732,717,692,717,697,705,710,725,715,709,704,701,742,718,736,691,749,757,761,736,716,752,745,741,743,714,739,730,702,732,711,714,731,770,726,739,748,761,736,743,745,720,766,778,705,752,749,727,768,757,735,696,718,722,752,699,750,751,697,659,717,746,717,736,747,746,756,753,715,706,725,718,701,708,769,757,709,702,730,692,722,681,700,692,703,739,723,723,733,700,732,723,681,742,716,739,733,710,657,642,641,662,634,670,673,664,655,677,668,639,642,636,647,653,652,656,677,642,675,679,661,664,650,655,657,655,656,659,653,649,661,666,643,633,623,667,641,637,665,650,634,726,714,746,717,731,757,747,733,711,726,706,742,700,754,734,716,715,712,732,731,721,739,697,754,719,729,720,736,743,784,679,717,715,716,741,722,719,760,724,725,691,736,745,721,723,711,735,687,689,721,718,719,705,712,728,756,745,727,711,730,699,732,746,736,732,693,703,718,729,745,734,704,730,688,719,693,742,755,742,726,758,726,615,637,658,683,658,664,662,650,642,670,669,655,635,654,679,661,659,651,671,703,679,651,633,671,678,666,675,677,671,652,661,664,651,663,673,668,658,636,645,657,650,641,723,713,702,684,716,697,702,723,710,705,682,686,707,681,733,710,718,710,664,673,714,699,697,675,712,716,692,651,718,718,685,686,708,669,707,703,701,696,679,660,665,670,668,627,612,606,589,586,639,629,604,597,607,616,617,588,635,602,633,614,648,633,634,618,631,616,632,615,663,607,589,655,651,640,607,609,601,582,618,588,611,617,603,614,603,563,566,561,547,561,550,540,568,561,554,582,538,556,546,553,599,564,567,563,582,565,549,545,565,561,571,554,584,574,564,563,562,553,557,545,571,524,560,581,592,565,581,570,565,700,714,760,744,755,737,748,769,721,732,732,727,752,722,738,733,766,742,739,787,714,746,762,740,698,739,702,720,741,712,745,734,733,734,719,727,735,739,734,761,717,783,759,769,732,738,741,726,720,747,723,727,730,722,728,729,723,725,732,716,729,716,740,738,755,716,737,743,729,730,730,744,717,721,704,718,736,734,735,745,736,721,719,722,719,726,722,712,707,688,692,648,685,693,687,693,672,687,694,689,665,716,678,678,693,684,696,713,705,688,714,700,708,693,691,687,685,702,701,705,723,708,673,709,690,691,703,684,694,695,693,713,722,736,594,569,587,595,587,545,617,584,554,614,563,564,577,553,591,614,589,584,611,551,596,585,559,526,558,603,580,568,572,532,591,543,521,584,637,571,577,566,564,561,573,574,577,585,569,586,577,574,587,574,572,579,579,571,581,578,579,578,557,583,597,572,568,579,575,585,575,579,575,584,554,569,564,577,570,574,567,554,576,587,606,605,641,622,627,617,627,630,617,614,625,640,623,639,626,632,617,628,619,602,623,642,632,629,629,614,612,662,617,641,619,613,626,623,619,617,624,619,638,619,742,724,718,727,710,692,688,757,710,721,715,734,697,699,745,760,708,726,712,717,699,684,750,693,761,726,736,690,713,714,718,736,688,709,699,714,684,678,690,677,713,681,686,696,701,713,718,703,701,709,715,703,706,705,698,691,697,680,707,700,689,691,716,702,702,695,706,696,708,677,699,706,703,717,693,694,696,686,700,693,695,644,718,712,648,689,705,686,688,737,663,642,692,699,686,656,731,687,713,710,676,716,699,636,709,689,688,697,669,723,722,687,675,678,630,682,681,694,706,691,597,653,654,656,647,635,661,650,641,634,649,647,654,669,696,671,654,640,662,648,639,650,650,675,637,662,645,653,640,642,624,689,646,669,655,652,670,657,614,642,657,643,647,653,646,667,644,732,722,708,705,699,693,723,728,702,761,710,749,708,732,685,716,725,709,736,726,703,744,756,759,747,740,668,740,722,727,775,734,729,725,712,712,745,725,762,725,716,737,664,703,722,716,683,756,741,750,742,718,730,719,708,740,702,760,749,729,728,714,726,729,734,725,705,747,740,698,732,749,713,717,733,706,741,726,746,703,721,710,710,709,738,721,732,718,707,688,694,712,704,734,706,712,731,670,703,668,734,665,715,690,713,678,718,671,716,681,727,710,708,716,736,677,696,668,718,695,698,683,712,716,669,701,731,664,741,664,647,681,644,649,670,666,655,652,649,650,667,644,679,657,658,657,642,661,658,662,644,670,688,636,645,649,641,670,668,656,671,645,642,655,652,653,665,651,680,624,669,660,654,604,622,619,617,619,601,601,620,631,614,601,624,597,608,620,611,615,612,625,614,619,616,613,600,607,611,615,621,627,613,597,622,624,629,623,617,620,628,618,599,598,646,615,593,608,604,606,604,617,617,592,600,605,620,607,617,606,636,594,624,621,621,596,613,598,601,610,602,601,606,601,613,590,598,610,609,601,620,609,615,611,602,617,614,634,622,613,613,647,674,659,689,659,673,667,643,663,660,672,676,630,658,693,637,661,669,656,663,663,685,640,668,646,675,652,648,666,672,656,662,674,674,683,661,642,644,661,651,660,663,669,656,647,651,644,656,654,653,665,665,667,652,660,656,653,664,629,641,664,651,659,660,661,665,662,646,652,651,662,678,671,666,649,671,664,659,652,669,672,669,661,653,665,644,666,669,657,647,653,656,691,739,699,688,699,665,679,696,664,683,675,697,683,707,660,667,694,641,684,707,714,670,716,665,710,630,673,692,671,635,663,642,657,684,686,691,654,701,690,674,622,638,608,616,609,628,626,638,642,633,625,613,638,632,630,611,626,636,641,653,616,640,609,633,631,626,626,637,632,624,618,622,598,622,630,633,617,612,626,630,634,626,635,630,643,621,640,638,581,565,573,585,559,578,590,574,571,575,574,573,562,582,573,575,556,572,576,571,578,574,581,566,575,567,570,586,579,579,566,580,584,574,565,581,576,575,556,568,573,580,580,572,580,585,579,580,582,575,586,578,573,723,707,717,768,717,785,748,777,763,735,735,738,740,738,672,729,686,717,724,734,724,720,750,744,712,706,759,740,729,732,722,732,757,749,749,735,725,735,687,706,699,758,752,739,703,674,717,696,702,718,696,722,684,712,685,694,716,728,709,716,719,695,702,690,705,698,717,699,700,730,690,681,708,736,717,724,685,723,712,721,679,715,689,691,687,711,695,603,629,612,569,587,608,636,587,619,613,635,630,617,619,603,597,604,606,577,610,581,615,608,650,573,611,630,623,628,593,618,619,602,589,594,595,584,633,603,622,602,600,609,607,590,600,602,579,576,592,599,574,582,556,582,579,593,568,597,605,590,588,597,580,602,574,582,581,593,563,586,588,568,584,578,613,577,590,584,592,618,582,599,586,591,599,582,536,633,626,645,607,616,639,634,629,618,647,627,616,629,623,620,629,617,638,618,628,642,612,620,635,653,636,639,627,636,639,605,632,619,632,608,631,652,622,646,630,626,617,644,632,602,680,643,658,647,649,636,665,642,655,639,666,665,664,662,674,646,666,644,656,646,677,664,663,649,660,674,648,665,656,663,649,669,637,661,649,661,684,677,688,682,731,698,709,694,719,707,698,683,717,726,707,719,689,698,693,659,683,724,747,705,678,702,690,713,715,697,725,699,699,683,705,700,686,688,713,687,645,626,630,646,627,624,623,661,619,649,624,623,632,613,625,641,636,640,621,630,635,644,652,664,665,646,644,641,652,633,641,645,647,647,639,643,649,629,667,653,649,627,615,651,646,625,629,682,685,604,636,622,619,631,650,655,608,682,652,675,642,644,596,630,639,614,644,630,663,604,657,613,662,625,603,595,671,651,658,666,552,661,616,639,598,584,668,610,636,685,620,703,745,711,715,704,699,695,694,692,696,726,717,733,718,708,706,725,727,675,701,712,710,713,691,708,729,720,717,735,706,696,713,705,685,730,712,701,729,724,716,721,704,724,693,690,715,692,690,721,684,686,711,703,688,684,647,708,679,714,705,700,695,673,680,701,685,691,674,689,674,682,680,721,686,658,691,694,694,719,668,731,694,673,654,707,670,639,662,650,664,665,685,659,649,644,656,679,644,627,626,632,656,649,664,653,650,640,646,648,652,653,646,654,645,631,659,665,649,637,633,646,632,648,640,659,662,598,597,612,609,604,599,601,599,609,589,606,609,589,594,593,601,608,600,602,599,601,613,605,598,600,607,606,603,597,607,593,596,615,590,615,591,593,587,613,582,578,582,609,598,592,602,589,607,643,613,633,606,641,633,639,613,653,639,632,611,662,648,667,674,636,670,634,651,600,667,645,663,624,659,657,644,628,642,645,629,617,634,645,631,630,639,691,669,675,683,664,689,696,693,683,670,673,709,687,690,689,682,680,691,652,683,685,697,659,678,693,672,683,680,683,681,670,678,697,673,681,681,671,675,668,683,645,763,752,728,764,754,765,736,735,737,769,762,792,746,748,721,753,713,759,720,750,722,728,738,753,749,730,733,758,759,730,784,773,774,773,772,728,769,797,738,752,759,725,702,691,686,725,719,724,728,689,694,692,710,671,710,723,690,692,753,693,718,758,722,720,754,708,697,728,726,736,769,688,698,716,733,710,728,716,729,769,725,704,702,706,695,724,744,668,671,678,647,647,654,677,657,674,662,647,655,632,657,671,644,648,656,658,674,633,687,670,639,667,644,669,674,655,676,651,654,648,657,663,661,670,665,662,649,663,650,671,669,607,682,696,694,701,679,672,691,686,703,683,676,663,730,700,705,689,693,712,696,669,680,652,700,672,675,719,675,700,691,690,708,695,689,708,685,724,676,662,651,666,665,671,677,703,621,633,614,620,613,597,607,639,617,628,622,644,599,628,615,623,617,613,612,603,661,606,619,620,610,620,600,606,613,631,599,604,628,615,600,609,579,613,600,570,559,598,584,599,599,561,585,593,591,570,570,568,587,567,583,589,589,599,573,566,561,566,571,603,596,583,571,566,590,572,592,575,572,598,584,580,559,579,579,594,582,642,667,665,659,641,676,693,672,648,650,653,660,668,655,668,664,670,676,664,667,666,669,653,642,654,674,666,667,676,677,684,661,677,661,675,659,672,655,667,671,707,724,700,736,701,733,725,691,713,686,737,715,727,756,700,658,747,727,735,758,734,720,697,752,762,721,725,727,694,698,750,731,676,719,725,745,688,700,720,716,719,704,683,698,691,689,727,728,698,707,723,704,708,712,715,709,708,723,697,719,693,724,716,704,710,719,719,721,700,697,687,696,719,730,721,721,715,694,699,707,709,716,724,630,629,641,621,627,643,653,626,643,667,645,627,629,646,651,643,658,634,633,658,648,619,654,644,640,622,666,613,635,627,644,646,663,620,645,623,653,660,644,641,669,663,608,563,582,595,592,561,568,579,596,562,611,581,573,595,616,581,587,587,591,572,576,578,591,599,574,593,599,565,595,561,575,585,581,614,594,587,554,608,580,561,609,564,559,596,580,598,583,595,592,603,616,613,604,604,617,599,594,596,603,588,612,596,602,615,591,595,603,612,603,601,606,611,610,594,601,607,602,615,611,593,600,608,590,601,597,594,597,627,579,573,576,576,602,580,573,599,582,570,591,582,578,571,570,594,594,573,568,584,599,567,595,591,582,575,570,576,591,578,575,587,586,574,578,582,590,575,570,591,555,685,713,692,699,685,723,702,712,701,708,695,706,696,692,709,699,713,701,709,710,714,685,711,689,679,716,717,677,676,709,718,699,700,702,700,729,682,705,709,704,676,711,695,711,668,661,673,666,698,686,682,682,702,681,706,666,653,669,667,694,680,683,679,663,677,689,672,667,657,657,688,680,662,677,663,695,692,667,692,686,675,671,670,683,649,665,661,687,665,661,645,651,672,691,664,677,673,676,701,639,673,657,665,667,657,678,663,640,674,661,644,661,651,642,694,659,663,663,684,661,676,660,652,668,659,670,674,651,639,637,642,637,644,649,633,643,647,655,655,657,669,650,634,651,659,658,651,649,653,658,657,646,648,637,638,645,662,643,651,670,627,653,638,658,657,633,652,650,652,773,713,766,775,755,683,751,760,750,761,755,713,689,739,697,742,741,782,727,747,758,748,750,759,720,769,746,732,726,714,750,735,721,736,744,774,743,742,787,769,704,726,780,735,745,736,734,756,734,730,726,766,707,719,728,712,754,733,745,738,719,754,780,753,698,741,716,766,718,742,746,721,716,772,729,778,730,711,764,742,697,703,742,742,736,774,712,750,796,688,741,705,759,722,762,759,712,716,756,763,766,724,745,785,773,794,733,720,726,741,748,778,727,729,775,731,772,695,706,731,750,716,721,756,744,737,743,677,723,707,690,720,744,723,666,725,727,697,725,734,683,723,708,715,696,712,681,688,747,746,706,661,670,728,719,766,726,734,720,679,710,719,710,718,721,690,726,722,711,666,632,655,631,638,671,633,640,652,665,652,647,665,625,663,661,655,635,658,653,665,688,641,665,674,672,660,654,642,649,659,654,653,651,668,619,657,637,656,657,652,623,656,660,639,641,644,629,636,635,630,650,601,635,648,665,625,642,650,649,601,642,627,664,638,636,620,653,665,632,612,628,656,650,622,675,597,649,637,643,620,633,645,667,636,665,696,689,692,699,693,688,696,675,694,695,664,691,709,698,695,688,698,683,688,703,708,692,694,691,680,698,686,718,709,678,712,681,692,697,680,696,703,681,710,689,686,679,691,662,650,654,655,676,652,653,652,671,661,661,677,681,660,657,681,671,666,673,680,679,672,676,674,665,677,672,660,682,673,673,667,654,682,654,660,670,666,658,674,689,668,677,604,606,577,598,574,587,595,603,571,566,597,612,594,593,589,603,607,591,615,575,600,605,586,597,582,587,591,610,592,600,598,593,587,603,609,584,570,606,581,586,601,589,721,684,698,736,737,713,746,730,721,754,746,786,696,680,703,721,773,691,685,697,725,706,755,716,745,702,729,765,691,778,747,721,721,703,709,732,709,725,776,738,673,749,725,734,700,700,713,695,687,687,719,681,711,704,700,722,709,730,690,689,688,725,727,697,688,703,705,701,716,733,690,688,728,684,733,712,708,675,677,707,714,735,698,720,722,717,712,712,690,692,721,693,689,662,661,639,682,680,661,671,664,665,681,665,682,658,652,675,675,637,690,648,658,671,676,673,688,671,672,676,684,643,650,649,671,655,667,654,642,699,686,687,683,678,666,717,646,628,633,637,657,627,635,644,629,637,628,636,638,656,645,632,653,636,638,643,634,648,636,632,653,655,652,653,642,658,644,650,628,635,638,639,643,633,654,640,638,635,643,626,636,619,650,643,664,671,667,674,675,658,666,646,665,664,645,663,645,663,664,635,640,645,662,669,661,652,656,664,653,663,655,658,642,667,653,650,662,673,640,666,631,653,649,659,647,662,675,654,658,649,664,652,637,665,650,712,689,684,691,713,676,725,732,717,696,675,713,735,687,686,716,710,720,721,714,693,691,697,749,721,695,730,705,722,695,706,723,703,687,714,724,695,709,727,694,700,606,636,627,632,629,643,654,647,627,639,643,654,630,650,631,614,624,659,636,613,677,630,664,672,656,649,618,626,639,620,648,640,661,613,645,667,641,615,659,664,642,645,653,633,638,650,641,635,625,620,648,653,635,631,650,692,558,676,670,618,663,642,589,648,618,690,637,599,623,654,630,664,647,575,618,618,685,652,577,659,593,604,674,584,752,615,637,583,633,653,653,615,622,638,660,576,724,725,704,696,716,706,734,705,699,722,704,707,730,723,716,705,714,719,719,701,717,722,703,693,713,741,705,684,733,724,703,706,729,735,707,754,704,708,698,709,708,695,719,700,712,687,713,708,675,707,714,731,722,713,687,696,668,705,685,687,707,690,716,666,713,712,709,742,724,717,697,684,662,707,698,723,693,687,672,692,687,703,720,706,724,735,717,707,740,717,719,717,718,716,716,751,714,713,729,711,720,725,730,720,705,705,745,713,724,725,725,704,725,734,706,719,744,729,713,712,747,716,719,736,723,711,715,716,741,645,620,625,651,645,629,631,654,636,633,663,678,686,630,631,640,646,676,627,626,609,632,666,664,660,639,622,635,643,629,654,632,694,619,667,630,673,561,563,577,576,570,560,562,574,571,569,583,562,563,558,566,570,566,554,568,553,557,577,580,565,575,562,581,560,579,578,558,570,579,562,557,578,571,565,580,550,531,557,549,564,533,540,532,561,568,554,553,557,567,545,545,545,546,550,540,555,553,551,547,561,555,564,547,552,548,562,556,550,548,556,558,551,552,543,550,554,557,563,672,713,688,624,728,692,707,703,640,697,668,679,679,654,660,749,732,621,660,651,713,616,636,663,667,710,632,622,637,697,671,615,681,643,681,714,667,626,720,642,654,634,676,661,760,634,638,640,630,649,656,643,635,653,660,659,637,633,652,644,637,653,625,648,637,659,640,633,670,663,628,654,639,621,641,656,649,645,643,622,628,659,659,630,625,619,656,643,653,644,637,601,592,598,576,604,568,582,611,612,583,588,606,597,567,599,592,591,583,585,583,583,604,578,592,582,606,593,583,595,585,568,581,577,592,601,579,571,567,583,589,589,595,597,589,577,602,579,540,526,521,523,519,531,532,516,530,525,529,537,529,548,542,516,522,540,525,527,524,528,532,536,520,526,534,533,519,532,546,534,522,536,543,527,535,535,524,534,537,512,527,539,543,533,542,541,522,539,513,535,537,522,531,530,538,530,546,547,545,523,537,531,514,529,524,527,526,530,546,536,528,537,548,537,543,534,519,526,535,527,527,513,539,529,527,540,527,535,564,550,554,543,549,554,540,538,550,539,536,540,546,526,545,547,535,539,552,552,548,554,542,545,560,533,544,541,548,547,545,541,537,542,550,539,548,543,549,541,537,554,559,572,536,558,547,554,558,553,555,568,547,554,567,554,556,555,561,563,560,556,562,551,552,561,555,561,546,555,566,546,560,554,555,562,569,562,549,552,638,624,596,636,659,609,595,638,667,601,639,610,596,663,620,630,647,650,620,619,683,653,646,654,646,633,623,656,636,634,662,649,641,651,581,684,622,570,665,683,669,670,664,690,661,655,660,658,663,667,665,684,689,668,692,684,688,669,687,676,677,680,688,646,679,670,673,679,676,669,652,686,695,679,681,684,662,672,673,656,677,619,580,615,603,604,610,591,589,601,603,577,610,611,612,587,605,584,583,591,597,591,584,582,597,588,592,585,585,612,596,587,591,615,584,603,598,604,604,615,610,616,605,677,600,609,661,637,636,641,657,623,668,624,630,610,630,636,601,654,614,626,633,612,598,575,613,624,599,618,588,600,652,622,657,600,630,620,650,656,621,575,641,687,700,710,698,695,682,671,695,698,690,696,694,701,676,692,664,691,691,690,696,675,689,676,685,697,687,693,677,692,697,682,698,689,662,682,715,690,691,707,692,696,693,685,699,685,690,667,673,681,683,689,684,693,686,692,692,691,669,677,702,691,685,687,682,678,700,682,689,648,679,690,682,689,693,655,669,676,673,680,676,668,688,685,667,678,691,674,653,673,658,659,676,682,653,652,668,676,679,675,677,659,661,667,662,670,663,640,666,675,674,675,678,670,658,676,652,676,659,656,677,675,655,664,652,639,649,664,660,638,645,651,643,661,650,633,652,655,659,640,662,637,647,669,649,644,647,649,676,649,651,673,648,632,647,671,654,659,656,649,670,649,672,642,628,649,656,671,647,646,672,590,572,589,593,576,581,578,573,598,596,582,593,579,602,584,596,591,588,590,597,582,580,573,570,578,578,592,589,594,589,584,596,590,584,590,595,588,588,584,597,567,578,595,624,596,554,574,571,617,639,588,661,611,619,633,621,612,620,612,597,642,642,566,619,574,615,602,607,595,648,616,580,592,601,621,636,604,593,609,635,633,602,608,566,589,614,600,607,583,584,578,584,599,592,606,592,594,590,566,588,579,587,565,584,584,605,593,575,595,584,586,581,571,580,582,591,589,591,582,604,596,575,570,587,588,589,586,588,598,584,603,586,647,614,600,655,597,635,635,649,629,614,680,593,610,631,630,625,659,631,662,620,673,602,616,660,590,630,642,666,639,627,651,647,629,633,632,629,571,635,651,619,676,635,626,629,669,662,725,710,691,689,663,686,680,691,693,699,672,699,696,678,707,695,689,695,683,680,678,677,688,691,683,691,687,692,696,684,668,696,692,693,699,698,708,690,685,687,675,668,688,687,714,683,682,670,690,673,684,674,683,676,683,691,695,668,696,679,690,676,668,690,704,696,682,680,698,672,678,673,697,685,683,687,670,668,666,659,674,671,673,659,683,661,673,683,668,665,665,674,679,677,667,662,655,677,678,670,686,669,670,666,685,670,666,657,664,679,665,682,679,646,676,656,678,659,672,662,702,659,666,662,645,668,656,668,652,668,666,652,650,649,662,646,658,670,648,652,652,646,664,650,646,662,660,659,667,647,668,642,663,670,663,666,647,660,636,657,670,670,597,575,588,599,582,583,584,567,589,600,591,598,602,599,585,590,582,591,577,583,576,579,582,584,585,612,615,595,592,601,599,584,585,617,592,601,579,572,589,593,581,601,581,589,586,589,599,543,548,541,513,543,540,532,545,543,558,548,540,544,533,525,534,536,537,540,550,540,535,548,541,535,542,553,536,537,540,537,537,541,543,542,534,554,525,531,536,548,535,517,535,518,511,513,521,522,522,525,523,523,515,517,507,517,527,532,525,521,519,523,522,512,509,522,505,520,495,524,512,511,526,509,516,520,527,525,515,527,537,522,525,735,718,743,765,743,719,755,678,683,725,755,740,736,725,769,753,740,735,694,763,717,733,721,735,710,755,727,721,730,737,735,724,788,735,695,739,678,731,754,721,731,729,733,711,682,711,714,702,708,680,715,708,692,722,680,700,691,709,713,691,719,709,698,688,704,705,704,717,703,708,704,704,695,710,720,670,717,691,712,677,710,708,697,710,695,729,757,714,732,752,758,782,755,750,733,732,766,725,729,709,721,729,708,766,774,759,759,703,721,752,760,791,732,735,760,731,745,740,758,730,747,756,759,738,770,763,729,745,674,703,707,730,682,754,701,736,709,693,735,740,733,713,723,689,670,779,673,715,706,722,709,772,700,708,758,739,722,740,723,711,672,716,711,746,690,702,697,733,729,699,678,739,740,731,671,712,668,662,683,648,665,673,655,671,675,684,635,682,677,694,684,672,692,659,662,671,626,649,671,648,678,666,685,682,670,666,679,651,668,680,683,680,669,574,589,589,573,557,578,594,586,573,591,587,558,570,570,604,583,564,594,578,590,580,608,578,565,606,603,595,588,581,580,584,598,578,572,589,608,586,578,600,587,600,578,666,675,678,673,695,664,692,662,738,680,659,658,698,655,679,693,669,720,616,696,713,624,704,673,638,634,689,695,696,641,695,690,724,675,713,691,705,688,679,654,673,639,689,722,707,699,693,716,694,695,705,696,705,716,716,719,697,699,692,694,690,725,701,716,724,715,696,713,706,724,711,697,704,712,704,709,707,711,729,716,713,701,718,712,617,611,605,624,637,591,612,607,612,615,615,621,639,619,628,620,645,623,644,632,629,627,640,624,600,611,624,629,595,617,615,622,638,626,631,637,640,608,603,630,617,624,674,590,591,612,577,615,588,593,589,612,604,599,584,608,608,604,606,596,604,592,584,611,580,582,584,602,608,586,580,601,605,583,610,582,596,634,588,616,606,613,610,600,659,661,654,668,660,668,665,671,656,650,650,660,653,669,657,660,670,649,656,641,654,674,651,652,674,659,646,656,652,671,661,656,663,689,643,632,654,643,667,654,664,648,658,647,633,662,691,638,613,637,642,613,616,642,624,629,629,622,624,623,623,637,623,634,632,613,632,627,627,618,614,610,652,613,631,606,616,628,608,605,616,627,596,635,631,619,587,600,589,592,610,579,581,586,578,576,586,592,601,604,591,585,591,592,596,584,600,589,593,591,586,575,602,581,590,590,597,578,594,572,573,591,602,591,582,582,583,586,593,611,561,585,586,585,579,609,591,591,605,589,586,592,574,583,595,581,606,585,587,601,597,573,581,581,589,593,575,596,590,587,603,593,604,591,603,580,574,582,584,552,560,550,548,551,554,566,555,555,561,548,548,562,547,551,554,551,559,559,557,569,551,562,560,549,540,561,563,541,558,559,554,559,540,554,550,551,550,549,556,550,569,550,538,550,540,530,527,531,546,546,536,532,544,533,531,541,541,547,533,544,538,543,552,529,537,523,552,548,532,543,538,545,533,526,555,545,533,544,551,541,528,529,528,538,552,563,557,538,562,548,553,540,552,579,573,567,542,539,557,548,567,574,571,559,557,548,553,570,551,558,561,550,563,550,554,542,567,559,568,556,551,557,580,546,549,548,579,538,556,551,549,766,737,735,749,711,732,726,733,740,720,712,734,744,772,726,733,746,721,725,703,741,745,708,741,719,708,739,715,725,737,714,717,749,732,711,734,712,740,761,738,739,708,715,720,703,722,756,723,750,726,735,705,687,726,725,722,729,723,737,715,718,706,740,691,742,688,679,709,710,714,681,682,695,702,739,717,688,679,744,711,714,733,663,655,659,651,666,659,628,672,649,653,644,673,618,654,653,655,652,647,639,646,630,664,644,659,640,646,658,638,658,656,667,652,649,660,650,634,652,648,653,672,658,661,661,626,634,647,673,636,562,570,567,572,586,560,579,588,567,580,586,575,579,585,583,585,598,577,577,581,561,565,591,576,583,585,574,569,572,590,563,588,573,591,591,577,574,581,574,570,566,554,572,556,550,563,548,556,563,562,565,560,577,567,563,556,567,555,564,569,581,566,564,570,564,562,561,555,552,574,566,550,558,550,560,557,547,553,583,554,561,563,573,567,579,562,553,573,567,567,562,576,563,563,570,551,566,557,556,563,543,576,583,565,573,571,551,558,566,533,560,561,565,566,563,568,579,572,571,560,569,571,566,573,560,568,557,567,556,564,571,558,574,554,545,565,551,548,565,561,562,546,554,554,566,561,559,550,565,556,560,564,568,570,567,544,558,553,569,562,551,563,557,554,567,567,575,551,549,557,545,555,558,566,562,565,565,557,564,552,565,567,557,554,579,551,553,576,553,541,557,567,565,561,560,546,556,560,566,577,570,545,567,556,570,560,533,549,565,562,557,567,567,552,553,561,563,557,561,564,561,561,556,557,551,563,530,564,552,558,561,565,543,554,554,552,546,550,560,563,560,551,555,558,550,557,533,546,557,547,558,555,548,548,552,555,544,568,687,669,708,661,681,636,687,652,683,627,675,670,701,669,633,728,712,621,654,700,695,629,682,634,676,673,710,665,715,643,642,636,662,648,652,677,680,628,640,640,646,644,646,632,650,643,653,636,639,616,635,627,641,662,596,653,627,647,636,646,619,622,617,623,625,614,669,643,633,636,642,656,672,635,648,643,585,577,580,573,585,566,592,580,587,576,596,572,564,582,579,583,592,580,566,589,598,573,593,568,588,571,578,600,593,579,585,585,568,597,586,599,569,578,588,563,586,588,569,602,624,629,636,641,593,629,617,647,652,612,653,628,631,621,637,616,634,612,627,632,672,633,636,619,620,620,637,632,644,641,661,598,614,608,632,610,602,593,647,618,577,780,736,751,735,735,710,690,734,759,769,743,706,733,751,744,765,722,751,727,732,709,737,737,748,726,748,737,751,755,750,732,712,721,748,720,735,737,750,728,700,770,729,724,718,691,660,689,705,656,667,670,671,657,687,689,698,682,661,684,670,704,664,653,688,680,698,671,681,678,649,715,728,691,694,689,680,678,675,707,658,686,690,697,707,652,664,690,663,669,594,607,616,587,614,612,613,595,594,590,604,605,615,598,595,609,602,619,609,606,604,603,607,600,606,593,603,611,596,607,607,605,599,624,594,603,611,606,606,609,605,599,606,603,589,553,562,543,545,552,541,559,552,545,545,555,537,563,556,546,557,553,544,541,560,554,552,550,547,551,539,554,560,545,562,550,566,549,551,553,567,555,551,548,555,552,705,672,670,640,652,682,675,701,696,675,690,658,677,676,668,668,642,618,673,687,659,683,693,683,649,690,710,664,686,664,623,657,665,684,691,636,677,679,724,632,690,678,642,659,692,637,624,615,619,630,637,612,623,619,612,629,621,637,641,592,634,640,604,599,598,643,641,636,623,607,620,640,627,622,624,609,631,642,639,624,623,622,630,623,613,616,642,622,600,602,552,595,585,583,587,561,606,588,596,575,602,603,601,584,588,606,577,583,582,583,582,589,581,595,577,586,587,598,591,591,590,585,578,603,594,590,603,569,591,597,590,588,593,601,576,562,565,574,562,580,557,566,581,554,563,544,560,557,552,559,559,570,556,547,555,563,546,552,559,557,568,565,564,558,548,564,553,564,543,561,578,558,566,570,565,588,673,688,697,682,671,710,672,691,678,667,693,684,688,680,667,680,673,697,685,688,663,707,696,672,687,714,651,657,670,701,687,673,711,708,688,695,705,654,685,677,660,689,689,692,673,698,706,674,714,691,672,686,713,727,700,712,719,718,740,715,711,707,684,718,688,733,695,740,723,755,719,715,728,674,710,684,716,708,716,719,710,752,721,717,719,771,576,655,603,581,625,565,632,626,630,611,582,652,567,602,647,666,679,599,628,599,591,629,621,654,633,600,647,584,582,621,597,628,574,600,632,615,655,678,609,653,658,593,539,524,599,616,622,612,606,591,627,571,631,593,584,598,611,584,610,627,610,603,596,616,633,608,634,607,594,605,622,602,619,611,607,594,606,583,600,622,597,612,631,628,612,601,598,630,605,602,591,614,603,561,559,573,575,571,567,565,564,567,590,577,561,576,549,561,573,565,559,559,569,561,567,570,583,582,574,567,561,564,570,563,584,564,576,552,567,569,560,560,567,544,567,658,659,680,666,705,682,710,645,678,655,671,651,672,679,640,649,634,676,660,724,672,666,731,665,664,652,640,628,676,656,680,676,672,677,661,688,683,654,632,694,686,724,746,674,663,687,664,676,698,713,707,701,719,721,705,713,701,693,722,726,726,709,717,709,719,719,734,707,735,713,711,713,703,712,705,725,699,706,733,700,709,744,714,718,713,710,712,730,742,731,696,679,696,713,709,720,692,741,603,612,600,626,634,606,639,646,604,601,594,582,614,589,641,640,599,629,631,595,616,647,612,661,613,654,594,607,612,609,620,629,592,625,607,610,619,630,617,625,630,606,624,620,627,578,558,571,573,563,548,559,581,556,567,567,567,571,570,575,544,560,553,554,567,558,555,561,568,575,569,583,556,573,553,572,544,566,551,561,552,560,561,568,560,561,559,555,569,552,572,608,623,631,573,629,627,620,615,663,643,593,589,549,606,619,633,618,633,615,621,628,624,631,631,594,605,595,624,615,605,641,623,599,614,619,638,599,615,604,594,614,610,622,603,612,549,556,573,573,586,588,552,585,569,575,584,571,562,576,563,578,575,571,582,572,570,560,558,575,568,567,585,576,566,557,577,565,579,574,572,567,563,571,573,572,594,578,565,571,638,575,656,626,648,602,693,652,630,619,622,639,655,617,622,624,640,618,647,635,644,644,659,628,667,612,610,611,650,561,616,629,625,624,617,645,641,605,624,618,655,683,675,675,700,662,648,671,689,665,684,682,691,667,690,679,680,691,675,682,663,695,694,676,703,682,668,699,683,697,674,690,685,676,683,669,696,683,704,686,666,701,685,685,688,654,701,672,727,683,704,688,702,697,680,691,672,677,677,689,690,699,686,696,695,669,682,684,691,721,691,665,718,691,709,723,679,671,681,683,667,711,732,764,614,627,618,613,629,624,627,632,619,596,627,656,633,610,628,620,643,623,627,616,621,609,613,637,617,639,643,646,652,622,632,623,610,645,631,666,575,561,589,570,577,565,565,562,568,576,558,580,579,570,582,569,585,573,553,554,581,571,571,587,571,554,565,575,575,587,549,578,585,577,587,592,569,577,575,575,577,556,559,580,562,556,569,566,556,560,550,559,565,544,573,547,546,566,565,555,560,553,567,562,565,543,551,548,558,553,568,551,553,561,563,545,554,565,553,564,564,554,564,572,563,546,695,705,707,721,702,703,739,707,721,690,703,728,725,729,727,729,672,693,682,738,662,717,703,706,740,698,728,698,678,722,686,694,728,700,715,727,716,702,695,712,685,676,699,766,703,698,699,682,714,710,704,690,694,694,697,709,698,710,718,691,702,711,706,700,684,705,705,687,703,720,710,708,712,708,701,698,710,716,697,708,714,703,699,694,694,686,665,634,658,657,640,657,635,663,655,666,681,630,686,644,652,665,650,663,660,682,670,662,662,650,687,660,627,630,639,664,645,658,631,655,625,654,645,643,651,662,631,651,654,648,698,611,595,662,600,636,631,593,552,626,652,607,614,555,578,669,658,668,599,651,575,645,615,627,596,654,644,651,683,615,613,656,615,581,631,645,710,621,617,680,578,744,702,712,725,692,712,714,696,707,712,721,689,698,709,712,704,688,718,715,696,700,698,688,679,715,683,678,685,708,710,712,711,708,711,695,694,724,717,709,687,695,699,689,580,590,575,585,573,564,640,583,592,588,618,580,608,598,624,616,640,602,585,600,608,569,585,590,621,592,595,590,625,626,617,599,610,604,581,595,593,548,623,612,589,589,626,602,584,579,559,564,565,573,572,609,555,577,574,578,581,586,583,570,576,592,575,548,581,576,578,544,586,569,574,569,579,586,576,577,587,575,584,560,594,570,576,559,580,579,579,569,602,599,622,609,621,609,602,609,613,599,583,608,602,586,602,611,582,615,620,597,596,611,637,636,612,609,615,595,624,601,612,619,596,617,587,598,612,610,599,616,592,616,611,606,593,568,589,566,586,572,547,563,567,564,544,591,562,562,557,565,561,567,580,581,562,579,583,587,558,564,566,560,576,547,571,572,575,550,581,575,574,573,558,556,576,550,580,565,581,562,586,571,575,585,575,554,568,556,577,569,593,574,580,569,595,586,568,564,580,576,558,551,589,587,575,570,569,579,573,588,570,587,561,600,585,546,561,569,578,559,567,556,553,552,549,553,547,544,550,549,543,553,553,544,559,531,551,544,543,549,556,544,552,548,558,562,537,538,554,532,540,555,552,559,552,544,561,548,553,567,569,539,544,547,604,662,619,663,693,651,632,706,657,643,612,630,699,644,641,620,687,609,648,672,626,643,646,696,618,652,563,653,633,644,622,640,669,647,630,658,693,639,672,642,648,685,667,675,676,675,696,667,691,672,695,669,663,666,664,680,673,696,664,668,678,674,679,695,666,667,684,660,677,705,665,687,676,668,687,674,665,693,684,690,661,686,670,687,672,663,684,675,670,752,724,756,698,704,694,698,745,700,742,747,751,728,765,713,743,724,732,739,728,718,743,685,671,745,716,750,720,734,722,732,759,743,720,719,748,736,768,710,707,686,693,699,722,710,693,702,708,707,681,714,709,708,700,700,694,711,695,711,701,694,708,708,709,718,710,702,680,695,709,719,671,698,697,704,729,701,691,686,694,701,692,710,697,695,714,602,606,645,613,613,643,640,570,685,632,657,646,647,613,610,622,630,633,644,555,626,645,657,607,631,652,649,636,674,660,627,667,629,585,678,645,605,646,607,632,631,543,581,578,585,564,585,536,579,579,591,583,544,567,571,569,588,575,561,568,543,570,554,575,552,562,593,549,586,554,585,548,592,553,569,554,591,582,596,573,564,626,565,575,568,563,583,553,572,574,577,542,573,574,570,557,561,583,588,557,558,573,556,570,567,566,544,540,582,578,572,565,572,571,580,555,563,540,554,561,548,532,570,567,550,561,743,743,744,729,737,724,724,720,738,752,738,723,730,751,694,716,707,730,731,736,743,716,751,694,707,723,770,719,690,720,720,754,725,734,732,742,714,730,729,735,724,729,658,645,649,650,631,655,652,655,694,631,653,647,662,645,651,645,642,654,662,629,618,625,670,640,682,691,646,673,667,665,651,650,674,670,689,633,665,643,667,637,665,677,637,707,709,632,650,676,631,619,639,672,623,638,632,630,639,621,653,671,613,650,650,665,654,662,606,649,623,641,648,603,653,649,669,631,659,641,637,637,622,617,619,667,640,634,612,667,623,689,547,526,554,534,556,545,550,548,555,541,547,532,539,560,537,558,556,556,542,553,542,542,541,548,533,560,539,539,531,565,541,551,546,537,555,554,548,534,554,544,554,559,542,555,556,538,562,560,549,554,551,558,552,563,558,562,565,560,556,559,557,563,550,554,572,567,551,556,547,558,562,563,552,551,556,557,555,556,571,555,554,610,608,591,609,588,634,629,632,606,607,608,621,603,656,608,589,617,597,649,613,620,614,597,627,595,645,634,613,615,593,632,643,646,614,598,602,644,595,603,627,785,786,793,762,751,749,755,765,795,750,797,769,761,760,780,771,778,764,757,760,787,753,770,776,774,784,787,786,767,731,776,761,735,776,734,774,773,775,775,775,758,762,755,780,716,737,765,720,742,737,733,728,732,750,715,740,756,689,715,710,727,745,777,765,761,731,723,716,757,734,748,747,770,739,737,736,717,758,746,734,744,739,749,711,694,741,767,737,739,645,660,646,657,705,692,663,653,655,655,650,663,664,646,656,666,684,654,653,650,658,665,658,669,669,650,682,661,645,635,683,667,670,669,639,651,679,666,647,673,664,679,646,699,576,558,573,583,569,570,573,574,570,581,562,588,579,594,578,592,579,584,556,568,568,571,580,566,578,586,560,573,581,578,581,577,571,584,572,580,584,577,584,587,525,531,530,537,539,528,525,501,537,521,521,522,528,528,516,523,524,525,524,523,515,532,512,524,520,526,525,522,541,521,540,521,508,522,546,526,528,526,515,518,532,524,529,512,524,521,533,539,533,519,519,534,527,524,534,533,533,523,530,515,527,522,530,523,536,514,526,513,530,524,538,539,526,530,541,523,526,530,541,527,525,544,523,542,533,516,523,521,554,552,558,565,552,568,568,566,566,564,560,558,560,560,567,554,564,567,562,565,558,574,549,561,566,576,558,552,569,559,575,562,575,572,544,569,568,572,561,568,552,572,567,560,587,584,601,585,595,585,594,580,600,579,596,559,588,586,583,597,585,592,591,616,595,595,609,585,586,604,600,592,588,597,574,557,610,589,598,588,573,564,608,590,588,593,623,559,578,577,558,565,566,567,560,568,571,582,570,566,580,569,559,587,576,566,554,566,559,554,577,579,574,581,571,566,567,570,559,567,561,566,563,560,572,565,573,561,568,568,580,620,625,650,647,643,664,641,613,674,673,661,660,676,614,640,682,686,625,648,605,633,650,640,643,618,671,619,688,657,612,636,643,628,644,678,628,631,663,618,628,675,636,650,667,638,633,674,660,667,677,691,681,670,670,664,665,693,684,678,680,667,665,669,668,661,662,653,690,664,680,687,671,645,654,671,678,676,674,690,680,670,667,639,685,663,677,690,664,599,608,590,589,592,601,612,592,590,596,592,599,593,601,592,604,588,605,577,573,584,588,572,609,604,611,590,587,595,591,607,617,605,593,583,597,608,599,603,583,594,579,552,559,565,551,558,559,564,565,549,572,552,557,563,566,548,555,554,573,553,551,539,557,546,566,560,552,561,564,540,555,561,563,570,561,556,564,557,554,548,616,592,570,587,618,597,576,584,591,594,583,565,602,562,541,596,598,572,597,614,585,587,606,591,595,630,590,573,601,540,565,620,572,567,560,577,603,556,587,587,584,575,595,581,581,587,584,591,592,587,578,595,569,588,588,578,582,582,576,578,577,583,591,568,574,568,590,574,572,580,577,596,576,567,593,577,585,566,582,586,577,587,552,574,572,562,563,564,549,559,565,560,552,556,554,572,560,565,552,569,570,555,560,564,570,552,571,555,571,567,566,557,551,558,550,571,543,563,568,564,550,565,551,552,561,553,542,554,553,548,573,545,553,540,545,549,542,560,553,569,561,555,557,540,553,550,554,546,546,547,562,556,533,549,549,531,553,542,555,549,547,543,555,555,546,559,545,681,675,655,682,674,666,666,686,658,643,673,674,671,674,646,662,680,670,662,650,674,665,661,681,702,670,662,644,682,653,682,695,680,654,685,696,634,659,670,666,683,663,620,623,633,637,622,626,635,626,617,631,625,621,638,627,632,611,639,601,615,618,620,625,617,631,629,608,627,643,634,606,631,640,620,626,629,620,635,624,633,658,647,613,621,611,632,607,617,577,574,581,586,561,570,582,590,574,577,561,577,585,576,584,582,570,600,571,561,580,565,586,596,594,595,595,594,581,580,575,572,577,585,580,598,576,574,572,579,570,571,526,526,533,527,517,525,525,534,542,533,539,532,536,532,522,522,525,541,525,529,519,517,529,529,526,532,518,519,513,536,523,516,533,534,518,540,649,637,650,680,633,650,655,671,649,657,635,658,650,670,645,676,652,643,651,651,664,635,650,660,671,654,654,658,649,646,654,661,637,669,663,665,632,648,654,660,658,655,668,651,679,699,670,687,699,670,685,666,601,656,669,654,607,677,679,665,666,660,633,686,661,694,691,691,654,680,670,680,661,686,691,673,696,692,675,676,665,658,647,648,658,655,655,708,671,702,673,678,724,676,676,638,727,733,712,704,672,699,684,638,704,664,734,658,659,647,698,719,661,706,721,720,696,716,745,685,668,731,661,696,680,700,652,663,689,665,722,625,597,621,613,642,581,604,590,612,600,602,617,620,598,612,598,647,608,626,618,598,592,615,614,585,614,607,636,615,597,603,616,593,614,624,608,649,614,568,581,623,633,579,615,618,587,629,524,529,515,529,532,523,521,532,520,535,527,531,533,526,533,535,536,520,536,537,541,541,524,527,533,531,529,540,527,544,527,537,518,533,529,531,521,541,522,520,533,521,545,659,608,657,614,648,650,647,635,663,672,647,643,661,629,637,633,643,657,644,671,651,649,646,628,653,643,646,653,663,638,642,624,650,644,638,644,639,647,648,649,575,590,580,595,546,586,556,587,588,572,569,550,571,563,586,576,564,590,566,582,565,589,596,592,590,575,555,577,561,573,580,582,551,568,564,575,585,568,565,547,574,558,571,545,566,597,568,584,565,609,583,636,613,586,626,558,663,619,601,607,579,521,612,630,663,605,646,583,507,581,645,717,639,616,632,694,598,560,556,571,623,588,562,639,622,607,597,676,590,605,599,611,584,585,601,602,615,622,599,599,587,611,599,604,593,578,601,609,594,575,607,592,588,607,605,587,615,618,566,597,620,593,601,603,605,598,600,599,598,587,577,579,596,582,611,573,571,573,557,556,576,567,578,566,582,566,580,569,559,568,566,568,578,574,587,563,565,562,569,582,573,566,568,569,552,571,575,572,576,571,563,554,549,566,568,565,573,570,559,559,549,572,569,554,543,550,543,541,556,545,552,558,516,547,553,541,532,540,559,537,536,528,533,549,552,553,529,565,569,544,545,546,530,556,539,536,549,531,543,532,544,533,552,545,566,553,545,526,501,516,514,507,527,503,519,514,513,514,511,529,503,523,516,516,521,526,512,513,523,532,523,509,508,525,522,503,535,522,516,521,514,521,531,502,537,509,515,524,509,524,508,509,503,500,683,678,677,668,685,687,653,667,699,658,686,682,681,663,673,684,675,674,684,668,670,641,709,671,671,667,701,683,680,689,660,676,688,666,666,689,695,653,678,697,696,687,678,677,723,633,657,648,638,635,660,662,639,662,642,648,666,643,649,638,643,649,653,650,638,649,642,671,657,630,650,670,638,649,666,633,650,668,663,652,649,592,584,596,588,566,603,609,610,611,591,608,614,602,587,585,604,600,591,626,603,591,594,612,581,617,592,612,606,606,615,640,606,624,590,610,589,608,626,602,597,595,610,625,546,542,563,549,556,553,542,560,536,558,551,547,552,546,547,555,570,544,555,540,565,543,534,562,550,546,559,553,557,550,554,558,543,549,545,548,552,558,560,572,547,537,535,555,535,508,517,546,539,533,539,525,516,554,537,555,542,528,534,543,519,537,534,534,562,540,552,554,532,543,519,526,553,547,528,536,540,534,531,543,541,513,516,517,529,520,528,531,520,536,511,534,518,535,525,512,529,517,513,511,522,528,534,509,541,524,510,516,518,521,530,499,515,525,511,522,509,505,523,517,522,525,526,518,520,509,508,522,521,513,523,508,523,507,527,513,526,511,506,522,513,518,527,517,522,508,515,512,525,511,522,525,532,515,501,511,521,512,522,509,512,533,516,517,516,517,511,491,545,578,555,553,578,548,568,557,547,546,547,551,566,577,564,563,556,529,557,560,563,552,547,547,565,548,546,564,557,533,565,568,569,553,567,563,564,582,549,554,557,542,562,543,549,554,561,555,557,549,546,549,556,550,539,557,552,547,537,551,560,543,539,541,539,552,549,554,560,544,566,555,547,547,548,560,550,539,540,539,547,544,550,562,552,542,553,572,588,561,591,577,580,557,568,581,574,565,579,564,575,562,555,574,569,552,576,565,575,575,561,591,577,577,568,575,572,567,557,573,573,585,562,592,566,584,574,589,541,548,550,543,543,558,560,546,552,555,560,539,561,555,555,559,561,551,547,546,553,554,542,553,540,548,564,561,567,559,545,544,562,544,553,550,554,564,549,549,544,562,544,695,651,729,671,683,660,690,689,724,659,630,699,629,674,672,712,717,704,692,653,656,629,632,670,715,645,652,644,738,645,709,674,688,657,619,700,659,703,648,654,653,647,634,629,633,608,639,646,648,636,621,624,632,613,638,611,632,661,628,644,632,633,638,640,630,653,645,605,605,638,617,602,637,661,627,624,632,636,636,628,632,636,635,629,580,589,585,582,569,590,573,575,583,568,588,572,580,593,568,588,563,582,578,566,583,574,571,584,588,560,588,575,590,587,578,580,587,577,579,574,585,596,547,560,553,556,556,572,553,564,544,563,545,556,559,560,554,557,545,553,560,548,564,556,548,566,553,568,551,559,554,571,561,565,561,563,556,552,555,560,570,552,542,565,553,644,687,608,674,593,671,664,608,610,675,680,664,641,629,653,674,584,632,623,615,646,634,661,656,633,619,662,684,693,644,603,655,613,633,591,630,634,679,656,604,721,550,571,571,554,563,567,572,552,578,580,570,559,588,554,597,570,575,565,570,554,573,558,560,574,565,580,579,573,568,581,572,570,572,565,569,560,572,579,572,579,567,585,570,589,573,561,589,561,564,566,550,564,558,549,560,540,546,548,569,554,563,574,548,568,576,574,557,570,547,559,552,564,563,582,579,557,563,566,566,554,554,555,557,562,575,563,568,564,569,581,553,578,580,565,575,542,627,608,634,619,634,593,623,628,634,615,616,627,617,630,635,634,637,630,608,627,598,608,626,615,621,638,602,623,620,644,622,619,620,633,621,596,628,616,624,632,606,658,629,597,623,671,681,679,660,704,674,675,662,676,673,698,689,678,645,703,677,676,685,640,657,671,681,674,667,682,655,670,636,686,668,682,665,665,676,673,697,699,655,672,679,690,706,662,639,616,624,620,659,627,612,637,638,616,627,635,608,637,636,610,626,573,598,619,621,626,603,645,645,593,641,634,615,611,628,655,650,644,628,617,642,640,615,634,647,633,604,572,597,583,588,568,588,573,593,587,556,575,580,594,581,568,575,588,579,582,606,563,578,589,601,575,587,559,565,571,582,591,571,581,554,563,575,568,579,596,571,570,576,504,505,512,506,526,503,514,513,506,511,521,506,522,522,498,519,513,511,512,510,519,514,526,517,506,510,514,501,527,508,518,513,513,513,520,515,506,509,507,513,528,515,523,532,595,573,590,578,559,589,578,581,575,579,566,595,572,581,577,571,597,615,584,574,571,563,550,586,577,566,593,577,581,554,552,576,577,577,597,592,588,580,586,586,600,624,632,632,602,608,635,618,624,638,616,610,614,653,616,597,585,636,612,608,618,620,617,621,637,613,623,620,615,635,644,616,608,628,608,630,628,620,606,614,601,645,692,667,688,685,647,695,686,673,708,694,722,651,694,684,686,683,664,688,675,734,669,668,636,708,714,722,673,693,716,701,687,652,680,663,685,658,676,701,642,697,683,693,645,618,630,643,622,634,630,642,627,634,615,681,619,618,643,632,611,609,645,624,635,629,633,617,650,626,626,657,642,636,650,633,628,648,619,637,640,621,608,609,626,635,634,615,637,618,618,637,581,580,564,576,575,575,577,575,569,574,574,564,596,597,584,574,573,591,582,555,577,583,590,594,581,593,577,568,600,586,570,577,595,601,592,570,576,585,581,562,581,570,577,550,527,511,500,498,507,506,526,519,514,519,512,524,501,520,508,520,516,511,510,505,517,521,496,517,509,528,536,518,526,514,518,509,520,526,518,507,530,525,519,486,544,534,541,547,544,545,550,548,562,537,536,549,536,557,548,559,537,534,553,554,537,550,558,535,537,546,541,554,522,543,526,539,542,554,549,542,536,529,536,552,547,531,536,533,534,527,534,529,542,537,531,535,530,529,531,540,538,532,546,530,523,533,534,531,545,534,545,543,538,530,530,540,527,538,518,533,536,536,534,539,523,533,534,537,538,533,542,566,590,570,581,569,583,575,565,594,603,580,588,567,583,579,578,568,585,574,585,560,572,578,565,593,602,593,593,569,570,576,594,598,560,587,577,571,573,554,580,594,591,570,697,714,705,713,735,722,747,747,754,722,717,754,738,720,739,716,726,760,704,724,744,728,722,703,727,729,703,730,762,749,731,721,733,761,696,715,782,722,725,739,753,666,697,684,697,718,738,724,703,708,722,701,741,733,741,716,729,746,695,676,748,670,694,724,731,690,706,721,757,727,693,714,737,702,700,697,695,720,716,692,729,717,709,692,702,696,685,714,643,659,659,652,624,646,636,636,658,645,653,649,673,648,652,660,643,642,665,644,674,639,655,666,664,659,657,666,654,657,639,647,631,651,632,652,667,667,671,665,623,648,570,599,576,575,567,567,589,566,561,574,567,574,585,578,572,568,588,580,578,568,569,571,572,574,575,586,590,565,584,578,575,571,567,569,579,554,595,582,583,572,571,575,605,570,572,553,563,560,562,562,557,555,553,557,564,565,553,564,557,560,551,558,562,561,564,563,558,565,557,562,564,557,562,570,563,559,567,562,556,556,556,573,557,557,552,556,572,570,562,558,584,569,561,556,566,574,569,552,542,566,568,560,569,560,551,566,554,557,566,564,558,574,560,562,569,570,572,566,562,557,547,574,558,556,571,564,566,557,564,559,567,573,562,558,564,568,567,557,553,562,570,554,567,556,567,554,561,565,563,563,571,562,565,558,555,547,559,561,565,562,566,566,559,557,546,562,574,576,568,566,566,578,560,544,569,572,562,562,565,554,569,576,562,568,574,555,562,563,572,546,571,562,574,575,560,551,571,574,560,573,556,555,562,568,587,581,561,557,557,579,551,567,545,563,572,545,549,556,555,566,560,571,550,547,554,549,566,560,563,556,555,572,561,569,570,564,561,549,559,568,558,548,557,545,560,567,562,571,572,560,562,566,567,586,549,545,548,554,575,570,552,559,563,564,568,566,547,555,572,571,558,556,546,564,562,549,560,562,555,556,561,557,554,553,556,556,561,567,562,566,569,559,551,559,548,567,545,552,553,546,559,549,563,536,558,557,562,557,558,562,545,547,553,554,553,553,547,543,565,547,559,551,563,545,544,547,553,545,555,561,544,562,540,560,560,545,556,554,556,550,554,577,559,561,569,549,563,574,577,563,570,569,565,574,569,567,564,563,550,559,578,562,559,566,560,569,572,568,566,580,561,565,563,557,563,559,546,565,571,578,566,552,564,544,564,553,574,722,724,707,712,703,713,720,705,719,701,709,677,708,691,711,717,703,698,699,694,737,693,710,675,689,692,708,691,727,695,703,716,709,697,698,720,711,698,706,704,700,719,693,693,726,700,751,670,680,683,689,675,677,669,680,659,670,689,676,681,675,682,675,684,683,691,680,673,684,677,664,694,662,683,672,696,698,681,675,670,678,678,667,699,677,689,672,667,663,732,753,781,771,789,750,726,763,778,734,727,773,765,756,757,746,777,752,760,704,730,719,737,708,752,746,744,740,716,746,745,762,767,746,740,760,733,748,734,788,650,651,677,649,686,680,666,647,639,661,681,676,645,666,638,701,715,693,648,675,667,671,650,697,622,673,665,712,657,642,663,677,640,664,676,675,675,681,644,650,651,648,612,636,656,632,640,622,654,650,625,636,663,630,630,634,645,642,634,666,667,641,627,610,648,667,661,665,636,676,641,659,621,660,624,664,653,660,631,644,644,642,661,630,627,635,602,549,555,571,544,541,558,551,554,549,548,546,550,565,576,545,567,547,544,541,555,563,555,553,555,544,545,552,560,552,558,563,539,554,556,549,558,541,540,557,555,548,566,540,552,558,556,542,557,544,544,553,545,568,546,543,557,545,537,539,537,545,543,551,550,548,542,545,537,536,542,533,564,537,528,544,544,531,551,556,548,551,535,541,553,550,549,554,519,555,556,551,544,535,548,548,534,547,541,549,556,570,547,549,555,548,549,534,548,547,556,562,556,550,555,548,561,545,541,562,544,558,550,553,554,552,555,549,558,549,554,552,643,616,642,633,673,656,649,662,654,588,676,651,624,648,642,635,638,623,617,643,611,614,666,652,655,618,625,615,633,641,639,612,613,646,614,641,622,641,664,665,613,663,641,629,587,633,635,659,655,664,653,648,670,663,651,648,700,663,663,665,668,656,640,657,652,660,653,662,662,652,653,658,666,651,672,678,674,651,660,649,657,664,677,619,555,575,583,572,563,575,580,567,570,581,568,579,584,600,573,579,564,568,568,563,574,576,587,567,585,571,576,569,579,590,577,587,586,582,578,582,557,582,580,574,565,587,587,560,595,608,562,578,579,576,596,589,590,586,596,592,610,616,574,584,580,608,584,612,586,572,588,585,578,600,576,593,589,577,580,580,614,569,595,605,619,585,596,584,586,601,587,565,581,589,598,587,633,606,608,619,596,570,600,592,581,597,588,608,615,610,620,598,601,610,599,618,594,608,594,598,616,593,612,601,620,587,595,611,617,611,610,592,599,576,586,584,571,577,577,582,579,540,558,579,554,568,565,551,565,568,569,561,575,570,570,604,573,579,559,559,569,562,568,553,587,564,578,551,575,577,565,602,559,579,555,581,646,685,659,662,658,656,690,651,683,680,655,683,681,674,659,649,673,659,662,660,668,662,665,677,669,663,659,651,650,646,656,657,650,661,643,650,667,655,672,572,593,600,585,603,595,600,569,577,590,612,578,598,595,595,573,582,591,569,561,593,589,614,585,580,591,595,591,571,567,554,574,602,564,583,577,582,605,575,594,588,592,551,674,688,712,687,673,675,636,646,716,607,665,706,707,625,708,669,718,698,718,700,690,635,610,710,677,728,665,691,687,683,632,623,726,713,674,626,656,664,641,635,708,673,665,662,549,735,664,710,740,715,702,728,704,691,704,731,672,685,707,719,721,718,711,694,708,705,695,697,711,693,712,664,714,722,702,700,698,678,706,690,700,712,711,654,651,647,618,653,641,666,646,642,633,684,659,625,650,647,651,666,644,648,648,669,652,663,630,640,664,663,615,649,636,667,637,659,658,664,610,666,653,652,649,649,649,696,733,716,713,737,736,780,746,712,715,742,726,713,731,724,692,710,715,748,721,733,742,730,721,717,764,705,704,756,712,716,696,725,737,725,740,718,751,709,743,701,737,779,711,724,772,698,671,748,710,712,713,703,719,662,735,739,702,701,708,705,741,771,704,736,673,696,727,725,741,719,733,711,689,748,739,718,741,732,688,749,686,724,685,700,719,673,677,684,699,675,653,674,675,675,698,702,663,663,680,690,675,704,673,659,659,653,656,683,685,666,678,651,660,660,664,681,672,675,655,667,697,676,672,725,663,674,649,648,659,643,656,670,653,650,651,654,650,657,657,658,637,653,671,652,652,646,651,642,644,652,660,666,655,646,653,647,643,648,646,665,651,670,652,658,655,651,731,743,730,772,752,744,746,762,758,732,757,761,761,765,757,735,751,727,765,773,753,735,751,728,741,750,686,722,768,721,737,743,756,721,746,705,763,762,755,771,748,777,711,745,732,771,739,716,712,694,679,721,684,712,743,707,691,743,693,744,737,724,713,684,714,725,709,697,789,711,754,724,692,710,699,741,752,739,703,716,722,741,740,734,717,751,722,714,741,681,676,653,635,681,671,711,684,699,667,668,659,690,634,689,655,691,650,665,657,649,663,656,658,684,658,653,655,664,671,645,655,658,674,639,649,667,682,654,670,693,651,642,674,593,587,617,604,620,615,583,589,595,591,600,607,605,604,631,605,609,604,594,613,630,624,595,605,611,606,605,615,605,615,607,591,605,606,617,598,597,603,607,595,623,598,604,589,614,605,609,588,566,575,572,587,568,576,573,577,563,573,573,593,569,591,561,560,583,567,579,590,588,562,574,572,578,577,571,569,587,573,574,593,564,588,568,578,583,587,569,567,597,599,579,572,711,714,699,713,707,722,685,696,693,701,695,727,709,690,717,712,711,720,692,721,683,698,700,692,701,687,678,698,718,692,699,715,707,677,705,710,686,678,700,685,692,713,672,663,665,661,685,675,670,681,663,654,688,688,660,681,670,670,681,675,681,674,656,679,650,660,672,673,686,679,675,692,685,669,672,638,684,661,664,632,601,603,623,615,628,608,609,609,608,597,644,637,608,605,617,616,600,610,604,611,623,614,617,629,602,615,617,632,596,626,609,624,596,619,620,577,620,582,618,614,604,610,621,580,583,578,580,577,562,591,583,583,592,574,591,587,586,567,574,578,590,565,581,592,593,590,572,587,580,580,581,579,572,582,563,590,587,594,588,580,593,579,576,582,593,590,582,570,610,640,636,645,626,666,666,625,640,619,627,606,666,616,646,631,641,645,643,650,626,663,626,684,684,634,654,650,690,617,644,656,653,641,660,665,633,627,654,629,667,631,625,685,720,665,670,664,673,665,690,672,685,655,679,685,680,671,679,655,666,674,663,658,669,678,657,681,665,669,671,675,660,675,664,671,661,685,665,657,663,694,672,684,675,677,674,668,659,699,606,634,591,610,613,636,611,624,603,623,606,599,605,594,598,635,610,613,618,639,616,625,621,617,605,616,616,644,607,624,622,628,604,613,606,602,613,621,600,625,625,626,586,580,574,581,584,585,582,582,565,590,565,569,578,582,582,578,566,575,586,577,582,563,575,569,589,582,568,582,571,586,585,571,573,580,582,577,578,583,569,568,581,588,556,550,539,547,529,555,551,551,542,562,535,547,539,547,557,559,542,545,569,546,554,541,559,535,549,554,557,547,542,552,560,547,534,535,526,553,551,550,561,550,544,545,546,569,523,532,528,521,541,543,550,537,529,531,547,534,530,526,526,528,538,536,543,529,539,546,540,542,527,529,548,528,525,518,538,531,534,520,528,551,528,532,543,530,536,531,538,550,542,510,583,587,583,579,584,583,570,584,571,569,588,571,564,566,580,577,591,574,579,589,585,588,576,579,571,568,568,548,563,587,574,579,559,563,572,577,599,602,609,631,615,595,610,615,610,624,612,604,608,625,622,623,613,577,607,605,623,612,605,623,589,619,615,633,617,613,617,612,610,627,589,616,600,621,610,624,611,628,614,615,588,611,627,629,613,619,603,596,593,619,627,609,605,585,595,598,634,610,612,597,612,607,618,596,616,585,600,594,596,585,617,631,583,590,601,601,604,623,611,604,599,623,605,605,597,623,598,590,608,607,610,589,602,589,566,565,583,591,584,588,580,571,579,571,581,577,585,575,574,578,583,588,568,576,601,586,579,574,589,576,585,569,569,589,594,580,592,585,563,575,573,567,684,668,689,683,642,677,683,666,680,645,662,667,675,663,679,660,668,691,649,669,668,668,671,682,646,671,677,685,668,646,657,668,660,680,707,653,671,676,649,658,587,576,572,589,590,591,597,573,579,600,614,576,597,580,592,599,565,584,596,587,600,592,585,585,580,578,594,580,586,570,585,581,578,586,576,579,579,577,577,588,584,600,575,579,551,559,570,569,565,572,555,538,571,552,550,568,561,571,559,549,547,602,566,548,557,576,554,585,576,595,589,552,556,581,554,553,569,582,572,561,586,580,571,589,571,570,565,663,644,613,655,631,655,653,627,658,642,643,633,646,658,632,637,646,647,643,650,646,659,661,660,662,637,656,648,652,653,664,651,652,633,632,647,638,655,638,644,622,605,605,603,595,606,603,587,604,603,593,600,580,588,601,600,590,597,575,597,604,585,584,593,583,590,606,599,594,581,605,616,605,573,601,604,597,592,580,611,587,631,567,565,574,550,564,561,556,541,566,558,556,539,545,552,563,551,566,558,579,563,536,553,547,570,554,562,553,555,550,561,540,544,575,547,553,559,542,556,561,559,560,527,621,573,570,574,583,591,624,581,568,607,587,566,529,613,580,609,561,557,596,564,617,585,565,566,555,577,615,600,586,605,574,567,578,582,564,593,591,577,584,543,575,581,588,580,579,573,571,592,569,568,594,590,589,577,582,586,585,586,582,574,583,567,586,583,570,566,575,581,590,593,578,592,587,581,582,582,588,595,570,575,590,581,572,581,578,581,594,576,539,570,550,557,551,546,558,543,557,560,556,552,565,562,553,554,557,557,553,555,544,555,555,541,548,541,566,558,550,552,556,559,551,565,550,555,551,569,573,561,556,560,582,584,617,619,627,589,627,606,610,574,567,585,557,619,613,605,637,608,598,616,607,597,605,577,603,628,638,578,635,612,599,626,596,627,618,620,583,617,582,598,596,597,612,580,677,580,579,571,571,565,574,586,579,571,574,571,586,558,588,564,572,570,588,574,591,575,570,572,580,567,578,585,566,573,559,566,539,574,560,595,587,609,570,578,579,565,602,606,622,614,593,592,573,595,611,566,577,574,618,572,634,557,604,590,614,643,561,605,634,624,614,614,603,584,628,603,618,573,600,610,600,580,583,581,595,574,630,619,614,567,576,625,686,702,731,716,689,703,705,716,679,716,688,696,718,714,698,691,707,676,716,718,685,700,703,712,709,740,725,691,689,720,680,675,684,704,692,692,669,724,693,700,709,716,684,721,705,713,597,617,623,620,637,647,614,618,621,623,639,614,628,622,599,627,606,609,644,609,606,646,634,635,591,632,629,613,604,615,633,618,627,630,630,633,611,657,614,572,632,590,674,627,644,576,588,637,617,576,633,629,557,642,634,587,624,612,607,618,627,671,626,688,634,648,592,600,612,611,658,634,615,601,652,580,557,670,648,642,575,634,621,602,604,676,594,599,594,561,594,581,615,600,603,601,602,587,588,601,588,579,615,588,601,572,617,592,584,582,614,600,579,584,585,585,586,580,582,592,579,586,586,591,584,604,531,534,590,581,636,624,640,642,573,600,622,593,638,608,579,617,620,511,574,595,610,639,633,641,650,632,658,661,566,552,623,541,580,593,581,606,685,583,552,625,622,644,658,716,682,704,704,708,702,678,688,692,724,706,730,709,675,706,673,718,707,710,707,709,703,718,690,726,703,687,706,714,701,689,723,723,702,704,706,706,726,692,698,716,708,694,695,708,703,692,700,729,678,688,657,721,706,653,709,758,695,719,691,718,701,646,655,686,725,718,695,713,703,706,696,721,691,657,722,626,722,705,715,706,703,709,677,680,664,704,705,741,670,715,722,659,653,668,670,619,645,642,679,662,647,646,665,675,663,655,665,656,654,645,646,650,662,656,662,657,645,666,648,643,623,666,646,657,637,647,672,685,637,660,651,640,659,635,648,698,582,577,569,569,585,586,608,591,592,594,583,575,592,604,575,605,590,587,580,609,587,570,577,580,608,577,593,581,595,569,587,590,566,588,579,577,600,592,585,597,582,580,601,546,534,549,550,537,548,541,542,533,553,533,527,552,542,546,547,546,532,542,547,561,538,533,551,531,547,543,540,540,527,529,542,538,542,544,543,533,533,541,538,529,549,539,547,538,532,541,543,543,552,540,551,538,534,551,553,524,545,546,541,554,548,537,554,548,554,537,552,549,528,549,550,559,547,554,559,543,546,527,548,544,528,558,562,572,539,561,511,525,526,531,530,519,522,532,526,531,523,533,519,533,528,515,523,522,527,515,540,537,542,533,533,523,520,530,524,529,536,523,523,539,520,523,522,527,538,520,524,532,523,537,535,512,532,505,690,693,691,718,698,683,697,676,701,715,711,711,696,696,689,694,683,673,690,697,684,696,706,688,706,697,682,720,721,721,723,704,700,707,713,683,706,693,688,718,678,723,695,642,657,673,638,667,654,649,660,645,644,642,654,655,661,651,656,656,668,656,679,653,658,665,625,682,648,681,648,641,675,673,655,677,670,638,653,653,660,638,651,651,649,663,661,649,653,666,590,577,620,610,592,602,607,603,618,604,613,611,611,628,622,608,628,600,609,631,612,591,618,620,600,625,611,587,620,614,602,591,608,585,617,601,616,582,606,600,594,649,638,638,592,632,609,613,629,647,647,603,628,641,619,610,650,651,621,599,620,650,628,635,641,600,630,595,627,579,598,652,574,623,621,607,611,681,695,627,631,608,582,648,568,624,597,592,609,608,590,618,606,631,616,625,603,609,605,603,602,587,601,614,591,590,612,595,624,618,599,592,606,600,602,589,604,593,625,607,583,569,569,582,567,570,565,544,577,550,562,570,559,570,562,565,558,580,573,573,572,565,582,566,573,571,572,567,569,582,574,568,567,553,564,561,581,575,566,562,566,559,585,546,566,562,563,582,561,542,569,572,560,553,551,549,548,566,559,545,552,563,539,542,543,562,567,572,546,550,549,557,551,546,548,555,554,570,560,555,571,552,570,559,566,551,567,552,555,555,546,542,560,539,552,554,545,544,555,554,563,555,538,554,549,552,567,558,556,537,553,543,554,553,543,542,557,549,546,545,543,544,546,539,551,557,658,584,680,629,596,595,623,647,629,644,580,594,628,608,597,640,575,650,601,626,604,608,641,647,610,599,577,666,664,614,587,613,596,656,634,593,640,617,632,630,605,605,580,603,764,726,739,737,716,741,739,714,767,727,755,723,770,742,743,710,714,704,697,731,720,772,733,725,755,710,698,718,718,703,767,735,745,733,719,734,730,752,746,773,799,721,724,732,714,755,717,737,729,730,708,745,746,728,748,722,722,755,728,742,710,703,736,737,707,729,734,733,717,709,733,734,733,737,754,724,726,714,713,739,750,654,670,665,678,661,654,693,654,652,674,652,694,667,664,660,662,674,685,670,674,663,673,638,681,657,675,675,664,662,691,652,665,671,697,668,643,692,668,678,640,673,672,676,650,653,681,604,594,570,573,585,555,600,568,590,570,575,598,580,589,576,569,601,579,588,576,583,575,599,579,576,580,587,577,585,593,580,567,587,568,594,593,584,596,587,576,587,587,559,666,663,680,679,667,690,690,680,664,668,681,679,674,689,646,694,643,659,671,674,664,660,680,673,682,673,676,680,664,679,695,671,652,681,670,668,691,691,688,672,683,659,682,664,693,680,675,647,673,678,681,721,669,709,682,657,691,678,657,696,720,655,687,686,667,661,682,636,672,681,705,671,667,660,688,632,665,673,702,659,657,660,680,683,658,668,664,710,649,665,666,701,681,669,579,587,589,559,614,531,554,553,589,606,579,595,607,586,618,567,581,580,561,580,590,584,621,564,560,583,607,596,589,576,581,571,570,592,538,559,602,578,603,588,575,547,571,546,556,570,571,565,551,577,551,538,533,558,580,554,536,556,554,527,561,548,541,549,582,546,541,558,556,551,541,558,557,558,556,571,531,564,541,561,562,560,696,637,660,680,643,674,625,676,681,656,675,694,699,685,679,655,665,675,676,670,691,667,666,684,671,687,708,680,684,637,670,657,664,641,647,675,720,665,688,622,631,624,625,648,634,616,629,616,622,636,588,623,626,608,614,598,608,601,635,622,656,638,608,603,597,615,633,630,630,617,628,640,608,634,604,630,618,615,581,585,578,576,590,589,566,574,580,576,584,581,589,583,583,584,591,580,576,576,572,582,584,573,580,590,571,591,575,570,567,582,583,579,575,583,581,579,577,576,588,582,587,657,636,610,630,652,631,630,629,637,662,638,625,670,620,654,656,676,633,667,646,644,636,653,609,635,616,652,622,699,646,633,672,649,643,668,689,634,650,685,633,601,652,692,695,680,706,699,679,680,692,683,680,676,681,685,671,690,675,682,688,687,684,669,689,684,681,689,668,693,683,668,658,693,670,667,697,691,692,699,701,684,674,666,696,663,704,650,673,666,669,645,673,682,675,669,669,666,664,655,641,663,672,655,667,668,657,665,662,670,664,678,653,656,661,664,661,668,650,646,663,664,664,671,657,676,672,659,656,675,675,663,583,602,592,577,584,602,589,572,600,590,593,589,581,576,570,574,584,602,593,572,582,592,572,593,553,598,585,576,607,598,599,588,593,575,611,573,592,582,582,574,583,588,576,634,595,592,603,579,608,624,595,582,639,609,630,564,601,627,595,589,636,578,596,595,630,582,579,609,589,622,626,615,606,618,609,574,631,653,580,601,612,610,587,607,589,639,603,537,589,583,587,598,578,585,582,576,575,594,593,582,605,582,579,595,569,578,601,594,586,586,587,586,592,599,586,589,584,578,584,599,577,574,591,600,591,621,581,595,603,605,592,580,563,584,593,579,631,595,572,582,621,561,558,611,613,587,599,644,568,591,569,574,554,584,615,593,646,628,621,550,596,516,563,569,560,578,561,562,571,565,557,557,564,574,566,559,569,552,572,568,571,570,564,570,552,572,552,573,565,564,557,558,585,554,551,557,576,570,559,568,564,574,577,564,579,559,586,588,605,604,577,605,594,595,589,596,615,597,599,592,591,565,600,584,594,596,585,584,577,590,599,601,616,601,576,566,583,585,585,601,598,588,599,591,582,622,616,618,617,611,616,610,605,599,623,609,607,641,608,589,609,633,608,604,625,606,612,610,614,613,620,599,645,603,600,602,593,620,635,608,633,599,618,615,618,622,612,581,592,558,577,574,579,588,580,560,580,573,589,599,591,582,592,579,571,578,579,573,594,594,579,595,582,579,583,590,591,586,585,563,582,597,562,583,577,584,578,575,566,594,541,624,642,624,578,626,630,637,603,570,635,601,620,651,640,639,605,605,601,621,617,653,656,646,627,673,620,612,605,652,638,615,609,623,618,648,619,611,637,623,619,563,538,689,705,679,680,696,686,672,696,665,678,699,680,659,678,685,686,707,680,700,701,721,691,676,701,705,691,667,670,683,692,711,671,687,685,675,688,685,691,678,705,699,683,719,688,678,696,658,668,679,664,671,694,660,674,683,674,653,687,680,659,664,690,682,674,665,671,668,678,670,691,685,677,657,683,668,666,665,678,667,678,708,691,664,668,686,673,698,682,684,657,684,674,685,575,600,569,562,573,569,588,571,577,599,569,583,576,568,596,560,586,566,595,581,563,589,583,580,586,590,598,575,584,586,582,573,577,583,575,557,579,571,588,577,610,590,561,588,578,602,577,653,634,647,653,635,606,644,603,626,646,669,630,631,665,638,636,616,655,637,649,643,668,615,629,615,658,611,638,636,628,655,619,638,659,619,651,632,642,636,639,635,633,578,602,600,607,595,579,594,568,602,591,588,589,594,593,603,596,584,605,563,595,598,572,577,593,588,592,587,594,586,590,598,586,613,586,593,613,592,594,583,599,588,601,586,572,565,562,568,553,560,561,577,580,565,563,554,570,546,563,563,571,571,575,571,563,562,559,568,567,567,567,561,567,556,553,565,552,559,569,582,559,563,576,575,560,557,575,568,556,560,554,551,560,566,553,558,557,560,557,573,552,558,558,558,551,551,565,556,556,546,539,555,551,572,552,561,552,568,549,561,567,568,550,567,558,570,564,566,555,571,564,550,553,565,553,552,549,549,546,551,546,548,540,540,567,552,551,545,560,544,561,547,549,541,559,558,560,543,550,557,555,565,553,544,557,563,572,550,551,554,735,717,720,744,755,736,763,709,738,679,729,731,675,747,726,743,707,705,733,732,719,737,757,786,714,706,755,731,769,756,717,717,703,744,689,762,741,712,714,707,724,692,687,770,786,724,728,712,718,719,732,732,727,735,729,726,694,716,724,726,690,704,727,702,700,727,718,762,751,734,711,744,743,724,712,718,731,723,731,744,723,714,700,746,707,734,732,705,717,710,774,597,596,613,596,562,621,565,631,602,606,597,573,606,589,639,594,613,610,584,605,599,608,563,611,600,636,600,604,633,602,610,638,554,603,580,568,623,589,591,621,678,542,574,585,575,589,590,569,573,575,577,563,558,540,554,567,566,553,553,549,555,565,563,572,572,574,534,576,563,560,580,569,570,576,572,569,563,570,552,535,537,525,530,531,542,547,536,525,531,530,547,531,540,539,525,549,539,534,534,535,543,542,521,534,530,535,533,538,533,539,524,537,530,540,543,533,545,531,544,527,537,544,536,531,537,676,645,635,622,659,642,631,623,612,641,631,643,649,634,653,661,629,671,631,640,645,653,665,656,663,650,658,640,661,646,656,654,651,663,651,659,672,653,643,648,670,636,679,581,577,594,597,597,597,587,589,571,574,595,583,596,601,589,590,598,588,593,572,585,589,589,575,583,588,600,583,591,604,582,584,608,577,589,593,588,580,578,552,549,543,557,553,563,569,548,559,558,545,560,553,558,553,543,553,556,540,566,565,566,556,553,559,547,551,549,562,546,553,557,553,558,554,547,557,558,555,545,559,560,584,667,663,687,656,648,628,600,644,665,657,593,599,658,652,625,633,621,610,692,631,622,598,654,674,658,620,647,666,625,614,601,618,621,610,644,669,618,658,645,626,635,582,559,586,581,561,572,551,576,566,566,559,577,577,562,571,577,561,578,573,559,576,553,589,578,571,572,570,577,560,576,554,566,583,563,572,578,572,587,667,655,601,573,666,626,636,628,647,595,633,623,617,638,593,607,608,670,640,635,581,656,603,584,564,630,673,650,632,615,634,598,665,595,650,634,657,632,641,666,628,619,612,603,603,622,609,609,600,638,629,615,610,605,605,598,607,617,590,610,606,600,608,623,626,604,605,601,637,587,623,590,594,596,608,594,592,632,613,603,616,586,628,609,609,607,611,578,562,559,578,575,563,560,586,561,594,573,572,567,577,589,586,568,572,574,567,591,578,579,572,571,573,591,602,583,566,576,575,575,563,571,575,582,564,571,579,573,575,575,574,602,671,635,658,637,616,646,629,636,668,658,640,653,621,620,638,666,601,638,594,617,657,666,633,627,662,669,656,644,650,607,636,649,607,619,652,633,650,640,645,656,621,672,669,687,646,667,658,654,649,677,663,659,672,673,652,679,667,671,683,664,665,672,680,669,661,669,666,683,665,666,692,660,688,674,677,680,681,643,666,670,665,665,670,677,593,579,580,583,593,572,595,590,587,574,567,599,578,597,572,571,581,596,601,596,588,606,598,591,584,582,566,587,579,583,579,579,575,587,567,591,588,584,586,584,622,604,576,697,704,687,687,685,696,697,692,703,710,685,692,688,666,689,687,701,669,693,708,695,702,713,704,689,690,690,676,694,684,705,688,684,719,692,683,702,683,710,679,688,709,697,710,687,676,685,693,678,741,657,659,670,688,651,667,637,659,654,675,645,661,668,657,648,676,652,630,652,662,643,648,662,663,672,658,661,650,651,632,666,679,672,660,662,632,659,663,650,651,656,661,684,596,627,622,601,581,618,599,608,583,613,605,593,594,567,595,621,600,598,605,597,611,606,600,569,610,580,616,599,607,601,586,590,613,612,619,612,615,605,596,558,627,629,654,642,667,647,656,647,650,662,604,628,641,608,639,635,634,649,637,645,667,658,618,662,647,602,645,601,632,643,654,656,643,694,664,640,627,633,661,709,683,694,678,695,698,703,706,695,683,695,681,691,681,694,666,690,683,669,702,693,692,689,699,688,678,695,701,668,717,698,703,690,697,697,682,689,693,694,692,696,677,650,665,679,668,671,658,663,673,672,665,669,658,672,677,673,673,669,672,672,685,674,678,649,658,659,671,673,666,692,662,674,674,676,676,685,665,669,681,656,664,673,656,665,664,669,666,656,680,668,604,608,619,621,611,616,615,619,614,630,593,609,598,610,598,603,608,601,605,617,609,615,631,626,617,597,610,607,630,612,609,605,625,647,617,615,624,599,617,630,610,630,623,603,605,622,611,561,571,571,577,561,579,571,593,579,588,596,575,582,567,574,587,568,570,582,577,582,569,580,565,556,595,574,583,574,570,584,576,576,570,554,572,573,567,572,568,588,637,662,653,668,688,677,677,663,703,649,686,665,700,657,653,667,676,676,676,656,661,674,698,659,688,657,661,664,672,672,683,678,656,650,681,658,666,647,618,643,627,633,626,632,605,617,644,608,638,624,638,623,629,615,639,624,642,644,650,623,621,618,612,622,631,634,638,644,640,629,628,639,630,607,625,599,634,602,634,624,626,629,639,574,573,569,568,565,568,573,584,568,576,562,588,597,592,612,579,571,585,569,561,574,556,571,593,584,592,577,564,593,582,599,593,578,558,586,566,578,573,584,578,591,580,607,559,558,559,549,559,558,557,555,545,548,540,554,549,565,543,554,540,554,539,558,559,553,551,549,549,556,542,553,552,555,556,548,547,551,555,553,556,546,546,547,553,564,560,560,561,542,650,659,648,660,647,704,648,664,685,702,613,652,678,582,687,617,614,700,611,696,640,665,655,647,643,664,638,636,644,658,634,665,627,587,639,664,610,652,628,617,667,649,627,643,638,628,654,698,604,603,609,595,592,603,597,617,601,587,594,596,591,592,610,614,604,610,601,590,594,603,598,608,583,594,599,606,603,589,601,584,602,594,617,608,592,597,600,589,605,588,613,596,591,560,561,571,584,573,577,583,572,574,573,574,572,567,568,579,565,568,575,555,568,566,575,585,570,566,574,572,568,572,578,575,573,564,576,560,569,580,577,570,566,547,545,544,554,554,562,530,538,543,561,562,547,561,549,554,548,532,567,559,542,553,558,552,558,556,560,554,551,556,534,580,575,559,562,568,557,567,547,552,564,550,564,564,543,552,567,561,558,564,540,566,557,565,555,544,552,543,557,547,557,559,559,547,546,545,543,554,551,560,543,548,542,555,548,544,554,550,558,552,550,564,550,555,538,550,553,543,548,553,570,565,564,557,555,541,565,561,552,566,551,567,560,557,565,561,575,568,575,569,568,583,575,568,544,568,558,565,559,570,580,568,563,576,563,574,560,560,570,556,570,586,699,689,680,706,707,697,714,696,697,694,698,687,710,692,703,693,707,700,691,676,732,706,699,728,705,702,700,717,687,697,706,698,703,735,700,691,711,698,684,716,696,703,683,686,714,677,675,692,681,667,701,682,688,659,654,657,682,670,678,678,686,663,689,669,690,685,673,663,700,681,676,669,677,687,688,662,688,683,683,680,668,670,675,686,663,680,661,681,678,666,674,639,627,627,620,626,653,633,606,629,622,631,644,648,634,660,631,643,667,624,637,629,653,667,621,626,632,624,646,622,628,605,639,640,598,637,629,668,657,611,656,628,639,638,617,698,713,721,681,674,699,657,647,668,675,661,694,707,661,664,720,690,701,645,672,684,682,689,674,685,707,706,688,698,689,704,687,667,665,706,717,706,738,706,687,682,695,676,690,676,656,640,680,657,640,667,657,636,652,642,651,683,673,675,669,670,693,656,689,655,658,664,679,695,680,659,661,638,615,641,660,679,663,669,656,677,655,650,654,650,659,596,589,613,614,598,581,594,599,612,588,600,597,597,614,604,602,599,602,603,609,601,608,618,622,593,623,606,617,592,607,589,614,601,617,615,596,597,616,614,601,551,555,559,566,563,564,552,557,563,557,549,552,563,552,567,577,559,557,566,565,559,565,567,551,564,549,559,557,574,567,561,549,551,560,565,554,557,539,560,556,562,568,557,584,573,590,557,572,591,563,580,575,566,595,581,579,573,575,565,573,573,598,588,575,570,579,572,569,584,578,576,564,571,558,578,549,577,570,556,608,586,563,581,561,582,566,575,585,584,602,619,624,597,598,616,637,604,606,606,617,613,596,599,603,615,607,606,582,601,613,608,593,617,585,622,603,589,589,603,601,616,607,619,614,578,617,613,606,597,624,597,629,631,648,609,660,645,635,621,627,622,594,647,620,635,626,631,626,608,622,626,622,601,638,627,639,616,639,616,643,665,636,643,641,648,637,645,622,637,647,649,670,609,603,611,591,608,594,606,609,589,599,571,605,592,586,608,609,608,597,603,585,594,602,593,601,580,613,628,610,595,598,591,587,599,598,606,617,592,601,566,569,605,574,580,583,574,573,582,595,562,578,589,598,562,561,590,583,588,582,570,580,570,591,583,603,584,564,570,570,579,581,593,573,584,584,591,583,584,569,592,591,568,583,558,547,555,550,547,549,555,544,558,554,553,559,551,549,561,563,562,543,557,558,563,546,562,565,561,555,555,566,544,550,552,553,551,549,572,558,555,560,550,549,555,566,544,547,725,677,682,636,631,701,673,661,655,700,639,668,705,638,646,629,679,670,674,699,667,633,673,697,664,621,638,653,648,680,686,669,664,664,674,695,653,635,688,664,691,597,607,614,599,608,604,606,570,591,607,592,599,589,592,623,573,588,621,630,595,596,591,579,604,606,594,589,600,596,613,596,628,567,591,609,636,616,604,592,578,580,617,590,616,552,573,588,577,577,605,563,567,553,572,567,559,587,586,546,569,578,576,550,576,579,586,567,561,576,568,574,572,562,580,580,617,547,575,577,592,579,569,572,549,614,663,670,659,678,660,647,672,677,650,677,663,667,676,651,658,681,685,659,663,651,662,670,663,680,660,669,669,680,653,684,688,655,649,651,674,654,661,687,650,682,651,673,669,650,652,663,666,737,753,746,734,742,752,758,775,768,708,749,743,718,701,742,754,715,730,719,753,773,726,741,757,749,737,774,761,730,690,758,755,727,748,725,718,723,764,740,761,757,754,731,710,771,653,662,677,667,696,655,685,701,683,665,697,707,674,676,685,673,655,674,659,637,680,685,701,659,663,653,621,684,711,665,673,645,664,676,677,656,677,668,654,640,516,538,521,543,547,512,549,552,532,534,558,524,544,538,524,545,559,536,559,548,565,561,564,538,548,563,569,502,553,567,558,510,548,553,518,556,529,521,563,543,531,576,547,553,546,596,525,530,517,526,521,536,542,522,529,519,527,532,515,524,534,537,530,519,521,521,533,530,514,524,533,534,537,530,525,510,535,516,539,530,533,534,522,530,530,522,520,655,651,639,680,666,646,658,641,649,659,619,670,630,640,636,667,658,645,651,649,624,652,640,620,650,638,628,658,656,653,642,617,649,651,643,624,696,701,669,668,697,664,659,685,687,700,646,684,672,695,670,692,673,684,674,697,690,669,680,702,655,666,643,700,661,645,677,678,668,667,705,689,680,666,653,719,612,615,662,719,703,680,690,699,704,695,705,730,652,732,685,667,658,658,670,663,692,715,700,707,667,695,682,660,656,678,729,716,645,675,611,715,660,654,639,727,674,730,624,675,651,668,675,672,659,674,642,624,645,628,645,659,639,635,644,670,638,654,631,639,655,644,649,640,643,669,638,660,652,677,658,642,622,641,665,635,651,629,649,663,627,677,660,660,671,644,670,645,655,638,576,572,555,581,580,566,569,564,573,560,578,577,544,558,579,588,550,584,575,554,572,555,584,570,562,568,567,571,565,584,579,565,567,570,569,570,556,569,556,547,590,562,595,605,612,607,603,575,598,624,582,575,561,643,611,609,621,614,584,594,650,572,596,563,596,601,611,555,606,575,649,596,579,573,579,595,584,549,580,639,772,780,711,765,780,775,801,810,759,766,766,768,756,771,739,779,763,752,783,756,766,771,751,795,805,767,779,775,742,761,753,785,758,735,748,758,744,750,778,778,760,740,758,748,767,762,761,766,657,690,659,674,671,705,657,683,682,676,666,670,710,654,681,716,706,690,687,692,618,680,694,681,694,693,699,697,702,689,677,634,663,692,693,676,677,677,704,701,638,543,553,547,558,526,547,530,560,523,541,560,536,526,566,537,547,544,580,568,567,570,559,559,549,566,537,560,538,560,537,563,551,541,530,560,515,548,539,522,523,524,544,533,524,532,533,544,532,522,544,539,518,531,527,534,536,541,546,529,531,537,533,523,531,533,526,526,525,529,526,535,531,525,517,530,553,540,533,533,517,509,506,517,494,502,507,520,521,483,496,521,519,514,503,520,510,511,528,510,520,521,514,512,525,497,517,508,512,502,527,515,508,500,520,514,497,514,522,508,514,519,508,529,499,519,524,552,565,559,551,547,552,537,535,571,561,556,575,554,564,572,560,563,551,555,557,563,560,554,558,554,562,567,574,560,549,562,563,561,547,561,550,562,561,556,541,576,528,549,537,546,532,545,545,537,542,545,536,539,544,538,541,544,532,553,545,542,541,538,537,539,539,540,545,530,538,557,549,547,531,549,544,534,537,548,533,550,537,541,772,714,771,740,664,764,764,770,773,762,703,771,758,691,748,740,817,706,741,770,738,756,685,739,729,741,783,754,770,783,717,768,734,757,743,739,735,753,753,726,698,714,724,714,721,715,739,723,718,713,730,759,733,730,712,736,731,710,721,725,736,704,722,761,728,733,716,719,711,722,707,691,721,730,737,718,735,756,715,719,663,701,693,685,646,717,703,662,691,705,674,742,708,666,694,693,668,695,655,719,705,690,681,643,693,695,680,669,715,684,671,726,724,688,713,706,670,646,665,687,683,646,603,619,629,623,603,618,607,629,605,603,618,620,615,620,611,610,609,613,631,605,631,584,594,604,611,661,630,622,636,609,625,624,609,619,625,609,612,643,615,619,641,617,630,617,613,624,616,581,587,583,595,589,581,598,583,573,570,585,595,594,584,579,573,582,585,587,588,585,569,576,582,582,586,592,591,576,578,572,572,580,595,596,585,596,591,576,559,567,562,565,563,566,568,568,578,575,570,567,568,561,576,577,561,558,565,578,561,582,575,554,560,553,567,562,561,564,575,570,580,569,569,566,567,579,561,542,601,618,628,613,605,603,608,614,615,605,616,601,616,615,610,602,624,607,600,604,601,607,601,597,599,595,615,606,588,609,619,603,607,606,599,634,631,614,602,628,586,608,602,599,608,607,643,637,617,632,645,646,633,639,622,636,647,649,642,666,639,621,662,642,633,638,630,632,659,661,640,642,627,644,645,620,643,647,646,641,647,639,637,632,671,622,655,651,732,756,692,708,743,739,713,699,703,718,736,729,730,731,710,734,699,705,739,742,701,714,724,685,688,715,694,705,742,739,710,695,765,752,728,747,727,682,757,736,670,675,654,698,689,730,719,731,732,721,687,726,722,709,697,709,707,707,721,715,721,721,709,737,734,710,724,693,716,711,693,707,728,720,714,720,709,694,711,704,715,711,732,724,696,705,710,695,694,717,681,705,690,677,706,695,685,719,694,699,677,702,686,708,714,704,702,693,687,678,705,704,705,682,671,689,674,684,663,716,701,693,682,683,679,730,656,680,692,718,688,727,640,712,741,655,666,642,671,772,653,672,676,679,686,694,727,706,634,634,699,682,733,689,732,684,725,652,688,692,712,634,668,633,694,744,660,660,637,651,633,645,675,629,634,625,639,673,630,645,655,629,645,632,668,650,629,650,645,672,667,655,655,647,662,656,649,657,642,649,662,683,674,642,651,646,661,635,643,607,587,577,605,604,600,610,608,599,591,597,601,591,615,612,587,592,591,610,595,592,615,594,615,589,603,617,603,618,592,603,588,583,602,604,603,571,608,602,568,596,586,614,593,590,592,610,593,596,598,584,562,563,587,567,571,588,565,566,569,569,581,584,588,578,589,575,591,569,572,572,590,567,576,581,581,583,588,571,580,575,584,593,574,580,575,587,581,588,589,587,580,573,564,556,553,550,556,567,538,548,558,556,571,550,551,551,553,544,559,558,546,552,553,540,553,567,552,563,544,554,563,556,547,562,562,555,548,548,561,554,546,567,538,679,699,672,652,741,654,666,674,683,672,658,680,707,704,685,657,655,669,640,686,674,662,701,637,610,667,679,680,677,677,689,693,672,685,705,656,651,713,658,640,628,642,613,637,623,626,619,637,651,638,624,613,650,619,629,652,645,650,645,623,641,638,634,622,601,635,624,638,644,631,642,642,639,644,634,623,636,642,643,622,641,630,626,630,598,578,590,595,578,569,575,579,580,564,563,569,570,575,557,574,578,578,584,585,563,584,568,556,571,589,587,577,574,570,574,562,564,577,574,579,581,573,571,576,577,573,570,562,544,712,704,783,684,713,689,716,641,770,743,695,702,704,697,781,707,694,741,703,692,705,724,678,716,678,741,742,773,690,723,699,705,767,702,747,739,698,708,725,720,665,738,697,727,694,713,724,681,787,741,722,740,714,709,711,751,718,727,753,701,716,714,723,735,729,723,705,736,723,731,723,732,733,735,717,714,722,722,711,733,707,737,709,742,699,685,717,644,663,724,715,694,691,671,672,671,704,666,674,698,675,670,693,692,683,712,701,720,679,650,684,658,682,670,668,698,676,672,680,664,687,731,681,674,694,682,680,661,676,707,624,617,620,624,617,612,608,626,614,602,618,603,591,609,642,637,627,614,596,614,646,597,622,624,629,601,628,616,620,626,610,600,583,614,628,597,600,639,593,604,638,621,600,581,579,562,565,592,576,573,577,564,571,575,569,579,570,571,577,571,559,575,573,571,565,578,578,579,585,558,556,561,566,571,569,569,579,565,590,580,594,583,580,566,563,567,576,572,586,580,580,563,573,576,574,575,577,576,714,698,694,700,688,693,684,704,727,692,730,713,686,698,680,662,708,709,689,712,725,692,673,686,706,676,680,668,678,722,720,720,659,702,711,698,631,682,678,712,676,671,692,696,706,702,682,694,694,669,690,671,708,694,694,707,686,693,693,662,702,709,668,676,685,703,712,688,684,685,679,692,685,696,679,695,696,684,657,674,683,675,685,678,691,700,668,675,692,667,685,714,715,697,687,682,653,691,676,695,667,677,669,688,651,679,691,717,704,660,693,701,663,681,686,692,677,700,660,679,682,673,617,599,600,615,615,593,609,602,596,627,600,631,605,612,623,644,587,609,601,609,608,630,603,579,588,597,610,604,595,602,667,640,598,607,639,614,591,627,600,616,599,596,576,622,546,558,571,552,550,540,542,549,558,567,548,556,545,555,545,574,559,548,562,555,543,565,531,549,549,558,560,564,552,563,552,558,570,556,550,540,560,565,532,504,507,504,499,483,502,496,510,492,486,513,502,504,511,499,503,498,494,510,498,507,500,500,493,497,489,494,499,500,515,488,509,492,497,515,506,501,510,506,495,521,499,513,508,506,507,499,500,513,516,493,510,502,511,504,498,507,508,513,504,496,515,496,507,517,518,503,490,514,511,497,513,504,497,514,492,501,498,498,508,506,507,501,493,530,506,533,519,502,515,501,503,510,504,519,523,527,503,522,515,517,502,528,517,524,523,521,514,503,515,511,516,506,508,512,514,519,502,508,532,516,526,511,532,525,500,528,562,565,567,569,588,569,569,553,563,561,561,562,557,575,577,556,541,555,545,555,560,578,584,567,564,564,562,578,563,568,567,568,581,578,581,548,587,560,559,574,567,579,525,606,597,601,603,587,613,591,590,598,603,602,593,600,579,597,586,594,599,606,588,579,578,590,590,614,599,597,592,605,606,589,586,589,596,595,598,596,593,589,579,605,591,584,585,657,699,702,673,653,680,691,694,684,672,680,689,678,672,690,737,662,656,693,719,694,677,681,704,689,661,678,712,675,694,700,678,671,708,714,704,673,698,702,678,694,652,610,613,637,614,644,632,652,610,601,634,640,652,619,643,625,639,618,594,620,623,626,649,610,636,625,616,625,625,628,623,631,605,644,619,617,651,612,627,620,622,618,619,622,592,574,584,580,571,584,573,573,584,592,589,573,599,593,578,582,577,584,582,571,578,568,571,569,600,590,568,589,577,591,586,582,576,573,578,580,564,591,562,559,558,567,553,545,569,559,571,551,567,570,554,562,565,569,559,563,574,560,553,557,560,559,567,563,557,555,557,560,554,564,567,564,551,567,562,556,564,559,556,534,562,558,565,566,557,550,563,564,562,545,552,565,550,550,558,558,564,557,551,538,558,564,555,554,549,554,545,554,551,542,550,552,543,553,560,564,560,550,559,550,553,550,562,574,588,573,561,561,565,582,580,558,555,573,581,565,571,582,570,575,582,573,571,567,561,572,571,571,586,579,561,571,569,558,581,580,551,575,572,559,551,569,590,587,569,588,598,600,599,594,583,589,599,609,595,592,590,603,596,589,593,586,594,609,596,600,592,594,595,578,602,589,587,602,595,600,588,603,599,608,606,613,581,608,600,598,596,592,589,736,717,712,736,711,706,728,718,707,706,712,723,698,718,717,746,722,717,720,714,743,725,748,740,715,736,731,702,732,734,717,703,757,711,734,688,766,621,640,617,619,637,610,601,597,648,609,628,599,628,600,583,613,627,636,607,619,595,624,643,604,627,590,614,625,612,619,625,612,615,568,618,640,609,621,627,614,606,620,604,616,601,593,608,607,550,576,555,573,561,573,555,572,531,564,587,550,593,571,531,572,553,584,577,549,545,554,552,580,579,547,553,572,557,547,577,558,560,563,566,571,567,562,539,565,557,541,560,544,567,546,707,713,732,736,699,716,722,735,709,739,698,713,740,709,720,697,727,721,769,720,699,709,710,728,740,731,749,691,713,730,725,731,706,719,698,704,714,711,745,701,732,665,678,669,665,676,676,687,662,680,688,638,666,684,671,665,678,673,673,682,659,673,684,631,659,714,685,704,659,696,690,679,704,670,661,640,703,674,645,673,679,692,700,671,683,626,600,604,592,607,592,583,594,599,617,603,586,613,616,619,593,600,618,592,590,603,594,610,591,609,610,590,600,600,588,610,584,599,610,614,603,604,609,598,598,604,635,561,559,554,560,554,555,572,565,555,564,569,581,547,580,554,553,548,560,567,547,559,575,558,558,577,552,570,575,563,567,555,560,549,562,560,559,558,560,562,555,546,574,576,568,578,572,558,572,563,566,563,542,561,582,576,577,563,563,569,551,569,562,576,575,562,564,565,561,570,574,579,570,566,568,564,553,576,559,552,574,571,564,563,568,548,639,606,603,642,659,657,621,582,571,594,593,635,592,643,594,623,621,590,629,623,599,631,621,610,635,618,639,602,622,598,607,613,605,664,627,590,591,639,624,647,613,588,616,620,554,747,756,738,720,724,706,727,731,738,740,728,750,774,743,732,751,738,723,756,768,731,781,765,744,743,723,734,764,714,733,725,705,732,756,782,752,729,736,720,746,736,730,798,673,683,681,686,672,702,675,689,696,673,683,664,660,673,715,680,680,684,690,671,663,687,704,698,724,694,662,660,698,661,648,669,678,674,677,667,671,669,689,694,651,596,615,585,601,597,587,594,605,592,593,600,588,611,583,599,605,613,608,613,598,604,599,619,581,609,616,589,605,596,596,603,597,628,601,598,598,585,591,596,651,660,670,671,672,648,637,672,687,657,675,678,666,662,671,700,646,676,676,658,677,664,663,686,661,672,664,687,660,679,676,649,664,640,683,683,681,686,651,656,662,673,675,705,609,590,584,601,585,611,583,574,587,605,603,591,595,582,595,592,591,586,575,591,590,587,586,601,589,604,587,578,592,592,597,581,582,587,594,583,583,589,599,595,584,594,582,590,572,545,531,548,513,537,578,525,544,548,564,569,542,526,558,533,521,533,553,539,542,545,537,526,540,553,545,553,557,558,538,532,543,532,538,541,558,533,561,541,558,549,554,549,534,592,753,745,727,771,743,731,763,739,745,715,749,729,737,756,752,751,730,745,699,723,704,705,743,689,722,718,747,727,756,737,760,736,724,751,754,724,758,758,728,725,738,735,730,737,722,741,729,703,721,719,735,715,719,733,733,731,728,720,729,740,729,719,742,757,731,720,721,721,740,733,753,725,737,727,733,743,747,728,742,710,699,678,656,661,677,661,664,653,638,695,679,672,685,648,650,686,663,656,674,656,646,660,650,662,653,652,658,659,684,663,673,661,682,668,662,713,682,661,670,697,686,684,693,715,683,664,646,583,574,583,594,575,592,586,595,582,586,586,554,577,577,573,567,586,580,581,577,597,588,587,579,587,599,579,570,589,608,582,583,569,603,601,570,597,580,592,588,567,587,598,583,548,728,687,713,673,714,714,692,713,700,684,695,697,703,692,699,675,699,708,687,693,689,703,705,713,700,714,691,705,675,714,704,713,708,699,703,704,674,699,671,716,706,725,743,689,682,690,672,671,678,696,676,685,676,682,665,676,669,696,681,675,691,675,689,684,670,668,662,688,683,680,691,689,698,662,693,690,681,671,690,679,684,681,698,692,652,692,724,683,668,713,696,740,760,706,764,718,743,700,769,713,680,719,707,679,698,737,716,708,703,676,697,699,728,700,720,730,650,718,691,681,751,710,673,691,693,714,701,746,646,714,715,710,738,710,706,737,720,700,727,711,714,712,710,704,702,719,726,701,699,696,689,720,720,704,714,709,685,706,734,698,710,691,702,724,705,718,723,687,709,707,724,713,716,686,721,688,690,688,689,714,693,697,678,682,692,720,698,684,717,713,669,708,698,687,679,712,713,678,706,751,691,684,677,697,683,693,707,704,701,699,703,695,698,699,679,686,688,647,667,750,738,642,714,681,674,670,682,706,733,644,702,614,709,653,691,675,741,671,678,677,651,673,669,640,689,648,730,639,691,668,683,655,698,697,626,669,688,737,639,675,683,668,669,661,641,656,665,633,643,647,677,692,655,657,652,629,642,657,624,663,661,651,649,666,670,670,666,639,654,635,616,651,644,670,651,656,639,622,655,677,663,660,642,672,643,671,658,614,647,604,586,593,589,582,571,569,568,575,589,584,600,597,584,554,580,587,582,575,569,584,577,572,575,581,578,581,587,598,572,592,583,570,565,590,563,583,571,576,571,587,593,602,587,582,620,676,684,724,641,673,696,649,681,630,680,669,723,680,633,699,699,742,682,694,721,680,718,709,643,778,705,698,742,672,705,701,725,769,683,733,718,615,725,725,706,715,699,678,708,709,707,717,720,714,682,700,694,714,708,707,719,703,694,702,686,700,688,683,735,692,709,710,714,704,708,713,699,717,685,706,713,706,688,702,707,685,714,724,677,713,619,640,661,667,660,638,622,649,646,651,658,636,651,646,676,635,606,662,620,607,636,646,659,624,661,658,617,649,644,651,640,607,606,623,649,631,688,580,567,580,600,577,582,585,576,595,581,594,599,580,573,602,583,559,584,575,580,585,570,583,570,593,597,588,591,590,590,595,583,560,575,587,584,590,590,559,665,684,629,660,669,665,632,700,601,649,622,661,710,654,717,678,672,680,649,613,702,631,643,658,591,662,639,644,665,639,665,654,702,647,659,633,682,643,708,670,677,638,720,674,678,716,651,656,651,638,644,625,617,688,664,646,645,648,646,623,641,670,622,653,670,635,636,649,649,655,619,660,650,637,637,616,624,660,647,643,661,628,640,640,626,635,647,583,583,588,566,580,581,598,571,587,604,608,566,586,590,586,600,592,586,572,571,593,599,579,586,584,593,574,586,596,585,565,584,589,581,597,580,612,584,592,581,596,593,591,582,624,518,512,528,528,527,526,525,530,528,523,531,528,521,512,529,535,545,527,531,529,541,532,550,524,530,544,525,529,521,542,540,530,521,536,537,538,503,526,512,523,534,528,551,531,538,520,542,541,531,528,525,547,515,546,536,544,533,552,534,528,533,532,536,532,522,527,534,529,540,535,519,519,536,526,536,547,527,537,535,535,540,559,552,559,556,552,559,555,537,550,555,548,543,552,541,559,542,549,537,566,549,542,550,552,549,559,541,547,549,546,535,544,538,545,538,543,550,538,548,545,543,540,551,543,540,680,639,662,608,672,669,613,655,624,609,662,609,618,681,635,665,683,629,703,679,649,644,697,690,652,622,683,636,646,611,650,675,617,635,635,622,639,669,581,630,634,632,630,666,573,633,576,578,591,582,588,570,586,591,587,582,602,567,587,606,592,591,594,604,571,601,577,608,579,590,603,602,595,594,580,564,575,602,598,576,574,582,589,571,575,600,587,574,577,591,619,589,646,617,701,614,636,639,611,614,622,611,591,573,610,637,632,610,581,597,667,663,603,608,584,644,631,600,632,602,602,620,661,660,614,607,643,631,565,576,577,561,556,558,575,578,571,578,592,562,556,568,589,595,585,565,553,576,568,568,587,552,566,570,569,564,594,571,544,591,577,556,575,580,582,562,586,579,594,593,557,562,550,574,573,549,562,539,551,560,577,564,550,560,566,548,569,545,535,553,558,534,543,549,541,578,535,552,554,579,555,553,547,569,559,558,573,564,534,545,558,546,552,532,582,566,541,557,546,568,565,564,560,549,556,572,576,571,551,547,570,568,551,555,580,549,568,568,555,555,556,564,577,572,583,566,564,570,568,586,580,564,561,553,549,578,569,556,557,572,549,572,556,566,561,572,563,689,700,708,676,704,672,691,693,710,712,674,723,696,689,707,720,675,682,687,675,708,693,688,679,704,705,688,700,696,694,695,716,684,686,701,706,687,694,699,684,688,685,698,640,643,658,660,677,658,663,665,671,655,670,664,672,668,669,645,649,672,705,665,673,663,657,670,663,662,681,667,678,658,639,667,679,666,659,681,662,580,593,618,608,570,558,580,583,610,571,617,603,600,562,617,575,585,638,578,621,632,596,562,587,575,600,610,597,582,602,583,608,600,599,601,581,605,568,574,597,587,592,605,585,599,652,683,668,681,676,668,694,666,654,687,683,693,698,673,678,684,700,690,678,681,662,678,682,682,697,691,707,693,663,684,701,691,691,687,706,670,675,683,690,653,655,665,674,658,652,657,643,668,668,671,667,660,660,662,672,657,664,673,673,667,657,679,662,655,670,650,654,679,676,664,667,678,669,647,657,652,643,662,662,662,668,644,670,671,667,694,643,638,646,634,625,661,648,644,626,619,621,609,655,655,622,652,617,626,634,663,621,621,627,634,653,607,615,646,643,669,638,642,632,653,624,648,657,667,610,650,631,632,661,660,631,649,656,651,627,629,621,612,694,740,717,715,704,733,716,730,745,765,711,743,765,701,733,737,695,718,718,733,734,752,731,745,740,698,736,755,742,726,733,671,713,759,722,761,719,728,734,727,775,719,704,695,687,712,696,732,688,722,728,699,725,747,735,696,762,738,707,740,712,737,694,734,699,705,680,751,705,707,748,698,701,748,749,744,691,697,738,711,752,718,702,723,659,644,646,652,635,632,657,663,677,641,646,654,658,652,646,658,644,656,642,627,651,684,649,653,648,630,638,628,677,655,641,652,664,635,678,670,657,621,645,640,688,625,662,634,682,654,604,665,647,603,633,632,610,598,613,638,618,648,631,630,663,638,600,683,602,635,665,625,624,654,618,602,634,607,657,638,624,667,578,672,614,604,654,638,610,625,613,657,615,611,677,669,674,648,683,676,666,673,661,682,673,667,668,665,674,674,650,658,676,653,662,666,669,650,661,672,677,667,678,671,667,670,694,683,655,667,667,663,663,685,657,641,572,576,550,581,597,591,589,556,569,573,582,601,571,570,554,572,579,593,580,580,586,548,566,578,580,570,559,583,574,572,552,567,588,569,566,558,588,592,583,618,567,569,567,565,546,574,574,575,556,595,564,570,565,577,583,550,566,587,559,572,574,575,569,571,568,561,563,560,560,580,571,580,574,585,572,571,577,588,595,571,557,556,568,573,570,565,558,561,572,568,553,570,563,559,558,559,556,557,557,551,560,565,577,561,566,560,558,559,559,561,556,564,559,558,575,562,542,576,557,561,557,551,567,564,540,573,573,556,569,575,563,587,577,577,581,567,563,578,570,571,576,565,558,583,565,580,560,569,576,574,556,581,573,569,574,573,566,571,591,574,580,569,585,557,574,576,561,604,542,547,556,538,550,540,559,532,557,534,563,557,558,544,559,562,539,553,554,550,550,553,556,554,546,544,554,547,554,547,552,558,533,571,550,550,542,550,553,544,543,553,530,727,762,721,740,704,733,712,702,729,750,730,745,753,743,699,716,779,718,740,723,727,738,736,744,708,727,732,756,727,749,740,721,723,707,717,724,709,734,748,716,684,755,707,704,698,706,708,703,735,710,714,690,707,690,691,734,692,708,716,717,691,691,674,692,686,684,701,702,741,708,683,700,699,719,730,707,703,700,697,694,698,703,667,711,712,715,662,694,697,696,709,693,710,671,670,693,736,665,716,711,694,685,660,700,665,695,672,661,709,686,696,676,711,659,649,715,671,698,687,666,680,734,694,683,658,745,580,595,602,587,598,630,586,603,617,599,616,576,598,623,617,591,594,571,595,597,603,608,589,621,592,575,574,644,592,575,613,590,592,608,585,629,602,603,601,566,579,537,569,597,641,585,629,602,618,617,615,636,543,539,604,605,611,554,573,567,628,597,626,654,561,585,603,563,599,616,572,532,588,620,591,624,592,613,585,597,572,588,535,634,565,545,553,556,559,542,543,544,558,563,569,552,531,570,546,552,571,567,531,541,555,536,567,553,570,544,552,544,548,555,548,560,556,540,542,540,551,556,546,551,516,542,567,565,547,537,544,557,556,518,567,542,572,558,553,539,559,553,560,553,550,541,542,550,559,569,560,539,544,548,558,554,563,550,556,551,569,559,542,547,543,565,572,575,557,519,553,543,540,558,545,537,553,548,571,548,539,554,561,549,561,552,544,534,551,551,569,546,549,546,552,554,544,552,564,547,562,548,547,551,544,538,535,548,550,551,547,550,563,527,694,717,705,749,798,775,723,724,771,775,718,716,695,761,768,770,745,771,746,749,735,786,782,727,701,749,767,748,784,722,664,717,703,772,706,750,728,743,785,715,734,750,692,732,766,761,718,643,715,739,752,748,712,746,731,730,699,734,719,731,722,726,723,737,728,730,726,717,711,721,677,715,724,698,688,712,726,701,723,707,726,722,734,723,718,709,742,735,716,719,689,677,683,690,711,704,693,684,705,712,727,684,724,681,708,669,705,688,691,718,670,703,672,672,719,718,710,705,707,731,707,713,708,708,685,676,718,707,682,652,642,659,647,639,661,673,648,653,614,646,634,635,681,646,666,638,631,639,651,643,636,612,640,610,633,629,652,638,645,636,646,657,636,628,641,676,639,655,655,637,671,641,686,587,601,580,593,599,600,610,594,595,601,595,595,591,604,597,590,577,620,591,605,592,593,606,606,599,608,601,598,594,597,603,598,603,616,610,607,599,589,603,604,595,610,599,594,594,596,587,603,562,550,553,559,571,559,558,553,559,565,546,555,546,562,558,562,548,544,556,564,555,556,550,558,563,551,561,564,558,549,548,564,550,571,554,558,556,562,553,547,547,575,552,565,560,576,618,708,692,672,676,677,698,682,668,653,682,672,679,710,660,690,655,678,676,672,666,695,693,664,669,697,675,697,679,666,703,639,630,680,638,652,659,682,659,657,613,617,616,622,611,616,625,629,607,621,614,638,600,607,626,624,617,618,631,617,615,600,625,616,623,626,611,625,616,618,618,616,614,616,621,605,625,603,625,598,611,638,657,677,612,664,640,628,605,645,577,555,617,589,640,574,586,570,568,577,594,591,672,599,614,608,590,616,615,550,643,608,643,591,607,623,592,622,620,572,601,614,609,624,714,707,705,702,699,714,703,707,710,690,710,696,679,722,705,710,681,694,707,694,709,721,716,694,693,699,686,699,676,707,714,713,692,692,695,717,722,695,708,692,699,746,629,639,620,593,643,656,639,640,589,592,663,629,652,647,597,668,672,610,645,681,631,635,659,600,614,700,622,639,611,631,600,565,669,611,650,668,576,624,618,625,654,645,629,654,628,633,596,658,601,589,607,620,600,627,594,634,591,623,586,612,622,611,595,604,615,624,608,628,596,596,615,607,586,606,615,613,611,629,600,602,620,626,596,605,601,596,596,613,591,601,601,577,561,580,591,581,596,579,582,580,567,584,581,582,587,593,584,572,583,564,578,589,577,577,573,584,580,573,588,579,595,580,576,572,583,577,581,586,579,581,580,596,561,548,549,552,560,573,563,548,557,544,548,550,543,539,557,549,551,569,552,557,548,549,552,553,546,542,552,563,539,553,537,561,558,554,556,549,557,543,550,555,587,581,586,601,612,596,586,602,610,604,591,594,591,576,605,592,584,582,598,584,594,583,605,582,595,576,583,599,584,581,593,587,603,579,589,604,608,605,587,585,592,601,571,564,710,683,677,694,710,702,707,682,704,692,664,706,664,680,711,691,687,699,687,691,686,696,695,664,677,694,694,687,679,681,691,716,666,674,687,692,697,728,685,675,668,666,706,694,697,632,618,620,591,612,627,611,626,603,605,604,592,623,580,615,601,573,607,580,614,590,605,625,638,598,591,615,588,598,596,625,603,585,617,628,605,671,685,586,659,651,702,685,668,703,631,654,612,660,656,634,619,623,679,645,623,621,661,660,634,648,605,628,670,701,620,673,654,599,655,679,623,655,611,605,658,667,651,671,646,644,662,647,684,651,659,645,648,674,664,649,655,661,646,668,666,653,678,672,662,647,682,655,667,664,653,659,669,659,672,660,636,667,664,652,659,657,663,679,628,620,618,602,627,630,623,620,646,632,620,627,639,645,625,632,625,632,637,631,634,622,629,654,623,616,612,625,631,636,597,619,633,602,616,607,613,634,637,651,640,617,657,628,581,589,589,583,576,589,579,610,595,585,593,574,602,590,584,582,571,598,587,592,584,567,580,581,588,572,592,614,576,598,601,595,582,564,596,591,584,610,609,622,589,598,595,596,584,617,618,604,605,610,598,611,631,616,615,621,607,601,614,612,591,603,624,595,603,621,598,619,608,633,629,629,612,603,632,629,617,604,602,609,626,663,664,666,636,675,677,650,658,654,699,651,658,668,638,683,642,665,659,664,674,638,690,642,671,664,667,691,658,642,679,647,663,664,652,643,633,679,664,660,679,646,646,662,647,716,676,648,638,669,661,658,638,655,670,667,656,669,662,672,654,661,655,662,661,659,650,662,669,663,672,646,665,671,641,660,671,673,653,640,646,652,662,664,653,698,677,710,667,660,707,698,667,688,683,659,696,682,682,703,702,726,663,668,725,702,637,692,680,679,707,683,653,678,643,672,692,704,692,705,695,697,682,716,671,690,699,702,677,652,628,640,629,640,618,617,613,635,613,595,616,611,645,608,619,607,616,600,649,616,601,650,615,612,636,651,613,613,622,634,597,621,624,625,623,640,628,639,585,568,568,577,574,582,568,573,568,575,579,598,574,585,584,582,579,585,564,574,584,584,589,595,571,579,580,576,586,590,562,565,583,563,580,589,575,571,574,577,581,555,554,564,538,559,547,548,555,560,552,542,548,557,543,548,555,553,552,540,561,549,563,557,555,541,565,570,552,550,566,562,567,554,551,560,551,553,554,558,548,555,549,568,558,558,563,567,566,559,556,565,547,560,554,564,570,562,556,574,578,561,566,576,554,574,582,569,568,560,559,584,570,556,556,556,565,554,551,572,563,558,550,564,560,548,567,533,593,587,602,599,591,585,593,588,601,598,586,601,588,610,588,598,596,586,578,605,596,608,599,605,594,603,584,601,591,607,587,595,593,599,599,588,581,591,584,594,592,588,585,592,600,601,603,596,575,563,576,580,583,570,569,576,568,577,572,573,571,572,557,567,577,557,567,579,557,564,558,581,567,560,559,551,570,571,558,573,563,564,555,575,581,573,573,570,571,566,559,637,641,644,615,632,642,593,588,651,641,662,634,611,635,660,652,675,672,643,646,673,656,648,630,623,670,643,656,633,612,667,661,638,626,617,640,622,627,625,643,689,645,678,667,661,564,692,680,677,677,673,678,651,682,684,678,670,676,685,696,668,695,664,685,685,697,673,686,682,691,673,667,659,659,695,696,702,691,674,677,671,689,682,715,775,794,783,725,746,780,731,776,765,766,726,738,716,778,789,710,716,746,739,746,732,727,737,737,754,759,780,745,750,726,763,778,756,708,765,697,762,736,771,748,732,703,696,712,699,753,696,737,728,720,717,702,701,738,721,713,702,727,701,707,747,724,693,724,711,744,719,701,708,711,743,718,725,716,689,749,625,634,639,638,645,642,650,616,635,648,656,653,616,653,661,643,656,667,624,647,660,643,634,661,619,617,619,633,651,624,663,654,652,668,626,632,646,667,660,627,736,734,735,735,706,724,667,754,762,735,693,724,731,723,694,755,717,735,692,738,731,665,737,673,753,749,761,687,679,722,715,712,682,759,705,682,745,752,676,736,731,751,710,680,738,765,611,695,708,716,722,705,703,711,711,693,705,708,703,680,700,691,693,716,706,722,715,694,726,712,715,707,697,682,700,721,717,733,693,719,689,691,723,679,711,675,761,656,670,649,663,666,674,660,683,661,660,690,687,680,672,665,670,654,652,670,663,694,678,643,661,647,688,652,636,679,682,643,693,661,674,644,649,641,663,699,658,688,660,645,658,641,643,651,655,642,667,655,638,639,647,640,634,653,651,655,664,652,636,631,656,646,643,652,645,656,643,645,650,665,644,632,640,621,663,647,645,654,634,636,645,632,646,644,648,645,644,648,654,642,635,611,631,612,616,601,608,609,607,623,613,625,614,594,621,628,615,606,592,628,615,606,613,616,616,595,604,612,615,618,600,610,615,605,636,598,633,590,618,597,623,606,631,649,583,586,583,586,575,575,563,573,601,581,596,559,579,588,583,582,577,559,582,573,581,589,561,566,579,575,571,591,566,583,584,576,577,599,579,576,583,582,580,567,556,573,565,588,589,585,600,555,549,552,551,538,562,555,546,554,559,533,546,547,543,552,550,540,538,541,551,543,554,548,552,543,522,536,552,538,524,539,551,550,546,554,545,551,535,560,545,549,574,603,602,613,610,649,595,618,620,619,638,613,649,612,633,609,604,603,643,626,620,600,637,610,594,644,660,620,624,630,603,670,624,585,566,600,685,623,605,540,636,566,562,600,598,593,601,583,602,595,597,574,590,592,599,601,582,596,588,582,573,585,582,602,584,590,590,592,574,584,601,583,599,587,580,562,582,592,594,603,583,582,592,601,594,582,590,584,558,636,675,669,634,624,593,673,567,600,698,683,607,595,618,660,627,640,637,615,572,622,626,648,652,628,636,634,696,642,632,563,680,623,689,687,587,583,679,593,682,579,596,577,594,585,582,590,582,583,572,571,583,598,591,572,588,586,596,575,588,568,582,592,586,586,595,583,579,567,587,595,605,589,573,575,562,594,579,571,598,575,564,580,581,583,608,678,674,638,615,725,648,686,678,670,649,648,680,743,718,634,696,701,650,642,660,698,693,672,657,744,655,712,700,676,708,648,674,635,643,685,669,704,702,651,552,675,665,669,683,668,693,664,661,677,662,669,659,683,677,675,686,671,652,672,640,674,654,643,674,689,655,664,675,680,679,684,660,669,662,666,647,681,673,682,678,678,690,677,665,669,636,688,695,721,676,644,623,675,693,715,656,702,676,665,667,682,700,668,658,669,676,702,666,665,684,699,701,711,649,668,670,675,654,654,634,655,651,703,661,655,649,674,653,675,672,709,626,613,620,609,606,612,647,628,611,614,605,598,593,616,605,601,623,604,631,625,626,636,617,623,593,627,628,629,628,625,612,613,636,614,617,636,608,614,608,620,599,662,582,570,586,574,578,574,565,571,571,585,573,575,583,569,567,589,583,583,568,590,587,583,585,573,572,582,577,575,569,579,587,590,574,570,585,569,566,566,570,580,573,569,623,654,648,661,644,624,650,657,650,655,595,655,616,609,661,625,608,652,635,649,667,651,698,657,637,630,667,655,617,660,617,647,640,650,638,618,678,684,686,681,670,669,668,687,675,672,673,677,667,684,675,670,650,667,658,660,673,670,674,681,678,660,700,678,675,688,685,666,673,678,702,655,682,674,661,680,681,672,686,728,691,688,739,726,723,729,687,711,712,701,710,727,748,681,723,733,712,726,717,716,688,742,705,716,717,692,707,746,739,699,716,677,727,740,762,709,722,674,719,744,737,725,665,634,646,674,664,673,675,654,633,626,689,631,643,648,657,663,652,642,640,653,667,640,668,668,659,645,681,643,633,632,658,647,662,642,635,675,646,608,666,652,669,625,626,595,602,611,606,612,590,612,607,589,602,617,616,605,600,606,598,603,609,594,618,606,617,613,624,607,618,615,608,606,609,605,597,603,630,609,584,598,576,570,576,538,578,565,555,577,578,564,554,556,561,553,566,558,568,567,576,556,555,552,563,559,565,558,574,558,575,565,567,570,572,565,567,554,577,561,554,570,558,563,565,562,553,612,614,621,622,601,593,612,610,602,600,619,614,613,612,630,608,604,613,607,618,603,607,626,606,607,615,599,596,594,595,613,625,611,624,620,610,618,618,598,617,608,635,601,620,634,649,641,629,661,645,637,658,624,651,640,635,647,660,652,629,630,640,632,651,628,647,655,642,639,654,658,638,635,633,629,625,647,680,649,660,640,640,631,667,653,661,655,660,634,605,736,760,786,712,750,751,701,726,770,732,733,743,759,741,787,727,750,739,731,726,735,764,770,770,750,670,765,737,739,778,748,688,732,712,743,711,719,806,714,718,718,709,722,713,731,679,715,720,720,723,701,719,704,736,726,729,717,697,700,706,715,708,735,668,721,711,713,737,696,736,729,693,715,694,681,692,709,702,754,747,729,717,648,644,652,631,682,636,642,650,617,639,655,652,640,661,634,655,651,653,660,619,631,631,654,661,614,659,646,639,641,639,635,630,632,635,635,626,661,651,656,656,617,564,682,642,671,595,648,676,609,674,637,596,610,601,585,596,648,648,645,600,620,598,692,687,643,595,627,640,531,647,628,631,651,625,585,669,650,599,618,632,604,652,559,600,574,595,578,593,578,554,576,584,570,580,588,577,571,558,560,578,579,596,564,587,584,588,590,579,592,578,572,564,601,582,583,561,556,581,599,550,559,574,562,586,588,565,609,617,646,566,651,639,631,598,641,630,688,592,629,650,577,624,594,680,644,660,601,654,609,647,616,659,625,637,615,603,628,671,584,643,666,608,619,603,639,529,584,593,578,559,570,605,573,578,587,577,567,571,605,563,572,569,556,574,570,577,578,600,570,571,587,584,590,598,592,571,599,564,562,579,563,577,585,578,576,550,586,542,579,548,574,563,556,581,579,602,562,568,567,554,564,567,557,592,564,578,564,565,563,571,566,590,575,577,581,569,571,554,588,538,595,581,586,563,563,595,586,573,560,566,561,530,669,666,681,675,667,666,651,662,652,659,662,646,687,663,654,664,656,683,655,655,647,684,658,663,663,680,665,648,656,661,659,662,681,646,668,643,671,662,762,752,715,774,773,747,764,761,761,798,764,786,735,771,715,732,761,722,755,730,742,751,759,790,757,741,740,737,750,754,787,763,715,755,755,742,716,739,749,759,773,721,748,735,746,749,765,688,707,743,708,687,734,712,664,712,792,681,707,730,722,718,723,698,727,681,736,730,736,701,751,730,669,712,711,711,725,718,703,737,732,735,699,723,724,671,686,643,653,691,676,689,629,659,655,672,688,672,683,624,644,656,671,671,656,640,654,661,692,663,671,670,669,677,681,649,679,650,671,684,650,674,663,665,649,668,643,679,616,595,593,600,596,605,617,607,585,591,601,611,592,586,596,598,619,597,616,613,593,600,605,581,603,595,608,598,596,592,619,579,585,583,609,592,603,614,597,615,593,581,584,587,579,587,584,574,587,589,582,574,583,594,588,591,560,566,574,588,581,586,585,585,555,565,584,587,578,591,567,577,597,567,585,582,573,591,586,579,574,587,581,571,583,562,572,608,609,637,610,629,619,646,650,626,646,620,612,612,587,619,653,629,603,600,644,616,600,635,631,620,627,616,632,637,586,616,603,602,636,610,591,628,589,624,575,786,791,792,789,781,721,745,794,806,789,779,796,767,758,757,800,803,800,756,773,771,789,747,781,791,769,762,730,754,762,810,774,781,776,782,790,782,786,805,750,788,771,791,783,764,775,759,786,840,712,723,730,717,731,755,701,724,732,704,739,734,717,735,745,734,723,737,706,772,719,738,729,737,720,712,727,694,753,688,717,715,720,734,727,722,710,709,757,688,718,695,674,681,670,681,706,676,686,676,706,660,651,675,682,659,667,672,697,675,670,665,669,664,672,670,681,663,652,675,689,683,658,703,706,681,672,667,703,670,674,695,684,670,639,660,636,636,643,659,672,644,648,660,651,647,643,648,657,650,655,642,640,652,660,642,655,623,653,657,664,637,647,647,653,666,668,643,647,652,657,654,680,729,728,710,779,748,742,783,790,729,736,724,762,724,751,766,716,721,736,764,732,727,730,725,716,740,773,741,747,753,715,736,724,768,750,741,774,716,734,711,647,683,677,657,703,635,667,661,686,674,691,665,670,673,668,696,676,687,656,650,693,692,638,673,642,679,667,647,660,628,655,637,667,694,659,676,598,673,681,684,655,654,639,531,528,557,526,537,547,560,529,558,566,582,526,554,517,564,534,559,571,556,546,563,572,583,527,550,544,568,531,558,574,585,536,545,529,575,525,534,577,563,537,524,547,532,523,525,535,519,530,518,526,529,539,517,537,532,531,512,537,531,526,520,534,535,528,528,523,517,518,513,534,530,530,528,523,535,531,523,536,524,524,525,528,636,636,667,638,647,648,668,640,623,650,651,627,634,632,656,635,668,647,652,638,632,646,655,650,624,643,631,650,656,630,643,648,642,638,656,638,641,638,645,617,644,636,613,570,563,554,568,574,545,564,565,547,562,574,557,554,587,582,555,557,562,574,554,542,559,558,568,565,574,542,575,555,559,542,564,575,592,545,563,569,583,540,580,565,552,552,560,552,572,553,566,600,537,563,540,563,569,525,572,562,553,550,568,569,562,562,549,540,550,542,582,571,551,562,552,543,558,536,575,545,551,559,571,533,561,556,579,539,563,558,564,564,570,555,560,560,564,553,543,536,555,559,565,556,549,557,558,551,562,553,552,561,540,569,575,573,557,554,555,561,547,555,566,549,550,567,565,569,564,550,562,553,562,559,577,593,578,574,599,588,589,577,588,598,598,578,613,596,600,581,582,575,589,587,561,605,589,589,599,582,610,592,609,597,587,585,590,586,600,568,587,583,587,588,583,603,557,594,599,614,616,608,585,603,604,598,618,603,593,611,604,595,604,592,624,610,636,595,589,597,581,591,593,616,618,584,597,610,604,576,628,604,611,579,624,613,623,598,582,560,557,550,596,581,540,572,555,566,562,571,567,569,568,565,554,570,578,569,568,570,554,591,549,577,548,568,545,580,567,562,566,576,558,546,582,581,569,597,614,602,578,569,591,592,592,584,588,585,609,594,592,621,581,577,590,578,584,583,576,606,590,603,577,614,581,600,593,598,585,593,597,579,596,605,615,600,607,605,579,600,602,596,570,598,601,583,586,593,595,600,614,621,631,599,624,625,608,632,628,623,640,618,609,613,607,630,633,647,615,609,631,590,632,606,634,627,599,622,627,629,599,622,639,625,628,662,738,731,728,669,697,710,681,698,706,721,696,725,713,705,649,686,733,687,714,686,722,738,714,670,699,699,700,712,704,708,693,682,695,710,711,697,704,738,721,675,741,680,667,681,687,722,753,634,624,619,602,631,623,609,615,586,597,602,593,609,617,623,598,604,637,606,628,595,625,648,606,599,632,617,625,626,599,606,618,626,595,605,610,643,610,635,617,634,613,616,615,633,567,598,597,590,556,590,594,593,594,595,589,582,573,587,564,574,583,593,537,599,606,614,589,607,580,580,575,593,578,605,596,587,584,559,594,602,575,579,577,561,602,525,659,663,664,666,671,682,678,660,666,637,659,674,672,663,682,671,684,679,664,677,665,674,665,659,671,671,646,654,669,682,661,645,654,663,656,695,669,674,677,665,662,663,665,658,659,648,780,716,736,720,745,732,736,744,789,758,779,725,808,712,775,741,784,747,754,680,721,741,750,762,729,746,717,740,731,731,754,723,757,769,791,731,729,734,720,773,732,698,766,701,747,709,719,736,717,702,677,724,732,752,727,703,757,701,704,696,734,684,737,708,728,716,693,715,721,708,730,710,732,738,757,678,697,724,733,716,742,675,730,716,711,757,702,722,706,692,674,641,671,634,653,631,656,633,664,661,635,659,634,636,660,668,644,631,674,667,672,687,672,672,623,622,633,646,641,635,652,630,649,625,645,646,657,662,627,608,577,568,567,570,551,567,575,569,585,594,566,567,574,574,593,568,568,567,560,567,566,574,573,572,575,578,577,573,579,556,553,567,573,562,554,559,573,582,580,576,568,560,564,568,559,637,666,684,660,694,692,655,686,712,666,652,709,631,682,671,672,635,682,645,689,657,688,658,620,653,597,674,663,655,650,648,688,670,714,698,679,684,711,695,668,693,612,705,705,707,685,714,686,722,702,700,687,717,701,708,703,730,700,712,704,691,716,701,693,689,725,685,723,687,717,706,700,711,704,725,725,700,702,668,703,697,691,682,698,694,724,707,729,684,692,713,708,704,683,690,694,699,705,707,708,665,680,719,711,709,686,716,714,688,691,690,724,708,696,692,722,706,699,702,704,693,704,662,692,701,740,693,682,671,746,680,679,687,678,691,675,635,718,691,672,697,686,676,643,723,675,690,666,685,679,707,700,617,662,703,682,708,678,762,624,679,706,661,696,706,706,682,669,661,642,650,648,651,663,688,637,659,650,649,648,629,661,648,650,659,668,658,648,663,670,639,659,649,644,658,654,648,679,647,651,653,676,653,648,656,669,628,641,689,643,669,652,665,659,674,679,660,673,662,647,623,628,688,691,653,701,655,673,655,671,684,658,705,671,692,695,680,677,692,689,691,657,700,671,666,670,646,731,612,600,607,592,619,573,617,597,614,632,607,613,604,609,618,598,600,600,618,614,612,608,617,596,592,595,628,616,618,630,613,627,600,610,604,604,595,642,601,611,596,598,597,647,653,579,596,616,618,650,652,561,619,631,627,582,615,590,585,595,644,626,614,595,633,583,624,605,579,603,556,642,597,572,566,640,640,606,633,614,544,548,589,588,632,582,582,623,646,645,643,662,685,641,669,676,659,647,642,697,634,663,640,672,663,678,679,677,662,650,667,676,642,634,661,691,672,650,650,668,694,674,642,683,695,661,639,695,620,555,568,585,620,577,599,579,573,577,587,600,574,592,558,570,589,574,560,594,558,604,563,582,584,570,594,603,576,602,596,594,588,564,577,592,566,592,598,597,593,561,599,636,586,588,553,648,571,579,565,587,586,582,571,562,582,572,562,587,563,588,578,575,588,610,577,579,589,560,553,572,570,558,580,586,563,557,575,575,578,578,561,584,554,579,566,580,571,577,585,573,616,594,620,626,592,616,589,599,610,603,603,582,610,587,588,593,627,603,594,611,622,611,586,593,616,594,615,607,605,641,588,606,613,617,594,597,618,624,606,599,590,626,589,604,609,589,568,578,563,568,576,590,558,581,576,552,580,586,566,565,553,559,567,584,582,572,583,591,571,555,583,562,578,575,574,568,562,551,568,592,548,575,588,564,567,574,588,573,571,556,567,578,607,682,655,688,655,661,659,660,678,656,687,660,670,663,683,687,635,660,666,660,689,668,663,661,664,651,662,671,661,664,670,673,674,661,641,664,668,676,631,674,678,677,672,669,673,660,656,702,643,649,664,677,627,655,682,637,682,654,655,664,653,642,679,672,693,673,656,686,667,672,691,655,651,659,673,678,660,667,632,643,648,662,651,662,638,721,710,693,715,694,732,679,687,667,675,709,699,699,693,688,686,696,703,706,681,691,705,699,712,684,707,711,687,701,705,690,712,698,679,686,729,715,689,712,697,700,716,662,706,732,707,670,681,709,660,666,708,703,703,698,775,678,710,723,759,671,719,659,686,718,704,725,677,744,669,700,715,709,679,743,701,759,666,682,707,710,688,719,714,691,696,701,668,654,790,739,705,711,679,735,737,705,748,706,723,722,702,715,735,698,727,728,736,704,719,738,742,718,696,727,728,701,702,746,711,735,724,718,669,715,754,704,732,734,748,708,676,724,707,730,725,705,693,737,746,717,725,702,741,692,727,716,735,710,732,727,759,748,695,730,720,709,730,700,699,732,696,739,743,743,708,723,672,688,661,698,707,732,729,702,746,749,722,709,691,691,704,678,695,672,685,659,656,697,672,651,657,657,667,657,691,678,685,686,656,670,666,685,693,663,678,674,666,668,689,663,678,674,664,658,654,677,677,661,671,686,689,684,658,680,650,636,654,636,656,636,656,650,662,650,668,657,645,663,644,659,644,629,646,659,655,633,635,648,655,633,642,639,647,644,631,640,635,656,631,640,636,640,632,648,637,617,582,595,595,616,605,594,596,592,594,595,581,599,600,586,591,595,605,588,585,590,591,565,590,585,601,582,613,602,607,575,586,590,601,599,577,587,589,591,668,621,687,644,696,653,730,660,669,686,655,673,676,665,649,677,625,648,685,660,682,630,671,677,684,725,661,624,684,699,668,707,694,662,637,645,695,668,631,704,600,637,608,602,599,604,592,609,643,628,604,620,598,607,614,633,615,625,624,613,603,606,639,626,629,595,611,611,647,599,606,625,599,620,619,615,608,635,604,637,615,612,628,636,622,590,649,609,569,638,672,621,618,650,624,676,642,641,679,670,700,743,685,740,704,645,658,642,643,686,712,643,633,642,647,633,659,643,703,636,684,708,731,681,688,582,592,579,593,610,650,641,691,669,639,697,730,737,717,711,698,733,719,724,702,761,693,718,714,716,712,726,706,727,730,715,723,712,732,733,683,696,717,715,715,722,696,702,722,731,695,670,734,732,700,705,720,706,702,702,691,707,699,666,669,684,697,703,719,683,686,691,719,720,711,711,690,698,696,688,719,735,715,695,709,727,724,717,690,698,667,705,656,682,726,720,678,672,693,683,703,652,636,611,631,640,610,634,659,623,647,632,669,639,659,600,598,648,626,624,625,649,659,610,640,633,634,684,630,631,618,640,644,679,647,638,626,617,624,668,636,635,626,639,669,684,634,658,557,650,522,591,563,689,643,612,575,625,622,637,605,624,630,659,583,635,605,633,612,643,680,612,643,645,611,640,671,638,709,592,649,610,585,649,602,624,656,602,628,661,618,629,700,693,697,711,685,681,697,684,685,679,690,700,697,657,696,706,709,688,707,730,711,700,717,706,736,693,717,696,685,672,721,711,718,682,724,704,673,689,718,688,726,687,681,702,678,656,668,657,676,660,655,653,696,671,677,671,636,692,669,661,673,675,680,687,646,707,660,654,663,683,664,688,689,657,675,681,655,695,673,688,683,664,668,666,650,667,663,670,650,636,638,657,639,659,650,657,644,645,644,633,638,663,654,653,646,673,637,647,655,637,665,647,661,653,632,624,645,644,646,662,636,647,649,630,647,667,635,653,659,658,638,748,737,710,772,759,745,753,765,764,740,754,742,755,767,756,764,762,771,744,718,715,727,758,722,727,760,707,739,739,741,792,721,728,704,765,749,695,736,737,672,659,677,691,673,627,661,676,710,687,665,670,671,680,678,652,649,678,652,692,679,658,703,666,697,643,658,680,666,661,645,691,664,699,648,663,669,692,711,679,692,676,667,639,745,622,611,635,673,608,668,609,639,660,622,589,678,683,636,627,628,636,656,673,677,642,643,667,673,645,627,634,640,670,686,653,660,637,666,651,612,604,645,616,635,650,650,667,658,668,636,597,541,545,545,565,557,546,565,563,565,551,556,557,558,564,555,556,564,562,567,558,538,550,553,543,541,553,558,547,553,554,536,555,546,558,549,549,559,563,571,551,556,583,568,581,579,565,553,572,562,575,581,573,541,572,576,573,564,550,576,573,569,539,551,560,574,578,561,546,572,565,571,578,586,586,569,560,557,557,561,538,610,627,601,608,613,591,612,595,580,611,608,612,597,621,615,617,615,608,608,624,605,613,601,595,616,607,621,603,618,620,602,613,616,599,620,610,616,612,598,622,599,606,609,647,616,604,629,622,634,605,625,616,622,602,600,642,609,625,625,656,638,629,614,635,622,613,640,629,604,610,609,611,602,625,628,608,636,612,614,608,645,636,634,637,623,625,626,635,615,566,574,589,573,574,560,577,576,592,569,592,581,581,571,579,566,604,567,594,586,591,557,571,593,569,565,581,591,567,576,565,586,558,578,571,537,538,547,552,535,543,535,548,530,538,555,526,537,536,532,550,537,534,543,546,546,539,539,544,535,548,534,559,550,541,536,538,535,549,535,539,550,533,529,525,560,521,524,532,519,535,515,518,541,516,512,542,528,519,530,528,526,513,528,516,514,523,518,528,529,526,541,520,513,526,527,522,525,525,520,528,518,522,540,620,596,605,597,660,640,619,627,619,624,617,579,602,672,616,611,621,621,637,641,598,610,620,615,612,587,608,622,633,632,582,610,593,630,633,576,653,606,609,570,650,603,634,623,660,663,604,589,612,604,603,599,605,605,610,588,601,600,584,611,598,602,601,596,609,595,603,601,610,609,600,599,601,594,618,609,603,601,608,610,592,621,594,610,593,602,600,600,623,580,577,585,590,580,588,591,582,565,593,561,578,577,586,579,575,589,583,576,575,573,577,574,583,596,577,593,579,581,559,581,574,572,585,583,577,577,574,570,567,576,583,549,551,553,569,555,563,556,546,554,561,572,546,555,555,549,553,535,551,564,560,556,552,535,581,559,553,554,553,558,551,563,552,558,556,552,557,556,557,548,548,522,586,604,572,579,591,587,549,581,584,568,581,587,579,587,577,575,560,593,586,574,576,582,590,601,600,583,591,579,576,562,587,575,581,590,585,581,584,568,596,570,584,570,593,589,607,555,556,550,541,560,549,549,541,554,544,549,540,537,566,547,548,541,557,557,543,548,551,554,554,553,550,546,553,551,559,551,559,556,563,538,556,544,556,549,548,553,560,554,563,527,577,600,617,593,584,598,605,602,590,596,628,585,593,605,597,615,612,603,613,616,592,601,613,595,564,592,592,586,615,604,595,588,600,578,598,589,600,615,595,596,595,607,600,610,598,565,597,623,618,605,609,629,596,643,626,620,620,592,633,617,636,611,605,610,609,629,618,606,610,589,604,613,611,618,627,585,602,616,621,605,622,595,610,597,586,615,613,585,596,612,594,596,591,620,607,616,610,609,604,589,629,604,609,614,605,609,598,619,599,625,618,602,597,599,589,615,585,603,611,595,610,616,573,587,601,604,597,583,596,580,618,577,582,571,573,564,569,577,570,576,572,574,590,581,590,574,577,571,572,588,600,588,582,558,579,585,562,583,589,571,579,593,565,576,578,574,576,558,579,580,583,590,567,573,583,575,579,569,586,714,664,672,680,665,682,675,661,672,666,679,659,666,646,660,653,655,661,661,702,669,693,686,671,693,666,639,698,662,677,713,693,661,647,641,657,673,677,670,680,662,670,685,659,684,719,660,662,681,679,667,654,652,710,706,653,644,670,647,676,688,660,683,636,699,681,685,652,688,707,669,652,628,658,709,685,693,675,659,678,684,660,671,677,624,685,659,714,618,609,613,619,636,614,617,608,609,626,620,623,648,608,620,621,624,633,607,623,608,653,623,630,588,633,631,598,613,611,607,626,631,630,603,613,642,615,610,624,554,578,579,569,594,574,592,577,586,549,564,598,583,576,577,579,532,580,606,567,593,553,579,575,561,560,592,569,585,575,553,557,572,570,571,567,598,587,610,718,733,733,715,700,738,698,759,733,710,734,705,695,737,726,711,705,730,701,747,727,713,760,728,747,743,725,704,724,720,733,708,706,746,748,708,665,733,711,713,696,736,752,645,621,621,623,644,617,615,612,637,610,601,643,622,625,627,655,638,625,635,615,639,597,617,612,629,653,627,601,634,632,632,635,632,632,645,602,630,630,632,644,609,635,631,646,604,688,596,570,571,589,579,589,560,571,587,602,592,600,591,596,572,561,588,578,586,557,562,579,576,595,573,553,573,585,581,590,617,550,581,591,545,565,566,567,562,602,553,558,549,568,567,570,557,560,554,561,569,561,560,565,560,568,565,558,558,550,562,558,541,552,567,559,573,559,559,555,552,555,550,559,556,541,567,558,571,563,554,554,559,535,563,550,567,571,567,583,555,547,571,574,570,588,559,581,557,580,567,566,567,588,575,574,548,574,573,580,575,573,568,547,579,553,559,550,554,570,547,559,581,569,550,562,581,565,539,555,552,544,545,549,544,549,557,553,549,564,538,540,547,543,546,533,550,549,540,547,554,555,542,555,547,550,543,544,546,537,547,537,534,548,551,545,546,555,551,553,543,559,551,541,546,546,535,545,533,531,553,539,528,529,531,537,535,527,532,545,541,537,537,530,544,524,527,543,540,539,536,527,536,525,541,542,525,539,543,542,545,540,535,537,526,535,526,533,525,536,539,543,544,520,530,510,529,524,522,529,527,518,532,528,516,518,526,544,516,519,522,524,533,530,530,528,523,520,523,527,530,525,526,524,531,525,520,532,506,519,524,556,635,603,606,616,641,674,606,627,621,593,617,606,595,585,567,614,645,620,600,608,649,617,628,572,628,620,652,622,634,589,637,656,619,597,611,649,611,631,589,668,643,620,640,603,552,785,740,766,770,738,778,795,766,725,744,773,789,754,749,731,722,730,777,769,779,752,754,782,721,775,754,747,762,767,724,792,780,777,734,739,788,768,765,765,760,750,778,784,733,670,685,694,703,669,708,671,669,688,701,666,665,685,692,665,672,721,676,679,669,663,668,689,745,719,670,695,687,696,670,682,694,715,681,673,676,683,672,700,681,711,685,704,701,618,627,638,649,622,638,627,614,638,615,644,598,606,672,620,647,600,602,642,648,628,629,589,617,638,616,610,631,638,588,608,634,622,610,625,639,626,622,619,606,625,626,601,633,587,565,570,567,558,551,554,582,556,552,567,572,576,573,564,546,579,570,556,558,585,549,565,568,563,575,563,585,563,564,570,563,563,566,571,574,561,553,580,563,553,570,561,563,565,546,588,655,676,661,679,664,681,682,683,676,647,626,651,659,659,665,665,678,679,671,656,682,673,691,689,675,680,667,706,680,686,673,660,633,634,672,662,705,706,685,706,711,682,643,702,646,695,685,665,701,577,556,563,585,609,573,582,571,613,596,573,605,596,585,582,590,588,577,594,584,598,577,575,581,622,580,589,581,569,584,605,569,596,571,569,558,618,627,561,547,556,558,552,548,567,578,573,561,551,552,569,579,573,557,561,584,573,565,571,564,560,568,568,556,557,570,554,574,576,561,544,574,561,561,572,560,560,545,574,559,616,635,622,642,629,623,620,623,646,603,621,633,618,635,610,617,632,610,628,620,655,645,610,607,603,609,610,629,617,600,633,614,624,643,633,644,595,635,616,615,648,619,717,720,678,661,677,661,675,679,673,667,695,674,699,678,675,665,677,690,670,647,666,703,681,677,702,716,666,665,687,667,658,663,697,713,680,727,660,670,625,689,718,660,697,690,637,612,616,588,613,592,626,623,624,612,618,627,599,620,640,610,611,616,635,628,628,618,622,636,606,635,649,618,636,663,619,616,614,626,633,653,630,616,634,633,621,609,627,618,623,634,570,581,588,589,579,573,573,586,576,585,581,565,587,581,580,573,572,573,598,580,573,580,575,587,579,577,571,586,580,574,583,587,563,574,586,565,575,584,572,570,576,549,646,649,646,662,631,649,661,635,642,601,640,658,682,662,659,614,642,609,631,651,677,635,643,633,655,627,663,663,630,666,621,685,632,691,665,655,643,621,634,647,656,600,616,630,674,645,650,669,685,684,692,684,677,681,692,691,669,682,684,675,667,684,657,700,681,688,662,692,687,675,667,692,678,688,677,706,659,682,686,677,667,677,678,685,692,677,701,677,697,694,674,671,680,694,671,695,671,709,672,685,669,706,686,697,672,651,682,669,687,680,694,685,681,678,687,704,683,673,682,689,685,681,695,683,693,693,687,674,695,682,684,683,693,697,694,694,683,680,698,698,639,659,644,665,688,663,651,684,649,662,656,676,666,664,655,664,640,633,666,678,665,649,666,668,662,671,671,675,657,670,660,646,670,676,656,677,652,666,665,666,673,669,758,761,748,720,714,768,753,721,708,733,736,753,757,754,746,711,723,734,730,759,705,756,741,750,723,738,750,729,723,734,781,746,732,723,763,737,705,767,724,698,742,754,817,738,714,737,729,745,798,726,741,681,736,754,788,758,740,732,743,721,744,751,695,722,712,768,733,764,771,697,743,699,751,735,726,727,738,716,739,791,700,753,717,747,705,713,730,757,739,780,745,744,717,729,761,718,757,729,749,755,746,749,728,728,725,757,740,741,721,746,746,726,744,729,730,732,719,712,757,748,734,743,720,747,739,731,740,723,753,711,722,707,748,738,715,738,719,718,737,695,683,734,713,744,708,729,668,730,695,716,715,764,705,696,703,723,676,703,698,714,696,748,699,699,740,703,716,708,731,731,715,720,708,745,648,679,659,667,684,669,686,647,649,694,650,646,674,693,689,671,679,690,674,680,690,656,693,671,683,675,659,681,660,711,678,669,667,649,691,686,683,703,645,647,651,645,634,655,633,637,640,653,653,644,653,672,647,634,649,653,657,648,651,640,658,651,639,640,669,668,659,644,672,633,644,663,652,646,657,638,640,660,654,652,639,647,638,652,656,649,670,682,737,748,674,696,667,727,692,752,724,680,694,713,683,676,681,684,685,713,706,692,703,679,674,680,696,744,681,669,679,728,712,752,708,733,769,677,739,696,692,769,658,676,641,659,680,661,630,647,689,629,647,625,657,669,642,661,676,660,665,658,647,641,656,663,672,645,641,691,639,656,665,665,616,631,616,578,598,595,607,606,596,600,596,596,592,602,610,603,584,599,578,593,597,623,600,600,605,594,598,607,595,606,598,617,601,592,591,594,579,591,590,605,597,600,590,630,612,651,592,625,612,585,607,656,616,606,648,602,597,623,606,621,595,640,584,598,602,618,575,598,610,594,645,626,615,598,604,628,614,605,614,646,633,623,594,615,625,603,626,613,612,625,607,624,622,642,608,617,612,612,625,619,606,607,613,632,603,619,612,635,600,614,607,606,625,596,616,614,619,612,616,590,633,613,629,615,611,614,607,592,584,583,582,567,576,562,572,581,572,579,571,582,579,581,591,581,585,562,578,581,584,582,585,578,584,569,571,563,578,571,581,564,586,574,569,577,569,575,548,663,628,704,687,693,637,631,672,660,649,668,665,647,634,669,669,666,705,719,681,694,695,678,691,674,675,672,655,645,645,634,674,649,685,645,658,675,685,682,677,638,648,696,708,721,714,704,709,715,732,724,715,697,728,722,719,719,734,715,695,706,716,701,692,704,726,716,714,696,711,723,704,705,729,707,722,712,727,716,705,718,712,693,725,733,609,587,572,609,581,614,593,554,622,600,584,583,580,564,615,608,590,585,612,565,612,566,608,549,586,575,615,584,595,591,618,578,615,601,607,600,595,616,621,579,584,578,615,552,564,533,562,574,546,536,558,553,565,553,571,564,535,563,553,563,529,553,562,563,565,534,572,552,561,540,558,572,540,579,538,568,563,558,545,549,562,560,567,575,557,584,700,683,696,693,687,697,664,664,668,669,667,688,685,682,657,711,665,700,686,679,675,660,681,689,639,673,715,653,713,684,666,682,666,671,690,690,606,627,625,626,616,641,617,625,619,615,630,606,627,616,639,603,607,633,628,620,648,623,647,615,627,604,630,622,641,643,625,619,618,624,622,651,609,618,636,635,600,632,607,630,662,581,566,557,572,560,574,598,574,589,585,563,577,577,568,571,563,573,577,584,576,576,571,569,560,572,564,569,581,568,577,571,567,573,563,575,576,569,562,584,565,571,595,757,741,714,722,725,732,747,753,743,730,724,715,693,707,702,702,710,749,714,705,713,689,729,741,710,747,736,742,708,739,698,699,703,715,710,720,709,727,710,736,698,762,755,724,746,755,796,714,690,730,712,699,693,711,693,694,724,688,705,676,697,701,704,679,690,699,719,707,712,716,681,684,710,721,698,705,701,723,722,685,727,692,712,696,684,717,687,752,685,606,651,610,615,611,595,624,610,620,631,597,578,627,613,593,596,605,615,608,597,605,642,631,603,624,626,606,601,593,594,587,646,623,598,632,626,616,623,671,535,559,546,549,542,539,552,540,549,552,549,541,545,553,548,535,549,537,533,540,542,550,531,553,552,552,541,534,525,534,550,534,566,529,539,551,549,556,554,555,553,555,557,559,561,569,558,562,561,550,559,568,562,548,561,560,556,559,539,555,551,556,546,548,554,557,558,566,568,555,554,564,559,548,556,566,552,551,545,560,622,665,630,626,616,655,635,644,621,629,659,626,652,667,615,640,671,628,672,632,675,642,630,627,631,634,635,653,623,661,658,648,684,651,595,633,689,704,696,690,701,715,715,687,705,683,685,717,705,678,703,711,709,709,691,692,690,684,712,710,704,708,695,700,715,696,697,700,698,682,684,708,706,717,703,690,679,687,702,702,683,683,735,641,678,682,684,652,673,664,662,666,664,658,676,680,663,665,655,668,678,654,670,671,678,678,670,664,660,690,681,655,662,662,660,669,672,666,674,668,687,683,664,692,657,681,683,681,638,583,594,613,581,611,574,605,589,585,581,574,577,593,587,570,579,577,578,581,586,597,591,588,588,586,595,575,580,568,611,571,592,594,578,589,581,577,575,587,574,588,579,587,567,612,586,580,555,562,643,630,574,602,601,573,655,617,595,578,629,602,553,576,582,579,622,613,615,619,647,586,571,598,671,594,578,598,572,599,598,587,598,565,576,571,607,577,624,585,542,582,594,558,557,559,611,599,589,613,793,757,742,779,747,789,774,749,769,741,776,777,730,746,746,765,736,740,762,764,765,752,749,744,761,742,737,775,765,755,781,769,724,779,756,789,767,767,760,791,753,696,743,779,730,715,751,719,723,747,743,753,733,763,768,749,729,765,765,768,777,782,721,762,730,770,763,744,749,732,750,761,740,718,752,744,778,722,758,764,756,722,812,692,690,718,677,702,711,711,697,688,707,678,687,712,692,716,691,706,718,708,695,680,741,726,705,680,713,713,758,689,700,731,681,689,747,715,687,725,714,767,657,637,629,668,611,648,666,636,644,634,621,653,642,655,615,637,629,629,648,657,653,630,639,633,643,634,613,611,615,614,633,615,598,647,628,629,639,655,648,745,692,668,603,650,606,678,610,655,743,651,640,619,632,627,598,615,641,591,721,625,644,685,635,741,597,643,695,627,575,654,614,646,665,611,598,651,570,714,698,701,714,693,694,706,704,685,704,740,717,685,699,705,725,697,708,704,704,726,662,691,690,688,698,707,708,690,687,704,706,717,699,702,699,698,727,690,715,675,666,706,723,691,685,726,650,691,633,685,692,677,682,677,668,670,692,666,666,671,657,676,682,670,664,683,677,642,673,667,687,656,687,672,674,700,660,666,671,675,679,655,634,611,651,651,665,634,637,647,635,643,650,644,642,640,653,635,646,638,620,647,629,641,640,643,642,650,645,642,660,647,641,656,658,633,645,658,649,672,627,652,625,651,662,637,631,606,657,667,658,660,665,665,669,650,644,658,670,672,650,647,662,676,664,677,656,652,668,649,671,653,655,661,657,642,652,653,653,658,675,659,659,653,648,659,653,658,627,704,748,711,717,717,713,728,699,709,708,723,707,713,723,721,716,725,700,746,728,731,732,706,685,695,698,720,719,697,720,725,750,684,727,729,734,740,702,747,689,684,708,693,696,706,705,696,709,709,713,714,705,710,708,710,696,695,686,703,702,684,704,700,715,701,692,700,697,705,707,703,709,689,699,704,700,712,704,683,702,703,699,694,695,685,698,701,708,721,677,666,717,721,679,674,737,670,689,656,671,696,708,698,653,731,664,624,707,718,690,674,686,699,662,667,755,679,613,684,645,688,672,675,660,687,760,681,712,708,689,704,612,708,673,678,712,705,715,663,686,673,666,689,706,653,706,682,700,667,670,708,705,701,679,677,704,680,697,682,713,682,703,684,740,682,722,712,713,721,706,679,706,666,678,699,694,687,659,721,667,641,608,604,615,599,586,603,615,609,592,614,584,587,610,613,616,608,609,618,622,603,652,647,615,606,574,613,626,621,603,582,614,620,631,610,612,620,644,624,622,609,625,648,571,556,550,560,569,555,540,560,541,557,572,554,582,547,577,549,570,539,561,559,540,573,548,544,552,546,574,564,557,561,581,558,572,579,567,534,562,587,554,544,555,535,569,558,535,565,586,721,743,734,712,730,729,708,704,769,713,723,750,760,747,773,744,718,722,707,722,722,708,772,741,736,729,720,754,721,746,741,752,785,715,740,735,727,729,727,768,742,750,725,720,732,723,729,709,738,737,728,720,731,748,743,728,736,724,726,730,721,735,739,726,747,747,736,749,725,735,729,747,720,740,739,733,749,734,760,698,702,656,679,687,709,668,694,684,717,695,697,688,704,669,694,696,684,689,683,707,695,699,676,717,699,672,679,746,696,711,693,689,657,706,698,705,695,734,683,703,645,725,679,659,674,711,689,629,691,658,691,677,678,698,730,658,721,695,672,689,710,696,687,707,729,682,704,612,663,691,668,693,709,671,719,692,684,659,663,722,707,653,681,703,669,644,677,721,655,687,669,668,672,678,683,674,638,660,671,658,646,649,661,654,665,653,673,665,653,676,630,724,660,661,667,677,669,660,661,664,696,671,664,667,661,662,656,668,700,682,642,659,638,653,646,646,650,633,644,633,681,645,656,647,664,632,645,654,630,642,670,651,644,644,653,648,650,649,645,655,652,659,653,645,652,658,642,654,653,655,641,655,664,597,613,589,590,613,612,587,585,580,599,580,581,603,583,601,573,589,572,599,597,578,590,575,585,598,577,590,579,600,599,595,576,557,564,574,610,596,586,615,609,581,590,595,543,544,542,553,543,552,536,554,539,552,548,547,537,545,544,550,548,539,525,540,536,531,534,546,550,521,531,540,535,549,541,543,551,538,537,538,525,534,551,545,558,536,547,540,550,525,551,570,566,553,554,544,566,558,551,554,557,577,575,556,543,558,550,550,546,549,557,539,555,555,568,573,557,558,557,529,578,562,570,548,565,552,554,566,567,570,557,550,585,737,715,731,734,744,723,732,697,694,784,741,743,732,708,740,725,719,737,747,712,716,730,742,712,743,724,749,710,734,745,713,713,729,738,756,738,766,715,712,732,759,719,703,685,717,739,720,709,715,692,756,722,721,691,719,727,716,749,739,759,735,737,722,734,717,712,713,678,752,726,753,754,749,761,703,746,731,691,732,732,736,699,718,713,713,703,754,753,708,746,724,742,725,750,716,722,735,745,733,759,754,728,678,747,746,774,757,730,754,727,752,733,724,742,721,743,722,772,753,746,711,739,752,787,767,743,752,818,706,745,734,723,711,715,720,714,743,743,735,713,712,733,699,740,750,772,750,692,713,719,751,730,757,685,753,730,708,751,734,705,716,729,767,712,712,739,727,749,739,724,719,732,752,797,719,701,713,686,721,686,733,691,696,721,707,739,722,682,755,669,692,695,746,681,734,709,713,715,769,695,740,728,726,720,702,712,694,749,730,707,700,731,712,678,717,700,688,721,694,662,719,742,730,742,736,738,714,699,719,727,723,726,733,734,718,720,717,717,740,747,707,724,712,727,735,725,727,722,733,725,737,700,715,714,713,721,727,752,627,627,623,625,662,614,623,617,636,591,626,609,623,609,627,635,631,646,607,631,627,595,602,595,644,642,612,615,619,620,632,654,632,610,602,594,641,622,630,638,650,577,570,591,562,563,579,566,558,569,566,588,555,570,572,564,567,577,565,562,584,579,597,587,568,565,581,552,579,570,565,594,567,576,579,557,581,582,571,589,592,577,566,589,564,529,616,652,646,625,632,640,637,635,628,636,635,642,621,624,637,648,651,630,645,646,626,636,648,636,636,633,636,631,645,630,638,614,642,629,650,635,641,633,631,640,630,645,690,657,667,645,671,648,668,658,656,655,645,675,654,675,672,658,669,640,651,653,657,651,658,655,661,661,661,664,655,655,659,653,671,661,659,669,644,661,657,661,679,641,676,653,658,633,697,695,678,660,724,682,646,677,686,691,695,676,707,688,690,685,662,657,708,696,723,686,654,696,718,675,671,688,664,676,659,722,685,693,686,670,681,711,703,680,702,698,655,670,675,639,581,598,603,578,582,586,586,594,615,594,602,607,588,566,572,574,593,609,612,582,555,569,594,568,604,605,578,609,583,570,556,583,563,574,563,580,593,584,560,586,540,556,554,579,566,565,557,562,572,560,565,568,560,561,546,564,550,567,560,555,566,552,552,540,562,564,582,567,567,569,575,541,567,568,566,566,569,545,550,572,560,569,555,564,562,567,573,560,583,543,556,549,628,617,587,614,618,603,617,589,607,620,614,604,630,610,610,602,598,608,595,620,627,604,617,623,600,571,590,591,630,594,605,600,600,621,595,618,601,612,589,583,599,569,564,574,549,540,564,575,557,564,559,549,574,577,547,589,563,600,566,575,571,554,566,558,579,564,575,577,573,559,577,557,563,579,566,560,560,551,548,578,564,562,563,573,545,565,547,561,563,570,589,585,569,568,566,572,557,575,575,570,579,572,568,548,575,543,573,551,578,553,572,559,570,567,559,565,579,580,557,543,592,577,566,569,585,559,562,572,576,565,571,573,604,548,537,527,541,539,537,537,540,535,548,535,541,541,530,536,534,527,528,538,537,535,541,536,529,534,529,538,532,544,540,525,544,539,534,537,540,537,542,527,538,514,516,700,715,710,679,698,675,693,708,685,727,703,701,726,683,683,707,736,694,708,701,699,713,678,717,669,694,682,716,720,699,693,682,715,702,700,701,702,696,721,702,674,706,710,722,715,667,663,658,652,665,666,656,663,684,667,658,660,665,665,649,679,667,679,671,658,679,671,672,666,666,679,682,656,672,672,663,662,664,664,658,670,653,667,670,677,673,687,674,681,656,629,605,610,622,586,624,589,609,587,613,603,621,629,605,589,658,613,629,605,606,612,633,680,592,611,566,600,606,600,585,586,617,634,636,601,630,588,615,582,593,576,631,609,593,555,516,530,522,538,540,542,524,545,542,544,531,539,535,527,546,531,513,535,527,547,537,533,533,537,545,548,528,522,545,535,538,534,542,538,526,529,548,536,529,536,541,535,537,529,534,538,520,539,552,536,530,538,511,527,532,505,514,516,516,494,503,520,529,516,521,533,522,518,516,515,514,517,516,521,509,527,514,527,508,518,514,526,530,495,526,518,512,526,530,500,514,528,519,514,502,675,727,739,741,758,701,719,770,707,701,750,736,740,758,713,720,766,756,711,737,734,750,733,698,708,730,720,727,717,748,794,709,735,739,695,716,720,716,747,707,734,705,807,699,724,724,713,741,702,724,704,718,731,701,688,706,701,687,701,710,701,714,702,711,709,715,680,703,693,672,721,692,707,706,694,716,713,677,709,699,734,700,711,700,731,710,677,696,618,604,625,620,590,604,641,642,644,594,630,643,616,621,603,638,619,641,627,636,608,655,648,624,653,633,639,628,639,641,632,610,631,612,595,613,608,618,620,590,526,515,522,522,521,526,530,521,528,526,531,540,545,535,533,530,536,534,520,528,522,525,529,529,528,523,538,528,529,521,531,534,519,521,521,531,518,531,519,542,538,529,528,535,526,656,663,672,650,673,682,672,693,660,641,667,675,686,671,676,687,680,683,682,685,671,665,661,666,680,695,661,669,662,644,665,661,695,698,674,676,652,669,693,659,664,635,667,643,661,646,650,643,644,670,647,643,655,653,650,657,676,662,653,636,644,659,643,637,659,638,650,636,672,660,661,651,658,631,659,646,650,650,660,649,654,645,644,663,633,618,586,568,575,549,554,587,537,565,588,561,531,582,580,582,581,576,567,591,583,618,603,585,566,569,601,581,610,603,595,616,575,593,570,566,606,593,598,598,583,559,575,569,563,552,573,559,556,573,568,565,561,561,565,588,577,567,567,550,572,569,554,561,568,564,590,571,568,554,570,566,588,553,575,576,576,569,572,556,577,562,553,575,575,565,570,573,587,545,542,545,558,562,548,564,537,539,543,566,542,544,549,539,544,549,534,541,547,540,544,549,540,536,544,555,542,545,538,547,544,531,551,547,548,546,538,553,552,545,545,551,548,545,520,545,535,536,545,529,548,536,534,530,541,542,534,549,541,527,552,543,549,546,532,523,533,542,536,534,529,525,529,547,531,535,537,546,537,546,540,551,564,575,556,552,554,551,561,557,554,545,562,561,544,568,539,538,554,554,561,561,531,541,555,564,554,560,563,553,564,571,552,558,551,538,555,568,561,540,536,543,536,552,546,546,556,536,548,546,549,555,563,541,557,526,537,541,551,519,551,539,535,544,548,540,553,548,528,538,543,549,542,538,548,547,544,550,532,536,545,569,575,618,617,604,598,597,582,618,603,555,621,611,579,586,600,607,566,520,571,618,599,612,602,614,618,610,579,583,635,576,621,654,590,614,625,550,609,630,598,612,638,588,594,581,562,595,574,584,595,585,596,593,579,591,578,593,593,600,593,585,595,584,586,574,585,594,571,581,592,588,600,576,580,587,583,588,585,589,593,590,572,575,550,548,521,545,541,538,542,550,549,525,541,530,539,544,528,534,546,533,529,551,535,521,531,534,542,533,531,537,529,532,543,538,550,536,526,544,541,529,550,495,513,527,505,514,530,505,509,511,521,521,517,506,512,516,504,500,502,497,528,512,521,489,513,510,501,513,507,520,511,507,491,529,517,510,508,513,505,508,502,529,512,508,517,522,504,568,567,555,566,560,547,544,568,562,546,557,550,558,563,549,567,567,551,560,548,559,559,550,560,562,554,551,553,542,571,567,549,556,573,551,559,574,540,553,556,549,551,563,555,586,552,531,535,527,531,545,546,549,544,545,543,524,540,542,539,537,537,538,531,542,548,534,543,541,544,544,545,533,552,531,534,553,547,536,546,546,537,543,528,531,526,531,541,538,542,531,550,527,533,520,654,716,648,668,658,671,649,742,713,682,719,742,747,717,686,718,677,696,749,688,726,718,745,724,738,691,706,763,741,718,691,750,758,731,680,691,734,681,730,672,734,662,713,702,713,697,709,699,699,716,706,690,703,718,686,702,686,728,700,692,719,714,719,713,713,719,708,713,719,715,717,692,696,696,719,721,705,686,727,703,711,706,662,704,686,668,686,713,686,743,648,691,676,664,631,678,667,710,663,713,642,665,725,640,695,670,740,662,634,673,694,712,631,718,666,716,710,672,659,697,696,673,629,679,743,746,703,683,677,673,683,714,696,692,722,661,674,683,681,678,682,704,694,709,726,673,666,682,711,679,674,700,698,677,687,702,684,703,669,699,697,684,703,654,709,678,682,643,689,701,695,675,707,694,720,690,713,703,691,722,700,713,691,707,702,702,709,700,711,701,709,686,692,696,698,700,697,697,702,677,726,710,698,693,689,692,693,693,696,700,658,656,671,593,651,659,699,612,631,645,706,603,607,613,651,628,632,601,630,647,587,622,602,638,601,630,640,586,624,634,639,621,624,628,629,613,625,679,638,723,546,647,585,603,590,615,592,646,586,598,630,612,640,612,622,617,576,629,622,584,608,650,588,595,603,599,619,583,569,612,591,612,570,598,562,612,598,600,578,621,542,530,534,540,530,516,530,534,531,548,534,536,529,523,531,528,551,532,545,522,520,541,540,535,542,543,531,529,525,529,529,521,519,538,522,543,519,535,520,545,518,529,528,526,557,545,507,538,521,521,535,522,545,523,536,536,523,515,520,520,524,533,533,520,529,535,514,534,545,516,521,539,511,542,526,525,510,515,519,540,512,537,542,528,539,552,548,551,539,560,552,558,543,550,554,559,540,564,550,548,531,561,560,557,565,548,546,544,548,564,552,553,558,561,554,551,552,543,559,544,557,561,544,567,549,544,556,569,563,566,556,537,618,595,658,599,584,661,612,563,600,614,629,623,615,627,625,618,616,631,629,632,581,623,606,611,615,566,621,637,612,608,602,651,619,599,617,642,583,580,601,612,642,622,569,615,601,647,632,618,612,624,607,630,610,620,613,630,621,621,629,622,630,626,624,612,619,606,615,609,598,618,606,628,614,631,616,627,613,604,612,610,617,616,624,608,621,630,623,614,626,605,624,652,556,555,575,592,585,562,572,573,562,567,555,573,580,570,567,565,573,585,572,567,579,561,576,566,563,576,571,579,587,557,578,577,576,585,573,569,560,554,555,602,506,510,512,527,528,510,522,526,514,529,524,516,510,538,521,531,520,506,530,518,517,525,520,519,535,522,508,528,514,507,517,523,520,513,519,530,509,516,507,506,525,519,517,516,506,501,493,668,654,671,666,657,647,657,650,657,671,675,657,682,661,667,659,686,644,651,658,662,641,656,658,630,631,656,666,637,669,639,665,662,667,678,647,666,654,666,666,637,659,650,647,635,698,685,695,659,663,669,704,657,711,669,675,620,680,674,692,646,666,654,665,639,675,672,658,678,682,674,634,660,661,673,701,675,670,635,689,657,654,686,661,634,680,680,662,640,706,690,682,659,716,691,690,720,644,673,745,709,713,692,673,694,642,682,757,689,742,676,711,732,666,689,677,697,696,773,743,659,678,715,713,711,715,669,694,680,718,692,687,707,691,577,644,646,647,675,703,670,675,673,660,654,663,640,683,670,682,667,667,667,676,666,672,674,665,642,660,634,664,683,674,669,653,665,685,675,645,661,664,650,660,690,605,652,641,651,654,652,640,634,631,656,643,644,639,657,644,658,642,640,643,617,665,651,646,657,654,651,661,646,641,652,657,647,642,642,643,629,659,662,642,654,650,664,633,651,656,647,650,680,577,608,572,582,595,578,570,588,585,588,573,577,584,590,576,584,579,581,559,566,587,566,578,579,586,580,580,567,580,584,586,609,572,571,596,585,578,576,572,578,580,573,566,658,654,648,660,668,655,656,650,635,703,691,663,656,658,653,663,673,650,647,643,652,681,663,663,672,648,686,693,669,652,647,663,641,660,675,659,696,625,629,630,626,630,604,592,599,617,613,598,636,630,633,603,613,617,597,620,594,610,615,609,604,619,616,619,602,596,604,597,598,623,595,619,624,611,602,606,631,585,583,598,577,580,573,589,565,562,574,576,568,603,565,569,574,586,595,564,577,564,583,579,591,578,579,574,580,582,596,587,578,589,585,574,583,587,565,587,562,592,587,602,567,590,586,572,582,592,548,546,573,566,560,573,557,566,571,580,570,582,545,557,567,556,575,571,541,548,570,583,565,551,567,581,566,561,569,553,564,554,564,561,573,571,570,572,576,563,549,571,550,561,550,550,547,565,550,569,555,558,555,565,567,582,565,545,549,562,552,564,558,569,567,554,569,557,553,545,554,548,569,575,553,554,557,572,557,555,556,540,556,559,560,553,562,568,535,555,547,540,544,550,538,564,557,556,549,549,548,555,549,548,566,560,544,560,563,564,548,542,544,552,553,533,558,560,546,538,553,539,552,544,556,542,561,551,564,556,535,557,564,555,562,545,551,552,544,557,549,541,576,601,648,700,682,613,627,668,613,620,658,617,612,629,674,672,637,636,586,654,623,619,614,683,650,730,606,606,673,728,636,592,678,664,624,675,602,640,616,602,645,641,624,640,592,602,604,615,591,592,612,608,596,613,605,614,607,606,606,593,605,615,617,595,595,608,609,604,599,604,610,597,608,633,604,621,601,607,588,609,617,607,622,610,616,584,614,576,566,541,563,544,530,556,556,530,579,554,565,552,540,562,546,561,535,560,564,557,527,545,554,545,558,535,555,556,532,543,537,549,550,549,560,556,544,545,574,528,521,525,516,520,531,523,520,540,521,516,520,528,519,547,525,517,516,530,538,523,522,527,528,527,531,533,526,537,526,521,524,533,526,530,521,528,531,519,535,529,537,547,536,532,550,545,552,547,550,538,538,541,528,542,530,530,535,544,536,549,534,536,536,536,549,544,535,545,538,546,535,541,536,555,526,545,526,536,538,533,556,572,550,567,553,561,564,562,559,560,542,567,541,551,556,548,561,553,553,549,541,560,567,547,547,552,553,547,557,556,549,561,549,568,572,571,548,548,574,553,539,580,675,684,674,672,684,703,693,677,690,718,680,688,682,684,696,682,712,680,667,688,683,677,680,673,672,698,686,687,675,694,683,668,694,701,688,685,693,695,687,707,685,649,667,683,676,642,711,689,677,667,676,693,653,698,674,664,648,675,694,666,651,652,664,674,694,685,690,652,664,705,669,696,698,678,666,676,663,660,697,664,674,661,660,678,656,679,681,649,685,589,618,593,575,615,621,597,593,600,636,579,575,635,638,573,582,605,593,582,608,593,597,606,595,605,633,612,621,613,589,606,581,599,587,620,600,615,601,541,598,575,584,576,586,515,617,645,574,572,627,636,616,633,672,636,594,565,582,590,631,644,565,580,603,602,636,591,584,628,620,583,630,592,665,589,603,606,639,607,659,625,617,630,596,593,606,575,594,587,599,594,572,579,579,574,593,588,588,589,583,570,586,583,592,576,587,592,569,596,605,584,586,589,592,600,584,597,589,597,576,580,583,587,576,579,594,545,557,562,538,549,563,555,550,554,547,540,564,549,546,542,554,551,529,541,553,544,548,540,545,553,566,550,553,549,547,542,560,535,565,554,534,550,548,562,561,533,549,555,563,546,548,557,551,566,566,550,545,572,573,554,535,545,558,552,561,548,560,576,576,539,555,558,568,569,549,541,554,554,548,564,567,570,567,564,546,561,577,551,548,574,572,566,577,547,535,705,657,641,682,672,671,686,642,686,675,665,667,651,675,661,686,709,677,671,682,700,652,678,683,653,688,715,648,672,645,684,616,684,680,692,688,665,634,657,667,675,664,685,655,603,585,626,622,584,623,601,611,608,600,614,589,598,586,605,612,612,582,595,605,597,586,624,602,586,600,607,586,590,593,643,613,601,609,594,585,594,618,629,619,617,621,632,676,670,687,650,637,670,677,654,729,674,662,637,676,649,659,673,651,636,650,698,700,661,639,677,655,647,682,655,663,653,620,652,726,629,617,672,662,670,713,642,630,669,695,621,672,739,666,675,691,666,679,691,673,672,689,663,667,671,672,666,684,674,684,675,672,689,692,670,687,652,672,674,673,678,681,685,678,676,690,660,662,653,666,670,670,678,674,669,670,653,669,684,610,603,641,589,552,567,615,644,574,583,645,568,614,590,606,622,609,608,568,601,583,611,607,590,580,583,614,592,604,604,576,581,590,594,599,599,561,656,614,596,606,586,588,614,603,559,553,563,541,544,549,544,562,553,548,544,543,550,570,544,551,557,553,536,555,557,553,566,557,560,548,553,551,557,569,539,550,567,532,552,557,543,551,565,535,538,554,552,554,527,541,534,540,541,550,539,528,550,540,551,546,522,546,567,531,542,542,551,564,552,519,539,542,530,539,537,521,554,530,549,545,569,551,537,543,539,531,543,536,546,574,517,529,525,511,507,509,521,506,522,520,530,516,512,525,526,519,523,524,519,508,498,518,528,523,519,526,516,521,512,531,505,510,507,507,518,514,524,524,524,511,513,509,549,506,505,506,497,512,490,506,514,504,491,507,507,503,499,501,508,498,520,509,506,503,506,516,498,509,508,511,503,511,504,508,502,506,508,503,498,490,499,505,504,507,503,503,511,492,507,488,509,497,506,496,492,498,490,494,499,489,498,490,482,480,485,483,496,497,494,476,490,493,496,488,499,488,501,511,490,501,509,488,504,487,510,489,502,493,492,493,495,499,508,488,500,487,493,492,481,502,492,495,500,490,494,508,499,500,490,496,498,493,494,507,508,493,502,497,488,510,488,497,503,492,502,491,493,488,510,502,511,497,490,478,497,500,501,495,487,508,488,500,504,491,487,499,517,506,503,486,496,507,500,508,485,496,477,499,487,505,499,492,496,497,491,501,490,499,499,500,506,491,503,503,487,490,504,507,503,523,511,520,508,530,507,513,508,502,508,516,513,510,506,515,502,522,512,516,499,500,522,514,519,500,510,512,510,519,515,512,509,505,521,511,504,498,514,511,501,556,532,541,526,539,543,561,551,517,560,552,557,534,548,523,560,548,548,537,542,541,541,537,546,535,543,552,551,530,554,534,553,551,538,556,538,554,550,540,547,549,539,558,533,529,517,542,546,538,529,518,526,528,533,541,525,533,526,518,544,538,532,534,524,543,540,528,529,545,534,541,541,543,531,531,537,521,530,526,522,527,535,540,567,568,570,593,577,589,582,569,576,578,551,569,563,589,583,563,595,567,595,601,573,580,558,590,571,589,579,596,591,576,585,561,590,559,588,576,575,575,585,572,549,557,539,558,546,543,557,545,554,539,565,552,552,552,550,556,547,545,540,543,563,557,537,546,556,551,557,552,544,546,554,536,545,552,546,553,549,551,547,574,578,574,597,637,590,562,539,604,606,598,590,561,596,609,613,611,572,594,603,555,588,611,577,564,565,604,567,639,601,592,611,567,581,629,568,632,613,597,664,577,601,585,586,578,581,580,582,591,578,588,577,586,599,589,607,579,572,597,583,577,586,591,591,573,591,580,590,592,577,586,580,594,578,585,577,582,579,592,586,592,595,585,595,547,530,539,540,551,532,527,549,542,546,528,529,524,540,525,532,530,532,539,535,541,538,538,544,527,546,542,529,531,541,529,534,535,526,549,537,528,538,537,522,540,532,508,493,510,507,495,517,507,501,529,510,500,514,513,502,516,515,501,521,506,504,513,507,516,518,496,507,500,504,516,495,516,512,509,490,522,507,515,508,506,506,500,505,505,511,581,597,550,574,585,585,594,583,561,579,576,596,573,578,574,566,574,569,585,576,582,586,582,560,557,570,576,594,565,582,567,580,567,575,604,582,587,613,601,607,593,585,582,588,598,583,579,611,612,603,578,617,601,588,601,607,583,587,594,601,604,588,592,596,584,607,600,613,581,604,605,607,610,599,609,588,598,553,573,601,582,570,581,574,581,583,590,579,564,573,591,574,569,585,574,592,575,573,572,566,572,570,578,560,582,571,574,573,590,567,558,563,589,581,590,563,569,574,557,549,538,533,521,542,549,537,530,549,528,548,531,544,531,528,536,541,528,535,551,527,549,540,540,529,544,547,538,549,523,547,541,533,537,524,528,531,524,525,515,525,550,540,538,539,530,524,490,507,506,510,509,515,513,513,518,507,516,501,499,522,513,515,520,510,523,509,517,522,513,502,506,511,526,504,507,500,519,518,515,505,511,501,524,523,556,550,553,556,571,548,531,544,536,539,543,548,527,542,524,552,541,554,549,539,549,532,542,544,545,562,552,546,526,539,565,534,551,543,519,535,547,540,559,519,510,536,522,537,544,532,529,543,536,536,530,540,545,531,534,529,531,528,534,534,532,531,528,531,547,524,536,527,529,528,535,535,524,546,534,529,530,534,525,532,530,530,524,552,544,546,532,534,537,526,536,532,522,515,519,525,537,510,513,536,515,519,535,525,525,532,533,522,535,544,548,509,539,520,524,545,526,520,534,524,545,538,501,498,494,502,493,491,504,507,504,489,503,507,487,501,500,497,507,499,494,501,506,511,496,504,521,502,507,502,509,495,497,502,500,495,489,501,502,497,479,495,493,514,511,505,499,503,510,504,487,506,505,507,506,501,494,501,522,511,498,490,500,498,499,502,503,508,503,506,524,494,503,517,496,505,504,496,518,520,513,505,492,644,616,607,597,637,641,630,638,611,611,633,602,609,617,612,644,627,628,609,633,639,614,628,622,621,611,620,605,635,624,630,630,633,632,639,630,614,603,638,625,588,555,572,566,557,565,574,565,556,554,555,582,559,563,561,558,557,553,569,559,540,550,555,552,546,554,569,561,545,545,547,555,551,570,554,558,560,568,575,559,538,555,560,621,620,635,613,639,640,672,618,679,661,627,570,622,604,612,692,633,662,648,703,629,644,638,616,607,678,636,638,647,634,599,642,636,639,659,638,622,655,642,604,647,679,629,642,625,611,599,663,649,653,689,609,683,654,664,646,687,635,635,654,668,672,649,678,654,643,701,671,681,656,650,665,666,679,680,686,678,670,625,694,692,686,644,694,664,695,695,684,649,675,681,621,614,611,594,609,584,604,607,626,626,626,579,609,609,602,586,615,586,593,610,598,616,630,584,620,620,584,590,614,611,575,607,624,616,644,624,592,598,626,667,564,577,564,582,580,556,575,571,564,579,566,586,580,566,557,566,571,557,577,568,588,568,573,560,579,568,564,568,578,563,582,579,565,570,577,573,571,567,562,564,568,578,559,591,573,542,557,548,544,548,541,550,535,550,543,536,549,542,533,535,560,551,533,544,542,542,533,553,533,567,547,550,543,546,530,548,532,550,550,526,553,544,535,534,549,559,526,519,525,517,508,494,517,520,512,531,515,515,516,516,522,523,501,507,503,521,522,514,510,510,508,534,519,523,534,516,514,519,517,504,513,529,526,518,510,509,515,521,510,651,638,641,637,657,643,646,638,650,641,638,646,658,645,654,653,655,625,642,671,659,654,666,655,674,669,640,650,656,638,650,654,661,638,661,637,653,653,651,629,625,670,686,597,622,587,611,591,592,586,608,582,591,582,606,603,586,598,576,613,578,609,586,576,611,587,594,591,603,591,607,590,589,595,594,587,579,591,599,594,588,595,592,564,580,587,570,592,580,581,574,583,581,574,585,578,573,570,582,568,591,568,575,554,592,584,577,580,602,585,568,583,580,572,564,580,601,590,585,577,577,577,565,580,587,591,601,566,583,566,568,570,578,558,571,560,556,572,580,564,561,567,563,564,579,560,561,569,565,570,570,557,564,562,582,572,570,551,557,571,570,554,558,567,551,586,566,545,559,557,564,563,556,561,549,573,555,555,569,548,561,561,553,554,570,562,556,569,570,560,564,557,561,562,566,564,555,557,563,567,563,558,571,556,546,565,563,547,541,550,541,548,535,551,549,550,541,558,534,547,557,546,533,547,547,547,551,535,536,542,547,562,546,547,546,545,556,549,544,548,559,546,544,546,541,555,540,545,534,553,540,556,561,518,541,531,561,540,537,531,536,530,542,541,528,534,546,527,525,548,532,535,533,534,541,546,541,547,532,525,531,550,535,528,528,534,533,545,537,533,546,532,523,525,534,524,541,552,534,543,557,557,529,526,513,532,532,532,551,534,533,536,537,509,530,526,538,533,535,538,538,535,524,529,528,502,536,521,531,535,525,523,528,525,524,528,523,518,524,526,532,542,525,543,523,526,536,543,546,545,544,539,548,532,547,542,539,546,546,533,552,548,538,532,531,531,551,543,543,553,522,542,542,533,539,542,543,539,545,539,535,546,541,531,542,544,531,540,545,542,549,541,565,536,566,556,545,552,533,549,544,555,540,543,555,543,553,549,532,550,538,540,558,545,549,538,535,552,532,554,548,547,550,541,543,538,533,556,538,547,535,554,543,538,547,545,543,523,531,535,537,552,540,531,534,533,535,525,544,536,534,540,524,544,532,525,544,526,538,545,531,538,547,547,528,528,535,543,527,542,548,535,540,532,537,534,528,539,539,533,529,542,536,520,520,524,526,541,531,546,535,539,524,531,536,552,517,526,530,537,530,545,521,523,514,526,541,516,529,545,528,538,544,522,524,523,533,534,522,533,540,542,531,545,518,528,508,554,536,538,558,552,559,547,558,543,538,548,548,552,535,534,542,546,551,545,532,536,552,542,549,541,541,553,549,555,556,549,556,536,531,535,545,547,554,552,543,545,540,557,557,527,564,564,543,555,563,548,570,559,554,563,552,560,552,563,554,547,551,551,557,560,554,562,545,561,564,557,552,538,566,564,548,559,565,549,554,547,553,534,603,579,639,579,580,628,570,635,611,627,573,591,596,595,641,620,577,630,595,627,553,631,621,619,598,623,565,596,585,595,599,583,582,553,605,600,620,601,619,598,656,593,597,590,601,595,593,586,599,598,588,601,577,595,595,598,594,605,594,587,596,596,597,584,585,593,592,588,592,597,603,577,586,577,598,590,579,578,591,591,598,569,564,555,549,550,559,557,563,552,552,564,558,570,555,567,576,553,555,561,569,564,547,565,566,580,553,562,555,565,582,539,553,551,559,546,580,563,570,557,555,548,556,534,572,552,556,549,545,563,555,548,534,563,548,547,534,555,529,550,560,529,539,534,549,558,565,555,551,549,565,541,560,548,534,551,561,570,562,555,550,546,565,561,547,533,548,660,644,642,641,666,627,623,629,654,656,661,634,655,652,649,643,644,654,664,649,646,649,653,638,639,639,640,658,648,642,641,648,638,631,655,668,661,637,652,602,572,559,552,547,554,582,576,563,555,568,583,557,554,555,565,540,559,556,556,555,558,551,570,555,551,565,584,558,569,576,561,576,572,573,563,550,566,564,571,551,566,564,558,563,559,546,526,520,529,555,563,518,528,533,544,536,530,527,516,544,519,540,552,538,543,547,533,532,515,552,506,515,544,536,541,516,530,524,554,553,545,513,519,546,538,539,536,540,712,690,709,686,720,732,697,731,712,733,699,687,683,692,707,679,732,726,689,703,708,713,734,694,707,702,714,662,722,711,708,687,748,694,711,733,730,728,699,721,716,645,647,657,642,641,659,639,659,666,674,623,656,650,617,651,657,662,644,652,665,642,674,659,651,656,646,672,674,656,665,650,620,632,619,650,643,677,655,641,683,652,601,598,605,602,585,598,599,595,600,587,609,591,589,612,581,588,584,606,598,596,614,598,594,608,594,599,606,603,592,603,603,597,603,593,618,612,597,594,599,608,592,606,601,603,573,585,571,610,587,604,621,579,579,617,597,582,602,606,606,591,589,562,598,598,612,619,594,577,608,605,635,587,558,651,647,591,610,541,605,582,671,601,590,596,590,606,602,591,579,598,593,587,584,582,596,587,581,584,588,586,593,606,589,594,587,603,593,585,589,601,587,590,585,581,592,579,585,602,594,567,592,598,548,542,545,521,542,533,541,540,539,542,538,545,536,533,545,527,538,546,534,536,537,541,538,550,518,536,543,517,537,528,531,542,522,529,531,518,642,637,652,661,663,662,650,671,671,651,648,653,625,663,645,650,641,662,643,650,628,652,659,659,629,620,671,661,638,652,645,649,642,667,652,655,658,660,660,641,666,645,645,656,686,631,667,680,687,657,676,670,675,672,705,684,687,671,678,685,659,654,660,640,678,706,676,719,657,619,635,686,630,633,640,646,657,701,686,666,680,670,674,678,666,656,688,707,685,700,698,672,661,683,687,677,687,704,731,685,673,686,634,665,678,691,681,674,697,696,687,662,680,628,722,699,677,686,653,687,707,644,643,727,687,661,713,690,707,746,670,713,755,692,664,675,710,674,679,681,644,704,676,698,701,690,685,670,715,642,679,670,673,665,653,670,654,695,668,680,668,677,698,709,668,701,658,676,656,721,683,657,690,687,690,651,691,747,587,574,578,582,563,583,581,576,587,574,578,605,597,559,593,575,599,589,551,593,622,597,562,581,576,578,563,584,564,575,593,589,570,577,548,554,575,583,595,600,575,579,556,556,574,554,581,573,570,634,542,560,534,544,544,543,545,545,537,553,526,565,542,538,534,537,564,552,520,538,554,549,544,541,544,530,555,561,534,552,550,556,536,527,549,553,527,523,543,520,693,685,671,648,669,681,687,635,685,677,675,668,708,695,673,681,666,681,665,659,685,689,678,671,661,684,685,675,687,686,647,682,701,683,669,682,660,655,656,666,622,571,618,616,600,611,603,593,566,595,633,591,600,600,604,617,594,577,591,590,609,593,593,595,596,614,598,611,634,625,602,628,578,582,616,605,597,615,610,607,615,613,602,605,607,583,625,600,639,589,601,658,605,543,634,576,603,641,606,633,599,618,569,582,641,569,684,634,602,576,637,601,646,586,606,600,601,643,608,640,537,586,561,570,646,508,656,669,702,677,686,623,632,652,669,651,693,691,650,651,662,661,661,695,643,670,665,657,648,632,685,681,715,627,662,659,672,630,645,660,665,684,649,658,645,671,645,685,623,602,601,580,582,603,602,586,568,590,572,622,592,613,610,614,588,585,585,592,605,582,608,635,601,598,591,610,590,587,586,574,586,577,627,592,600,606,621,595,616,612,602,587,611,599,685,642,587,630,607,642,612,633,654,596,564,644,590,600,629,660,611,601,644,671,599,541,618,595,624,639,591,588,619,656,590,617,666,611,651,621,680,612,568,646,675,636,623,646,653,698,712,675,657,628,669,687,654,661,652,638,688,638,674,654,649,651,665,650,650,676,675,650,676,672,626,686,692,672,668,657,645,669,652,633,656,649,674,660,625,642,679,672,684,695,689,689,707,682,701,694,661,691,677,691,649,660,693,687,681,668,690,703,692,701,717,687,692,691,700,666,676,680,673,688,688,678,689,665,722,678,695,676,689,674,684,688,694,666,704,676,672,691,694,671,683,705,686,662,700,680,700,671,707,673,685,710,677,666,712,714,697,680,672,672,688,707,679,683,672,680,688,684,687,711,707,666,692,709,588,589,619,586,606,597,616,627,596,619,626,657,621,587,618,583,608,628,594,583,602,600,595,630,614,600,553,592,605,610,604,607,615,605,594,579,605,572,585,581,610,550,541,541,536,563,540,547,559,560,545,548,556,551,562,541,542,554,559,541,547,536,537,542,538,549,554,550,547,545,551,534,585,544,547,553,542,551,555,548,555,552,560,548,588,586,598,575,584,570,593,584,576,597,572,575,573,575,566,586,572,588,595,571,577,573,571,572,569,574,601,574,586,599,588,569,581,572,584,585,584,584,568,560,595,564,621,622,626,624,642,660,653,626,632,661,626,645,627,633,631,618,649,638,628,653,633,622,640,649,652,624,647,620,670,645,637,651,614,655,627,637,650,654,625,636,646,649,658,656,653,666,663,645,642,646,659,645,643,660,665,652,640,652,653,644,644,652,662,650,652,649,665,650,667,655,655,652,671,649,664,656,662,664,640,651,685,581,589,578,576,573,571,596,583,580,589,587,594,564,568,584,564,583,577,590,581,550,571,567,583,553,569,597,583,578,561,561,574,592,573,577,572,570,577,608,662,665,691,690,693,644,667,658,664,646,649,649,675,671,641,651,680,665,670,671,679,648,699,683,661,677,673,661,656,672,669,675,675,674,699,669,670,688,676,694,660,629,670,665,660,694,608,657,659,719,677,688,650,652,647,672,688,657,673,659,653,636,678,623,673,633,665,684,686,673,656,679,660,671,678,662,684,650,650,657,665,674,696,613,618,588,581,618,620,626,598,581,587,620,598,623,612,592,600,641,605,601,594,600,616,583,604,604,596,605,583,619,579,608,596,603,547,598,601,571,586,662,592,559,588,595,585,609,645,557,605,589,629,596,626,597,599,646,651,597,631,619,584,635,562,564,586,626,547,627,637,678,639,594,605,613,612,590,549,607,578,620,608,619,580,641,656,618,576,708,561,564,560,560,556,552,577,577,576,560,578,571,576,543,550,558,583,560,584,562,549,576,575,560,558,553,565,566,566,573,573,571,567,556,558,554,560,565,555,552,562,561,554,555,569,586,606,598,567,613,581,551,585,552,604,621,566,610,610,612,639,596,592,636,620,600,622,636,629,613,631,582,571,548,568,622,613,564,549,555,634,607,614,653,607,576,607,622,698,565,558,581,558,567,560,577,564,561,567,566,567,561,564,580,561,579,568,558,574,561,559,564,559,572,569,569,564,565,570,576,567,559,569,563,564,562,559,568,560,559,571,589,612,649,685,644,670,628,604,590,694,620,628,609,657,678,590,703,619,674,619,683,677,675,655,619,643,625,632,611,604,642,594,620,601,712,585,668,612,577,592,641,643,677,675,595,670,646,585,556,663,656,661,677,701,671,663,625,682,701,671,680,660,663,636,661,661,694,657,668,671,701,652,663,648,666,692,645,643,660,662,648,681,684,641,672,664,662,653,701,665,659,677,727,640,633,622,614,632,648,649,659,627,664,645,651,638,658,614,641,659,654,629,627,666,611,661,645,653,645,611,639,615,651,659,630,646,647,621,672,640,654,624,637,644,599,602,584,587,590,582,587,583,587,593,603,569,588,598,593,589,589,604,582,583,569,595,590,583,592,608,586,597,593,595,580,597,588,589,574,598,576,573,592,599,595,588,604,600,581,599,585,605,592,591,589,585,600,601,599,605,596,595,597,598,590,603,593,595,595,611,600,577,574,591,579,616,592,587,606,574,579,593,595,596,605,594,597,603,595,602,589,600,575,597,611,589,586,607,609,564,744,712,753,737,745,734,732,747,723,754,726,713,735,751,711,729,718,752,738,711,723,729,724,727,733,712,724,700,740,745,717,733,726,707,707,712,743,748,730,730,723,697,715,701,719,706,733,712,717,703,714,706,707,714,708,710,708,700,716,710,702,729,707,706,705,712,708,710,702,692,705,715,707,717,719,711,735,696,717,711,695,682,718,683,692,686,692,702,682,685,732,712,714,698,681,707,669,688,714,665,682,709,668,672,701,642,686,686,682,701,686,696,669,703,713,728,693,683,674,717,696,697,699,676,680,679,687,672,688,677,688,707,689,678,700,688,679,657,661,682,686,645,671,661,680,682,680,640,640,679,683,668,670,688,686,684,712,648,702,665,685,669,691,637,643,674,685,674,675,677,680,666,681,688,668,721,678,678,681,691,707,658,686,669,709,686,691,688,667,676,678,675,696,675,657,667,711,671,683,670,690,686,675,674,685,708,676,697,703,679,671,696,684,708,688,672,688,656,695,723,702,670,692,682,693,694,676,685,672,654,666,671,675,742,674,668,630,709,690,667,695,689,680,715,680,655,660,665,731,705,695,658,743,722,687,695,725,665,662,702,706,706,682,653,696,716,688,657,654,627,656,678,652,666,667,686,662,663,644,630,630,682,676,648,637,662,660,661,657,649,668,661,675,677,650,654,667,634,653,689,642,627,665,673,701,660,670,647,670,671,642,676,670,682,661,702,671,673,676,698,680,714,700,755,696,700,672,723,695,680,697,725,685,726,680,721,712,654,714,693,673,718,717,671,699,716,710,661,701,705,636,716,725,718,707,709,697,706,709,702,728,711,709,737,680,710,707,714,725,722,746,707,710,692,727,731,713,716,722,727,725,725,716,719,703,721,715,744,718,712,712,691,735,722,706,708,676,705,704,655,684,702,713,687,697,683,676,699,689,687,689,695,698,686,691,661,693,684,681,693,690,696,662,678,721,711,694,699,668,686,697,668,686,705,669,683,660,693,689,685,687,677,678,699,683,648,662,706,680,678,693,674,661,687,671,688,670,675,696,673,678,672,699,676,675,661,687,669,654,681,655,666,703,670,681,652,704,672,675,680,664,677,673,661,669,675,703,680,681,674,686,682,660,670,675,665,685,676,660,668,701,675,677,677,669,694,712,669,671,693,693,680,712,692,697,697,668,673,683,661,715,694,702,720,657,663,632,675,681,635,676,705,707,677,688,739,745,633,685,678,634,706,730,694,694,692,663,729,676,710,678,693,662,668,704,714,674,679,620 0 261.607313 0 0 0 diff --git a/test/slow5.exp b/test/slow5.exp index 8cdbb54..67836b3 100755 --- a/test/slow5.exp +++ b/test/slow5.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN106 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk109 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!MN908947.3!0!7468!- 0 2048 -272.365141 748.5801 4000 67027 557,555,558,554,560,489,497,508,503,508,488,502,499,505,514,505,512,517,512,518,516,523,542,537,538,544,550,540,547,528,539,541,492,508,499,501,489,505,500,496,494,507,565,552,549,552,562,559,548,522,521,521,520,520,520,517,522,525,525,518,523,536,533,525,529,529,522,532,529,523,525,529,521,530,527,521,530,524,547,541,544,535,541,546,541,540,537,529,529,521,517,523,524,515,509,508,513,514,508,566,552,559,569,549,550,574,569,553,520,510,509,505,497,508,504,510,501,501,502,508,503,503,502,505,510,495,504,518,509,517,519,509,501,505,511,512,501,520,531,533,520,527,537,528,532,535,525,516,528,524,515,517,516,518,517,515,532,525,530,528,526,525,523,520,529,527,577,572,557,561,562,569,568,569,569,552,545,547,548,545,546,543,542,547,539,528,519,520,518,527,528,521,531,525,521,508,507,511,510,512,516,495,507,532,561,547,561,552,556,554,554,544,523,525,527,537,524,527,529,523,531,541,535,532,537,530,534,540,546,538,517,513,503,518,511,503,521,515,540,562,568,569,563,565,569,568,562,499,506,517,504,509,498,503,488,494,500,502,508,504,508,503,507,551,569,574,594,560,575,569,576,565,541,524,524,540,530,526,512,521,499,511,505,509,512,508,502,505,506,504,497,484,480,481,487,480,474,482,487,473,498,485,490,490,489,497,495,484,592,551,572,564,566,554,571,565,564,491,485,469,476,475,483,457,474,489,489,482,466,460,461,468,467,475,470,476,537,555,545,564,559,557,558,566,538,527,532,528,522,528,524,525,530,572,547,570,558,554,551,562,565,500,531,531,526,513,519,521,531,513,505,506,503,500,496,502,507,510,513,497,494,504,503,499,506,505,506,500,502,504,490,489,487,497,487,496,485,475,490,488,469,487,488,482,485,481,485,486,487,500,493,489,492,495,485,495,496,495,489,465,448,455,462,453,458,461,476,469,475,474,471,481,476,481,541,577,560,569,569,576,574,484,505,502,504,503,499,498,507,501,532,544,551,544,552,560,542,547,533,523,524,523,524,526,526,523,524,534,542,539,544,538,547,532,536,484,479,467,474,475,474,484,449,465,473,534,531,536,537,553,540,542,544,586,562,567,564,566,567,571,572,566,551,540,525,536,542,538,536,544,526,560,555,568,570,572,559,564,555,483,498,501,497,494,508,510,491,518,501,510,509,522,501,519,581,556,560,564,550,556,565,556,558,556,537,531,537,536,532,536,528,529,526,528,509,503,508,523,509,529,523,513,521,517,554,552,542,555,561,562,552,549,552,503,501,514,489,507,506,515,518,509,511,504,498,488,481,496,494,493,490,497,496,536,534,531,536,537,538,550,536,539,535,546,559,556,557,558,554,549,547,546,562,498,517,500,517,505,510,496,501,496,477,480,484,481,476,489,481,473,471,467,478,470,475,471,472,473,483,481,489,477,473,468,484,482,607,588,604,591,595,597,596,604,596,564,541,536,560,552,539,547,542,546,500,502,508,496,497,497,507,487,466,466,474,480,474,481,480,472,476,484,441,453,459,446,457,459,454,457,480,485,490,492,493,488,481,489,492,554,549,556,557,545,550,541,543,547,550,516,521,538,520,525,526,516,530,519,481,470,474,468,477,484,473,480,530,524,536,528,526,526,530,522,545,540,535,538,537,541,538,537,540,550,539,543,543,539,547,542,479,506,496,488,489,498,499,493,500,549,542,540,546,539,537,544,545,520,524,524,527,531,522,533,573,559,557,566,570,557,552,560,563,563,538,508,535,529,513,516,528,511,484,496,498,494,497,491,494,492,475,461,454,458,455,460,462,442,457,446,458,447,453,461,450,451,577,566,565,567,560,566,571,554,555,569,568,568,555,566,562,556,558,562,501,490,493,493,500,499,492,483,481,477,479,474,462,466,466,463,577,567,560,556,564,560,556,560,539,549,554,552,554,564,553,567,502,491,495,489,489,490,494,484,503,568,555,552,567,560,567,564,574,541,560,555,568,562,558,559,552,554,558,556,512,513,511,500,501,497,501,499,490,505,511,510,513,512,512,504,511,505,511,564,558,564,558,557,554,565,553,535,539,540,531,536,537,536,539,527,540,530,528,523,536,530,535,527,542,532,542,548,556,543,539,533,541,540,508,512,517,518,518,524,515,519,517,517,550,581,574,553,549,570,567,560,552,553,508,521,514,523,522,527,525,524,532,530,517,497,486,489,487,491,485,482,483,483,495,493,506,496,490,499,498,508,580,575,564,560,562,570,559,560,547,556,547,554,544,559,554,551,541,550,556,499,522,522,528,525,510,507,522,536,517,506,497,502,516,510,499,508,508,471,479,489,476,480,479,479,494,444,462,454,458,456,461,461,457,468,459,449,461,464,461,462,459,468,465,463,566,559,558,554,559,555,547,557,561,544,559,556,556,553,555,545,552,547,529,514,523,507,516,517,520,517,558,547,544,547,551,543,549,552,546,566,574,576,551,571,564,557,559,485,505,504,501,513,492,500,509,510,498,501,510,500,513,495,507,510,495,503,505,486,503,575,566,568,570,576,568,580,579,563,593,541,525,540,526,530,532,529,540,524,501,512,509,506,511,500,515,504,508,509,507,483,477,482,483,482,473,476,479,500,480,487,486,489,494,489,585,563,582,584,568,573,571,561,580,502,501,506,494,502,499,513,510,493,495,544,533,545,555,552,532,550,537,502,515,511,513,514,514,511,520,516,512,537,534,526,526,525,530,520,531,525,560,545,557,554,550,554,556,556,553,552,528,522,526,533,522,527,529,529,535,521,570,567,564,561,556,559,555,555,529,525,516,524,517,522,518,535,522,527,505,500,506,507,507,510,496,502,504,501,477,484,482,483,483,481,478,484,484,482,491,491,501,491,494,490,497,500,538,560,565,571,570,573,569,570,556,515,508,507,501,495,511,498,508,495,493,492,496,485,490,493,487,536,540,533,544,541,529,546,537,539,559,563,555,557,550,546,561,562,559,511,500,508,500,509,511,525,511,515,484,477,488,490,488,494,490,501,492,505,502,510,505,503,506,501,505,500,506,493,496,506,504,505,510,508,504,500,471,482,486,477,480,481,487,478,489,482,515,514,511,510,518,516,504,516,518,517,584,565,570,568,552,557,558,568,498,494,491,491,494,492,480,500,481,456,475,473,471,461,456,466,460,565,548,549,548,548,551,547,542,553,559,546,544,549,555,553,541,554,507,522,518,516,507,512,518,510,533,531,533,523,529,524,525,526,490,506,508,509,507,501,503,498,508,509,500,544,557,569,558,555,548,552,556,502,476,478,482,472,478,475,484,496,447,449,429,453,454,448,457,451,455,543,553,550,558,560,538,539,545,542,535,542,542,545,541,544,552,551,553,509,516,527,516,514,528,524,525,518,515,548,538,542,536,542,543,534,535,547,507,495,494,501,494,481,504,483,496,493,504,498,494,495,497,494,495,505,494,494,495,566,562,558,562,562,559,563,564,566,562,555,547,549,555,553,560,547,549,544,496,487,488,489,473,499,491,481,499,480,482,470,485,478,468,483,476,482,474,625,595,589,577,602,591,595,601,594,596,550,552,561,555,553,561,553,555,553,556,540,556,548,550,549,550,544,548,554,536,503,523,519,509,522,510,502,529,507,510,516,473,482,487,481,486,483,489,483,457,470,477,478,472,465,475,472,469,481,545,549,547,542,544,546,533,544,543,543,525,518,523,522,521,521,521,520,519,529,534,542,535,539,538,540,530,535,547,500,514,515,508,520,510,505,509,577,565,561,554,577,559,558,509,514,518,523,517,533,520,521,525,509,505,495,498,497,498,489,491,483,488,500,475,489,487,490,484,487,489,489,508,506,501,503,508,504,504,504,497,506,505,499,499,499,505,499,495,501,484,479,476,486,471,484,479,482,491,514,513,503,500,496,494,504,501,507,496,556,549,550,559,562,552,556,554,553,543,542,538,542,540,535,541,535,538,576,563,576,566,583,575,565,579,569,518,493,498,493,511,504,488,509,508,515,506,462,482,480,484,473,474,469,476,582,562,553,555,563,561,548,550,489,503,505,505,501,501,511,516,493,480,485,492,484,494,487,489,483,490,503,500,504,498,507,499,506,497,502,511,505,506,507,496,501,501,504,513,499,501,501,501,494,505,508,499,506,505,506,488,485,477,485,479,479,481,476,483,479,486,479,464,467,459,462,460,468,473,493,493,493,488,495,492,479,485,600,568,577,568,551,554,576,561,554,526,519,512,512,502,521,511,551,570,565,578,570,567,556,574,562,569,494,512,514,505,517,509,498,547,533,574,549,545,569,562,568,508,516,519,509,520,517,518,517,569,565,552,564,554,554,555,556,545,543,552,555,552,549,558,557,554,502,522,516,516,517,517,523,516,529,515,525,532,515,513,501,513,516,502,506,512,511,494,511,506,496,505,502,505,506,497,500,502,503,473,483,474,485,483,480,474,478,485,476,505,501,496,503,498,513,502,550,553,556,557,561,555,549,555,564,543,532,536,532,532,533,532,508,515,514,512,511,508,512,523,508,521,518,521,521,525,519,533,525,606,581,591,585,580,584,563,580,578,588,529,534,532,520,538,536,531,533,527,568,549,563,552,550,540,559,562,546,554,524,525,519,520,526,520,530,560,549,549,550,542,550,554,537,551,508,494,495,491,502,499,505,492,496,489,507,490,506,504,505,491,504,506,561,553,549,548,547,547,552,557,552,558,572,569,576,559,569,565,581,539,513,504,518,514,535,517,510,526,517,493,491,491,486,488,483,487,480,507,493,495,487,494,497,493,506,566,559,553,560,559,562,550,566,556,553,556,558,551,551,551,528,523,525,514,529,522,535,533,519,531,531,518,520,513,509,511,505,502,491,494,501,500,497,499,495,497,501,497,499,490,491,491,482,490,488,488,488,497,497,510,508,505,503,516,509,510,537,544,548,551,542,542,545,540,542,470,483,499,481,479,483,480,487,429,444,439,433,448,459,449,444,440,577,556,566,560,560,560,562,564,559,554,563,551,564,564,566,557,539,561,567,561,563,563,509,527,520,517,532,512,529,524,518,491,478,478,488,474,485,478,480,481,479,496,477,479,473,472,482,479,474,468,608,595,606,587,602,601,586,584,586,550,547,547,554,545,555,543,549,541,551,554,549,546,549,547,554,543,532,533,532,533,527,542,529,528,537,535,467,482,491,470,481,481,465,470,478,483,546,530,524,540,525,529,537,523,536,527,548,551,555,556,555,551,555,549,551,548,543,558,564,562,554,561,550,558,563,527,521,535,520,533,541,527,517,523,525,501,509,510,508,513,514,509,515,505,499,503,505,502,508,498,507,504,503,494,489,501,493,493,495,496,497,495,494,458,459,455,459,467,448,448,457,468,460,489,481,469,478,482,469,477,473,477,588,555,564,567,545,560,559,574,537,505,507,525,499,537,522,512,530,514,476,486,485,477,475,484,487,484,482,467,476,473,464,474,467,472,476,490,493,494,492,495,486,500,488,596,570,566,573,559,561,578,577,573,507,481,516,508,486,503,499,488,502,507,474,482,473,478,475,468,488,482,489,464,490,533,565,543,562,571,552,552,562,557,473,495,496,481,497,507,501,499,494,450,463,463,471,468,469,463,469,468,460,519,541,538,537,532,533,538,541,547,541,541,543,536,542,529,541,540,534,535,539,535,531,558,535,543,546,544,534,502,500,500,511,495,504,506,497,515,524,547,540,550,541,567,558,557,547,520,517,510,509,510,513,515,505,518,504,589,558,565,586,580,560,569,565,489,500,498,511,498,502,505,501,436,455,444,448,451,442,523,521,520,536,530,525,516,522,531,524,541,527,534,538,534,519,538,532,524,573,559,568,576,567,560,560,575,538,540,546,540,543,540,543,533,583,578,575,570,575,578,570,582,583,557,541,525,536,518,528,521,533,527,529,538,508,518,505,508,509,507,501,512,496,504,499,503,503,503,505,500,496,492,495,491,482,492,493,489,495,490,490,485,487,477,486,485,479,485,483,494,499,500,496,500,488,504,497,493,505,496,493,461,478,483,475,476,478,474,480,454,434,443,439,437,444,436,442,457,472,470,471,468,479,474,482,483,460,484,585,561,575,568,583,569,569,557,562,546,524,510,518,517,523,517,521,523,517,515,479,470,471,469,473,461,469,474,477,474,460,457,458,456,451,459,576,546,547,543,551,541,549,559,547,473,494,498,477,493,489,489,498,498,558,590,590,604,574,570,575,570,579,578,585,536,531,535,535,537,532,538,533,535,572,576,567,566,575,567,582,570,567,565,527,534,528,530,523,537,531,531,527,508,515,515,507,498,508,506,507,516,501,493,501,505,497,501,507,500,497,484,481,477,467,484,483,492,481,490,474,465,458,462,461,453,459,463,450,472,460,475,479,474,474,466,477,474,467,479,624,596,592,608,581,599,592,602,593,598,556,548,550,549,537,541,533,538,567,563,571,572,561,575,583,571,559,541,525,523,528,525,533,527,521,528,493,483,486,481,486,484,480,479,511,509,493,500,496,507,503,503,514,566,562,567,552,561,566,556,561,561,534,527,537,534,537,537,527,539,539,525,513,515,517,512,532,519,533,537,550,550,546,536,545,546,547,563,571,568,564,565,577,570,569,561,571,540,528,519,520,517,518,523,534,487,496,500,490,499,495,497,498,501,496,500,439,468,463,458,457,477,455,449,470,485,500,506,507,495,505,503,507,520,502,580,568,562,557,573,555,568,564,540,515,507,525,523,519,525,513,530,516,472,486,478,475,481,476,471,494,485,482,494,509,514,510,513,508,508,526,550,545,549,543,540,541,546,537,546,533,550,504,517,517,513,515,525,520,532,539,541,532,532,542,535,538,537,539,560,563,548,554,557,554,571,540,544,534,536,541,535,532,528,535,541,537,562,558,573,557,564,554,564,557,538,513,506,518,509,514,519,507,532,484,496,496,502,496,495,500,494,496,469,466,475,459,466,473,472,463,463,491,467,464,471,475,461,485,469,533,550,522,563,527,547,533,537,540,512,505,510,511,508,510,516,546,578,565,570,568,582,572,568,529,521,526,523,516,510,533,528,526,489,479,485,483,492,484,483,491,472,452,457,454,460,464,465,455,464,454,458,510,508,509,495,506,499,493,506,582,568,569,563,558,567,565,571,562,562,538,546,545,543,544,539,544,549,543,487,488,493,482,476,493,498,494,495,486,470,476,479,466,472,469,470,547,543,544,538,548,539,537,546,544,553,532,523,524,519,525,518,526,566,554,548,563,544,558,552,541,551,473,500,500,485,487,487,480,478,484,481,479,478,477,470,485,475,481,581,569,555,552,555,547,554,556,553,516,509,511,503,511,506,515,513,518,469,465,471,471,473,473,468,464,418,428,447,441,447,445,436,435,436,517,533,527,521,526,524,541,527,539,541,548,547,539,541,546,537,536,526,520,513,521,521,526,522,528,519,539,558,547,552,547,556,551,541,563,496,492,490,513,493,487,501,482,504,493,497,498,490,500,490,495,586,556,568,563,568,585,580,575,568,508,502,488,499,502,497,507,499,501,477,474,477,467,475,477,475,571,541,536,555,552,538,536,557,544,492,466,473,482,467,477,484,482,473,518,513,511,496,493,514,497,507,501,504,553,540,542,529,544,533,530,539,530,538,474,475,478,482,478,477,490,483,546,562,541,560,555,558,557,559,556,570,562,561,562,550,562,555,560,521,506,498,497,498,504,497,506,509,498,473,489,491,485,480,480,478,486,565,565,563,568,549,554,554,553,551,530,505,513,501,515,519,500,517,521,501,469,490,481,473,483,481,494,480,482,462,474,465,472,464,471,465,468,468,466,467,472,422,420,445,432,441,426,432,430,438,521,538,538,543,528,541,545,545,582,564,565,560,566,570,564,566,566,570,543,557,559,556,557,549,554,548,512,517,504,522,508,514,518,470,477,485,483,479,478,482,479,489,491,505,483,503,493,497,554,563,566,561,572,551,568,544,562,566,525,497,497,507,501,498,509,518,506,508,492,500,494,486,491,485,497,498,487,497,563,551,548,547,543,550,555,552,542,490,488,504,494,498,500,508,500,498,560,547,535,544,545,545,547,542,546,579,562,564,564,550,570,559,533,520,525,517,507,525,526,517,516,517,598,574,577,570,592,576,581,585,546,531,526,527,534,531,531,536,530,535,575,560,544,559,558,552,555,548,547,526,512,520,506,503,507,519,575,556,555,554,553,552,546,555,561,498,489,499,493,493,496,492,494,493,511,507,518,521,516,514,506,513,569,565,564,564,566,564,549,551,551,548,551,549,554,547,553,555,475,504,496,497,488,502,502,495,500,473,471,469,471,464,479,480,478,537,554,544,546,537,544,553,552,544,523,525,523,528,525,525,526,528,525,550,561,564,552,544,547,546,541,549,554,555,498,491,501,487,494,502,473,492,498,485,484,479,478,484,480,486,482,589,561,565,575,569,565,554,557,554,502,515,503,518,497,512,513,503,500,515,514,516,511,510,505,509,511,505,486,486,481,491,490,482,498,493,485,498,493,486,484,473,477,491,481,475,485,481,499,484,486,492,487,486,489,492,467,470,473,475,473,470,469,469,471,504,496,493,510,504,502,500,491,499,507,497,537,516,526,515,523,525,526,535,521,490,494,499,484,496,498,493,501,500,500,578,559,537,553,557,551,540,554,531,526,509,510,518,519,519,513,522,537,537,544,544,546,552,548,542,550,531,539,540,540,537,532,536,578,558,572,588,579,580,596,577,573,572,525,522,524,524,519,527,531,514,528,488,481,488,480,482,490,484,482,484,487,477,461,463,472,462,469,462,464,585,559,566,572,574,566,562,564,573,565,543,551,565,563,558,558,550,559,493,512,508,517,514,509,519,520,447,466,462,461,457,460,464,458,454,525,504,494,513,502,494,490,505,516,530,547,536,533,545,549,545,530,532,536,477,484,479,486,492,478,481,476,493,491,543,559,560,558,551,569,557,563,550,566,564,557,565,569,566,573,564,566,576,576,531,530,538,522,525,520,520,526,524,525,500,509,509,508,507,506,506,505,473,482,477,482,472,485,483,480,485,483,508,517,510,505,509,500,510,545,542,537,533,536,539,532,544,539,527,518,519,527,520,517,520,521,522,563,543,539,547,552,552,542,547,545,545,554,524,540,541,533,544,537,540,536,542,537,530,575,569,582,579,580,576,583,527,523,524,518,531,521,523,522,529,524,494,501,504,503,503,504,493,500,503,507,481,484,486,482,490,493,489,489,492,511,514,508,500,511,516,510,512,507,563,545,541,547,543,541,545,501,490,505,487,501,502,497,504,502,489,512,500,505,497,503,494,501,489,526,540,545,553,533,549,535,534,546,540,484,477,491,475,486,488,480,476,454,445,453,433,446,454,438,522,535,546,551,528,550,549,551,532,541,543,545,543,545,550,546,547,549,476,487,487,509,506,496,486,500,488,499,462,461,464,466,476,472,465,466,472,464,466,489,471,470,477,471,474,481,466,478,477,554,556,557,556,560,567,543,568,564,518,509,500,516,507,504,505,505,520,503,473,473,463,460,464,452,462,457,460,455,445,461,460,455,458,456,459,460,568,568,564,564,566,573,560,560,561,557,558,567,561,557,557,566,572,566,572,505,519,515,526,530,526,529,518,513,529,509,508,501,504,509,513,515,511,502,496,507,502,503,508,502,505,497,476,474,482,474,479,468,483,490,471,467,458,460,461,457,468,461,459,460,487,498,500,496,498,501,498,497,505,555,556,550,558,556,555,557,548,540,538,540,536,530,542,538,532,590,575,568,572,577,570,570,561,563,514,515,500,523,514,506,512,498,515,503,477,473,474,467,472,470,476,467,478,486,497,509,503,507,501,500,511,550,561,554,561,543,548,554,545,555,504,508,520,505,506,515,511,502,513,479,471,482,484,470,480,487,481,504,508,512,517,504,506,506,494,508,516,546,548,543,548,542,544,539,542,544,545,544,526,519,521,511,517,511,522,519,518,504,521,515,512,510,507,515,545,562,559,551,552,560,557,557,560,540,561,555,552,561,551,557,567,554,505,503,495,493,491,496,500,499,497,504,497,501,502,507,503,511,562,584,577,563,566,576,564,568,587,526,512,518,514,514,503,510,498,475,486,484,483,491,485,484,490,491,563,562,560,553,569,570,562,559,552,504,529,524,517,529,525,519,526,520,517,513,519,517,512,517,514,515,511,504,495,502,503,503,503,504,510,480,483,472,477,478,476,482,475,509,508,509,502,497,507,499,496,505,556,573,566,571,564,578,570,574,562,557,559,557,554,565,567,555,559,565,536,530,529,513,526,527,517,482,480,476,479,482,479,485,481,478,475,478,475,490,472,471,466,469,470,467,459,479,468,563,558,557,565,553,553,566,572,547,565,571,548,559,545,548,539,545,503,514,514,517,519,522,511,518,526,526,519,588,582,555,566,570,560,582,579,580,500,515,504,491,501,498,501,500,501,503,513,502,507,500,511,493,502,503,550,558,567,576,560,581,576,583,466,483,494,494,481,498,489,486,480,527,544,543,538,539,546,538,536,532,537,526,555,547,537,549,550,539,546,554,547,551,542,552,542,547,540,557,551,551,518,495,489,508,502,503,500,607,596,606,593,582,597,576,605,594,590,571,555,552,556,558,546,555,563,542,501,483,486,487,475,479,483,484,489,462,442,443,432,428,436,451,458,435,441,516,537,522,528,533,524,524,529,533,549,543,541,543,550,542,540,548,555,551,566,558,553,540,563,560,504,515,528,520,522,516,527,504,523,488,489,491,495,487,493,502,488,497,489,487,486,486,482,489,490,509,500,504,502,505,505,505,507,502,484,509,509,501,503,507,507,508,493,474,474,481,481,476,473,477,482,487,469,464,477,477,462,472,462,468,466,570,574,570,571,554,567,560,555,555,552,560,553,553,555,557,526,509,503,511,508,506,511,509,517,504,506,471,474,474,474,468,469,471,476,455,461,457,465,456,472,472,466,519,545,553,533,549,549,533,540,536,543,471,483,473,480,479,470,496,474,475,475,479,479,488,489,492,489,491,481,489,515,506,510,507,506,504,506,554,542,541,545,540,543,538,539,574,570,579,560,565,565,572,571,568,570,555,561,557,551,547,541,556,549,530,509,514,508,518,515,522,506,508,521,481,479,481,482,476,485,484,469,482,476,478,484,497,497,501,495,497,503,581,589,584,589,580,580,575,579,565,588,515,492,497,500,502,501,506,499,472,461,468,477,478,467,473,483,466,561,555,568,560,567,570,562,565,570,572,571,555,570,568,575,561,566,524,525,506,515,517,510,529,517,494,486,487,479,483,481,482,488,484,492,493,496,499,490,495,489,491,491,499,542,575,566,566,565,575,567,575,564,506,500,508,503,505,512,525,513,477,474,481,483,476,479,477,477,473,470,478,478,484,480,478,482,483,489,514,497,497,501,504,504,497,488,504,540,546,543,539,539,544,549,550,541,536,529,521,520,506,518,525,523,526,518,528,568,576,585,596,596,584,598,600,546,537,537,534,531,530,542,539,570,557,560,560,553,574,573,562,568,576,556,516,504,510,507,509,499,515,509,462,473,466,462,463,457,465,469,473,460,503,506,504,510,519,506,507,498,508,503,505,563,565,571,571,563,563,550,557,562,556,534,535,525,510,527,518,532,529,534,511,498,502,504,505,500,504,500,498,500,483,483,475,474,480,481,480,443,457,473,446,464,462,464,467,535,548,535,538,535,526,538,544,541,553,550,542,547,538,551,536,548,541,541,533,538,552,555,549,544,544,539,538,546,554,529,522,527,519,520,517,512,522,562,561,567,562,551,565,558,558,514,526,524,528,534,532,530,528,529,488,481,474,478,476,479,483,471,483,473,475,487,503,503,517,497,505,502,512,505,549,539,542,541,530,547,539,547,539,502,517,508,515,509,509,515,506,519,521,521,529,532,525,530,521,512,597,585,586,586,571,574,578,581,576,597,527,517,516,507,520,514,516,509,517,543,560,550,558,563,558,553,555,558,562,555,549,548,549,565,502,491,507,501,503,505,514,499,495,506,516,520,513,521,511,522,515,580,561,551,550,561,543,547,555,539,494,488,502,492,492,502,488,482,493,492,465,477,471,473,474,473,472,551,563,554,561,582,581,572,551,459,484,483,479,498,482,469,473,482,471,542,545,550,552,550,537,547,541,537,548,550,576,571,564,570,569,567,554,521,514,513,504,510,509,509,512,525,525,527,525,531,539,534,534,525,525,519,528,531,530,524,524,528,525,529,533,542,538,541,555,549,545,549,543,509,510,511,497,518,511,512,510,509,512,529,538,539,538,530,535,539,537,526,532,578,555,550,552,562,558,555,571,554,555,505,517,516,521,517,518,517,519,519,571,588,574,577,574,570,574,584,564,503,500,498,499,501,500,516,496,495,485,481,480,485,486,484,476,570,542,561,565,560,566,559,558,551,565,472,487,489,497,504,485,504,473,470,460,460,451,460,459,600,584,595,585,585,581,584,590,580,593,523,536,536,529,536,534,550,537,520,474,496,489,487,491,486,489,488,495,487,498,501,504,504,501,503,516,511,498,538,522,526,535,530,525,533,528,527,512,515,507,510,512,512,508,508,514,568,546,566,557,562,551,567,568,514,514,522,515,501,506,517,514,470,452,462,451,461,461,463,462,490,467,474,475,473,477,470,478,585,564,566,570,569,563,569,564,551,552,526,506,514,517,507,514,521,507,514,515,500,499,502,505,497,505,499,502,496,520,530,534,533,530,531,525,524,524,535,532,535,550,547,545,548,542,547,569,561,555,559,552,554,553,560,495,496,498,497,498,490,500,508,515,462,451,462,455,460,463,456,467,535,549,546,546,552,555,538,543,556,578,570,572,572,569,562,573,576,538,543,547,546,535,535,536,556,550,561,548,566,552,561,559,562,541,525,516,527,526,526,530,522,527,473,484,485,489,486,486,486,490,482,489,456,461,461,460,461,456,466,459,450,465,458,450,460,464,461,460,459,459,461,542,536,534,537,541,530,539,536,543,532,537,539,530,542,533,544,538,534,541,525,549,552,535,552,534,537,556,544,489,488,488,496,489,490,490,494,499,495,551,550,546,547,548,545,541,549,534,556,505,513,508,512,517,511,509,507,518,512,497,504,504,508,507,508,499,504,499,536,542,537,542,546,542,537,542,571,565,567,562,559,566,563,565,550,563,543,530,532,540,541,542,536,538,547,567,559,563,557,556,564,566,566,573,489,486,504,512,508,508,495,516,506,506,487,482,491,495,482,488,481,486,479,574,571,579,557,570,559,562,544,563,518,512,535,518,535,522,529,520,517,511,498,513,519,512,513,516,512,522,510,518,483,489,495,501,500,499,498,496,498,475,485,476,488,480,479,487,480,474,472,475,468,479,467,470,460,553,544,553,548,544,546,530,554,523,523,519,526,528,523,522,523,525,518,547,535,540,538,543,535,530,540,544,542,533,532,531,534,533,530,529,547,566,562,555,557,560,559,551,499,498,496,503,488,506,492,491,501,462,460,457,464,464,467,457,456,467,465,470,470,567,547,559,557,543,559,552,556,557,557,548,545,558,548,545,548,553,492,500,512,493,488,492,507,503,509,569,543,567,555,549,546,564,539,550,498,497,501,505,494,511,498,502,506,518,506,508,516,517,514,512,511,511,516,551,566,576,555,556,555,557,559,546,492,501,500,493,496,499,503,492,504,506,509,501,502,492,500,495,502,493,497,497,561,569,566,581,574,576,575,508,521,528,517,523,520,523,517,534,498,497,502,497,503,506,501,502,504,491,487,488,482,477,481,484,486,485,489,480,479,485,483,488,474,486,492,483,481,562,559,560,573,566,563,559,569,568,526,534,520,518,521,521,512,520,519,516,512,513,511,508,503,502,512,511,506,507,503,502,500,506,509,507,509,493,490,480,486,496,482,489,496,496,484,487,483,484,487,487,483,487,476,475,477,468,471,477,475,481,496,498,494,496,501,504,493,554,561,571,561,572,571,571,570,568,579,500,519,504,524,530,517,530,517,525,490,498,504,503,495,492,496,494,479,471,463,476,479,470,472,475,475,501,499,494,499,501,493,495,498,527,530,517,520,523,529,534,534,515,523,520,499,514,505,512,507,504,509,514,539,551,561,552,555,545,538,564,504,518,526,515,519,515,520,520,518,513,545,564,570,587,582,562,575,578,568,512,494,490,495,507,493,498,494,501,462,476,467,468,468,467,469,468,468,564,566,565,565,570,560,571,573,573,566,551,564,555,554,562,553,552,561,567,503,501,509,489,511,506,495,504,460,472,470,474,475,481,472,471,485,545,533,549,549,556,542,546,554,551,550,523,528,522,524,530,528,522,522,526,522,530,552,565,570,558,564,551,559,561,568,518,518,527,515,525,514,516,515,523,481,484,489,482,483,480,485,478,484,479,510,506,517,516,511,515,516,509,534,540,541,546,539,550,544,542,540,544,529,528,530,531,521,531,558,546,551,533,544,555,546,537,542,492,487,470,480,483,477,483,488,480,434,434,436,450,443,434,440,436,534,522,524,515,519,522,520,526,519,525,555,547,542,544,542,549,542,543,541,551,559,551,564,559,563,567,552,560,507,530,519,520,522,511,522,526,512,524,486,487,486,489,495,487,485,491,512,507,503,523,508,505,511,512,539,548,546,546,541,549,538,537,546,518,524,525,516,523,522,521,523,526,522,519,560,561,552,551,564,555,549,558,540,520,519,519,529,532,520,522,518,527,495,477,468,467,487,479,480,474,565,563,561,551,563,562,555,563,558,499,504,501,507,493,502,491,490,509,546,545,560,554,544,561,542,550,557,479,496,492,498,487,505,492,497,495,518,507,517,509,503,507,509,506,513,508,544,546,542,544,542,544,551,537,547,545,581,555,553,556,559,549,564,558,552,567,571,496,502,504,509,523,519,511,527,559,584,578,569,572,568,555,559,568,505,501,481,475,467,507,498,535,549,552,566,555,551,544,553,542,552,553,554,552,559,554,546,547,498,494,503,503,490,504,492,506,507,489,480,500,487,482,481,487,479,559,561,558,560,563,559,562,579,558,552,491,479,498,494,503,486,498,509,508,452,441,439,453,453,453,451,441,449,459,524,536,541,543,545,545,541,543,548,527,543,535,537,540,543,540,548,496,500,501,499,495,491,491,488,546,531,551,543,556,544,544,545,546,518,518,519,514,517,515,510,541,553,543,544,545,546,546,541,547,540,573,549,559,551,560,564,562,553,545,572,491,506,496,510,501,495,512,514,512,514,522,518,529,520,516,521,521,522,513,549,558,548,563,557,557,558,565,549,551,556,495,505,500,500,499,505,504,505,509,510,498,500,502,505,498,494,496,502,514,515,504,509,510,506,514,517,533,521,536,540,521,528,526,525,530,541,528,532,526,528,532,530,531,533,530,540,547,545,548,541,549,558,554,539,498,487,480,482,480,474,476,483,496,563,545,548,550,555,552,552,558,539,572,569,554,562,551,561,569,517,516,522,536,517,523,530,523,514,504,512,514,506,511,506,508,512,506,504,513,486,488,491,500,489,486,487,492,487,487,495,485,493,486,488,497,492,506,495,501,500,502,505,500,497,502,484,507,499,496,500,499,495,503,506,477,492,494,492,492,496,491,493,484,472,471,472,479,470,472,471,473,484,490,484,487,486,484,485,489,509,501,508,504,503,502,508,504,499,565,553,550,554,546,554,557,557,545,551,546,545,543,548,551,549,551,551,544,521,508,511,513,507,506,511,499,514,492,513,511,511,504,503,504,499,508,517,543,538,537,523,537,530,541,526,532,497,513,514,509,509,515,507,510,520,560,575,573,574,569,557,573,579,492,501,498,497,495,504,490,502,497,469,466,463,469,465,463,462,469,476,464,555,571,564,561,557,569,569,572,561,540,556,552,550,554,555,541,556,494,501,494,512,501,505,513,494,497,501,497,498,497,490,492,500,527,545,534,537,544,540,539,536,542,543,563,549,575,552,553,554,563,550,562,549,520,517,520,523,521,517,518,514,523,566,579,574,576,580,578,565,565,590,510,514,510,505,495,509,503,506,480,470,485,479,470,486,471,477,523,549,556,547,560,568,558,547,549,570,477,492,481,485,489,495,496,496,591,591,581,589,576,594,581,583,585,586,588,557,550,543,543,548,548,549,544,541,548,544,550,548,548,552,550,550,562,557,560,550,569,553,550,543,548,561,528,525,516,513,518,503,515,530,491,493,495,494,497,500,501,502,500,495,490,484,500,488,491,489,492,476,486,456,470,455,461,467,469,461,476,467,470,437,437,432,437,441,436,438,433,434,506,490,483,500,484,497,500,487,539,550,535,542,539,538,541,535,543,533,526,521,525,519,520,522,514,521,519,555,545,536,545,535,547,535,542,543,592,568,552,570,560,567,573,565,494,506,494,508,501,488,500,479,495,501,558,555,562,555,563,560,575,564,574,566,549,559,555,560,556,512,494,495,508,498,507,494,488,511,520,510,521,524,518,518,516,522,516,549,554,554,552,557,544,545,552,547,480,493,506,502,509,502,504,501,499,492,522,509,504,517,500,507,494,505,508,506,537,535,547,539,546,545,546,548,540,546,488,506,496,495,504,493,500,489,506,494,497,486,490,487,493,498,492,496,486,496,495,502,548,540,545,543,547,542,539,551,547,549,568,568,575,580,576,567,564,569,577,575,525,523,524,515,523,531,511,524,526,483,483,494,486,488,485,483,485,514,503,498,508,502,503,502,500,508,501,558,566,562,566,564,569,575,560,553,546,525,527,527,534,537,525,529,528,520,510,508,506,504,504,512,510,506,504,532,557,564,555,554,557,555,553,550,550,479,486,507,498,503,494,497,514,464,469,471,466,473,469,472,471,471,467,471,479,467,474,468,467,473,484,472,464,574,544,548,551,538,556,548,557,539,500,492,493,495,495,498,490,498,503,511,517,508,509,516,507,511,503,568,551,559,567,561,557,570,557,493,517,523,512,518,510,521,499,499,498,497,499,498,492,499,471,484,481,484,483,482,485,489,480,481,485,442,454,454,463,463,455,458,454,456,455,438,423,436,434,426,438,434,445,448,505,513,510,514,519,516,517,520,518,516,519,510,510,521,519,525,527,525,535,531,532,531,533,527,537,557,577,560,569,564,573,577,571,574,550,552,553,539,555,552,557,553,534,509,524,509,497,505,525,530,512,510,463,471,474,479,477,492,476,469,484,489,498,498,500,503,502,508,506,548,552,563,553,562,554,553,548,537,532,540,540,540,537,544,545,542,589,587,580,585,571,566,584,578,494,498,490,511,503,501,504,500,497,502,488,496,489,494,499,490,504,496,555,563,568,567,570,571,579,572,551,530,518,516,516,524,506,509,515,533,526,528,533,516,534,520,525,517,582,585,569,587,595,583,573,579,576,537,528,533,533,541,545,542,560,555,552,576,572,566,573,561,565,563,497,505,514,515,511,498,521,513,518,451,458,457,464,463,468,463,464,460,492,485,488,491,476,475,475,486,482,584,575,567,566,561,564,566,571,569,491,494,500,495,489,503,498,504,467,456,457,465,459,454,457,461,462,460,552,542,546,547,557,549,544,552,587,565,561,569,577,575,578,578,567,567,516,530,525,534,532,536,519,483,476,486,475,473,477,486,486,554,557,562,546,549,544,553,560,560,553,565,563,556,555,567,559,560,561,515,506,518,508,509,507,514,522,524,514,471,474,468,469,461,472,459,465,471,419,439,448,451,450,437,438,443,430,440,522,508,519,510,514,507,512,508,530,528,532,525,527,525,524,522,551,570,572,575,561,571,550,562,564,493,508,513,507,517,503,513,509,553,549,550,570,555,556,561,553,556,565,557,557,547,561,576,558,555,549,488,503,508,498,489,497,498,500,500,500,501,500,495,504,504,564,556,561,567,573,567,579,560,580,492,492,492,506,505,508,500,492,505,512,479,488,483,484,487,476,497,490,562,548,567,549,553,562,568,554,573,565,517,524,524,514,509,515,525,519,525,517,503,493,501,505,494,491,491,497,497,500,476,456,461,456,466,452,454,469,469,501,494,483,491,489,498,490,490,531,550,539,541,543,538,545,584,559,575,567,572,559,568,575,561,555,529,522,527,517,521,518,533,523,481,494,483,488,483,489,487,482,484,468,462,462,447,465,460,461,464,454,464,462,468,461,455,471,462,461,467,462,466,456,547,565,557,564,546,556,557,553,538,537,548,557,545,543,548,551,547,548,549,556,481,482,492,489,491,498,492,473,495,493,487,573,588,582,585,583,574,586,590,583,518,531,514,532,525,533,528,534,524,533,549,558,570,563,561,562,568,562,562,553,525,537,531,536,530,532,529,532,538,533,539,535,541,553,537,533,535,533,508,517,514,515,511,503,518,514,513,567,566,560,578,565,570,567,575,580,528,529,519,513,531,530,515,507,521,503,499,492,487,494,496,488,496,496,507,506,500,507,506,510,514,508,506,504,513,540,545,549,545,537,541,533,544,491,488,499,496,484,496,493,495,502,500,496,500,496,503,496,492,544,553,552,547,561,553,551,557,543,521,527,533,530,535,525,535,530,466,492,475,472,479,471,475,479,473,551,560,556,550,562,564,562,553,552,561,554,556,558,553,549,549,520,511,503,510,513,511,515,520,516,523,458,462,456,463,464,453,460,454,457,464,456,465,465,473,474,469,477,461,586,589,590,589,587,588,573,601,522,531,527,530,531,526,536,526,562,568,566,548,574,554,545,547,553,476,506,492,503,487,485,485,569,546,559,551,551,550,556,565,547,514,486,491,486,496,496,498,491,501,492,554,552,566,556,545,558,557,536,541,550,496,490,501,486,495,501,497,486,503,493,489,492,492,495,491,487,543,553,553,561,540,555,553,564,547,550,551,552,547,549,553,544,547,544,506,498,486,503,502,506,490,497,514,503,497,497,502,503,505,514,511,535,558,538,550,550,553,548,551,546,502,510,517,521,514,518,529,528,528,599,592,583,594,589,590,594,583,579,581,503,504,511,518,507,508,506,514,530,548,549,534,531,534,536,582,568,567,569,562,562,561,562,556,563,512,533,528,532,528,535,527,525,518,553,548,562,546,555,554,556,557,564,545,519,513,507,508,514,496,496,501,510,564,555,557,563,563,553,551,557,562,491,501,493,491,499,494,474,482,485,496,488,486,464,474,460,463,471,465,473,461,467,465,465,528,530,543,540,536,546,539,533,540,520,522,525,528,527,527,523,521,529,520,513,521,522,517,519,525,513,523,509,548,544,537,544,536,543,552,542,543,545,553,556,553,557,563,567,562,556,518,518,517,513,529,513,513,535,523,514,495,482,485,488,491,489,480,482,484,509,501,499,500,505,510,511,499,541,551,551,547,541,540,539,550,544,554,568,561,562,556,558,551,558,570,562,489,504,494,493,494,493,506,496,487,565,562,563,558,552,554,553,548,537,555,552,557,554,555,541,465,481,486,483,486,489,501,490,525,537,529,530,533,537,540,534,533,531,547,542,541,538,531,537,548,525,543,541,545,544,542,543,536,554,520,510,503,509,510,510,506,506,507,519,531,527,522,535,524,531,521,527,529,570,566,561,552,562,549,557,551,550,513,477,504,504,489,496,508,479,498,433,449,442,435,424,434,435,442,451,525,518,520,515,511,523,511,517,521,540,537,542,546,554,541,547,551,538,556,554,551,557,554,560,554,553,510,516,506,529,511,520,518,515,511,499,483,484,492,483,494,489,492,489,483,469,462,476,480,478,463,479,475,538,555,552,551,562,549,553,555,533,555,522,516,510,516,520,516,517,583,579,586,581,557,576,578,573,556,585,522,505,488,497,503,497,506,501,508,494,503,485,491,492,485,494,489,496,561,576,578,557,565,562,574,501,489,483,496,500,480,511,496,562,573,572,578,566,583,570,586,573,566,535,518,508,523,507,530,505,521,509,590,578,595,586,573,586,579,581,580,557,535,542,540,548,545,546,539,530,528,528,528,532,536,538,531,560,547,561,561,554,568,574,563,557,530,537,535,539,530,535,536,562,549,556,563,555,566,552,545,561,492,495,494,505,492,501,500,497,499,498,495,490,493,504,505,494,500,493,508,500,505,507,501,505,550,538,542,537,544,541,540,539,545,548,562,562,567,558,555,552,566,560,531,537,528,540,539,528,531,537,466,483,474,483,477,478,496,472,458,471,469,474,475,476,471,469,480,532,548,553,536,543,550,546,555,547,480,500,495,502,499,497,508,501,508,492,489,451,452,449,449,441,453,447,436,443,449,543,527,532,519,529,531,517,531,532,523,512,518,512,508,514,509,510,519,514,514,525,531,526,530,526,527,537,532,536,563,554,566,559,553,558,573,563,570,564,562,540,537,538,532,532,524,539,532,539,532,532,518,523,528,527,522,526,525,525,527,541,531,536,535,539,530,541,483,486,471,487,488,470,477,480,487,530,544,550,542,548,542,550,544,548,542,542,566,542,547,556,556,551,548,553,516,518,525,529,528,528,524,527,544,528,538,537,542,537,531,542,513,515,507,517,508,519,512,519,537,520,525,520,512,521,514,524,525,598,585,589,585,584,577,595,585,574,537,550,560,560,550,551,553,551,551,538,509,516,518,523,517,517,511,501,510,500,510,507,506,500,507,481,480,487,464,483,488,488,487,480,460,473,458,458,467,449,471,466,471,462,517,508,495,504,499,503,507,505,512,506,508,520,541,529,537,543,538,534,537,527,494,480,472,475,477,472,479,484,469,561,586,580,587,594,586,591,583,572,506,504,499,498,505,514,507,497,531,528,522,522,532,520,527,520,513,518,531,523,526,529,531,530,525,522,550,548,561,567,565,556,555,570,565,528,523,525,525,529,510,521,536,557,552,560,561,560,562,562,550,561,489,489,504,502,504,501,505,496,506,529,544,552,531,528,549,561,552,511,498,499,503,504,501,491,508,508,508,581,568,561,562,582,567,562,566,551,574,577,502,487,511,497,507,503,501,508,492,483,479,459,475,463,477,474,482,471,475,528,548,567,547,544,552,545,542,546,543,520,511,502,506,510,520,516,511,473,484,468,484,476,488,492,436,443,436,438,443,439,435,457,441,445,442,441,456,445,456,451,548,534,528,540,523,534,531,525,534,508,519,520,522,519,520,516,517,520,518,526,531,529,529,523,531,528,526,527,524,566,552,577,561,563,579,568,562,561,552,545,543,538,548,548,533,539,545,533,524,527,533,536,533,526,535,533,519,524,517,525,521,520,525,523,519,523,544,528,541,536,539,543,536,541,533,538,537,585,566,563,553,562,563,562,552,532,515,519,521,529,517,524,523,504,501,499,511,504,499,496,505,503,546,537,544,543,535,534,536,573,559,552,562,561,573,562,568,549,565,494,506,499,496,515,503,506,505,497,506,554,541,538,532,536,547,529,531,527,550,564,556,568,569,558,567,542,545,548,535,533,541,546,544,555,537,496,495,505,521,503,510,508,505,478,473,482,484,483,489,483,492,485,476,478,478,479,475,482,481,481,474,448,447,453,448,447,446,447,454,452,475,498,497,486,488,499,492,481,524,535,533,539,536,533,547,546,553,555,556,571,566,552,562,485,486,511,510,496,502,505,485,504,476,436,440,439,434,444,439,449,443,432,441,513,516,517,521,521,518,516,511,513,510,516,517,520,531,516,519,522,527,516,519,524,553,538,549,546,539,543,544,543,536,554,565,551,549,540,559,556,549,550,522,509,508,505,515,510,522,461,456,456,452,455,447,456,452,461,463,460,475,482,461,468,458,468,485,486,606,597,580,588,582,601,588,581,586,490,514,507,519,499,504,509,502,522,507,541,537,541,549,535,552,537,536,548,565,564,555,560,565,551,559,543,558,517,527,536,523,520,540,530,525,523,515,518,518,518,517,516,513,514,513,511,567,559,551,549,554,552,550,544,543,549,482,505,497,492,501,493,506,495,506,458,466,466,470,467,468,479,471,469,502,503,503,500,501,496,497,502,503,535,552,552,546,544,543,552,543,518,522,506,519,530,501,538,520,521,514,498,499,500,495,494,498,495,497,493,457,462,452,466,461,460,462,460,450,455,463,450,451,459,466,456,446,539,556,564,559,555,555,556,565,549,549,550,544,556,545,564,544,504,509,494,487,495,492,496,492,508,495,613,587,591,603,585,594,589,602,593,586,605,564,552,550,544,549,548,551,550,549,555,524,536,528,520,516,528,528,529,528,453,454,473,485,468,478,462,476,553,531,541,539,541,528,543,536,537,538,574,550,576,559,574,571,583,534,528,542,536,532,538,542,539,539,535,541,532,536,529,539,533,536,532,537,515,533,528,527,521,527,513,526,560,565,572,561,555,564,560,556,549,570,528,509,518,520,517,517,514,519,526,542,531,526,535,530,530,525,497,507,504,511,502,508,515,509,533,526,521,515,539,533,529,526,491,474,468,471,469,471,476,473,562,579,576,577,570,588,580,591,535,531,536,530,536,532,524,528,504,511,520,517,524,528,522,512,507,581,583,592,584,588,583,590,594,582,576,525,530,543,536,542,533,539,532,535,540,531,557,552,544,558,551,557,527,542,543,465,480,488,484,486,472,473,480,482,489,486,484,484,485,482,479,491,478,491,497,503,502,507,504,499,502,499,514,546,531,550,548,543,533,539,548,542,538,543,581,559,568,559,565,564,570,557,564,572,556,544,533,532,542,547,531,539,549,543,482,496,473,492,488,497,487,485,494,479,478,479,469,475,479,475,467,465,464,469,552,537,544,547,540,546,544,544,526,526,526,519,519,525,528,520,524,519,525,533,532,524,533,542,539,526,534,529,484,496,494,498,498,490,495,494,491,493,603,586,597,619,585,589,587,542,565,555,548,556,555,561,559,526,507,512,502,526,522,516,528,518,471,490,481,486,478,475,479,489,483,506,508,504,518,510,515,512,511,511,508,513,510,555,544,554,558,553,546,550,546,554,543,521,511,504,490,495,495,492,494,508,469,462,461,447,454,466,457,461,455,461,467,468,464,460,460,460,449,539,536,544,527,527,536,540,541,532,548,541,545,544,544,546,551,544,557,546,544,539,541,558,540,548,492,478,492,484,480,480,473,476,463,467,476,472,478,470,484,471,475,602,571,578,576,560,564,588,589,568,475,476,483,475,474,469,482,467,525,512,514,511,511,514,514,527,514,523,532,531,545,536,532,532,527,525,566,570,568,559,569,576,572,573,549,538,546,543,553,547,550,549,502,501,488,495,504,497,490,504,495,503,507,512,503,505,506,498,505,546,537,543,535,543,545,538,541,543,550,561,563,565,559,558,556,564,508,485,481,511,512,500,500,426,444,438,426,430,444,450,444,439,523,518,520,502,515,514,518,515,520,531,515,513,521,512,522,521,518,514,533,534,543,538,534,527,527,530,527,532,532,526,551,552,546,541,540,552,534,538,470,470,484,495,491,488,490,476,572,554,532,543,555,560,554,539,509,514,507,506,506,504,507,504,504,506,527,521,506,519,514,516,522,596,577,581,577,576,572,587,580,572,545,561,556,545,551,559,554,560,548,554,556,549,550,547,551,552,558,553,524,513,529,533,524,506,513,516,534,507,500,503,502,500,512,509,500,501,476,489,484,495,493,486,495,494,492,490,461,457,461,466,471,460,451,460,459,494,498,518,511,503,500,519,510,506,571,548,562,561,570,560,560,559,555,482,496,489,491,502,497,505,494,506,496,500,507,506,512,508,504,504,509,525,550,551,554,553,536,540,539,547,538,545,480,499,482,498,480,481,499,500,488,498,580,538,553,554,547,547,553,556,540,542,519,500,503,503,506,499,510,512,511,581,549,559,559,550,565,569,518,525,529,526,526,526,530,521,533,545,537,539,538,537,534,535,537,512,528,521,532,529,527,517,523,524,549,560,559,550,561,567,561,555,531,552,540,546,545,549,536,545,517,505,513,510,496,504,507,503,508,452,472,469,460,471,465,463,467,468,466,469,470,474,465,464,470,468,473,572,537,556,563,550,548,541,549,491,494,473,487,490,489,469,479,536,530,543,534,544,538,543,537,532,556,542,544,543,535,542,543,543,544,557,545,542,552,549,555,562,550,544,545,547,491,502,487,491,489,510,502,491,504,425,435,442,436,440,439,435,434,430,518,521,521,515,518,512,526,518,516,526,530,547,538,541,534,540,543,561,545,538,555,547,556,551,537,548,503,513,509,512,515,506,502,507,559,560,562,556,559,571,576,522,529,523,522,528,520,521,523,530,527,523,543,535,533,540,529,533,544,519,531,481,486,501,483,486,486,479,481,563,557,553,542,544,550,555,546,476,492,493,496,513,507,501,491,503,482,475,486,486,482,479,485,478,488,487,490,506,491,501,499,501,504,502,534,539,525,537,532,533,521,526,531,534,544,541,540,541,550,536,537,536,536,543,533,546,547,559,547,543,555,552,489,495,484,486,494,486,482,491,480,489,577,559,569,560,559,568,558,572,566,559,566,570,559,554,561,564,480,498,494,495,511,480,493,493,506,502,457,451,437,446,456,456,454,451,453,542,535,540,538,540,543,533,536,544,545,536,548,546,544,532,534,541,516,508,518,515,513,519,510,514,516,522,542,521,526,523,527,534,525,529,531,466,471,474,483,474,472,478,479,478,555,546,542,547,543,547,552,554,549,543,535,550,549,551,556,547,557,556,554,475,497,476,491,471,493,482,548,554,555,545,552,563,550,548,544,568,545,558,549,548,545,563,551,495,500,504,497,487,499,508,509,511,514,523,526,524,524,521,524,522,534,539,536,539,542,541,552,541,547,490,500,494,497,501,497,505,509,549,556,556,554,555,566,551,556,536,537,524,517,519,521,519,514,524,521,514,558,566,569,562,560,547,560,557,551,550,554,556,559,561,554,501,523,510,513,516,522,512,524,523,479,479,482,479,479,479,487,479,477,508,520,520,518,524,520,516,508,516,557,549,560,560,566,553,558,564,563,556,547,481,489,504,492,492,495,495,488,502,495,498,491,499,498,492,507,501,560,578,553,572,568,564,576,564,556,564,563,516,506,526,522,514,526,504,511,518,514,471,470,467,465,475,477,463,465,466,435,444,443,434,435,434,433,449,524,516,520,512,513,520,508,514,513,535,531,534,544,533,545,538,537,536,546,555,538,540,560,547,541,552,539,520,505,509,498,502,504,507,508,512,501,496,564,558,562,560,571,565,558,566,560,505,498,518,504,511,516,507,505,510,551,554,565,561,546,543,512,500,495,500,497,495,484,495,494,516,526,519,532,535,520,517,524,512,513,530,567,564,564,571,563,559,550,558,559,575,492,493,489,493,499,495,491,474,473,462,453,473,468,452,457,454,538,525,534,530,531,542,545,547,529,562,547,545,545,551,550,557,536,549,542,556,556,559,553,537,548,560,552,506,515,502,504,514,492,506,495,498,510,496,485,489,489,496,488,483,530,531,522,515,519,518,519,516,520,522,559,582,579,577,574,586,590,581,569,531,544,537,538,537,532,539,541,529,490,508,501,505,501,508,499,500,497,514,532,519,536,522,535,531,534,515,532,520,521,527,525,534,534,537,534,526,538,559,571,564,562,561,562,559,570,573,580,496,520,518,514,507,511,511,516,511,553,545,555,568,556,555,549,549,549,573,557,555,552,554,569,554,548,529,522,529,533,525,539,535,507,510,505,507,505,516,513,508,507,504,502,507,508,503,495,496,488,505,499,501,500,503,503,479,483,472,480,489,486,485,479,490,481,498,481,483,487,486,485,488,489,485,488,488,492,480,482,484,490,484,479,482,480,446,464,444,451,458,458,456,458,453,439,449,450,446,450,453,462,453,562,550,561,555,554,557,550,544,540,503,492,491,487,494,482,498,492,501,533,535,548,559,543,548,568,567,518,494,504,503,496,499,498,490,515,506,553,546,541,542,544,549,561,546,561,478,504,503,490,500,497,513,478,504,491,472,469,468,473,472,464,466,471,594,582,563,555,573,558,573,560,460,468,466,481,460,464,481,469,475,483,520,529,529,526,518,530,520,514,515,540,534,537,544,538,538,535,540,534,543,543,550,538,540,545,543,554,551,542,537,510,516,520,519,519,512,511,512,519,570,585,575,561,568,566,586,563,512,496,499,501,509,499,502,498,502,497,499,481,483,466,487,487,488,570,601,600,603,598,585,600,595,589,615,572,550,562,546,552,555,558,557,543,478,490,493,504,497,488,485,494,493,504,495,496,498,501,512,502,495,491,506,513,569,561,565,561,562,575,559,543,517,498,510,500,518,511,503,505,496,504,501,493,497,497,494,490,505,495,502,566,552,561,555,556,551,549,552,550,528,531,531,527,533,534,533,528,529,531,522,529,526,527,524,532,527,531,541,556,561,562,557,547,557,562,548,535,537,531,535,534,541,535,530,532,534,533,530,527,539,533,527,532,528,529,552,529,531,537,540,530,538,534,528,502,496,500,505,494,488,491,490,496,577,598,590,583,576,600,581,586,572,539,531,530,543,535,536,545,511,525,519,517,520,515,521,529,521,559,563,554,564,557,558,558,567,536,532,517,533,538,527,524,531,525,527,469,479,459,466,475,479,469,488,470,541,536,535,537,522,527,523,531,533,525,529,558,553,549,551,547,555,552,552,552,549,568,553,560,553,561,544,554,545,556,514,504,522,516,526,526,524,518,511,516,489,482,480,480,474,479,482,470,466,456,467,462,470,461,466,455,606,577,582,596,590,575,592,594,575,580,542,553,556,528,546,541,554,540,491,517,508,500,508,511,495,498,515,503,514,498,488,486,492,491,483,486,488,487,462,475,474,480,486,468,476,476,479,465,467,469,463,465,466,475,466,490,473,481,476,481,482,471,479,480,508,503,505,504,503,506,509,505,505,501,501,506,502,503,502,507,498,504,507,489,477,477,479,479,482,479,471,488,479,501,490,490,484,487,488,572,570,559,578,576,574,565,570,573,569,516,518,511,517,514,503,510,522,514,513,555,558,544,566,544,555,559,551,555,496,494,486,502,493,498,491,507,500,501,494,511,500,505,497,507,502,506,507,510,510,510,506,508,510,511,515,547,526,522,529,531,524,530,524,535,540,548,545,538,544,543,540,540,539,544,560,558,553,557,555,557,563,554,556,500,521,529,506,506,516,525,513,514,485,489,490,487,491,486,490,486,492,484,483,489,487,493,483,487,534,526,518,526,521,521,528,522,574,569,580,577,579,581,566,594,565,508,532,523,529,529,534,530,585,583,581,574,585,594,583,578,579,497,526,518,513,511,514,510,507,514,537,548,552,548,549,554,547,550,547,542,560,545,548,547,545,547,546,544,552,490,499,494,502,497,498,500,490,486,493,478,477,481,479,480,486,476,471,475,474,481,482,481,480,475,485,486,486,478,488,511,508,509,497,502,511,502,505,507,554,551,545,543,547,560,548,558,548,514,514,505,511,502,496,509,502,506,472,461,464,460,458,461,455,458,428,440,437,434,441,441,438,434,511,515,510,514,515,516,516,516,508,528,526,526,528,528,528,529,532,530,528,531,565,567,563,562,564,557,549,567,503,514,502,512,518,513,515,502,513,559,547,560,561,550,549,542,538,548,546,545,540,545,555,548,538,518,518,514,511,517,518,519,507,528,550,574,586,572,566,560,571,577,570,508,504,491,492,496,504,501,509,508,508,509,519,507,506,499,510,513,568,565,566,561,559,564,576,559,565,543,550,548,551,545,550,541,546,478,493,487,478,484,488,492,485,488,487,494,477,460,455,441,452,449,441,437,439,449,559,548,568,564,556,563,549,566,569,558,558,555,550,555,552,543,556,510,505,487,498,500,499,507,499,496,503,512,508,499,505,505,506,505,540,532,533,542,532,538,538,542,535,541,561,549,545,564,558,551,553,558,557,498,485,485,500,506,508,499,488,506,440,451,438,437,438,445,441,440,510,520,511,517,516,526,519,514,544,547,540,554,546,543,548,537,558,556,559,559,558,553,562,566,551,520,518,516,526,523,513,529,511,476,479,486,483,483,485,479,485,479,504,474,472,487,460,471,487,483,474,471,618,598,594,598,610,605,589,593,527,543,532,530,532,524,532,540,527,522,544,492,492,491,495,496,498,500,498,506,568,578,590,578,590,584,587,601,587,549,553,544,543,550,547,553,568,535,486,494,498,491,497,501,492,495,503,511,513,512,509,503,512,503,510,577,560,556,557,560,558,568,558,551,551,498,513,511,519,515,522,517,481,478,476,477,475,477,481,479,473,460,460,466,457,460,463,465,463,465,547,534,534,534,542,539,539,541,542,548,548,542,546,550,551,554,548,546,541,549,547,547,535,552,536,465,490,476,466,488,478,465,476,474,477,474,489,469,477,472,477,489,490,570,569,575,550,565,577,580,581,556,571,515,495,486,493,502,490,491,501,485,489,551,553,553,551,557,556,562,552,550,555,556,555,550,551,556,562,545,550,512,507,503,493,503,495,497,501,502,503,585,590,585,602,586,590,577,581,590,583,555,546,540,542,537,540,546,537,536,526,524,527,526,525,523,527,528,529,518,539,533,548,546,529,541,537,536,536,506,501,520,505,509,513,498,512,501,540,546,568,541,540,554,546,563,553,532,539,537,533,532,532,536,533,561,559,564,571,559,563,568,570,557,516,510,510,516,516,507,516,526,522,480,479,484,476,471,484,479,476,485,485,502,494,508,497,501,493,501,501,498,502,504,501,513,512,516,516,516,514,516,517,558,554,553,561,561,553,560,552,558,554,560,570,565,566,562,561,560,523,530,518,529,513,522,515,525,507,500,507,506,505,504,512,510,507,511,479,486,481,479,484,482,484,485,467,466,463,467,459,472,456,462,460,552,562,560,564,560,568,553,545,549,549,555,556,550,551,546,556,547,492,488,509,507,499,505,498,506,581,581,604,598,600,589,591,598,592,607,554,549,547,551,543,548,554,554,546,518,494,498,502,505,496,492,501,495,474,489,478,479,490,484,478,486,486,480,482,475,480,484,475,478,479,486,486,505,490,497,488,488,495,490,491,492,489,522,512,514,512,508,518,510,502,511,551,535,538,542,538,532,535,541,532,536,555,545,545,536,549,542,555,532,537,542,504,513,514,512,518,507,515,510,536,529,525,530,523,527,529,528,520,448,456,451,447,463,444,452,462,458,467,512,517,530,530,530,524,526,535,537,543,535,545,542,536,533,539,550,554,550,555,553,534,552,545,492,492,498,508,498,502,488,520,508,455,437,438,443,441,444,443,458,482,482,476,466,474,472,469,489,540,561,562,574,561,560,567,550,514,510,516,509,515,500,502,520,574,580,573,550,559,580,566,567,513,514,498,506,490,487,491,510,498,502,492,425,435,431,441,433,445,439,439,538,536,531,535,531,553,539,548,534,552,547,553,544,548,537,542,540,558,486,500,483,502,501,501,497,471,500,492,436,447,424,420,438,443,435,432,441,439,516,529,515,525,523,521,514,523,514,522,534,534,544,528,535,536,536,536,543,543,548,546,553,547,544,555,552,553,511,480,494,493,519,494,494,491,506,478,462,467,469,465,473,482,467,472,526,525,536,534,542,549,537,530,531,530,524,526,528,523,524,558,561,562,562,567,565,573,547,568,525,519,528,505,512,518,526,534,513,502,497,495,493,485,499,497,488,492,448,462,460,452,455,456,456,457,463,457,469,462,460,471,461,458,464,611,600,598,599,582,591,604,587,591,559,564,559,547,553,556,559,551,503,491,494,498,487,499,488,490,491,469,474,461,459,461,467,470,464,579,562,562,555,552,551,555,565,565,560,569,549,555,546,539,540,552,556,553,501,510,476,501,501,481,478,496,490,497,450,438,423,435,449,430,453,440,519,528,534,536,512,527,521,529,534,558,556,542,548,551,545,541,542,514,503,490,513,506,498,505,520,519,525,508,526,523,520,532,515,561,588,574,574,586,564,575,563,577,532,529,523,538,517,523,533,537,528,547,551,557,541,533,557,555,548,557,560,522,502,511,519,504,512,499,503,503,574,570,565,557,553,548,547,548,501,515,496,512,506,507,523,504,506,481,486,485,479,486,485,480,487,477,472,475,478,476,480,483,477,495,497,509,498,503,505,504,496,497,583,568,573,569,571,566,572,582,530,514,526,517,524,523,528,518,532,510,509,516,512,509,504,514,497,478,490,485,493,482,480,465,463,473,457,456,461,466,467,464,452,461,451,463,466,465,463,462,462,464,458,561,566,553,548,558,546,561,550,565,558,552,541,549,548,550,556,547,506,488,476,487,502,505,489,490,491,597,568,581,592,577,590,572,587,503,506,514,506,503,508,503,506,526,523,521,519,526,535,524,533,526,534,529,529,534,528,531,529,559,575,577,560,555,560,565,564,514,512,514,522,507,523,497,510,507,517,552,543,551,556,548,553,553,550,547,540,540,557,545,550,545,548,549,544,537,533,513,524,515,527,524,517,523,518,517,517,567,578,565,581,568,576,566,572,582,591,500,502,488,500,495,502,512,502,507,507,506,513,512,514,498,496,507,497,500,500,570,567,574,586,566,566,571,507,503,489,507,499,509,495,500,494,498,457,470,459,468,467,462,458,463,477,452,559,545,554,561,556,553,555,544,548,563,540,548,554,557,558,536,536,539,556,553,506,479,483,476,478,495,501,466,560,559,577,575,592,582,578,580,581,561,550,548,547,551,550,554,548,548,536,544,551,550,544,550,543,548,548,483,498,509,494,500,500,489,498,505,501,497,491,500,499,500,494,496,502,502,514,519,514,517,515,515,515,518,527,507,544,564,555,556,554,558,555,554,557,537,559,553,550,549,552,555,551,516,532,516,521,511,525,515,518,527,511,483,491,483,486,489,496,488,482,494,454,448,454,450,452,448,450,449,451,460,431,458,456,450,453,448,451,457,456,451,581,591,575,581,579,578,578,577,574,539,548,542,551,541,564,547,543,550,480,479,487,498,490,494,495,491,460,464,460,460,448,466,460,457,463,469,516,530,526,531,527,539,535,526,538,528,534,529,534,539,537,535,538,562,559,553,566,569,575,567,570,561,563,530,527,522,527,529,523,529,529,539,565,541,549,566,549,560,531,555,555,512,493,496,496,494,500,517,490,505,496,507,533,557,566,534,560,534,548,554,522,527,526,531,524,525,528,520,567,566,563,563,567,560,570,559,561,554,573,574,509,511,521,511,509,511,524,527,489,474,476,484,475,483,476,478,481,514,511,516,514,517,509,524,507,556,559,566,557,554,565,556,563,565,564,510,487,499,502,496,490,506,505,526,517,516,500,514,511,513,515,518,507,499,548,534,542,540,544,548,530,536,517,523,522,528,526,524,528,525,524,555,563,565,565,563,557,562,555,557,558,543,530,528,527,528,516,522,530,474,493,497,489,501,497,498,486,491,583,585,602,589,592,578,589,590,574,561,567,552,561,553,558,555,555,559,545,538,542,545,549,554,547,551,475,485,494,494,487,502,494,483,497,491,452,465,456,464,452,463,461,465,463,534,533,536,536,540,538,540,528,536,550,535,544,546,544,540,549,546,535,539,554,544,542,537,549,533,513,509,512,514,522,514,515,524,570,564,567,576,563,576,578,564,577,503,521,523,515,524,529,534,524,485,489,484,488,486,489,497,493,488,489,485,481,480,483,483,487,493,477,490,576,562,544,556,565,557,552,564,554,561,562,495,491,495,491,484,501,492,497,505,510,503,511,509,510,511,507,509,540,542,537,547,540,536,539,541,530,555,571,558,562,552,561,560,577,566,507,483,505,490,495,491,506,502,431,427,431,433,435,444,433,439,520,521,509,516,515,524,510,516,520,517,523,526,525,523,519,515,543,540,539,529,537,536,540,540,538,536,534,543,533,518,505,506,513,503,510,508,505,511,506,554,563,573,553,558,556,561,559,569,499,493,497,506,486,502,502,515,507,445,448,431,451,448,459,436,444,435,547,533,531,543,526,526,535,566,539,557,544,546,547,543,549,530,477,476,468,466,474,475,469,476,485,523,533,543,544,534,525,533,552,531,535,553,547,549,548,531,545,537,500,483,491,482,502,491,489,483,500,543,533,562,556,540,544,553,544,549,557,511,498,506,510,509,498,504,511,494,512,557,549,553,550,549,559,569,548,498,502,496,514,506,496,495,496,490,505,496,512,501,509,503,502,506,509,502,529,538,541,536,542,531,533,533,543,560,553,548,556,557,549,569,558,561,568,502,495,457,487,473,474,472,496,477,532,523,523,524,523,517,522,529,518,511,510,517,520,523,517,510,516,516,528,531,531,532,531,527,529,526,567,566,562,554,569,555,571,559,492,506,510,520,509,505,502,494,500,500,528,529,532,535,525,533,536,535,530,534,534,538,532,534,536,539,537,540,543,546,547,543,547,554,543,551,500,503,490,501,506,504,500,502,506,568,556,554,536,560,562,562,563,516,515,518,531,525,519,508,524,529,491,485,494,484,489,495,494,493,497,491,484,485,495,494,489,482,485,490,497,502,494,500,499,500,500,497,490,483,478,475,486,481,477,484,477,481,496,516,508,509,509,507,509,501,515,509,510,537,539,544,544,539,536,537,534,532,539,533,496,497,501,487,493,496,491,494,615,588,586,600,597,575,595,586,581,598,560,546,545,551,553,548,548,548,535,510,511,522,518,524,529,487,497,507,502,499,498,494,497,497,493,575,559,565,567,571,555,574,556,559,567,508,487,483,479,494,492,496,483,495,499,506,499,501,503,499,516,494,500,505,505,575,574,568,563,568,560,561,558,577,504,531,534,526,525,524,532,511,465,475,477,467,477,478,479,457,433,425,428,438,432,434,497,488,485,486,484,485,479,484,492,483,561,538,539,544,553,540,550,544,545,542,486,511,508,499,506,495,502,499,508,547,537,537,542,534,532,539,544,538,529,533,532,539,530,527,539,529,544,557,535,549,539,539,547,548,559,546,496,503,496,499,499,501,506,504,484,560,558,548,553,550,541,577,547,469,482,465,484,490,475,469,472,558,554,539,555,558,537,539,546,545,557,565,570,569,567,568,568,570,560,546,531,529,539,529,520,538,534,524,531,543,544,556,549,559,547,570,571,555,528,492,505,507,508,513,503,512,504,491,480,486,490,486,492,484,465,468,475,469,466,474,464,463,441,441,447,445,434,432,432,439,442,436,495,484,479,480,480,475,479,487,486,481,509,514,501,509,513,507,508,503,507,530,536,528,528,529,527,519,529,527,521,526,530,535,535,533,539,532,533,533,535,537,532,541,536,542,547,532,545,552,523,492,496,492,505,502,497,505,506,521,578,560,548,554,565,569,551,558,570,531,516,513,520,506,518,512,480,489,486,487,485,495,494,491,493,491,484,479,487,482,489,480,483,478,476,478,556,566,565,563,567,565,573,581,566,566,523,528,511,511,516,512,521,514,516,501,498,505,499,511,507,503,500,503,494,485,484,491,485,488,494,486,490,509,512,507,506,495,504,511,502,505,517,535,522,537,539,529,535,530,528,518,517,519,522,517,516,516,522,553,553,550,563,556,547,554,558,553,531,523,519,509,523,525,512,523,521,458,464,475,478,470,468,470,465,475,483,604,590,580,586,585,581,584,584,526,533,545,531,529,539,528,536,530,542,579,548,569,560,565,562,560,556,559,498,504,513,520,509,514,516,510,567,575,562,573,550,558,578,550,537,535,524,531,528,528,533,525,559,555,553,545,553,551,544,547,486,490,483,486,485,488,498,495,489,486,497,496,495,493,496,497,491,492,485,588,559,563,561,565,558,564,556,547,566,534,531,534,528,528,529,529,530,532,531,562,565,553,561,556,568,557,567,566,547,525,523,530,526,512,536,525,528,497,500,499,497,497,503,499,499,505,474,487,476,475,483,485,479,477,476,442,457,453,434,435,442,439,440,440,525,520,515,528,526,527,514,519,526,527,531,528,520,535,531,537,530,581,568,569,572,574,570,569,561,495,500,505,502,495,495,499,499,508,502,544,528,533,537,534,538,532,535,524,535,538,533,537,546,547,532,543,539,552,545,551,553,560,539,546,557,556,521,521,508,523,511,516,525,523,519,484,498,486,486,491,487,489,483,487,494,481,481,481,482,482,486,470,485,473,475,480,480,478,476,473,476,479,463,447,444,447,443,452,433,459,445,532,550,547,552,546,550,559,543,531,539,536,552,540,548,534,545,544,553,525,515,515,519,514,508,502,503,565,575,565,565,568,562,554,560,560,571,524,508,505,509,515,514,498,500,570,567,568,578,576,570,573,579,577,469,489,478,482,487,480,487,478,477,514,525,526,526,526,515,522,534,540,532,541,535,543,539,530,535,535,547,550,548,536,546,552,542,551,541,520,505,515,502,522,523,507,528,521,567,567,569,562,573,576,568,570,566,492,499,494,494,503,482,502,500,498,472,472,481,470,478,478,473,475,465,548,557,545,555,545,524,544,555,550,549,493,492,480,471,473,472,484,498,491,489,490,489,486,489,488,562,562,553,565,558,554,555,556,551,537,535,532,537,533,529,537,535,532,538,525,525,527,530,526,527,528,522,532,526,524,547,536,542,545,535,538,542,535,517,515,518,519,516,525,521,523,544,538,540,533,541,534,529,528,556,555,568,549,551,557,563,553,557,557,471,498,497,509,495,492,502,512,469,479,475,481,474,463,469,556,555,552,560,558,545,552,560,549,485,500,487,501,497,483,484,494,488,481,473,479,472,470,473,463,468,476,558,561,559,552,556,554,547,549,545,564,551,543,550,557,549,545,547,529,525,513,525,524,519,516,574,562,561,563,570,561,564,562,559,545,552,548,539,552,552,551,542,538,546,547,469,484,487,493,483,488,492,490,450,468,462,468,470,462,474,469,462,531,557,584,545,566,575,570,560,503,498,483,492,491,503,554,546,550,555,547,548,538,556,540,505,510,516,514,516,511,511,504,519,511,521,524,536,524,524,525,526,517,573,578,590,578,573,585,589,581,576,583,544,544,546,534,537,539,536,534,528,534,506,514,521,518,516,514,520,517,551,541,542,545,541,542,540,543,545,562,576,557,568,573,566,565,554,552,493,524,501,499,501,517,509,511,515,500,509,498,497,504,493,503,492,504,506,522,521,537,530,540,537,539,537,534,538,526,527,530,525,526,523,529,522,541,553,567,554,560,557,559,567,515,523,513,522,496,517,514,526,483,481,486,480,482,489,480,492,483,480,476,478,494,487,556,561,570,560,556,573,548,558,533,513,507,511,519,516,506,516,481,486,483,478,482,477,490,476,483,485,486,488,483,485,491,489,488,480,488,489,565,577,554,571,566,561,571,578,551,496,497,499,502,508,502,514,504,523,538,544,539,558,533,542,523,520,520,523,517,518,523,519,523,568,554,565,552,561,557,563,558,556,570,526,533,528,525,534,536,530,532,536,529,516,498,501,497,496,510,498,497,498,564,578,575,547,573,552,552,553,557,567,509,507,520,516,509,510,517,503,513,508,513,509,506,500,507,502,555,553,554,553,555,567,558,564,544,557,546,553,562,563,557,572,553,547,555,515,518,522,523,529,525,518,520,476,490,489,488,485,481,488,484,486,463,444,431,442,427,438,437,432,432,545,530,550,536,543,544,539,551,561,566,576,560,566,569,561,569,562,532,524,528,538,532,518,527,535,532,496,500,500,504,500,498,508,583,553,575,565,567,558,549,550,531,517,523,516,521,525,519,520,524,550,534,544,532,537,533,532,536,537,535,555,557,561,543,565,554,559,518,505,488,502,522,484,500,494,509,467,472,475,473,467,472,471,475,502,504,499,511,497,507,505,501,512,503,551,559,552,548,550,540,542,559,543,513,492,501,503,501,499,497,492,499,461,465,461,471,462,465,457,472,477,451,467,457,458,472,461,459,555,546,553,558,541,548,546,560,469,504,501,485,489,472,482,490,505,470,462,451,454,458,459,456,464,468,465,546,540,542,538,542,548,528,558,542,501,505,507,506,507,507,514,515,511,525,530,532,534,535,530,535,522,550,541,549,527,547,554,536,553,525,486,488,474,484,480,490,475,480,482,474,505,499,508,499,510,505,504,505,515,524,541,529,533,540,533,529,538,532,543,505,490,499,488,489,503,495,504,569,593,584,604,589,615,588,586,581,548,528,548,532,544,549,539,525,522,516,515,503,509,511,523,512,514,530,550,559,563,535,568,556,563,495,490,503,504,490,496,502,494,508,527,515,528,527,520,523,519,523,545,572,568,577,567,567,567,561,561,529,514,533,517,532,526,527,528,509,513,505,506,505,514,503,512,508,500,497,502,503,505,500,492,499,499,498,492,501,497,497,491,493,493,497,484,466,463,469,464,475,473,464,463,463,460,455,463,456,463,466,463,463,531,542,551,546,539,525,542,534,535,551,471,473,473,471,492,488,480,476,483,484,474,488,487,497,482,532,515,519,518,513,524,522,518,518,600,574,576,570,584,591,576,592,578,544,537,544,544,541,543,541,538,534,535,524,530,519,523,527,521,520,522,524,589,572,568,573,565,562,547,574,561,561,494,469,484,486,460,491,476,462,531,544,537,534,539,539,543,543,523,549,541,533,540,538,541,555,502,496,489,497,501,498,487,490,492,552,538,539,538,539,559,549,549,525,520,517,518,519,520,513,519,514,546,541,544,541,544,537,546,547,541,570,570,569,577,553,558,566,576,516,504,518,515,506,516,510,515,461,455,454,465,467,465,463,453,451,493,478,475,489,491,494,477,484,567,578,571,571,580,562,590,468,480,502,470,496,476,494,478,496,536,532,531,535,533,529,542,536,531,520,512,524,536,516,525,520,518,527,527,519,516,528,535,537,532,543,533,541,534,540,541,545,540,544,543,549,526,552,508,501,504,501,507,497,517,508,505,502,556,554,546,556,548,548,545,547,493,517,497,506,487,491,500,503,505,514,493,495,499,486,491,499,496,492,491,494,497,506,511,504,509,511,512,513,508,546,539,540,546,549,536,541,546,545,558,555,542,546,539,549,545,546,458,470,481,475,470,469,463,472,490,468,517,520,526,526,522,526,520,517,536,536,531,528,538,533,533,533,552,545,551,544,536,541,544,542,537,540,524,521,527,521,514,513,524,520,524,522,565,547,549,560,561,555,558,553,554,559,559,535,534,547,534,532,531,546,537,545,543,535,525,531,527,526,524,524,530,529,527,524,554,541,540,536,537,540,541,545,516,524,527,526,523,523,525,518,526,554,523,539,539,539,524,537,537,504,489,497,481,485,480,492,495,482,567,552,536,539,552,551,561,527,536,525,527,527,528,531,530,525,558,560,576,559,555,549,563,545,563,556,525,512,507,517,512,522,500,510,513,522,492,494,493,496,491,500,502,494,489,462,471,470,472,470,468,472,470,470,476,466,471,472,463,469,473,475,558,519,537,542,541,541,534,546,502,499,507,494,496,499,497,496,504,574,594,584,610,599,586,613,583,587,554,538,535,534,540,538,537,548,554,562,573,567,552,564,562,555,548,509,486,501,502,491,492,483,505,472,461,466,455,458,462,466,461,508,497,505,498,514,514,504,503,512,517,541,535,546,541,537,536,531,538,520,521,520,520,524,519,520,520,528,523,520,540,544,547,545,549,547,546,499,502,501,502,510,503,501,504,508,502,523,528,524,539,522,531,531,519,526,534,529,531,527,531,533,529,531,564,567,565,575,571,569,574,558,571,569,508,501,508,515,518,509,514,509,511,561,560,556,556,557,554,553,564,548,556,563,554,554,558,562,558,558,559,513,519,539,510,521,514,516,524,523,483,484,485,484,483,483,479,479,474,459,468,465,464,467,462,467,458,551,558,553,561,545,556,549,554,547,553,557,555,556,556,551,557,554,547,486,456,451,472,471,468,465,464,474,457,525,539,533,525,549,538,531,535,565,555,561,555,573,568,573,565,569,561,532,539,511,539,521,522,525,546,526,519,512,513,513,506,511,515,522,510,508,554,563,563,553,563,576,557,569,568,527,518,531,517,531,530,526,526,510,518,508,502,511,509,489,486,492,490,494,481,495,488,489,486,490,488,481,485,482,488,488,491,505,495,497,491,487,505,493,496,496,488,477,479,488,483,472,475,486,462,467,470,463,464,458,455,453,455,567,549,542,567,578,585,582,566,565,501,495,483,499,499,485,489,537,545,547,550,550,553,554,545,542,518,504,502,505,509,505,506,514,512,535,547,543,545,540,544,547,536,545,557,548,553,552,556,547,543,552,546,533,532,521,531,533,539,540,536,501,496,500,495,492,505,499,504,498,581,557,565,575,555,570,556,573,557,498,506,498,501,505,499,504,502,497,557,538,526,534,551,549,536,542,523,523,523,525,524,529,522,524,513,534,534,537,535,535,535,538,535,532,516,523,516,519,519,516,519,506,504,524,563,557,580,560,547,551,549,545,567,499,507,505,498,490,510,506,502,510,524,518,523,515,517,513,520,514,560,553,556,558,549,555,544,544,550,556,517,499,500,501,492,498,499,499,497,490,494,491,491,488,500,492,494,493,515,496,502,512,500,500,510,511,509,532,530,538,526,535,533,538,539,535,532,558,573,564,560,558,564,558,540,524,530,531,529,530,527,523,563,562,554,571,555,558,553,565,538,531,527,529,530,533,521,529,531,540,538,531,533,535,543,540,539,535,508,511,524,518,520,516,511,519,521,549,559,545,557,546,546,539,557,533,536,541,541,545,537,539,535,535,536,516,506,507,514,511,511,505,512,511,577,557,570,558,559,571,561,560,562,558,552,559,566,555,556,553,554,559,571,501,518,520,514,517,518,529,521,514,512,503,502,507,501,493,507,502,508,507,490,479,480,479,487,488,478,485,486,460,449,462,448,463,450,451,454,460,450,437,433,428,434,455,438,442,442,524,527,545,534,525,532,536,533,539,541,538,543,536,539,538,540,537,492,487,482,495,497,480,489,495,581,587,567,563,566,578,572,571,508,522,520,513,526,527,516,522,521,518,553,556,549,556,545,564,566,555,547,501,516,514,508,505,505,503,504,518,501,516,509,524,523,529,525,526,537,527,530,520,527,541,561,569,564,568,550,558,531,547,481,469,484,484,483,479,478,535,532,544,548,543,538,550,529,525,544,523,538,544,546,535,543,550,542,557,497,495,491,487,482,490,492,475,493,491,484,581,573,588,580,593,572,589,581,579,548,546,543,540,544,543,547,545,544,537,535,533,534,535,529,530,529,533,525,540,533,524,531,531,534,538,537,552,568,559,565,568,552,563,549,519,520,519,512,516,515,523,515,513,527,491,473,477,478,486,482,481,482,479,472,446,451,434,447,438,441,441,450,522,519,525,528,520,519,521,533,529,517,522,514,524,526,524,521,547,537,536,544,533,535,548,536,531,560,538,549,543,540,553,540,543,552,547,520,523,530,522,521,528,526,525,515,547,544,539,542,542,536,546,545,536,520,525,526,530,521,522,548,537,534,534,527,536,541,530,529,517,524,525,520,526,524,526,520,524,567,553,563,557,557,545,560,548,567,549,544,529,540,530,538,534,536,530,538,532,525,531,523,524,527,528,529,511,541,530,535,534,538,531,531,531,441,453,449,453,454,444,447,453,535,540,540,541,535,552,535,528,566,564,574,577,575,566,566,573,562,559,542,547,558,543,554,546,558,559,516,528,520,525,514,521,528,513,515,498,492,490,492,495,489,485,488,497,469,456,447,453,466,456,457,455,452,483,483,486,494,480,485,488,489,490,489,530,518,520,524,520,529,529,522,519,531,575,576,594,592,575,582,581,570,587,493,507,508,502,502,509,505,517,512,504,505,517,534,530,535,535,525,538,525,524,520,523,522,517,519,521,521,519,521,542,534,518,525,535,526,527,526,514,524,544,542,545,539,540,535,537,538,541,520,522,524,522,525,521,519,523,528,553,548,542,548,541,544,553,563,559,556,511,527,521,511,526,526,522,520,514,501,507,497,504,506,507,479,482,476,480,475,491,487,483,483,480,458,455,464,465,459,461,471,452,461,462,471,483,468,470,479,471,470,482,471,599,586,569,584,600,582,567,590,545,546,547,543,545,555,544,543,547,546,571,561,569,570,556,563,570,530,520,528,520,512,517,526,524,501,485,487,485,481,482,489,478,484,490,455,466,463,455,466,465,468,555,554,557,567,566,555,560,554,554,539,546,551,544,540,546,549,547,504,508,502,503,489,496,475,481,498,494,509,497,502,492,496,489,508,501,497,496,523,522,518,512,524,522,518,525,527,515,499,493,504,496,504,498,501,501,566,566,569,579,559,561,564,558,566,499,487,486,500,476,487,485,496,477,552,556,543,553,543,547,531,544,538,565,550,556,537,546,540,551,552,548,549,525,505,514,500,510,490,509,478,481,484,479,482,476,484,478,479,481,489,470,473,475,480,472,477,473,477,478,519,513,520,507,510,510,507,513,507,509,573,563,562,553,559,566,562,558,563,559,513,522,509,521,507,525,532,525,512,485,482,484,477,477,477,480,481,483,478,489,483,484,487,481,486,485,479,562,569,557,565,564,546,558,566,565,479,487,502,500,497,497,483,492,502,485,505,514,502,504,504,496,503,503,504,513,525,523,523,524,528,537,536,533,562,579,574,578,581,590,585,535,527,541,542,533,532,532,521,526,494,475,470,484,469,472,477,479,480,470,543,546,542,538,545,539,543,553,536,547,552,554,556,547,558,483,465,466,467,475,476,461,468,475,512,521,523,514,517,520,516,521,518,537,521,535,533,526,535,528,524,525,527,558,573,552,550,562,566,555,556,562,555,513,511,518,509,519,519,530,522,591,581,586,581,582,566,576,586,529,541,544,542,532,537,543,545,539,567,555,567,574,571,566,552,550,568,572,504,512,513,509,513,511,502,502,507,521,515,515,527,517,524,525,517,537,556,550,536,520,536,532,547,529,480,491,497,503,491,495,507,498,496,493,571,572,590,589,596,586,576,583,540,530,546,534,535,525,550,532,536,527,517,521,516,530,523,523,513,520,548,541,545,549,547,558,543,531,544,543,529,545,539,537,535,541,537,587,576,570,564,570,562,575,572,564,506,492,505,510,500,513,505,494,513,504,499,495,506,500,496,507,501,504,529,526,530,517,524,533,531,524,587,573,570,579,580,585,587,599,576,580,550,538,531,541,533,543,529,534,525,523,522,519,524,516,523,521,519,553,550,547,540,550,550,544,542,553,557,524,531,542,535,536,533,534,536,558,571,576,567,562,567,570,582,559,525,525,525,519,527,528,522,532,532,528,529,535,528,533,531,527,582,542,562,545,553,545,563,549,557,565,515,491,492,493,507,492,495,493,499,577,560,580,584,565,590,591,570,579,520,518,513,501,513,507,508,516,507,545,543,554,552,547,558,545,555,557,549,569,548,558,550,546,563,553,549,496,494,497,481,490,485,478,482,568,567,550,554,544,553,551,544,543,546,550,550,556,544,554,546,543,520,529,529,528,533,527,525,532,528,556,549,551,559,554,553,545,552,554,544,551,501,495,492,498,500,491,487,495,479,472,483,477,481,477,472,490,483,484,561,566,556,558,552,552,561,564,553,563,559,524,511,509,510,502,492,509,478,481,465,467,471,477,480,474,499,489,481,489,485,482,488,484,527,542,536,535,535,529,530,540,537,560,571,569,557,567,575,559,527,518,526,523,526,522,530,522,518,527,505,495,498,507,507,500,497,498,502,500,442,457,467,459,461,461,467,458,464,470,483,495,481,490,479,481,477,487,484,594,571,571,567,563,585,566,573,569,529,531,518,520,541,526,528,504,485,483,489,484,485,494,488,488,443,460,460,461,467,456,457,460,459,528,555,553,557,544,564,548,545,550,536,507,507,506,517,507,514,510,521,538,534,533,533,535,539,531,526,531,530,530,520,530,529,525,531,532,564,560,553,561,567,560,562,569,561,565,517,519,530,517,521,521,518,534,526,507,508,509,508,510,505,502,504,511,502,507,500,499,504,495,504,498,500,491,482,491,477,479,476,480,477,480,481,478,443,449,454,446,441,442,463,547,553,551,548,554,559,562,563,557,564,551,550,550,559,543,547,544,550,510,500,503,510,505,501,514,512,501,495,501,507,506,508,513,506,516,508,512,556,552,538,558,540,537,551,533,546,501,501,497,485,492,495,490,498,491,494,487,492,491,492,488,491,500,506,501,504,504,499,502,502,499,535,549,548,537,533,544,545,556,566,561,574,565,568,566,549,560,567,568,525,527,539,529,522,537,536,541,526,527,525,520,521,519,518,522,520,560,568,561,562,560,564,563,562,530,540,544,550,535,540,537,546,538,483,492,486,494,502,489,485,499,480,483,498,501,490,495,489,495,495,484,564,553,547,547,552,544,550,555,531,536,532,535,535,531,541,534,533,523,505,514,514,512,512,503,507,513,516,508,546,545,557,546,553,546,552,546,541,548,554,545,541,547,552,503,505,504,501,507,503,501,498,503,504,508,520,514,517,521,518,519,581,577,580,566,568,589,587,590,534,522,525,529,538,533,527,529,538,539,546,556,569,550,549,561,556,567,560,504,506,505,503,504,507,511,514,553,577,571,562,562,549,578,543,498,492,506,492,494,493,486,498,505,503,506,506,495,501,504,502,499,560,573,559,576,583,556,586,578,508,528,516,516,506,514,520,511,513,526,515,496,493,491,493,494,498,489,492,488,488,508,504,505,503,509,507,504,511,509,516,528,534,526,527,522,523,524,529,522,478,484,493,505,502,500,482,503,495,493,604,589,590,591,584,591,603,596,583,510,503,517,501,512,521,518,517,518,556,557,550,541,546,543,545,542,541,543,559,532,543,536,533,555,555,544,540,497,490,499,502,499,498,490,507,497,490,500,562,567,541,550,549,568,562,561,548,524,508,512,508,528,522,508,515,507,483,481,487,490,478,476,488,479,480,478,474,472,472,470,472,474,479,473,497,503,498,502,512,514,509,500,502,558,545,550,552,546,548,556,547,545,511,504,519,506,500,499,499,502,492,510,465,467,460,457,466,472,464,469,468,459,451,457,463,456,457,468,463,461,463,535,562,530,561,541,549,548,540,542,526,504,494,518,492,506,516,489,430,442,438,443,433,437,443,439,451,455,456,446,453,440,448,551,562,569,552,556,566,572,556,562,568,570,555,562,567,568,571,569,559,571,532,512,518,524,517,515,521,517,522,514,488,486,486,494,493,483,483,489,496,498,504,499,492,491,492,493,507,511,501,503,507,504,503,504,510,547,541,530,536,542,538,533,540,571,572,561,553,577,573,581,552,550,541,544,550,548,547,549,537,510,500,499,498,492,498,495,493,502,491,489,492,499,493,498,490,495,495,502,489,531,531,526,522,529,520,529,520,586,571,584,579,586,574,571,574,569,585,551,540,538,536,528,541,543,529,535,531,580,565,564,552,565,553,564,585,567,505,490,487,502,492,496,497,500,489,525,537,528,538,529,543,526,526,543,533,539,536,535,542,533,539,540,542,538,546,558,556,555,560,555,550,546,466,471,461,478,481,470,466,473,487,526,546,539,534,529,547,538,528,538,537,564,547,544,554,557,547,545,567,542,484,514,499,493,493,509,497,485,510,472,467,453,472,465,461,464,455,470,459,461,461,460,462,464,465,463,472,455,454,470,463,456,456,456,462,570,567,565,567,568,568,567,573,474,477,479,489,477,483,493,477,481,487,551,547,551,541,567,574,549,550,544,554,559,556,545,547,545,556,563,550,503,495,503,508,496,498,507,490,526,514,517,524,519,523,517,521,565,560,558,551,569,570,573,565,548,482,494,491,500,491,495,488,488,498,478,484,489,482,484,485,476,486,480,483,586,586,582,558,573,569,575,559,517,522,522,530,525,524,520,524,527,538,540,535,553,548,533,541,546,536,486,484,487,492,468,490,484,483,488,491,465,457,475,470,474,476,475,465,468,572,558,549,539,553,537,555,556,554,513,498,494,493,496,487,512,508,503,489,501,498,496,491,512,507,502,553,542,554,550,551,554,554,549,507,530,511,509,519,517,513,521,519,487,493,492,496,496,498,494,499,497,497,449,461,464,457,460,463,453,454,459,487,488,479,487,481,486,509,487,479,484,587,561,576,577,565,561,543,563,503,499,491,502,500,506,511,501,518,515,517,521,510,520,522,514,524,566,557,555,565,555,554,566,554,558,542,508,480,484,478,490,491,479,496,454,445,455,451,440,447,452,444,441,547,544,545,537,535,543,541,544,545,547,549,545,547,536,553,547,563,555,478,469,473,480,472,475,478,472,475,528,544,549,540,555,538,544,543,533,525,552,538,531,541,543,531,544,543,484,504,507,508,494,493,498,499,506,497,497,594,601,596,596,582,588,585,589,583,545,531,536,530,533,527,530,524,534,520,530,570,558,558,544,550,559,559,546,550,557,500,511,514,509,517,512,515,512,519,545,546,545,544,546,542,544,546,546,550,552,547,545,543,550,547,550,520,529,526,529,521,530,523,531,534,478,474,476,480,477,490,482,480,476,481,533,531,531,528,533,535,528,527,524,529,544,556,547,547,545,556,549,556,550,561,558,557,557,552,559,558,558,507,493,491,493,499,495,508,499,493,504,504,494,501,495,504,493,496,541,570,587,559,575,554,590,562,565,519,525,519,523,521,515,521,524,498,488,491,489,484,495,488,494,483,484,477,486,477,481,471,485,485,478,480,467,478,472,474,476,467,468,479,455,461,455,458,447,443,447,451,441,447,555,556,559,550,555,573,551,566,549,555,547,556,562,548,561,557,565,514,518,522,512,513,522,524,510,509,486,482,485,478,482,487,483,490,483,509,504,503,507,504,499,496,505,559,559,562,566,558,561,567,564,572,530,528,537,530,527,532,539,528,533,473,485,481,477,490,480,486,480,489,476,556,542,559,572,550,560,568,560,577,551,560,558,563,564,563,552,555,561,498,497,489,500,502,503,499,508,512,506,497,499,507,500,510,500,508,500,512,509,513,514,513,511,516,509,512,520,552,548,546,546,550,547,535,553,546,554,536,538,544,538,546,544,546,533,543,544,487,497,493,495,501,489,495,502,499,503,541,546,555,546,541,548,562,566,539,551,530,502,508,500,512,512,507,508,467,464,459,459,456,459,463,464,467,452,465,472,470,477,469,467,546,564,559,533,530,559,558,549,539,483,469,490,474,479,480,466,485,480,516,520,530,536,532,525,534,531,523,521,537,538,528,531,530,534,536,532,564,564,564,564,561,562,567,566,567,573,545,537,543,540,541,547,539,546,531,537,527,531,530,537,523,527,535,505,516,516,514,513,508,511,524,520,495,503,507,514,507,505,510,508,531,527,526,532,534,531,530,528,532,529,536,513,520,514,520,522,523,523,524,523,528,516,524,520,520,516,525,520,520,518,527,547,546,545,540,547,547,545,544,545,565,553,545,547,562,549,554,560,493,501,501,498,504,504,496,502,468,468,480,469,468,467,474,467,466,561,561,561,558,578,550,553,548,554,578,497,491,501,496,505,498,498,491,510,531,541,548,555,558,553,551,462,468,475,463,472,460,471,485,476,476,458,453,449,442,449,457,455,438,456,528,532,536,543,534,538,523,544,534,538,555,553,552,545,545,544,543,555,546,544,554,548,557,563,553,544,552,553,553,513,500,500,506,497,491,495,511,492,485,478,485,492,481,489,489,495,538,557,571,565,573,566,574,577,527,515,515,511,508,506,520,518,519,527,529,529,531,530,532,538,535,536,538,559,534,560,549,540,554,536,564,536,487,485,479,486,482,482,498,509,508,516,492,503,501,501,505,540,526,535,550,539,538,529,534,483,506,505,498,498,509,507,499,489,558,573,559,534,558,564,563,562,575,489,494,493,495,491,498,493,502,496,536,551,547,540,549,550,546,551,508,516,523,521,511,522,518,516,523,518,543,544,557,546,548,552,534,539,537,532,537,532,543,545,531,536,523,526,545,567,557,558,533,562,574,580,562,515,527,526,518,517,524,523,550,557,551,554,554,552,556,551,541,545,553,553,556,563,552,567,545,552,547,545,552,553,549,542,508,517,505,510,513,521,500,501,523,478,490,479,485,484,494,493,486,489,494,492,492,490,489,493,488,494,511,499,492,498,492,494,489,493,498,496,501,501,476,482,476,476,488,481,482,488,503,510,510,512,501,506,497,507,559,547,550,552,537,546,552,554,553,546,559,555,557,567,547,569,568,547,562,564,572,535,516,516,514,517,522,512,521,529,494,483,479,480,482,486,485,489,454,447,439,441,435,436,432,436,439,454,449,469,461,443,460,453,464,464,607,596,586,581,584,585,606,588,580,609,545,544,547,549,556,555,548,558,561,549,546,549,480,477,490,490,479,486,489,486,499,447,436,439,449,441,454,461,444,552,554,542,532,540,550,536,551,550,544,533,545,550,532,544,542,545,491,487,493,480,499,485,493,495,492,547,530,561,549,561,545,566,540,490,499,481,491,488,498,480,490,489,534,565,541,554,551,555,566,542,509,505,484,502,500,482,492,495,518,502,496,476,482,470,467,479,470,477,471,551,551,550,546,538,555,547,554,551,549,554,488,499,486,499,503,510,506,495,512,498,476,479,484,461,475,476,479,475,476,538,550,560,546,544,559,546,561,547,513,504,519,507,515,510,512,513,513,527,530,529,520,520,529,516,524,524,596,579,585,595,591,595,578,602,579,554,553,549,551,555,546,559,551,538,528,529,530,514,527,533,522,504,508,510,508,513,503,505,510,507,500,504,498,498,497,506,492,494,497,492,500,481,481,485,482,484,482,491,483,501,493,492,501,496,490,501,498,499,506,544,545,542,543,553,547,545,554,538,505,514,523,518,525,513,519,514,518,525,606,606,603,601,593,578,583,592,537,551,551,546,544,556,550,553,484,495,499,496,492,500,499,487,497,499,506,515,508,506,512,504,511,515,508,513,544,547,535,539,545,548,541,542,544,550,545,526,528,525,521,523,529,520,531,531,549,537,538,542,522,523,534,499,490,495,492,489,498,502,486,494,535,553,553,560,555,560,568,506,513,517,514,512,515,523,513,511,516,507,481,484,480,481,478,485,484,483,481,456,465,467,463,466,466,467,471,467,465,474,453,456,459,464,464,468,460,463,464,458,462,544,569,563,570,573,553,576,558,563,494,483,491,489,490,486,482,477,499,573,593,586,589,588,580,582,581,516,523,523,516,529,527,529,503,501,497,491,496,493,498,485,494,492,588,605,592,589,591,583,604,585,513,539,532,533,522,522,532,486,470,476,479,480,483,477,492,552,566,552,556,557,558,565,566,552,557,550,558,561,554,553,566,558,565,517,510,516,524,498,512,511,507,478,470,468,475,477,465,473,475,460,481,484,473,491,482,477,478,471,573,549,559,565,561,562,560,555,527,525,524,524,523,524,514,524,518,538,502,503,510,509,508,509,504,513,478,479,481,476,480,488,477,481,483,485,508,509,514,519,511,520,559,538,553,542,552,550,542,513,512,515,512,514,519,532,517,591,572,556,574,561,573,580,555,515,525,542,527,526,543,526,524,522,525,503,506,511,512,502,513,505,513,482,483,474,473,483,476,480,477,486,479,491,492,483,485,487,481,485,548,592,575,593,568,566,576,584,592,486,486,478,480,480,481,474,485,513,518,524,525,515,531,515,524,521,516,525,520,526,528,526,517,525,535,519,541,528,543,545,533,535,535,535,538,544,538,555,541,538,545,554,554,521,522,525,523,520,523,519,522,521,520,542,549,543,537,557,543,539,551,500,501,496,499,506,495,502,496,507,494,534,539,551,545,544,548,544,547,545,549,553,574,568,558,573,573,511,517,531,519,540,526,521,535,490,500,508,507,499,501,505,490,502,580,558,555,549,557,574,554,571,559,546,490,518,502,509,505,513,507,505,501,549,545,565,563,570,555,558,556,555,553,502,507,490,497,490,500,505,491,496,440,461,454,461,459,459,448,460,452,449,468,457,460,461,464,465,459,467,575,556,565,561,564,561,556,561,548,550,539,551,543,545,545,534,538,498,507,508,502,500,514,509,511,518,583,568,558,549,562,548,573,551,496,518,493,504,507,509,501,496,512,485,488,481,486,487,478,480,483,484,449,468,465,464,462,463,471,464,428,438,446,427,439,430,438,445,448,517,514,520,520,522,527,515,517,517,520,525,516,519,521,522,521,524,525,537,538,541,541,544,542,535,538,540,553,536,552,540,561,561,549,549,556,498,489,487,475,491,500,468,482,482,479,529,524,526,536,529,531,542,532,521,524,524,533,523,523,524,527,530,532,539,542,546,544,542,546,538,539,559,549,549,550,554,549,545,548,559,505,489,498,508,496,514,499,484,488,494,480,488,488,478,490,486,478,554,568,558,556,566,556,562,551,490,492,496,480,493,502,505,503,503,518,519,522,512,521,513,517,502,511,529,532,539,537,548,548,538,532,555,492,493,506,497,497,488,501,494,489,583,596,601,593,584,597,586,579,578,598,548,548,546,545,542,540,550,550,512,496,489,490,499,492,492,510,477,494,490,485,489,494,493,494,494,510,524,529,519,518,520,524,581,576,587,579,587,592,569,573,583,587,551,545,550,542,543,544,551,548,540,537,527,525,526,520,530,524,530,496,494,494,496,490,491,494,487,494,494,584,578,597,592,594,583,599,587,559,557,552,554,562,551,553,554,548,554,559,560,552,556,555,558,551,548,523,523,524,526,513,511,507,512,516,472,482,487,481,477,468,478,478,484,492,493,493,501,501,504,497,492,500,485,493,501,563,552,577,578,564,574,567,571,569,526,534,529,541,516,516,517,526,479,485,489,495,485,485,492,487,489,488,463,439,448,446,442,449,442,452,435,534,555,555,551,553,545,535,550,558,554,552,553,549,552,557,555,548,552,549,478,495,496,504,492,497,492,500,499,455,439,443,442,442,440,432,435,432,432,467,485,493,488,474,481,484,484,490,477,578,560,568,561,573,567,556,564,562,551,547,544,551,559,561,561,552,514,505,524,512,515,527,529,522,519,481,481,483,482,476,476,483,480,479,484,515,501,501,505,510,501,503,496,500,534,537,527,534,540,540,533,539,533,547,542,555,554,562,568,544,565,562,467,489,487,490,467,478,499,483,475,536,530,536,532,541,542,541,543,534,543,541,543,548,559,544,546,531,530,539,548,484,490,495,481,484,486,482,481,593,581,579,577,585,581,589,590,582,534,553,558,545,545,543,546,554,543,524,533,532,521,524,528,526,525,521,515,516,508,511,514,513,513,502,510,515,581,537,547,551,539,535,549,559,534,553,505,504,505,504,506,497,502,512,505,509,547,583,567,575,573,565,556,566,556,567,510,497,500,498,505,500,501,496,497,494,582,580,587,587,585,579,578,579,587,545,528,530,539,536,529,534,532,526,519,480,486,481,473,476,475,478,492,488,481,535,554,551,553,555,554,556,547,555,545,556,541,546,554,542,544,534,465,484,485,482,476,476,474,470,506,500,498,502,500,513,502,494,532,540,537,541,537,541,533,540,546,510,504,514,493,492,495,505,504,592,566,556,560,549,560,556,550,562,518,494,510,501,506,484,501,496,492,482,582,570,593,579,572,571,571,587,567,542,544,542,552,549,548,549,540,545,537,539,531,537,529,539,534,532,531,533,533,530,537,530,531,529,533,537,536,542,561,553,565,558,564,554,549,489,493,492,493,490,501,507,494,498,508,500,505,498,503,501,497,504,494,509,515,514,517,516,515,514,519,511,524,547,542,537,544,546,534,553,544,547,538,541,545,552,535,547,543,554,512,519,508,517,506,517,519,512,543,525,532,522,515,526,525,526,522,531,482,479,475,477,478,474,480,488,531,571,553,569,564,565,556,559,506,491,487,493,495,492,490,476,498,574,548,556,557,555,552,561,568,551,561,523,507,505,499,500,502,520,523,520,461,454,467,456,474,465,463,476,465,474,478,476,477,472,478,472,479,466,460,458,462,464,460,454,466,458,448,436,433,443,444,445,443,438,435,445,530,543,543,542,551,555,550,545,543,547,563,554,552,557,553,544,559,541,560,490,488,501,496,502,502,495,502,493,499,489,495,493,486,501,492,493,606,588,575,558,600,578,590,578,581,488,474,482,478,494,480,483,476,483,477,536,528,543,526,545,541,544,533,545,540,533,546,544,549,546,539,548,545,492,487,492,491,490,490,489,490,489,495,579,574,560,576,573,582,587,554,567,530,531,536,536,527,530,530,529,528,526,578,564,553,562,554,560,567,562,563,563,524,518,526,522,531,523,518,525,521,538,528,537,533,536,537,530,536,561,554,553,575,564,546,574,557,546,476,480,487,486,487,483,478,478,472,536,545,545,541,543,525,551,552,552,539,538,541,554,556,552,538,493,506,502,497,506,498,504,499,500,570,560,575,568,558,566,554,560,564,506,504,524,521,525,513,509,512,483,485,488,494,484,488,475,484,492,489,482,509,502,506,517,510,499,510,510,513,544,549,547,530,538,547,541,526,526,519,521,523,522,525,519,518,525,546,544,551,549,551,549,532,546,544,548,523,509,509,508,512,518,512,512,513,498,558,563,564,549,561,559,561,566,557,555,553,555,547,559,548,557,553,495,501,488,495,491,504,499,496,491,501,497,494,499,498,505,493,496,494,584,581,565,579,582,573,558,583,519,488,498,488,499,502,504,501,478,455,454,475,452,461,458,459,584,597,579,585,574,592,584,580,576,522,529,530,531,528,537,527,529,532,516,514,530,510,523,524,507,606,583,586,572,582,594,573,586,567,578,544,536,541,544,545,537,528,544,524,515,510,523,508,513,502,502,504,500,509,498,503,506,505,504,542,547,539,540,544,542,537,535,546,546,565,558,555,565,572,564,574,564,571,513,520,529,519,530,511,521,525,516,597,580,574,600,582,586,577,573,574,543,521,543,532,526,516,538,533,587,587,578,592,593,591,584,573,587,553,569,551,558,547,554,561,532,521,516,519,515,525,522,505,511,505,514,508,505,501,508,499,501,498,504,509,501,515,499,486,483,491,493,494,493,489,488,482,482,481,490,485,488,493,484,479,486,491,496,495,494,495,502,496,500,501,504,502,496,502,504,506,507,489,486,490,483,486,486,492,481,475,485,482,487,481,481,479,467,478,476,478,481,479,475,475,484,454,470,469,476,473,469,462,472,463,568,578,565,564,559,562,557,557,571,477,485,488,491,490,489,488,481,486,490,506,580,564,581,573,580,580,593,586,504,511,499,507,513,512,502,507,508,558,558,571,555,553,557,558,551,567,556,559,551,569,559,557,558,559,554,521,519,521,523,523,531,520,517,513,505,496,502,500,499,500,506,497,502,507,458,460,458,468,455,453,446,455,440,452,461,445,448,450,457,449,451,533,552,543,542,552,542,540,549,533,557,555,547,551,543,546,548,543,555,507,491,478,486,482,473,501,491,496,603,573,580,594,583,590,588,588,587,568,551,554,555,561,550,539,567,555,516,512,516,520,523,524,517,529,531,519,509,498,497,499,493,500,503,496,497,498,497,499,486,499,490,471,472,469,457,466,461,466,464,464,472,465,466,463,460,469,467,457,457,469,473,543,545,535,540,550,556,542,553,532,545,495,477,466,463,480,494,477,468,476,496,480,475,481,482,494,480,473,494,566,572,566,577,554,580,574,568,557,506,507,504,518,507,494,505,494,515,503,502,498,506,498,494,500,501,503,516,505,506,509,509,515,511,503,512,508,541,541,538,542,543,534,534,544,539,564,579,573,566,571,573,569,539,524,529,533,529,533,527,533,521,520,516,527,519,524,515,521,518,561,563,558,559,557,560,550,556,554,548,519,522,523,528,532,524,528,516,494,496,491,499,496,504,500,492,494,492,491,592,597,580,594,588,585,599,581,582,592,596,549,549,536,535,538,537,545,546,571,576,557,576,575,560,565,567,499,526,530,510,527,509,512,471,477,469,464,473,475,468,475,454,459,457,461,450,463,454,465,464,550,562,545,549,548,548,555,533,551,550,550,491,502,523,533,499,509,517,526,534,471,466,465,466,464,474,465,465,467,448,457,453,461,457,446,456,457,456,458,479,483,472,490,481,487,485,479,482,488,480,538,562,562,570,559,575,569,564,577,483,507,504,499,496,512,508,511,550,551,549,554,562,566,539,546,551,506,513,492,504,497,504,511,476,472,482,469,477,477,472,470,473,479,539,551,549,550,540,560,557,552,549,522,522,518,514,507,514,512,511,511,477,474,481,480,481,474,484,482,482,481,428,448,443,437,435,434,448,442,450,442,456,450,460,447,453,464,454,555,548,538,548,546,542,553,559,550,567,549,555,546,563,567,552,556,565,520,515,524,521,518,522,523,530,516,521,544,543,539,541,553,542,549,542,545,542,572,562,564,573,573,574,561,560,515,517,487,481,494,499,496,510,506,472,473,471,473,469,468,473,462,463,561,576,554,575,557,561,564,565,551,494,506,506,504,511,509,512,506,499,558,561,576,564,556,559,562,556,488,492,495,485,496,488,485,493,503,504,501,490,499,505,504,494,502,561,566,563,576,569,563,564,563,563,572,498,517,514,509,508,515,511,511,505,553,559,546,564,548,541,554,559,554,531,522,529,526,531,532,527,530,542,540,538,535,547,537,532,540,547,510,517,515,517,519,516,513,518,507,512,510,507,510,509,506,508,510,536,526,531,537,525,525,530,530,521,534,529,523,521,515,524,520,523,540,530,541,545,539,537,541,542,538,536,540,546,553,546,560,554,549,558,505,501,501,507,506,511,503,508,606,583,579,594,587,584,593,591,579,599,537,540,545,541,525,535,538,530,535,532,516,518,511,519,518,513,523,516,559,545,546,550,551,544,536,546,539,529,522,526,530,526,517,513,525,518,519,565,587,594,581,594,596,599,576,569,582,529,525,531,535,540,523,526,523,524,527,578,578,597,577,580,576,577,571,587,583,530,507,507,526,507,520,526,530,519,561,559,562,552,556,559,555,554,548,561,554,551,560,550,556,547,556,557,561,552,548,524,523,518,522,522,521,524,531,512,510,505,511,506,505,509,485,493,497,484,485,492,495,494,489,489,492,483,481,487,489,480,487,484,462,472,478,478,477,479,469,473,480,470,455,445,460,469,459,462,462,453,460,456,539,547,550,548,551,558,554,569,574,564,569,574,577,575,566,555,523,524,534,523,527,536,533,526,521,529,536,555,551,547,546,559,562,563,555,564,564,509,514,509,508,510,513,510,511,516,576,561,576,564,547,539,573,564,563,529,523,522,520,521,521,518,518,527,542,543,543,553,547,542,548,542,539,535,534,533,527,542,539,545,538,546,570,573,572,575,562,560,572,562,521,509,508,505,501,498,498,493,501,451,461,453,449,453,451,455,546,546,543,532,544,541,540,536,524,547,543,545,548,540,537,551,544,495,487,486,486,492,480,496,487,488,553,559,551,540,551,542,528,547,544,554,554,509,502,508,495,505,504,511,508,498,542,562,560,572,542,554,549,559,505,504,511,518,510,510,503,515,506,515,471,457,457,453,463,462,460,452,452,446,466,460,461,457,458,453,453,453,458,548,550,541,556,560,557,550,554,553,551,546,544,548,555,552,539,554,541,486,482,482,490,491,488,495,484,491,582,570,582,570,594,592,575,572,582,588,543,545,549,555,546,550,549,548,538,548,545,546,552,539,537,543,548,514,512,508,526,509,507,515,510,522,495,483,483,481,473,474,486,479,470,470,453,453,457,460,468,464,466,504,488,485,496,494,492,483,497,494,491,553,575,569,557,559,577,573,570,521,532,517,520,520,530,521,515,513,514,478,481,477,486,480,481,477,472,439,443,439,433,443,431,429,441,425,433,443,477,472,485,484,484,484,475,561,566,566,567,565,566,562,568,541,550,556,559,557,550,554,547,487,504,493,502,487,491,486,491,493,497,471,471,481,473,490,475,483,478,484,478,488,567,596,609,605,586,595,596,596,595,523,527,514,509,504,505,517,508,520,523,539,540,527,535,528,534,529,529,530,526,537,533,540,533,538,542,535,538,550,543,535,535,551,549,528,540,544,555,517,515,513,513,512,512,512,511,571,573,570,562,571,568,568,568,572,525,517,524,515,526,521,527,507,514,490,492,496,492,497,490,492,488,493,448,453,451,467,473,454,465,470,465,432,451,456,453,436,454,446,451,449,445,506,499,505,506,502,509,502,508,506,562,566,566,557,571,573,562,567,550,542,551,551,546,538,538,542,543,542,500,510,495,500,504,511,491,493,500,500,514,515,516,507,519,504,506,519,506,507,509,552,558,555,555,560,550,561,498,512,515,512,512,525,520,513,517,512,489,482,476,485,484,479,481,478,480,463,475,467,469,477,474,469,475,562,565,558,553,553,561,539,547,555,481,492,491,502,504,508,507,504,502,486,479,478,475,473,480,486,477,484,455,455,450,441,457,458,450,441,454,439,490,481,486,474,475,475,475,470,546,562,570,557,571,565,570,575,563,483,508,481,507,511,509,488,507,488,506,447,457,445,441,444,457,450,432,421,509,505,517,521,519,506,507,520,512,527,531,533,538,527,527,535,529,529,579,569,570,565,563,570,573,581,567,574,563,546,544,552,549,552,554,550,494,491,491,480,494,493,486,492,499,497,496,495,492,500,503,499,495,578,583,575,571,568,567,569,562,575,539,525,518,534,519,532,529,528,515,511,504,507,505,505,508,508,510,509,479,485,480,477,481,480,474,484,476,484,497,489,489,492,487,482,486,574,577,585,584,567,575,579,578,501,472,476,464,470,466,490,461,474,549,527,540,525,533,528,524,535,530,540,576,559,560,564,549,567,574,562,556,501,504,502,496,504,508,501,503,542,543,535,539,536,537,538,538,544,537,559,577,569,571,574,567,578,574,575,561,535,544,544,540,535,537,545,485,500,499,508,505,490,486,510,517,500,469,472,472,463,470,465,464,468,456,462,459,455,459,457,454,463,457,463,549,559,564,561,573,554,560,562,542,563,474,472,485,480,477,467,473,464,471,491,516,526,527,533,524,520,525,514,514,520,527,524,522,518,518,524,522,520,543,546,541,546,532,547,538,545,539,553,555,556,562,550,556,551,553,556,509,529,515,519,510,510,521,519,519,525,487,491,493,496,494,490,487,492,485,485,484,481,483,482,489,483,498,494,497,499,502,507,505,497,503,491,482,492,484,494,486,492,488,489,487,480,487,478,487,492,501,500,499,497,501,500,503,491,488,481,486,485,496,483,483,486,481,480,481,474,484,491,476,479,474,483,476,482,477,481,474,477,481,476,483,485,490,483,485,478,488,480,561,559,560,556,554,557,563,552,525,523,516,518,513,515,523,509,493,501,491,502,497,498,502,489,497,508,455,456,457,460,460,459,453,452,460,502,494,492,492,495,482,482,480,474,578,575,570,570,582,574,549,556,500,489,502,502,508,500,506,499,505,495,504,515,513,497,504,516,511,510,501,560,569,562,565,560,557,564,561,563,569,530,541,532,528,529,527,525,528,534,525,527,483,473,481,476,467,482,479,557,541,549,554,556,546,556,551,534,531,565,551,544,547,549,512,515,495,500,509,509,503,518,508,512,557,565,550,552,551,555,565,554,565,513,524,530,529,527,520,521,520,525,528,537,534,525,542,529,526,539,490,500,509,502,504,495,501,523,527,525,540,528,532,527,530,533,554,551,547,561,569,557,558,508,503,506,514,507,509,500,512,505,557,542,546,557,549,564,565,555,548,499,492,496,497,498,496,503,492,491,515,513,513,520,517,515,532,522,518,511,561,549,552,544,547,549,549,548,549,532,500,495,497,497,496,497,501,501,493,513,500,500,498,495,505,502,533,537,538,534,528,527,534,526,529,511,496,498,497,506,494,488,593,575,584,592,577,597,599,584,587,567,550,540,550,557,558,556,537,505,487,507,518,499,508,504,463,457,468,452,464,467,458,458,460,470,457,464,459,461,462,464,458,539,544,551,535,553,533,547,550,535,552,487,498,499,496,498,499,505,511,500,472,483,480,487,479,481,482,483,478,483,500,502,503,498,496,499,499,504,479,492,496,481,487,485,503,490,490,490,472,484,482,492,476,493,485,484,485,478,489,484,486,480,478,473,465,477,473,488,509,517,513,511,517,509,540,548,563,552,561,560,554,558,559,538,504,513,516,521,516,527,521,513,511,497,491,489,482,499,482,488,486,482,485,490,482,484,482,483,486,485,485,463,481,479,476,475,481,481,478,477,502,499,504,496,499,500,494,491,501,496,498,537,535,537,531,538,533,537,536,540,532,570,561,561,547,555,572,561,562,504,515,493,510,505,506,508,514,507,505,547,551,557,560,549,551,538,549,548,553,506,496,490,503,495,491,500,494,505,502,485,488,495,499,491,501,489,519,533,540,535,527,536,537,532,540,560,555,547,559,550,548,550,545,540,480,494,492,482,503,491,492,494,509,487,497,494,499,493,490,502,497,495,492,532,530,526,529,530,533,538,530,528,511,505,508,513,510,511,513,511,515,515,510,504,507,505,509,510,510,506,508,506,537,537,530,532,536,532,523,534,527,534,527,546,544,528,538,542,523,546,539,561,540,542,555,543,542,541,545,519,523,504,513,501,500,496,496,490,505,497,489,479,489,484,487,491,491,488,490,485,465,477,467,476,474,478,473,475,480,481,494,478,484,486,484,478,488,482,483,477,481,461,445,444,445,453,445,447,459,450,455,463,466,479,477,466,464,472,567,597,599,593,588,596,574,577,512,533,530,531,533,526,522,531,530,534,531,572,580,583,586,585,582,578,590,547,538,536,537,542,537,524,539,496,508,511,493,506,501,511,504,514,509,549,566,577,550,552,541,557,555,550,510,513,515,521,519,504,507,514,554,559,557,562,557,570,555,563,559,536,525,526,531,521,528,521,530,526,528,556,559,562,562,556,563,558,557,564,555,534,543,538,544,543,532,539,541,539,538,474,488,486,490,485,490,504,497,484,468,463,482,472,480,466,475,511,501,498,493,510,509,499,502,499,547,551,536,549,540,539,532,536,548,495,507,497,488,496,505,497,489,492,487,482,486,488,494,495,488,490,488,486,499,509,506,497,500,502,502,506,500,504,533,526,536,539,533,544,540,534,534,532,560,566,564,563,561,556,560,565,573,515,508,502,506,501,501,503,500,497,498,545,537,526,535,533,532,533,542,562,563,575,570,565,562,559,574,559,550,547,548,552,554,547,542,553,551,549,555,553,549,556,552,556,553,553,553,520,504,520,526,507,517,515,539,510,507,474,479,481,482,483,480,477,473,456,456,464,463,459,456,468,540,547,532,536,537,543,546,536,543,542,553,553,545,557,557,545,553,559,568,552,556,553,560,558,547,564,556,562,508,525,519,513,502,510,511,515,515,518,483,490,483,490,487,492,494,483,488,488,501,495,493,495,497,502,502,502,501,562,557,545,566,558,560,558,557,515,533,529,527,525,528,521,527,524,527,498,501,504,505,502,496,500,498,506,548,563,552,575,550,556,571,552,545,497,487,492,499,488,491,506,485,493,504,585,569,556,565,560,561,563,550,550,547,477,481,471,489,494,469,472,475,496,540,542,541,541,542,539,540,536,537,538,549,543,541,545,551,547,557,548,526,524,529,524,534,532,523,524,526,528,526,535,524,538,539,526,533,544,530,535,505,510,519,512,514,514,575,561,552,567,555,543,537,559,518,508,495,518,506,510,500,508,493,499,498,501,507,498,497,496,507,569,559,564,561,584,562,560,571,565,547,541,545,554,544,552,551,552,549,517,517,523,515,506,533,512,524,500,511,477,472,477,476,477,485,480,485,474,483,453,470,474,472,472,472,462,469,463,464,568,549,563,565,558,564,541,497,496,493,499,490,497,502,486,485,510,488,495,490,501,490,502,510,512,526,529,533,530,520,527,527,518,478,466,469,477,479,475,480,550,550,548,544,543,545,546,546,532,547,550,551,540,552,543,552,547,552,550,549,495,504,511,504,516,511,511,522,500,555,551,553,561,554,565,558,555,556,494,494,498,495,504,486,500,501,492,517,519,525,520,511,512,523,523,522,512,566,560,562,569,567,565,567,539,514,524,514,515,520,511,513,508,498,500,507,504,505,509,501,505,503,465,482,478,486,488,480,485,484,471,471,469,471,468,472,464,469,470,428,434,430,434,438,423,430,434,439,518,528,516,527,517,521,522,532,513,527,529,524,540,524,535,532,527,583,563,568,568,563,567,579,564,522,530,529,533,527,527,523,526,483,474,471,473,462,477,474,474,480,524,531,532,534,524,533,536,535,524,544,543,545,547,548,552,542,555,553,547,549,547,546,565,560,544,553,513,519,521,507,528,510,519,494,510,458,456,456,446,453,452,449,460,461,452,452,452,446,477,477,473,481,458,456,581,593,581,588,597,597,585,583,576,529,523,524,510,517,544,504,553,530,537,447,468,465,453,454,461,454,556,562,561,553,570,565,551,553,554,558,558,556,567,549,554,559,556,558,514,519,514,512,521,519,504,521,516,527,492,484,494,497,479,484,491,484,490,465,461,463,463,461,463,473,469,463,550,569,561,548,549,560,562,551,566,492,504,502,493,482,486,486,482,563,576,568,554,557,547,552,564,452,484,456,468,469,486,481,477,484,547,536,540,543,537,541,534,546,551,532,554,540,535,546,551,545,541,485,498,482,474,476,462,476,481,473,476,484,488,482,475,477,473,494,475,470,599,560,590,573,570,573,567,563,516,518,513,529,525,522,514,524,519,486,486,476,482,486,484,478,488,489,463,471,481,474,467,488,472,480,474,471,541,557,560,546,562,560,542,556,486,472,484,474,475,478,489,480,475,504,495,487,494,496,501,497,495,496,492,552,550,539,546,534,539,530,549,530,544,544,498,496,495,501,509,499,503,506,551,538,535,541,537,541,548,546,535,575,560,549,559,554,568,544,534,528,530,526,531,530,530,531,536,537,547,553,548,554,549,547,556,545,543,550,476,482,486,495,490,486,490,484,481,449,452,456,450,438,443,453,446,436,449,537,547,547,544,540,546,557,554,539,541,547,548,560,542,544,557,553,476,459,466,475,476,465,474,465,517,530,515,520,526,524,521,524,519,517,525,507,516,522,527,520,532,533,536,536,534,530,528,537,538,535,552,541,537,551,540,542,548,553,522,516,512,524,519,515,519,516,533,528,527,541,531,527,533,532,529,522,567,560,556,552,558,563,552,560,557,558,492,502,493,489,477,489,505,510,506,477,469,472,466,458,456,461,454,466,467,572,557,534,552,550,553,545,541,534,562,557,500,504,511,511,488,499,504,504,546,566,561,562,568,550,567,559,560,520,513,523,520,513,518,522,528,523,516,515,509,512,510,516,514,518,513,512,501,502,497,499,502,500,495,499,498,498,486,488,484,486,480,479,482,477,483,487,492,484,472,477,489,478,489,474,576,572,560,565,568,569,564,577,563,560,527,516,523,518,519,520,528,525,504,508,507,503,506,505,508,486,472,481,472,480,475,472,473,464,476,480,486,472,486,486,480,600,596,602,590,598,588,584,587,597,536,538,541,545,536,529,538,532,544,550,569,564,546,556,554,569,562,565,567,508,514,510,509,520,505,510,515,509,508,502,503,499,503,503,503,527,540,532,529,529,527,540,530,529,538,524,518,522,517,522,518,519,514,523,516,550,565,567,547,556,557,557,557,544,532,527,537,528,532,526,536,534,522,506,529,517,516,514,523,528,516,544,569,562,564,573,564,562,560,575,506,492,503,496,493,501,506,495,478,492,492,486,478,478,475,483,586,582,603,592,597,595,603,596,547,541,545,556,546,553,560,553,548,552,479,502,505,493,494,494,491,504,507,497,506,506,511,503,553,556,557,565,553,563,557,556,563,534,535,535,530,536,536,533,539,532,524,525,525,527,527,529,528,521,530,540,534,542,532,533,544,537,545,543,516,526,518,513,520,522,525,519,519,544,548,548,550,552,555,550,544,551,556,549,531,533,532,538,538,538,533,535,530,535,527,522,522,509,526,518,522,526,521,591,585,581,577,582,580,584,579,513,525,503,516,519,505,512,519,519,542,550,538,553,544,544,550,553,548,547,542,529,555,546,546,540,526,541,552,500,498,507,486,503,487,492,490,501,553,549,554,556,560,549,564,553,571,480,481,487,481,475,476,496,532,541,545,543,542,531,531,537,525,528,531,527,524,528,527,524,544,548,538,540,541,531,541,543,547,553,561,551,557,563,551,557,554,552,560,508,505,484,505,487,505,488,492,504,504,490,502,498,500,485,499,483,499,496,485,483,590,564,554,549,569,562,566,567,556,561,532,521,523,519,518,521,520,515,527,522,543,548,554,551,546,548,550,551,548,537,531,535,539,539,536,535,529,514,515,510,509,511,514,526,509,515,542,563,557,554,549,552,555,557,557,552,533,555,547,539,552,550,537,541,552,523,517,515,512,515,514,524,511,512,509,545,562,576,564,577,570,563,559,483,496,480,491,471,496,491,482,487,534,543,536,527,535,539,532,542,537,544,541,542,539,544,544,551,535,542,543,537,542,542,542,560,545,546,539,543,548,512,526,518,520,515,525,519,523,522,534,530,534,536,541,528,543,545,506,504,502,509,506,499,497,506,501,537,543,528,530,527,536,532,533,533,557,541,560,556,552,568,546,508,499,506,508,494,503,514,498,502,546,549,538,526,542,553,564,554,533,569,517,507,503,518,512,508,508,511,507,512,499,558,566,559,576,572,568,568,561,565,499,497,495,501,510,485,505,505,499,451,444,455,444,447,453,452,455,443,567,569,545,548,550,550,547,555,554,554,543,537,541,545,543,555,543,554,550,494,500,504,515,512,498,484,523,516,483,472,476,485,479,482,484,486,477,469,483,478,473,466,472,480,472,499,496,508,499,494,503,504,498,501,507,544,549,542,540,539,541,543,548,543,560,564,559,553,566,567,563,559,561,568,561,495,517,509,500,518,509,524,510,574,553,568,555,565,561,555,562,555,521,499,509,485,506,504,499,509,507,485,484,478,490,485,485,482,496,498,507,508,496,499,502,500,496,499,525,527,530,532,535,527,529,529,523,530,548,536,536,540,539,545,545,532,542,539,548,559,548,538,545,556,552,554,556,504,495,496,490,499,488,488,499,503,484,450,441,447,440,454,449,445,443,513,519,517,521,518,519,519,521,527,523,520,521,539,519,529,529,567,549,569,572,568,565,542,538,544,541,539,549,546,539,539,545,554,537,523,536,531,533,538,530,527,534,534,531,527,526,525,525,528,528,530,525,542,539,537,546,536,539,542,546,536,535,531,530,529,532,532,526,528,532,526,549,557,558,554,548,557,561,560,545,513,513,490,503,499,490,500,492,499,463,451,452,449,454,461,464,458,515,490,501,500,499,504,495,500,552,550,561,553,545,550,543,546,551,509,496,502,495,493,504,499,503,495,467,463,467,459,462,468,469,459,468,506,485,498,515,500,498,497,496,506,487,509,526,518,536,526,529,525,495,473,479,468,472,478,480,478,482,560,564,561,564,569,568,567,559,557,570,567,568,559,578,563,564,557,564,491,495,496,495,503,494,490,498,501,457,475,462,457,468,469,468,526,537,529,548,525,530,541,534,542,537,536,540,542,547,538,531,534,538,539,527,549,540,538,547,533,542,537,537,510,508,503,519,511,509,507,509,515,514,521,536,532,526,537,523,522,527,532,528,481,471,470,475,482,468,474,472,475,546,564,578,561,578,547,561,454,477,468,472,470,480,484,476,478,527,520,527,513,523,508,522,514,522,536,526,530,527,520,529,529,527,530,561,563,572,554,570,567,565,564,557,568,575,507,502,504,500,515,505,497,497,502,542,527,550,541,540,539,538,535,534,571,567,566,559,574,570,563,557,531,525,519,518,522,529,531,554,553,553,568,558,567,558,542,526,522,522,528,520,521,530,519,531,520,529,531,521,530,531,526,523,507,497,491,494,504,493,499,501,511,552,589,552,562,555,565,545,564,558,559,546,472,490,503,492,489,490,500,482,488,495,527,556,555,536,563,535,552,547,511,527,520,527,518,526,519,516,524,544,561,556,548,556,554,550,547,495,506,508,514,513,519,515,509,476,485,484,487,486,488,485,490,491,504,503,515,507,507,507,509,504,511,548,526,529,537,529,520,533,530,456,484,468,466,470,488,478,471,537,527,525,515,514,528,525,532,526,509,535,532,532,530,531,533,535,532,531,535,561,556,554,565,564,568,568,563,522,524,528,514,512,514,524,526,507,561,571,566,577,573,579,572,574,554,536,526,548,532,534,516,532,522,522,511,515,519,518,518,515,516,548,561,561,569,556,562,558,569,559,566,554,561,506,518,515,523,506,517,516,507,528,482,477,478,477,476,477,474,472,479,455,455,453,454,458,466,455,466,531,545,553,550,555,545,537,540,554,587,578,571,580,577,559,579,555,550,550,552,554,543,544,554,545,553,553,558,544,548,558,550,529,521,514,523,528,528,511,526,526,503,512,499,508,508,515,503,482,495,487,486,494,487,484,485,491,485,483,484,481,483,482,481,476,489,484,491,482,479,481,480,473,477,475,479,477,525,513,510,513,507,523,507,510,502,511,557,554,555,548,557,558,486,495,495,481,491,498,503,484,488,432,442,441,448,438,433,444,527,530,536,528,530,532,534,526,535,530,550,564,565,563,567,562,564,562,563,557,558,553,547,546,553,554,553,553,553,548,551,547,551,545,549,556,531,530,511,529,520,510,513,528,516,510,505,506,510,507,511,506,506,483,477,489,486,483,481,475,482,485,485,458,455,465,453,455,465,463,460,469,449,462,467,442,443,459,463,451,527,538,539,520,530,533,538,536,525,534,528,535,536,526,532,533,540,567,565,563,568,570,561,565,562,567,514,500,502,514,512,499,513,502,500,531,545,532,548,537,531,537,539,533,542,540,537,540,545,548,539,533,544,541,553,542,513,500,512,497,507,498,505,507,507,509,492,495,494,496,500,498,500,497,531,530,533,538,537,542,534,540,540,530,533,558,570,553,564,567,563,554,567,573,505,523,511,520,520,518,526,528,517,583,575,584,583,579,588,584,586,597,537,529,535,518,542,530,541,540,531,544,544,484,474,460,484,487,490,479,478,554,561,545,546,558,557,554,546,569,569,575,569,567,569,552,557,567,512,516,508,508,525,515,517,506,518,521,516,498,488,484,486,485,489,492,489,486,485,483,480,483,482,485,487,479,485,478,465,466,449,453,453,458,452,439,458,489,497,481,486,493,505,480,585,576,579,567,563,563,568,570,500,509,503,497,509,508,504,504,492,491,506,506,491,508,495,509,513,551,572,580,585,560,576,569,563,571,516,513,516,520,508,514,514,515,459,463,468,456,465,457,456,468,477,480,474,483,471,471,477,478,563,559,577,559,548,551,505,504,492,524,485,489,497,488,499,493,483,464,471,478,468,467,463,473,559,543,548,547,546,553,538,542,549,508,510,517,517,536,512,509,517,525,478,490,485,490,482,485,484,486,474,453,458,458,461,460,459,461,466,465,479,482,479,483,482,489,485,477,569,562,558,559,575,547,560,578,562,579,512,504,514,509,514,507,503,513,571,573,577,553,556,555,551,546,553,564,525,531,518,525,527,513,512,529,523,513,517,509,507,515,513,511,508,494,501,503,502,501,503,501,501,501,505,489,496,495,495,496,491,488,499,503,493,474,471,474,469,477,480,472,474,467,465,479,497,500,494,496,496,495,486,500,503,536,526,535,535,537,526,529,531,510,516,510,516,508,519,513,515,499,506,508,511,507,509,504,510,503,509,536,526,526,538,522,530,527,532,532,528,522,519,519,522,517,521,525,521,525,522,533,535,536,532,534,530,531,538,537,538,548,546,552,543,547,541,550,544,548,528,524,525,520,521,516,522,526,522,547,537,542,528,532,536,545,541,513,515,520,517,524,524,519,516,504,505,513,503,506,503,512,507,503,503,529,531,519,527,528,534,534,531,533,510,515,523,523,523,528,523,523,525,523,518,514,519,517,526,522,517,550,546,536,542,540,546,536,550,559,557,562,570,558,561,553,558,564,508,522,506,521,519,517,513,509,528,530,492,497,492,494,497,490,493,491,490,492,504,504,504,509,497,501,504,511,510,543,541,543,531,539,536,539,532,535,538,521,520,512,515,505,516,513,515,522,545,525,528,524,534,529,530,536,553,552,545,565,546,547,547,559,549,545,502,498,491,500,499,474,500,497,581,585,597,578,570,580,595,505,498,511,499,498,511,520,499,506,499,531,519,528,522,537,523,527,531,522,528,526,533,532,529,532,528,531,529,531,538,544,547,541,543,536,544,537,521,517,513,514,510,509,519,505,541,547,535,546,539,533,542,538,535,502,524,512,516,520,519,515,592,594,571,580,585,593,586,587,571,551,550,541,535,543,532,540,541,502,526,522,523,516,517,523,518,519,526,514,579,584,593,573,603,570,579,598,589,530,537,530,538,530,535,536,532,549,562,554,550,560,552,552,562,572,567,531,535,531,532,535,530,537,523,534,551,554,546,552,547,551,553,560,502,490,483,484,489,479,483,476,470,465,464,461,459,471,467,453,568,555,551,582,559,559,548,571,514,511,512,507,506,498,506,509,496,506,555,550,558,551,546,549,535,556,493,504,488,496,488,493,495,499,491,485,513,507,506,502,506,505,512,510,510,504,515,566,562,557,566,564,565,562,562,567,529,532,536,524,531,538,540,531,534,477,475,481,470,475,479,484,477,539,535,534,524,528,532,522,529,553,557,553,553,547,558,551,550,559,552,565,560,560,554,558,564,522,514,520,517,526,521,521,525,518,529,524,476,485,481,489,479,488,493,482,482,492,477,517,504,502,512,499,494,501,495,538,551,554,554,554,553,564,551,549,557,546,546,548,538,544,537,541,542,538,535,532,531,535,537,531,533,527,536,536,530,572,554,555,552,543,555,563,554,550,550,468,472,476,472,481,473,471,479,482,482,494,479,495,483,492,486,493,560,554,547,548,546,556,557,561,551,539,552,550,542,546,548,553,549,547,527,548,540,533,532,538,545,537,539,539,518,512,505,497,504,500,501,504,502,504,503,511,465,464,462,463,459,458,469,460,461,489,465,468,476,471,467,464,473,537,548,555,553,563,563,554,548,560,524,515,522,514,511,513,509,521,483,484,487,488,483,492,485,495,458,480,460,467,472,460,478,465,541,573,562,564,570,556,565,560,561,469,492,510,497,484,503,479,495,440,442,455,440,444,445,433,439,456,447,550,546,544,538,544,532,557,540,538,528,539,543,550,550,540,542,531,541,539,521,521,518,517,516,511,505,508,589,584,558,550,587,568,557,571,565,529,524,512,519,521,519,521,523,522,560,570,580,555,575,574,579,587,582,557,495,502,489,500,499,493,506,504,471,474,472,476,469,465,469,473,463,466,552,556,557,556,550,555,557,550,547,546,553,548,542,551,550,480,485,474,486,488,496,485,482,481,572,572,568,586,591,562,573,576,574,523,520,525,531,537,531,517,521,519,516,550,560,560,562,567,558,558,567,553,487,481,481,490,491,480,474,474,544,543,544,543,550,556,549,542,548,547,549,548,544,537,545,544,537,532,476,493,495,508,495,493,510,475,491,494,487,506,492,502,498,494,493,495,502,534,535,522,536,534,527,523,526,523,503,513,517,513,510,502,517,515,520,510,505,506,504,500,508,505,498,512,507,530,529,520,526,528,533,531,537,532,517,522,512,523,524,512,513,518,526,530,526,527,537,530,525,533,531,559,570,569,569,563,561,562,556,510,521,521,531,519,511,534,524,524,575,591,598,587,596,594,590,594,594,550,561,553,554,548,552,557,559,557,549,560,512,534,523,508,530,522,517,515,516,517,511,498,496,502,493,502,498,497,499,486,483,487,488,482,488,482,490,493,495,489,489,492,494,491,488,498,487,512,502,507,498,507,501,508,513,507,522,524,514,526,522,517,526,533,531,524,531,535,531,524,542,565,565,561,564,569,565,558,560,533,541,519,522,517,522,523,531,516,520,524,491,495,504,502,496,503,499,507,501,552,545,539,546,547,536,546,537,542,536,550,545,552,554,558,552,548,551,556,557,553,569,503,495,511,512,512,514,516,510,506,499,511,504,498,508,504,511,527,534,525,537,537,540,542,535,541,476,474,473,474,475,470,461,479,522,528,518,523,528,530,520,520,522,535,531,537,534,540,538,538,528,536,579,570,579,574,565,572,578,571,540,535,536,542,553,543,546,537,485,483,484,499,496,499,493,487,489,496,492,470,490,478,476,478,492,477,555,551,568,547,547,564,566,497,502,489,501,471,501,503,494,485,450,464,462,464,466,464,459,465,531,548,540,551,532,544,547,558,551,525,518,514,516,507,522,510,508,553,539,547,548,543,551,549,550,527,523,534,532,525,527,522,526,530,526,517,518,522,524,524,520,524,527,531,522,556,560,557,551,559,562,553,555,563,565,533,545,540,563,551,545,543,543,549,498,501,499,491,485,501,499,491,492,486,491,493,491,492,497,496,491,498,503,494,495,498,540,544,544,542,545,546,541,550,542,515,498,498,510,509,503,505,504,549,529,530,533,531,539,540,526,522,531,526,525,523,520,523,525,517,524,516,526,525,524,523,525,536,547,541,529,542,543,545,532,552,545,551,550,557,555,550,553,551,560,552,549,491,505,489,496,501,518,497,504,503,486,484,485,480,482,482,486,487,550,554,562,550,558,541,535,561,559,552,557,513,519,517,526,515,506,516,510,510,505,473,478,468,470,473,477,470,471,475,462,470,471,472,480,482,471,472,473,550,555,535,551,556,546,516,542,505,516,507,504,511,508,507,515,563,578,571,577,564,575,559,584,502,489,508,500,501,503,501,503,511,502,510,514,508,517,506,519,506,508,503,547,563,565,567,563,559,552,553,552,560,567,543,534,540,539,541,536,535,539,538,532,524,535,533,530,534,534,530,543,546,543,547,542,556,544,545,507,505,499,498,502,501,505,494,501,507,502,509,506,515,505,500,505,506,546,552,556,552,534,546,553,556,552,489,485,483,476,477,494,486,478,477,494,439,455,450,450,452,454,444,443,439,552,567,557,559,553,551,556,562,554,550,563,557,564,562,551,562,575,514,536,530,519,525,520,524,528,524,509,510,507,511,503,509,504,503,500,476,473,487,480,482,474,480,483,486,506,505,512,508,503,514,500,510,514,510,544,543,541,541,534,545,542,543,543,540,519,515,521,517,521,522,518,522,555,550,548,550,553,553,549,551,549,530,531,529,541,532,536,534,539,536,537,517,520,523,520,521,531,517,518,583,580,588,592,587,587,579,583,581,578,498,518,499,512,503,514,504,514,504,556,545,553,553,552,558,544,551,548,551,555,545,542,548,554,542,503,500,495,502,496,505,497,509,487,455,469,462,457,460,471,444,447,457,501,518,518,519,515,511,511,516,514,558,566,555,559,553,562,564,559,577,494,493,489,496,493,495,514,502,517,515,516,511,518,507,521,512,540,538,535,546,537,542,539,553,538,540,491,492,506,490,483,501,493,498,509,499,498,599,581,588,582,583,586,586,578,530,524,537,537,540,534,540,552,540,511,511,514,518,517,520,518,509,518,563,552,554,559,547,560,550,546,546,534,552,556,545,550,543,546,556,543,540,543,538,535,536,536,540,517,525,520,523,520,521,522,519,544,542,539,540,538,536,544,547,545,541,548,567,566,572,554,577,562,503,517,517,519,513,520,517,518,519,575,542,585,563,574,568,559,539,548,513,512,518,519,516,518,517,526,521,523,567,561,554,581,579,546,553,588,548,548,501,509,520,498,511,514,522,509,511,507,501,564,573,563,560,576,561,565,562,551,579,567,487,525,531,520,518,494,517,518,516,514,452,470,465,463,470,463,462,463,452,467,459,470,455,463,464,460,463,459,512,505,503,504,499,496,506,504,526,529,523,536,536,528,537,534,531,495,494,492,493,495,495,502,581,609,598,571,595,604,593,591,584,518,516,501,508,519,517,509,515,498,514,523,522,519,522,530,525,525,523,522,525,527,533,526,532,531,530,524,529,531,577,558,570,559,564,568,565,572,562,511,502,510,510,505,520,501,504,512,531,528,532,532,531,525,530,521,533,529,542,546,543,536,536,544,536,545,545,551,560,572,553,549,553,551,554,559,525,527,527,539,533,519,522,523,506,509,509,515,516,509,510,513,497,495,496,494,496,494,490,493,490,497,484,491,495,496,482,482,487,492,493,491,484,498,492,498,493,479,489,481,481,482,481,486,483,485,466,473,469,467,471,472,470,473,475,542,543,568,552,552,552,553,564,553,549,477,476,481,474,474,478,472,461,463,461,475,479,472,461,478,560,555,566,578,568,563,580,583,556,573,498,501,520,487,493,496,515,490,574,593,586,580,583,582,590,594,587,592,582,549,540,544,544,556,549,552,550,492,494,509,484,492,481,491,495,474,491,483,486,488,490,483,487,483,482,580,577,587,560,556,562,570,596,566,570,504,496,489,503,510,489,501,491,504,598,583,577,572,581,567,582,577,582,544,523,529,529,529,538,534,533,522,509,511,508,520,517,520,516,511,524,548,549,550,554,541,546,538,568,559,569,564,552,572,555,561,560,504,501,503,505,501,511,506,496,514,521,519,522,517,527,522,525,521,509,573,561,556,567,556,568,563,535,531,523,523,519,516,529,529,507,523,504,500,500,510,496,498,507,502,498,482,478,485,480,482,478,485,479,479,474,457,464,474,471,466,464,471,469,480,468,461,463,473,473,463,550,565,554,543,566,571,558,568,499,508,507,497,491,496,499,499,492,501,501,503,502,496,502,507,497,536,540,541,542,551,542,548,544,544,494,513,506,508,504,519,511,512,483,480,485,478,487,488,479,487,485,479,459,457,458,452,451,456,448,461,469,474,482,479,473,476,478,580,593,598,588,586,600,592,598,594,540,529,538,536,538,536,537,540,535,529,545,560,557,553,558,556,572,559,558,499,507,501,521,505,523,496,513,511,441,432,445,446,437,446,450,443,471,468,479,460,474,468,465,470,474,477,555,573,567,569,561,551,567,549,571,517,513,496,497,505,512,506,509,505,470,488,481,475,478,478,480,479,483,493,497,496,492,491,484,493,492,488,457,462,460,451,462,457,458,453,457,469,457,455,451,458,452,458,453,457,456,463,547,550,550,543,544,543,556,543,544,541,544,546,542,537,540,544,509,503,505,516,508,515,515,520,539,550,559,558,548,554,553,564,525,526,532,526,531,526,530,520,534,479,480,482,484,469,486,468,480,483,487,555,558,553,550,549,559,547,567,559,566,568,563,575,565,562,560,573,554,501,490,496,498,499,495,490,495,482,496,496,490,488,484,487,496,586,583,578,577,573,566,559,576,501,503,494,500,498,501,505,508,484,594,567,581,583,581,597,585,579,589,546,542,541,545,544,548,543,543,488,498,483,492,503,497,498,507,497,478,480,487,489,494,498,498,500,492,500,579,555,545,573,556,559,583,559,570,515,519,513,514,524,516,517,513,525,552,554,583,566,575,588,588,565,520,523,517,525,528,522,524,518,533,528,507,509,498,508,502,502,500,500,502,484,483,480,485,485,483,483,488,480,480,466,488,483,479,477,489,482,558,559,561,559,558,562,574,561,563,500,498,494,496,490,499,505,493,509,530,523,524,524,521,511,529,523,521,565,573,562,572,568,566,566,560,575,567,506,505,516,517,504,507,510,518,528,480,474,485,483,478,481,483,485,484,475,453,444,449,438,440,457,450,446,517,523,511,530,515,530,530,530,528,522,517,521,520,504,515,506,512,512,534,532,523,529,528,533,526,532,561,569,574,560,557,576,575,578,560,567,524,524,536,523,535,537,521,535,525,524,525,566,555,555,554,554,551,571,540,563,515,502,493,502,503,502,506,547,559,542,560,556,544,553,550,549,551,492,498,513,524,513,510,505,500,500,488,488,486,482,491,491,482,487,488,492,470,488,482,481,482,475,479,491,488,482,471,474,458,461,468,469,460,457,462,456,455,449,450,450,454,452,451,487,501,489,499,498,494,502,498,498,514,516,518,520,514,507,515,513,551,553,555,563,555,560,551,555,557,539,544,561,557,552,554,560,553,550,547,502,503,485,497,499,484,502,494,504,433,443,441,439,446,443,445,440,440,448,522,531,523,520,530,533,516,524,521,531,534,533,528,528,523,534,532,570,562,567,568,558,568,542,502,499,493,505,499,502,504,504,531,541,525,523,536,539,539,540,525,538,568,578,561,558,570,574,567,569,567,559,546,558,549,548,545,546,551,548,546,546,537,549,550,546,548,542,543,531,515,517,509,518,521,504,500,516,520,489,481,484,478,481,471,477,469,485,472,469,466,467,463,476,469,467,476,423,445,442,451,442,447,436,447,546,549,556,552,541,548,541,537,545,549,548,554,551,552,537,546,541,560,544,488,472,471,478,488,474,480,474,480,543,542,543,544,534,544,541,541,536,528,542,540,533,546,542,554,552,550,511,511,502,504,502,501,491,504,511,509,504,558,538,545,544,551,553,556,547,491,502,488,484,487,495,493,497,484,507,511,513,501,509,505,505,507,513,506,513,512,504,506,510,507,503,541,537,550,532,532,540,542,548,539,542,563,572,565,558,557,567,573,567,561,504,493,506,492,488,501,501,503,540,538,540,540,544,539,545,541,545,538,570,567,583,577,555,565,569,569,556,533,546,547,542,549,540,538,505,507,498,491,504,488,499,506,503,526,510,517,510,512,507,503,509,516,561,539,547,549,542,548,539,541,537,536,532,531,534,538,525,529,535,535,562,571,560,551,567,567,559,563,565,541,515,515,506,510,526,521,525,523,497,487,488,482,483,480,487,484,489,486,492,487,486,482,493,488,501,488,489,510,507,499,505,507,504,507,508,505,515,524,523,528,532,529,520,523,535,536,549,528,537,547,538,542,545,537,549,545,550,547,547,543,542,494,475,471,467,480,473,475,475,473,451,448,449,449,441,455,445,542,533,531,540,533,528,540,531,534,535,522,521,516,519,513,525,512,513,524,535,535,528,528,527,522,531,561,557,558,567,565,567,558,559,563,504,513,507,507,513,507,513,504,516,558,551,548,548,554,543,543,554,545,554,553,555,543,539,547,536,551,558,545,546,533,503,503,503,484,503,505,505,502,504,507,616,597,602,587,589,595,590,586,590,538,532,533,532,537,541,529,505,494,496,491,498,492,494,490,599,595,592,591,585,600,582,592,596,519,510,513,505,513,504,516,510,514,538,555,546,545,540,542,549,553,556,539,546,547,549,554,550,539,466,467,473,472,468,468,481,464,475,525,522,513,518,514,519,521,510,512,519,515,513,519,512,514,522,520,514,525,530,524,528,528,527,529,562,558,561,574,560,573,559,550,517,519,525,528,516,529,520,533,522,518,522,574,575,580,590,585,588,592,573,579,576,544,526,529,523,531,529,538,532,530,532,527,537,553,563,575,567,568,537,554,568,469,483,478,461,464,457,473,476,474,530,546,530,527,533,541,536,528,534,572,570,571,581,571,569,570,572,560,567,548,547,539,546,538,543,549,542,498,499,497,489,487,499,492,505,489,509,497,496,497,505,511,502,506,503,501,507,557,536,536,544,549,546,544,547,549,547,557,553,555,553,555,564,555,561,528,527,514,495,493,510,502,500,507,492,502,487,482,482,470,481,477,497,489,496,494,486,487,489,493,499,496,476,466,463,458,461,461,473,467,460,430,430,440,437,440,437,431,441,434,519,523,520,524,514,520,518,526,529,538,529,530,538,534,532,532,536,536,547,542,554,549,550,549,546,548,551,512,519,517,509,521,517,520,531,518,518,519,517,507,506,504,510,512,501,516,505,539,530,522,524,522,528,521,542,529,537,532,534,538,527,532,570,570,576,569,565,575,558,566,567,549,541,538,544,536,535,545,545,529,482,481,504,482,479,486,482,452,455,444,457,458,449,451,441,456,434,555,548,553,542,548,546,558,553,558,553,543,542,554,534,540,541,545,519,512,509,515,514,517,510,510,521,519,583,575,567,593,569,588,563,561,503,532,533,532,516,539,520,533,536,485,486,482,478,486,484,484,475,494,485,484,493,484,491,490,483,485,492,490,567,559,562,577,561,556,570,571,499,505,512,509,519,499,487,497,503,518,484,487,490,488,485,482,490,484,495,483,499,505,505,504,504,504,497,501,502,557,556,560,556,550,555,555,549,565,556,553,553,564,556,546,551,543,553,553,496,504,504,504,495,496,497,497,503,502,499,497,501,504,502,505,499,508,504,505,508,508,507,504,504,508,552,537,542,538,540,536,530,539,575,573,561,567,574,577,518,529,530,525,539,529,547,536,530,539,521,515,514,516,519,520,522,522,594,596,591,592,591,577,597,588,584,582,507,509,504,510,507,513,513,509,506,528,539,541,532,520,524,536,528,531,537,537,537,545,543,536,542,542,538,556,550,551,545,558,558,552,541,556,551,502,526,520,516,510,524,519,519,522,495,489,498,487,496,493,495,485,492,483,461,462,476,468,471,464,464,470,436,447,443,440,454,460,451,444,451,467,473,472,473,466,475,473,476,602,596,582,590,587,587,588,519,527,527,518,523,539,521,526,522,523,528,567,592,591,577,597,587,582,576,528,547,535,546,551,547,539,542,540,508,495,497,496,504,503,494,478,500,509,507,502,510,507,500,500,502,522,540,557,538,547,546,546,545,467,473,459,456,467,455,462,465,450,470,457,469,478,476,472,603,585,607,595,590,604,588,598,591,516,510,509,504,518,513,509,519,514,521,523,529,525,527,532,529,534,522,522,523,518,515,515,519,522,531,532,521,534,534,537,534,528,534,552,555,540,549,545,537,536,542,464,463,448,466,471,463,466,470,463,466,537,531,538,535,522,532,527,545,564,571,571,572,567,556,569,541,547,542,539,553,541,540,543,547,482,508,498,494,502,495,501,488,488,502,495,493,502,500,505,496,492,503,518,511,514,512,513,508,509,510,519,532,545,533,545,542,538,544,546,551,541,537,545,548,540,544,551,503,507,506,505,504,506,508,508,513,507,500,503,502,498,505,500,526,532,525,532,527,526,519,530,524,531,507,513,513,516,514,514,522,518,526,529,521,535,538,530,522,537,532,564,566,560,567,568,565,558,554,561,519,533,523,530,525,542,533,537,537,507,514,509,510,507,511,515,510,512,506,511,522,527,529,526,528,528,524,521,577,575,578,586,574,578,580,595,589,508,510,508,502,506,509,510,537,537,544,549,542,534,528,554,538,551,543,565,555,566,575,565,559,572,558,569,558,532,532,525,530,531,521,531,530,548,474,461,479,468,477,461,472,529,523,526,528,519,524,519,523,527,531,526,523,526,537,533,537,536,533,573,573,560,554,570,561,575,562,547,568,563,552,555,552,548,535,550,555,552,551,556,550,556,560,553,551,545,556,519,535,529,529,521,535,519,524,508,514,509,508,509,502,505,507,507,515,491,501,503,514,509,498,510,499,518,497,501,491,498,502,496,499,498,486,484,484,488,489,489,491,482,491,489,490,495,493,487,492,483,492,490,509,506,503,511,507,504,508,514,509,509,555,560,559,556,548,559,548,546,545,547,548,545,551,552,543,539,531,549,535,543,552,541,500,506,507,516,505,518,501,504,514,484,480,476,478,471,483,484,483,487,469,479,478,474,478,478,480,475,473,475,479,471,527,514,515,522,511,512,510,514,514,571,564,565,569,555,551,558,574,525,513,502,500,512,502,514,505,478,476,483,472,482,481,478,471,478,441,444,444,438,438,447,443,448,431,539,528,531,522,539,518,519,523,530,522,539,534,534,527,530,539,543,526,540,528,537,549,540,538,545,550,558,542,491,483,487,492,485,484,493,497,492,596,577,582,582,580,594,577,571,512,531,520,544,541,526,531,524,529,496,512,516,512,507,513,512,514,514,554,566,566,559,538,554,569,577,505,518,521,522,512,521,520,518,520,518,480,490,489,493,478,488,494,489,488,486,486,486,479,483,486,443,445,453,460,458,446,451,455,457,455,467,445,454,458,456,447,534,537,532,523,529,526,528,532,532,524,525,520,518,525,516,522,527,522,517,526,520,521,528,526,519,526,522,545,537,547,540,534,534,544,534,537,540,540,549,540,549,561,539,544,555,543,491,496,511,513,496,507,505,508,516,578,606,577,590,597,601,588,608,547,555,562,564,561,557,564,566,553,549,527,520,511,519,513,522,507,517,523,528,512,503,497,506,498,502,503,508,507,511,488,485,494,493,496,493,491,498,491,489,452,458,459,465,458,452,470,459,456,510,495,499,507,505,502,500,560,547,543,544,541,549,541,556,500,497,491,505,489,488,493,503,495,491,492,498,498,494,490,490,488,491,545,545,534,543,543,544,543,538,552,545,564,566,579,565,567,567,568,564,515,509,535,519,524,524,510,513,486,483,487,490,494,486,486,485,496,461,488,483,473,478,485,482,482,472,552,552,546,567,564,563,565,553,516,508,512,504,504,503,493,498,507,498,469,465,449,473,453,456,465,473,457,470,501,493,513,497,505,513,492,502,497,541,540,534,531,534,528,539,535,540,541,529,495,477,484,478,484,477,479,462,533,522,528,537,537,526,534,534,541,536,543,540,541,540,535,536,527,540,542,542,544,539,536,546,556,538,549,505,492,492,499,481,482,492,485,493,556,547,543,554,553,530,560,548,540,554,554,506,518,521,515,521,521,513,517,521,512,549,540,555,552,537,548,542,545,539,551,504,487,499,490,503,494,499,491,494,457,464,462,467,460,461,461,462,469,466,522,513,502,512,521,507,505,515,517,552,567,550,556,545,553,556,555,488,500,494,502,497,491,477,475,471,480,477,473,475,477,471,477,560,559,548,527,545,553,565,548,568,511,483,500,492,512,501,507,497,492,497,607,587,606,591,598,590,601,588,584,601,551,529,537,535,527,541,533,538,535,559,556,556,556,558,565,562,559,560,530,532,536,529,525,530,526,537,533,552,547,537,540,539,537,540,540,531,529,531,532,529,533,527,534,527,568,564,567,572,550,572,562,558,563,570,517,519,521,514,512,504,496,518,516,530,482,478,487,483,476,493,479,482,473,513,496,496,492,502,492,498,500,497,501,531,542,517,524,527,514,528,518,524,521,587,590,587,584,587,576,579,573,521,514,510,520,515,520,513,520,520,518,518,545,557,560,562,554,564,557,553,553,548,562,560,555,559,553,567,553,522,519,527,532,520,530,517,519,531,530,532,530,508,511,505,505,517,506,516,509,510,502,498,507,498,500,507,501,496,503,495,475,487,493,485,483,480,481,481,485,463,475,457,460,456,452,459,469,488,483,488,483,487,484,485,474,489,482,589,558,565,573,572,580,565,557,500,509,493,500,507,500,506,509,503,501,543,567,527,538,556,531,507,507,505,505,510,519,502,507,516,572,572,568,561,553,557,570,557,509,522,505,507,521,519,521,510,519,487,491,484,485,483,483,476,492,487,488,457,450,447,444,458,456,442,453,453,450,440,445,446,437,462,456,458,447,556,581,576,584,588,575,579,581,574,553,536,543,543,541,549,548,546,542,549,506,501,499,503,491,494,500,495,495,516,494,506,501,500,502,494,503,511,533,530,534,527,529,536,536,542,539,520,519,524,518,519,523,516,523,519,554,564,568,564,566,567,566,559,559,557,552,560,555,551,557,552,560,561,550,557,521,526,525,509,533,523,532,511,507,512,507,508,510,506,512,511,514,507,502,507,502,503,505,502,498,503,511,504,486,484,491,474,485,483,477,481,485,481,482,473,495,497,499,492,502,491,487,487,568,562,556,546,567,573,559,567,562,553,527,530,525,519,524,526,524,531,528,564,562,552,556,568,560,559,560,554,559,558,545,557,539,543,549,547,542,545,538,486,491,508,508,500,491,496,500,499,500,483,490,498,495,492,489,500,488,493,537,543,541,543,540,537,530,542,570,547,550,562,550,561,529,478,473,480,480,481,491,485,489,492,481,476,491,484,486,477,478,482,494,567,567,574,580,565,594,570,572,597,580,518,498,501,504,497,508,498,495,501,503,506,503,506,508,501,495,497,567,574,563,564,570,575,570,564,565,581,567,500,488,494,521,506,502,505,510,499,500,496,483,486,490,492,493,486,498,570,577,569,565,566,554,572,570,563,527,488,486,505,490,501,491,486,498,508,493,459,458,444,457,449,455,465,443,451,558,549,542,535,549,539,536,535,539,534,528,515,523,522,522,522,525,514,550,558,552,545,549,565,550,508,525,507,511,521,512,516,514,520,481,488,492,475,483,478,484,486,487,485,484,473,477,487,473,478,479,480,473,568,557,563,565,556,544,562,525,521,515,515,527,509,515,476,488,487,484,485,487,487,481,446,459,472,469,472,468,475,502,491,494,509,501,490,493,502,503,503,508,506,510,499,512,511,509,539,541,549,546,548,538,539,551,548,533,555,569,563,569,562,571,563,566,557,557,515,541,530,529,533,532,501,541,515,476,470,463,465,459,475,456,472,481,534,559,558,557,555,546,567,547,510,516,516,502,503,512,499,508,504,530,529,527,534,531,536,537,534,530,554,541,552,565,559,555,551,542,553,466,482,486,475,464,470,483,470,487,436,454,454,444,468,452,455,452,461,562,555,565,562,561,558,565,559,561,567,561,567,558,557,573,570,571,556,565,579,559,528,521,515,519,526,517,525,537,524,542,508,510,516,503,510,507,503,505,475,477,478,477,484,484,485,450,454,461,451,469,461,449,453,544,537,538,540,532,530,546,542,543,518,522,523,519,522,523,520,532,523,536,523,535,531,535,526,530,532,533,530,570,571,569,572,572,565,569,562,564,541,533,526,535,530,519,519,528,507,512,520,518,503,504,512,510,511,566,571,571,575,569,556,575,563,521,516,505,512,524,526,512,534,521,494,492,489,498,493,497,492,497,502,493,510,496,508,503,539,535,535,539,535,540,535,535,536,534,522,505,515,507,505,506,508,509,515,509,523,528,521,525,528,527,526,518,520,581,592,587,578,586,574,583,584,575,518,522,512,525,527,514,513,519,512,560,553,555,557,555,558,556,557,551,560,564,566,555,555,553,562,563,560,548,511,520,521,522,506,511,532,524,526,512,514,509,516,506,510,504,509,502,502,498,486,487,489,492,490,487,494,486,485,480,486,478,482,472,480,481,482,484,465,476,474,480,474,475,476,475,448,449,445,442,452,454,443,547,561,553,550,545,555,554,554,545,554,558,555,559,546,556,550,563,478,500,495,495,487,509,496,512,495,496,509,444,453,462,456,459,449,451,450,480,468,475,481,481,480,483,477,485,569,564,565,569,562,586,578,567,561,563,557,495,481,500,498,491,488,477,491,595,569,589,582,586,569,577,584,570,520,501,506,503,507,509,500,544,543,536,545,549,532,549,537,540,562,553,571,566,556,568,564,559,522,520,525,529,531,526,533,509,523,521,522,522,516,521,524,520,516,542,549,547,542,547,543,551,502,503,502,512,503,500,496,496,505,503,535,536,535,535,531,541,536,535,529,532,533,535,534,533,533,536,537,536,540,555,538,545,547,554,547,543,541,549,479,476,483,468,491,476,464,478,465,561,549,549,555,550,549,573,561,545,564,548,556,560,552,539,549,556,512,495,502,488,485,503,515,527,519,510,517,527,511,514,516,524,519,520,540,536,541,544,537,543,535,471,472,477,476,473,476,466,485,528,532,519,528,528,521,537,526,531,537,545,545,549,549,540,540,541,539,532,543,561,559,546,544,555,544,555,544,483,505,515,504,506,507,494,514,513,459,466,463,460,466,464,455,457,463,476,482,481,482,491,489,486,488,490,537,556,559,549,557,553,543,553,549,555,541,527,532,516,531,522,529,524,517,527,474,472,479,478,486,480,480,504,505,516,505,505,503,504,494,517,553,558,567,559,549,552,553,553,508,494,499,495,499,503,494,499,505,496,494,510,510,508,513,506,520,508,509,536,528,541,543,535,541,540,546,548,542,519,502,504,504,503,495,514,510,552,562,548,563,549,558,560,553,548,554,512,513,504,499,506,503,504,499,488,479,480,483,482,481,483,468,481,481,479,496,495,494,488,495,484,498,492,463,457,463,468,456,458,468,466,466,458,500,504,501,500,513,500,507,500,503,538,552,557,553,550,551,550,557,483,487,494,495,483,490,472,492,470,466,468,470,468,469,465,471,564,573,571,567,573,556,566,568,577,568,473,460,456,476,480,474,455,473,481,527,529,523,520,530,535,521,530,529,539,531,540,548,543,547,539,547,551,555,551,554,552,550,551,551,501,496,503,506,506,509,515,508,507,502,507,513,507,511,511,517,512,508,508,510,511,553,556,568,567,554,570,561,567,558,557,519,516,518,527,530,503,523,505,493,494,500,489,499,496,493,500,499,493,465,466,465,453,453,456,464,459,462,466,451,463,462,452,456,445,460,458,456,454,551,549,548,557,547,553,552,550,550,527,550,540,541,549,560,550,544,548,485,490,501,490,496,489,471,552,558,565,550,542,556,556,541,538,542,473,497,474,487,488,487,478,498,500,574,572,580,586,585,579,577,571,579,587,541,543,539,542,544,536,538,539,516,533,521,530,531,521,525,531,521,491,493,500,499,510,509,503,502,507,499,516,511,505,505,512,505,513,551,552,565,549,548,556,548,555,545,555,557,576,565,557,563,566,554,555,567,561,562,524,528,520,523,528,537,523,523,516,517,524,499,508,510,503,507,508,504,505,514,505,489,481,487,485,490,479,483,480,485,486,480,507,514,497,510,508,507,509,509,511,509,540,542,546,540,550,542,542,543,533,524,534,526,532,533,535,532,533,534,529,550,557,543,556,550,557,553,504,495,502,506,514,500,500,492,508,488,500,505,503,511,501,496,499,509,496,558,538,544,535,535,541,544,533,544,553,560,554,560,552,563,554,546,551,548,515,524,528,527,523,524,524,525,528,551,558,543,544,565,554,555,554,554,542,526,529,530,531,527,532,530,529,532,520,522,523,525,525,519,522,519,523,559,552,558,549,553,548,552,546,560,556,545,543,553,538,557,556,551,544,550,549,532,533,531,542,527,541,542,533,538,513,519,516,512,520,519,522,515,514,511,508,509,515,507,506,506,506,503,509,541,525,528,532,533,534,538,534,535,545,549,537,553,548,541,540,544,533,549,551,555,567,550,561,564,556,524,522,521,521,529,525,516,517,495,488,489,481,487,485,487,485,477,461,466,468,477,466,458,469,465,463,565,557,568,562,564,545,482,480,489,493,487,497,483,491,497,440,452,445,442,465,462,456,575,581,580,565,580,569,583,583,565,547,544,545,548,544,540,545,541,549,528,524,535,528,521,525,521,527,523,475,485,483,488,492,484,484,483,559,560,561,554,557,560,552,558,550,562,565,557,562,552,562,569,504,503,507,495,501,505,507,503,486,488,492,483,485,485,491,488,487,552,543,549,555,559,541,554,561,548,499,497,501,498,490,510,487,499,500,487,493,489,494,499,498,495,537,538,545,537,535,537,540,545,547,533,548,548,556,542,561,554,557,566,547,509,513,518,511,518,518,503,507,521,517,569,554,567,563,572,566,578,577,507,510,513,512,509,514,511,509,523,565,563,541,573,564,566,567,560,581,490,500,488,496,494,500,494,501,493,486,478,482,483,483,483,484,484,482,486,587,602,588,596,593,590,588,595,542,540,532,527,519,522,533,536,495,504,502,494,496,478,496,492,588,593,603,599,600,598,600,582,539,553,564,560,563,558,557,552,483,505,491,498,497,496,499,505,506,505,444,452,454,455,453,453,450,428,448,447,438,446,457,450,454,439,534,544,551,544,546,554,545,541,556,583,580,574,576,569,575,564,569,572,554,541,546,543,553,543,551,544,488,507,490,497,495,500,511,494,498,494,494,496,504,497,496,504,494,500,496,515,516,511,515,509,512,510,509,514,540,544,549,542,541,538,541,540,547,551,554,538,555,545,541,548,528,535,545,516,524,511,516,522,517,513,518,533,532,523,526,528,529,515,527,525,525,510,504,500,508,497,495,500,499,529,562,540,568,558,544,542,544,548,501,506,500,502,509,501,504,506,510,492,499,497,497,497,496,502,505,495,533,530,526,518,537,519,537,529,540,523,470,486,469,477,475,479,489,489,538,542,543,546,549,545,546,552,560,558,561,550,545,560,542,548,554,560,554,483,473,478,476,480,486,488,548,553,539,547,532,553,544,550,552,550,553,554,556,557,549,555,546,558,549,511,492,492,507,493,497,495,499,502,474,486,480,480,483,490,477,482,559,558,543,554,564,553,548,563,552,560,483,505,503,487,493,491,494,498,505,496,501,497,491,495,506,498,494,502,496,498,550,551,540,554,550,557,545,534,550,547,494,515,515,517,498,505,515,506,562,552,562,563,548,556,551,557,558,558,543,550,550,553,558,553,551,546,554,489,480,491,494,485,487,485,494,539,533,531,540,531,541,533,535,529,546,546,543,553,563,553,556,546,551,573,557,552,554,563,568,560,552,549,561,519,528,520,519,514,519,519,524,499,499,491,492,499,497,493,495,469,471,464,470,461,474,471,472,480,490,479,481,484,481,482,483,483,483,510,510,508,512,519,526,504,501,505,566,570,574,584,581,588,576,570,579,544,543,539,539,546,541,540,532,540,538,525,520,512,527,519,531,521,516,516,519,539,570,558,559,544,562,561,526,528,523,526,525,525,523,522,523,521,555,547,551,546,549,543,553,547,494,502,487,491,499,493,499,503,498,509,509,509,503,514,510,512,511,513,530,544,537,545,539,539,544,547,521,520,519,518,518,515,524,526,544,546,545,556,547,555,547,551,546,541,525,513,526,523,506,518,522,519,595,582,601,587,588,598,588,595,600,581,534,548,538,539,538,536,532,535,513,512,514,508,519,522,521,510,512,511,574,591,597,578,577,582,585,592,571,544,543,548,543,549,544,552,555,550,552,544,536,523,538,534,521,525,531,498,501,490,493,489,494,504,509,498,508,559,575,579,578,553,566,560,576,578,575,570,476,491,482,479,482,474,478,483,487,533,520,528,527,524,532,522,518,543,552,550,548,542,543,552,542,564,563,565,559,548,544,558,556,558,547,528,525,521,519,519,527,509,518,515,509,504,500,499,498,501,501,498,507,472,470,472,462,465,475,459,465,459,486,476,478,493,465,479,481,473,559,566,552,547,550,558,547,549,552,550,511,509,511,520,520,514,524,522,491,484,491,485,487,492,492,490,484,498,507,515,510,510,517,498,509,510,504,507,506,515,538,539,550,531,545,539,550,546,542,502,473,480,460,482,476,494,495,465,475,490,545,551,554,548,548,549,555,541,551,559,554,546,552,550,546,547,548,554,551,503,496,487,503,497,504,489,509,498,480,486,479,495,483,489,481,482,523,525,521,519,522,525,520,517,558,551,544,538,545,546,547,549,531,520,525,521,517,517,516,528,521,516,530,525,540,524,529,533,525,532,517,483,481,476,483,471,477,476,479,478,557,565,565,546,552,554,548,544,559,553,563,562,556,563,554,564,561,494,502,498,503,495,502,495,517,519,520,524,520,519,518,532,524,524,557,572,549,565,563,550,555,558,554,477,498,493,503,498,503,501,500,500,513,508,502,503,500,500,505,498,499,514,495,562,555,563,570,551,555,563,558,526,532,538,539,533,543,536,537,538,506,517,523,522,514,521,515,509,534,530,525,537,536,529,536,542,524,536,560,561,559,560,571,586,543,547,559,484,476,478,484,471,490,468,478,478,489,549,548,542,548,539,548,541,537,537,541,558,546,551,548,553,549,559,549,545,494,503,493,497,488,499,491,497,495,493,502,438,448,427,451,439,446,446,431,518,513,512,516,514,517,510,518,517,520,514,517,520,514,525,527,530,539,539,525,541,535,535,538,540,541,543,537,544,544,538,540,519,522,525,521,517,524,515,519,522,538,545,543,543,543,540,543,544,541,503,503,495,503,509,503,495,509,500,535,533,540,537,531,526,535,533,543,536,532,522,518,520,526,533,521,520,526,524,522,523,517,520,523,540,539,545,546,546,539,545,546,550,540,547,539,547,543,549,551,562,557,559,505,509,494,503,508,508,503,498,488,493,494,485,491,485,486,498,501,497,509,497,506,505,506,507,506,540,536,529,539,536,547,537,540,531,542,563,567,568,567,574,571,563,558,509,507,501,497,489,502,500,504,504,525,535,534,532,536,541,535,530,532,547,558,548,573,562,563,568,568,566,566,536,541,542,543,540,544,543,540,546,539,528,530,532,538,532,536,534,528,534,530,537,532,528,536,528,529,534,533,556,564,561,570,544,566,556,553,562,497,504,499,498,496,500,490,503,502,481,481,489,488,487,487,481,487,489,493,570,552,576,567,587,577,578,563,568,498,491,507,500,486,497,501,568,573,582,570,595,577,586,566,576,566,584,523,518,534,525,531,520,511,520,521,520,543,539,559,551,545,558,546,551,521,525,520,523,518,515,521,519,522,527,519,538,527,523,520,538,522,468,473,481,478,474,485,478,480,518,538,529,538,524,531,529,526,525,512,517,527,529,525,519,522,526,524,525,523,519,520,522,521,516,521,524,535,541,547,546,545,549,542,547,550,554,561,543,559,550,570,545,497,498,489,496,505,504,495,497,495,505,495,490,494,482,487,489,493,493,496,559,548,561,564,581,568,557,579,575,562,510,514,494,515,505,505,510,558,543,560,549,545,541,553,540,549,525,503,504,494,510,509,499,504,514,504,559,572,553,556,567,556,554,562,551,556,526,530,532,530,528,527,525,527,524,534,536,536,546,539,543,528,529,480,481,471,477,485,483,478,478,467,475,547,552,544,550,546,554,535,544,540,549,554,553,548,549,551,563,543,547,558,485,492,495,490,489,485,493,507,591,575,587,581,584,587,585,584,588,529,534,545,541,549,552,557,549,496,493,495,493,483,488,487,495,480,484,474,486,477,485,474,491,485,478,557,561,565,560,541,563,572,574,562,503,514,512,522,515,508,506,505,523,492,482,482,486,484,483,480,485,483,444,444,432,446,439,451,445,450,447,518,523,532,523,523,525,532,528,525,522,522,530,528,520,518,518,521,514,542,543,542,537,545,539,541,548,540,550,556,553,564,560,560,556,560,509,517,517,516,507,515,532,520,528,489,496,482,483,482,479,483,499,498,487,498,502,498,502,486,497,505,537,577,556,563,565,569,564,504,489,506,497,500,506,497,498,500,512,514,513,509,511,508,504,518,562,555,565,568,549,558,553,568,562,533,535,533,531,539,531,531,538,535,516,524,526,522,518,513,518,516,552,547,553,544,548,542,544,554,550,594,582,567,577,561,574,556,584,562,540,526,519,531,530,526,531,529,532,533,511,509,505,511,505,504,505,507,513,471,475,478,483,482,477,488,475,480,492,504,505,511,502,497,502,500,500,505,505,549,550,543,547,543,542,543,535,554,573,560,571,553,563,546,555,561,502,486,493,478,496,509,494,502,542,543,545,551,540,558,544,556,537,558,568,578,586,575,583,571,578,561,568,564,530,527,541,527,535,540,530,531,519,514,520,507,510,513,504,520,516,517,505,509,512,506,500,501,501,499,506,505,511,543,539,547,545,543,543,541,539,543,574,573,571,571,573,560,560,560,563,563,551,550,554,551,549,541,548,545,543,548,487,492,502,492,489,496,489,502,489,502,492,511,501,485,495,504,494,495,561,563,571,572,580,568,558,556,586,571,563,496,484,502,490,502,496,498,473,493,503,459,456,469,454,461,465,458,459,473,573,593,592,593,597,585,579,578,577,525,541,536,537,536,524,526,530,524,527,568,563,563,556,551,568,554,562,500,496,511,492,500,503,496,507,501,504,462,459,460,454,460,465,516,517,507,519,511,526,516,514,518,564,558,545,550,563,558,560,567,568,548,489,498,496,500,491,504,498,502,490,497,498,503,499,498,498,506,504,496,536,536,545,539,539,540,543,557,558,567,558,556,555,561,562,562,559,507,499,482,494,495,494,484,468,457,456,457,458,470,465,462,538,553,566,552,562,551,556,546,552,551,506,516,499,503,493,504,518,510,511,500,557,556,564,559,564,565,549,556,553,518,518,504,530,509,510,515,515,524,485,488,489,483,487,490,494,478,438,430,440,443,440,442,440,443,437,437,526,532,526,530,524,532,535,533,528,542,556,565,560,578,563,576,562,564,565,544,552,554,542,548,539,552,545,525,523,525,535,522,524,524,529,523,535,523,499,503,493,497,492,491,488,486,509,490,607,577,589,592,579,588,597,595,575,585,584,585,534,527,515,530,539,528,526,522,528,580,582,577,590,598,582,571,587,572,539,540,522,543,540,543,552,541,550,568,562,567,571,561,574,564,509,501,508,488,511,508,491,498,508,507,466,469,472,458,469,467,471,476,473,561,564,555,565,559,556,558,567,571,566,551,561,549,555,555,550,563,551,483,510,501,505,503,501,490,498,473,480,481,482,480,488,483,485,474,462,451,465,454,462,459,457,458,448,443,455,437,438,449,441,435,440,440,443,533,542,546,535,554,534,546,540,546,550,551,549,556,553,557,548,552,486,486,504,508,514,495,499,494,509,459,451,462,458,451,455,465,455,451,494,514,505,503,505,502,499,499,545,540,541,542,543,557,545,543,553,553,540,525,519,523,516,521,523,520,528,583,590,588,592,591,592,601,600,591,550,553,555,550,560,553,551,554,552,553,493,502,503,498,497,496,497,497,506,503,531,510,521,515,526,513,529,511,520,506,520,561,559,553,568,568,556,561,564,565,490,501,495,492,499,484,496,495,488,468,457,466,470,458,469,455,459,466,553,561,562,559,549,550,550,550,557,545,548,547,554,542,556,549,555,550,553,457,470,492,461,465,473,469,478,471,483,536,523,515,525,522,531,520,514,517,521,518,533,546,539,541,538,545,545,541,537,544,543,553,540,540,547,546,550,546,496,501,491,508,494,489,499,495,466,457,451,464,463,453,456,453,484,501,503,479,495,494,490,505,491,497,569,564,562,571,563,565,563,571,563,498,515,498,499,511,523,503,505,483,477,484,483,479,478,477,482,483,562,557,559,560,553,555,567,562,568,556,503,490,496,503,509,497,494,497,502,493,444,451,441,440,449,459,443,452,457,438,544,544,549,543,539,541,530,534,552,535,538,535,540,530,517,535,551,490,490,483,502,484,484,493,494,496,485,568,568,574,570,564,566,580,566,583,542,531,523,521,529,527,529,535,520,555,557,549,565,556,560,558,544,550,469,468,473,487,497,468,471,490,461,474,452,447,450,450,455,451,450,460,457,443,549,559,549,547,546,551,556,545,537,561,543,545,552,556,550,546,479,494,479,487,488,491,503,473,489,589,585,586,574,583,579,572,587,546,536,533,533,534,533,532,530,520,538,519,528,509,517,519,509,521,508,520,523,582,582,590,577,587,582,583,591,592,547,547,531,537,530,545,529,533,529,520,507,510,510,512,513,520,514,518,512,527,526,532,530,531,528,522,535,532,523,572,561,549,555,550,542,553,550,551,541,504,521,508,522,517,517,518,516,535,554,554,547,559,546,553,552,546,500,523,505,518,514,519,515,512,465,482,472,473,458,480,464,470,467,478,582,584,578,574,589,598,570,582,520,509,505,514,511,503,507,515,542,545,547,550,536,546,545,546,543,555,557,546,548,553,548,548,552,549,539,539,480,459,490,473,490,477,474,472,462,544,542,547,544,537,558,546,546,543,548,550,541,545,550,536,545,542,537,535,475,475,485,478,469,487,468,486,466,493,503,499,494,486,488,494,492,568,562,565,565,569,564,560,568,566,540,547,545,542,553,549,553,542,540,517,498,496,495,502,496,496,519,505,510,525,518,513,517,509,529,564,542,561,541,553,558,552,553,551,556,557,476,477,488,478,472,487,487,483,474,447,433,443,445,441,444,440,453,525,527,524,535,521,531,519,520,536,533,525,535,534,532,528,541,533,551,547,542,557,541,547,540,552,540,546,545,471,479,488,472,472,475,473,479,477,480,544,545,549,546,541,547,543,536,540,536,553,541,547,532,534,529,497,469,469,487,477,480,476,485,491,506,493,491,499,488,498,494,492,533,532,542,544,541,543,544,541,538,564,575,569,556,562,575,564,559,542,501,512,510,504,498,505,511,506,511,578,580,580,589,571,590,603,597,605,520,533,526,533,536,535,536,532,528,538,499,497,496,496,490,496,494,489,495,491,589,593,587,579,599,597,583,575,579,591,539,543,521,522,541,523,525,504,495,497,482,498,500,495,492,579,600,597,594,601,595,584,589,593,589,538,551,540,542,544,538,535,550,546,542,576,562,547,558,570,570,572,505,506,504,503,495,502,502,498,511,507,511,513,506,512,507,509,514,565,564,565,574,568,567,572,563,566,546,548,545,549,551,554,553,553,492,487,499,505,495,491,493,491,482,480,477,485,479,478,488,471,481,601,602,594,606,588,611,596,593,593,518,509,514,498,509,503,501,492,539,541,546,538,534,548,542,565,565,583,564,565,566,570,556,563,505,496,496,505,503,499,502,497,506,539,533,539,547,536,543,533,546,553,566,560,561,563,560,548,562,561,518,497,516,506,511,500,501,505,521,546,537,538,544,547,546,536,535,541,536,555,547,536,553,544,545,541,543,503,509,497,504,511,501,511,505,510,508,521,518,517,518,508,513,518,523,506,558,565,574,580,588,586,573,591,508,516,503,510,507,503,522,502,513,545,532,536,538,538,541,544,541,540,537,572,547,563,560,576,568,558,569,577,563,496,503,495,499,498,501,496,506,543,543,545,533,541,546,538,561,561,574,563,552,579,558,566,566,565,548,538,542,542,548,557,547,547,547,548,509,495,507,514,501,505,504,497,509,508,464,466,465,460,461,462,456,460,440,426,457,458,442,443,439,448,540,542,541,546,546,551,553,540,537,555,548,547,551,550,541,542,504,502,486,498,499,500,487,500,498,502,501,479,481,478,490,488,488,483,478,481,508,495,499,497,497,499,498,493,509,491,478,482,478,484,480,481,486,485,481,472,469,479,473,470,476,477,468,480,474,503,508,500,503,503,509,510,552,543,539,546,544,550,541,546,535,559,511,495,487,498,503,500,504,507,508,499,510,508,511,513,501,512,511,572,547,558,558,555,559,555,560,547,519,515,517,502,502,511,505,510,519,496,483,489,489,478,484,486,484,490,484,479,474,483,481,483,477,483,477,484,478,477,480,481,482,480,475,472,475,476,470,462,463,466,465,473,545,550,564,559,553,560,551,569,534,551,496,507,486,503,515,483,486,504,502,502,503,496,500,509,494,507,496,537,525,530,521,525,529,530,528,514,515,514,522,523,515,519,521,523,526,567,569,566,563,559,565,564,549,561,570,550,561,554,562,553,553,560,553,555,530,522,513,519,521,517,518,513,518,481,479,477,483,478,474,482,473,481,454,465,457,450,464,460,453,462,536,549,546,536,548,536,542,541,564,562,558,568,569,581,559,578,566,562,550,553,551,554,557,546,551,547,542,556,552,551,555,554,547,560,548,522,527,522,529,523,518,524,527,529,502,505,502,504,505,499,504,501,507,504,495,499,496,497,496,498,495,498,499,494,467,470,466,466,474,459,471,461,467,431,430,429,425,424,431,428,425,426,521,526,512,517,513,525,518,514,519,525,520,538,535,539,536,531,535,534,530,534,548,545,547,534,544,544,545,556,545,519,518,527,524,518,520,524,521,546,542,541,544,540,543,545,544,537,494,503,515,521,516,509,507,511,519,504,543,556,555,547,572,556,563,548,552,554,547,543,545,555,548,538,495,508,500,487,505,504,489,479,496,488,484,488,468,476,471,473,474,478,487,479,551,564,559,555,551,555,555,548,547,499,483,494,492,481,483,503,488,502,485,491,496,481,487,482,473,491,479,603,579,586,579,593,593,582,530,531,538,532,527,537,528,536,532,519,484,493,492,491,494,488,497,497,594,587,584,573,597,577,591,595,586,507,506,504,491,515,512,509,516,507,537,537,542,545,549,540,546,544,534,544,567,564,565,565,577,571,580,573,546,545,546,541,540,538,538,545,541,489,490,496,491,495,490,489,487,474,469,475,476,474,466,467,473,475,467,528,541,535,556,538,549,545,548,538,516,515,517,522,519,517,516,516,520,553,555,564,559,561,557,561,529,535,524,535,535,532,526,530,508,499,498,509,504,499,505,515,505,513,548,562,534,559,564,550,556,570,569,557,564,519,516,524,503,510,519,516,517,520,527,531,523,519,526,521,524,517,521,529,520,598,572,581,575,577,566,600,586,579,584,529,542,526,540,540,537,528,527,534,531,505,511,521,508,520,508,497,506,504,510,593,568,564,562,559,575,557,559,558,555,482,492,496,501,489,486,489,494,485,483,566,561,562,547,559,564,560,562,555,567,559,546,549,556,552,549,552,550,554,493,510,501,479,498,480,506,492,495,466,469,466,465,469,465,458,472,470,467,442,437,440,442,444,444,450,431,563,551,550,549,550,556,541,551,549,559,544,533,541,545,549,543,537,556,542,468,477,471,478,476,464,477,477,485,477,475,471,478,476,473,482,471,473,571,552,557,566,575,555,570,560,510,496,509,508,515,490,508,500,510,506,485,483,481,479,482,478,526,516,520,514,518,510,509,526,511,522,566,581,584,595,595,583,592,590,580,591,549,559,562,548,557,552,552,546,556,502,520,510,522,524,514,520,509,504,520,511,474,478,481,482,478,489,477,482,492,500,498,494,501,501,494,502,496,500,491,527,528,530,523,525,528,524,526,584,575,586,585,572,578,578,577,591,523,504,505,498,504,509,501,516,499,515,543,540,543,528,538,532,540,540,529,568,554,553,563,558,563,570,560,510,499,516,508,501,499,491,500,505,539,536,540,542,532,545,538,544,542,573,567,571,558,562,560,572,576,505,501,506,511,497,503,501,488,532,538,544,542,538,535,534,554,559,579,565,577,563,574,541,534,537,544,527,531,541,534,535,538,531,523,531,524,527,527,530,555,562,569,563,553,554,562,555,551,561,563,471,502,495,491,487,493,488,500,502,499,470,483,481,483,476,466,479,473,478,481,476,571,589,596,589,591,600,592,542,539,537,543,527,541,545,531,538,521,520,524,519,519,517,520,517,513,548,552,553,540,545,550,555,543,496,499,498,503,501,502,506,493,504,495,547,544,545,546,547,541,544,532,541,559,565,567,564,570,558,569,555,489,501,489,501,508,506,489,501,537,546,536,536,542,537,540,535,535,530,557,568,568,565,570,554,555,580,568,568,512,491,506,502,505,500,501,494,538,538,542,540,538,544,533,540,544,568,569,569,577,581,565,564,571,561,557,514,534,533,529,532,532,521,520,501,494,486,502,496,480,498,608,588,580,591,600,596,596,594,574,526,533,538,541,537,538,541,529,534,534,509,530,517,513,520,513,521,530,589,586,588,598,582,602,586,551,531,521,530,539,527,530,530,518,494,490,492,488,489,497,490,483,615,603,602,582,572,586,601,582,587,579,535,538,532,533,535,543,534,531,539,570,555,558,550,553,569,562,567,567,556,575,525,502,519,511,500,504,502,501,529,506,462,468,469,468,465,458,461,459,462,469,478,479,481,483,483,489,479,490,472,477,474,480,476,475,480,476,474,470,460,460,466,457,459,455,461,458,464,468,466,464,472,464,461,472,542,552,563,557,546,557,540,556,549,521,518,511,504,507,509,519,515,506,525,510,503,508,486,497,496,493,494,490,490,482,487,486,490,488,486,479,486,497,494,496,501,501,503,495,500,496,498,501,502,503,499,496,504,497,508,478,479,481,483,478,492,481,486,482,482,466,464,471,463,453,466,520,507,523,509,518,519,516,509,505,552,565,562,565,567,568,562,569,564,503,509,496,495,496,501,495,500,490,495,490,495,488,494,486,486,486,558,555,564,569,564,569,558,548,570,533,530,529,527,528,531,531,529,526,545,542,549,536,530,546,541,537,532,492,510,500,516,518,522,510,515,549,535,547,571,564,552,532,573,558,553,507,502,502,510,511,507,506,503,506,539,560,566,564,567,567,551,580,501,501,501,510,507,505,499,506,508,556,549,551,546,558,555,552,550,505,513,509,507,521,500,504,477,471,478,471,469,481,482,471,480,476,477,481,482,480,477,480,483,477,481,503,499,497,503,499,496,486,493,506,498,566,573,564,561,563,569,553,556,562,561,556,560,556,557,550,556,545,549,550,507,498,498,482,493,495,481,492,492,485,456,469,469,465,455,460,462,465,462,540,542,524,532,541,537,545,537,530,539,546,552,555,552,556,541,542,560,562,557,555,554,560,556,575,567,567,518,524,517,523,524,526,520,523,516,521,486,487,486,485,489,491,487,484,485,493,498,495,503,496,496,499,500,499,502,520,514,528,530,532,519,526,530,589,584,584,578,570,571,583,573,578,581,533,533,537,531,540,528,531,539,532,516,521,521,519,513,518,524,529,519,558,560,560,567,555,564,566,557,548,555,558,547,545,558,546,550,547,561,558,510,496,494,503,501,496,495,510,501,501,441,463,474,450,457,453,458,489,485,484,485,494,494,487,489,527,527,531,524,521,517,532,526,577,598,588,586,573,586,590,584,578,532,531,539,525,532,532,527,532,534,514,490,490,499,496,491,487,486,493,490,596,584,588,595,595,590,591,590,596,559,555,554,557,554,569,548,565,572,555,513,514,511,525,517,517,520,521,517,528,478,484,481,483,483,480,481,478,476,504,497,499,492,505,497,504,492,489,579,580,560,574,576,562,573,574,564,572,522,510,516,523,519,522,521,488,489,493,487,490,486,489,494,493,493,474,487,485,486,472,483,470,482,483,475,548,563,547,560,569,559,547,561,558,504,515,494,508,509,492,499,500,485,477,475,481,475,467,479,475,475,475,484,521,552,528,555,563,542,558,558,539,496,511,499,493,503,502,498,497,507,571,578,577,565,575,560,544,577,491,505,504,513,514,517,508,504,507,538,546,545,564,553,552,541,552,544,544,499,504,495,498,496,501,492,482,498,499,503,498,495,498,499,494,502,494,555,564,558,551,563,555,557,563,558,535,540,527,519,523,529,528,531,516,508,517,503,500,502,501,500,503,515,567,549,564,567,570,560,556,535,559,556,522,515,514,524,518,518,527,516,517,514,509,526,514,510,519,527,519,520,519,575,590,582,571,578,580,584,569,579,534,532,544,550,534,544,548,542,543,532,534,531,523,537,536,534,520,507,512,517,512,510,512,509,515,523,518,514,525,525,528,522,527,521,527,526,577,595,588,579,590,581,585,576,576,585,536,530,533,540,521,533,525,537,528,490,498,483,500,489,491,483,596,573,579,585,592,589,586,584,588,546,534,543,546,547,549,545,534,553,564,566,564,580,566,575,560,576,563,512,526,521,527,511,532,525,530,522,535,475,484,486,479,483,481,480,479,483,483,470,476,483,478,488,472,477,611,589,595,579,605,619,600,608,548,553,548,549,558,555,544,555,551,556,493,489,498,492,489,501,498,505,490,487,483,487,479,480,483,483,487,562,557,557,566,577,548,580,569,564,552,515,519,525,518,519,520,515,514,524,544,544,536,552,551,543,551,547,548,541,561,551,548,544,554,553,546,547,537,552,553,544,538,541,550,546,537,546,546,545,489,486,475,485,488,488,471,487,498,477,467,470,473,475,472,477,466,462,562,548,552,564,558,565,552,552,561,559,498,497,501,497,507,491,492,493,492,478,466,465,471,462,459,464,466,464,471,464,471,560,546,542,546,551,569,549,550,532,508,507,506,496,510,506,497,517,498,501,553,547,567,562,552,558,562,554,565,560,560,507,502,512,511,499,502,517,497,489,485,492,493,497,489,486,485,489,484,475,495,478,492,478,582,564,579,556,565,564,552,569,550,492,478,504,497,502,510,497,488,494,457,464,458,465,462,459,460,464,555,548,549,558,557,551,550,548,543,542,576,577,569,561,587,565,577,565,559,565,543,549,558,548,547,532,547,539,551,545,499,512,495,504,505,512,500,507,490,457,453,460,459,462,459,454,463,459,500,480,488,470,478,486,457,473,473,472,554,570,564,568,570,552,557,564,560,562,515,519,516,529,515,520,526,534,534,529,534,531,535,531,533,566,561,561,558,558,555,561,567,563,561,491,494,497,499,506,496,468,503,510,435,444,431,439,435,428,428,443,437,439,524,525,524,526,541,535,530,533,526,526,538,549,549,541,550,548,542,555,519,526,516,523,518,512,524,522,517,518,557,555,560,562,552,557,557,555,543,521,523,509,515,509,508,517,508,511,499,494,506,502,492,498,492,499,503,476,482,482,474,474,489,483,482,487,485,441,441,445,435,436,431,443,450,444,523,526,525,523,531,522,526,528,526,529,526,516,514,517,514,520,519,517,525,519,518,524,519,525,521,529,540,543,540,538,526,542,537,556,543,548,539,541,548,548,535,548,528,500,509,519,504,507,499,509,514,563,554,568,568,546,560,564,567,547,546,461,483,479,477,492,490,486,482,517,492,507,508,498,496,499,494,542,551,546,545,552,539,552,544,547,546,505,499,505,490,498,498,495,495,507,510,501,511,497,501,502,506,504,501,520,530,529,531,520,516,520,526,535,485,505,494,501,500,487,498,499,491,583,590,604,583,585,574,595,588,590,538,541,532,538,523,529,537,533,538,526,542,544,554,544,559,554,555,552,551,562,511,517,526,513,517,519,518,518,520,551,555,548,559,547,549,538,552,560,547,540,526,527,536,534,524,535,535,528,530,534,532,531,530,534,534,527,537,558,554,557,549,557,565,558,557,499,499,490,501,505,504,497,495,497,494,504,507,506,515,518,516,511,512,509,543,546,546,548,547,546,549,547,547,531,530,532,532,532,525,535,529,530,534,560,547,557,553,556,563,555,546,511,497,501,515,508,503,509,509,505,461,469,470,457,471,466,470,482,502,491,490,493,487,501,496,501,524,538,542,541,539,543,543,528,532,538,491,485,492,488,492,492,497,491,500,498,477,466,468,465,464,475,449,467,470,463,489,503,505,494,494,494,497,493,499,532,530,515,530,534,531,525,530,521,526,580,581,575,574,579,586,576,576,586,529,533,539,538,541,532,524,531,486,472,475,476,476,467,473,482,469,473,523,528,520,530,539,532,525,530,521,543,531,540,542,532,536,542,537,545,550,551,533,542,541,548,551,552,514,516,526,520,517,518,524,519,511,512,511,500,507,504,499,503,498,505,507,535,536,541,540,541,543,540,539,531,542,567,566,567,577,561,563,560,560,519,527,511,529,531,527,521,518,524,524,566,574,568,562,554,579,559,566,552,536,561,509,501,502,496,491,484,490,539,535,539,542,538,554,548,557,508,524,515,517,514,516,523,519,521,518,563,561,560,554,559,554,545,561,564,543,536,546,542,543,531,545,532,534,539,499,494,501,499,494,488,496,496,510,462,467,470,467,457,470,470,424,445,430,435,432,434,439,437,428,543,528,536,528,543,534,549,574,565,575,561,573,570,568,563,559,576,563,544,543,551,554,551,548,548,551,496,497,495,496,504,506,500,496,498,508,508,501,498,503,501,502,501,507,533,532,527,524,535,535,538,529,533,555,576,549,551,557,545,547,554,544,556,499,494,493,493,501,499,500,509,527,541,550,548,541,557,526,542,507,507,514,503,512,517,510,504,511,503,573,566,558,578,566,572,559,566,494,497,509,524,522,513,528,523,514,518,467,479,476,468,473,474,474,471,491,498,495,485,502,497,499,506,505,552,544,548,544,547,546,547,561,546,542,553,497,509,516,519,507,526,512,525,512,485,491,466,479,482,472,479,466,470,462,467,468,474,470,468,488,500,498,492,499,495,506,505,505,495,539,548,531,535,541,541,534,537,517,511,506,512,515,516,512,510,509,497,498,498,506,499,506,495,502,501,536,539,539,543,538,542,543,545,566,561,559,566,575,564,559,572,528,517,528,528,510,523,531,588,580,580,584,591,579,583,590,587,529,521,526,535,533,541,545,541,531,528,491,485,477,477,482,479,481,481,569,552,552,566,557,554,560,548,553,562,550,554,561,572,563,572,566,560,569,555,527,527,516,507,524,512,525,530,486,489,485,491,485,485,490,470,481,475,478,475,467,471,481,482,550,563,541,555,543,551,545,552,546,542,530,517,512,512,516,513,515,515,508,507,505,509,501,510,518,509,504,546,537,534,528,536,528,533,536,541,538,542,544,538,531,536,537,545,543,553,552,542,547,544,549,503,498,506,492,513,508,498,504,494,500,496,511,597,597,596,598,606,591,595,598,596,557,550,546,556,553,558,558,550,477,495,491,492,490,495,478,490,491,485,468,479,487,487,482,471,477,480,475,569,608,589,584,600,596,585,531,541,544,536,539,542,542,536,539,499,497,509,505,500,509,515,500,526,522,530,526,523,531,522,531,528,520,537,527,537,536,529,528,537,528,525,574,575,564,562,559,566,572,559,568,530,535,527,520,515,536,526,524,536,528,521,491,493,500,488,500,507,494,494,585,591,582,591,585,609,584,596,604,565,558,557,561,546,554,558,554,502,518,508,500,516,515,503,515,482,480,484,475,478,492,480,471,431,439,446,441,456,443,440,441,433,536,533,532,539,540,529,544,541,534,541,566,579,563,564,560,565,568,578,553,541,545,552,550,545,555,557,555,514,513,522,517,525,534,522,517,529,519,503,517,502,517,507,514,504,516,505,499,498,501,502,501,505,503,489,482,478,479,484,483,481,478,479,489,475,469,479,468,475,468,477,481,556,551,569,571,559,563,565,561,472,478,473,486,474,462,478,465,469,474,473,494,481,487,485,474,472,478,470,470,560,554,573,560,557,577,573,554,572,495,478,483,466,485,493,482,478,547,551,547,549,561,549,549,542,548,586,566,567,569,561,564,572,570,535,535,536,528,548,524,528,539,537,529,519,520,518,521,528,521,521,535,539,538,540,533,539,538,537,544,503,516,512,507,516,509,514,516,513,507,502,510,523,518,522,531,512,515,526,580,584,568,582,586,567,583,587,580,588,506,509,515,521,515,523,518,509,516,544,543,540,547,543,546,549,555,543,544,543,534,533,541,550,533,539,546,545,505,522,497,499,507,512,501,499,511,571,548,542,548,563,566,558,540,543,559,498,494,502,498,488,487,501,493,496,511,517,515,510,514,515,514,515,537,556,560,553,549,553,549,556,550,548,509,503,511,498,499,511,509,506,504,512,543,547,546,547,537,548,542,549,547,535,553,539,546,539,549,539,541,511,516,516,520,514,512,518,509,512,510,540,532,527,530,530,540,518,517,521,513,514,514,507,510,512,510,514,505,506,507,498,504,503,506,509,497,537,541,544,545,539,541,539,538,542,540,566,563,565,573,562,564,573,565,566,532,526,535,536,532,533,530,529,531,540,572,567,560,569,561,549,562,504,517,505,513,502,506,508,498,495,590,585,579,574,584,598,591,574,596,542,544,540,550,540,549,542,539,539,527,535,531,529,524,524,526,528,528,544,539,561,551,557,549,565,549,541,546,482,471,490,484,487,487,496,496,488,466,469,468,470,464,458,463,464,471,557,576,574,562,553,554,558,560,483,490,476,491,492,484,486,490,486,574,574,586,576,590,590,585,589,571,587,531,523,519,513,522,529,513,525,493,508,481,500,490,502,490,492,497,582,588,575,584,587,577,580,578,532,534,545,544,540,541,544,532,540,520,514,520,516,523,516,519,518,524,560,563,558,563,562,564,564,564,564,568,556,566,566,557,557,566,560,560,530,519,517,534,513,525,524,520,518,502,503,511,511,508,504,505,508,505,493,493,499,497,498,493,498,498,497,486,484,481,480,488,480,479,485,485,478,482,492,482,486,470,488,480,582,551,559,548,572,557,562,554,558,555,494,497,493,492,503,507,498,494,494,511,521,510,506,507,506,511,510,515,510,561,548,543,551,550,554,542,504,504,505,496,503,500,504,500,507,504,543,536,536,527,524,539,538,532,538,526,523,525,525,538,530,531,539,536,531,551,556,544,541,550,558,544,541,551,477,478,487,466,476,478,470,475,466,547,540,538,547,544,546,535,546,547,553,548,548,552,551,556,556,553,509,485,508,489,495,485,497,491,453,460,462,468,452,456,463,534,551,542,546,534,544,543,516,519,516,520,516,520,522,511,511,519,528,530,525,521,534,524,520,532,513,522,522,524,513,515,516,537,556,558,552,553,546,548,558,548,542,539,528,524,529,520,533,523,520,526,533,502,512,508,514,507,512,508,505,541,538,544,551,543,547,539,539,541,501,497,504,506,500,500,501,501,495,502,535,529,537,539,529,533,534,533,543,537,533,538,537,536,538,545,545,543,544,551,548,554,555,530,546,552,554,551,511,484,489,493,501,509,493,507,497,459,464,472,469,470,472,460,463,469,458,457,463,463,462,459,458,463,460,569,554,570,554,563,563,555,536,492,501,498,493,497,496,495,491,558,555,560,548,552,556,538,548,570,558,510,497,509,497,481,507,508,503,508,505,477,478,477,477,481,484,478,481,491,484,488,497,497,487,489,491,471,466,461,467,471,464,464,468,464,473,473,466,464,463,471,470,469,467,537,548,548,546,545,553,558,554,477,474,480,474,489,471,473,486,490,479,554,547,553,544,553,548,563,551,550,554,551,549,553,553,551,548,549,459,483,481,474,465,493,476,470,527,512,532,526,524,525,525,517,530,528,537,532,531,536,533,537,532,529,538,538,550,552,550,539,552,560,543,543,554,552,533,477,462,471,482,481,490,468,464,541,533,546,550,544,541,543,531,546,529,538,547,546,547,540,545,532,544,518,518,517,520,520,519,524,523,517,568,559,563,563,555,551,563,557,556,530,525,522,543,530,522,526,526,528,513,530,487,489,504,501,503,488,501,505,496,597,578,594,577,583,581,592,596,535,533,537,535,530,528,547,539,535,508,505,503,507,511,507,509,510,514,576,561,569,553,572,575,549,559,575,566,549,485,487,497,503,492,497,488,503,501,498,488,559,548,561,556,564,562,548,560,561,557,553,559,564,560,550,564,551,514,507,520,502,508,500,518,511,519,470,461,466,468,464,472,474,473,462,463,462,460,456,457,445,450,466,453,541,537,568,543,551,541,537,549,539,541,526,521,523,520,521,523,517,523,518,555,548,557,547,558,556,553,542,552,552,515,518,514,522,524,517,516,514,507,500,495,502,491,499,498,498,469,486,481,480,485,478,486,490,477,473,453,459,456,459,456,454,452,460,458,505,496,487,500,490,488,487,489,533,530,525,528,527,520,532,524,518,522,525,532,524,525,525,521,532,526,541,548,548,546,549,543,552,556,554,560,492,482,488,488,495,486,490,487,507,472,461,472,477,475,467,460,471,475,556,548,545,551,556,549,554,550,546,513,508,511,505,518,512,516,502,512,510,507,505,514,504,531,533,530,525,534,526,535,525,536,531,511,512,513,513,523,517,517,515,514,521,521,528,524,526,527,530,529,526,577,570,566,570,560,562,566,568,574,520,515,525,521,526,530,533,529,531,564,570,551,562,566,546,561,556,497,495,487,498,494,491,496,491,501,502,559,569,574,552,557,566,537,540,557,551,480,491,497,492,491,493,487,484,498,573,575,573,578,553,572,577,565,496,507,502,504,501,505,505,511,514,518,526,533,527,531,538,533,529,519,530,540,536,538,541,540,542,533,541,543,546,552,541,534,541,541,539,541,535,549,540,473,485,481,472,478,465,470,481,472,453,439,446,449,442,449,451,438,452,449,533,532,535,529,527,528,527,520,529,521,533,535,538,533,537,539,530,559,568,565,570,571,568,568,571,569,571,552,532,532,549,539,546,545,532,536,536,508,492,499,508,488,490,499,503,475,478,472,468,480,470,479,474,471,472,493,512,510,507,508,520,510,501,509,572,556,550,544,552,553,562,492,497,495,495,504,503,499,481,513,522,519,514,514,512,528,510,512,519,546,538,547,551,538,533,535,558,538,537,511,518,519,516,516,514,506,522,522,571,568,585,575,573,567,555,563,571,502,512,521,516,516,515,512,521,517,492,491,485,485,492,489,487,489,485,485,491,492,496,495,500,495,499,496,482,497,556,552,558,546,554,555,551,549,542,556,550,549,541,541,540,542,545,549,536,539,521,526,532,530,528,528,520,464,462,458,461,465,471,463,467,461,559,554,552,553,566,568,551,552,554,555,550,556,561,557,558,557,564,548,554,497,498,493,492,496,492,507,504,489,487,507,508,498,489,496,496,499,494,576,555,552,557,559,568,562,565,564,564,578,533,532,532,528,536,530,525,535,533,530,565,563,561,567,558,554,569,571,568,509,515,525,520,515,532,509,496,479,477,482,476,474,476,478,487,484,478,492,496,496,500,496,494,501,494,538,530,544,540,538,536,538,536,539,562,548,564,554,545,549,561,556,565,491,502,485,492,501,504,496,472,455,469,455,460,461,462,466,559,539,545,553,550,540,551,558,554,550,543,493,508,503,497,496,494,490,500,546,532,543,538,542,563,549,550,536,521,514,516,517,520,519,521,516,522,513,562,568,560,555,566,561,576,544,553,546,547,545,550,541,548,545,506,509,497,488,488,505,496,498,502,500,506,506,505,508,494,506,506,504,512,560,554,573,570,562,561,563,566,556,565,544,549,553,545,546,559,543,549,547,553,562,485,502,493,496,490,491,496,505,475,487,489,488,488,481,487,487,487,482,552,581,585,570,571,580,576,560,572,508,515,508,516,519,506,519,502,514,519,455,466,465,472,465,470,467,471,462,473,456,458,467,463,451,464,464,461,478,486,482,490,488,490,486,479,490,484,503,509,501,511,504,502,504,506,540,536,533,530,535,540,542,535,568,562,559,570,571,574,566,568,559,560,541,538,546,545,552,544,551,540,545,503,489,496,492,486,499,496,498,504,513,511,505,508,515,512,520,509,511,516,542,551,543,534,551,540,538,547,544,500,506,504,504,501,495,499,500,494,495,489,485,490,495,483,500,502,502,504,505,500,504,501,504,542,539,534,543,538,534,534,538,563,560,572,560,568,564,571,574,564,559,565,538,535,533,532,542,530,534,533,537,516,514,510,517,524,522,521,516,521,526,547,545,545,546,546,543,546,546,548,540,547,565,580,568,556,568,555,561,568,572,584,501,504,513,504,515,510,509,517,489,475,479,489,482,486,477,494,478,486,487,474,569,561,566,556,544,546,562,559,554,555,516,516,507,517,509,511,505,512,512,508,474,469,461,466,466,469,464,466,459,428,440,440,440,444,447,441,436,431,532,515,537,535,531,539,521,522,546,554,547,551,555,555,550,538,553,464,480,475,461,466,468,478,473,533,532,536,537,546,533,537,535,525,547,568,582,563,555,559,570,561,557,572,534,540,540,543,542,535,538,547,579,555,574,574,571,555,570,570,568,493,502,497,495,508,499,493,491,491,496,495,491,488,485,490,491,557,570,578,571,572,574,580,569,581,567,499,506,494,490,493,493,493,480,496,452,442,442,455,437,442,446,436,432,537,535,527,540,536,537,532,533,537,547,544,545,553,546,540,542,548,548,501,499,502,498,501,500,506,502,508,508,553,562,558,582,561,557,555,574,515,505,513,518,527,525,508,483,484,474,478,487,478,473,466,486,475,492,488,484,486,485,477,593,590,601,594,587,588,587,592,534,536,542,533,533,536,536,544,540,521,524,522,522,521,525,521,518,519,555,562,558,566,557,561,563,565,570,581,541,545,544,539,554,550,549,544,542,486,475,489,487,493,492,473,493,493,481,475,446,443,445,447,435,448,440,457,440,525,529,523,532,539,520,530,525,528,515,517,507,515,510,512,517,509,514,529,530,534,529,529,529,532,529,530,532,572,568,572,571,571,572,566,565,551,551,548,554,540,553,542,546,514,529,530,520,527,504,518,512,491,489,485,485,495,497,485,492,462,455,452,455,449,460,458,462,460,510,506,503,509,514,505,498,500,499,565,563,548,563,551,550,554,549,563,495,503,493,491,501,492,495,502,504,500,497,499,509,491,494,496,494,496,496,505,507,509,510,498,503,508,502,508,538,531,537,540,533,535,539,558,558,558,564,572,561,575,568,533,525,535,528,526,523,531,531,531,524,520,511,530,519,522,518,512,589,575,592,594,597,576,583,582,591,534,537,532,534,529,533,525,535,527,570,537,560,571,556,555,577,556,568,463,480,485,491,479,491,468,482,484,476,549,541,542,556,543,548,568,547,552,551,563,557,552,539,560,553,549,550,553,503,502,496,516,510,500,504,508,497,501,516,507,512,520,530,517,517,516,542,540,537,547,547,535,540,540,514,513,518,520,507,513,514,518,515,503,503,502,508,504,507,502,503,505,503,544,549,532,537,535,538,541,534,536,577,563,567,580,563,571,556,570,561,526,531,526,520,537,520,525,524,528,543,550,548,548,556,552,535,537,489,492,493,482,498,499,490,497,499,555,546,548,547,556,557,551,536,498,522,502,504,519,507,516,517,524,472,480,490,477,481,484,481,481,485,481,478,465,465,466,464,464,474,462,462,467,466,467,474,471,479,477,477,467,472,473,477,477,471,476,479,485,479,463,465,463,472,478,469,478,471,467,567,572,573,561,556,581,565,570,561,466,473,487,476,468,480,477,463,476,467,471,520,519,512,509,511,520,518,523,536,532,527,538,537,534,523,540,560,561,570,560,554,554,564,556,505,514,514,528,511,519,518,511,593,569,563,572,572,580,568,581,539,542,540,542,544,542,550,545,539,541,544,541,530,532,534,529,528,532,532,531,530,517,522,523,525,517,529,530,527,587,583,583,590,590,591,604,599,596,540,551,544,542,545,532,536,538,550,542,553,570,567,566,582,583,572,576,576,564,521,527,521,526,532,519,537,517,533,536,517,506,505,514,516,513,504,507,510,512,502,480,488,489,485,488,492,486,485,493,477,489,484,484,481,480,488,484,488,490,503,489,491,486,487,495,495,455,455,451,463,463,454,461,488,488,480,497,501,476,500,482,563,569,584,586,581,549,561,567,582,568,503,513,507,487,497,501,503,499,498,503,470,473,466,453,474,460,464,461,465,537,531,535,533,528,529,526,531,537,541,531,527,537,538,537,536,533,562,562,557,558,562,567,574,570,519,504,507,500,505,516,496,507,495,503,537,528,523,545,517,531,536,534,529,525,523,512,523,520,526,522,522,517,545,532,537,537,544,539,532,540,533,546,542,540,535,548,546,541,553,542,541,491,504,508,514,515,498,494,501,509,479,477,489,472,481,479,477,473,480,463,459,453,463,462,465,455,459,459,484,475,474,480,479,485,488,483,486,482,486,501,502,509,505,495,502,509,504,508,530,530,536,534,529,528,524,524,525,519,520,518,523,519,527,525,518,541,547,549,539,533,545,535,543,559,558,550,545,547,560,550,564,548,551,557,506,518,524,516,508,534,524,474,482,487,489,481,487,492,486,481,490,485,479,489,484,482,485,477,475,453,461,459,462,464,467,473,509,494,507,501,495,491,500,493,529,531,528,535,529,526,524,525,506,509,515,494,496,510,508,509,502,563,561,559,574,559,550,547,552,516,498,488,507,492,505,501,513,473,470,463,468,467,467,469,465,470,482,473,476,475,481,476,476,479,558,561,552,554,563,559,562,554,565,544,511,520,512,511,511,517,511,510,504,480,473,479,473,465,472,473,474,477,465,503,492,488,487,495,486,493,493,493,491,545,556,550,554,547,556,547,562,552,549,558,557,537,544,543,540,545,543,540,540,489,474,483,490,496,498,478,495,440,437,439,428,447,441,440,440,446,519,519,524,526,518,525,517,508,525,527,532,531,530,537,536,523,527,531,566,567,563,567,564,554,573,568,549,565,506,520,495,507,511,507,505,509,540,532,541,540,548,544,545,538,539,547,562,559,559,549,561,572,565,552,561,568,516,527,509,520,531,515,520,528,589,575,593,588,587,578,577,577,585,580,574,545,532,529,544,535,529,535,563,557,568,549,573,562,565,569,552,557,505,501,526,496,509,498,511,512,436,443,438,438,436,441,443,436,447,435,453,439,442,454,452,452,441,535,544,522,533,527,537,536,535,556,550,542,559,552,548,548,553,551,542,557,551,549,544,546,541,555,560,510,486,502,508,501,490,507,505,511,525,517,516,507,512,516,515,515,551,541,549,546,547,549,554,544,550,539,527,526,521,527,529,523,527,525,527,526,539,546,532,542,534,534,535,539,531,518,515,510,517,516,502,518,508,513,504,510,511,505,505,509,529,531,529,524,517,523,521,516,522,525,529,533,539,531,528,525,521,530,532,554,556,560,568,568,559,565,559,523,526,526,532,525,529,526,524,546,558,565,562,549,553,559,540,558,506,498,496,504,502,506,498,500,492,542,554,548,530,547,545,540,550,545,544,542,523,529,524,527,530,524,531,575,562,556,555,559,569,549,558,488,496,492,489,488,494,494,489,493,488,481,480,488,471,476,475,486,471,467,473,584,602,606,592,597,612,595,599,591,534,543,536,551,550,540,540,543,541,547,526,528,533,526,533,526,530,531,527,511,507,503,511,513,506,506,510,507,508,535,531,532,543,539,534,530,535,540,547,542,543,547,535,537,540,546,550,551,558,543,549,556,554,561,551,492,506,508,498,504,509,480,503,468,465,466,463,466,466,472,462,466,467,447,463,448,462,455,458,454,551,555,552,551,547,556,549,547,552,524,516,513,511,515,512,513,513,516,521,519,517,529,519,528,527,526,529,472,481,500,481,481,489,495,473,550,554,549,549,550,548,560,540,539,481,473,479,485,466,478,475,478,482,473,494,501,495,495,509,502,492,563,578,565,565,559,560,571,558,570,527,519,527,506,526,525,537,518,528,514,472,469,473,477,480,476,483,475,484,488,478,486,486,490,487,483,494,602,596,573,563,597,576,573,580,576,481,481,479,485,490,463,475,492,515,518,508,518,521,523,516,520,520,516,528,529,529,523,526,525,539,530,530,562,569,561,576,558,569,564,555,557,563,532,525,531,534,535,535,537,526,526,520,516,518,519,517,511,519,521,520,546,546,543,546,550,544,546,556,542,539,538,531,541,540,543,536,532,540,540,565,578,580,576,574,583,582,580,571,526,524,527,535,532,524,512,533,525,486,489,488,488,487,481,485,454,452,458,456,461,451,453,454,549,546,548,537,551,550,553,553,544,577,582,576,577,581,570,569,570,587,547,548,553,544,556,545,555,544,521,513,518,513,529,511,508,511,515,495,497,491,489,487,492,494,492,473,477,466,475,464,472,464,469,470,486,479,483,486,481,484,484,488,497,503,500,502,497,503,504,500,537,529,531,534,522,528,524,524,539,520,525,547,545,546,544,550,548,545,538,550,549,554,559,563,564,565,551,548,545,547,550,515,520,502,525,514,508,504,515,521,518,520,489,488,485,487,487,490,486,483,482,444,435,442,439,451,442,446,454,533,533,523,529,534,528,521,534,538,543,546,547,538,539,538,554,559,546,554,548,546,539,549,503,505,501,507,510,510,491,511,497,511,492,490,493,488,487,497,494,491,519,512,522,523,511,519,516,521,572,584,581,583,581,571,569,587,546,553,544,543,540,551,546,540,525,535,530,535,537,526,533,523,529,521,527,524,518,521,521,568,559,558,568,563,555,555,565,565,558,554,549,543,547,556,546,560,545,513,497,499,497,488,494,494,506,505,496,494,510,497,497,492,586,585,584,559,580,578,568,570,502,496,503,512,499,499,512,500,493,502,484,500,504,499,492,495,499,488,564,550,571,565,565,566,565,565,566,550,562,459,484,492,485,475,485,471,473,497,481,492,483,486,470,471,497,477,470,487,578,555,553,567,571,572,567,563,563,508,520,525,522,534,520,523,506,472,474,489,485,479,482,483,482,487,456,470,469,468,457,466,465,464,462,451,463,458,445,457,467,453,457,463,459,582,585,592,588,592,600,584,581,543,554,546,544,531,542,545,533,551,548,496,495,495,501,490,504,492,489,508,497,504,496,494,488,507,500,504,491,541,529,539,542,533,537,531,535,531,514,526,516,520,519,526,522,529,550,536,544,542,540,537,541,542,540,533,531,532,532,536,538,532,530,580,562,567,560,563,563,562,559,560,575,519,534,532,509,520,519,519,523,530,502,501,512,499,504,506,503,503,491,480,486,481,492,487,483,488,484,483,484,501,498,489,498,494,492,499,501,562,561,565,567,557,555,559,570,560,557,554,545,550,552,556,556,555,559,521,529,525,515,522,524,523,518,521,517,506,512,505,509,503,510,500,502,503,507,501,504,497,502,489,498,482,473,483,487,475,475,482,476,486,486,467,461,450,457,461,464,460,463,538,540,544,545,547,537,542,536,528,545,537,544,536,539,538,541,544,548,553,555,537,542,552,549,548,486,492,475,477,482,477,480,488,535,538,531,536,538,536,529,535,533,549,537,542,546,539,533,545,544,551,536,537,543,536,543,546,539,546,548,552,539,525,535,529,527,537,525,525,536,529,531,563,561,557,554,564,565,577,562,560,515,506,507,523,523,507,514,511,512,485,489,482,486,489,490,479,486,489,495,491,496,493,491,493,492,497,514,514,505,510,508,515,517,502,515,562,555,562,561,550,549,549,563,551,560,557,562,558,559,554,562,572,558,556,557,521,531,535,528,518,528,521,523,528,515,507,510,505,502,507,510,506,507,497,505,507,503,506,508,497,501,505,493,486,484,482,479,485,477,486,479,475,463,456,452,464,464,458,461,465,461,478,476,480,481,488,482,484,481,483,477,583,579,568,569,587,570,560,583,575,562,497,489,499,494,475,483,492,492,495,495,489,583,573,588,578,590,574,576,580,537,532,527,526,523,532,540,525,542,554,572,565,556,559,551,557,552,559,553,554,563,501,502,494,502,495,475,503,504,480,459,458,457,453,452,454,451,512,507,501,508,504,506,516,511,553,533,535,541,538,544,535,541,541,549,511,508,512,513,511,521,521,517,530,517,520,526,527,521,526,522,529,526,595,579,574,569,579,575,564,525,535,525,521,523,530,536,522,584,588,571,577,579,592,583,584,540,533,539,542,535,543,544,535,538,545,511,505,511,512,502,498,501,512,501,563,555,560,559,569,562,561,564,568,547,552,565,558,565,548,549,554,500,506,483,493,487,498,497,504,457,468,458,474,470,466,468,458,459,463,530,535,530,538,531,534,542,527,537,535,529,529,533,529,535,526,524,531,534,548,563,566,560,572,564,565,561,566,573,532,534,534,544,538,528,538,539,506,491,501,497,503,500,502,518,506,532,523,543,534,536,527,533,529,534,534,532,528,533,526,527,524,527,531,522,553,538,548,554,545,545,533,543,532,507,515,514,511,523,519,518,509,519,516,528,528,533,537,524,530,533,530,534,533,525,522,530,530,530,524,526,525,544,552,543,554,544,543,548,556,552,483,501,504,498,502,513,498,520,502,523,517,460,471,472,453,462,452,470,465,459,463,474,461,466,465,462,471,466,454,460,457,531,547,525,542,544,550,548,543,471,469,468,470,483,489,481,473,485,479,495,502,501,512,500,486,504,523,496,550,555,555,552,562,565,564,566,556,550,490,498,483,486,487,492,481,503,493,495,458,457,467,457,470,466,461,462,460,541,536,527,541,530,528,538,532,543,535,537,537,540,541,537,530,538,535,543,537,539,542,546,536,535,544,534,539,490,482,477,476,483,506,488,491,498,584,583,581,580,573,587,573,574,578,549,544,542,545,538,548,543,537,540,532,531,527,525,523,534,527,536,529,526,515,521,522,519,530,525,526,525,547,559,559,553,555,562,557,554,527,532,525,524,524,531,533,530,531,478,478,470,466,475,482,472,490,510,498,513,501,503,523,505,506,507,561,562,566,557,557,563,551,490,492,490,488,497,504,504,492,481,490,459,451,454,476,466,468,470,476,457,532,523,538,538,529,527,534,535,531,537,528,533,542,537,531,564,566,563,562,562,565,576,572,566,559,533,537,542,537,530,533,526,542,529,529,526,529,526,525,527,525,520,563,567,559,558,562,559,569,567,568,542,568,518,518,510,504,508,503,522,518,489,486,487,489,488,492,486,484,504,507,502,517,506,498,498,513,504,536,540,535,537,537,530,530,534,536,532,529,524,525,529,529,529,528,527,523,549,540,555,562,565,549,548,561,510,509,509,503,498,506,502,510,465,469,461,457,470,473,464,463,461,463,442,430,442,454,431,448,437,439,443,439,533,541,543,545,533,544,545,547,548,529,551,539,544,552,543,545,550,547,539,542,499,496,490,498,495,502,503,494,504,515,482,485,485,473,482,480,484,485,449,451,451,444,445,456,448,457,444,453,472,483,486,482,480,482,487,503,480,490,474,578,580,572,568,566,585,558,579,573,523,527,522,526,524,518,519,519,515,483,485,486,484,482,480,488,484,492,488,476,460,451,462,460,465,464,466,453,545,536,533,549,541,541,524,540,535,548,564,545,542,547,547,543,547,558,550,542,551,548,554,543,550,548,504,504,500,501,499,495,500,511,497,491,528,525,519,517,519,524,520,519,558,562,559,566,557,567,562,561,504,486,490,493,495,499,486,492,466,467,463,458,466,461,461,459,468,458,537,541,537,532,531,535,525,540,532,525,531,529,525,525,535,533,533,527,529,561,555,560,565,562,560,564,558,562,537,541,532,536,536,538,538,542,542,557,552,552,549,552,545,547,552,556,566,547,551,553,558,558,548,554,549,496,499,491,499,492,495,497,493,492,502,508,505,506,499,508,510,504,509,575,561,568,551,565,561,562,559,558,564,510,516,513,522,516,512,529,509,470,477,472,477,486,465,462,476,482,468,583,578,590,576,588,592,583,583,578,562,581,579,527,515,529,529,521,523,516,522,515,521,590,569,570,587,578,594,584,583,570,544,545,533,547,542,548,551,536,543,565,571,557,569,567,572,571,561,572,577,519,531,517,520,522,515,525,526,528,509,525,503,512,511,515,511,510,496,496,493,491,494,498,483,489,492,492,482,492,478,482,483,484,489,479,480,478,479,477,479,471,480,476,476,477,492,498,496,498,484,491,498,489,532,537,525,525,521,526,525,528,529,536,522,582,581,579,580,595,591,588,590,530,531,538,529,532,528,531,534,525,533,563,556,569,573,559,563,570,562,535,529,523,520,523,526,532,527,534,538,540,541,528,536,537,543,526,518,523,522,520,527,522,522,520,546,539,542,547,539,550,549,545,539,496,503,500,508,498,497,503,493,502,505,538,550,552,544,538,535,541,572,561,556,575,569,547,577,562,573,554,532,543,540,537,540,534,539,548,507,502,508,503,512,508,512,514,503,511,561,566,563,563,565,562,563,561,567,566,554,562,551,555,564,565,558,568,560,525,517,526,518,542,520,518,512,528,518,489,488,480,493,480,484,483,500,497,496,505,497,495,501,497,509,508,507,509,506,506,502,502,545,539,543,538,538,541,540,568,561,568,563,566,564,557,554,504,524,518,528,525,525,521,526,529,575,590,584,587,573,586,587,573,503,509,505,513,511,507,503,499,498,500,538,539,548,538,534,540,541,544,544,546,572,575,577,571,574,570,566,572,574,573,550,544,551,542,552,538,552,545,550,530,525,519,530,521,517,507,518,507,479,488,481,484,480,479,482,481,485,496,495,490,507,493,505,495,495,498,562,573,560,561,562,563,560,546,549,558,544,542,550,553,564,557,550,547,489,486,487,495,498,493,485,484,494,487,470,477,486,485,483,475,474,593,605,594,587,582,598,600,607,584,598,549,560,550,559,562,560,548,545,520,516,514,506,499,512,523,504,521,511,498,503,509,496,503,501,502,502,466,471,465,478,462,479,469,455,439,436,440,439,451,435,437,486,485,481,490,497,488,485,485,497,531,540,555,556,547,543,543,537,540,494,498,497,489,505,496,502,464,460,465,460,459,459,461,462,465,438,432,440,422,433,424,427,433,423,426,517,519,518,519,526,513,516,530,531,545,544,541,544,539,546,545,534,547,545,554,542,552,554,552,544,544,552,546,504,487,489,494,505,514,491,509,463,462,469,478,466,465,461,470,438,431,443,435,443,437,433,438,525,523,528,528,530,529,526,528,528,518,519,517,518,521,520,514,521,515,517,517,505,515,509,515,509,506,515,514,525,537,529,524,531,533,529,531,528,530,534,532,574,566,565,557,565,564,565,563,534,533,534,531,532,524,535,523,537,526,510,511,505,515,508,514,509,517,512,517,564,563,574,565,567,569,560,564,569,517,524,512,520,518,531,518,530,525,484,483,485,489,488,494,491,489,511,500,514,509,509,505,518,508,516,554,555,561,555,565,549,552,552,550,488,483,484,496,483,497,483,487,481,481,471,471,467,460,464,448,466,467,458,464,473,544,547,535,556,555,550,542,553,537,514,514,512,513,512,516,519,521,512,514,513,549,559,561,557,567,564,563,554,555,552,562,557,554,549,545,564,558,552,545,516,521,520,509,522,531,525,531,505,503,501,495,506,503,501,508,502,494,489,501,490,496,493,495,498,496,498,466,461,458,451,457,451,451,458,456,451,473,476,477,475,460,480,476,479,481,590,566,581,556,582,572,581,566,594,569,500,477,489,486,479,485,493,502,472,472,552,551,555,554,551,553,547,551,550,548,552,549,552,548,557,547,555,558,470,487,489,482,498,497,492,508,498,466,440,459,451,461,452,449,444,455,459,547,543,549,557,553,543,545,562,548,549,555,549,543,551,546,549,544,515,496,513,497,502,499,509,506,495,498,496,494,492,502,500,497,499,498,554,556,553,560,550,543,555,556,521,532,532,535,538,537,535,522,531,520,515,514,521,520,517,517,518,519,533,527,530,523,524,520,525,530,536,575,552,547,551,555,558,557,571,553,548,529,525,527,518,529,522,522,522,528,525,547,558,539,549,551,541,540,544,496,502,506,507,515,501,504,506,500,501,473,486,485,484,486,486,476,485,483,463,468,470,469,474,469,466,475,478,469,459,456,453,458,471,466,455,452,602,587,599,585,593,580,602,596,585,559,549,553,540,547,555,544,536,550,534,544,492,483,503,496,504,503,512,501,494,504,503,496,501,500,510,500,496,546,536,542,548,546,543,542,540,537,558,565,557,549,539,548,557,557,565,572,509,494,491,497,505,489,492,499,458,460,469,452,456,452,456,466,459,457,514,510,518,518,516,519,509,510,512,522,555,564,559,557,559,567,548,560,550,502,502,505,502,495,491,506,498,503,494,515,513,508,514,505,500,508,549,542,549,539,542,541,534,538,526,521,523,523,516,526,525,519,553,567,554,558,552,551,554,554,557,560,538,526,532,532,529,529,528,533,512,527,520,523,524,519,526,522,529,523,554,549,558,545,557,550,547,548,542,525,528,529,530,524,529,525,537,524,536,563,569,567,570,567,552,544,553,500,512,507,507,495,506,501,510,499,503,506,561,566,561,551,558,553,571,558,558,562,478,479,500,500,503,486,498,483,497,492,496,496,493,485,496,488,488,490,579,550,565,581,579,573,571,504,502,512,518,508,510,513,515,566,561,555,562,549,564,556,562,499,512,514,513,519,515,506,496,507,504,470,470,470,467,455,474,468,472,490,496,486,489,488,490,485,494,552,559,554,561,553,551,549,526,533,530,524,529,525,522,526,530,472,482,480,476,475,494,474,490,553,556,553,547,555,556,545,546,542,552,548,553,550,556,543,554,558,553,550,535,529,528,532,526,533,536,539,522,534,551,556,561,559,547,552,555,560,498,488,488,503,498,504,494,482,495,495,501,497,503,492,495,495,511,497,543,560,550,541,548,545,544,538,561,570,570,565,568,565,561,521,513,518,520,526,515,515,515,511,455,468,464,462,460,461,446,450,462,465,461,459,463,456,451,455,456,548,544,552,551,553,543,549,543,551,566,554,537,544,554,538,538,558,463,477,461,481,478,467,488,479,468,480,551,554,553,546,550,550,558,553,553,555,553,560,556,545,543,554,557,551,494,495,507,498,501,519,500,506,513,479,485,490,474,487,470,486,477,479,483,563,554,554,555,550,557,550,552,549,494,502,504,490,503,488,491,492,500,495,497,493,505,497,499,500,488,498,565,561,563,561,564,561,560,562,558,552,559,559,547,566,552,548,519,516,511,514,523,522,529,461,480,472,473,476,480,478,477,478,474,487,476,483,480,487,484,485,489,598,598,600,597,599,594,593,598,591,600,612,591,546,556,542,544,558,563,553,561,506,496,497,496,504,510,509,503,507,439,455,451,455,456,458,453,458,463,461,446,475,473,478,483,482,470,483,474,474,579,587,567,557,560,585,578,552,506,509,498,510,504,506,507,503,552,558,555,551,538,549,567,564,551,473,506,505,504,484,498,510,486,490,473,460,448,449,471,457,461,459,459,525,505,511,517,514,517,503,505,512,510,545,546,540,535,542,532,538,547,547,502,497,496,504,499,492,500,499,483,592,580,596,607,604,605,598,602,589,539,533,535,530,529,531,537,533,535,533,514,507,520,501,507,508,509,508,547,551,577,553,555,561,550,568,554,524,511,508,505,505,512,510,495,512,514,498,498,508,506,508,506,506,502,507,537,521,523,538,534,522,539,530,530,537,475,496,489,491,504,502,493,492,488,498,611,608,593,595,584,603,588,602,604,601,586,558,559,554,558,559,559,546,553,493,493,486,492,490,510,488,499,502,496,491,490,492,485,486,485,488,488,490,485,583,571,563,570,571,581,569,565,564,574,515,516,509,504,512,520,513,453,465,464,463,466,455,458,467,469,441,455,454,460,458,456,460,454,556,576,577,579,589,581,579,586,529,525,525,524,515,519,514,520,517,585,582,577,588,587,586,573,579,589,584,543,548,559,550,550,546,537,544,543,503,498,501,489,481,496,483,486,500,489,466,470,472,481,477,474,468,470,555,557,562,556,554,563,559,558,568,511,494,511,492,499,508,507,505,498,453,448,455,458,454,459,460,452,455,455,503,488,485,487,498,487,480,484,495,560,559,570,555,568,567,547,555,523,519,516,522,525,525,524,523,519,529,527,532,531,529,528,532,533,576,577,549,567,547,558,564,557,504,513,497,500,492,498,497,507,505,556,574,548,550,554,551,553,545,562,552,553,502,493,513,498,496,512,490,507,516,490,478,473,485,481,484,482,476,482,480,482,480,471,471,470,473,474,475,478,468,475,464,452,459,464,458,459,458,461,463,544,549,547,543,542,551,539,582,575,561,576,571,565,574,574,568,551,548,543,539,547,546,541,536,521,518,531,514,522,522,527,523,528,488,502,499,504,496,495,494,496,500,599,592,602,602,591,590,589,591,543,543,541,544,531,531,542,543,560,559,568,560,555,573,562,561,558,556,558,509,508,511,499,507,503,488,509,505,509,482,479,490,476,491,480,475,489,471,543,577,549,581,546,568,567,563,484,482,498,480,482,480,479,497,480,488,484,555,554,553,546,548,552,549,553,556,551,562,551,555,555,552,551,557,549,566,468,473,484,485,472,473,481,481,483,468,549,558,544,557,550,550,544,543,540,541,533,554,546,549,545,545,542,559,547,537,521,516,504,522,514,520,511,524,519,510,550,559,572,545,572,555,566,564,566,570,520,511,508,509,505,512,514,496,510,488,505,493,498,499,502,495,497,501,535,538,536,527,538,560,536,531,540,497,490,486,487,483,493,479,476,507,495,488,499,494,494,491,529,540,526,540,530,534,544,539,533,531,541,495,503,508,490,505,501,507,497,496,506,546,546,542,551,550,550,547,568,560,570,578,573,554,565,558,563,523,524,518,526,528,519,517,517,519,555,563,542,561,559,554,560,550,550,507,516,501,509,516,517,508,514,504,552,562,570,574,554,561,564,524,532,525,534,515,514,512,530,517,530,515,500,505,510,498,508,508,504,507,506,503,479,495,474,484,481,482,480,484,482,483,510,511,501,506,512,511,507,502,507,537,548,545,551,550,542,547,544,543,533,518,522,517,519,515,522,516,525,527,551,548,531,534,525,530,537,544,527,522,510,520,514,512,515,520,517,515,518,547,539,527,531,539,533,532,538,531,528,526,524,531,530,526,527,525,522,528,529,552,554,550,565,553,557,559,557,507,523,512,521,506,511,512,517,510,505,474,478,483,486,490,479,472,480,481,456,458,456,465,463,466,456,464,466,457,463,467,454,461,459,451,460,457,535,532,528,549,533,532,536,534,534,526,528,533,522,523,519,527,527,547,536,537,544,543,546,537,544,535,549,553,540,546,548,549,540,497,492,510,481,501,498,489,502,494,510,475,476,471,473,471,478,477,476,475,464,509,509,501,510,499,510,506,506,548,550,548,551,547,550,541,553,485,483,500,488,493,487,476,481,474,444,444,452,422,437,448,439,520,526,523,521,527,529,528,520,517,521,533,533,528,528,530,530,527,534,526,564,573,568,574,562,568,561,577,554,547,545,545,552,552,549,542,521,512,516,510,535,515,515,510,521,524,503,505,498,504,503,503,503,505,504,493,485,483,476,472,485,485,489,469,470,464,461,474,474,468,460,455,458,454,462,462,450,458,466,457,551,551,550,547,561,571,549,551,519,514,513,518,524,518,515,515,524,541,543,537,548,543,529,546,530,499,504,497,509,501,495,503,515,509,500,464,478,486,476,487,473,478,480,463,465,459,464,470,467,463,454,463,490,480,481,481,478,484,479,477,487,474,481,482,488,484,483,482,487,484,496,493,492,493,486,498,488,497,494,483,509,501,496,503,500,499,506,502,501,481,477,479,482,480,474,475,475,475,482,472,470,460,462,471,468,458,452,463,556,562,558,562,561,555,561,568,552,554,552,555,549,545,541,546,478,471,481,475,476,468,472,474,469,455,471,466,454,463,469,466,458,476,466,585,588,592,607,599,588,587,583,582,499,532,557,513,529,507,525,523,531,512,492,496,483,487,491,491,487,490,553,538,552,551,541,552,547,548,553,526,521,527,522,522,529,530,519,520,561,558,551,562,548,547,558,567,556,505,496,495,501,494,506,497,502,498,509,512,501,508,514,513,507,499,519,548,542,555,542,545,543,547,542,533,526,530,528,532,528,535,531,541,552,553,543,543,543,550,555,507,495,496,489,496,488,490,492,505,477,472,468,476,471,470,472,469,462,480,501,501,502,500,510,508,507,510,498,537,554,541,546,534,542,541,553,545,492,487,480,496,488,493,501,497,499,494,491,505,489,493,498,500,495,492,491,539,540,542,547,546,535,538,534,520,516,518,522,517,515,530,514,513,512,594,589,584,588,585,591,606,592,587,537,540,540,538,533,542,540,545,545,552,559,549,555,545,545,544,557,557,557,563,457,462,477,463,472,493,481,487,483,477,461,469,460,472,466,467,475,470,465,546,568,563,546,564,572,550,523,524,525,531,528,526,527,526,528,536,556,559,554,547,561,569,557,546,566,562,554,510,512,520,519,514,516,516,520,517,472,475,478,470,474,471,480,477,481,472,482,484,482,486,490,492,483,483,564,562,563,568,561,563,551,554,576,568,565,510,529,512,528,526,524,519,523,526,524,527,515,535,523,524,531,511,519,529,534,511,520,511,522,509,515,512,510,502,515,563,565,554,569,573,564,565,571,564,557,558,520,518,533,536,527,515,525,536,508,513,510,504,506,505,502,515,499,500,498,504,497,497,506,496,500,497,470,482,483,486,480,489,478,478,487,486,491,479,490,488,491,491,478,468,470,469,456,474,465,467,446,444,430,438,434,441,439,438,440,474,492,482,479,484,478,470,485,518,522,526,516,525,523,529,526,525,521,565,586,585,586,573,572,594,584,578,554,550,558,545,543,554,549,542,563,552,486,492,495,497,494,483,494,497,491,480,475,483,484,489,469,479,469,561,559,551,571,555,546,549,567,563,565,577,490,483,491,470,479,476,475,479,478,475,558,569,554,554,557,553,564,558,547,553,548,551,548,543,553,548,560,466,464,462,464,469,471,471,474,477,454,443,446,452,436,452,458,451,532,541,531,531,527,532,524,528,523,530,540,543,531,527,526,528,548,536,555,566,574,565,574,563,561,562,562,563,521,526,530,522,521,532,526,564,562,577,564,554,548,559,472,479,483,463,487,476,469,489,472,534,528,528,536,541,535,531,531,522,579,569,553,564,558,563,558,566,563,562,527,531,528,535,538,539,535,524,519,525,525,524,512,522,518,512,525,562,569,560,563,559,558,568,559,565,567,555,548,552,549,546,560,559,557,554,500,492,500,502,491,493,494,481,490,504,497,501,493,489,499,501,501,498,565,580,577,562,545,594,580,559,581,570,470,472,493,484,477,484,496,527,546,537,530,541,536,539,534,539,565,565,561,567,576,576,567,582,567,549,548,551,551,546,547,554,549,545,545,534,545,555,548,544,533,541,542,518,500,492,490,492,501,499,501,507,463,464,469,469,465,481,475,476,472,478,498,496,494,494,492,494,495,502,493,486,525,527,525,539,527,526,532,517,529,521,518,518,515,523,519,514,521,523,550,552,541,549,555,553,534,541,509,497,500,495,490,500,496,502,536,539,536,543,531,542,533,536,517,523,515,519,522,527,519,520,523,522,519,524,518,514,517,517,519,524,527,515,516,524,525,520,522,519,536,537,539,545,549,538,536,548,545,545,551,548,548,546,542,556,547,548,543,511,500,494,513,495,501,503,507,491,493,487,494,494,488,486,514,508,509,511,509,505,508,505,506,526,522,526,524,514,529,528,529,536,527,527,524,522,516,517,510,522,514,513,522,527,535,528,529,528,525,525,527,515,520,555,566,566,559,573,554,557,561,565,566,564,540,542,535,538,531,536,540,497,500,499,498,495,503,499,507,496,533,534,536,539,539,548,534,531,531,521,524,519,529,521,523,523,521,536,531,529,529,531,535,535,532,530,538,529,536,544,542,554,550,547,537,533,545,487,501,505,511,507,503,503,499,498,562,557,554,536,558,557,564,555,562,553,501,500,491,494,503,493,489,495,507,502,503,507,502,511,503,501,501,512,510,515,510,508,515,511,543,531,535,532,533,528,522,533,544,542,544,539,546,545,538,543,542,558,566,557,553,555,559,565,559,566,562,523,534,526,522,531,525,538,529,509,508,507,510,506,511,516,512,507,482,477,484,486,479,479,475,484,475,472,465,461,472,472,462,467,464,465,466,462,568,553,557,555,551,559,555,550,541,541,541,549,556,547,547,547,514,528,525,525,524,523,522,520,522,525,522,565,562,555,549,545,556,557,561,557,560,554,537,529,531,536,531,536,535,534,538,536,541,533,533,535,535,526,525,527,533,534,530,526,559,556,547,542,541,546,559,551,534,514,524,511,508,512,512,511,474,479,477,473,461,480,484,474,480,446,439,444,434,428,444,457,433,445,453,444,449,441,452,445,443,545,545,547,539,546,543,547,584,582,589,581,566,569,574,566,565,546,548,546,542,543,544,548,552,507,508,505,496,498,499,490,508,506,513,515,528,511,508,512,511,514,521,555,557,557,556,563,560,574,566,492,502,493,486,487,492,492,495,449,459,463,457,464,447,466,461,455,539,541,535,537,536,546,535,540,540,553,541,529,544,537,542,541,545,534,546,556,560,550,553,554,533,549,474,490,454,481,478,477,474,455,483,468,532,520,521,528,520,524,526,516,549,530,540,531,541,540,538,537,547,547,550,554,550,541,545,551,547,508,494,494,498,504,486,490,509,478,454,453,453,453,449,454,447,461,458,451,492,485,489,475,475,483,484,475,481,570,565,566,573,568,565,564,576,572,523,516,515,516,507,522,523,508,516,505,504,496,503,504,503,497,503,505,508,498,524,528,533,533,528,523,531,528,531,526,535,536,540,531,539,539,541,543,530,546,561,548,544,543,542,542,543,542,511,510,516,518,517,510,522,521,584,579,570,574,565,578,571,594,570,492,497,490,508,502,499,496,490,500,487,480,473,491,485,480,486,488,595,600,597,594,590,593,598,601,600,603,564,554,550,560,553,557,553,562,560,552,549,553,550,546,557,549,555,513,511,512,520,522,519,509,510,512,479,468,475,477,474,479,482,483,486,481,508,503,501,509,503,504,497,496,499,546,548,559,549,547,556,555,558,554,548,556,505,503,501,509,502,512,496,511,510,533,533,529,530,533,531,528,533,529,526,532,531,523,522,538,533,564,565,560,569,564,559,565,568,567,562,535,533,535,541,534,532,531,528,524,538,526,524,530,522,526,531,529,530,553,550,556,553,552,539,545,487,489,491,488,490,490,484,484,452,434,436,446,442,441,449,452,449,445,445,445,523,523,516,531,528,526,521,530,506,516,520,531,531,524,524,528,529,554,564,566,558,560,561,567,579,577,559,572,538,543,541,548,549,548,545,539,546,533,531,535,530,538,531,527,532,524,536,531,536,526,534,528,532,532,533,553,554,570,565,559,559,566,564,559,564,556,516,528,519,519,521,532,533,521,533,509,516,509,499,508,508,498,520,513,496,501,491,508,501,500,501,498,492,492,489,486,491,488,487,487,505,513,498,507,501,495,503,496,538,536,532,534,528,543,541,533,535,537,536,513,513,507,520,511,505,514,508,516,499,512,516,503,510,512,510,507,548,553,540,544,546,547,547,551,545,540,545,546,545,546,528,542,542,547,538,484,496,501,488,489,490,495,497,499,494,548,540,554,576,552,553,558,523,506,522,500,510,501,533,507,519,462,478,461,473,465,466,457,472,484,472,471,471,474,476,475,469,473,479,487,493,478,480,488,487,489,480,489,502,508,503,509,502,501,506,515,561,554,551,553,549,556,558,554,559,539,552,521,509,515,512,507,515,497,519,500,491,487,489,480,490,494,489,488,496,490,494,488,497,495,495,491,494,493,485,497,508,509,501,514,501,503,502,502,497,508,512,506,502,512,511,505,508,508,496,495,506,501,506,501,498,504,495,504,492,498,495,497,499,497,494,497,461,455,450,463,456,451,470,453,463,456,467,477,470,469,467,471,467,469,477,477,545,564,562,544,561,561,560,556,555,559,519,512,521,523,520,515,517,522,520,551,564,550,557,567,566,562,557,545,554,553,562,552,556,556,559,563,549,534,519,518,532,525,524,523,521,504,501,502,497,499,504,499,506,505,503,483,486,474,479,481,473,483,478,496,492,498,495,486,492,495,500,498,585,580,579,588,562,591,562,580,577,498,510,504,502,510,500,504,499,498,502,491,494,489,493,491,497,490,493,492,568,558,560,561,553,571,572,548,570,529,509,502,504,519,500,503,504,507,495,512,487,501,497,500,502,505,500,494,499,548,538,524,537,534,527,543,470,464,473,470,470,466,472,465,469,472,466,468,460,465,469,480,478,465,458,465,465,578,586,595,589,592,583,584,592,587,523,530,530,535,525,523,532,536,521,567,566,587,591,582,575,579,590,573,507,497,497,503,517,506,500,511,504,492,547,533,543,542,546,537,542,573,566,568,557,569,564,576,571,569,526,527,518,526,534,516,527,526,484,477,481,481,495,489,479,562,564,546,552,559,561,566,570,556,553,574,560,562,563,569,562,566,554,519,516,503,504,510,519,518,512,484,479,479,482,492,490,479,481,442,437,440,457,448,447,445,429,442,527,537,527,518,528,527,523,531,531,538,543,533,547,549,543,545,541,560,557,554,559,560,565,552,563,543,536,519,521,513,522,524,526,511,529,505,502,505,502,507,503,512,503,506,493,480,482,479,484,481,472,468,468,465,459,463,468,471,457,606,587,588,584,588,586,584,575,575,520,529,537,533,524,535,533,530,532,511,518,520,523,513,523,523,518,523,569,569,568,570,562,559,566,567,563,546,544,546,546,547,554,547,551,545,497,505,503,492,497,506,497,506,495,516,511,522,515,515,518,515,509,522,563,557,565,558,557,564,561,555,560,497,491,485,496,494,492,487,499,490,485,501,495,490,498,499,488,498,495,568,594,564,568,582,588,575,564,579,568,489,494,500,482,488,483,475,491,555,565,559,554,562,555,551,563,570,541,559,539,547,548,556,472,476,482,473,467,475,476,477,478,465,468,462,471,478,474,469,477,471,584,590,570,572,580,572,582,601,576,585,476,482,461,481,477,473,495,468,535,537,546,549,546,527,547,546,543,547,537,546,538,542,539,534,540,539,537,472,479,476,474,488,485,497,470,477,484,490,493,494,495,489,488,498,483,491,497,501,503,504,502,515,509,505,505,507,518,524,521,524,525,531,527,513,522,528,535,528,535,530,532,542,532,564,558,560,561,567,554,564,562,560,521,515,512,515,510,514,518,527,535,591,579,590,581,578,573,595,572,585,501,504,508,507,516,511,514,509,530,531,535,532,524,521,531,529,531,520,523,518,521,521,521,524,522,513,523,518,524,517,525,518,521,514,518,532,535,532,535,540,534,542,538,546,549,550,548,552,545,557,546,501,516,499,502,495,516,529,515,515,516,460,467,460,471,462,466,465,452,464,459,457,464,461,459,466,472,466,467,488,478,483,470,466,473,481,479,478,567,554,552,559,557,552,555,571,549,571,488,487,481,475,481,474,491,482,527,532,529,523,533,533,534,532,535,537,532,541,535,536,541,540,571,572,567,571,565,569,577,565,573,552,547,552,544,549,549,558,554,547,543,522,512,522,531,525,513,517,521,508,506,491,504,502,505,506,506,501,491,491,485,486,490,483,473,491,486,480,488,487,483,485,480,482,483,488,490,489,494,493,494,496,488,471,464,471,459,467,464,466,468,435,451,446,438,452,442,435,447,541,539,524,534,526,539,542,537,530,539,537,545,533,547,550,535,541,541,534,543,476,482,478,487,487,501,487,497,488,482,583,584,584,583,579,589,572,581,541,522,536,528,525,523,513,523,515,480,485,481,471,466,471,487,472,490,550,561,558,550,556,567,567,544,550,567,564,561,571,573,562,574,563,524,528,508,526,536,526,536,515,520,523,513,501,498,499,487,499,500,499,504,441,447,452,465,456,450,451,467,458,464,458,473,503,489,500,506,488,485,498,496,496,536,549,546,556,545,549,547,545,499,506,499,497,506,500,503,494,504,555,544,543,544,545,549,546,549,552,571,572,562,568,571,567,562,557,539,543,546,538,544,531,540,537,539,518,503,506,489,512,503,494,507,506,475,468,466,472,467,464,460,454,470,463,448,439,456,449,448,449,450,448,457,428,508,500,507,502,508,499,504,501,507,552,554,548,547,547,549,551,559,550,500,507,512,495,507,497,512,510,502,554,552,544,540,537,551,543,546,542,568,561,549,571,576,565,568,559,560,509,511,517,511,506,517,514,520,520,586,589,579,587,583,583,575,578,582,580,589,579,545,557,553,552,556,556,550,544,558,551,548,547,545,539,548,550,549,554,509,500,501,492,493,505,491,503,501,501,517,521,517,503,516,523,514,509,519,565,550,573,553,561,560,561,565,561,552,559,496,507,502,504,501,492,496,489,494,497,515,502,515,526,510,513,508,506,515,508,550,540,544,546,539,538,539,542,539,524,518,520,526,526,530,521,518,517,517,537,552,539,555,546,548,544,552,531,524,527,525,517,526,530,526,521,554,567,551,556,571,556,561,578,568,505,499,507,501,504,511,507,506,502,495,550,535,536,543,539,554,550,516,495,513,508,512,504,499,498,499,502,555,561,574,563,570,572,579,565,504,493,501,497,499,503,508,486,449,432,451,445,438,446,455,434,447,433,520,544,532,538,545,530,543,537,530,534,537,545,540,540,544,542,541,530,528,529,528,530,526,527,531,530,564,566,553,543,545,548,547,557,560,489,504,498,502,491,497,494,493,500,508,504,511,505,502,505,508,504,511,547,544,547,546,550,563,547,557,550,527,526,529,534,536,541,537,538,543,572,551,560,576,554,556,513,503,507,511,505,505,511,510,515,576,589,579,583,574,575,561,574,493,494,478,482,494,476,480,485,489,493,540,543,540,551,548,549,553,554,548,546,549,543,558,561,552,507,506,502,502,505,508,513,503,488,491,492,498,492,489,491,496,499,551,528,541,535,535,543,534,534,534,501,503,509,502,503,503,515,500,548,558,542,543,543,540,551,547,549,557,549,556,561,568,563,551,549,550,509,510,496,510,509,510,499,502,513,505,498,504,501,508,508,500,500,497,508,500,530,531,533,537,547,538,539,539,521,514,518,524,519,521,520,521,529,523,523,524,520,548,518,531,476,481,484,485,481,482,477,478,493,472,550,555,554,570,552,565,560,567,549,518,501,522,511,504,513,513,513,507,508,453,460,467,465,464,472,459,464,462,449,455,444,451,450,451,438,448,496,490,499,499,502,500,489,494,506,564,564,550,556,553,559,560,561,548,551,556,555,556,561,549,543,549,550,555,560,560,559,556,548,565,492,517,490,489,503,504,501,495,492,489,499,501,496,507,496,499,498,495,497,490,570,566,562,569,566,549,580,576,511,505,517,510,515,507,507,521,470,471,473,470,468,474,475,472,466,489,493,497,498,498,491,500,488,529,528,523,533,527,530,524,532,525,524,520,519,520,519,523,523,523,538,536,544,536,545,538,534,536,541,520,515,512,525,518,517,520,511,513,512,512,514,504,510,507,508,511,508,503,545,539,549,542,546,542,543,542,556,556,553,547,549,546,552,541,562,479,472,482,482,488,477,476,479,470,484,540,547,551,547,544,543,546,539,537,547,550,530,530,549,545,535,546,521,541,542,557,507,509,497,503,509,511,516,508,508,494,568,546,575,570,572,568,564,566,566,500,505,512,498,509,508,512,504,505,501,502,506,496,509,501,502,503,531,536,560,543,542,559,548,554,547,542,503,486,495,496,500,495,498,488,495,512,503,507,501,509,510,512,498,511,571,573,569,569,564,571,571,574,547,553,546,543,548,553,550,549,499,505,488,503,497,507,500,499,517,521,522,511,525,519,513,513,510,509,542,543,549,534,548,534,547,543,547,547,520,517,516,523,525,515,518,515,513,518,520,553,563,565,569,556,563,552,572,527,523,536,522,519,513,520,527,503,511,505,508,511,509,505,508,513,504,510,504,489,487,492,497,489,486,479,485,492,487,494,484,500,491,487,491,461,479,481,470,476,473,475,473,465,463,452,465,469,455,468,448,467,457,460,507,509,515,494,514,508,503,513,516,554,549,543,548,539,534,543,548,527,524,527,525,516,528,518,522,532,540,537,553,538,531,547,526,530,531,536,529,530,528,526,530,531,547,555,544,535,549,551,553,556,539,542,485,501,491,492,496,494,499,494,494,499,488,493,497,498,495,498,490,497,495,547,547,543,543,542,542,552,541,545,523,512,520,508,509,517,517,515,520,521,592,583,596,587,586,600,603,592,591,586,555,554,552,552,559,558,564,551,549,557,552,562,559,540,551,550,546,560,517,520,517,520,520,518,523,514,521,501,503,504,505,501,502,500,498,493,491,492,489,498,495,490,499,492,477,485,472,466,469,474,475,468,472,498,505,511,493,504,501,501,499,504,494,490,542,546,537,554,541,552,551,555,549,495,496,496,500,491,507,497,479,494,495,490,501,495,487,490,500,482,486,569,567,573,564,567,580,563,575,583,572,494,501,503,503,501,506,495,497,506,469,466,454,463,464,459,456,556,573,542,562,553,571,547,553,524,515,512,507,524,522,526,513,520,516,524,531,532,522,520,516,529,529,525,467,476,474,477,475,472,472,466,474,502,502,502,506,494,495,498,496,498,552,560,559,551,557,544,555,567,526,539,530,528,530,530,532,527,522,519,523,518,524,516,521,517,554,556,544,552,552,548,552,553,552,556,537,535,538,539,532,532,537,538,511,508,499,503,516,517,516,511,511,514,512,556,564,552,552,550,548,549,554,551,558,549,549,542,552,549,549,541,541,520,525,526,528,524,521,525,527,559,543,556,543,555,559,541,544,547,556,522,495,502,501,503,512,498,509,508,487,481,483,488,490,480,483,482,487,501,504,501,495,504,508,502,503,489,480,492,487,495,486,486,487,483,489,467,461,467,470,464,469,460,464,465,458,491,476,481,477,478,474,485,487,572,567,578,568,565,565,563,561,563,477,476,510,496,489,487,503,489,495,444,423,437,439,437,443,423,430,444,441,522,514,520,515,519,519,516,517,513,519,515,511,521,518,508,521,520,518,509,519,529,525,528,537,531,527,528,537,528,565,571,570,576,565,555,568,573,549,537,544,552,554,551,542,551,546,515,504,519,518,512,504,513,495,500,491,480,487,480,480,482,481,481,481,502,497,491,497,488,496,492,502,497,499,558,565,560,561,566,569,554,562,553,562,555,541,551,541,546,548,545,552,557,520,494,512,501,505,497,495,512,452,456,457,457,454,447,455,456,454,449,439,450,462,444,446,444,441,544,548,544,541,545,553,533,545,583,577,564,578,574,584,561,567,524,523,538,531,535,524,525,532,485,480,480,474,478,489,473,485,477,554,553,557,554,554,556,558,544,554,550,535,553,549,542,544,553,547,554,518,505,500,503,499,505,516,508,573,557,563,575,563,558,551,560,500,512,503,504,508,493,498,485,508,513,486,464,478,473,474,479,476,476,484,463,542,567,559,546,543,525,568,535,554,557,483,465,478,480,484,479,481,479,482,533,547,546,554,547,580,570,574,579,564,568,580,573,565,579,551,537,545,536,532,526,533,535,527,479,495,497,484,494,488,486,489,477,517,515,511,511,506,509,508,503,548,550,553,551,552,558,557,557,543,502,516,517,523,507,524,513,526,520,491,491,487,486,496,497,498,491,491,470,458,455,451,464,458,452,469,498,495,489,488,495,492,485,488,539,544,536,540,553,535,540,541,554,550,571,559,554,568,548,560,554,508,503,499,505,511,507,509,519,510,508,545,557,551,575,566,575,566,514,508,509,505,496,519,515,503,513,524,511,515,506,514,512,525,515,515,506,589,572,581,576,582,578,585,585,580,531,546,550,544,558,548,539,552,536,495,509,504,503,504,502,512,502,499,448,453,458,460,461,461,456,451,463,468,444,447,455,455,446,436,585,574,573,564,571,579,578,562,561,561,529,541,541,539,550,543,530,519,533,530,522,527,531,527,522,525,530,576,565,574,574,572,568,579,568,570,557,528,526,519,526,525,521,524,521,518,502,503,502,495,502,503,508,504,540,542,532,533,539,542,533,540,542,562,565,565,557,560,571,569,563,569,562,529,529,534,535,528,535,537,549,550,566,555,568,572,562,565,569,553,524,497,499,509,501,499,496,505,453,447,463,464,453,463,457,453,455,460,448,460,453,474,466,547,563,555,550,557,546,560,551,542,540,562,537,541,550,542,479,507,493,487,506,492,501,510,507,555,540,544,531,551,559,544,548,535,541,468,479,480,476,473,475,480,495,509,490,504,504,505,510,494,486,540,541,538,542,527,533,538,537,542,536,493,496,492,496,501,501,504,504,548,554,561,554,555,553,552,557,566,519,502,511,506,516,517,510,520,531,533,526,530,524,523,530,528,536,553,556,551,555,553,557,554,561,552,527,505,515,498,491,513,494,512,513,456,443,448,439,441,437,436,445,437,514,507,495,484,493,485,503,500,552,554,573,563,568,561,565,545,498,498,494,495,495,498,503,491,498,494,509,494,503,503,495,497,503,580,567,565,570,573,577,589,565,532,538,518,521,524,530,530,525,524,489,491,485,479,479,483,490,483,483,486,469,455,459,467,470,470,468,462,454,535,538,532,539,532,531,538,540,531,538,529,525,528,528,526,527,525,521,544,548,542,538,545,546,541,545,550,548,560,544,553,548,563,555,567,507,494,511,506,502,498,513,504,493,497,517,522,525,515,518,511,523,524,522,516,522,560,561,560,562,557,559,553,562,545,567,575,483,495,506,501,500,513,491,496,505,518,515,513,515,513,516,512,513,511,513,517,550,561,550,563,543,549,552,547,553,548,499,508,497,493,498,498,492,495,503,498,508,499,506,507,511,500,533,537,534,530,538,540,535,530,470,473,491,473,465,456,471,468,474,536,537,526,536,532,518,533,523,522,529,524,526,521,521,531,523,522,525,522,523,532,539,528,531,534,543,533,530,534,534,535,538,534,547,551,550,548,548,541,548,547,512,503,519,506,511,500,514,503,498,517,488,474,470,479,476,483,483,475,445,447,448,455,452,449,445,453,464,456,473,479,469,457,472,472,475,476,479,467,561,568,549,549,543,558,556,556,553,515,507,495,518,511,506,507,515,512,489,485,489,484,491,485,494,489,489,491,484,481,480,486,479,486,492,490,557,561,556,551,563,551,553,569,492,489,492,496,495,483,498,486,480,486,506,505,513,509,514,509,506,514,513,558,562,555,565,561,560,554,555,541,541,536,533,537,538,528,536,529,534,534,532,529,535,527,526,532,569,560,556,559,562,567,565,551,553,518,523,498,513,505,508,515,516,519,527,487,479,488,476,481,477,484,484,490,482,479,486,475,480,482,480,475,482,548,557,541,555,565,556,553,555,565,506,507,496,505,504,490,495,500,493,465,471,464,464,473,472,466,469,479,475,575,546,553,540,553,539,546,550,498,483,491,515,496,494,491,491,502,506,507,502,501,500,487,492,505,499,490,525,523,528,528,523,528,526,525,516,519,525,518,515,516,514,518,521,547,550,546,546,551,545,561,540,549,493,499,500,503,497,496,491,501,500,542,556,542,542,542,549,543,553,564,561,565,576,564,572,562,568,571,564,509,514,503,499,500,504,506,510,505,528,523,528,543,542,531,527,526,524,522,546,539,541,540,541,541,538,544,540,545,553,544,550,557,560,559,544,505,489,501,498,495,482,485,489,478,466,462,455,460,460,451,466,475,592,601,592,603,577,586,578,591,585,548,549,550,556,554,557,557,552,549,554,521,533,519,526,528,524,514,516,479,480,487,476,474,476,474,475,478,476,459,465,460,453,461,458,466,461,452,551,545,547,546,545,555,556,545,550,537,570,581,568,573,563,568,568,565,561,508,523,526,534,519,517,520,515,587,594,585,590,585,594,572,582,537,540,547,550,545,549,544,535,561,549,472,498,487,483,496,486,478,488,489,465,460,463,455,462,457,465,462,472,551,562,563,565,561,545,556,545,562,514,513,512,510,515,518,509,527,510,508,559,545,555,553,543,547,553,549,551,532,531,532,536,532,533,539,530,536,539,534,539,532,532,535,535,532,533,562,557,568,559,562,573,563,560,557,524,533,516,529,531,527,541,529,514,523,525,503,506,505,502,506,506,501,499,497,503,476,486,481,472,484,482,479,474,478,478,476,462,467,451,459,459,459,465,529,548,555,547,552,548,540,555,553,560,569,574,561,563,574,574,566,563,530,515,521,538,527,538,524,534,540,528,519,517,513,520,522,517,520,519,522,524,571,562,576,561,559,557,546,564,558,563,521,499,513,510,516,511,499,479,479,481,482,475,473,479,477,471,472,472,477,468,476,466,469,468,466,550,562,560,552,558,556,555,557,559,495,489,496,494,490,489,487,488,485,478,488,486,496,485,485,484,498,499,499,496,500,508,497,501,501,535,526,525,524,526,519,546,546,539,542,548,548,541,552,544,540,560,564,549,556,551,553,558,496,499,481,495,503,499,496,506,506,484,524,516,523,517,509,527,524,519,530,566,560,558,567,566,554,556,579,565,573,537,523,525,526,525,528,533,513,534,522,503,502,505,503,498,506,502,501,481,482,474,483,474,480,477,474,474,478,474,481,484,487,495,478,493,474,487,578,598,589,605,593,592,576,584,586,583,513,543,525,531,534,538,535,537,491,502,501,505,505,499,502,502,503,497,539,548,551,556,559,560,557,553,546,546,538,541,539,546,547,546,544,529,511,516,514,522,534,534,518,470,480,480,479,484,463,479,568,587,595,589,588,580,588,523,517,513,523,527,522,521,525,520,532,553,540,540,554,552,553,570,541,564,516,523,524,517,516,522,515,520,519,553,556,560,557,554,546,556,552,557,555,526,529,525,526,535,525,533,533,523,510,515,499,508,497,520,505,560,564,561,558,560,559,557,570,559,556,511,506,518,496,494,513,508,494,500,489,475,476,480,480,482,474,480,478,488,473,480,469,474,466,440,434,439,439,432,446,429,436,529,521,525,524,528,528,530,528,525,536,529,534,525,534,524,529,536,533,577,566,567,568,569,556,551,565,532,540,527,527,529,530,536,533,527,536,528,521,525,518,529,515,525,519,512,520,560,562,562,565,552,552,548,559,554,534,536,533,531,546,538,540,542,538,536,529,532,536,536,535,533,525,531,537,537,559,561,562,556,552,564,557,554,503,502,495,497,493,496,495,490,487,492,488,495,494,501,489,492,490,497,575,564,555,558,548,569,557,567,471,473,478,479,466,478,465,485,484,480,448,476,460,480,457,468,464,455,611,577,587,598,583,589,599,594,580,545,542,537,537,545,535,539,544,554,537,523,522,524,523,527,525,523,522,525,522,543,536,544,545,542,534,533,544,542,544,539,516,513,511,506,514,507,512,514,514,502,505,509,501,506,503,500,502,501,538,543,546,536,543,533,540,530,526,570,565,567,564,553,567,565,566,566,566,534,535,515,519,542,526,539,535,536,525,521,505,501,509,516,513,508,510,507,509,554,561,565,536,574,557,570,553,564,535,513,517,502,513,526,503,500,487,493,484,483,483,487,488,483,489,478,465,477,472,479,463,467,475,477,465,465,466,473,468,473,469,472,470,467,441,454,435,444,454,443,441,449,446,553,558,551,554,558,558,543,548,539,553,554,538,554,545,561,550,551,547,544,516,511,508,506,500,497,506,504,491,488,475,488,485,488,489,488,480,501,493,496,496,491,491,496,490,496,501,491,486,493,490,493,495,495,499,490,468,471,475,470,468,477,470,470,466,471,467,472,489,500,503,499,504,492,490,495,493,491,504,528,536,522,522,532,526,531,532,521,524,523,523,525,526,529,531,518,526,541,535,540,538,540,536,543,545,537,534,477,483,484,487,462,486,476,487,470,484,520,535,536,526,526,536,530,536,525,542,543,539,544,538,542,546,547,538,550,546,547,554,550,549,538,545,556,482,496,492,492,486,496,489,488,488,441,436,430,435,441,448,435,448,454,517,535,518,531,526,525,537,533,531,544,538,537,542,531,547,541,540,541,514,520,521,515,520,517,520,520,520,520,512,527,535,533,535,523,532,540,517,529,474,473,477,474,459,479,475,469,557,544,549,537,552,545,546,543,542,544,571,582,582,569,572,593,568,577,513,528,531,507,529,531,530,529,527,525,467,476,481,459,471,481,470,475,477,484,526,530,535,535,530,527,521,531,531,521,542,541,544,550,538,535,544,535,545,549,541,543,542,550,538,548,547,556,552,499,483,479,490,482,476,489,492,485,500,469,466,468,462,473,464,467,461,474,547,538,532,545,542,542,531,541,543,544,476,464,473,494,474,478,477,484,495,502,497,495,494,487,491,503,493,530,535,535,546,536,539,536,536,520,520,521,520,522,519,525,551,554,555,545,546,561,546,549,488,499,497,494,499,497,497,495,498,497,507,495,497,502,502,500,510,508,505,504,500,538,537,544,542,534,546,529,544,538,542,550,558,567,582,572,568,568,511,494,496,516,496,511,494,497,492,501,449,435,451,443,443,442,445,447,442,472,479,464,480,478,486,478,480,561,564,559,587,564,575,572,567,570,489,509,501,504,506,503,508,510,514,503,475,469,456,465,461,457,463,501,492,513,497,496,504,510,491,501,573,557,555,558,551,552,552,547,552,482,509,510,504,513,503,509,500,503,442,456,450,450,460,447,452,448,458,461,462,476,463,465,468,469,464,475,615,600,600,588,601,586,588,596,553,564,554,551,545,546,547,568,555,509,504,489,499,505,497,487,496,488,465,459,461,471,462,463,460,463,456,453,440,455,466,448,458,465,463,453,456,550,546,546,557,556,560,545,531,546,579,565,572,579,575,564,566,569,578,525,525,525,532,525,525,526,528,527,563,560,564,555,555,545,558,556,562,556,541,524,529,524,526,526,525,524,528,520,531,550,557,562,546,544,545,547,551,554,552,547,551,542,550,550,545,550,556,544,549,519,529,535,535,532,538,538,536,531,518,515,512,514,524,518,519,519,550,565,570,567,571,564,568,556,579,526,538,526,534,542,530,538,530,509,504,507,504,502,508,499,503,487,481,481,484,474,479,489,475,482,497,497,502,491,498,503,503,496,500,502,561,559,560,560,555,561,547,563,561,565,519,522,514,536,515,525,521,507,489,495,495,494,494,504,496,486,593,585,594,592,587,599,595,588,584,590,548,561,548,562,548,563,550,555,516,494,512,507,507,517,511,507,507,485,484,484,482,481,482,484,485,496,488,490,483,492,490,487,490,491,513,505,500,506,507,509,533,532,525,526,524,526,530,524,522,520,526,518,522,519,520,525,518,514,512,514,511,518,516,519,512,514,514,517,533,530,532,538,535,535,530,534,525,529,571,558,568,557,567,568,576,570,498,507,505,503,490,507,499,511,509,539,525,524,523,529,528,529,534,519,519,516,521,521,516,526,513,532,533,531,532,526,529,535,533,523,528,573,559,574,565,569,573,571,580,566,570,562,546,546,546,550,558,550,549,545,545,494,505,492,500,494,500,497,498,495,489,502,510,510,500,498,507,504,551,556,550,544,553,563,559,557,550,537,533,543,533,533,536,541,540,513,505,516,502,507,511,512,508,557,556,546,545,550,554,556,552,558,542,548,554,536,551,553,547,547,545,548,494,495,498,493,492,503,497,497,483,446,443,446,435,441,452,430,435,453,535,526,545,544,537,533,548,524,545,538,556,541,549,543,553,544,554,557,489,489,513,502,502,486,508,502,459,460,458,460,451,457,457,447,462,465,487,491,486,495,499,492,503,574,579,577,574,566,581,573,565,572,565,497,493,502,499,503,506,497,499,499,488,458,470,458,458,468,470,459,457,463,466,459,594,569,594,579,587,581,576,592,583,500,505,510,506,507,501,499,552,552,550,552,547,551,557,540,536,542,539,554,546,548,545,540,468,474,473,490,479,481,464,477,448,451,448,446,441,457,455,458,437,562,550,557,558,554,554,557,561,563,557,544,551,552,541,556,545,545,550,552,510,520,514,521,510,508,499,509,573,558,567,562,573,573,568,570,555,526,520,515,514,507,503,519,524,465,474,463,474,471,466,466,462,466,460,445,459,452,452,454,457,448,453,469,462,461,455,460,466,456,462,458,535,536,545,528,542,535,543,536,534,535,552,553,545,545,553,547,549,556,542,563,560,558,559,553,544,567,554,556,520,523,519,522,509,516,516,522,512,505,502,502,502,508,504,504,506,487,493,488,504,483,481,489,495,489,478,480,473,479,478,467,467,468,472,475,462,464,466,466,474,482,464,472,472,477,473,482,475,468,480,467,479,481,485,474,478,475,486,490,485,487,490,495,496,484,489,494,491,550,566,557,570,555,558,570,550,570,559,531,529,539,527,533,532,532,524,530,565,566,567,562,561,559,562,562,563,533,519,518,519,516,520,523,515,519,524,507,505,509,500,497,505,498,503,499,486,484,475,483,487,469,480,478,479,459,458,452,457,452,459,461,457,463,461,541,547,535,537,542,532,534,533,538,537,546,542,545,543,542,534,539,545,537,545,546,549,560,552,556,558,543,554,545,487,492,483,500,520,501,491,511,429,441,431,432,438,436,446,435,480,490,500,484,486,501,494,491,542,541,545,541,531,533,533,531,545,539,469,480,459,483,483,467,480,462,539,523,538,532,528,548,535,569,552,561,564,562,563,571,559,563,561,526,533,533,536,534,536,535,534,536,550,539,539,545,545,541,549,544,540,543,551,552,561,558,545,557,552,549,532,529,539,536,529,530,537,468,484,486,476,476,464,478,476,474,479,563,551,548,554,539,547,551,541,561,542,547,542,559,559,556,550,568,551,552,495,491,509,505,507,493,504,500,491,480,482,475,486,477,476,478,478,496,490,494,489,488,484,484,493,491,488,474,470,464,469,464,459,470,468,448,458,458,454,457,458,456,467,454,455,452,558,536,550,546,544,554,537,556,543,512,504,487,492,494,467,501,491,496,496,584,579,595,579,591,585,599,542,552,552,540,555,551,547,568,549,556,526,523,501,524,511,514,520,516,530,477,477,474,474,484,478,472,478,481,466,464,456,463,469,460,457,464,536,532,536,529,529,536,532,535,537,536,535,530,530,538,538,533,535,537,563,574,569,568,573,565,557,564,575,500,498,502,503,505,511,507,509,500,538,523,525,534,529,528,530,529,523,527,534,535,528,530,523,529,529,546,545,548,538,532,547,551,544,510,508,506,506,518,510,518,506,511,509,510,550,556,566,561,559,553,558,555,561,555,549,549,548,551,558,551,543,547,484,489,496,488,486,499,491,495,489,453,460,455,456,458,461,458,465,464,540,535,542,536,539,539,542,534,533,552,557,550,548,550,559,552,550,547,551,562,557,556,552,552,553,551,555,550,555,491,496,492,501,503,504,483,491,494,497,470,474,463,465,466,462,461,467,532,533,531,541,531,526,541,532,530,533,535,534,528,540,541,531,539,573,577,569,574,567,574,575,583,570,548,568,560,534,549,546,549,547,551,538,526,531,528,526,525,524,518,527,522,498,511,502,509,507,507,510,500,499,510,502,505,493,500,497,499,503,503,490,489,496,498,495,499,495,504,497,475,458,465,470,462,470,469,467,472,451,451,453,452,462,454,459,448,452,463,534,552,559,575,549,540,572,549,557,487,487,493,492,493,490,475,477,483,582,591,572,575,568,573,588,576,582,522,522,522,521,520,513,527,516,527,557,554,561,539,550,557,561,553,548,523,525,522,525,535,529,525,548,544,553,549,550,542,555,551,500,509,508,503,489,496,492,504,500,468,462,459,458,462,463,451,457,554,559,552,545,553,554,551,559,553,552,550,557,578,570,562,566,571,574,575,571,521,532,532,533,537,524,532,526,518,514,506,514,508,505,503,506,510,566,563,546,556,539,558,550,557,554,512,509,512,506,506,512,500,516,493,488,490,490,498,488,485,490,483,529,522,525,531,526,520,523,520,525,572,590,584,580,592,585,573,584,587,579,497,510,510,501,502,511,506,502,510,522,532,518,536,532,531,534,535,531,520,513,515,521,521,514,519,517,525,531,529,530,535,534,532,526,525,567,569,574,567,573,560,573,572,546,550,539,551,541,540,545,543,542,527,504,518,504,497,512,513,509,515,484,479,478,473,478,475,481,479,457,466,451,459,464,456,455,452,454,455,505,503,509,504,504,504,503,498,536,534,533,551,533,540,551,539,548,444,462,449,459,462,441,452,474,461,445,517,529,535,532,527,525,529,541,532,540,533,558,569,562,560,566,559,565,549,559,554,558,545,531,544,541,542,541,548,543,511,518,531,517,510,520,524,518,508,477,482,481,484,469,499,477,487,553,550,552,560,541,562,559,567,580,566,491,502,499,495,491,500,495,490,544,547,550,545,545,534,538,558,545,515,521,516,521,511,510,519,520,510,566,561,563,557,556,562,563,566,565,539,560,552,553,559,554,557,560,551,504,510,501,513,514,519,511,512,487,481,484,479,486,492,483,492,527,505,510,507,504,508,516,511,516,508,557,550,552,553,555,552,557,546,497,488,485,478,498,492,490,493,486,447,459,457,453,453,469,452,468,534,531,526,534,518,544,534,531,538,524,533,540,534,531,535,536,540,527,535,537,572,564,569,574,571,571,577,529,518,517,535,533,527,529,526,526,484,504,495,490,505,496,501,562,570,560,555,563,565,565,556,568,519,514,503,514,499,506,509,522,514,517,514,520,522,522,527,513,598,594,587,590,575,582,586,579,576,583,549,537,531,544,534,537,531,550,529,482,501,496,499,493,494,494,503,502,497,583,569,576,566,562,571,557,548,566,553,488,478,467,478,458,475,483,465,460,463,533,542,536,528,536,537,539,538,527,518,568,553,556,564,565,558,556,564,570,560,519,535,530,534,529,530,534,526,536,520,525,520,522,532,522,526,527,525,526,537,524,547,540,546,539,531,477,501,494,492,490,488,488,497,492,507,498,493,510,506,505,502,508,521,547,537,540,548,546,542,538,537,540,507,490,495,498,493,500,493,492,502,509,510,508,502,499,506,504,510,512,511,546,557,555,544,547,543,536,544,542,554,507,487,485,484,484,492,489,488,495,478,485,470,477,481,467,481,476,477,538,562,554,553,551,542,570,547,545,561,512,512,520,513,502,498,505,551,554,548,573,555,563,562,540,570,558,525,531,521,527,525,534,532,523,536,537,532,535,537,529,547,543,535,544,512,519,513,520,519,518,516,519,563,551,554,540,534,544,543,555,547,550,543,543,540,536,540,542,545,544,542,537,541,545,539,538,538,535,540,532,540,536,526,522,525,521,522,516,530,525,525,582,580,570,584,590,600,577,587,591,576,520,512,515,517,521,509,515,520,519,552,559,559,555,555,558,548,553,557,557,554,555,547,541,554,560,555,503,502,492,489,506,500,497,493,483,506,470,471,458,452,466,478,462,468,463,464,567,570,562,558,553,559,560,570,559,570,487,487,502,498,488,497,500,489,488,497,587,578,600,578,582,580,593,576,584,550,551,552,555,543,564,549,544,492,499,494,493,494,497,507,493,491,493,494,499,501,490,494,498,487,489,494,493,593,570,594,581,572,566,575,572,565,571,534,520,533,520,532,520,530,520,524,532,503,500,504,505,509,501,505,502,474,476,481,471,480,478,484,477,480,480,451,459,451,463,454,455,454,567,579,584,592,579,566,594,590,577,583,547,550,556,546,538,548,549,539,542,542,539,548,539,547,540,543,483,497,478,492,487,484,488,480,491,476,443,438,441,458,439,448,446,440,546,534,542,542,535,547,541,545,543,551,548,543,544,542,531,572,553,553,561,461,483,469,465,465,463,470,472,548,538,542,533,537,542,527,533,523,537,570,576,564,564,568,564,567,560,565,570,541,534,540,540,546,550,541,544,546,541,504,481,492,488,492,488,479,483,494,422,427,429,447,445,452,439,499,495,496,495,501,495,513,496,491,497,570,564,575,570,566,565,562,567,564,527,519,522,534,526,528,530,522,526,536,495,495,500,495,498,493,502,507,501,491,479,471,488,483,483,484,481,488,483,481,477,454,462,467,469,454,455,463,562,543,530,538,541,555,558,555,526,514,526,521,513,515,517,523,521,531,528,528,536,531,531,519,515,525,530,508,500,498,508,503,510,513,513,502,561,566,560,562,565,554,557,565,497,489,493,510,499,502,519,515,509,476,477,474,477,482,484,474,477,478,487,478,485,482,482,474,485,479,493,491,488,491,495,495,495,490,485,484,509,512,508,509,510,507,513,512,532,534,522,532,526,533,520,534,523,530,522,537,532,536,537,523,531,532,530,545,547,549,538,546,545,540,539,547,523,516,522,529,526,519,524,522,567,561,558,560,565,561,556,557,562,565,544,539,548,538,547,544,543,545,546,495,495,506,502,496,500,494,497,502,505,512,512,497,491,498,511,515,493,506,497,506,528,541,531,529,538,536,537,533,529,530,527,518,522,523,526,525,520,518,531,529,539,526,538,539,533,538,540,489,476,478,480,483,470,474,480,472,550,558,560,568,539,561,553,547,576,551,522,503,512,509,513,511,511,510,515,509,525,536,541,547,533,535,540,535,542,565,554,557,555,565,555,563,558,533,517,523,526,526,513,519,494,484,487,492,498,494,492,483,483,476,479,487,489,474,474,478,483,491,487,492,491,492,492,497,485,493,476,465,466,469,457,460,468,467,461,431,454,449,448,448,450,463,447,444,581,580,562,576,580,581,574,572,565,504,502,495,502,518,507,496,525,536,526,533,524,530,528,537,537,543,548,544,541,539,546,544,545,547,559,551,567,560,566,554,555,552,558,498,485,504,501,494,510,508,484,494,498,491,490,485,488,487,488,487,485,562,573,554,554,557,574,556,574,573,553,519,515,516,516,526,514,519,523,516,525,532,527,534,527,525,529,528,512,515,507,511,510,509,514,511,520,506,526,519,530,520,533,528,520,526,585,590,589,580,587,583,591,592,590,553,550,552,539,552,545,561,553,556,560,517,526,523,522,527,530,522,499,497,503,499,504,503,504,505,504,501,484,484,477,482,488,487,482,479,484,482,494,487,492,484,488,489,479,488,478,472,474,486,482,474,478,459,457,455,462,458,458,462,455,476,478,474,456,467,470,459,462,537,545,545,547,535,535,529,551,544,503,499,500,490,499,504,495,488,502,492,504,493,498,499,491,504,500,490,551,560,560,561,557,555,560,556,525,523,526,530,524,528,517,525,518,494,511,496,498,502,496,496,498,495,578,580,602,594,597,592,579,602,582,547,545,554,547,554,551,556,543,498,505,494,504,503,512,497,511,502,509,493,491,472,469,470,488,479,477,475,480,461,462,446,454,454,462,448,490,485,481,479,477,485,489,486,491,533,548,542,540,543,545,544,539,531,535,539,536,527,532,523,531,529,526,530,529,526,531,535,528,562,559,557,569,551,555,552,555,558,552,523,512,524,510,516,521,508,516,507,484,478,477,481,487,479,487,490,477,479,484,485,481,482,478,479,484,478,472,479,475,471,483,472,477,483,458,444,443,448,440,460,453,452,438,447,545,541,536,545,543,537,545,541,549,552,547,553,536,558,469,468,484,483,480,483,475,465,489,538,545,549,543,539,540,550,548,543,537,550,538,545,534,546,557,543,531,552,515,496,516,517,498,514,508,502,510,601,601,615,596,599,610,608,595,600,589,589,557,541,530,542,527,544,544,536,532,551,476,468,477,473,490,474,475,472,474,466,496,502,505,501,505,507,506,508,521,535,536,537,540,538,534,534,532,514,521,509,514,516,519,512,513,508,512,561,553,548,550,555,555,566,561,551,547,516,509,515,509,506,512,513,507,522,506,504,508,501,500,505,500,502,533,547,548,548,559,541,550,543,476,500,504,496,486,485,491,490,472,478,466,467,466,471,470,467,472,464,457,450,470,469,466,459,455,475,569,577,556,553,560,568,568,561,573,513,502,510,500,493,500,493,510,503,547,538,530,572,551,554,540,554,539,550,514,502,496,508,495,502,492,495,501,544,554,557,557,578,559,555,560,558,514,508,518,514,513,514,514,513,540,541,533,536,534,540,544,549,540,533,545,540,543,541,535,539,542,533,542,533,535,538,539,544,536,542,544,540,543,534,524,524,525,519,528,518,516,521,578,587,585,598,585,580,586,592,580,601,552,550,542,551,549,541,550,550,540,504,521,521,519,518,523,526,521,516,466,469,466,479,450,475,456,460,466,467,460,460,564,561,558,554,560,563,550,571,565,554,554,574,553,556,560,559,569,520,513,515,518,513,519,521,517,521,518,494,498,491,489,493,498,494,492,490,491,485,488,498,489,487,490,487,484,493,521,514,521,528,531,521,523,525,529,570,584,568,572,579,582,591,573,571,580,570,553,533,543,537,534,534,527,540,533,529,524,517,518,522,525,524,528,515,524,537,531,534,535,531,534,523,527,533,539,524,513,509,514,511,516,518,519,521,518,532,528,533,521,539,542,526,531,511,507,505,504,507,509,516,495,501,505,552,563,556,559,559,568,553,555,545,559,500,504,505,501,510,510,514,513,466,471,462,468,473,466,471,468,438,434,439,445,429,442,432,440,535,542,542,538,523,546,545,543,548,565,561,570,570,554,557,568,528,537,540,537,528,532,542,528,533,524,526,516,525,527,521,528,524,525,547,544,540,548,551,540,548,551,541,500,498,490,506,503,488,507,513,462,459,464,451,453,460,458,464,462,458,469,478,472,473,482,467,463,468,467,470,549,552,563,542,553,534,552,553,553,552,492,498,506,489,502,498,501,506,492,514,522,522,525,507,515,510,543,547,538,542,536,541,541,520,525,521,525,522,522,522,520,555,553,561,553,551,555,553,557,557,535,541,534,533,531,532,538,512,515,525,520,514,516,524,521,526,537,523,526,529,531,522,533,565,558,557,556,562,543,562,541,556,545,559,503,516,513,516,512,509,509,506,524,538,528,532,526,527,540,526,528,533,557,541,552,559,557,551,558,563,558,504,495,511,504,516,515,512,501,501,501,517,563,569,588,561,591,572,581,562,574,572,473,475,489,483,479,486,484,481,522,522,522,521,535,531,529,520,524,542,539,550,539,549,542,549,542,539,549,553,549,556,558,559,552,555,552,551,506,511,504,497,489,507,488,508,486,475,468,466,471,465,464,464,473,466,459,576,573,567,563,571,567,567,565,559,450,465,472,463,467,465,472,467,475,477,533,528,523,539,532,526,524,529,522,569,562,570,566,568,566,576,569,548,539,547,549,547,550,548,544,549,543,532,544,543,538,553,549,538,484,503,483,496,488,477,486,475,482,480,490,448,449,447,440,432,448,444,447,442,525,528,525,525,527,528,535,528,529,519,515,513,522,518,518,518,518,528,531,528,525,529,530,534,520,570,563,572,569,573,566,574,560,572,572,506,506,512,504,504,504,508,511,498,545,557,553,548,542,558,545,550,553,550,545,541,541,552,549,550,550,550,515,504,499,512,499,507,515,498,488,487,488,484,489,485,486,484,500,498,498,498,500,501,499,495,471,474,478,476,468,485,474,478,474,480,472,481,472,471,479,480,477,590,597,607,597,596,601,598,604,514,504,509,511,508,495,508,539,545,549,540,549,539,546,535,543,573,561,563,564,562,566,563,555,568,527,536,527,528,535,532,533,510,537,511,515,517,509,517,524,510,510,506,560,559,569,573,558,561,580,564,526,533,523,508,516,523,521,530,518,496,508,503,505,505,509,505,511,477,480,473,473,474,478,486,485,436,445,427,431,432,426,429,442,433,457,456,459,472,455,465,454,464,454,578,599,588,595,599,597,594,552,549,545,544,551,556,539,546,557,496,491,490,485,485,490,493,485,489,464,456,470,454,463,469,459,458,465,543,552,559,543,548,534,547,549,510,519,516,509,522,508,518,508,516,498,551,545,555,561,550,563,545,565,553,550,549,551,549,552,552,549,548,552,543,518,514,521,513,513,506,506,514,489,488,481,487,480,483,479,481,485,488,488,489,496,488,490,497,481,485,488,541,520,528,520,524,523,526,523,527,524,598,570,576,574,583,581,579,582,578,539,503,498,527,531,539,522,507,510,484,474,476,462,469,471,469,476,484,577,570,591,581,573,589,576,587,568,536,525,533,537,516,518,531,515,519,505,509,516,501,504,501,503,498,549,552,550,554,547,554,549,559,543,555,551,531,535,549,542,531,531,539,539,596,567,579,570,574,579,581,524,515,533,513,513,519,528,532,515,479,485,477,479,486,487,462,473,446,468,459,461,456,451,457,455,578,581,575,598,584,596,584,582,591,545,544,557,556,549,546,551,550,514,504,517,519,531,525,525,516,483,475,481,478,476,480,472,474,471,493,501,499,497,477,495,491,552,553,545,549,557,550,558,552,556,562,500,470,488,479,496,476,481,487,487,496,492,482,486,488,494,483,493,486,511,512,511,506,509,511,504,505,509,524,528,540,527,529,536,533,520,529,531,539,548,542,538,544,548,542,542,541,537,541,547,553,564,550,560,550,540,564,505,506,509,511,503,500,505,509,516,516,450,452,468,452,463,457,465,452,462,457,454,472,476,472,469,481,471,470,457,599,592,587,599,594,581,588,599,582,577,562,547,536,534,546,553,543,546,485,491,487,483,488,483,492,487,492,477,486,490,495,500,493,486,498,489,496,502,495,531,529,529,529,528,522,536,530,518,519,521,507,504,506,511,516,502,566,552,549,559,556,551,556,549,510,522,520,529,514,519,513,533,517,521,490,490,497,497,489,488,501,497,536,544,560,548,573,550,561,551,551,493,501,502,489,505,503,491,493,507,507,510,511,498,507,509,511,549,548,541,532,546,548,548,546,553,557,572,561,561,569,571,561,551,512,511,512,512,506,503,525,521,514,556,564,557,546,559,568,561,544,569,553,516,497,493,504,511,510,497,501,503,490,483,490,489,494,497,489,489,543,547,548,551,551,547,536,546,542,549,529,529,525,526,527,528,535,532,526,525,525,523,527,522,530,533,525,557,570,563,554,552,567,565,560,566,554,542,550,544,547,538,546,542,547,486,501,496,502,488,503,494,498,496,489,490,492,492,490,489,494,498,520,519,524,511,520,519,526,519,520,584,573,585,564,580,572,578,583,579,570,593,540,546,535,541,536,542,549,541,534,505,504,514,504,502,501,501,509,511,525,541,533,531,540,535,537,536,536,535,542,543,539,536,539,540,554,554,561,548,555,544,548,548,548,543,480,489,488,500,472,492,501,485,549,561,551,555,558,554,558,553,555,554,552,560,544,555,552,548,550,541,542,522,524,525,521,519,527,559,556,555,556,548,547,546,564,550,506,525,510,526,523,530,522,527,523,440,454,462,465,460,448,456,449,450,527,536,531,538,533,529,533,545,566,567,556,570,569,559,571,495,530,510,507,502,512,509,508,503,509,534,541,545,544,552,541,541,548,552,539,540,549,557,554,538,539,539,527,526,525,531,523,524,529,531,523,527,520,536,542,553,549,558,546,545,552,553,550,549,509,505,505,510,509,503,513,499,507,503,485,497,484,491,482,484,481,483,491,506,500,493,498,497,494,500,500,502,494,488,497,488,493,485,485,488,489,490,500,476,483,481,485,489,484,490,501,491,500,493,503,491,501,494,498,479,479,488,478,472,484,483,474,459,454,457,468,444,449,459,476,458,455,458,497,507,512,498,496,504,493,507,502,548,553,560,556,555,544,548,550,545,550,551,505,503,510,508,511,512,504,507,548,542,549,546,555,546,543,547,542,544,540,543,556,542,545,536,552,503,513,514,516,517,524,518,517,528,535,537,535,539,537,537,533,535,492,490,480,477,485,482,477,492,492,468,472,482,482,481,477,478,472,557,542,562,551,554,543,549,558,541,509,518,513,510,506,515,509,526,512,484,488,485,491,492,492,491,482,502,499,500,498,498,500,495,499,564,553,559,552,546,563,545,555,532,532,531,537,531,537,534,533,533,533,517,515,518,519,517,502,518,536,533,534,535,530,539,533,535,523,527,556,561,567,557,561,558,550,568,556,502,490,484,493,491,505,504,496,481,474,472,465,472,480,471,466,547,546,535,542,553,562,546,534,554,476,478,475,472,481,476,482,486,528,535,538,535,527,530,527,517,537,529,538,539,538,532,536,534,533,563,562,573,559,562,554,551,576,550,509,533,535,534,522,522,525,531,523,492,507,501,501,502,510,504,495,504,500,499,557,551,559,547,561,559,555,552,553,551,552,545,539,547,547,541,542,549,526,536,535,539,542,536,537,530,527,534,527,527,529,535,528,534,553,543,531,538,547,555,497,525,514,510,512,507,498,507,516,562,547,548,559,555,541,501,512,518,515,514,518,502,526,503,493,481,487,485,486,486,483,485,490,473,487,475,490,487,475,478,480,484,487,469,465,469,464,459,464,467,466,467,442,425,428,440,441,431,429,437,444,440,494,492,502,487,494,499,492,503,566,573,564,563,564,549,566,555,560,511,517,520,517,520,514,512,511,516,517,503,498,506,504,500,502,501,497,500,475,473,478,473,472,466,475,467,467,471,450,443,439,445,447,448,438,434,498,488,480,487,483,496,487,496,525,531,537,539,535,542,537,543,535,527,524,524,525,526,521,529,526,521,557,568,566,559,566,561,569,565,552,555,546,556,555,548,558,552,519,531,520,516,520,524,515,514,517,479,473,482,479,480,483,485,490,474,468,463,463,468,460,464,459,460,467,557,554,555,551,566,559,571,578,489,483,497,484,485,490,487,497,498,578,577,567,586,575,583,574,576,581,530,521,531,519,528,512,522,524,523,567,577,579,583,589,578,579,591,580,572,538,534,535,535,536,529,530,518,517,525,526,521,520,516,522,553,554,555,554,548,557,556,537,532,539,532,530,530,532,542,534,520,516,523,521,525,516,520,523,521,543,535,536,538,533,533,540,535,533,572,556,551,565,555,554,556,569,548,542,530,536,527,528,531,532,524,535,528,554,546,540,550,546,532,528,542,469,478,472,475,473,470,462,472,479,480,513,497,492,491,503,497,502,499,505,541,555,546,556,556,551,564,549,547,545,522,532,528,526,524,519,522,526,490,485,487,488,488,482,481,486,538,551,553,544,542,549,558,546,540,557,514,516,519,513,512,517,518,509,505,531,546,541,535,542,544,537,525,565,559,556,555,569,555,570,561,561,507,496,494,510,511,504,512,492,501,488,454,458,459,454,453,464,451,452,452,480,475,473,476,482,477,483,483,479,486,586,573,566,549,562,559,573,549,573,514,522,520,518,513,520,518,514,525,527,552,542,540,541,538,532,540,538,538,541,536,500,493,492,492,501,495,503,503,488,496,546,551,544,547,538,540,544,554,567,551,575,571,569,560,560,572,559,565,542,541,524,542,546,537,544,547,502,487,491,490,490,494,498,503,473,472,474,473,470,466,471,469,469,436,425,439,432,440,444,422,441,449,557,529,535,542,531,538,537,532,546,563,568,551,565,555,556,572,564,559,571,521,510,528,535,518,520,526,530,558,566,553,563,565,556,551,566,511,508,511,522,504,510,504,507,512,513,519,538,528,529,518,533,532,532,570,546,555,548,548,547,538,552,553,529,527,528,522,523,526,529,528,562,558,558,560,556,564,568,557,564,537,552,558,551,545,547,534,544,545,547,486,498,510,496,516,500,499,495,500,501,491,491,489,482,496,488,492,489,533,528,523,514,522,528,518,530,522,592,589,588,580,591,579,583,587,587,544,552,550,550,556,551,553,542,504,495,488,502,506,497,491,489,492,505,503,502,508,517,501,511,512,499,567,561,567,559,573,565,564,564,568,565,539,523,527,545,534,540,532,527,533,517,515,504,518,517,513,517,522,519,565,563,555,562,556,556,557,544,566,502,499,502,514,505,513,493,507,507,510,514,519,522,512,514,514,513,525,510,546,542,543,549,543,537,542,540,550,508,509,502,500,512,509,513,502,506,516,514,526,544,547,543,537,546,549,466,477,472,474,484,476,482,482,488,502,491,496,497,498,499,497,482,491,494,546,561,561,555,561,556,558,559,558,530,533,523,526,527,533,534,534,532,530,515,507,492,503,509,514,512,502,532,546,557,569,551,554,554,545,511,502,515,502,508,502,511,500,485,483,479,481,484,482,482,481,483,450,458,462,466,467,459,467,459,449,451,449,443,456,445,447,462,462,458,543,541,549,558,545,542,556,539,537,519,522,520,514,516,525,512,514,542,538,541,539,538,540,541,535,535,550,483,481,476,480,477,487,482,471,478,442,437,444,439,422,435,443,440,435,435,548,543,541,538,532,539,538,544,543,536,584,572,570,573,576,559,573,557,537,545,538,532,535,553,552,542,544,488,492,480,500,491,488,491,495,487,479,472,463,477,473,472,475,473,470,467,505,503,505,503,509,504,505,505,504,505,533,519,533,546,532,530,523,537,526,499,485,487,490,495,492,482,504,494,480,602,592,597,591,592,587,596,579,592,551,558,550,555,562,556,546,556,545,552,525,540,542,546,536,545,529,540,536,547,477,493,495,499,500,493,496,503,502,480,462,471,457,464,458,457,503,500,506,513,509,502,514,507,537,544,540,544,540,532,538,535,477,449,462,467,456,455,446,456,532,523,528,524,529,522,524,527,531,531,538,539,537,534,536,537,537,542,550,542,549,552,544,536,534,545,546,476,492,476,472,476,462,472,470,461,475,488,485,475,474,476,477,479,471,480,463,580,564,558,560,559,565,571,569,521,508,494,492,486,491,516,489,508,515,462,453,462,456,456,470,455,463,464,517,498,513,499,511,501,505,500,544,551,537,542,550,542,542,544,523,524,520,527,531,526,523,528,531,532,522,538,545,552,541,548,549,533,549,518,510,514,520,507,505,517,520,513,538,560,555,565,565,555,551,566,549,519,525,513,512,515,514,525,515,472,488,489,488,483,490,484,482,443,460,464,458,456,459,447,460,459,476,487,480,483,471,481,488,482,484,482,536,535,523,530,522,529,525,522,520,515,568,568,569,549,554,563,561,557,565,553,476,486,468,482,487,471,484,485,533,536,527,533,536,524,529,536,538,573,567,563,574,560,568,562,570,547,545,546,543,557,553,543,543,550,511,513,517,505,526,525,523,512,505,510,480,478,475,475,491,481,474,474,478,480,438,448,444,441,443,452,442,445,562,556,549,563,555,561,553,557,540,552,548,548,547,551,534,550,554,550,547,494,509,493,503,498,504,514,504,509,505,491,483,483,477,483,478,476,480,484,471,467,472,470,470,465,466,469,465,477,501,503,493,493,492,499,496,500,491,509,546,554,542,558,546,553,554,552,534,518,513,522,522,530,520,516,510,514,495,499,495,502,506,497,499,505,500,484,479,482,479,480,482,481,486,478,491,510,505,502,505,505,510,507,519,540,533,537,533,549,533,544,539,542,501,513,505,516,503,513,517,510,510,508,551,551,539,549,552,547,552,540,544,498,493,499,506,504,494,497,509,495,533,545,530,530,541,538,528,527,539,534,520,521,520,518,520,530,525,522,515,514,510,516,510,518,513,521,533,538,529,534,530,539,528,535,530,577,579,572,573,565,581,570,570,542,531,552,545,545,542,549,546,546,493,494,503,483,502,498,496,497,491,494,500,508,506,493,496,496,504,510,508,505,508,504,511,508,505,508,509,513,499,545,536,549,536,534,545,548,562,571,575,576,555,569,557,564,563,532,533,524,533,530,520,533,522,533,563,558,572,569,562,567,558,564,511,524,522,524,523,527,531,518,531,522,518,547,541,543,542,536,547,551,539,576,570,576,570,570,573,570,563,582,510,514,515,516,513,510,517,511,538,484,487,493,491,491,490,482,493,489,486,494,493,500,503,502,499,493,500,500,556,552,561,555,567,552,550,544,526,532,529,536,536,532,533,540,534,531,528,537,532,531,535,534,531,563,562,563,565,561,549,552,558,504,496,514,510,520,523,506,479,475,478,483,480,480,480,484,477,483,463,464,460,470,462,467,452,456,464,465,560,559,538,559,531,565,554,561,512,512,512,508,514,508,513,515,547,563,564,551,550,555,533,529,525,525,519,518,526,521,501,496,507,497,485,496,503,491,506,584,578,577,592,573,592,586,588,602,503,511,509,509,517,514,496,508,530,527,536,534,533,538,537,526,528,541,545,555,537,547,549,550,540,548,549,569,550,551,558,560,551,562,560,568,527,515,538,523,524,530,516,528,520,524,524,501,504,497,500,508,501,507,505,455,461,460,465,450,468,457,475,475,466,466,469,466,467,482,479,561,572,590,578,572,574,584,576,562,479,488,486,487,499,480,497,482,471,547,548,539,542,537,548,537,542,552,540,540,540,534,536,546,533,530,541,544,491,484,476,455,469,475,466,472,476,507,491,502,499,501,503,501,495,555,536,533,530,541,533,523,527,469,470,476,492,482,544,561,549,563,547,547,559,540,539,567,557,502,511,517,515,516,507,507,514,513,543,543,543,546,544,550,531,530,538,519,523,523,507,529,521,514,517,528,593,596,585,586,585,572,592,538,532,539,543,528,539,543,538,527,537,563,559,550,570,559,557,548,561,570,488,484,451,471,473,485,468,476,480,476,482,486,496,489,488,476,480,494,469,573,552,567,582,571,583,565,576,557,527,520,515,506,532,527,534,527,520,510,500,501,496,499,500,502,496,493,455,450,450,461,457,449,462,454,496,492,487,484,494,491,488,499,481,498,545,539,554,547,554,539,546,540,539,548,532,527,526,528,525,511,519,525,582,594,603,588,586,589,586,588,595,591,537,546,529,549,540,539,541,530,545,543,512,515,517,514,514,515,509,522,505,583,593,590,584,602,577,589,589,549,551,542,542,546,548,547,550,552,546,541,538,533,531,534,528,527,529,536,537,523,530,527,526,532,531,526,534,529,553,549,536,547,546,559,556,546,518,504,500,496,497,497,488,448,460,465,463,457,459,467,463,465,460,457,453,460,459,453,461,452,468,466,458,460,456,462,447,464,457,577,591,590,593,583,591,576,567,585,593,521,522,531,525,516,517,518,518,525,515,589,576,597,591,592,581,571,577,584,555,559,555,551,553,560,542,554,559,560,551,550,548,556,543,549,559,550,546,559,528,514,527,521,532,531,519,521,504,498,503,505,500,500,498,503,488,483,487,487,485,476,488,475,483,479,486,489,500,506,490,497,491,500,501,497,502,564,555,558,557,558,555,547,550,561,559,561,523,531,539,532,537,531,536,534,532,533,523,524,532,527,524,531,530,532,526,523,533,537,536,533,527,524,528,531,495,497,489,483,488,484,490,485,551,547,555,550,544,550,552,552,541,520,526,527,521,521,521,524,524,560,535,544,542,560,559,546,544,488,490,483,489,489,496,494,494,474,470,475,474,472,481,471,474,466,501,494,506,499,497,500,503,501,486,493,539,539,542,538,534,537,535,533,535,541,518,527,530,519,525,516,522,521,526,538,530,522,532,537,530,530,524,525,477,474,480,484,472,487,480,469,583,572,601,584,594,588,587,582,579,549,533,539,522,528,534,537,536,516,540,520,504,512,513,509,512,508,518,513,555,552,532,546,544,552,548,559,549,496,485,494,499,488,496,497,498,493,468,461,455,462,458,468,457,462,506,491,498,501,502,501,498,487,507,533,548,553,545,553,548,551,547,551,548,529,525,526,523,531,529,520,520,526,529,554,563,555,568,560,573,568,560,568,511,500,499,510,518,514,512,503,566,563,567,558,560,553,575,556,526,517,523,518,536,515,519,521,519,506,506,508,504,515,517,510,499,511,498,483,483,485,485,476,485,487,486,483,512,512,519,516,502,514,508,509,497,509,505,573,552,555,563,558,561,549,554,495,509,504,492,494,494,512,496,467,480,472,468,464,473,468,469,508,509,499,498,496,497,502,501,502,546,549,561,556,552,557,544,551,523,511,502,523,529,524,504,501,522,513,503,474,480,485,487,485,489,476,481,481,483,504,504,505,493,511,498,502,498,504,498,543,544,545,543,548,542,543,542,554,554,555,550,551,562,556,561,561,549,518,505,514,497,507,498,504,491,507,505,463,467,464,473,464,466,470,463,471,434,433,445,448,437,436,441,456,443,453,454,555,555,556,554,559,557,542,550,542,551,548,554,553,557,545,547,545,539,550,547,557,493,501,514,502,516,508,494,486,506,502,448,439,438,441,449,439,433,445,427,476,496,487,493,504,489,483,494,491,518,532,534,537,532,537,544,525,462,475,480,477,485,472,478,481,478,550,552,581,546,557,553,548,563,558,550,504,490,474,477,494,483,486,503,497,544,568,559,566,572,570,563,573,561,560,454,457,469,461,465,464,476,464,477,512,523,520,524,519,516,529,524,522,516,514,511,515,521,507,510,514,527,537,531,528,528,527,533,528,533,531,559,571,563,564,558,566,555,564,567,520,525,517,522,531,523,519,534,509,517,577,582,590,580,579,587,577,578,578,588,485,527,546,513,516,556,542,518,524,524,523,471,460,454,465,462,462,451,472,462,554,547,550,549,543,553,547,541,548,545,539,542,557,560,558,547,545,544,540,504,495,516,505,508,512,500,514,486,484,484,487,474,478,478,477,486,478,476,479,485,472,469,478,476,476,476,504,503,501,505,504,501,502,507,554,568,569,565,563,571,573,561,538,549,543,549,538,541,551,546,547,529,510,507,516,504,512,508,510,509,485,481,490,481,488,478,481,478,477,465,465,465,474,463,466,469,463,466,466,437,445,438,435,434,435,423,431,429,426,490,499,495,511,501,500,502,497,504,504,509,559,560,565,556,568,564,569,551,562,567,521,516,520,526,521,512,512,520,528,509,494,493,501,494,490,502,488,488,490,496,471,477,471,472,470,467,474,470,464,481,483,478,483,484,482,480,482,488,500,521,516,507,521,519,514,580,577,574,585,579,577,572,577,584,523,519,523,525,513,530,523,581,569,583,580,575,581,572,579,575,573,549,548,545,549,548,550,548,515,524,518,520,519,530,528,519,504,494,497,497,499,502,496,495,496,495,500,584,572,591,594,575,599,580,585,590,496,512,511,519,513,520,527,521,523,513,529,543,547,543,548,538,546,548,544,547,541,545,543,543,549,548,537,546,550,542,516,520,528,517,521,520,517,529,520,525,552,535,546,550,544,543,549,536,541,553,500,501,511,502,502,507,508,509,509,501,525,533,520,529,536,529,531,538,533,525,528,529,527,531,525,527,529,536,580,555,567,564,575,564,565,588,533,542,529,530,535,530,534,539,527,549,466,482,478,473,476,495,492,469,446,461,452,463,461,452,451,458,457,458,559,553,567,561,578,575,573,570,565,583,518,534,529,529,530,526,533,525,514,520,521,523,523,523,520,524,526,533,543,538,533,546,530,533,515,521,528,523,522,521,523,515,562,547,552,554,549,563,551,547,551,550,549,545,545,539,552,549,544,543,544,540,536,545,535,540,480,484,488,492,492,509,495,496,446,435,448,436,450,444,441,506,484,501,495,492,489,482,490,493,494,562,553,549,553,563,555,556,553,545,492,504,502,497,511,512,505,512,515,481,478,486,491,483,488,492,482,490,475,471,469,475,468,474,473,470,508,499,500,506,499,506,506,503,506,550,560,553,558,557,551,552,554,560,550,548,539,543,530,540,534,537,536,535,534,580,572,570,568,569,573,575,560,509,511,522,510,514,516,521,519,517,517,455,457,459,461,451,466,467,458,474,473,466,469,469,473,478,563,570,563,568,582,552,557,569,551,560,499,492,490,497,498,500,492,503,488,485,540,567,549,543,552,550,551,546,558,548,503,513,509,508,508,518,504,507,540,534,528,532,534,534,537,532,555,556,552,562,555,547,558,561,482,473,470,477,479,484,481,486,470,462,473,472,478,480,478,477,485,481,477,468,545,566,556,577,550,563,556,556,552,482,478,457,484,485,470,480,477,475,474,471,472,451,460,462,460,462,458,452,455,601,587,579,583,576,597,590,597,595,540,528,541,542,533,531,545,544,531,496,481,481,484,485,490,496,488,494,500,486,495,487,487,480,485,491,492,513,520,524,517,522,522,517,522,520,546,543,551,548,549,555,548,551,527,527,528,519,529,532,527,522,523,552,557,538,545,547,542,550,554,546,545,501,493,488,495,491,501,499,494,500,515,505,515,509,500,512,502,512,549,541,540,547,551,543,536,545,544,529,533,528,531,522,526,530,537,524,544,541,545,555,547,544,543,539,533,512,488,484,490,489,497,480,481,491,499,447,445,438,435,441,438,439,436,432,488,494,497,488,485,489,489,488,546,556,553,550,546,560,556,552,554,506,502,507,509,507,518,499,504,487,485,489,481,485,483,485,490,490,462,473,470,469,476,467,470,475,466,472,524,496,511,495,498,506,506,562,551,556,562,550,562,552,560,551,524,521,524,524,523,528,528,523,527,527,523,501,496,495,495,505,506,502,501,554,565,577,570,567,566,569,570,560,561,518,514,505,521,515,506,519,516,501,491,497,493,491,489,493,488,492,492,487,502,506,506,512,507,509,512,508,506,549,539,563,548,543,548,541,531,500,489,497,488,497,496,483,491,489,493,500,502,496,495,496,494,496,500,496,491,493,557,544,554,553,543,547,555,542,545,544,553,532,518,524,530,521,527,523,526,519,557,556,565,559,565,562,560,564,563,533,518,512,519,517,524,529,525,527,563,545,546,534,552,539,543,552,504,515,511,506,522,504,506,512,509,509,480,487,487,486,488,486,484,484,483,481,481,490,488,487,479,482,484,480,491,492,486,492,484,495,489,487,488,492,456,462,467,455,464,454,458,467,505,485,483,486,485,481,479,486,482,481,570,564,567,563,554,564,554,510,511,504,505,505,506,516,469,468,462,463,454,461,462,460,489,500,491,493,504,503,492,497,506,503,533,546,551,528,550,551,550,548,516,489,497,500,513,496,492,498,471,470,474,468,465,468,478,466,469,443,453,444,435,448,446,441,449,444,437,555,549,551,552,547,538,553,538,552,543,546,544,544,550,542,545,538,525,522,512,517,514,519,515,516,516,513,515,523,515,521,524,521,521,522,524,520,565,579,583,588,591,582,575,588,578,504,525,519,536,520,513,529,535,506,461,474,484,484,471,476,472,476,481,491,545,553,543,556,573,547,551,558,555,545,556,478,493,480,485,480,493,500,484,491,484,577,578,576,568,572,584,571,568,549,541,535,538,542,544,536,542,533,527,539,524,530,525,522,513,529,525,526,549,563,555,549,571,544,549,574,473,499,510,491,503,498,497,503,500,592,591,591,598,578,586,577,581,579,584,539,542,534,547,543,548,554,555,555,491,497,499,501,500,498,495,489,494,503,526,515,512,517,508,517,512,507,522,559,555,531,535,536,546,535,487,476,482,486,470,488,469,485,506,496,496,495,501,506,499,511,516,547,560,550,551,554,559,548,557,554,555,495,488,501,499,495,492,494,478,483,486,482,479,476,486,481,484,488,489,560,565,564,581,581,556,558,560,552,493,501,491,494,491,484,483,479,499,503,467,473,467,456,465,477,468,474,467,468,573,567,567,572,553,563,565,564,567,561,555,555,560,557,557,553,562,562,561,496,492,490,496,495,490,498,504,442,453,446,447,444,443,450,443,440,556,557,555,553,542,558,555,562,555,551,550,558,557,536,547,544,551,547,477,490,491,485,483,499,487,500,500,566,564,559,567,558,567,572,567,570,552,557,554,558,567,557,567,561,495,502,499,504,497,497,495,491,495,481,460,466,473,463,462,466,476,475,464,570,559,566,556,561,564,559,563,549,546,554,541,557,539,559,563,549,553,507,514,509,499,509,497,507,505,507,507,513,546,560,550,563,560,558,566,565,518,519,530,520,516,522,524,517,516,524,523,532,533,526,525,524,523,520,543,556,542,549,546,557,557,558,543,518,515,514,513,518,521,515,522,523,527,527,528,526,525,524,514,521,532,528,529,489,479,476,486,473,483,485,489,492,498,574,542,567,556,560,553,556,563,543,556,559,508,499,498,494,532,491,502,504,498,487,468,459,462,467,466,470,464,462,462,469,461,458,460,465,453,446,466,458,547,551,570,554,557,535,540,555,549,516,513,519,514,511,515,513,514,521,514,522,525,540,528,526,532,528,530,524,518,516,516,513,516,513,516,518,549,540,544,541,548,543,546,545,585,575,562,569,572,570,586,569,569,518,508,509,537,520,512,528,513,528,484,493,494,492,487,493,491,492,493,493,510,501,504,506,512,500,504,502,532,539,531,534,527,538,522,538,528,503,492,491,486,497,492,498,494,490,499,554,553,555,537,555,555,545,542,562,550,533,526,524,524,529,520,521,523,517,532,542,532,529,547,544,541,528,536,550,492,491,495,489,485,486,500,497,483,484,499,494,493,496,495,492,495,575,552,551,567,559,562,560,553,549,540,542,532,544,540,540,541,534,502,496,497,495,489,493,492,490,504,471,472,475,474,473,475,461,474,465,467,465,472,472,478,468,472,469,470,469,467,560,530,548,545,528,534,559,540,540,541,485,470,476,474,473,476,468,477,499,505,489,491,495,509,497,501,507,554,548,558,542,548,542,553,547,492,498,484,498,495,500,499,505,487,494,494,496,497,497,499,490,495,495,501,556,561,559,544,557,555,564,560,531,543,526,528,539,533,530,527,525,523,526,523,522,524,526,531,551,542,538,544,542,541,537,538,546,524,529,529,532,535,529,528,528,529,530,548,554,547,547,564,562,553,559,547,553,501,500,503,514,507,503,499,508,505,507,451,452,453,450,464,455,452,453,462,457,449,449,446,463,444,452,458,462,446,454,535,531,527,540,541,543,539,539,528,539,526,524,528,522,529,528,524,522,523,541,545,551,535,545,544,539,543,563,553,556,552,561,562,565,562,554,525,523,520,523,524,527,521,528,529,501,505,502,503,502,503,504,500,506,484,482,479,479,479,476,471,485,479,432,435,442,429,444,440,454,452,538,543,548,536,540,536,549,542,547,556,549,566,570,565,575,570,570,562,545,498,515,528,538,522,521,506,473,450,454,450,465,454,455,443,462,519,522,524,516,530,527,529,523,527,524,548,551,533,536,546,539,542,544,548,535,547,562,551,558,557,557,556,551,557,522,512,508,516,513,516,520,519,515,519,507,484,483,483,481,491,473,487,489,489,489,490,493,484,492,484,497,496,476,466,477,472,474,476,480,479,472,474,468,467,456,459,457,461,471,463,466,468,513,508,512,517,503,508,505,515,504,505,561,565,560,555,559,563,555,548,499,515,524,505,499,497,499,502,501,516,464,453,456,449,444,443,452,445,451,463,480,454,477,462,466,473,461,567,585,592,586,595,575,580,600,544,534,531,535,535,533,535,539,526,563,556,564,555,557,558,551,562,550,560,535,532,536,533,537,531,531,529,535,562,554,554,568,562,561,554,561,560,563,526,530,519,525,523,508,529,523,517,523,510,506,499,502,504,500,503,507,501,487,489,494,482,487,482,486,482,485,480,484,482,482,478,477,483,477,479,445,456,446,459,454,438,449,451,455,461,473,471,462,472,463,470,472,476,579,585,586,574,585,603,598,591,584,580,547,562,555,541,555,549,547,552,552,555,501,491,507,506,504,500,497,505,494,477,491,491,490,483,483,490,491,496,495,489,495,496,492,485,496,493,474,485,484,483,481,483,480,478,479,462,442,444,443,442,453,459,429,447,440,446,545,551,535,550,562,544,548,561,558,551,546,549,555,546,541,556,553,540,484,496,492,500,490,483,493,483,490,502,435,439,442,433,450,438,450,449,440,442,533,541,531,531,540,541,546,535,533,531,553,544,550,543,543,552,546,489,501,496,503,490,485,499,493,495,444,448,441,452,433,432,452,425,517,515,523,515,507,506,514,520,523,517,536,538,534,521,530,533,526,525,540,533,540,531,550,552,547,560,541,549,537,555,471,465,471,474,477,495,471,470,478,467,549,542,542,540,546,546,539,543,543,538,551,538,547,552,540,543,557,541,520,520,525,518,523,520,524,520,515,535,530,539,548,550,552,542,540,543,544,538,532,531,528,529,533,530,529,535,560,567,562,553,576,583,562,563,536,509,510,514,530,496,517,514,528,518,487,478,481,487,484,474,482,482,482,484,469,465,477,462,469,468,463,477,473,475,471,476,471,476,475,493,492,493,484,497,499,494,495,494,496,470,465,466,468,465,471,475,461,478,475,479,471,456,464,461,471,526,525,551,542,561,555,544,530,555,551,509,515,511,517,510,517,508,513,511,510,578,569,571,578,583,572,568,510,525,514,521,517,530,523,507,483,479,488,483,493,486,483,488,507,505,504,495,505,496,505,499,552,553,555,554,553,557,555,553,542,512,502,500,508,500,513,509,504,531,542,533,537,534,538,529,535,538,532,543,542,542,545,547,542,548,540,544,567,560,555,546,556,561,564,555,557 0 233.909891 0 0 0 diff --git a/test/trans_count.exp b/test/trans_count.exp old mode 100644 new mode 100755 index 3f53a46..2229421 --- a/test/trans_count.exp +++ b/test/trans_count.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO004RA +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna004 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R2_154_2!0!820!+ 0 2048 -197.104108 299.432068 4000 25172 904,895,931,889,889,892,898,904,879,889,896,880,883,900,889,901,881,898,890,886,906,888,867,879,890,894,883,866,911,922,924,880,861,869,860,890,819,874,869,957,875,890,845,841,856,876,850,905,925,880,814,921,927,836,867,922,872,879,853,857,907,926,759,815,796,760,768,809,751,773,785,748,799,840,774,751,777,770,782,736,745,762,716,742,737,738,764,786,760,815,764,782,799,879,890,912,897,869,881,825,948,892,880,875,869,879,907,885,920,889,917,864,889,846,898,890,875,877,858,859,930,916,879,920,824,924,844,868,798,934,868,863,841,904,894,870,878,878,856,863,905,865,902,891,889,828,830,842,834,874,944,910,924,827,821,792,801,734,810,776,782,781,799,775,754,782,775,791,724,779,817,745,795,800,813,784,808,764,809,810,825,749,751,809,714,839,692,652,684,651,628,702,639,672,643,697,625,682,639,635,648,670,659,624,649,653,648,661,683,624,654,670,656,664,656,690,641,725,734,688,692,682,685,703,693,699,672,635,667,711,691,701,707,711,661,700,665,693,667,678,707,674,698,617,641,715,670,680,924,908,910,879,860,893,903,925,879,876,864,907,903,904,889,888,875,874,912,841,906,899,891,887,882,903,904,906,918,847,885,805,784,801,782,776,805,830,759,771,790,782,799,835,816,796,814,770,804,785,794,793,756,770,795,788,774,780,795,826,804,757,718,736,690,734,724,760,725,725,731,701,710,721,736,745,686,727,788,740,718,770,773,682,721,761,730,726,737,722,700,731,689,819,819,860,834,884,821,759,893,810,853,830,852,826,855,841,846,889,845,842,824,813,798,872,852,830,804,835,831,837,851,813,952,898,854,908,884,863,866,926,876,932,900,894,923,945,900,917,926,910,876,916,916,887,897,952,905,892,909,904,916,933,891,896,942,893,909,872,851,929,851,925,866,837,845,869,884,941,905,906,915,910,826,915,928,927,865,867,902,913,933,908,851,863,757,745,719,718,726,715,714,763,715,743,756,737,770,717,737,744,744,735,722,734,743,752,737,757,769,722,727,745,756,743,741,669,653,675,660,667,642,671,662,683,667,654,686,645,687,669,672,652,683,690,681,679,668,692,671,652,683,678,673,683,676,666,764,768,780,805,785,756,783,732,757,794,791,790,821,728,812,786,765,785,798,788,808,796,783,794,819,788,779,781,762,789,777,680,678,702,700,664,700,686,709,670,711,676,697,686,690,728,696,728,662,686,706,677,654,706,724,677,651,683,710,675,670,702,737,780,730,804,747,728,763,813,724,792,770,828,705,767,768,759,782,808,821,729,711,703,822,783,723,757,785,810,715,770,757,761,778,746,716,692,738,743,778,770,759,764,745,792,753,753,735,748,767,743,716,770,728,737,750,765,713,725,735,750,721,698,689,704,695,664,647,667,700,652,750,659,653,682,681,672,701,692,699,647,684,713,706,683,686,672,645,658,685,654,668,649,693,651,670,646,627,530,636,635,608,665,600,638,640,552,544,626,681,572,578,584,568,681,587,644,688,575,591,582,586,611,608,655,908,880,876,901,875,826,891,841,843,849,848,848,888,892,877,877,892,855,839,890,865,902,872,865,899,889,846,883,877,876,902,933,894,893,884,858,893,909,892,801,936,905,853,835,871,919,868,915,809,904,962,864,921,955,958,864,871,939,854,831,892,863,804,881,886,853,836,852,840,911,803,877,921,888,860,831,838,868,831,924,829,884,815,898,815,836,831,861,869,873,777,811,861,918,885,894,970,925,891,961,940,930,952,941,911,987,885,942,886,919,962,928,920,935,926,937,872,940,938,928,979,908,919,874,667,710,752,807,751,753,774,762,718,791,750,769,760,759,746,707,760,742,805,747,718,723,698,769,763,691,727,787,723,747,739,687,588,627,651,681,633,671,679,607,618,625,722,668,641,667,663,606,633,675,595,595,639,582,628,557,628,665,658,666,673,612,861,930,883,925,821,901,839,922,905,889,882,861,929,855,931,894,881,901,894,880,974,941,907,865,896,864,871,917,919,913,934,731,722,738,749,716,762,710,789,744,771,739,752,762,731,748,769,795,748,785,767,750,740,742,719,773,763,768,794,712,778,802,941,810,990,939,937,861,839,838,907,896,873,881,888,872,949,790,904,915,878,954,866,920,868,847,952,978,898,905,953,875,830,932,940,976,922,1018,999,893,964,991,977,970,1011,914,926,966,960,1005,931,940,908,907,1009,947,944,997,969,961,960,945,947,926,964,984,964,986,957,954,953,965,949,950,948,952,892,942,964,1003,965,934,971,923,960,975,988,991,955,1041,1006,963,924,996,952,965,926,974,1011,984,991,1005,922,918,922,951,890,961,907,969,962,967,949,896,981,892,943,972,940,979,972,952,973,980,956,972,905,914,906,931,937,862,906,884,947,893,893,919,970,894,919,945,909,908,897,962,881,916,944,908,978,853,922,851,960,898,972,811,808,861,834,807,742,831,730,787,783,761,777,795,809,768,788,805,752,788,719,742,797,794,806,752,755,750,728,792,733,854,944,918,915,923,927,912,908,884,867,950,927,905,906,894,907,932,898,911,909,907,920,920,953,919,936,962,905,902,938,879,897,894,908,844,811,835,841,833,839,886,818,826,866,864,835,865,863,849,826,914,877,874,849,814,874,869,896,849,872,843,852,803,841,835,885,880,885,844,857,899,805,874,852,874,872,838,824,858,903,922,913,889,826,870,826,883,885,853,860,882,803,831,894,851,828,827,781,864,887,887,867,854,906,824,912,923,849,833,848,777,851,875,842,886,868,818,953,829,845,802,854,859,891,826,1047,1041,1029,990,1050,1011,997,1026,1019,1022,1032,1013,978,941,1030,1034,1032,978,1029,1036,994,1024,1043,1053,976,1055,948,970,972,1068,1076,931,971,939,944,897,973,926,941,973,896,931,985,955,915,938,963,932,1017,905,929,916,925,953,894,937,956,949,956,957,952,947,877,854,914,866,861,855,867,878,880,907,861,883,881,922,892,858,871,894,811,827,873,832,871,892,864,884,820,888,871,899,889,898,903,892,915,918,899,854,924,855,901,897,869,890,944,885,878,867,864,943,905,933,912,871,874,891,899,871,902,821,892,864,790,754,783,756,763,748,763,760,743,762,736,766,798,797,777,778,770,792,751,793,724,777,755,753,763,775,791,772,780,753,751,758,726,802,803,791,726,761,805,757,744,760,786,769,773,801,831,781,705,797,740,801,805,772,720,805,762,756,753,774,791,760,735,728,738,767,732,736,748,738,733,743,732,777,777,688,741,735,731,748,759,739,757,734,737,729,735,742,745,770,721,770,745,674,710,702,682,699,692,710,715,720,702,694,700,733,725,682,724,702,685,690,691,741,676,706,684,726,657,688,710,682,703,683,799,760,759,776,803,796,832,789,778,838,759,775,811,770,840,846,828,805,788,848,801,808,759,772,818,795,765,780,771,774,769,743,760,740,716,710,713,768,729,746,723,731,748,759,742,719,757,777,781,768,727,700,744,713,775,694,764,755,743,782,717,694,1072,1022,1043,1011,1024,998,1026,1037,1040,1018,998,1060,1005,1025,1003,1051,1005,1003,1049,1026,1019,1037,1034,962,1048,1053,977,1007,1011,1032,1008,980,946,974,952,948,1027,990,1007,978,978,973,973,948,965,1024,924,979,1021,991,914,973,989,979,993,1019,1009,1027,969,984,989,962,904,917,908,897,873,928,900,908,922,898,904,877,903,923,908,904,849,872,878,885,924,898,875,886,901,890,915,878,894,899,906,779,764,788,754,784,779,782,735,780,771,775,741,766,767,754,739,773,750,736,742,752,767,773,762,745,777,765,764,771,773,763,768,737,768,802,774,831,778,778,774,773,813,812,777,847,777,772,742,781,734,791,789,836,775,794,831,749,798,801,788,774,783,724,745,726,719,731,725,713,720,755,688,727,728,740,727,725,718,713,684,765,760,707,739,722,717,721,736,703,729,743,727,751,686,697,722,712,703,704,698,729,714,673,677,697,701,689,703,710,682,693,684,722,672,705,657,689,683,681,653,711,722,726,708,941,987,1039,1022,982,1026,995,959,983,966,998,945,989,1005,980,1031,1012,966,1061,992,1010,979,967,986,1029,989,980,968,983,969,989,979,920,934,892,935,980,900,931,933,950,933,968,925,895,923,921,906,934,972,947,894,930,888,876,937,954,931,925,907,893,934,833,759,765,776,779,745,733,681,760,777,795,723,747,730,759,763,802,697,741,750,759,767,733,756,735,761,753,770,736,768,747,871,810,833,835,838,820,859,863,858,862,821,868,871,865,839,802,831,851,848,829,804,861,893,833,803,836,830,849,836,839,835,870,893,919,849,887,903,774,867,844,883,887,801,915,873,864,856,935,837,953,818,824,920,883,929,818,926,890,886,879,936,883,826,822,811,882,862,824,856,895,894,862,794,830,859,837,747,815,881,832,803,872,784,832,792,808,875,851,724,786,855,867,854,791,811,829,851,811,823,872,789,888,842,803,814,840,853,878,788,791,815,803,850,800,903,856,913,875,827,826,886,910,873,823,744,707,807,746,745,769,815,758,752,732,751,785,748,731,730,756,743,736,760,749,752,777,751,736,768,748,759,776,760,720,767,735,706,748,707,740,730,753,730,686,744,773,766,708,715,732,717,710,745,756,734,719,763,722,730,684,720,716,744,718,664,710,658,681,676,663,705,696,670,656,721,668,671,653,654,689,676,623,659,668,700,672,676,690,658,640,689,631,630,665,665,672,701,632,606,675,650,768,690,739,688,691,653,721,639,635,700,689,650,704,580,640,687,677,635,697,690,617,737,664,603,669,556,655,909,903,874,919,934,893,888,911,874,888,923,877,936,890,866,919,880,899,911,892,861,869,910,912,933,876,898,897,877,903,899,906,854,823,869,856,858,853,862,863,853,875,870,872,880,860,837,873,852,826,881,849,850,853,838,866,874,860,824,869,871,867,860,795,770,824,799,772,825,846,766,818,869,796,839,814,829,800,812,843,881,746,768,737,857,788,709,819,819,858,763,786,866,681,682,706,709,705,710,666,730,703,696,740,718,728,697,699,692,699,716,645,715,683,742,740,706,732,688,718,703,728,734,683,627,638,657,680,665,649,742,680,615,644,670,681,654,665,605,644,642,644,643,627,686,671,626,704,651,646,675,697,678,629,653,929,968,896,954,964,895,955,912,971,932,946,917,965,891,964,936,882,932,962,921,925,952,922,954,922,961,913,913,944,943,924,900,894,957,894,891,935,933,976,939,889,930,898,911,867,886,915,902,901,904,941,867,843,881,869,900,885,840,929,934,916,879,773,838,851,814,813,800,753,760,818,817,815,771,842,785,807,821,806,788,802,794,836,789,827,830,800,816,877,820,773,811,852,779,793,780,845,733,767,736,782,772,737,797,768,824,779,778,741,786,782,756,792,835,794,778,817,834,788,805,835,843,795,811,719,691,686,716,715,722,689,711,690,723,726,726,707,708,705,752,714,703,722,692,744,731,694,714,677,691,728,722,727,683,712,805,898,848,831,796,800,818,775,860,851,796,810,824,850,840,848,808,886,825,816,800,838,790,755,781,868,837,862,824,853,820,766,804,811,834,793,842,797,800,767,791,781,825,823,720,752,798,709,778,786,792,739,826,830,800,754,769,791,842,775,819,788,745,728,740,764,720,727,697,721,721,736,742,732,757,707,734,711,744,692,715,740,722,708,730,741,725,742,733,727,724,746,716,670,709,684,694,675,697,675,687,731,684,743,724,701,697,690,682,688,697,680,689,726,662,675,698,708,692,718,674,688,683,693,657,637,653,655,661,679,652,666,635,662,645,667,645,649,627,636,673,645,688,664,651,639,677,656,682,642,651,672,630,668,647,631,647,601,620,622,637,600,627,605,615,621,612,654,616,600,634,611,633,663,658,618,625,628,626,632,627,613,643,661,611,626,581,631,591,602,625,591,588,581,604,601,598,586,619,601,566,584,587,601,573,582,590,564,597,571,614,579,601,629,609,580,600,631,603,621,616,593,608,603,610,599,587,614,611,630,605,619,606,617,593,596,642,613,613,629,602,632,627,606,606,599,612,611,609,663,622,610,637,649,612,640,627,604,630,615,626,621,592,615,591,660,634,629,604,615,629,653,649,624,599,610,608,655,618,660,640,644,673,683,663,696,708,652,665,691,671,706,704,667,694,691,676,698,660,696,677,643,704,703,618,694,669,665,652,700,636,626,669,647,631,609,660,626,647,667,642,663,657,631,663,657,673,685,670,644,654,636,642,683,658,680,612,596,645,680,618,740,769,821,752,781,806,761,786,792,821,792,735,772,809,752,769,739,754,764,757,747,785,769,786,845,784,724,828,750,755,837,727,669,685,672,700,697,708,686,665,706,655,694,679,693,718,690,700,679,693,664,687,692,674,717,694,719,697,692,710,702,684,818,785,744,752,788,754,834,751,789,775,809,844,748,774,774,801,804,775,790,792,681,847,770,804,763,723,883,819,715,811,724,1045,1067,1014,1057,1024,986,1028,1018,1006,1028,1009,1014,1037,1007,1034,1015,972,1007,1046,1013,1041,1013,959,1024,989,1033,1013,1036,1054,1039,1025,963,947,956,978,940,1016,969,968,952,970,980,982,958,988,958,949,972,961,977,986,944,963,973,982,949,947,961,971,954,966,951,931,899,946,927,916,939,915,968,917,952,1017,918,968,924,1002,923,907,918,917,871,943,933,924,950,964,911,927,893,921,928,965,950,920,928,896,886,952,932,870,904,944,941,911,946,858,927,905,900,938,978,901,881,940,951,983,838,1001,985,949,876,906,955,742,772,770,750,760,766,742,734,783,779,753,754,767,738,782,749,761,764,776,760,764,748,759,746,759,747,755,784,727,729,758,662,718,705,684,696,723,709,685,712,731,713,661,671,699,684,691,659,698,678,704,686,677,717,690,685,699,707,662,712,672,695,753,751,745,780,767,767,772,776,739,769,712,764,761,776,733,750,762,765,784,747,735,737,754,800,730,744,765,777,771,782,776,690,752,699,747,740,723,718,734,743,741,718,707,713,744,715,744,743,742,728,721,728,702,711,733,720,723,698,714,722,727,716,791,768,771,776,805,738,829,732,793,752,774,757,737,762,749,761,761,783,752,799,745,801,793,747,737,779,769,718,770,721,775,731,773,771,756,757,767,773,741,770,751,752,729,758,724,762,783,748,741,741,737,735,759,758,737,737,754,742,752,757,760,760,713,694,701,683,688,714,701,679,655,715,708,729,692,686,698,658,679,710,722,698,731,688,676,699,692,687,705,689,698,700,694,666,712,674,691,681,694,705,692,662,686,678,668,684,684,706,705,699,697,671,688,680,689,701,685,711,685,686,690,684,685,651,699,657,672,688,710,697,695,685,678,674,704,666,703,666,673,688,680,709,688,674,698,652,679,711,670,676,686,710,661,689,666,668,696,697,677,686,675,726,691,658,681,702,642,654,691,695,694,675,660,702,707,676,681,675,663,680,684,695,672,703,691,674,663,672,713,688,698,710,738,696,652,658,712,684,670,721,686,682,653,689,682,681,690,719,662,693,674,716,680,650,678,666,652,697,744,720,740,769,733,767,826,773,728,762,747,738,740,778,774,761,735,726,804,728,780,761,711,777,786,783,784,749,760,746,709,708,726,694,680,726,735,726,715,712,695,688,751,717,739,697,737,698,677,756,709,732,728,712,705,723,698,753,754,731,724,877,879,875,910,883,852,868,871,887,832,867,856,865,878,907,863,844,874,862,856,873,845,835,841,873,873,875,848,855,857,860,766,778,790,792,815,813,800,787,780,779,806,787,771,789,791,772,808,800,806,781,802,774,753,778,779,788,812,847,792,779,783,745,763,773,715,734,722,770,760,725,729,760,719,724,748,743,735,725,698,706,719,753,727,739,718,770,754,731,730,744,754,740,667,652,592,623,625,635,661,607,614,685,632,638,639,645,639,623,658,620,616,639,637,649,625,622,631,614,647,652,664,644,611,587,575,592,599,571,599,578,599,616,582,608,601,581,568,589,619,606,607,593,582,603,598,576,602,579,594,603,599,582,598,565,627,623,630,632,618,619,597,616,631,629,681,643,637,649,641,647,593,585,590,630,609,610,647,609,641,582,642,646,631,628,618,726,701,653,712,700,720,683,701,692,754,722,703,706,743,698,697,675,717,702,673,726,757,750,727,730,724,632,734,694,795,698,991,955,988,1003,955,959,986,951,978,970,987,1022,966,999,986,961,997,988,995,950,960,999,1022,983,982,1048,939,975,985,1010,997,979,956,967,960,936,936,959,920,940,909,948,949,970,926,956,919,970,952,962,957,947,910,928,911,990,945,893,970,940,984,932,908,876,897,882,958,1025,947,859,849,909,887,989,923,943,881,926,942,959,949,947,965,908,987,897,924,894,912,925,908,905,915,784,760,776,791,777,770,693,708,759,780,870,756,730,809,788,786,802,779,739,801,826,805,811,692,767,798,826,718,693,799,799,666,575,566,653,724,657,684,707,706,708,634,661,638,597,643,655,719,614,647,654,635,652,650,648,626,628,722,680,640,616,629,1012,956,975,1020,953,991,944,964,960,972,1039,956,967,926,941,947,1028,983,965,986,972,1000,1022,921,989,973,1021,971,945,912,996,899,924,949,905,931,959,968,928,1006,934,952,918,960,913,916,922,860,1016,1014,957,963,956,951,911,940,923,939,928,964,978,921,759,771,717,743,762,808,844,830,801,836,749,805,751,755,846,756,799,778,763,845,793,793,792,771,818,784,786,776,798,841,798,642,621,614,629,619,634,648,614,644,597,662,634,627,675,640,652,637,622,638,599,586,650,583,668,629,661,644,597,669,663,634,600,689,640,596,631,674,658,648,657,617,584,583,646,648,566,582,648,578,665,575,644,599,619,675,648,622,608,643,609,680,577,840,804,856,832,853,820,811,817,864,850,800,787,845,793,868,844,892,837,875,853,854,769,820,870,802,893,864,850,829,837,856,684,709,716,713,733,679,699,726,693,646,687,740,705,704,715,712,702,721,719,711,700,738,691,703,670,696,703,695,765,730,740,790,733,721,749,785,743,752,866,748,852,749,795,767,740,819,786,771,920,753,715,785,714,864,774,688,812,809,745,718,785,761,679,698,642,709,675,723,649,703,688,718,711,643,680,708,687,729,717,704,641,689,676,706,706,725,693,765,620,717,738,690,695,930,919,851,949,956,906,941,940,936,929,937,973,927,916,960,938,962,925,925,931,1015,950,944,916,949,957,939,902,973,936,979,903,862,900,936,947,978,933,887,933,906,882,925,883,813,902,886,941,851,852,890,905,840,888,873,897,942,900,914,869,881,917,1050,1031,996,1114,1049,1053,1089,1043,1061,1010,1019,1062,1046,1035,1020,1019,1021,1064,992,1039,1019,1013,1065,1048,1021,1055,1046,1022,1097,981,1087,984,1001,1028,1086,1079,1078,1040,1076,1037,994,1059,954,933,1131,973,921,1024,1066,1010,948,1027,1020,1041,975,1006,1022,934,1056,1045,1017,903,854,805,907,894,894,928,916,886,821,927,849,864,812,889,865,877,892,917,857,907,855,886,932,803,868,821,898,874,918,896,959,742,802,727,756,780,755,764,733,739,720,745,747,770,719,775,776,768,759,773,755,802,749,749,756,736,765,769,818,747,705,689,864,812,809,839,814,823,790,831,817,820,821,812,836,810,830,808,807,855,788,761,795,796,849,847,847,842,833,863,815,776,875,870,832,843,839,862,855,833,832,829,897,861,818,849,851,856,880,853,862,837,807,806,888,870,859,893,835,846,857,839,851,861,951,991,969,1008,981,943,957,975,1003,939,973,971,964,970,973,1001,967,984,951,971,946,1019,975,998,970,979,993,986,1014,947,905,926,933,953,942,939,971,905,962,944,933,989,958,919,939,966,927,915,993,957,973,972,927,941,966,963,913,970,959,922,924,970,806,862,822,875,856,866,865,857,802,876,823,853,917,814,809,796,872,809,840,812,872,799,902,793,873,855,882,876,791,854,846,757,776,781,735,729,769,758,777,751,759,741,765,720,736,736,783,749,736,770,780,749,750,768,751,790,721,738,751,750,756,761,786,827,822,767,810,769,801,810,770,851,843,815,807,826,812,816,873,862,776,838,851,846,846,789,762,828,805,854,802,863,883,662,680,694,657,644,673,659,700,692,652,677,662,642,689,660,689,651,715,666,669,658,686,683,668,675,633,671,669,687,674,642,621,727,560,639,701,656,635,687,746,572,679,817,560,747,664,613,693,584,698,604,685,710,701,709,733,642,687,672,647,617,694,1003,997,962,964,984,991,977,975,958,1017,965,982,983,930,993,965,984,978,995,941,968,960,1014,962,976,980,1000,982,969,984,1002,961,879,952,937,958,942,934,959,918,932,963,919,926,913,952,935,949,965,939,931,965,957,938,904,920,916,963,925,908,945,906,898,858,877,957,843,937,925,885,860,880,986,915,880,929,906,868,896,861,896,859,887,944,923,943,861,905,908,923,899,899,873,922,962,949,917,952,934,943,965,960,958,930,951,901,984,937,943,986,935,935,904,945,970,984,960,953,958,967,947,900,912,914,935,938,900,917,918,943,973,931,928,914,917,949,942,909,919,951,922,923,912,930,970,908,934,957,931,944,871,955,909,880,935,820,861,890,886,877,892,897,882,875,864,860,866,879,890,880,851,876,834,873,876,893,875,864,868,867,878,866,895,878,901,893,806,864,797,818,810,769,839,817,874,832,824,764,827,817,826,802,851,864,775,857,802,862,798,832,846,808,775,778,861,786,812,702,743,649,717,741,731,689,697,742,744,717,725,707,707,737,726,670,737,730,712,730,709,736,719,766,689,681,724,745,709,757,736,723,783,718,688,791,746,743,659,757,730,712,714,719,777,720,741,724,781,695,748,749,782,702,701,721,753,711,737,683,748,684,693,717,716,696,721,681,657,698,690,721,676,711,660,731,693,684,670,731,731,664,748,702,691,678,670,689,715,721,689,689,708,745,688,690,744,693,737,722,694,692,743,736,717,693,723,697,741,681,705,738,706,753,775,693,736,735,684,695,725,730,682,717,657,713,676,651,657,637,677,675,682,677,618,649,694,720,656,712,704,672,650,680,681,589,656,681,744,673,682,680,670,658,769,863,805,786,815,851,840,738,817,794,803,747,868,824,772,859,853,673,862,844,782,784,855,815,766,766,751,755,778,782,692,1023,1043,1003,1045,1055,1052,1096,1059,1044,1035,1056,1007,1078,1076,1067,991,1089,1072,1016,1074,1072,1044,1057,1091,1087,1116,1033,1051,1058,1066,986,961,1023,978,959,1001,1006,992,950,1015,976,1004,1008,1024,1006,960,953,978,1018,1003,927,1004,1033,966,1008,1008,1019,986,1026,994,1015,962,892,865,873,910,856,909,916,939,871,909,903,873,896,859,920,891,913,961,897,895,889,874,862,894,944,848,877,882,924,916,867,953,967,952,980,998,903,963,943,998,1007,953,918,935,1011,982,957,954,914,943,969,950,975,968,978,964,876,981,940,984,970,1007,941,872,927,897,871,938,910,923,913,907,917,893,994,928,867,940,922,913,914,949,871,909,940,941,924,909,932,895,924,851,893,867,933,852,910,939,868,895,870,911,892,895,851,867,847,921,924,854,895,856,915,922,944,867,921,901,889,906,874,896,876,846,971,944,963,966,977,991,948,954,990,974,965,1030,995,981,1003,990,1016,945,983,985,948,948,943,968,942,961,961,969,947,935,940,931,943,942,904,928,967,950,916,911,892,929,959,907,921,908,949,928,956,951,1015,936,935,985,977,950,949,1017,932,919,952,990,930,913,893,970,952,962,907,918,934,914,906,888,934,901,966,941,937,879,931,917,916,961,901,957,942,851,881,898,945,958,916,934,921,898,940,947,967,975,936,956,950,959,931,925,908,948,928,896,1008,897,932,930,911,917,970,936,929,970,939,971,951,983,857,810,883,857,890,837,839,812,839,845,867,860,882,833,857,861,851,850,858,895,842,863,832,856,816,882,843,879,849,847,868,679,687,691,696,722,687,701,671,703,691,679,659,699,700,667,684,678,683,640,678,665,659,682,679,644,674,692,619,714,720,658,791,848,866,832,796,808,862,807,809,835,851,794,824,861,792,833,817,892,774,851,902,823,757,877,814,876,835,882,831,843,897,666,722,671,657,671,699,684,698,684,707,702,699,673,681,673,657,664,657,697,643,673,688,701,668,690,690,617,703,649,647,683,667,677,669,556,606,676,621,793,666,671,679,681,633,704,718,657,719,716,690,657,577,681,661,632,642,634,655,720,627,580,725,894,871,911,898,921,898,815,850,823,837,858,860,845,906,915,893,862,901,898,858,923,877,922,860,899,894,876,949,869,911,796,719,703,746,734,719,700,693,713,703,712,718,700,691,691,696,661,744,674,733,698,700,672,726,726,712,707,720,696,742,715,700,694,724,615,744,660,705,700,610,696,611,624,701,784,673,707,689,714,731,743,606,690,745,686,680,690,693,724,741,650,703,702,900,884,902,896,865,889,881,922,875,842,852,875,873,937,899,947,898,839,918,916,980,912,890,857,912,911,911,904,898,880,914,824,836,856,787,815,796,827,755,817,813,784,830,758,803,804,846,798,778,872,792,778,783,785,824,815,772,785,831,786,828,748,691,758,740,757,714,727,763,690,726,729,733,752,749,653,724,759,710,824,741,652,743,709,663,732,680,683,738,693,771,704,766,700,660,580,640,658,600,620,635,617,603,627,637,683,619,633,613,638,637,633,662,608,572,572,675,692,624,695,701,554,661,535,736,700,822,810,726,782,745,777,839,730,761,767,719,688,760,765,764,693,743,734,650,718,813,794,773,709,732,727,762,749,786,861,747,795,863,706,859,865,813,869,765,787,798,825,849,864,820,799,847,739,868,849,732,816,788,800,810,837,799,822,875,808,1071,1054,1032,1042,1067,1093,1023,1005,1040,1054,1037,1032,962,1035,987,1069,1040,1023,981,1075,1036,1024,1086,991,1122,1107,1049,1051,1068,999,968,1008,975,1000,1063,950,917,1012,957,989,927,922,973,949,935,946,931,940,1003,974,881,944,944,969,1010,919,985,985,1012,913,959,986,879,855,874,903,869,889,919,855,902,912,890,887,836,946,879,835,916,930,835,885,889,838,885,885,889,876,818,844,909,861,936,854,842,903,808,826,875,783,899,861,868,814,895,864,847,890,893,833,855,850,841,838,858,898,841,861,902,825,937,906,858,879,746,712,718,719,710,692,683,724,748,684,710,711,718,734,677,704,710,746,721,728,701,728,713,716,726,755,742,724,737,745,736,707,687,695,669,695,691,656,697,722,685,703,707,673,673,664,665,671,673,670,679,685,715,699,677,665,712,688,686,706,673,695,705,706,681,654,661,654,675,707,695,672,698,678,707,665,689,671,720,675,705,654,681,654,702,668,680,660,721,670,706,721,661,802,808,864,853,793,802,811,829,814,854,804,822,766,812,798,788,804,797,822,779,817,871,826,823,793,792,778,814,823,805,843,749,719,700,741,749,707,741,740,737,787,690,703,715,738,710,710,717,728,764,739,762,709,784,718,715,744,713,695,709,741,735,900,950,860,924,939,931,923,917,964,989,898,894,985,909,889,982,866,957,904,864,871,897,936,900,853,866,908,924,879,890,896,878,913,979,942,936,933,919,923,942,906,946,909,965,924,908,891,956,985,936,969,991,904,995,989,892,973,983,988,937,923,918,859,845,860,856,833,854,814,828,859,866,902,848,908,900,819,884,806,848,867,815,822,868,855,842,824,870,837,847,837,896,822,721,750,747,737,758,751,724,752,739,738,751,746,750,740,768,757,716,774,792,743,790,801,765,762,757,754,748,745,726,714,739,935,951,926,946,949,933,945,949,999,970,938,932,983,946,979,940,976,949,968,936,946,969,945,925,941,939,976,958,996,977,936,867,874,895,877,913,907,870,930,901,869,935,897,914,922,906,907,884,849,889,842,884,959,903,840,881,935,864,876,891,871,933,852,912,906,838,853,833,816,846,844,814,845,821,851,887,851,835,825,835,860,859,870,813,885,897,870,843,829,869,913,815,851,950,976,984,923,934,960,971,1003,995,976,954,966,956,899,957,951,993,946,970,957,948,962,955,976,963,988,910,971,993,930,957,905,901,906,868,919,897,899,936,944,928,926,887,903,958,883,940,904,956,877,930,862,882,901,879,881,923,891,946,898,915,949,810,819,792,820,833,849,840,806,834,827,817,810,822,810,839,833,838,841,796,844,835,832,851,810,857,846,824,846,817,817,849,842,877,904,924,915,810,849,925,923,913,825,925,893,851,878,843,826,928,885,916,943,881,946,892,844,901,847,905,886,909,876,965,897,894,933,968,870,927,869,911,952,915,951,959,951,900,922,934,832,926,931,902,919,925,962,893,845,924,900,942,949,919,800,822,796,802,825,833,798,798,803,812,817,819,794,791,789,791,783,818,819,809,817,847,794,804,803,831,786,808,807,831,819,730,751,741,729,742,743,748,710,733,714,739,751,747,733,727,752,726,712,730,739,749,750,710,733,723,724,722,734,758,749,704,670,694,671,666,677,658,666,641,709,687,661,654,644,676,677,691,724,707,697,712,692,663,680,693,673,652,699,697,666,698,629,660,634,654,668,634,662,671,634,642,666,663,663,642,653,683,662,632,629,650,684,633,628,658,663,634,617,632,652,652,642,677,765,736,706,731,761,723,706,739,736,713,732,731,751,741,743,726,729,732,715,738,737,743,773,723,767,754,754,710,729,727,699,799,777,773,782,752,788,795,807,755,745,774,766,760,750,728,774,810,735,784,822,776,769,758,745,760,741,773,734,701,782,785,690,685,699,708,710,714,697,697,728,674,672,691,712,697,690,684,701,684,708,693,696,691,719,712,700,721,682,708,701,726,693,834,897,906,875,896,875,867,869,889,921,878,925,882,916,853,909,929,913,888,899,865,875,914,886,931,902,914,861,901,880,890,843,878,867,847,828,833,866,885,845,822,914,933,894,836,846,859,842,852,848,870,906,864,940,904,850,877,881,863,912,906,849,770,782,737,755,739,721,695,726,759,729,746,751,724,751,752,748,756,716,747,796,770,790,778,758,744,760,801,762,765,767,802,923,913,929,884,865,975,957,898,914,895,891,872,908,907,928,921,914,949,931,915,899,902,887,894,926,921,896,863,904,870,869,902,910,881,879,819,860,878,839,919,939,875,887,923,869,901,825,908,883,923,887,890,855,924,952,897,920,859,873,905,916,852,772,881,844,807,853,869,811,861,857,942,813,763,850,829,888,768,780,773,817,819,779,817,853,833,788,909,837,803,829,884,786,666,670,712,687,637,666,644,662,671,692,667,699,695,653,682,670,687,649,687,649,673,645,664,684,695,657,646,677,669,660,675,749,736,668,751,723,599,748,721,707,685,728,796,600,613,653,683,732,753,788,741,659,700,739,730,781,781,646,688,765,678,677,998,1014,972,1006,959,935,919,979,969,985,1028,930,1009,978,974,982,947,958,999,968,966,955,960,994,968,966,994,975,1032,1028,1014,987,952,943,909,965,953,919,912,961,934,943,979,992,897,952,929,991,902,919,971,934,875,906,971,929,924,975,913,935,901,946,857,776,829,778,836,819,784,824,834,829,805,829,808,802,794,758,807,877,802,849,795,789,849,803,753,827,839,828,846,844,800,929,888,883,876,909,864,899,913,905,946,936,902,916,949,893,885,838,938,860,937,918,851,899,857,863,934,936,894,885,924,914,833,843,866,844,870,909,885,831,857,821,859,892,891,912,873,867,866,869,873,877,907,823,890,862,869,870,841,847,848,800,895,1004,973,996,952,962,1008,978,946,1012,976,1001,979,955,975,976,981,1012,972,967,958,1030,999,997,1029,1009,1049,1038,985,1026,978,984,954,924,1006,986,1002,985,948,979,1024,962,991,948,933,1012,1002,912,997,963,966,958,912,958,961,975,959,898,964,964,972,1017,972,950,877,941,916,818,929,900,896,878,918,910,949,908,961,894,890,928,869,884,983,885,901,906,883,919,898,933,970,894,889,911,786,780,774,776,756,812,789,784,799,764,793,774,774,745,814,753,815,763,799,815,775,806,770,793,752,793,757,741,793,829,830,724,712,656,715,674,700,692,712,677,721,702,707,709,709,684,697,720,684,685,702,688,716,730,691,687,672,678,685,643,719,720,912,863,920,855,889,864,902,830,895,827,876,830,854,918,871,799,857,871,888,860,808,829,790,877,825,868,898,811,905,811,873,908,869,860,937,915,862,912,915,898,894,872,878,889,895,874,908,963,891,874,861,909,892,899,897,903,898,871,914,874,897,916,910,965,902,996,946,954,932,978,953,974,936,1012,954,898,929,968,936,941,944,993,927,964,965,967,1002,1012,970,1002,959,886,997,715,756,705,785,732,727,735,731,690,781,750,723,663,707,679,680,733,751,794,728,743,799,791,770,740,768,782,787,706,715,721,688,599,683,625,639,557,676,700,676,748,738,652,780,677,674,648,637,666,724,707,774,671,700,686,815,677,749,676,704,730,709,955,922,1006,1049,1032,1026,1002,980,1006,991,1058,993,959,952,1060,1013,1016,957,985,1006,1050,978,1015,934,1061,985,923,993,1034,970,978,1009,951,953,1031,1032,1066,957,973,937,955,1034,976,962,961,992,1000,989,943,1026,943,1005,975,958,1009,997,921,929,946,1023,981,1004,803,899,909,867,842,904,828,874,940,946,918,805,904,865,897,886,932,845,820,977,925,925,784,836,864,826,885,801,900,873,869,712,733,696,732,677,684,723,682,726,648,664,696,688,707,675,757,641,702,720,719,708,718,720,650,708,713,766,718,694,674,678,664,631,660,643,613,610,626,647,654,613,660,645,588,659,648,605,642,649,640,636,609,684,621,606,667,642,643,611,626,637,652,670,662,722,729,680,680,670,735,673,727,662,703,739,682,701,732,697,678,693,705,733,689,713,665,676,687,729,699,719,713,678,716,741,702,752,716,696,732,700,686,767,737,728,740,724,745,725,721,728,683,644,724,753,746,727,750,732,715,720,702,735,708,684,684,677,682,699,694,658,709,670,633,687,691,678,687,707,688,683,662,686,700,715,703,708,671,677,654,692,695,677,700,688,664,671,620,640,668,624,674,633,628,664,657,632,660,663,665,644,615,601,609,663,605,644,636,631,658,620,655,666,638,665,657,587,578,626,613,635,617,600,615,636,564,606,573,586,631,580,582,597,600,595,573,574,575,611,585,592,609,613,566,613,582,633,610,576,596,605,584,566,616,601,578,599,591,566,555,588,562,539,588,578,597,591,598,596,602,574,586,558,548,593,574,553,587,556,654,652,644,588,602,623,613,671,620,625,610,600,612,603,620,621,550,591,643,553,666,545,578,592,611,615,667,635,632,609,847,866,862,880,826,874,831,881,821,882,857,825,789,849,824,868,814,868,880,833,864,919,845,870,876,829,835,829,888,865,832,781,756,756,773,768,766,761,751,772,799,771,780,787,759,757,754,779,754,730,744,742,762,747,776,743,736,759,768,774,733,754,737,686,694,758,724,751,720,707,721,696,725,743,694,701,721,735,737,697,711,697,675,746,720,709,713,731,698,719,700,715,701,685,671,714,636,661,657,673,680,706,657,677,676,653,676,690,653,668,684,685,696,699,669,664,668,675,678,695,694,718,677,662,674,677,672,634,658,660,684,676,670,696,667,636,659,687,700,654,649,694,650,650,640,678,666,664,672,645,622,688,618,677,655,657,630,633,639,660,629,632,648,639,657,639,653,654,653,627,652,652,636,652,649,644,663,637,647,638,641,649,656,624,643,624,627,643,620,631,634,632,649,654,663,636,634,635,657,662,642,675,601,635,655,646,634,648,631,599,622,673,640,645,651,667,654,736,696,704,670,670,693,698,637,679,695,682,690,694,680,712,683,655,674,709,701,714,725,704,715,672,695,693,689,651,678,713,711,702,750,704,732,698,772,713,732,705,734,749,745,737,732,746,728,702,743,708,717,725,704,729,742,731,710,781,697,722,742,659,720,677,679,714,671,677,674,676,630,683,668,672,667,657,706,703,650,661,672,685,694,692,668,669,641,698,645,682,643,684,666,666,651,641,659,613,657,651,648,673,653,657,665,649,656,659,637,649,665,667,658,648,652,686,694,636,648,648,634,624,655,755,757,775,744,759,765,763,788,777,803,764,768,756,767,781,766,772,784,771,790,776,758,751,730,816,793,767,773,758,760,792,639,689,672,678,642,650,623,652,659,660,679,670,642,683,683,661,684,669,668,678,672,663,675,686,662,676,669,658,680,651,645,666,694,642,669,623,687,650,654,674,663,648,651,684,668,692,711,672,693,679,695,668,661,667,616,654,675,697,653,693,669,680,641,676,716,665,696,674,661,667,645,650,639,616,654,642,658,659,695,691,629,672,682,660,661,658,693,669,646,659,656,710,703,817,758,857,778,807,819,797,785,775,851,731,755,857,799,819,758,733,783,809,765,821,800,813,728,788,837,807,817,837,751,805,1013,1018,1074,998,989,990,1032,964,1002,1007,1022,1001,1012,974,976,1000,1032,1040,1007,997,1033,1004,1011,1002,1009,955,1031,986,969,1001,1006,946,996,926,943,1050,1005,927,966,951,993,983,1035,1035,1016,994,1057,923,1030,932,987,1015,960,989,1001,978,977,1018,958,952,1001,973,905,887,829,843,838,880,888,881,871,803,847,852,786,861,858,790,894,835,876,889,887,844,780,849,829,835,847,939,811,853,863,752,782,775,730,790,789,757,770,747,712,771,768,734,759,737,742,757,761,761,748,763,775,751,768,709,714,742,758,713,788,813,765,725,765,746,764,783,738,700,744,732,757,747,728,734,714,776,726,749,736,756,759,797,734,738,758,745,718,719,743,738,728,710,704,727,738,719,683,706,729,681,720,676,688,724,692,747,710,706,691,691,701,730,704,732,696,721,733,732,697,731,706,691,666,702,634,671,664,703,691,726,718,673,686,653,632,654,689,689,692,643,664,700,677,694,715,675,685,704,668,696,686,648,684,944,949,1007,905,826,940,936,941,972,966,864,960,1012,966,933,783,994,878,980,863,887,893,934,911,969,872,992,870,975,850,862,973,975,977,976,977,970,939,942,974,918,912,944,921,953,941,949,912,990,1022,974,912,953,917,996,953,955,941,938,973,955,939,790,828,743,806,753,831,799,838,799,798,820,830,836,783,842,740,792,798,794,789,807,796,748,772,800,753,790,779,733,777,828,901,887,917,885,908,895,938,943,918,916,959,887,899,923,888,933,887,912,898,848,938,868,883,937,890,882,948,928,924,897,941,877,899,848,906,857,971,874,842,866,866,850,897,850,907,902,869,866,887,887,926,832,881,803,866,865,843,852,921,872,932,862,880,887,906,869,850,919,853,822,901,891,907,756,877,856,789,793,843,867,857,824,881,814,879,799,816,869,849,848,834,876,782,755,723,753,726,761,739,738,761,767,768,755,733,777,758,774,738,752,765,699,768,731,764,748,751,730,740,761,739,770,766,787,663,648,661,661,661,682,647,667,648,664,691,692,660,665,696,668,677,674,650,674,656,672,645,669,653,649,635,668,653,655,646,678,727,716,705,713,746,686,716,757,717,727,715,747,680,712,748,707,699,717,717,686,661,729,719,705,682,724,722,709,710,708,751,762,778,744,758,722,769,751,752,764,734,777,737,775,791,739,753,758,747,763,763,759,772,717,776,765,763,750,732,727,760,716,681,726,716,694,703,703,672,660,696,697,704,677,715,681,690,688,739,714,709,747,695,713,757,685,696,714,724,715,681,709,676,656,629,652,663,677,684,648,662,649,632,656,640,667,631,618,648,704,648,607,673,632,642,650,641,655,624,631,643,669,647,651,638,668,614,626,624,599,621,546,595,624,642,622,588,644,656,655,628,662,636,587,620,635,619,667,631,613,613,622,618,704,916,911,929,924,893,874,946,885,907,928,891,898,905,878,841,890,909,900,909,863,898,940,911,917,927,914,903,890,877,920,823,809,800,754,827,811,818,779,775,796,815,814,802,714,802,833,802,788,769,791,798,772,841,761,789,789,790,785,778,791,828,788,745,717,718,728,733,734,736,693,725,738,712,731,725,707,751,736,715,718,726,723,715,719,747,782,719,731,737,754,696,753,715,706,727,654,632,693,683,683,659,676,652,647,690,647,675,685,662,681,662,639,651,676,705,632,684,680,669,681,658,697,675,648,648,645,672,671,634,636,623,654,653,652,641,638,644,657,650,689,650,679,661,639,654,667,638,636,651,642,651,637,661,646,682,619,648,699,651,650,656,675,694,634,698,674,696,643,666,657,675,651,688,643,645,647,676,649,654,619,662,650,683,677,673,656,770,779,766,763,769,767,815,869,775,808,749,805,806,761,750,845,727,842,784,813,744,716,720,792,822,791,721,811,786,864,797,989,1007,981,1005,979,980,1011,942,1006,1010,1009,981,1007,992,975,970,1041,947,984,1049,1001,1030,993,983,1013,956,973,1005,964,1012,945,844,871,832,842,887,846,911,854,819,875,814,845,869,917,887,837,869,862,842,815,838,901,860,822,895,891,882,878,848,867,867,804,800,796,813,791,755,819,801,778,784,763,764,774,770,779,775,776,757,776,807,781,792,776,777,783,785,776,778,807,801,780,822,781,862,808,859,798,800,854,839,810,882,846,840,828,813,802,885,831,879,816,857,858,864,838,845,804,844,783,810,793,838,730,784,758,745,752,768,756,787,728,804,749,781,742,731,736,751,756,776,743,778,736,730,732,739,705,691,757,745,750,738,735,695,689,688,696,712,716,674,720,695,717,694,713,699,718,709,732,742,692,707,696,725,729,693,703,692,703,702,686,711,715,683,717,691,757,676,709,690,691,663,700,707,690,700,713,702,732,704,702,748,695,688,711,695,688,709,712,687,712,699,720,684,695,745,718,768,696,747,753,720,766,730,786,747,732,742,791,737,801,722,752,724,715,719,760,711,744,762,767,803,772,784,755,748,954,921,977,926,901,949,921,924,922,927,935,848,949,939,965,940,925,917,913,906,920,930,917,932,954,925,948,902,932,947,941,811,836,806,828,835,841,830,844,801,868,840,809,802,853,833,870,773,821,795,824,835,798,788,820,828,867,841,845,828,823,881,723,726,721,730,723,727,736,773,723,751,689,695,739,755,736,766,747,755,689,717,757,698,680,719,737,756,701,762,719,716,748,733,669,725,688,727,692,733,717,683,730,736,726,699,714,730,746,680,713,734,763,712,719,738,700,689,710,716,717,717,728,727,776,792,761,791,798,774,773,771,769,756,780,789,823,767,736,732,772,748,778,801,730,786,793,761,785,778,750,797,754,799,769,716,720,721,720,735,719,706,715,746,731,739,721,727,725,723,727,743,754,746,710,725,692,722,729,727,724,735,736,730,729,707,718,787,791,830,715,779,763,753,832,762,719,763,787,799,762,765,771,785,761,813,799,784,759,731,754,763,806,812,718,785,792,757,757,749,742,747,747,752,763,742,741,737,762,726,775,762,733,729,730,752,712,740,730,736,760,724,758,731,735,707,745,752,828,896,888,848,818,843,817,932,906,946,903,855,817,814,916,848,886,859,803,926,841,817,894,899,853,890,853,867,921,917,911,789,753,744,782,778,800,748,738,800,756,763,771,792,711,725,712,766,728,766,777,751,758,767,783,731,747,749,745,750,728,769,686,671,715,672,694,697,696,665,706,682,697,690,724,713,714,725,682,686,698,714,727,697,697,723,688,709,690,703,716,716,693,733,711,724,729,732,737,745,731,720,707,730,742,713,742,725,716,731,730,759,740,704,700,759,743,749,734,732,742,717,766,738,679,678,700,685,709,682,676,685,672,684,704,664,716,700,699,662,682,681,671,688,675,670,682,684,689,706,692,690,659,672,686,687,693,699,675,688,713,693,694,706,707,701,681,699,696,683,696,724,702,716,709,670,705,669,692,679,688,680,696,684,681,705,690,668,669,665,674,660,660,656,693,661,673,672,662,682,640,642,680,683,691,659,678,677,665,655,667,713,665,666,679,670,674,672,701,679,702,695,672,676,672,703,699,731,707,677,709,725,695,679,681,723,685,702,695,724,710,694,684,669,656,684,702,666,919,943,881,888,894,859,881,901,853,870,908,905,886,920,824,915,884,929,916,872,877,852,894,897,844,865,908,891,895,885,901,791,838,816,837,824,797,775,841,773,778,751,803,853,778,780,791,759,777,779,831,798,787,798,809,768,809,794,798,798,779,783,774,757,751,758,692,765,747,757,739,748,760,742,756,753,763,745,729,778,748,753,729,761,736,758,750,759,767,751,740,776,757,757,775,739,776,798,778,751,741,756,730,740,709,756,758,755,798,760,779,778,770,765,715,735,753,759,764,739,734,754,798,741,732,712,701,749,683,754,700,695,736,735,707,688,695,702,741,717,739,731,738,699,678,704,730,701,755,702,720,744,721,715,736,677,737,684,709,677,722,687,725,729,721,711,707,686,694,730,733,707,706,694,732,689,708,704,719,701,727,701,719,687,680,719,729,721,735,701,679,712,713,724,726,708,726,718,726,737,735,752,734,731,737,734,721,730,742,755,719,711,724,735,739,724,723,678,680,696,701,724,711,697,683,716,693,696,683,704,676,675,702,716,674,703,666,679,674,692,689,689,681,691,690,664,677,685,694,704,675,682,704,700,675,699,692,667,675,673,656,661,683,681,667,687,696,667,713,658,701,696,675,677,685,709,714,720,686,668,679,692,689,682,686,653,703,661,647,667,676,701,693,681,715,689,684,695,700,690,703,686,683,701,702,646,688,690,690,712,689,753,734,731,783,785,752,782,747,769,760,740,737,778,773,754,813,771,763,713,727,765,765,736,790,744,725,778,779,747,735,726,701,715,736,746,729,723,705,727,744,737,702,749,735,731,709,747,701,734,732,711,736,767,762,756,717,743,726,741,732,727,801,797,794,833,808,770,787,814,793,800,809,791,807,789,794,777,772,813,833,867,828,761,844,829,811,805,821,799,782,835,774,702,698,707,705,712,690,661,652,648,708,685,718,700,716,718,691,727,689,725,686,677,687,683,714,708,713,652,717,717,676,701,803,832,873,864,882,831,806,839,806,864,802,761,869,848,834,893,852,901,829,850,833,891,822,865,801,879,852,849,827,828,833,903,839,882,830,879,858,886,872,871,839,904,874,902,817,866,832,841,873,936,895,892,848,912,826,892,881,822,861,850,860,825,809,853,781,740,814,775,798,785,761,778,810,816,785,816,783,796,807,789,801,824,763,785,779,785,752,804,804,806,805,745,779,760,792,750,741,731,748,748,732,761,748,755,774,775,754,745,734,743,732,777,759,717,753,718,791,769,772,799,759,765,716,725,859,811,863,874,860,820,861,823,832,844,856,833,827,865,824,833,877,874,854,815,834,864,860,808,865,858,843,805,844,831,850,773,765,761,754,773,785,771,757,769,747,710,755,742,770,760,750,737,743,746,760,719,748,755,735,756,747,736,774,714,780,777,900,912,894,848,954,932,900,906,858,907,862,911,949,900,911,921,936,914,853,983,953,903,942,947,910,902,895,865,907,857,893,813,796,817,808,780,763,780,788,759,758,787,764,743,788,795,724,791,768,806,787,804,751,825,800,799,761,834,769,793,753,782,751,767,786,759,723,739,763,762,754,717,750,781,755,768,820,691,723,725,755,799,791,744,764,763,772,727,800,737,767,777,711,818,851,832,831,854,837,850,781,831,799,877,813,805,825,826,869,771,861,826,802,772,838,769,864,838,808,856,830,864,810,851,718,714,747,767,757,741,724,760,726,763,749,738,715,716,759,723,724,748,703,751,727,712,745,758,799,740,727,737,730,772,733,704,712,744,720,722,714,732,705,754,740,764,718,755,763,761,790,766,748,761,734,736,758,752,767,744,780,769,809,757,728,774,697,699,704,716,693,727,708,715,733,695,693,735,714,710,729,684,689,694,712,697,718,718,747,687,727,697,698,740,696,716,705,704,721,721,727,743,667,730,728,712,738,723,703,717,733,735,726,701,686,714,721,701,732,711,731,713,699,731,737,748,718,700,810,832,848,747,818,812,829,844,850,779,825,810,828,834,792,829,771,816,821,800,827,799,833,849,765,816,769,846,820,786,848,829,811,741,769,775,781,796,770,756,766,798,774,780,812,745,791,750,763,806,728,789,765,777,794,786,760,777,800,777,805,762,672,708,702,655,688,701,734,736,675,707,688,687,722,728,674,688,668,645,693,704,677,709,718,721,662,629,705,672,688,662,719,715,666,667,687,677,673,688,669,694,672,682,642,666,646,656,700,676,680,662,678,670,658,673,702,669,667,671,660,693,700,677,659,642,666,637,660,656,645,637,664,641,638,655,651,656,646,651,652,644,667,659,651,662,658,663,647,664,644,643,643,655,666,655,678,670,682,668,666,689,665,690,667,657,651,684,667,685,656,683,660,667,660,698,672,679,649,677,661,662,657,659,664,664,650,665,649,642,637,653,634,669,667,680,648,611,652,649,671,652,672,658,657,656,634,657,651,666,635,670,660,641,651,658,644,602,647,644,657,635,652,628,631,630,662,639,643,623,619,633,622,649,622,607,622,626,641,620,617,601,654,634,643,622,605,643,657,686,617,632,625,643,660,657,642,643,664,663,640,661,695,643,612,684,624,656,659,683,670,627,681,648,703,655,644,652,642,806,756,799,779,782,772,804,787,769,813,801,811,783,818,744,761,770,755,835,818,739,837,816,793,778,791,798,781,787,756,778,712,718,742,694,707,718,712,729,732,729,732,701,691,699,732,718,715,695,732,713,729,712,723,742,695,724,724,715,682,752,788,967,910,920,832,915,923,866,899,867,918,911,887,898,893,888,868,932,929,923,912,898,909,914,959,834,899,921,929,890,895,866,851,831,840,812,835,784,838,821,805,839,838,795,832,851,844,805,793,822,830,812,805,811,815,858,786,818,846,826,790,833,803,718,741,787,727,726,703,737,754,755,746,749,742,731,705,740,727,752,728,784,743,736,738,735,739,717,723,733,761,746,737,728,752,771,783,781,738,806,786,806,805,764,739,757,779,760,776,726,762,744,744,807,784,778,774,748,725,722,771,783,754,774,772,764,770,738,764,754,746,755,772,745,759,757,749,724,757,760,754,783,775,735,725,772,742,778,764,765,796,779,789,741,746,768,741,738,661,712,733,688,723,713,713,718,723,694,728,735,711,704,710,712,714,700,675,707,707,717,724,688,744,684,743,703,702,694,690,676,646,675,632,674,698,674,659,668,657,701,644,655,676,694,672,601,683,675,662,677,671,665,702,671,655,694,680,651,670,615,651,642,636,580,611,624,611,650,631,606,586,595,613,624,606,619,618,625,586,596,628,604,637,620,634,640,586,632,634,647,625,588,624,602,631,619,612,656,571,614,594,615,628,646,634,593,599,657,632,651,620,662,635,649,630,603,610,592,602,600,758,727,806,767,795,744,821,857,814,799,768,786,762,794,776,788,834,815,812,788,783,793,809,837,774,827,787,815,771,747,697,614,663,683,647,662,650,642,677,671,659,672,638,657,667,687,645,670,675,671,676,658,625,674,654,649,688,672,668,668,672,659,673,669,648,679,675,721,688,682,719,684,636,724,709,613,733,731,684,661,649,664,684,677,714,643,699,682,639,659,661,700,668,761,790,762,812,768,807,806,805,790,757,807,783,799,786,788,789,804,811,777,778,770,797,823,820,826,815,801,790,822,760,771,780,773,733,794,744,777,773,772,746,782,763,748,742,770,711,717,741,750,758,717,753,778,746,772,760,716,778,788,776,754,757,710,712,714,705,740,708,675,730,729,736,715,747,710,735,781,763,668,724,750,731,723,710,755,694,731,700,767,721,701,715,691,666,679,705,707,712,680,693,683,684,683,664,684,658,666,676,653,689,662,677,657,655,682,695,690,646,674,651,674,684,678,692,698,730,650,759,728,699,632,782,735,734,736,637,687,688,741,709,766,625,726,723,721,766,628,732,599,694,724,683,757,590,677,1037,1010,1031,1007,1022,1010,1011,1022,1013,994,989,986,1035,1010,1015,986,1010,1010,953,1012,976,1040,1031,1002,990,1018,1000,1018,1053,1048,992,1009,1040,984,949,916,958,980,983,973,967,1014,959,973,973,942,1001,941,963,974,931,938,958,968,994,1002,962,944,964,1002,951,973,913,908,900,873,867,873,914,916,892,924,876,891,954,876,940,883,909,903,904,902,880,955,909,910,900,879,889,921,956,901,887,773,815,774,752,771,759,741,786,766,776,802,779,766,790,786,766,760,741,754,742,801,778,786,775,807,750,795,770,798,748,792,679,711,694,712,673,707,697,699,716,664,714,720,693,704,699,726,717,742,707,689,689,696,689,712,707,729,687,736,735,715,703,938,941,995,1024,933,989,950,893,997,986,926,992,960,935,914,878,1050,895,892,925,949,936,968,896,943,944,882,971,916,944,952,965,944,984,905,950,922,922,952,937,972,916,961,922,969,946,942,919,951,932,927,913,906,910,906,931,901,942,958,940,954,941,803,815,789,790,766,763,814,755,755,795,804,781,814,787,809,790,791,787,793,810,797,793,811,810,763,799,822,791,815,780,760,672,619,700,672,669,665,672,603,651,707,649,710,686,661,719,719,659,680,723,736,662,681,675,662,688,654,660,666,696,688,673,671,615,669,632,633,645,642,667,625,654,623,636,634,616,612,627,643,643,599,645,624,617,645,660,667,638,608,619,648,634,648,714,715,723,736,804,766,789,736,746,737,749,701,735,780,688,736,735,716,788,711,747,857,758,750,724,727,725,738,691,763,725,740,705,735,750,683,646,731,740,697,668,704,710,759,711,704,727,719,746,717,750,711,692,709,728,698,705,675,714,711,701,695,678,613,679,646,623,654,635,669,647,656,645,690,683,679,659,618,625,670,642,615,683,662,615,645,672,665,646,658,616,668,664,600,602,592,593,597,589,624,607,648,606,584,604,619,601,595,615,602,610,616,611,562,570,577,630,602,587,592,574,607,615,599,614,558,575,589,575,578,591,595,577,557,598,574,599,617,587,591,593,592,580,566,585,596,578,589,575,572,553,578,557,628,596,587,601,579,623,579,615,582,568,581,563,581,595,554,582,586,587,584,598,594,606,564,590,608,603,600,560,577,581,593,582,580,595,585,606,599,609,593,610,609,582,588,598,554,608,585,624,602,607,608,586,571,570,611,598,628,624,605,603,602,633,641,591,633,608,611,657,620,652,609,661,630,628,633,622,624,614,636,609,649,642,610,624,630,615,629,605,583,645,566,616,613,604,599,820,734,742,692,723,657,736,737,625,699,658,645,684,726,687,696,687,638,708,647,638,724,765,628,737,726,697,692,747,683,687,939,956,952,954,944,923,910,910,896,909,924,944,901,945,952,959,926,954,954,971,954,943,943,958,928,920,914,914,941,898,951,936,916,919,875,921,856,913,915,921,915,941,929,890,945,883,936,907,908,893,879,862,903,925,864,877,885,901,899,869,922,879,797,818,783,803,824,827,857,783,826,812,800,778,884,860,827,812,841,811,824,836,796,804,805,826,794,849,821,864,818,810,838,639,647,652,677,662,621,655,661,659,654,662,687,668,698,711,655,655,666,707,660,731,658,685,645,668,650,699,653,669,650,679,609,583,593,612,623,590,628,568,624,594,586,581,602,587,538,598,592,566,576,603,571,597,567,563,594,564,598,589,544,583,571,635,638,606,584,572,633,593,623,602,614,607,616,593,637,640,587,599,591,608,606,636,629,626,635,610,609,645,614,639,603,628,689,617,669,686,668,665,656,671,687,684,678,705,702,654,670,665,633,669,665,670,658,646,679,673,691,677,682,671,626,673,657,645,633,669,692,647,630,635,658,655,646,638,635,662,641,666,632,626,639,641,648,658,638,691,652,627,652,658,635,642,629,642,654,661,641,635,663,647,667,656,658,644,624,637,648,663,651,652,649,648,631,647,661,636,615,685,673,650,627,652,669,628,627,643,632,636,631,620,668,635,624,632,623,637,638,647,615,622,653,643,649,630,665,646,637,635,630,639,618,607,625,641,651,616,651,641,656,674,649,664,652,656,655,653,679,664,649,637,655,648,645,624,678,661,656,646,666,654,644,665,652,644,646,639,672,710,681,633,667,718,680,673,692,700,648,685,667,669,685,664,666,733,720,630,714,619,739,688,631,612,683,728,691,725,712,692,898,929,905,840,770,843,884,889,854,923,893,872,884,964,925,877,875,822,878,910,869,965,888,844,840,895,843,904,847,936,858,936,967,1008,929,993,869,891,943,930,955,921,921,942,1013,939,907,898,984,915,1032,940,964,929,1003,931,1011,934,887,966,945,950,916,847,858,928,833,869,907,905,806,879,843,950,952,846,949,779,806,907,900,823,902,779,853,930,756,830,878,898,845,924,866,767,753,790,793,764,764,822,760,755,733,784,809,813,813,791,747,765,794,794,735,795,725,827,869,798,805,803,782,780,732,809,672,680,688,707,732,682,690,685,725,708,705,710,700,688,699,686,713,671,691,727,699,660,726,695,705,663,700,693,690,696,690,675,648,705,691,664,687,699,696,672,685,697,672,689,667,680,674,698,691,670,708,654,706,687,678,690,674,694,657,695,694,673,738,736,733,742,715,776,753,764,748,781,768,749,703,741,750,770,721,732,739,753,768,730,669,780,752,754,710,772,759,748,775,744,736,733,747,755,733,710,729,744,747,730,713,770,710,743,745,748,776,767,746,740,761,751,681,718,728,767,747,699,732,716,708,672,684,644,656,663,680,678,681,689,659,691,661,692,679,650,647,647,699,673,678,666,639,632,642,673,678,640,657,690,704,681,708,657,654,700,639,657,720,697,664,700,670,713,701,684,677,655,714,699,723,666,674,642,692,696,653,640,714,667,663,645,621,683,629,585,724,651,619,668,651,516,677,686,612,641,622,676,680,606,708,683,621,569,689,594,647,668,639,663,716,631,689,916,938,948,934,941,965,950,918,903,940,978,939,911,914,915,920,927,944,966,944,925,924,947,930,950,924,947,891,955,943,938,882,840,900,853,879,811,853,861,866,881,886,846,854,839,837,884,867,905,912,848,856,839,873,838,867,860,812,924,846,806,861,782,779,812,770,788,748,787,795,770,823,815,798,779,796,772,781,792,801,773,783,805,786,811,782,787,791,794,772,796,767,780,724,729,773,758,729,773,728,732,710,761,750,731,716,705,748,719,726,746,722,725,750,738,715,761,747,721,735,729,723,733,756,693,681,654,645,701,694,666,674,666,657,676,613,678,672,670,664,696,698,690,656,679,674,631,649,655,670,677,666,629,678,674,660,654,667,654,629,640,640,645,651,655,673,641,645,633,644,644,669,647,636,648,652,636,630,665,656,646,646,660,661,666,658,671,671,663,710,667,653,667,683,696,690,672,690,697,687,689,684,680,692,680,677,652,688,689,633,695,707,657,679,688,694,675,664,638,683,665,667,645,674,637,641,678,635,686,660,647,668,638,640,659,629,635,661,618,658,670,640,666,651,672,641,657,666,633,645,631,644,653,631,609,627,639,619,641,634,608,624,666,613,637,650,643,631,655,647,631,622,625,613,618,661,607,616,645,568,601,599,567,592,588,579,603,588,595,568,570,595,584,598,559,586,591,613,609,612,611,600,599,578,565,584,596,599,565,578,599,600,608,586,585,604,595,602,599,594,580,614,590,611,594,608,603,584,594,593,600,600,595,577,635,578,586,567,589,611,594,623,590,634,588,618,612,643,594,606,620,615,615,620,598,632,639,592,634,599,654,610,641,595,595,617,635,610,612,625,614,603,641,654,668,656,704,624,644,661,659,664,666,643,612,664,632,610,654,651,624,688,616,656,616,636,672,636,650,624,656,585,626,608,627,606,646,607,645,563,626,636,615,579,629,596,588,617,624,627,603,626,634,597,571,649,610,563,592,627,592,630,650,650,678,654,634,661,660,667,647,697,657,637,680,658,603,660,616,642,616,608,654,621,685,666,687,643,638,647,692,685,691,646,682,784,809,818,813,821,888,814,871,876,806,809,825,844,801,865,827,800,845,818,848,790,854,804,832,829,814,825,811,791,853,823,891,849,865,861,903,874,859,858,843,863,847,821,902,855,836,861,846,886,867,872,885,891,879,823,871,835,822,828,851,852,851,786,775,731,745,772,715,762,815,761,733,778,781,783,764,798,730,806,749,739,742,768,794,783,731,747,743,756,778,776,758,789,725,707,731,729,723,726,721,727,730,729,687,705,704,696,688,709,704,689,730,673,685,708,692,718,754,717,717,691,719,687,725,688,684,658,678,698,663,673,709,765,630,649,731,744,676,672,670,666,670,676,698,696,632,731,696,705,639,687,646,711,673,675,936,976,959,1037,997,980,1050,999,1011,968,1013,1025,1005,924,1038,1012,944,1036,974,918,1024,1001,1030,958,1029,972,944,1029,1069,970,985,913,953,927,919,976,961,971,989,969,908,967,978,926,893,951,933,892,947,958,950,990,913,971,935,998,973,970,932,933,913,947,879,873,900,867,884,898,846,871,848,869,878,900,866,845,913,866,852,901,813,835,886,868,924,889,858,873,908,873,940,836,869,766,759,774,780,757,760,772,713,738,777,745,751,751,773,760,762,785,769,785,737,758,764,763,760,771,771,760,771,755,730,753,702,714,742,691,679,714,673,722,697,750,683,697,718,701,712,668,691,709,701,688,736,704,729,712,672,717,739,700,701,710,707,631,664,655,695,679,649,672,696,641,675,639,652,658,667,648,656,640,656,649,657,653,675,655,629,663,619,652,652,657,654,658,632,627,647,671,646,654,643,664,661,620,643,635,664,647,649,638,642,663,652,649,635,654,656,655,623,634,651,624,677,659,604,641,665,629,661,637,637,657,641,653,674,658,677,652,645,676,676,643,671,655,647,636,619,651,647,665,659,674,671,689,657,669,718,657,686,679,681,679,677,673,659,648,649,658,670,665,660,653,667,643,650,663,677,672,652,660,649,660,633,673,654,677,654,701,679,676,688,683,693,687,707,641,651,705,682,700,687,695,664,680,607,683,688,705,693,665,667,657,713,697,681,655,712,725,819,833,851,840,814,813,775,798,867,816,835,830,793,806,832,836,872,831,793,873,835,808,752,797,807,798,855,850,791,827,807,727,705,706,713,707,696,715,720,756,733,713,710,670,688,704,690,707,710,749,698,721,691,684,724,736,720,683,756,727,712,723,931,887,952,959,864,918,874,948,822,894,903,916,852,924,891,890,913,927,921,909,942,928,927,862,913,908,962,906,932,895,919,900,907,898,885,857,856,880,881,865,878,869,829,856,894,907,902,904,852,851,837,907,863,918,859,847,882,881,949,932,954,885,811,849,803,823,820,800,832,825,826,771,815,809,851,828,846,802,845,800,822,833,793,815,871,777,806,828,813,796,828,823,836,719,713,723,731,755,727,733,721,747,726,716,749,743,757,765,737,720,772,723,739,757,705,738,737,715,732,745,721,725,741,765,647,632,604,593,598,685,596,672,612,625,596,625,662,663,641,661,665,607,649,641,651,646,638,610,598,620,605,631,633,623,671,667,659,622,626,645,623,688,652,614,616,663,640,640,667,619,579,646,638,593,611,605,616,651,643,640,659,645,599,635,643,678,675,631,668,700,745,767,789,707,677,710,670,795,753,696,754,730,675,682,654,713,689,618,688,671,792,734,736,612,699,674,720,1016,1020,991,1045,1037,961,1025,978,1010,993,1021,1017,1017,1000,1041,1011,978,1037,1018,964,1001,1034,970,1043,994,992,1010,1042,1008,1038,994,1001,1017,932,974,998,1025,989,970,989,972,1059,1012,1022,965,997,954,967,872,949,1030,1000,991,969,975,933,1006,926,944,962,966,1012,819,875,810,811,803,823,890,809,848,822,842,887,817,794,804,818,805,770,826,912,742,871,838,742,768,817,816,797,820,822,818,775,668,754,763,705,745,641,784,750,678,685,708,651,678,692,666,703,696,685,675,738,761,729,650,754,665,731,687,719,688,694,967,978,937,896,965,994,968,992,960,993,987,979,954,942,967,992,986,1008,950,958,990,955,890,930,978,1015,947,1039,1009,956,1013,1001,975,983,886,942,945,969,942,962,1056,945,1023,963,995,964,912,899,1028,929,968,918,988,987,961,978,885,979,1000,981,926,928,820,826,776,778,878,768,745,764,742,795,728,713,855,848,842,698,852,799,894,789,843,801,812,781,823,812,886,927,867,865,793,739,735,669,712,749,715,710,744,719,700,713,709,682,715,677,708,707,741,722,698,723,719,683,704,685,679,733,696,700,731,721,689,682,703,719,698,671,743,696,677,664,674,700,688,699,699,704,694,691,706,657,675,697,668,680,714,688,708,667,648,683,678,693,674,650,699,679,719,680,676,660,645,659,666,699,693,679,680,659,666,693,673,699,678,672,653,694,694,674,650,717,674,688,621,631,642,612,620,628,595,640,632,617,624,634,583,622,596,610,625,647,624,627,613,604,640,617,609,621,662,649,626,650,662,634,656,665,638,679,673,661,654,642,632,657,659,638,624,616,633,638,601,635,635,610,630,677,631,634,643,636,635,666,632,684,661,690,663,697,681,659,657,675,662,661,670,667,666,674,696,688,685,656,655,664,677,650,676,633,669,670,652,681,669,660,652,662,698,653,677,682,679,671,670,660,677,657,676,648,679,652,675,685,662,662,675,667,661,670,671,681,676,668,662,684,673,705,675,686,695,705,685,698,662,696,682,693,684,664,690,689,656,690,688,677,693,697,709,673,677,657,679,673,658,675,686,681,677,659,675,659,680,670,675,707,689,700,672,663,672,678,696,712,694,683,720,682,681,672,685,685,680,687,671,702,706,698,715,699,666,664,696,645,689,712,701,664,689,691,677,693,685,677,712,676,703,683,659,684,667,670,701,648,671,698,675,718,689,643,695,646,636,625,611,660,635,633,619,692,638,654,666,649,646,640,607,672,646,638,612,637,636,658,634,672,686,680,641,644,624,634,604,618,637,588,578,586,623,603,600,603,601,606,617,580,622,603,602,639,614,572,594,620,616,577,631,582,596,573,616,624,603,584,590,591,587,628,573,556,557,597,582,605,565,612,581,579,604,613,583,582,588,581,625,605,582,585,600,574,611,614,577,589,590,619,592,577,616,627,591,599,618,612,589,608,606,575,616,649,617,627,618,611,591,616,633,622,622,613,611,605,588,613,573,616,643,614,607,666,614,614,657,645,610,625,601,637,632,635,621,605,593,626,644,642,613,597,621,607,606,604,625,642,622,636,641,661,631,662,659,666,656,680,678,664,653,643,645,678,680,640,653,628,648,641,683,661,666,665,648,677,677,658,662,661,664,688,672,660,657,632,662,662,678,642,682,680,661,665,658,677,668,629,658,670,641,653,670,638,670,679,676,651,674,672,683,678,693,689,683,696,672,683,682,718,707,682,661,690,682,681,668,669,683,668,701,663,666,653,650,664,646,630,652,665,681,688,643,723,769,776,754,766,741,770,797,739,707,819,767,747,703,718,714,669,727,686,694,756,770,744,712,780,787,762,780,732,774,766,713,717,650,703,692,712,739,713,686,727,685,674,671,697,677,624,736,688,706,734,680,712,673,717,671,735,657,731,673,732,686,923,924,839,865,877,869,877,882,897,915,902,901,894,874,936,898,890,901,904,879,871,916,882,893,902,890,899,890,904,910,875,852,804,844,847,845,803,850,822,839,869,852,839,868,840,806,838,867,839,833,859,876,802,806,814,853,849,860,838,851,874,877,831,764,798,767,767,765,744,823,819,806,799,824,780,759,738,763,752,762,784,780,772,799,806,759,788,792,787,740,774,763,747,759,697,739,743,697,739,716,725,721,690,746,747,740,794,710,713,713,713,734,732,727,721,698,747,721,740,719,728,733,748,739,797,789,746,722,756,734,741,687,748,698,734,743,759,745,741,745,713,718,699,704,731,780,718,798,729,733,778,688,757,738,730,866,881,867,886,909,808,841,880,864,911,827,885,834,843,848,779,927,845,846,824,919,826,930,879,910,884,855,868,848,874,813,742,755,739,740,758,747,729,704,758,767,751,742,695,750,724,721,752,737,748,742,738,740,755,744,733,780,757,757,711,731,714,867,898,888,938,857,890,966,871,818,899,876,900,864,886,856,869,865,831,925,879,873,846,878,859,841,857,850,895,885,873,936,893,945,930,969,874,979,953,933,845,941,924,935,814,937,867,902,958,899,858,912,905,916,915,906,927,883,901,842,937,800,911,748,760,743,722,811,760,802,765,733,773,761,799,747,769,754,829,779,738,759,756,782,783,767,823,721,719,788,776,759,836,789,695,722,724,695,718,706,684,697,724,693,694,743,722,696,654,735,703,731,652,706,704,706,709,709,729,715,708,728,730,695,713,656,647,653,668,643,652,616,663,650,648,629,646,659,671,627,638,657,632,665,663,628,641,638,663,674,646,653,673,649,638,637,691,684,677,639,680,675,702,668,667,671,693,696,675,695,693,644,707,705,674,701,676,711,667,691,679,675,668,665,666,711,678,712,840,856,824,798,768,835,815,764,792,741,784,748,776,752,756,773,747,755,773,787,708,792,721,794,800,790,903,774,752,589,786,741,755,780,771,803,727,782,760,772,770,735,797,773,725,763,744,770,750,779,775,758,746,720,739,787,767,780,765,758,773,701,702,733,733,692,744,721,730,723,738,694,721,716,732,722,703,727,716,679,702,718,707,699,709,746,711,722,711,677,722,735,668,667,595,682,676,612,655,663,678,639,668,643,671,612,660,681,691,703,636,660,659,666,674,661,647,639,699,636,644,677,694,635,641,658,617,673,655,640,651,690,724,668,664,682,718,677,600,625,678,608,669,619,674,639,708,636,694,633,640,634,649,650,870,894,898,918,897,889,950,911,884,900,888,923,934,904,951,908,949,880,917,918,907,905,917,904,890,916,908,927,897,892,935,858,890,846,847,866,884,868,836,934,863,890,864,842,817,826,873,876,857,858,852,891,829,873,871,857,853,857,864,822,855,941,764,736,755,733,728,755,738,727,738,742,745,765,740,760,759,743,737,753,735,753,737,760,769,767,769,764,751,759,730,732,787,691,730,709,744,756,762,739,726,710,737,730,728,733,754,723,749,703,714,759,756,749,734,708,730,688,754,726,740,762,794,762,805,779,771,721,809,794,764,747,753,765,802,708,758,814,754,793,778,793,740,765,705,755,750,798,788,783,795,792,773,705,789,963,960,985,1002,973,1003,994,978,1015,1009,965,968,983,962,956,1005,1008,974,990,1041,953,1012,1012,980,986,937,1022,933,983,1027,980,989,922,948,974,940,956,1010,999,954,1019,999,950,968,984,922,942,979,945,975,972,965,976,996,904,961,938,982,955,969,992,936,837,876,872,865,836,882,922,895,869,933,902,889,863,887,907,847,893,870,863,861,918,878,830,872,891,931,925,944,888,869,898,765,755,744,731,702,734,772,766,776,752,734,770,743,742,719,728,734,720,700,748,771,740,776,744,744,745,768,768,737,733,742,657,697,651,677,726,795,644,746,612,614,676,688,701,664,702,610,703,657,646,645,649,770,591,643,728,655,662,708,671,661,755,1020,1041,1036,985,958,1024,1031,989,1027,993,1044,1008,1041,991,1035,943,999,941,1012,1028,1074,1014,990,980,1006,1018,1070,1035,1031,1020,1004,895,977,950,924,939,957,958,956,932,916,939,937,885,934,934,917,906,972,975,952,882,959,916,962,953,926,979,925,931,963,940,880,904,935,902,923,923,924,966,926,936,920,917,945,969,956,899,955,943,870,918,967,901,903,905,1009,940,919,952,923,937,1028,840,863,839,789,814,832,854,860,830,853,802,816,821,845,852,839,882,855,837,858,819,875,857,836,853,819,800,835,833,797,830,767,757,734,750,742,782,777,801,795,746,772,799,736,778,755,740,750,769,769,792,757,762,757,763,794,791,759,751,731,769,780,706,688,701,703,718,708,682,665,679,694,710,710,679,671,711,692,700,701,724,698,668,690,731,714,694,727,678,709,683,701,704,669,660,711,671,645,701,675,691,656,636,649,696,749,694,675,668,653,653,687,690,698,742,697,666,716,705,670,677,696,674,663,820,893,872,858,868,907,903,856,818,841,840,871,889,852,860,860,853,918,789,864,862,903,844,891,862,847,889,883,853,852,828,680,769,758,710,712,738,713,666,764,729,716,688,706,704,739,692,730,699,747,709,647,771,755,732,733,716,771,683,721,694,723,857,930,862,874,866,883,924,932,907,911,868,871,841,908,911,881,884,914,888,938,909,856,872,802,855,827,817,900,858,836,845,884,923,942,917,833,908,937,915,956,897,820,863,886,884,918,861,857,800,904,885,850,858,878,913,923,841,890,895,854,914,954,760,780,750,760,736,844,761,796,767,750,762,737,757,754,738,757,757,743,752,784,719,780,790,785,750,774,773,746,761,753,710,724,739,759,744,755,763,721,757,767,706,710,744,750,747,785,718,748,755,740,761,718,732,826,773,779,761,723,741,717,724,743,777,736,762,774,787,809,764,768,780,761,799,787,756,812,829,812,695,830,779,775,775,744,768,767,740,808,820,724,843,831,805,855,855,896,960,871,952,884,888,907,899,855,928,884,898,928,888,904,881,890,914,914,876,909,891,912,864,855,926,890,879,911,776,756,783,782,785,781,818,772,757,770,787,790,796,770,757,800,831,796,794,781,789,772,792,797,788,792,792,762,800,788,799,741,680,768,741,741,696,735,733,707,757,746,746,759,751,703,740,727,768,695,793,712,708,713,745,694,733,737,761,733,778,737,755,826,896,800,786,864,874,859,843,841,889,812,842,818,845,821,870,935,891,869,857,868,830,810,826,879,874,903,826,886,803,735,753,741,753,763,751,760,767,755,752,731,756,747,742,766,784,771,764,719,769,743,760,739,785,765,748,773,749,718,785,747,694,685,695,693,684,700,689,683,685,680,678,706,689,710,686,697,765,691,707,735,682,711,708,684,676,703,692,670,731,706,729,786,729,704,734,755,721,786,755,764,732,697,760,722,718,712,722,705,754,748,735,721,707,786,739,780,740,763,743,680,720,754,696,678,675,730,703,708,729,718,708,707,707,724,703,693,670,680,731,681,671,680,694,708,657,697,692,720,689,702,667,673,700,866,845,875,858,846,894,886,863,880,883,905,846,885,871,858,865,867,869,903,865,917,919,833,856,845,836,867,856,862,822,851,768,783,802,789,782,838,780,711,753,840,821,759,849,812,784,820,799,766,838,766,805,780,782,766,792,795,795,791,796,796,790,733,732,746,767,726,760,703,735,753,690,729,723,698,770,726,738,706,701,714,708,711,784,713,748,704,723,732,707,750,741,729,682,633,574,622,600,668,615,622,595,681,589,668,625,677,602,609,628,658,644,620,684,650,593,626,614,616,626,590,617,614,629,510,645,674,648,677,590,633,561,612,642,569,627,587,619,559,696,610,695,595,590,612,542,684,791,626,571,600,570,676,637,637,864,919,891,900,942,935,911,904,940,897,902,892,888,897,924,898,907,906,892,907,933,918,923,933,919,872,890,919,922,866,913,895,836,890,833,834,886,851,837,824,803,860,897,807,913,791,800,867,865,862,852,834,829,879,841,855,862,839,846,876,829,810,795,780,802,745,838,775,805,862,820,792,782,780,841,799,891,854,828,899,828,802,824,868,814,841,833,829,804,846,747,798,828,737,741,723,718,740,739,704,722,730,721,701,717,733,702,692,703,747,724,712,771,774,713,740,740,713,689,740,717,725,728,700,712,779,738,734,751,728,767,776,731,732,707,710,715,735,725,725,741,728,708,713,743,736,721,693,775,721,722,729,735,702,746,697,695,680,700,738,697,719,771,679,717,715,682,718,696,739,736,734,691,724,634,760,741,763,730,691,738,700,716,730,734,715,831,760,789,842,796,818,754,811,750,792,808,870,883,776,807,847,758,889,830,810,756,823,769,832,774,801,814,834,892,753,835,731,733,744,760,747,745,743,722,737,713,715,703,759,750,739,726,729,758,761,678,713,749,714,780,729,730,767,672,735,747,708,692,708,674,676,683,683,699,680,692,680,665,656,673,713,663,663,663,700,705,687,687,694,668,676,672,670,693,690,705,725,654,682,610,668,651,657,620,671,667,642,592,655,623,582,685,621,609,654,612,679,660,661,643,632,611,669,633,666,604,608,648,600,832,835,880,787,786,808,805,800,802,791,808,743,820,810,834,835,829,816,826,885,840,783,851,834,812,897,852,845,848,809,856,1027,989,1010,1001,1061,1013,1032,1004,1008,1024,1056,1022,1059,964,1042,1003,965,1016,1032,991,1079,1008,1040,999,1020,1047,1030,1072,1002,1024,1041,976,998,981,997,958,954,971,977,971,981,1002,982,1004,961,968,993,993,974,961,973,1013,958,993,984,961,972,1017,980,1057,974,977,939,1040,1019,947,929,943,962,988,950,1020,979,971,917,940,975,976,936,963,978,951,956,963,949,960,949,939,944,910,992,1001,987,810,788,779,781,813,779,845,857,804,854,786,827,768,789,837,829,838,887,854,778,859,785,803,825,827,775,845,802,865,795,827,630,636,657,622,646,623,639,577,652,613,655,644,653,652,676,660,637,642,617,623,645,626,590,672,612,635,631,650,612,664,640,642,670,689,675,715,677,774,679,730,691,686,648,667,686,688,739,744,802,703,772,748,620,697,737,605,643,678,624,656,714,715,976,1036,984,1016,984,1053,1028,982,998,989,1037,996,1020,987,1023,1019,997,1004,984,1023,1030,969,1078,1007,991,995,1016,1012,983,1028,1028,976,975,1008,996,984,967,898,962,1011,939,972,951,885,1018,965,902,989,913,978,1013,964,964,947,1001,914,990,961,942,909,989,980,858,808,866,857,853,848,828,860,854,911,817,888,810,858,832,827,890,873,841,804,824,836,866,919,837,827,865,895,846,840,864,664,673,672,650,680,665,680,673,715,657,657,661,676,683,720,711,701,691,678,698,729,709,683,643,674,656,691,665,668,700,672,669,639,685,680,639,644,604,650,625,673,664,650,730,689,691,674,699,720,633,680,670,705,696,679,652,683,629,637,697,619,685,821,873,825,798,856,785,818,819,799,758,836,805,759,777,732,864,780,848,808,808,770,890,769,849,754,806,818,724,832,797,827,729,780,804,750,780,746,788,769,790,771,775,817,749,779,736,791,759,805,733,759,749,788,826,829,800,788,797,780,792,788,781,673,703,694,693,740,673,677,716,663,690,696,683,694,720,692,678,708,665,661,680,697,675,694,702,699,660,659,661,641,685,693,610,617,607,595,569,644,601,612,614,606,610,613,602,619,673,617,628,629,614,606,615,631,632,622,611,633,594,609,601,603,622,648,670,605,632,631,661,601,661,639,638,624,611,644,608,665,618,588,643,641,622,640,616,685,625,658,678,611,661,656,629,623,735,794,716,776,783,739,742,760,770,759,757,731,749,754,739,777,780,735,747,744,778,809,765,796,761,724,736,797,737,729,754,713,721,678,731,706,694,706,689,715,714,693,736,755,715,706,717,725,722,721,716,756,757,725,729,725,722,699,717,728,728,739,693,685,706,690,684,667,677,693,691,703,702,687,664,662,668,671,711,692,724,689,688,699,687,697,693,687,676,657,664,673,673,681,628,639,643,639,673,645,632,634,665,673,677,626,637,637,666,668,615,676,663,636,647,645,692,695,681,643,668,654,673,650,613,631,656,645,657,607,652,649,596,630,629,619,659,626,595,622,620,638,586,638,632,632,592,614,620,662,666,638,603,647,659,607,724,640,669,710,713,700,638,633,651,616,709,667,562,670,562,623,665,644,585,626,562,656,632,671,675,677,618,675,635,609,888,1041,864,952,917,1024,1105,1020,1028,898,942,1013,1098,1138,1003,973,1008,982,1031,1072,1022,979,1026,945,991,1046,1030,896,1026,908,942,905,916,900,990,942,920,928,979,967,852,898,949,892,868,922,893,954,859,917,936,975,899,957,894,935,914,966,954,907,967,923,734,796,751,813,829,765,806,757,727,789,801,805,831,795,799,773,778,781,802,763,783,842,739,776,790,756,773,763,753,779,776,647,665,674,662,658,658,714,688,667,715,657,683,713,690,673,688,651,675,664,699,705,626,658,682,668,695,688,681,689,671,673,679,676,681,658,685,696,702,670,690,696,716,688,663,697,668,724,676,687,657,658,665,645,697,683,696,682,641,683,662,687,646,694,690,711,712,704,668,689,693,686,678,649,676,696,719,676,672,662,641,675,705,620,643,686,685,641,668,663,657,656,708,621,719,683,694,700,724,747,740,752,720,689,704,705,713,748,708,711,731,680,730,705,748,717,679,736,692,710,718,696,756,715,733,752,751,724,761,731,734,722,699,758,805,763,760,755,707,804,775,752,777,746,780,766,726,738,711,774,806,749,751,791,775,752,882,931,952,888,903,875,921,896,916,870,928,926,907,870,956,929,968,914,951,887,860,970,900,920,967,934,945,916,870,888,894,852,828,858,811,803,790,812,837,823,845,783,828,808,809,799,806,824,829,796,857,835,839,829,804,802,789,825,830,865,855,795,717,745,741,748,746,701,752,709,767,738,728,739,711,740,774,723,720,774,718,733,779,757,750,734,725,711,727,752,764,762,710,649,686,668,674,664,663,693,668,667,657,647,667,684,666,666,626,655,684,655,647,649,657,671,661,671,667,647,651,693,682,682,646,600,639,652,650,651,648,646,648,668,646,633,630,626,638,651,652,650,662,632,628,632,611,683,621,663,649,641,678,671,640,703,696,757,743,705,735,717,748,702,767,736,716,722,721,732,754,705,750,757,751,751,719,743,721,739,718,742,756,691,714,698,715,726,684,713,703,689,680,704,710,708,721,698,704,709,681,663,695,709,684,690,701,689,699,681,684,736,695,702,685,715,697,766,729,759,752,720,729,743,711,736,736,769,739,740,724,719,753,727,721,736,737,769,735,734,757,715,731,720,728,728,726,734,736,703,679,729,796,750,729,716,747,750,777,745,739,771,737,752,746,733,744,763,723,727,747,774,751,735,751,727,747,731,741,697,714,729,716,720,717,714,697,680,699,702,720,736,692,706,717,689,722,695,715,727,713,732,701,720,710,687,674,722,695,715,729,757,728,733,706,752,740,712,724,707,714,737,726,711,739,685,733,696,687,720,700,733,717,718,747,760,697,735,747,705,716,736,689,674,705,696,712,725,718,689,719,664,672,659,723,690,695,707,710,683,706,690,663,682,660,696,666,722,677,722,685,684,626,652,678,637,635,636,638,644,662,672,634,646,680,660,613,647,695,651,644,674,640,668,699,658,685,680,698,643,661,632,657,562,625,607,614,612,642,602,621,635,633,638,611,599,603,608,605,640,651,614,591,636,618,639,632,594,646,601,610,622,605,617,606,592,619,614,622,630,610,623,599,603,598,650,599,602,643,614,620,618,588,652,608,619,630,600,598,600,632,613,610,592,607,588,633,594,607,611,607,599,627,631,629,610,639,601,616,622,659,617,594,587,623,626,610,603,607,634,602,646,612,617,608,619,641,653,654,679,633,676,681,627,706,645,693,655,652,637,638,642,640,633,615,632,642,626,638,624,648,627,642,679,595,641,657,569,576,589,589,576,594,618,564,602,585,590,613,624,618,580,594,614,605,599,594,587,595,569,604,572,613,603,595,588,586,611,603,604,601,581,579,595,620,610,614,610,626,590,616,615,617,614,584,601,612,629,609,626,593,579,596,602,608,578,584,611,579,625,640,623,606,696,635,664,626,634,614,632,652,639,651,645,634,659,667,648,610,615,629,599,645,624,605,621,627,657,621,596,836,789,844,848,881,832,862,803,754,853,809,809,785,858,863,795,767,793,917,842,766,826,890,854,812,878,843,823,756,826,781,1006,1018,1063,1044,985,1032,1038,990,1052,1054,969,1051,1030,1044,1010,989,1009,1004,998,1000,1047,1021,996,1017,998,1029,1029,1021,1000,1007,990,989,959,1031,996,974,957,982,948,975,984,993,949,1007,1001,995,970,947,1007,989,995,1014,965,962,1008,993,986,1000,1032,943,1050,965,1001,971,1004,955,935,892,952,897,944,982,940,925,963,972,973,968,951,970,975,921,951,998,976,962,980,967,984,975,998,930,908,889,887,958,894,906,877,899,870,910,834,978,894,873,831,840,797,874,923,887,931,907,867,862,846,867,888,921,871,876,850,884,686,688,670,716,671,680,677,696,722,689,694,662,692,664,681,669,678,725,718,700,696,702,684,676,677,678,667,662,683,668,696,750,669,726,738,753,712,697,755,710,707,721,749,689,734,706,750,752,721,773,686,746,782,737,763,721,747,691,752,705,776,675,766,749,747,755,755,742,747,792,760,738,764,726,740,765,746,806,755,787,744,740,764,797,749,740,752,782,789,707,750,743,754,704,692,705,719,722,719,716,731,706,684,689,687,721,700,708,706,719,718,689,714,704,681,696,680,712,694,724,703,701,732,707,709,679,696,700,719,719,711,711,714,699,728,726,649,727,718,727,703,698,699,708,687,684,696,673,640,713,680,730,691,738,671,702,666,675,645,661,640,655,647,647,683,683,655,644,688,607,665,682,671,629,674,681,665,655,630,645,650,652,661,715,665,672,648,653,676,631,632,643,651,658,651,677,683,601,635,646,676,660,661,687,604,633,643,612,661,635,661,636,647,643,660,636,644,835,829,847,855,824,812,813,838,838,835,852,834,819,848,853,843,824,823,844,806,860,831,885,795,846,836,824,845,819,840,841,751,761,746,772,766,772,749,777,733,789,757,751,768,761,742,756,778,768,745,732,745,770,728,753,764,722,772,755,732,770,764,699,699,688,707,713,717,710,719,717,749,666,734,697,719,689,739,694,717,722,690,685,699,699,696,718,714,712,714,704,708,699,819,809,783,820,838,862,837,819,823,843,786,800,831,765,819,806,805,786,821,796,790,831,764,793,823,832,836,837,819,769,782,747,707,724,795,745,749,725,713,714,710,717,739,724,746,728,710,727,759,708,726,731,729,712,724,713,773,735,734,722,709,743,697,692,682,691,704,689,717,699,653,686,676,672,703,707,671,715,716,696,715,697,690,711,685,728,734,708,692,720,674,699,705,919,940,945,978,971,944,958,960,906,915,945,968,958,929,947,937,918,909,930,958,941,938,976,949,983,967,937,918,948,966,956,904,892,931,898,898,837,912,924,891,862,882,905,903,837,910,911,880,940,927,864,914,928,901,934,845,893,953,899,907,930,894,838,842,837,853,800,857,823,835,842,840,837,811,810,870,857,837,797,810,823,819,895,831,816,838,819,814,874,803,839,821,839,751,777,774,752,793,823,807,807,757,772,796,817,771,737,775,778,746,804,797,775,778,725,787,755,789,785,790,754,800,771,798,792,765,785,783,750,746,768,760,768,769,786,759,732,793,760,767,788,781,752,767,744,766,786,759,740,696,760,744,774,790,744,661,751,709,702,656,673,692,684,670,673,659,716,674,713,686,676,681,676,690,692,679,695,684,693,650,664,668,654,675,697,688,611,614,590,609,661,629,614,620,631,599,582,594,637,620,668,608,627,617,582,636,622,614,639,612,592,606,593,611,620,593,628,614,628,626,648,643,659,595,611,642,602,637,620,627,639,639,623,602,603,658,641,615,665,620,639,627,596,640,616,614,609,623,716,677,679,643,668,660,699,657,649,686,702,673,673,710,691,731,651,640,695,652,687,658,677,684,636,737,671,700,709,676,687,624,670,648,631,630,663,644,615,678,660,649,635,660,658,623,636,648,637,641,665,624,628,686,639,644,638,632,635,669,692,652,749,694,659,669,783,764,740,778,734,695,700,770,683,751,756,779,724,685,762,737,740,770,767,769,756,709,690,734,750,723,751,707,675,697,735,705,702,702,734,745,744,730,690,693,689,698,711,739,728,695,722,691,698,706,686,743,735,719,698,697,691,706,634,637,706,660,633,679,675,638,631,684,717,668,683,673,691,638,687,665,640,655,640,687,665,646,597,656,665,635,693,662,659,644,597,661,645,675,628,615,621,669,641,652,654,633,614,646,592,637,639,598,631,619,653,647,627,648,652,605,655,641,624,645,828,821,736,832,768,785,777,754,797,790,773,777,814,848,762,806,760,801,840,789,758,808,844,777,774,842,775,786,780,785,822,1002,1002,989,986,926,962,984,941,1031,994,972,970,969,1000,937,1006,996,1001,930,972,975,942,984,964,961,973,979,971,957,994,974,840,887,852,889,863,841,859,889,889,846,835,815,875,818,853,865,859,867,869,864,872,885,866,885,827,862,837,874,870,849,813,758,729,750,784,796,737,794,757,717,743,754,753,753,779,766,698,788,767,772,769,782,772,794,781,753,726,773,803,760,764,748,689,693,719,702,695,699,712,721,711,718,679,669,713,725,693,715,691,682,723,689,726,720,702,681,683,720,707,674,706,709,706,665,676,665,663,683,675,655,668,679,680,665,684,676,669,669,658,666,673,673,664,653,659,696,657,668,653,666,687,671,663,674,686,695,654,676,678,674,689,664,678,666,671,671,701,689,683,672,674,671,675,692,658,667,678,649,689,691,673,647,659,685,662,680,696,682,643,670,677,711,663,664,718,666,671,733,665,703,665,669,684,666,722,673,658,706,678,689,675,685,688,689,671,675,680,650,658,690,687,709,696,691,661,649,680,624,680,684,651,672,665,675,681,685,686,706,677,669,687,675,699,669,684,688,691,648,657,669,659,700,655,657,660,658,631,646,656,682,705,660,658,633,656,626,679,648,671,694,669,649,643,640,647,673,647,623,626,641,639,621,611,571,623,650,632,664,624,634,607,639,651,611,626,593,614,657,603,684,621,621,631,617,638,615,614,634,589,643,635,644,634,624,616,605,647,610,623,643,611,634,656,632,627,658,568,630,609,601,667,614,615,628,643,683,637,648,636,640,779,688,768,698,681,704,698,706,682,726,711,676,688,669,721,718,689,724,704,729,704,753,647,702,743,661,713,679,715,664,689,886,879,915,881,887,943,888,888,904,897,871,888,901,924,915,917,866,871,917,878,892,893,857,914,895,858,937,895,887,918,890,778,754,789,807,771,769,773,754,813,768,789,764,799,820,780,815,820,753,806,774,789,763,766,792,763,754,765,825,776,756,780,744,714,708,684,719,699,737,713,720,748,735,705,725,738,730,721,747,708,705,714,743,744,701,764,706,725,738,702,720,740,718,829,870,825,794,830,838,799,841,855,827,840,805,796,818,823,817,827,784,854,825,848,842,845,809,843,855,851,860,830,843,835,750,719,754,737,757,765,736,751,767,751,742,722,716,769,757,728,806,741,758,771,775,739,766,769,750,770,772,789,760,739,811,708,686,692,683,678,720,706,695,699,684,706,714,698,683,729,719,702,708,710,701,683,676,706,704,709,688,709,681,701,709,675,630,669,660,652,676,655,682,651,682,676,637,660,672,656,655,662,670,676,669,698,679,658,673,685,666,651,663,664,648,653,672,680,707,695,721,696,731,686,729,706,668,663,682,691,705,655,725,695,710,679,721,664,709,678,679,721,716,663,705,686,687,710,858,897,911,903,908,901,903,889,877,906,908,893,898,906,939,890,913,910,896,901,881,892,914,874,908,888,901,915,939,907,901,940,866,868,879,917,817,847,894,886,920,912,891,847,925,878,918,875,891,867,803,912,880,894,905,886,885,926,892,875,882,873,792,841,852,841,792,776,855,744,795,831,792,773,802,850,771,809,815,805,802,798,806,777,802,780,774,782,788,792,809,809,794,751,732,727,736,763,733,743,746,742,742,733,730,728,767,707,730,738,694,691,742,730,741,754,738,734,760,738,740,713,721,756,788,737,785,777,748,761,778,727,755,762,774,773,739,746,796,757,761,766,773,767,770,722,735,744,750,763,746,733,808,773,741,774,707,722,732,710,723,751,708,726,772,742,730,726,746,718,744,724,704,722,715,731,765,728,741,711,733,766,733,761,735,761,774,747,762,728,760,749,734,752,725,791,733,731,771,775,697,743,765,721,734,741,720,756,778,758,725,782,767,739,743,771,794,663,687,682,700,699,667,678,702,686,726,692,691,709,680,729,691,685,648,706,711,691,718,689,706,677,676,684,650,702,700,677,730,727,789,770,717,761,746,769,787,767,750,767,751,749,760,748,738,747,719,778,747,772,781,754,791,792,738,750,762,751,747,836,841,822,771,745,809,823,796,774,816,772,825,797,770,772,824,766,775,803,787,846,777,792,796,798,821,774,776,798,782,810,767,768,769,752,789,777,798,770,776,795,777,742,733,778,777,781,804,811,795,771,762,777,782,774,752,806,762,789,780,796,783,754,732,743,713,714,737,721,734,761,774,740,755,736,723,730,771,757,717,764,753,734,730,733,740,728,740,727,758,720,740,727,721,726,736,732,761,735,752,737,746,717,728,737,750,746,739,724,741,735,715,722,766,734,775,728,712,746,768,734,719,764,741,737,707,724,739,677,716,717,763,722,739,695,743,712,711,728,719,692,715,725,738,728,732,723,727,727,690,685,729,712,726,731,739,719,699,734,702,722,703,707,660,728,692,726,711,757,671,692,723,727,745,736,738,716,738,729,712,718,715,730,704,696,697,642,678,665,697,662,631,671,686,632,701,666,649,656,662,658,650,630,669,668,651,644,665,688,641,702,655,658,673,682,656,678,638,614,619,638,625,616,628,632,648,633,615,654,655,637,604,640,637,629,635,647,644,633,633,611,659,613,675,624,628,627,624,599,621,675,612,655,645,653,660,619,657,682,603,624,634,651,620,634,657,617,616,629,632,622,626,634,600,639,634,633,655,622,668,709,650,678,668,659,679,696,691,650,687,671,676,647,619,706,681,749,691,678,638,687,710,683,704,729,662,636,624,657,693,668,674,656,651,632,651,621,626,657,666,634,684,660,659,633,639,645,656,643,666,632,700,648,655,644,649,658,648,692,652,660,616,621,652,617,645,642,650,637,604,631,619,642,641,607,629,555,627,601,629,633,610,629,619,631,579,644,607,580,629,615,607,579,612,559,564,551,583,591,570,608,600,605,565,595,596,608,619,597,566,582,582,558,565,591,610,565,622,579,551,613,595,589,610,537,608,548,552,644,580,528,620,668,625,550,556,587,535,574,574,584,564,673,570,551,570,552,614,601,616,566,654,637,590,869,846,871,869,896,876,890,877,885,857,875,878,862,884,877,914,835,860,868,876,911,868,865,862,876,908,905,885,940,842,905,784,813,849,811,819,809,831,844,855,782,818,885,741,807,809,842,842,846,802,824,791,835,845,809,788,861,790,757,858,788,830,731,746,761,717,702,757,731,741,722,766,736,742,701,720,764,703,711,692,731,726,747,731,742,749,758,718,764,724,740,709,730,803,881,864,828,824,820,900,805,902,851,861,830,819,880,855,892,850,859,797,815,877,878,857,801,855,850,815,885,800,814,877,900,901,923,901,844,860,887,851,858,846,868,830,861,837,898,862,829,891,833,857,858,923,860,877,943,862,851,898,870,855,892,726,717,745,698,736,700,716,725,741,734,710,720,748,718,713,733,696,735,715,733,719,729,704,706,729,717,705,771,705,729,760,709,675,684,720,750,698,645,672,711,667,678,741,673,679,697,654,740,721,700,720,720,757,723,690,658,637,707,673,679,717,658,669,787,675,802,710,744,686,686,659,738,580,642,721,760,711,623,621,693,725,776,619,656,561,593,520,672,628,706,603,757,690,1003,1067,1075,1047,1068,1039,1050,991,1026,1066,1030,987,1041,1045,1044,1064,1062,999,1076,1058,1042,1028,1062,1087,1029,1105,1041,1025,1058,1097,1019,970,977,929,943,963,963,990,952,977,947,940,934,994,970,952,988,964,958,930,954,926,923,965,1002,988,894,884,930,966,879,911,953,962,970,939,980,999,891,971,944,981,981,990,957,980,940,960,956,943,966,957,941,925,1048,983,962,973,931,968,983,945,945,955,941,943,931,954,933,952,939,1006,945,905,945,954,950,926,947,961,968,996,961,966,981,953,949,965,961,985,951,912,939,913,951,916,907,944,939,970,985,902,925,918,887,958,925,936,968,935,909,944,887,901,947,901,901,953,925,924,984,958,903,962,884,758,769,691,755,729,761,746,737,792,806,751,744,771,771,720,738,786,761,812,766,760,749,773,751,782,753,802,800,772,706,733,890,951,900,957,892,870,923,892,943,891,931,921,932,904,889,854,891,892,944,928,921,910,973,959,894,869,888,930,942,947,845,910,921,897,899,869,889,885,885,893,870,933,862,953,897,885,895,928,830,910,949,890,854,894,898,923,854,856,882,868,898,825,872,839,883,925,906,888,888,802,913,920,877,880,901,831,871,864,863,890,838,905,902,853,894,861,877,896,890,910,868,862,882,891,860,834,746,890,890,869,856,881,872,806,849,888,875,916,817,855,827,800,853,895,887,859,844,826,841,809,861,838,884,863,925,903,947,922,944,860,887,951,939,1014,932,975,934,938,957,969,854,914,884,878,917,973,947,944,920,916,1023,897,958,966,955,830,853,822,857,854,869,852,849,833,863,850,797,822,852,782,833,832,863,834,844,830,847,817,803,797,848,824,817,829,840,837,726,796,743,763,762,769,766,795,778,772,769,775,747,719,787,812,766,742,731,757,790,792,723,753,816,736,772,764,717,767,718,766,759,767,773,732,775,780,815,680,759,812,802,782,728,828,774,817,779,758,747,784,717,744,781,748,749,705,762,783,709,790,680,690,693,704,701,653,689,671,654,692,670,683,697,690,702,645,710,695,685,696,663,660,679,684,676,681,673,669,730,670,686,690,662,657,687,656,716,698,676,685,703,670,701,679,647,716,701,685,707,703,680,672,718,693,707,646,716,650,672,668,662,678,638,654,686,609,632,618,655,609,664,590,698,634,647,600,745,620,731,638,615,653,591,622,682,661,686,679,648,683,661,685,628,916,839,916,896,902,956,926,951,915,889,946,942,970,923,902,935,920,868,863,915,929,889,881,889,904,935,941,912,998,968,993,703,748,682,651,709,678,707,720,731,630,712,654,643,687,697,670,656,647,696,652,659,664,663,645,701,647,724,703,695,687,719,556,740,668,783,669,673,685,632,679,592,649,595,621,624,672,669,606,531,547,650,628,671,606,622,726,643,668,695,718,673,569,1036,1003,968,1034,1022,1062,1036,1030,998,1001,1038,968,984,982,983,1069,1031,998,1020,1037,1015,1003,1018,1014,1016,1047,994,1025,1005,1024,968,988,1008,934,998,1027,994,1024,997,1024,1000,981,994,962,996,1027,1011,992,1010,940,981,1064,1000,977,988,987,978,1002,1021,1008,980,976,909,976,981,909,953,976,997,951,937,974,945,954,979,929,979,942,1034,906,932,937,947,978,987,902,981,923,970,933,955,989,899,888,965,911,852,863,916,957,817,901,897,880,918,921,962,883,867,888,906,901,825,953,955,913,875,870,895,854,874,905,900,815,684,691,674,688,709,692,700,673,643,673,687,664,665,641,708,689,670,694,691,694,645,643,688,708,677,692,664,655,709,674,674,818,772,794,808,784,762,746,789,730,728,715,747,719,758,773,747,755,705,762,788,779,750,742,738,766,771,740,724,753,742,717,843,808,746,795,865,719,817,800,754,796,824,820,796,789,864,749,777,837,869,792,794,829,773,830,785,866,782,836,837,877,760,1045,1027,1049,1040,1051,1007,1066,1070,1065,1072,1055,1011,1061,1107,1056,1035,1065,997,985,1025,956,1088,1006,1052,974,1087,1081,1005,1029,1030,1032,1030,970,962,915,1012,954,1005,980,959,1030,982,981,972,980,945,1005,1018,984,991,964,978,1004,962,980,984,993,1014,1001,1045,961,950,913,832,850,863,902,879,865,863,895,880,924,888,899,897,886,876,886,911,925,895,876,859,867,882,889,908,907,869,895,859,849,655,720,718,725,709,753,653,704,677,692,710,702,649,692,713,681,689,710,723,686,659,734,708,720,685,722,708,690,686,691,715,898,812,812,770,886,760,745,819,818,793,647,682,794,652,745,790,697,732,787,749,841,829,771,809,759,818,779,766,656,778,805,1009,1039,1054,1025,1004,1054,1024,1043,1034,1006,967,1005,1026,969,994,1039,1042,1029,1021,1005,1005,908,1044,1040,931,1040,977,992,1030,1057,999,978,1008,993,985,977,972,1003,995,994,969,937,1004,988,1013,974,975,981,946,991,1000,997,981,973,994,974,976,968,942,982,947,1030,929,913,953,920,959,936,947,907,981,1004,911,975,958,895,936,930,917,963,883,944,955,967,902,913,902,927,981,952,961,923,896,796,755,754,736,757,807,766,729,814,711,685,774,779,764,768,802,762,699,778,743,765,706,714,767,773,740,791,731,747,775,719,868,790,855,866,848,896,864,824,898,881,864,811,924,859,863,839,849,948,890,871,878,853,834,816,905,905,796,834,865,840,827,926,933,942,956,944,964,989,915,962,884,959,1012,980,893,932,934,905,973,949,945,926,903,859,1026,934,963,943,828,933,955,953,822,835,786,902,890,906,863,845,868,930,870,888,908,876,867,944,856,841,917,884,835,927,833,877,843,858,928,884,814,804,887,811,791,787,795,816,819,799,720,836,804,811,796,836,848,787,778,851,768,794,733,810,818,828,838,777,796,832,773,811,849,772,712,689,669,684,657,721,668,734,681,699,638,697,700,732,737,707,690,724,670,701,706,650,725,657,686,672,680,655,714,700,726,671,653,638,649,615,667,674,664,795,733,636,747,681,710,708,655,764,686,643,727,608,738,621,710,691,611,670,663,707,659,613,980,962,930,946,935,965,972,953,922,986,991,925,1016,951,979,919,960,995,985,992,942,936,940,979,935,925,908,933,1026,900,921,952,936,995,932,933,986,972,945,984,917,977,931,968,927,950,914,937,963,956,909,918,929,999,923,976,991,951,908,1009,902,922,875,958,935,974,982,871,929,1015,930,886,941,932,904,892,915,963,914,935,888,973,892,852,943,887,926,960,908,920,857,979,916,916,864,902,844,905,943,826,875,861,880,884,860,839,868,829,898,825,896,752,864,785,788,873,889,857,878,954,869,866,898,869,736,690,737,660,696,691,683,721,693,715,686,710,709,684,713,707,736,746,705,731,695,672,698,716,731,746,677,737,715,711,704,650,695,683,663,680,666,656,673,687,663,672,639,659,714,660,670,667,674,674,706,700,677,679,643,672,654,667,667,651,658,679,660,630,677,647,641,679,668,658,635,647,653,644,652,638,655,649,673,671,637,664,669,678,639,648,617,651,682,659,666,701,671,634,599,579,633,600,629,637,603,630,623,596,632,579,563,592,615,646,585,636,594,636,625,604,624,631,610,614,580,679,612,626,592,572,578,626,612,634,591,629,583,633,580,616,645,622,645,614,622,621,589,599,642,621,581,612,634,585,618,593,608,591,581,642,649,578,648,656,642,610,627,668,640,557,623,658,632,630,680,595,564,650,666,575,678,706,629,630,715,593,664,609,741,605,984,1027,999,938,984,1054,1040,949,1027,1016,944,967,929,967,1037,959,1004,1011,960,1021,973,1001,999,1037,1006,990,982,943,1025,904,953,892,970,948,862,848,941,870,872,841,869,856,850,864,925,898,907,827,896,887,903,866,911,939,904,834,864,945,915,871,902,901,807,755,772,791,789,791,799,794,830,751,775,802,768,769,805,738,745,800,763,807,784,765,784,780,791,771,760,800,789,821,818,827,802,772,848,790,793,846,806,771,805,854,761,804,805,829,795,756,735,810,843,795,826,832,821,791,771,754,842,787,792,840,676,745,700,705,710,734,734,702,738,709,721,747,716,706,739,743,740,713,760,713,713,727,727,713,687,692,705,715,685,689,707,690,682,675,684,681,676,657,672,672,685,702,683,682,672,683,701,685,693,681,692,681,683,698,677,693,670,687,694,686,677,658,672,675,668,662,655,666,677,669,666,663,643,668,682,659,643,679,665,689,696,663,673,671,665,667,662,683,643,662,670,652,697,628,669,664,651,647,663,655,664,638,669,662,677,674,654,662,649,642,658,623,636,670,645,665,643,668,680,639,638,630,669,672,762,681,697,683,725,715,721,732,695,715,701,636,659,716,682,662,668,685,704,694,699,745,699,719,668,733,678,697,671,747,733,902,926,899,877,819,887,901,910,922,905,924,836,895,951,868,913,920,843,919,879,885,920,881,862,918,855,868,912,892,881,905,754,792,768,752,753,735,740,774,750,784,797,779,783,746,728,803,734,779,762,777,768,788,776,759,733,780,776,785,755,774,765,753,784,780,756,783,753,744,734,803,805,792,789,777,733,774,767,775,826,797,755,768,831,759,793,815,791,776,798,805,767,761,702,695,667,672,705,691,670,649,675,668,723,684,672,719,684,655,671,717,701,686,715,704,713,736,686,692,697,674,741,665,676,691,682,656,730,717,665,643,710,641,689,706,672,698,728,739,670,713,695,711,734,686,665,716,688,707,731,697,702,646,685,676,783,765,753,792,764,792,737,805,747,771,741,777,790,723,793,822,787,780,785,770,772,781,782,687,778,810,774,729,800,735,770,728,677,683,720,761,710,734,710,713,722,735,741,732,730,751,724,697,710,761,687,714,745,750,717,738,747,757,727,730,753,729,686,693,679,706,697,697,698,682,673,683,719,699,663,648,688,670,693,652,712,672,685,678,716,696,676,662,678,708,716,682,678,664,699,668,693,676,668,716,695,666,681,683,727,663,703,693,655,675,725,713,724,670,692,665,705,714,680,678,670,660,714,670,789,824,817,773,793,827,820,789,811,814,808,807,861,789,792,831,805,810,856,770,800,772,766,830,803,803,799,816,786,768,836,678,678,681,678,691,707,686,690,674,654,677,686,682,698,680,693,702,678,703,699,702,689,678,691,677,668,713,682,691,712,684,713,681,700,714,655,663,678,696,673,678,697,702,705,685,697,688,678,671,697,673,721,675,685,680,678,669,673,706,715,676,696,691,707,698,719,700,718,703,677,683,706,696,709,709,692,713,715,699,687,687,710,718,725,710,681,705,709,704,715,704,691,729,676,712,690,736,699,678,738,741,673,737,690,729,747,713,703,721,717,732,725,715,710,724,705,732,750,678,728,692,737,723,738,646,690,697,657,677,667,680,683,670,651,683,653,675,641,673,664,680,674,659,707,678,695,694,698,675,687,670,686,676,695,687,679,676,674,656,687,669,697,670,672,684,695,658,691,675,710,681,676,689,709,678,671,683,682,687,671,665,680,673,670,684,680,724,699,706,732,731,748,701,687,727,678,704,666,738,721,717,723,732,690,683,684,691,699,702,723,713,720,666,706,709,714,691,804,811,799,781,870,826,864,849,834,799,863,849,830,859,831,837,829,812,774,790,839,846,817,824,856,793,837,814,865,830,795,688,687,748,737,695,698,689,701,738,692,727,684,731,713,714,740,723,679,719,772,695,696,718,723,699,712,725,695,731,675,697,662,695,734,687,678,680,683,691,702,704,678,669,683,690,712,684,696,713,673,707,697,642,696,705,709,691,701,673,664,676,659,714,666,691,683,672,702,651,697,694,690,682,683,699,670,692,649,685,680,705,715,658,683,675,675,674,657,692,701,689,652,679,799,800,807,801,744,880,771,729,781,783,802,824,816,760,770,837,832,759,789,819,822,818,784,768,798,793,830,769,826,803,758,932,884,911,961,942,871,906,921,905,923,941,907,884,962,878,939,868,880,932,919,909,907,936,921,915,893,903,887,898,871,844,692,726,696,729,688,722,697,703,726,733,712,718,700,707,683,703,716,712,675,700,718,734,742,706,752,676,665,706,696,704,700,653,717,678,601,714,666,656,651,721,734,658,686,636,692,684,651,752,689,608,711,677,662,599,566,668,659,731,664,654,696,641,939,897,923,1025,957,923,990,924,924,975,975,955,1030,986,940,911,967,948,956,934,932,975,999,959,975,898,976,901,918,994,994,756,792,804,773,769,767,790,813,745,788,782,789,761,757,773,794,709,784,752,833,742,748,793,747,776,731,779,720,799,741,834,748,713,741,745,768,698,731,729,697,733,698,794,716,678,727,671,737,709,732,702,695,738,739,680,780,721,743,671,752,763,725,877,866,900,831,851,863,877,858,889,900,871,872,885,899,928,821,827,814,839,825,859,906,866,901,766,824,881,878,886,878,788,1071,1009,1008,1037,1050,1059,1060,1031,1070,1066,1038,1056,1071,1018,1011,970,1029,1072,1043,1050,1062,1040,1001,1052,1071,985,999,1033,1007,1019,1031,962,1010,996,1008,962,942,1001,1032,994,1005,993,1072,1038,989,1025,1024,965,1019,1011,1020,948,1054,1023,1067,961,977,969,971,957,1008,1001,942,945,950,950,932,987,931,957,958,970,942,1011,973,946,968,985,949,921,960,956,968,937,956,906,929,956,909,969,946,947,952,931,977,972,948,970,958,1003,939,958,973,978,982,969,965,944,973,953,943,949,977,949,938,967,916,952,1002,965,995,983,952,956,898,883,866,874,850,864,858,899,904,888,898,891,890,888,878,886,857,876,886,869,915,858,913,882,918,905,842,890,879,895,907,780,750,802,811,770,782,773,764,723,799,759,719,755,783,762,793,772,757,786,765,756,799,783,797,733,732,761,757,743,775,732,647,645,684,643,663,640,656,693,635,621,663,624,671,657,636,630,656,617,656,649,658,650,644,632,615,635,612,624,642,677,603,656,683,670,655,641,611,706,687,649,661,651,659,694,682,679,691,674,690,644,628,711,633,627,640,688,657,606,663,645,695,673,820,804,793,806,812,832,803,795,841,880,795,819,813,851,764,797,778,829,841,776,820,803,749,749,778,844,753,811,784,818,817,889,922,929,908,906,889,908,942,904,921,917,933,919,932,923,965,946,960,927,918,943,931,947,939,966,925,917,914,962,874,926,817,858,793,805,833,811,826,840,813,811,809,795,831,831,823,807,836,790,824,823,839,787,780,818,845,841,803,822,811,820,815,759,796,754,742,764,790,756,767,810,757,759,753,762,767,770,776,748,765,725,778,755,766,728,756,734,810,772,732,770,756,719,677,672,685,668,697,666,732,668,671,637,694,655,705,685,676,646,715,692,636,695,674,679,688,663,670,685,694,653,698,635,668,632,599,651,657,639,658,632,657,605,626,648,651,609,686,649,661,689,575,629,630,631,654,632,643,649,627,646,625,636,586,638,806,785,824,852,807,785,820,799,803,775,789,806,782,815,820,835,853,827,723,845,777,849,780,770,794,776,811,843,796,807,851,664,662,699,667,645,723,671,696,667,681,689,669,674,694,688,713,692,690,690,697,701,653,692,721,684,709,653,658,699,727,662,864,914,850,986,909,882,922,909,935,844,878,862,881,884,861,885,931,847,906,933,876,868,926,955,864,822,869,847,862,905,913,838,839,803,870,857,834,853,846,840,860,908,898,899,868,843,861,800,856,845,847,899,887,852,863,867,856,818,860,880,866,833,790,740,787,798,805,760,778,772,794,821,788,791,779,776,760,772,733,810,801,778,750,814,794,714,810,821,784,769,805,783,778,706,724,763,722,731,708,738,711,763,737,713,728,707,746,716,738,710,713,721,701,697,731,694,744,748,711,713,704,746,741,706,726,855,804,902,751,902,849,821,854,843,860,850,812,845,825,819,789,820,838,841,791,912,861,860,819,811,817,779,806,805,796,762,743,725,776,757,785,784,768,775,775,775,763,769,758,770,761,773,772,777,765,779,783,782,753,747,813,765,789,769,792,793,714,722,692,722,707,683,716,706,684,742,724,715,726,687,730,713,685,707,728,717,737,710,680,719,726,724,722,707,722,696,718,764,773,820,821,770,796,775,780,795,789,810,792,811,823,821,805,790,833,759,808,810,789,753,830,793,795,829,784,790,767,768,731,747,724,737,709,716,695,719,737,710,729,753,743,713,727,732,693,726,745,741,729,744,758,757,745,719,743,701,703,777,717,809,844,841,821,880,772,772,884,819,784,872,754,858,859,848,779,791,881,820,781,841,819,817,835,850,862,862,781,887,842,856,850,888,898,861,881,872,863,873,870,909,878,865,901,835,895,845,910,846,856,875,886,874,884,916,896,848,903,888,900,861,859,768,746,774,714,742,725,768,742,767,817,729,767,744,766,744,750,788,778,782,723,793,785,820,787,783,759,778,797,737,760,785,906,841,824,854,862,822,909,904,855,844,873,842,813,815,825,815,815,762,865,838,821,796,891,804,837,831,878,828,907,830,923,873,908,918,904,933,881,893,885,909,932,917,881,945,908,889,936,905,904,874,928,877,939,907,869,898,897,945,908,927,929,910,881,887,883,898,868,888,907,918,881,906,885,900,892,865,869,922,876,887,884,900,877,888,901,870,913,902,885,873,901,888,900,883,898,934,901,922,847,938,923,861,922,911,917,915,886,949,918,927,897,857,935,949,933,889,967,889,926,921,892,969,895,911,835,818,829,855,828,844,829,825,799,810,838,786,824,821,823,805,791,847,788,832,794,788,847,858,793,850,840,791,834,849,843,724,771,699,707,709,708,722,716,703,739,720,734,659,725,741,735,738,747,712,714,726,717,726,737,704,737,736,695,731,736,696,701,690,695,684,682,666,682,694,677,693,655,650,706,641,645,681,639,684,683,724,713,692,653,695,679,695,671,677,628,668,670,620,655,532,640,645,656,617,697,618,627,590,668,665,681,656,666,692,674,705,616,669,700,620,696,658,674,685,664,688,624,673,914,962,924,980,926,947,981,945,970,915,958,947,973,918,967,943,946,963,1003,962,962,952,926,989,954,964,981,964,930,939,962,936,951,900,920,865,894,928,901,903,877,897,860,908,918,873,886,840,849,873,921,881,914,904,879,886,892,920,886,834,846,867,808,833,834,824,802,828,871,848,833,848,843,817,792,816,801,868,829,847,798,827,806,824,853,823,790,819,859,846,859,809,784,664,711,737,708,716,722,691,759,717,738,694,745,754,756,696,721,692,705,721,749,696,715,680,703,735,711,727,709,752,679,726,663,694,682,620,651,700,639,658,662,633,664,653,702,693,664,704,670,706,670,705,671,667,642,627,688,616,692,670,692,675,656,783,826,800,755,764,859,757,813,842,879,781,890,777,788,782,846,791,848,729,816,823,763,804,840,782,798,875,821,804,730,839,707,754,800,780,749,764,761,715,787,760,747,765,783,766,744,765,729,797,787,786,760,756,719,765,800,722,708,764,719,715,771,662,684,702,690,717,710,667,663,725,683,701,677,705,685,691,682,666,630,719,682,664,703,691,707,721,662,706,661,711,680,683,633,620,591,654,618,657,583,584,579,549,573,548,598,623,608,566,594,572,598,597,614,602,561,607,563,608,553,582,563,622,630,668,555,588,624,549,624,699,587,543,553,737,551,769,655,606,668,704,645,644,609,575,583,550,664,671,612,603,662,707,595,649 0 240.616801 0 0 0 diff --git a/test/trans_count_cdna.exp b/test/trans_count_cdna.exp old mode 100644 new mode 100755 index c4253b2..41cc863 --- a/test/trans_count_cdna.exp +++ b/test/trans_count_cdna.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type genomic_dna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-MIN114 +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 5000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-lsk114 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R2_154_2!0!820!- 0 8192 76.867694 1536.598389 5000 10399 443,458,441,322,338,313,325,321,334,336,324,333,320,344,313,434,438,436,445,454,452,455,447,440,421,442,459,438,449,446,431,528,537,543,548,556,531,553,545,519,513,505,529,498,526,505,493,511,540,309,275,300,303,287,303,283,301,308,301,324,296,604,594,592,591,576,645,590,603,592,594,645,560,588,614,594,607,602,551,540,537,538,550,537,533,523,548,282,279,253,296,248,270,290,284,257,276,276,315,251,280,275,299,316,285,294,298,305,283,302,294,307,288,307,277,298,304,291,612,617,596,585,632,554,547,553,560,563,577,558,547,544,550,571,551,571,565,581,583,552,596,584,589,490,481,496,494,497,488,465,482,498,477,491,499,278,304,306,296,474,495,487,469,483,473,467,496,488,493,493,497,492,463,479,329,380,335,371,339,352,341,351,373,344,321,360,359,502,481,476,458,443,463,457,481,474,460,450,324,339,334,329,325,335,336,333,320,297,353,324,334,346,340,330,324,339,339,351,342,329,339,342,338,336,332,341,337,322,302,323,322,325,325,340,315,321,324,334,330,318,320,323,320,318,323,323,515,492,513,514,485,523,531,523,516,526,522,529,487,450,435,441,464,459,431,433,435,432,420,400,423,400,415,428,674,699,684,702,663,690,697,642,683,679,662,675,680,669,685,485,480,479,471,503,525,527,479,467,511,471,255,268,252,242,259,246,269,274,506,520,527,534,524,531,499,514,533,507,489,511,506,518,376,368,357,375,379,359,363,370,465,482,466,451,465,442,473,472,477,471,460,493,592,606,576,593,576,590,568,585,539,517,526,500,500,516,510,508,525,504,355,394,394,384,370,373,373,376,373,356,367,386,569,583,566,585,581,579,564,503,520,495,522,506,527,507,510,505,514,531,432,418,429,437,439,430,446,440,418,430,423,440,429,441,433,433,438,536,545,520,530,560,545,529,541,520,518,524,517,515,528,520,534,528,527,515,570,562,573,571,563,564,570,571,563,586,583,584,573,457,457,468,459,466,471,458,480,442,446,447,477,447,432,444,522,516,536,531,531,532,536,533,554,550,550,564,476,474,469,470,481,472,483,488,499,501,490,475,494,487,476,484,473,315,328,323,314,342,300,310,306,323,303,303,443,440,433,458,437,433,446,446,461,456,441,397,437,254,296,292,275,258,290,255,261,264,248,262,254,243,267,252,253,669,655,671,678,648,652,660,657,676,648,660,665,677,556,560,580,567,551,572,572,567,557,573,562,567,573,547,550,501,495,490,521,498,479,491,489,490,486,493,510,514,488,504,488,489,481,573,567,570,575,563,581,589,597,569,573,567,517,487,507,506,485,504,500,511,500,501,494,500,494,507,493,497,518,331,319,312,315,330,317,324,313,333,322,337,327,323,329,334,411,409,398,412,425,437,424,433,417,410,435,432,435,416,427,425,406,425,421,278,291,296,297,279,269,292,300,282,281,269,266,302,291,282,289,277,282,283,276,292,269,501,505,521,527,498,487,557,509,518,512,599,615,607,597,593,588,595,600,609,601,601,587,610,594,600,543,545,521,542,542,528,549,537,550,537,550,530,517,532,550,480,484,484,490,495,474,485,477,482,485,472,390,398,414,417,412,409,422,419,412,376,383,390,383,373,378,384,388,386,385,385,377,385,374,375,374,375,378,387,382,392,388,378,322,320,323,322,309,303,297,309,315,306,294,292,305,292,293,317,290,297,307,605,613,623,640,624,624,609,602,691,656,660,521,513,527,531,515,505,516,534,533,509,527,518,513,309,326,342,308,335,304,312,312,306,308,500,489,491,492,492,497,477,505,488,489,519,487,498,497,531,533,534,513,568,514,523,519,500,515,540,529,538,603,599,608,569,592,583,589,583,611,609,587,580,605,424,422,433,430,426,435,439,422,400,409,403,408,426,298,272,277,296,301,292,280,287,274,291,276,290,269,495,490,494,484,494,491,450,526,477,482,494,482,468,476,485,387,405,403,415,407,417,397,398,417,428,415,414,411,417,328,349,334,322,320,327,337,517,523,517,524,519,531,524,515,532,515,502,528,547,517,504,372,330,354,339,349,349,358,317,340,334,325,345,337,354,338,342,356,421,417,417,421,432,425,419,414,411,421,411,415,427,418,397,306,302,325,317,325,304,325,309,324,296,329,315,333,270,252,268,268,247,271,264,270,272,270,271,262,256,264,267,262,270,287,268,263,279,301,305,288,286,293,285,291,305,325,326,313,332,331,312,319,318,317,335,343,339,331,315,316,307,324,304,327,303,292,304,305,287,298,297,286,300,302,293,258,268,255,269,275,259,272,258,265,256,260,272,258,248,253,256,274,290,301,286,291,304,301,294,297,293,347,371,347,384,358,362,379,359,361,356,357,373,379,357,339,362,347,349,360,374,351,351,366,354,346,345,338,357,349,343,346,757,738,762,723,773,735,740,747,701,743,602,622,584,583,584,611,574,593,568,585,587,586,584,657,626,623,646,640,670,653,630,638,642,634,653,635,550,544,534,517,547,545,530,541,394,361,376,369,377,364,390,355,371,372,384,370,374,377,343,372,335,372,360,546,519,578,534,561,547,541,535,458,451,460,452,478,498,452,452,440,464,462,290,279,293,274,277,284,287,607,617,605,606,629,617,631,591,617,587,606,601,600,579,581,593,588,613,601,641,614,618,622,605,600,445,473,451,471,451,465,461,450,445,453,449,414,283,280,279,292,279,284,281,278,271,280,279,270,271,261,275,647,669,686,653,642,668,667,630,658,663,633,653,617,674,606,622,679,696,578,591,530,560,533,584,539,560,270,275,291,271,285,270,267,281,258,304,287,280,257,234,253,229,257,246,252,244,251,227,226,238,235,214,237,237,223,236,307,293,296,279,300,282,286,286,278,286,306,307,299,310,295,297,281,309,284,322,326,307,309,297,298,302,331,298,317,661,709,696,721,725,735,695,731,656,584,632,593,617,635,609,628,577,379,285,326,302,304,317,277,294,314,323,310,310,304,319,322,315,305,265,273,290,264,277,269,279,275,269,297,306,309,285,308,308,311,307,300,313,329,311,341,329,337,310,324,321,333,303,285,299,296,286,290,277,288,638,633,620,631,638,632,625,622,607,601,622,602,607,535,520,541,534,507,531,536,449,414,436,460,444,431,439,427,436,431,403,438,648,659,650,665,661,660,672,650,681,659,674,667,669,648,672,665,670,653,672,497,487,499,489,499,495,485,491,463,469,470,503,473,463,292,269,283,255,277,274,296,270,283,499,482,472,489,463,490,490,463,527,478,499,519,497,500,484,567,568,556,556,555,580,583,577,596,566,573,549,581,560,553,558,561,550,553,502,505,506,500,514,527,510,491,497,485,505,507,497,493,481,275,254,263,271,266,250,261,249,279,267,258,264,247,254,226,253,243,235,245,240,224,247,231,250,230,229,244,237,251,240,248,251,223,546,503,513,520,515,552,526,500,506,509,510,505,535,516,533,520,525,521,506,516,505,546,537,534,528,539,518,376,366,391,349,361,386,360,396,369,364,378,377,553,554,561,559,558,555,533,565,582,572,566,555,549,552,550,575,356,327,349,368,354,353,350,345,364,448,452,440,431,435,429,440,428,427,425,451,454,437,447,438,449,435,581,581,585,568,578,574,592,587,584,566,584,598,563,589,597,562,491,485,491,474,483,494,475,495,489,651,634,602,648,651,635,634,638,653,654,648,643,657,629,642,517,518,523,506,487,502,498,502,512,509,510,506,500,514,517,517,519,521,514,528,516,507,482,531,540,550,538,501,508,537,523,534,495,542,524,513,525,512,523,510,499,499,515,514,518,502,517,532,508,513,514,519,556,555,568,547,537,543,551,558,554,560,541,540,494,494,489,491,495,499,486,475,501,384,373,370,372,365,399,362,366,369,375,358,407,387,395,371,280,287,294,299,289,295,247,275,267,263,257,274,274,270,260,262,256,255,272,261,562,564,574,563,566,560,539,595,524,551,573,574,555,561,343,338,362,308,325,333,343,337,344,337,336,336,347,335,307,323,330,330,315,566,567,567,574,576,595,565,602,586,599,556,578,592,581,590,552,498,476,485,476,478,464,487,472,504,480,481,494,493,505,486,489,489,490,486,491,492,493,499,389,373,385,400,399,396,394,400,404,391,377,393,371,381,387,400,389,387,403,406,395,411,393,383,408,381,398,407,382,406,385,371,376,532,556,544,535,537,548,563,549,548,540,543,556,534,539,554,551,533,535,524,514,509,528,523,531,530,540,532,522,534,532,530,512,553,540,520,563,588,571,570,564,568,571,572,577,568,581,566,574,469,454,449,487,465,462,459,427,444,471,462,461,478,461,459,439,661,665,664,643,654,674,685,678,654,661,654,668,674,669,660,656,655,658,632,523,546,529,539,533,544,616,579,601,584,583,597,602,590,598,468,482,464,506,462,463,438,472,484,450,454,582,576,602,585,590,587,576,574,582,583,601,572,580,570,594,578,476,463,501,478,476,462,463,511,484,550,555,545,521,572,531,550,561,548,548,530,535,563,503,559,577,563,563,559,565,559,577,578,561,567,487,488,483,480,476,485,471,493,470,472,465,475,472,478,478,373,348,372,370,356,354,368,344,372,355,559,588,574,552,537,578,537,563,569,563,573,531,499,510,508,511,491,499,496,509,494,518,532,499,504,495,510,508,406,398,399,408,402,419,413,395,410,402,410,405,420,403,401,387,380,367,378,390,366,368,366,371,369,393,376,383,375,372,370,366,541,540,543,561,521,559,533,536,558,540,546,518,538,582,593,576,575,562,590,568,566,586,589,579,567,593,585,566,565,579,586,487,490,480,494,477,501,501,512,495,472,467,459,480,475,460,467,470,477,471,461,477,469,320,326,315,324,312,304,302,321,306,588,591,582,597,577,609,584,618,592,613,523,520,548,533,524,527,522,504,521,529,537,511,305,288,269,300,310,298,318,297,321,282,289,630,609,633,574,595,606,579,587,611,613,585,637,530,524,543,520,528,514,515,532,514,513,524,536,335,323,299,331,294,330,331,340,307,321,338,310,328,319,328,339,324,327,337,330,324,320,333,317,318,326,328,341,317,318,320,338,332,326,310,332,334,323,270,289,273,264,260,267,268,254,257,276,269,268,577,545,564,547,574,557,535,584,578,549,563,587,557,560,553,580,586,554,558,567,584,574,581,578,550,571,568,562,550,560,462,453,451,435,459,491,497,457,470,471,464,485,465,486,588,586,612,601,621,595,596,601,613,601,601,585,592,575,591,586,590,591,585,594,575,608,588,579,572,594,480,488,491,500,498,514,499,483,457,476,495,507,484,493,288,284,267,273,270,274,283,284,297,300,286,283,581,588,588,567,569,591,594,612,591,603,592,590,615,607,576,587,579,585,609,606,429,480,475,473,467,471,502,452,479,474,615,623,616,601,609,635,616,641,603,605,623,607,606,623,604,507,519,513,515,495,528,535,510,527,518,515,532,507,479,479,467,477,491,480,475,469,467,476,477,475,404,415,430,434,438,418,428,422,409,401,418,402,416,413,309,310,312,292,322,303,300,323,309,315,323,307,316,322,314,299,307,298,307,296,302,314,307,290,475,486,460,476,484,490,470,477,476,470,552,526,506,523,530,543,533,529,523,530,520,541,529,559,570,563,563,551,572,548,575,556,558,564,573,558,567,576,552,556,547,542,563,500,495,505,492,502,502,482,492,502,489,488,474,397,383,399,386,390,404,399,383,396,387,401,381,327,318,314,335,306,314,313,291,330,324,320,335,313,315,392,442,409,407,436,417,449,420,421,453,468,458,449,428,566,585,564,565,569,590,545,468,468,452,484,469,450,482,432,453,473,302,262,288,298,305,297,279,307,289,281,325,299,305,285,296,303,297,278,280,338,350,344,336,351,339,351,340,302,306,304,524,545,522,531,563,547,520,520,528,542,531,536,539,517,512,525,538,546,547,543,523,542,524,546,545,536,545,534,468,496,505,485,507,492,470,494,483,488,486,509,490,500,487,521,505,515,514,507,503,517,496,523,465,456,452,448,438,463,454,455,316,350,352,311,328,325,336,327,468,435,477,473,490,480,452,467,481,493,454,491,463,546,545,536,552,558,563,555,556,569,568,544,570,530,535,555,573,595,585,602,614,584,599,620,601,595,618,592,582,607,591,590,593,600,467,487,480,474,459,492,463,467,466,491,593,584,575,584,593,588,589,596,590,585,601,594,600,585,578,593,582,599,593,526,546,530,539,529,541,549,541,555,534,536,537,523,541,537,530,400,406,415,408,411,421,402,410,423,415,417,419,408,410,407,406,425,351,332,326,317,329,293,314,304,308,319,308,456,455,465,459,449,463,460,461,431,455,466,468,586,589,579,557,570,597,567,565,573,599,578,505,506,507,514,509,523,502,419,416,425,428,429,421,425,421,436,436,425,421,427,444,409,403,412,406,405,400,406,398,393,391,405,399,404,411,410,399,417,292,271,292,283,273,259,252,243,253,243,236,256,261,249,246,260,251,251,256,581,580,583,544,586,604,544,606,553,561,618,571,605,585,579,590,556,580,569,584,592,566,581,584,567,582,463,462,470,450,473,464,465,433,465,472,477,475,476,479,465,461,465,472,285,288,296,285,554,591,604,571,565,582,580,564,561,578,583,593,575,569,556,539,514,514,534,525,511,536,547,511,527,516,524,518,411,393,413,416,394,398,420,416,422,404,293,295,289,292,301,294,289,287,302,285,307,285,286,295,286,300,293,252,244,244,261,254,241,239,247,247,244,247,247,250,290,288,278,283,304,270,291,279,288,276,281,293,291,291,271,270,293,265,273,278,279,304,327,305,301,313,314,304,298,310,327,322,322,304,633,684,633,616,697,579,646,639,542,548,538,555,560,546,538,535,524,520,564,535,512,530,317,330,324,318,340,321,307,323,321,327,318,330,351,315,335,325,288,287,298,310,296,293,286,331,325,316,305,333,324,331,318,323,319,314,311,326,314,313,330,315,327,318,327,333,328,329,320,315,311,329,320,326,532,553,547,530,546,544,546,542,536,537,531,523,552,526,572,347,372,360,351,365,373,337,355,345,373,320,345,368,303,318,296,305,313,317,308,298,371,362,365,356,379,349,359,343,349,366,372,358,346,365,353,337,337,336,336,350,354,341,349,336,350,348,343,330,337,338,341,328,340,291,279,275,297,273,270,276,278,286,283,275,272,283,329,315,308,313,314,321,314,325,310,330,307,317,330,323,325,324,313,316,318,303,304,316,316,307,302,327,315,306,306,321,323,314,309,316,311,315,657,654,709,675,709,671,692,672,652,664,682,658,690,681,679,670,550,534,534,564,555,553,547,540,560,551,555,520,545,534,333,324,332,306,336,319,317,328,327,349,348,540,544,544,548,544,533,588,543,565,556,550,577,555,346,339,326,339,337,336,346,344,324,339,311,359,322,306,325,322,311,643,635,632,627,630,611,637,636,620,627,630,637,633,603,616,664,644,444,431,436,429,452,438,448,416,447,453,470,430,638,657,649,629,665,620,649,655,653,650,642,649,565,524,543,526,544,541,543,403,404,412,407,408,412,414,429,411,401,425,387,280,283,288,287,287,296,290,279,287,291,292,305,280,294,285,298,302,303,572,557,594,553,559,556,591,560,558,449,464,493,465,491,494,495,471,463,463,443,477,269,243,255,242,270,273,284,242,273,265,260,277,264,268,256,251,238,271,255,258,288,289,271,282,306,282,272,271,285,276,283,316,538,495,525,545,539,549,517,521,518,511,517,500,544,419,434,422,439,446,442,409,423,449,308,292,281,311,267,283,288,311,290,309,283,304,303,283,378,384,391,397,397,423,402,402,397,500,486,476,522,494,482,503,491,484,498,469,493,487,494,481,509,491,544,548,552,551,538,545,538,538,483,480,467,486,468,488,470,458,464,488,476,475,476,471,506,469,287,259,289,268,289,281,288,270,283,284,308,284,277,281,556,569,532,538,572,530,575,556,540,560,570,541,576,556,562,540,533,548,453,477,490,484,502,462,494,476,467,483,469,495,482,500,511,495,461,300,327,286,293,295,278,294,296,293,300,302,278,267,281,279,274,270,265,270,277,256,260,282,275,264,267,289,284,265,506,486,529,494,504,487,495,496,512,495,502,505,512,492,509,517,518,334,360,321,337,341,333,344,336,306,316,305,313,305,310,296,305,328,299,321,313,315,318,334,313,322,327,335,364,342,336,281,321,294,295,301,300,303,286,308,318,295,257,262,276,271,273,270,569,557,585,575,589,588,619,569,575,564,591,603,583,593,598,560,590,573,543,513,522,520,509,505,494,523,501,513,516,344,318,330,336,355,334,336,331,341,333,345,351,333,321,319,368,341,309,346,320,311,317,293,334,318,334,322,322,311,327,313,309,310,323,332,317,317,309,319,441,465,465,447,448,496,463,445,448,450,325,317,313,321,311,322,334,330,318,333,322,324,338,322,335,324,322,350,337,304,296,285,305,295,285,299,302,287,275,286,308,293,318,334,324,312,311,321,321,326,325,330,325,349,333,593,603,583,565,586,585,577,581,606,582,598,591,585,594,564,579,565,566,546,562,565,529,573,579,557,555,544,542,308,320,320,296,343,311,316,312,276,280,292,277,301,295,289,285,287,300,276,273,276,292,302,297,275,544,566,528,543,545,561,517,581,561,568,540,580,560,582,572,553,564,560,559,557,597,585,575,577,573,589,580,576,586,593,567,448,410,462,453,436,453,443,435,469,435,451,443,461,457,453,680,666,646,648,698,656,668,660,679,661,658,682,667,680,571,566,577,566,599,573,577,570,510,543,519,524,532,521,528,531,528,518,515,521,515,520,510,515,320,326,327,591,578,575,609,608,574,606,591,519,508,491,519,511,517,502,498,531,523,513,251,285,256,256,256,291,275,252,298,273,276,270,256,265,263,253,264,247,257,245,254,266,250,246,286,265,253,242,258,250,267,255,251,253,248,260,255,270,256,269,269,258,272,275,270,309,311,292,316,319,315,278,317,292,297,301,304,297,297,305,307,284,297,566,580,574,584,599,579,568,588,567,574,561,597,551,564,563,582,434,412,424,442,389,441,415,417,397,398,418,404,389,429,411,405,429,428,425,408,425,410,424,403,427,406,433,412,416,441,395,333,311,306,324,303,305,294,309,284,273,283,274,263,269,262,256,256,255,278,281,279,280,278,279,292,294,289,298,287,303,287,290,285,299,309,298,295,292,272,595,607,616,597,590,622,589,630,592,592,585,590,598,603,507,481,540,480,486,509,489,471,509,510,250,270,242,253,237,282,237,249,235,272,221,229,245,313,311,295,327,308,276,304,295,303,293,305,308,296,684,669,695,680,686,665,643,670,711,634,585,627,558,608,617,586,616,588,604,604,629,612,589,624,612,632,617,505,504,497,489,502,492,515,517,507,502,502,487,496,491,504,374,332,351,344,340,329,346,326,313,322,320,327,356,393,399,404,382,398,395,393,379,386,385,396,377,364,394,411,413,422,432,421,419,405,408,412,402,412,418,296,292,293,293,300,266,301,312,294,614,642,602,603,597,605,574,615,591,606,627,640,630,601,587,617,565,553,569,538,565,568,577,581,573,562,563,538,501,493,455,481,467,490,512,475,502,472,483,492,483,497,508,480,473,485,476,484,338,310,323,317,333,305,338,337,334,370,347,329,342,351,329,339,365,347,334,323,336,421,399,401,394,386,416,406,395,425,403,408,410,324,321,325,335,333,337,318,331,313,328,337,283,276,273,262,279,270,275,259,269,275,280,274,267,272,275,277,580,600,609,611,591,619,635,619,586,568,599,580,619,578,620,450,437,454,443,459,463,475,479,447,454,459,477,475,457,462,294,304,304,296,288,290,329,304,317,331,303,300,305,309,302,564,536,547,529,536,552,567,539,539,532,374,347,352,349,341,376,338,345,347,374,360,364,290,280,269,286,291,292,285,303,287,280,285,292,286,307,305,591,568,550,593,556,556,567,609,576,596,563,552,560,556,582,563,493,518,487,517,509,518,532,538,518,513,497,535,517,514,504,510,512,287,342,295,317,336,310,309,307,318,295,358,374,357,354,371,356,368,369,362,366,354,356,377,347,368,324,311,322,349,350,328,313,331,344,331,314,341,307,331,302,278,296,290,289,281,286,310,290,298,636,616,648,616,609,623,629,653,647,619,647,570,558,553,550,538,548,535,525,512,554,547,553,542,479,482,494,482,477,505,481,480,292,306,314,319,332,315,335,289,306,297,308,324,303,307,319,297,256,246,248,236,247,243,240,243,244,247,248,240,241,643,627,606,636,621,666,627,606,621,637,554,598,571,553,534,580,547,558,575,561,553,550,551,567,558,284,284,265,283,273,297,303,314,294,278,288,287,301,286,293,288,267,292,281,283,310,287,296,293,315,297,314,289,302,300,309,313,313,296,313,315,319,305,303,317,300,314,542,552,560,528,527,523,567,539,534,530,537,536,559,529,328,342,317,315,318,334,333,301,314,300,338,314,326,340,298,625,592,616,624,609,602,590,623,586,674,632,661,651,657,649,538,502,530,511,280,287,298,277,303,297,313,276,261,261,263,274,260,235,270,266,283,254,329,344,310,353,547,564,571,558,547,566,538,554,561,554,572,579,556,557,572,561,549,561,555,562,571,574,567,564,550,505,521,516,504,517,519,508,520,540,516,498,491,501,513,497,510,517,496,505,539,527,516,290,305,275,251,274,276,291,299,265,262,295,264,231,240,247,252,249,254,237,233,252,246,268,258,228,240,254,256,260,474,460,476,482,455,459,473,458,471,475,473,479,459,483,475,430,428,426,428,429,428,422,434,435,437,302,280,300,291,282,304,297,284,280,296,293,274,292,283,269,282,276,270,280,268,269,251,246,240,267,249,241,247,257,228,239,248,585,612,643,598,597,680,579,540,655,664,658,635,573,558,575,580,574,565,541,554,559,555,584,345,340,334,345,301,296,320,304,304,303,281,274,274,278,289,282,280,269,273,286,279,300,293,295,298,291,297,305,293,281,287,300,299,300,297,294,294,312,306,288,303,307,300,302,302,303,309,403,402,399,377,393,379,405,380,407,391,404,445,441,419,434,437,425,414,410,412,442,441,436,416,396,421,422,447,569,561,569,602,583,565,591,546,566,566,600,575,569,536,590,588,569,581,634,646,636,673,636,657,649,661,654,652,649,614,652,638,670,676,533,539,537,556,574,566,554,345,313,301,296,318,312,304,338,322,335,323,309,305,307,296,300,303,286,320,318,306,298,299,304,305,324,312,308,300,273,294,282,281,288,283,277,287,293,279,275,284,303,633,629,575,669,591,629,626,618,641,605,594,639,574,642,648,638,648,625,520,500,510,527,506,504,530,504,505,512,516,489,527,520,515,522,516,269,297,285,293,268,260,256,275,286,290,290,274,280,272,280,293,290,277,301,298,281,288,278,276,277,357,354,365,356,375,387,374,368,389,399,406,402,378,592,606,585,613,610,597,589,565,602,614,613,601,583,628,444,397,423,420,400,412,420,411,437,437,417,403,431,442,551,523,539,515,402,431,419,421,424,435,430,422,246,253,257,262,265,261,257,262,261,262,269,232,272,267,249,268,265,268,285,281,281,261,286,291,271,263,255,266,275,270,279,268,676,605,689,669,631,682,695,650,648,684,653,638,549,550,552,548,534,523,546,530,541,561,546,537,551,537,574,532,555,541,546,548,277,275,291,283,259,282,287,291,286,286,574,583,566,543,539,553,534,566,568,570,540,539,541,545,576,564,539,504,512,515,547,525,513,541,539,532,453,444,449,442,450,444,450,459,435,635,644,618,625,628,653,648,643,626,643,487,515,494,521,505,513,492,510,514,534,320,320,312,317,323,338,305,331,314,323,311,312,328,328,323,369,384,362,362,383,373,355,376,368,379,296,308,308,302,311,284,306,308,308,289,300,301,309,291,323,594,595,565,563,582,593,588,579,580,590,614,602,592,600,581,580,507,522,496,516,485,515,312,326,320,283,325,313,280,308,317,316,321,311,323,316,329,309,323,329,326,298,309,340,320,320,296,299,255,306,271,289,279,276,296,307,277,321,326,314,288,305,309,307,308,311,305,378,369,371,377,400,385,387,381,395,366,413,375,379,361,345,351,362,375,369,343,371,346,364,363,362,350,337,335,349,351,345,341,338,353,333,364,340,351,333,337,620,606,577,627,612,604,597,586,585,579,577,596,596,583,582,594,600,596,566,559,593,416,468,413,467,463,422,428,420,438,441,415,434,431,441,446,424,447,429,476,282,277,290,279,300,287,283,279,271,272,286,276,278,277,287,265,275,527,547,512,480,506,503,522,535,528,535,535,524,531,517,529,523,512,514,516,492,510,485,502,489,499,495,508,502,493,396,421,410,420,441,427,422,404,419,246,272,264,266,272,273,272,264,267,263,272,274,248,294,267,309,313,324,315,308,297,307,290,301,300,293,304,282,314,302,317,267,266,268,275,287,287,249,248,267,267,262,269,270,257,265,280,245,263,265,271,254,236,237,233,228,257,240,237,240,244,238,239,240,243,244,246,232,233,288,299,289,289,299,289,297,288,287,287,288,285,287,284,294,313,314,334,317,319,329,307,329,337,325,320,331,317,335,328,340,339,316,314,587,607,591,602,597,579,591,613,592,591,582,605,595,569,610,584,554,347,366,368,378,376,381,374,343,389,378,378,378,374,388,356,438,420,410,423,417,415,413,415,420,418,416,416,411,589,554,542,535,570,550,554,575,562,568,554,568,547,568,561,574,557,548,571,535,507,528,535,518,530,522,522,536,523,517,526,522,520,540,544,524,512,347,329,346,353,345,342,333,353,342,331,337,345,334,318,356,345,361,351,325,323,334,319,327,329,316,323,327,320,332,349,346,337,300,298,293,280,286,571,573,564,569,561,582,579,575,576,525,526,570,557,560,470,486,462,478,473,491,469,475,485,454,470,466,458,473,459,475,489,458,452,479,644,634,641,623,653,629,648,665,650,631,636,662,644,529,531,514,495,527,511,522,510,516,506,511,503,617,615,626,623,615,640,613,627,641,633,633,607,542,529,535,527,529,536,530,530,537,523,413,411,413,437,409,407,422,290,293,287,280,262,297,298,297,286,281,276,292,293,287,287,296,623,606,560,634,618,517,511,504,503,513,508,482,478,497,501,497,318,319,312,323,341,346,342,333,331,324,317,321,259,254,270,275,266,270,269,274,257,255,274,246,267,256,279,236,245,249,215,231,238,232,241,235,244,249,243,249,236,246,251,258,261,249,257,246,255,253,266,267,275,256,258,269,267,268,260,253,267,255,255,248,255,257,293,295,301,299,300,315,304,312,299,306,296,299,329,323,327,332,318,320,316,324,312,315,319,322,318,309,321,310,320,327,323,325,327,297,326,316,311,308,323,308,321,309,297,321,301,275,271,283,262,272,280,274,260,259,268,256,258,251,260,256,258,255,246,254,261,245,243,244,235,256,239,241,261,256,261,267,239,249,240,247,255,245,246,239,241,238,249,241,245,240,239,237,235,231,248,289,268,278,270,285,298,285,284,388,371,382,384,383,365,345,373,381,382,353,404,360,377,384,382,343,360,359,416,401,399,383,407,400,376,394,382,388,392,400,402,410,403,383,393,373,397,360,362,356,384,345,342,660,668,655,669,684,680,705,703,657,665,679,699,685,599,597,574,599,591,585,582,561,556,560,569,560,617,573,593,563,409,439,468,446,467,414,442,461,442,458,441,444,423,403,403,386,395,378,405,411,389,401,394,406,294,315,301,301,306,296,290,306,312,303,295,285,300,652,632,619,659,660,626,615,628,621,665,657,627,648,606,669,631,650,600,643,596,532,546,545,518,533,531,567,558,539,532,529,522,499,512,539,508,505,521,519,515,520,330,343,357,357,329,333,355,325,352,343,362,337,315,351,349,323,423,431,413,437,428,423,443,429,424,433,433,425,427,595,590,591,587,572,567,580,585,584,575,569,586,566,582,525,528,515,506,499,524,514,547,504,508,522,513,514,507,510,522,528,662,615,629,640,642,645,658,644,625,653,640,486,489,456,491,469,473,512,459,468,250,266,263,257,259,262,278,272,233,260,286,273,270,652,679,610,642,633,673,675,676,684,640,695,546,551,557,550,567,538,540,539,533,529,564,554,540,539,314,332,326,335,336,346,354,326,312,312,314,333,375,362,380,372,380,394,381,396,382,309,344,327,309,311,332,329,331,340,327,316,317,333,329,478,466,447,464,469,466,457,460,428,454,563,568,566,562,563,558,580,576,574,566,457,501,492,472,486,452,489,518,483,489,485,507,504,492,448,449,477,616,614,643,627,603,628,614,607,608,596,617,593,595,573,585,580,572,590,566,578,578,571,571,523,511,524,512,502,520,497,525,392,400,401,381,390,391,402,380,403,418,396,411,398,396,306,315,305,296,292,315,288,321,298,317,295,309,319,324,306,300,277,281,267,288,276,270,291,278,286,285,282,270,275,290,282,286,290,292,295,295,291,284,279,288,289,276,287,278,288,280,290,528,528,494,514,534,505,536,521,510,539,517,523,520,515,560,556,563,567,568,576,585,583,567,550,555,553,577,596,595,593,573,570,566,571,566,552,472,459,479,474,467,488,499,495,323,294,287,276,280,316,306,322,279,291,300,311,267,249,248,221,235,252,239,252,294,285,296,296,287,282,277,279,281,282,302,286,281,547,555,564,552,571,565,561,572,564,579,576,583,569,547,360,361,327,342,343,347,371,346,385,333,345,355,370,392,377,429,394,420,409,410,424,415,409,394,426,604,586,595,589,571,590,583,583,603,560,567,606,503,510,525,529,522,535,536,535,531,532,552,569,547,558,539,566,571,571,557,560,561,548,572,582,565,599,563,587,562,567,561,568,565,569,564,558,497,504,525,515,498,529,504,522,531,483,512,485,527,510,280,289,268,263,282,273,271,265,272,272,264,284,266,273,289,287,275,288,248,256,279,286,501,477,491,489,486,496,489,488,512,487,489,489,496,488,478,309,284,325,326,312,319,294,302,322,290,312,299,317,299,312,290,305,343,271,276,285,270,273,280,262,257,272,270,660,671,691,657,675,665,669,679,679,638,660,658,685,640,570,612,597,626,599,606,607,593,616,599,616,438,436,449,438,454,433,439,440,443,457,445,437,459,435,333,332,339,328,348,331,343,348,342,331,334,372,329,345,347,327,327,323,293,283,291,290,296,288,276,296,289,275,302,306,290,304,293,294,298,289,298,305,287,289,338,319,350,336,365,322,341,329,321,356,331,336,326,326,332,321,319,321,322,319,310,319,306,307,309,297,306,307,317,314,315,327,312,504,494,487,455,477,495,494,480,489,485,497,531,543,545,538,528,597,602,600,590,575,600,595,468,448,473,464,448,413,442,437,447,449,689,647,683,666,681,652,668,655,676,682,601,579,605,590,587,583,611,592,595,576,580,586,590,591,572,584,596,586,465,455,461,430,456,462,457,454,446,458,456,452,450,461,310,308,296,294,327,311,329,310,267,287,269,281,268,287,269,272,284,284,263,268,275,281,270,285,271,271,278,270,283,271,271,280,279,257,288,632,658,642,657,651,534,544,543,548,559,559,520,562,542,541,552,556,534,418,420,402,401,405,434,402,417,387,410,401,593,619,593,596,592,601,599,611,612,605,603,593,596,630,603,589,591,600,527,497,488,493,476,542,502,517,500,518,502,504,500,491,307,298,310,296,324,304,303,295,312,292,294,296,295,293,299,272,595,569,594,579,553,587,564,566,479,489,468,579,589,580,600,589,570,587,569,561,580,587,564,573,431,439,449,446,432,432,232,218,265,252,277,264,226,251,242,245,248,264,247,236,237,262,261,249,237,244,278,273,285,266,297,314,264,528,503,536,512,527,524,519,524,518,543,496,516,520,525,497,526,502,348,374,334,352,351,333,363,342,350,353,323,289,294,279,289,290,285,290,286,303,270,280,295,291,265,260,265,243,261,279,255,243,271,265,241,258,254,246,260,229,244,252,247,247,232,252,237,239,238,244,251,241,242,249,240,246,238,688,688,644,660,698,627,687,670,659,666,672,674,680,663,706,714,676,543,542,551,561,521,527,525,570,327,308,351,326,326,313,333,339,319,332,340,335,334,330,321,335,337,327,326,339,343,336,316,345,347,329,343,332,322,289,284,285,281,292,269,284,275,279,280,295,275,299,283,284,280,280,284,289,293,319,298,323,283,314,347,292,295,298,303,304,303,294,315,327,300,524,493,526,521,529,512,513,610,600,584,589,584,582,585,598,597,595,581,587,593,614,593,466,488,489,476,475,494,500,475,498,485,483,518,466,277,278,281,277,278,273,270,281,283,247,294,253,263,275,277,263,269,285,258,276,279,269,264,266,261,249,270,253,258,272,265,247,262,256,291,311,291,308,294,306,319,302,283,306,310,305,315,305,310,317,308,327,325,322,338,313,325,315,329,324,330,621,625,641,629,619,606,638,610,658,625,626,598,571,537,541,576,553,545,560,532,546,539,554,546,539,544,536,524,337,333,304,298,327,330,336,336,273,313,283,295,295,609,619,631,629,642,636,611,580,650,645,625,625,644,612,669,526,539,517,519,530,516,538,535,514,505,526,517,519,513,540,610,602,594,600,599,610,602,607,612,612,475,469,481,471,467,470,477,440,494,475,467,479,334,321,319,315,318,330,335,301,329,323,334,321,302,675,733,679,680,647,713,649,688,653,671,732,695,687,697,635,678,526,523,531,503,545,511,501,519,531,522,516,516,482,283,302,287,292,305,310,293,317,274,300,294,267,290,288,307,312,285,276,288,277,283,283,276,275,276,282,298,278,291,294,282,286,294,329,312,308,327,326,327,327,324,334,327,323,323,327,319,309,306,314,314,322,308,318,304,265,265,266,264,261,260,259,261,258,240,262,252,269,286,281,277,280,285,282,293,282,286,284,275,277,283,265,355,337,311,352,364,365,331,351,350,341,337,349,341,338,341,333,336,335,339,329,370,317,333,364,365,350,362,342,336,348,357,344,308,296,296,303,298,302,305,299,305,306,306,297,625,662,732,660,673,680,698,701,674,572,553,558,549,581,555,543,562,562,554,540,587,577,418,426,417,427,428,439,411,443,446,436,420,578,571,571,580,562,571,579,568,579,554,586,571,555,563,583,561,570,556,564,559,565,555,557,574,566,557,463,487,454,483,469,464,475,484,457,473,480,465,549,563,497,548,550,566,541,559,552,553,553,580,589,588,591,593,578,577,589,582,569,578,494,489,508,501,498,494,490,487,506,492,497,643,652,640,647,658,621,664,616,652,647,636,511,511,524,506,526,505,525,518,519,510,509,513,501,512,538,494,523,516,510,518,495,329,325,293,311,321,309,306,311,333,309,299,312,331,454,470,440,472,462,477,467,479,464,473,480,453,342,347,341,344,320,333,352,345,341,330,338,344,341,318,329,303,346,347,350,317,340,342,309,339,305,340,321,333,338,327,326,330,585,575,595,596,588,588,605,580,592,567,602,604,580,594,595,562,304,317,337,323,296,312,350,339,321,299,289,289,287,281,271,285,290,290,274,271,278,259,291,278,272,546,516,537,531,538,530,537,530,526,519,555,537,548,525,514,517,513,403,407,411,428,416,430,424,420,424,410,405,415,433,420,407,415,426,425,348,353,325,335,327,348,324,343,336,353,336,334,337,330,460,429,460,454,446,448,456,468,325,320,322,347,321,294,291,282,289,268,277,281,275,287,264,274,277,233,239,228,234,247,240,253,246,234,228,230,242,231,226,256,252,249,262,255,270,252,257,258,257,270,247,253,254,260,248,304,314,329,306,309,307,310,324,320,315,313,316,318,300,338,340,336,355,357,349,333,330,336,370,323,345,318,344,336,333,347,818,761,732,720,774,807,769,798,778,766,730,826,750,766,606,625,647,682,658,668,646,609,660,685,638,661,657,669,682,278,314,294,278,301,323,317,330,298,326,309,245,268,262,261,248,246,258,279,275,237,612,583,591,602,616,612,587,654,604,594,593,596,575,496,469,506,519,481,484,485,489,343,329,350,334,348,322,337,339,328,344,347,323,333,353,343,555,534,530,547,553,536,535,547,331,309,341,328,311,325,571,566,596,596,559,605,594,604,582,590,560,600,579,575,573,608,567,589,442,411,434,419,484,455,450,458,458,448,478,468,438,450,458,458,457,483,482,444,445,461,246,234,235,230,277,237,233,248,236,224,228,254,250,298,280,289,281,296,275,336,354,334,352,348,335,340,337,366,374,358,386,368,368,377,377,377,372,360,391,359,361,299,301,289,289,298,316,299,302,305,310,291,594,557,528,538,560,551,539,582,571,540,562,518,502,497,508,483,278,290,301,309,283,303,304,299,292,292,297,293,319,330,322,329,336,344,331,541,547,528,535,515,517,543,536,544,522,515,526,498,501,522,522,540,520,305,326,311,327,307,329,308,312,301,326,304,315,325,313,332,243,235,237,247,240,237,242,241,240,233,240,232,245,243,254,232,248,312,320,309,326,334,315,328,328,330,338,341,341,339,336,330,322,334,346,344,337,331,338,342,475,510,505,496,504,495,518,506,491,506,516,514,416,416,412,428,429,411,421,409,399,427,428,424,417,432,275,302,297,304,282,289,298,298,282,286,293,289,290,652,586,594,631,645,602,611,583,605,586,589,550,541,550,559,519,545,515,544,318,329,304,344,324,329,318,326,339,317,643,653,625,682,666,676,682,658,653,655,638,544,533,525,537,529,529,521,533,543,516,535,538,559,530,511,507,523,499,516,514,500,493,497,502,499,542,546,550,553,553,546,549,553,564,551,547,558,547,540,546,539,494,482,492,473,490,447,492,495,490,476,477,473,467,490,488,329,325,309,317,318,313,308,325,295,321,311,318,334,623,618,618,634,627,646,631,610,614,615,648,650,630,515,509,495,544,498,512,508,506,477,502,534,513,497,515,296,279,309,292,286,299,294,293,288,294,340,341,323,317,315,321,335,326,318,324,328,315,319,347,317,348,325,327,318,339,325,339,315,346,346,342,336,327,348,339,339,304,297,288,295,303,300,286,294,294,293,302,304,295,289,289,292,575,581,563,536,531,550,559,547,541,532,568,573,583,548,473,516,510,504,497,515,515,512,484,483,511,482,489,357,345,352,326,346,346,315,343,330,333,397,402,376,395,402,409,390,400,396,401,371,368,396,409,403,394,387,334,335,345,357,325,339,322,344,355,352,519,508,502,525,550,505,525,560,508,518,533,512,498,549,491,496,476,503,495,488,496,477,486,497,344,366,360,367,366,384,360,365,372,389,347,345,562,555,557,555,531,534,573,546,553,562,579,560,550,567,575,553,540,566,556,438,443,463,432,453,443,445,456,433,454,441,435,451,279,319,288,302,313,311,319,290,299,283,286,297,295,312,305,291,325,625,590,599,623,612,663,637,613,639,645,647,631,648,606,611,627,595,506,517,518,481,512,524,496,514,488,509,515,501,490,511,484,453,459,465,468,457,477,494,467,460,456,469,600,591,592,594,568,577,587,603,590,578,575,585,583,590,602,599,587,576,523,509,503,516,517,504,516,513,529,520,517,539,522,520,529,519,502,536,532,529,415,408,410,406,420,416,421,430,428,419,420,428,414,393,410,405,407,406,409,402,402,415,408,396,408,395,314,314,308,302,330,300,323,312,301,318,320,438,430,424,439,415,435,426,437,425,446,450,427,417,452,524,523,532,519,534,523,532,535,541,540,536,521,517,548,521,539,529,527,535,520,516,520,530,525,524,583,593,578,603,591,585,596,578,570,570,458,465,451,463,476,473,463,450,445,449,455,468,340,316,332,345,335,330,342,334,418,428,405,409,422,430,447,419,424,427,443,399,432,328,335,322,300,310,319,306,325,325,319,278,285,272,285,255,282,282,283,277,277,274,589,597,581,583,608,589,592,507,523,492,494,496,526,494,472,494,500,511,522,485,488,496,495,501,505,507,509,501,505,522,505,328,335,317,334,328,345,324,320,343,331,323,296,318,620,659,665,668,661,670,670,645,647,643,666,662,515,517,511,527,551,515,525,512,536,522,539,508,519,542,527,548,534,381,383,363,369,377,369,365,357,366,346,370,400,375,350,370,546,535,523,521,532,530,555,534,530,536,557,551,573,557,559,567,558,574,584,545,570,539,585,559,569,467,515,476,481,476,443,483,463,466,500,535,539,543,526,532,542,510,536,547,549,552,558,522,544,561,546,543,547,534,534,549,445,457,438,444,463,424,473,450,469,451,459,437,454,457,436,420,454,593,551,553,565,574,542,558,554,524,577,552,554,572,568,531,528,570,565,542,579,558,581,559,579,566,564,571,586,575,577,567,590,457,486,470,459,487,462,460,626,611,620,622,627,638,623,623,611,616,529,532,542,532,542,546,550,523,518,542,532,549,540,547,530,443,403,419,413,405,397,408,425,438,417,414,419,411,422,428,418,417,422,419,434,426,423,414,416,315,323,312,308,316,319,321,311,317,305,311,328,312,328,303,444,482,452,437,461,442,436,463,454,449,447,458,413,386,364,367,374,407,385,379,358,579,564,591,575,570,567,545,576,580,561,593,471,479,461,445,476,474,454,474,472,304,305,289,293,302,296,292,280,289,303,306,291,295,288,295,287,306,298,294,296,279,285,277,279,308,277,285,537,540,526,537,529,525,529,565,533,573,404,416,413,380,404,368,413,426,372,396,386,387,409,412,405,388,381,415,387,511,526,526,526,536,516,517,509,514,544,515,505,528,517,523,532,546,559,537,565,537,550,549,554,540,534,454,484,486,490,483,489,502,503,500,502,475,468,489,470,251,279,305,270,253,266,262,282,272,282,287,269,280,300,315,296,306,289,304,286,299,307,292,302,305,307,292,288,309,302,281,319,296,295,301,295,306,292,298,284,290,290,287,287,294,302,279,288,292,277,285,286,291,298,295,299,316,301,294,283,284,293,303,507,525,502,504,527,521,518,508,523,584,601,578,592,596,590,605,600,606,584,590,613,594,537,539,543,526,530,525,524,517,533,527,529,531,517,531,556,569,553,560,559,542,547,554,549,553,557,575,558,527,539,310,312,327,339,318,334,338,318,344,334,346,324,334,321,334,319,619,580,567,572,543,600,563,582,592,586,586,552,576,594,569,596,597,494,482,288,292,299,297,291,296,295,583,602,592,597,640,646,644,603,630,618,603,629,631,512,529,518,514,540,511,489,531,515,528,521,497,528,534,358,340,374,360,333,577,564,594,605,543,567,299,355,332,321,320,325,328,338,305,548,562,565,555,536,570,556,582,583,564,573,561,566,572,561,548,572,565,559,552,594,555,577,604,587,588,604,585,599,579,504,489,503,506,489,508,469,497,493,505,495,505,527,325,299,323,313,314,298,299,311,321,313,318,302,303,312,314,309,328,325,320,317,308,313,310,299,312,300,313,309,571,565,563,577,544,566,571,571,577,564,607,566,563,324,338,301,342,317,294,339,323,325,302,332,331,328,321,591,593,585,599,592,577,596,590,622,611,583,605,598,597,573,555,620,444,412,437,384,449,432,420,435,413,412,403,436,413,419,418,437,424,258,245,259,248,242,264,269,262,234,229,259,237,262,239,239,264,250,259,233,251,248,242,245,255,248,246,289,294,295,292,290,289,283,291,285,280,288,284,294,293,294,327,298,306,297,313,319,296,291,314,311,531,550,531,530,550,571,546,544,539,533,527,551,541,268,328,309,302,320,310,335,322,333,304,323,316,313,294,336,286,316,307,473,511,524,500,496,505,510,526,505,507,413,451,461,474,453,449,438,450,430,434,544,551,561,561,579,559,556,543,543,569,566,558,557,534,507,499,537,516,528,477,515,511,521,504,303,296,308,277,317,293,312,301,317,334,303,286,304,292,320,300,331,623,634,603,609,611,618,623,594,591,605,610,465,463,469,461,443,477,442,457,451,458,463,453,445,429,288,281,291,279,294,308,308,285,297,311,274,292,300,307,595,597,607,586,580,569,601,623,614,596,580,579,568,565,582,579,560,578,565,562,576,559,560,576,559,570,558,452,460,469,467,470,478,462,475,438,460,470,481,467,488,561,587,565,579,560,558,558,558,578,561,564,575,510,519,514,508,514,499,523,526,497,506,500,513,490,502,507,371,377,391,378,411,396,400,409,365,382,380,365,375,317,323,326,328,317,335,320,312,316,302,318,317,296,298,286,298,297,297,293,303,291,287,287,296,294,294,304,283,281,268,293,283,267,281,280,271,279,265,267,273,269,270,273,273,272,270,261,260,282,265,274,279,638,650,645,659,644,672,601,626,631,619,608,615,663,610,593,645,625,674,612,604,635,544,559,545,529,569,564,532,533,542,535,539,519,558,534,548,541,568,323,323,322,305,301,296,318,316,322,311,346,307,270,281,288,285,272,298,284,277,298,282,283,267,297,274,351,330,348,324,315,333,348,330,333,345,339,312,345,347,327,303,311,300,304,302,300,293,557,529,526,540,519,533,565,562,552,562,574,551,340,364,341,382,364,320,347,369,347,366,422,458,435,434,451,443,456,451,640,594,630,632,626,632,634,651,640,624,635,625,657,628,598,633,603,603,606,483,458,468,511,473,480,470,489,519,475,483,486,464,465,497,293,337,326,291,302,284,309,318,324,317,312,313,293,323,317,304,316,327,335,513,515,523,484,521,530,490,520,514,508,516,518,498,513,323,301,316,319,325,298,321,301,299,297,330,300,295,303,307,305,246,241,241,232,262,263,251,242,255,239,235,252,243,245,262,262,569,566,587,563,588,584,605,588,594,628,601,590,594,560,560,531,519,519,516,545,515,520,519,536,517,522,542,534,542,507,548,510,495,523,500,530,617,597,628,609,581,588,561,607,573,579,605,549,572,579,590,579,571,569,584,573,577,572,569,576,576,562,569,570,581,575,509,482,499,507,485,486,496,499,501,500,470,560,550,517,554,584,545,525,503,503,513,513,509,502,521,519,511,476,506,516,518,507,486,513,519,521,490,526,543,513,548,543,543,537,508,484,495,501,516,510,511,506,515,492,506,498,518,306,317,293,295,299,307,297,283,293,321,269,277,267,280,268,261,266,256,276,274,262,277,260,271,280,277,655,582,563,637,665,539,548,549,540,549,527,524,537,474,510,464,469,464,464,473,460,462,456,466,455,463,478,469,481,473,467,582,577,584,593,576,576,588,585,578,581,577,581,601,592,573,593,606,580,586,593,589,587,603,416,415,425,434,442,420,436,477,485,449,434,417,260,272,250,265,277,278,268,267,271,259,256,266,262,263,274,268,251,456,472,448,464,470,473,430,480,472,488,369,352,348,362,339,346,319,345,355,332,365,361,366,300,307,306,297,316,295,294,296,322,320,325,326,314,331,330,325,328,332,329,346,327,326,330,325,321,320,318,328,306,309,309,310,299,287,292,290,287,290,293,298,462,468,485,481,463,527,471,481,500,477,498,495,494 0 257.980391 0 0 0 diff --git a/test/trans_trunc.exp b/test/trans_trunc.exp old mode 100644 new mode 100755 index d968573..e39e263 --- a/test/trans_trunc.exp +++ b/test/trans_trunc.exp @@ -1,12 +1,19 @@ #slow5_version 0.2.0 #num_read_groups 1 @asic_id asic_id_0 -@exp_start_time 2022-07-20T00:00:00Z +@exp_start_time 2026-02-20T00:00:00Z +@experiment_name experiment_0 @experiment_type rna @flow_cell_id FAN00000 +@flow_cell_product_code FLO-PRO004RA +@protocol_run_id protocol_run_0 +@protocol_start_time 2026-02-20T00:00:00Z @run_id run_0 @sample_frequency 4000 +@sample_id squigulator +@sequencer_position P0 @sequencing_kit sqk-rna004 +@system_name PCA000000 #char* uint32_t double double double double uint64_t int16_t* char* double int32_t uint8_t uint64_t #read_id read_group digitisation offset range sampling_rate len_raw_signal raw_signal channel_number median_before read_number start_mux start_time S1_1!R1_92_1!0!1637!+ 0 2048 -298.95198 299.432068 4000 50499 798,704,819,691,722,748,767,674,714,708,761,661,716,713,697,697,693,724,761,731,775,762,792,746,769,741,741,673,724,736,737,1018,1037,1036,1047,979,1039,1009,1014,1022,1028,1058,1064,1023,1068,1100,1003,1049,1039,984,1036,1039,1031,1041,1064,1041,1031,1041,1083,1035,1007,1043,979,1007,976,1009,1045,975,997,1044,1003,1027,1062,1008,981,998,1024,1026,1003,1023,1032,1009,1010,1038,1051,1001,1006,1036,962,1036,991,988,1039,940,928,941,938,918,936,901,914,941,946,978,931,983,976,905,962,894,931,948,902,908,948,937,926,910,950,921,930,921,973,908,856,825,856,860,830,825,886,831,855,830,882,835,887,837,875,826,828,855,868,824,845,835,843,898,829,821,838,868,828,845,825,1068,1060,1071,1038,1020,1045,1049,1041,1080,1039,1041,1021,1033,1001,996,1042,1026,1048,1009,1032,1032,1079,1012,1018,1039,1058,1040,1069,999,1046,1043,972,978,983,1005,995,1000,993,965,973,952,983,985,975,968,991,985,949,981,1014,990,981,999,943,950,987,983,996,958,976,989,980,902,873,872,873,943,898,917,923,948,923,939,941,946,919,877,915,887,907,922,932,915,881,894,919,894,938,883,958,923,896,888,824,821,851,839,837,816,857,795,802,826,868,823,849,824,860,885,822,822,850,821,874,822,811,866,822,860,862,824,825,835,806,782,778,803,782,827,820,787,822,848,771,732,806,798,819,771,803,844,768,776,782,759,725,813,803,779,793,817,808,724,811,793,1060,1034,1010,1029,1077,983,1028,1051,1055,1019,1035,1039,1046,1034,1052,1031,1036,1021,1038,1047,1063,1058,1062,1061,1048,1043,1043,1049,1021,1058,1035,997,955,951,979,966,1009,985,1013,978,1001,972,949,951,994,988,1007,934,927,988,927,964,982,977,963,965,963,1026,960,993,987,954,841,923,870,877,914,938,974,908,870,927,789,892,844,933,846,948,946,922,902,870,832,900,994,956,840,901,1026,858,928,912,826,1079,1159,1092,1100,1115,1082,1104,1099,1144,1098,1072,1091,1104,1084,1107,1111,1141,1153,1093,1143,1081,1142,1110,1087,1106,1137,1070,1145,1091,1108,1102,1076,1037,1018,1050,992,1113,1061,1063,1035,1115,1080,1038,1090,1123,1042,1076,1044,1097,1062,1012,1036,1045,1045,1044,1040,1052,1030,1058,1031,1052,1057,1022,1040,1029,1020,1045,1083,1010,1051,1049,1041,1085,1022,1000,1056,1043,1032,1067,965,1009,1031,1013,1037,1042,1016,985,1019,1058,991,1066,1056,995,907,913,887,915,957,916,922,972,917,940,877,906,967,966,936,922,918,961,905,916,892,932,929,911,942,930,902,895,943,911,955,875,856,851,852,869,865,877,835,849,871,848,859,875,850,851,829,868,827,856,845,838,847,843,838,861,851,874,864,858,841,888,1134,1058,1127,1117,1152,1146,1081,1067,1094,1083,1095,1093,1155,1123,1094,1111,1112,1088,1131,1061,1024,1074,1036,1093,1089,1048,1087,1147,1079,1175,1133,1004,1046,1031,1068,1001,1018,1110,1024,1020,1052,1031,1028,1052,1029,1050,1044,1032,1003,1048,1035,1069,1028,1009,1038,1061,1066,1017,1034,1049,1071,1043,950,964,1006,964,988,980,994,1011,950,984,952,1028,978,962,997,995,986,1001,998,970,1010,934,957,1018,971,964,966,945,969,960,968,963,980,920,972,965,1011,985,954,933,954,955,948,1022,999,1013,974,946,991,1054,1004,1014,983,947,951,964,1020,972,979,935,1003,993,832,852,867,850,861,872,875,833,805,843,843,852,872,866,880,886,837,854,891,874,864,873,846,876,856,840,925,894,873,893,858,858,918,866,869,829,852,849,860,925,894,851,863,790,856,898,867,887,883,836,875,865,858,878,861,882,931,839,863,834,861,876,825,831,825,810,838,838,862,817,795,833,838,831,826,854,841,867,811,853,793,825,820,865,804,814,849,887,910,843,856,832,814,798,811,825,761,829,779,819,766,785,786,795,809,801,812,785,817,780,814,817,810,814,822,804,795,801,794,793,798,801,803,804,772,791,758,777,789,782,767,785,775,802,744,761,803,740,790,790,808,778,834,769,785,750,789,780,798,761,717,744,770,778,753,979,1013,1029,1003,1038,1016,986,986,988,1025,959,994,990,1013,998,990,992,961,993,1026,996,1013,1040,1053,982,915,962,981,1054,961,945,861,896,864,878,857,863,866,846,846,873,871,836,860,843,867,882,850,870,841,818,884,863,808,849,823,884,864,847,883,868,907,861,818,811,858,884,884,814,853,828,808,863,810,876,831,827,866,848,901,784,788,800,853,811,811,774,801,782,766,857,791,926,1008,1051,1016,1035,1035,1043,1035,1012,1021,1016,1053,1051,972,997,997,1004,1044,989,1039,1018,1047,1005,1044,1000,1029,1032,989,1027,991,1062,1025,1000,1029,1027,930,1013,913,909,1007,1042,977,1014,935,1009,1006,1120,949,976,977,1014,1015,1010,972,927,1032,982,1036,1023,1018,982,1001,934,1099,1120,1176,1156,1118,1119,1118,1103,1137,1178,1117,1169,1097,1167,1155,1088,1116,1171,1134,1150,1131,1139,1110,1121,1163,1137,1134,1122,1130,1129,1155,1124,1124,1131,1121,1109,1123,1161,1115,1100,1146,1087,1133,1134,1120,1090,1081,1059,1092,1073,1096,1119,1123,1107,1083,1120,1073,1085,1132,1127,1112,1138,1036,1013,999,1044,1009,1050,1031,1019,990,987,1035,1047,1015,1031,1025,1014,982,1011,1048,1035,1043,1044,1056,1022,1009,1044,1023,1026,1069,1046,1018,868,867,890,934,852,885,882,866,953,873,881,882,831,877,892,863,903,846,918,924,906,904,865,908,878,881,920,839,926,939,893,818,797,778,810,793,795,787,762,773,759,799,786,826,798,784,799,776,821,789,802,804,806,793,791,805,785,822,787,806,782,752,745,753,771,776,743,736,734,716,747,773,736,749,752,747,737,764,740,769,761,745,754,736,756,734,743,741,752,762,769,734,788,770,769,766,741,752,785,779,760,792,786,758,775,792,782,799,790,773,753,781,774,778,764,755,781,781,787,809,773,807,764,771,811,798,787,757,788,779,802,774,782,766,769,767,766,767,787,794,794,792,810,771,771,764,754,762,785,766,777,799,783,805,777,756,777,759,747,756,759,761,761,755,790,745,746,780,754,717,738,742,761,766,750,779,753,771,760,759,754,746,757,760,795,744,725,689,674,758,731,754,694,733,746,741,725,737,761,747,742,752,720,748,711,750,729,721,717,723,700,728,726,733,708,753,708,701,697,666,715,725,683,688,737,687,711,683,705,691,700,699,743,700,687,724,717,727,722,719,756,693,700,684,705,726,704,695,667,698,678,687,650,685,742,743,754,739,674,702,682,732,750,703,743,752,711,715,706,768,726,761,754,747,735,746,698,766,742,893,902,990,982,911,1004,875,953,879,974,977,904,917,989,900,924,948,941,928,959,943,1005,906,923,873,881,875,940,876,923,908,792,788,807,785,773,785,801,825,821,788,773,796,797,819,805,797,783,781,797,759,809,783,801,795,817,816,766,836,764,802,787,756,742,774,744,806,761,768,783,799,743,757,831,770,778,773,774,759,809,763,785,766,810,789,760,751,733,741,777,748,740,802,872,857,836,826,849,791,860,833,859,880,826,842,829,820,810,831,841,855,877,860,857,833,843,848,846,837,862,838,861,829,843,866,783,812,831,810,817,832,835,824,822,792,798,803,855,736,820,844,821,782,789,826,800,825,803,802,818,807,861,821,796,766,983,994,1019,974,976,943,1031,1000,966,992,1011,986,987,1018,948,980,996,989,957,973,991,974,977,990,1029,995,966,1005,983,996,1010,879,891,909,900,905,907,877,916,892,882,895,877,911,887,899,896,892,871,913,936,905,882,883,907,904,931,913,917,918,904,882,851,809,869,832,844,849,845,845,844,851,841,850,838,840,817,835,834,840,857,879,823,829,822,823,818,854,873,838,813,847,830,893,908,888,923,895,893,901,878,870,865,888,868,842,887,904,810,892,907,918,847,890,893,878,872,902,876,868,868,890,882,906,864,862,843,855,888,893,881,861,794,857,838,887,868,858,823,816,836,868,851,872,857,870,849,859,883,862,854,859,873,869,836,809,796,834,799,841,801,816,841,812,804,810,818,826,847,818,815,828,812,837,810,818,809,854,825,850,842,827,828,820,819,814,1002,987,1050,989,966,993,1012,1004,982,982,1054,1010,1006,994,1017,987,1023,990,1045,1023,1026,1032,1013,1017,1031,994,1002,1057,1011,1050,1104,984,1034,1007,970,1010,1013,1049,983,1003,967,1036,987,1065,1000,982,973,1025,1057,1019,1051,1019,992,978,1040,1008,994,988,1050,1029,1022,994,932,906,931,949,944,893,940,925,930,897,936,937,967,925,953,940,946,920,969,905,968,944,956,919,906,901,950,901,964,898,937,860,856,849,873,828,843,830,836,826,846,824,828,803,839,809,860,842,860,853,833,813,868,833,840,824,834,840,835,810,823,825,1063,1028,987,1031,1083,1038,1058,1023,1074,1025,1094,982,1069,984,974,1094,962,1006,1052,1089,1069,1007,1014,934,1043,981,1019,1019,980,1014,1084,1062,1057,1110,1114,1078,1038,1054,1049,1169,1015,1001,993,1026,1131,1081,1022,1111,1010,1014,967,1022,1035,1084,1021,1078,1047,1082,1078,1050,1074,966,826,877,842,864,858,878,855,829,865,867,884,827,843,851,878,831,831,874,834,876,912,871,874,893,879,848,843,843,856,856,833,817,852,829,817,822,815,813,811,814,817,841,833,854,818,841,828,836,826,841,827,824,835,829,845,840,828,837,837,791,836,819,908,981,896,924,924,918,926,926,920,859,908,842,864,873,938,966,899,907,925,922,884,898,880,906,951,918,853,901,862,940,877,843,893,866,877,875,882,858,856,853,869,896,834,847,877,893,853,861,883,898,865,854,836,901,852,868,863,881,853,889,883,892,851,839,852,853,870,846,897,844,849,849,848,845,850,793,828,803,888,808,872,846,861,877,834,855,829,867,787,856,855,838,845,793,858,819,836,809,844,817,837,805,827,817,842,862,837,829,823,827,849,844,843,845,841,869,806,864,817,847,840,839,836,874,771,770,808,756,783,779,820,785,807,782,799,788,778,786,776,773,815,769,803,765,796,824,752,800,789,769,784,767,775,794,751,747,765,787,747,766,775,759,783,764,746,751,742,793,819,768,790,744,745,763,742,787,769,756,772,736,725,718,790,707,818,780,988,1001,1003,966,981,981,956,975,1027,973,1019,963,974,984,955,992,967,996,1016,996,1022,1026,999,981,962,1004,998,992,978,979,987,897,937,930,940,888,914,909,936,955,916,913,876,946,909,875,929,903,927,886,919,924,913,885,904,901,890,924,916,940,953,935,901,875,889,912,878,899,874,858,910,861,852,869,853,900,893,890,859,865,854,874,884,876,909,845,874,907,878,879,882,864,865,827,821,839,783,823,847,825,768,823,817,838,800,822,811,845,803,828,823,793,814,792,792,818,803,796,830,838,782,810,804,819,878,911,878,910,890,891,924,882,915,904,869,857,877,885,898,889,856,875,866,856,895,895,897,928,872,886,893,930,915,865,876,849,878,885,877,859,897,841,868,879,868,898,851,848,880,904,878,870,871,881,920,902,890,890,909,914,908,899,926,896,903,899,891,845,836,830,821,855,791,856,851,804,840,833,849,833,826,839,830,841,814,807,828,847,856,851,835,845,838,813,821,798,834,798,792,802,782,788,785,768,799,797,784,807,777,794,785,814,738,783,826,803,782,761,789,774,782,810,811,797,801,772,752,793,786,810,835,803,805,811,775,784,789,815,805,814,830,811,772,805,757,797,803,775,774,808,808,809,797,790,794,765,777,810,803,937,896,924,904,860,951,895,897,927,940,948,895,908,873,886,900,879,893,875,939,901,923,878,928,905,900,914,945,933,886,923,848,822,823,849,849,809,823,845,808,844,797,849,862,862,783,842,865,815,834,827,789,827,802,864,845,893,834,784,803,827,778,885,950,941,925,973,972,984,912,972,880,907,941,908,955,918,964,948,939,970,962,923,946,937,923,1035,985,944,943,954,980,916,1028,1007,1045,1013,1006,1041,1006,988,1041,1035,994,1000,1021,975,990,985,952,1017,978,983,1007,1015,1030,1024,989,1012,1002,1037,987,999,1011,973,1010,971,1003,973,991,1015,977,1039,982,980,990,1005,957,980,988,994,975,991,1033,999,983,985,1013,1008,980,971,970,1004,998,971,1117,1142,1076,1103,1087,1100,1045,1132,1095,1111,1104,1115,1065,1051,1090,1106,1081,1088,1080,1096,1067,1072,1128,1140,1084,1044,1083,1067,1124,1056,1066,1030,1059,1081,1055,1027,1087,1065,1059,1033,1037,1099,1036,1049,1119,1112,1086,1057,1079,1047,1078,1024,1019,1068,1100,1078,1064,1045,1068,1073,1094,1091,973,1001,1003,1010,1053,1021,995,1004,981,1014,1046,1014,1060,1007,1047,1044,1012,1017,1021,1040,1046,1011,1028,988,935,1029,1023,1010,972,1018,972,982,937,948,989,959,903,946,972,894,954,983,1012,926,924,935,964,993,982,947,935,974,964,978,968,937,927,943,951,927,962,949,1094,1058,1043,1036,1072,1082,1061,1102,1056,1090,1010,1019,1082,1041,1080,1076,1047,1065,1064,1054,1052,1041,1043,1051,1055,1070,1029,1076,1109,1065,1026,1037,1014,1054,1043,1066,1018,1074,999,1013,973,1040,1060,1105,1076,1036,1027,1023,1026,1002,1039,1062,1037,1013,1027,993,1053,972,1095,1018,1071,1053,931,884,873,939,924,911,945,900,888,926,918,893,891,891,911,888,853,883,859,867,885,944,927,925,903,938,911,973,933,960,908,1012,1016,1028,1014,1056,999,1011,1068,995,1033,998,1019,1006,1040,1076,1074,1009,1016,1050,1031,987,981,1006,979,1023,1073,1095,981,999,1005,1033,978,994,978,990,981,947,951,970,997,986,969,1034,988,1003,988,1008,1022,993,1015,930,1001,1022,1027,986,1017,972,981,957,993,988,1011,963,978,989,1005,1018,1025,932,1021,968,963,899,1034,983,972,945,968,1034,978,1025,1039,955,961,1080,1028,939,981,956,985,1029,994,1019,806,867,805,831,823,845,848,841,810,823,809,840,821,881,825,868,841,839,825,843,808,821,827,832,825,843,839,864,829,849,842,775,785,773,768,758,784,780,783,777,769,777,774,769,785,769,786,750,755,773,757,778,782,746,782,776,795,797,749,804,763,778,774,747,844,739,723,776,838,711,791,742,726,825,756,791,700,763,847,773,728,863,769,781,770,816,769,743,767,750,739,794,718,972,989,969,982,968,1002,990,983,971,958,955,959,934,914,965,987,1005,975,933,974,976,985,964,966,996,1000,952,1001,989,970,958,858,873,840,854,807,859,834,814,862,854,867,812,811,832,853,838,852,850,846,843,868,870,823,863,815,797,846,864,870,827,825,882,938,951,826,824,891,848,834,873,881,899,952,876,857,839,845,831,899,812,823,838,876,801,900,931,851,891,822,860,870,818,787,802,756,802,841,815,773,801,843,871,833,767,826,800,834,836,814,791,816,794,829,805,797,833,790,813,822,794,791,854,777,1004,990,1026,1029,1004,1058,1000,996,1046,977,1001,1017,1008,1019,1010,984,1065,987,1017,969,1040,1031,960,1057,979,993,963,996,948,1004,986,969,976,995,976,989,990,964,991,972,974,987,952,1027,971,998,969,1017,944,987,960,977,964,1010,952,1020,996,971,955,972,985,958,1156,1075,1114,1083,1089,1102,1084,1115,1092,1086,1048,1122,1135,1098,1120,1082,1052,1102,1121,1085,1029,1088,1083,1103,1078,1113,1106,1089,1049,1078,1064,1038,1046,995,1048,1055,1060,1083,1031,1067,1053,1054,1040,1048,1072,1062,1016,1026,1044,1062,1084,1057,1049,1037,1117,1028,1069,1025,1072,1079,997,1020,980,986,950,1004,958,1014,1005,1012,982,1013,1044,989,987,977,962,1016,1018,989,992,999,1004,970,1001,959,999,967,1016,1043,991,1003,966,1033,1034,1049,1052,986,1031,1045,1054,1022,1001,971,1013,990,1008,1008,1063,1005,978,999,986,1032,1030,1005,1013,987,1002,1010,1057,1017,996,1042,981,994,1017,1016,991,964,978,989,1001,1031,1015,1008,1023,986,978,1029,1034,1000,968,1031,977,1024,1027,983,971,1011,1009,1012,1002,999,1008,1019,978,978,969,982,1053,991,1048,986,982,970,979,987,1012,973,1041,910,982,1026,1034,938,986,936,927,972,1032,992,1033,980,972,1030,955,928,1059,986,939,970,1013,1007,985,952,1046,999,1019,984,934,1054,993,988,1021,1011,938,972,1037,957,967,988,996,1029,1013,988,985,823,859,853,884,890,882,851,917,869,888,821,873,883,855,855,836,881,820,872,842,859,899,867,852,859,850,887,851,878,862,839,899,995,907,941,943,946,977,930,1072,874,879,938,898,854,973,839,974,878,904,990,869,941,980,1006,904,959,1044,923,930,887,961,1027,1033,1048,1023,1015,1020,1019,1026,1035,1087,1017,1037,1041,1017,1014,1044,1049,1057,1059,1006,1056,1055,1075,1004,1057,1049,992,1037,1089,1038,1007,964,1034,1037,1069,1027,1079,1008,1069,1058,973,910,953,1018,990,1070,930,1043,1030,1026,996,992,1034,1008,1085,1009,960,1012,1044,881,1085,930,875,807,874,806,806,854,840,851,818,804,858,837,836,861,829,859,913,793,775,807,834,830,825,821,893,847,818,849,857,775,850,753,828,796,807,794,758,855,779,787,708,820,822,814,839,762,807,795,708,824,794,748,908,774,861,736,756,795,866,805,835,749,1021,1078,1096,1088,1064,1035,1058,1058,1166,1128,1100,1085,1121,1034,1107,1037,1107,1074,1124,1104,1118,1065,1052,1057,1139,1089,1082,1142,1087,1100,1104,937,890,928,935,922,920,888,960,954,936,896,950,909,876,909,945,913,929,936,895,931,895,888,940,910,904,944,898,919,922,959,994,930,924,907,923,916,940,926,899,814,871,954,1014,948,925,917,994,1017,925,955,978,930,982,920,932,934,931,926,953,861,968,1021,1047,1033,1039,1039,1059,983,995,1066,1017,995,979,1028,1048,1032,991,1090,1067,1029,1045,1023,1019,1046,1054,1066,1022,1062,1062,996,1036,997,1037,1002,965,965,972,973,983,947,1019,996,1012,1012,1018,1018,995,977,1069,1049,1039,1030,1012,947,963,987,976,1048,1021,1048,1042,960,1011,1049,1000,1001,1042,983,1018,1009,1008,1025,1014,987,1034,984,1000,1025,1082,1026,983,1023,998,1023,1033,1002,1049,1056,1035,990,1027,1048,1030,979,946,1022,984,1089,996,1019,975,964,1009,968,969,965,1037,998,1022,1017,979,1054,972,972,974,941,984,985,961,990,979,1030,997,987,1020,992,976,1021,1072,1001,1029,947,1023,962,1005,1015,977,989,935,1010,1040,992,1031,935,1000,1029,987,966,982,986,1049,981,996,985,1015,999,1004,1040,962,1080,1030,985,988,999,1043,1013,1064,1009,1049,974,1031,1034,996,1029,1034,991,1050,1016,998,1000,948,1033,995,980,1056,1027,1028,1034,1069,1014,1021,984,966,1118,1005,1010,1059,1007,999,1032,1013,1019,1022,1016,983,1076,1035,1020,1009,1057,1039,1105,990,1045,1036,1016,988,982,839,837,791,836,844,855,846,772,850,880,852,911,833,807,853,838,898,925,938,821,835,890,920,839,855,792,781,881,865,907,893,732,780,698,714,751,761,735,775,688,769,752,668,728,731,784,808,708,714,763,717,748,732,674,719,745,701,713,677,734,779,754,941,969,967,973,991,983,957,968,933,956,931,1005,987,967,962,994,956,919,970,926,993,914,947,913,912,963,953,955,953,939,905,1020,1008,1052,947,1084,1044,1026,951,1034,1068,1020,1023,970,1063,1022,1010,1009,1038,1012,980,1055,1044,1006,1050,1041,1026,949,994,1032,1003,941,920,989,946,934,906,929,1022,975,998,977,904,940,960,1001,987,951,920,945,948,960,971,927,951,975,984,928,976,980,990,950,1006,972,956,986,958,959,954,973,916,939,882,931,986,958,1016,978,958,971,1006,908,985,956,993,925,920,968,933,959,972,977,864,913,1047,1078,1017,1044,1071,1004,1071,1033,1060,1072,1046,1043,994,1097,1026,1028,1084,1060,1030,1090,1041,1056,1008,1061,1070,1082,1026,1054,1092,1082,1076,1040,1126,1048,1049,1102,1024,1064,1013,1040,1097,1039,1110,1039,1018,1028,968,1089,1099,1107,961,1044,1070,1066,988,1032,983,1102,1057,1013,1028,1016,1059,967,1004,1022,987,1057,1066,1046,1077,1068,982,1055,1045,1045,1067,1011,974,1008,949,995,993,983,1041,968,1080,1029,976,980,1039,1035,1021,922,890,886,867,806,905,948,887,893,768,764,838,824,839,794,805,829,866,807,818,852,872,808,814,838,863,838,881,866,849,886,765,862,815,838,762,806,810,748,758,811,784,812,790,791,838,808,776,792,796,796,804,763,816,794,751,837,803,794,822,784,763,726,661,737,734,679,792,706,838,674,771,761,796,815,661,823,711,700,690,845,819,787,759,787,797,693,688,621,763,691,758,763,1038,1030,1126,1062,1046,1106,979,1070,1096,1087,1101,1074,1006,1031,1099,1093,1080,1046,1098,1037,1068,1101,978,1095,1091,1070,1113,1032,1057,1042,1080,1077,1102,1055,1055,1072,1027,1065,1080,1060,1041,1046,1074,1054,1055,1052,1084,1089,1048,1031,1079,1038,991,1070,1097,1067,1128,1049,1063,1064,1043,1059,905,921,913,878,850,923,902,911,899,900,912,887,894,935,907,891,901,888,930,977,906,849,903,894,919,905,896,891,865,938,906,772,807,833,818,781,810,824,781,801,778,839,815,823,817,819,810,830,821,860,813,800,831,825,847,802,809,807,818,854,813,792,837,815,847,842,831,779,861,888,803,823,888,860,863,838,843,826,853,847,837,840,836,814,843,799,840,800,819,799,861,825,897,780,788,809,778,790,784,760,807,774,775,785,773,758,780,806,766,762,776,793,787,793,791,778,787,744,769,787,816,778,783,786,840,782,810,819,847,810,821,878,873,802,818,855,849,850,816,814,842,808,819,869,810,796,813,811,841,813,831,889,819,803,782,998,983,975,980,1021,975,972,1036,970,994,1001,954,946,1021,987,943,983,973,998,1010,950,997,980,941,982,986,982,1037,1067,1022,1010,862,892,842,838,897,864,894,867,910,866,854,899,864,835,904,896,876,838,845,876,923,875,873,859,882,885,860,891,858,863,884,881,918,845,902,941,884,876,903,874,844,907,844,844,887,873,869,890,895,853,887,879,885,853,911,862,850,850,814,905,915,820,842,832,856,800,867,809,881,841,792,816,862,854,804,868,847,848,840,840,874,805,851,881,861,865,826,848,875,859,866,843,808,763,761,794,803,782,789,782,783,810,794,762,765,793,789,806,798,802,776,760,779,775,769,808,798,783,786,769,812,812,787,781,792,819,823,732,820,721,816,804,825,784,786,784,791,777,803,782,740,810,811,809,839,798,800,787,835,796,787,804,798,807,798,1062,1097,964,1056,1070,1083,1073,1011,1097,1000,1078,1119,1018,1096,1016,1040,1097,1035,1019,1005,979,1004,1069,1034,1057,1053,1084,1080,1067,1035,1021,964,913,930,948,957,910,969,932,898,892,901,959,928,943,947,961,909,919,1004,950,950,912,936,961,929,950,962,952,917,973,883,861,847,843,869,865,862,843,858,894,883,871,844,894,870,872,854,841,852,860,877,868,854,845,843,866,876,911,827,843,855,889,833,802,792,765,776,802,782,773,812,781,765,821,827,815,821,735,801,766,803,831,789,828,837,770,777,770,823,807,746,793,796,822,811,798,762,818,847,828,820,818,815,828,773,810,822,870,734,757,830,850,875,848,828,770,823,814,827,826,849,792,803,798,1014,1007,1034,1011,1014,1031,1009,1044,1023,1052,980,986,972,979,1010,1020,1036,1018,1020,1028,989,1021,1026,1003,997,983,1038,1029,1012,1012,992,954,982,967,1020,932,960,979,970,1039,995,982,970,1010,963,996,1006,1017,1009,971,1017,977,1023,1009,939,981,933,1015,1005,986,996,980,928,911,964,946,936,934,963,908,948,945,940,976,970,961,982,926,927,924,955,941,905,931,901,884,937,928,922,926,968,934,919,868,941,841,885,885,888,897,879,904,864,939,899,916,897,921,915,940,922,890,883,858,884,867,861,908,900,898,909,888,934,903,845,846,832,860,869,895,860,827,883,835,824,891,863,867,865,894,819,811,876,884,856,837,866,855,881,860,873,865,869,826,921,819,796,781,817,819,842,830,771,786,816,820,813,810,808,819,791,799,830,825,817,820,771,818,789,812,779,837,811,850,809,803,811,787,733,776,800,794,755,773,780,785,771,800,796,782,753,803,771,788,789,799,772,768,781,758,747,820,753,803,780,793,764,807,792,854,765,771,797,832,811,806,823,780,816,768,818,792,751,811,791,814,808,786,821,777,781,779,832,769,800,814,812,812,987,995,1010,968,1001,1000,992,1019,990,1030,1032,1021,979,975,998,993,1020,993,974,1011,1035,1028,994,973,1058,998,979,1013,1015,1030,995,985,1036,1045,1018,899,949,989,970,984,1051,989,961,965,1012,992,1036,1026,985,966,970,1006,949,1015,936,1008,941,986,998,930,919,985,854,894,877,872,848,916,889,897,918,898,876,932,887,863,884,930,874,906,900,910,916,909,908,908,890,901,897,903,894,886,894,777,824,787,829,856,787,806,821,814,843,786,794,827,836,827,793,782,796,827,846,839,830,789,820,815,780,839,824,854,804,833,802,753,711,759,774,813,842,774,764,754,768,807,814,768,787,807,753,796,764,788,818,758,805,778,757,800,766,791,803,804,762,1006,984,970,974,981,954,886,926,912,899,1003,943,1009,921,989,927,929,929,949,921,963,899,981,937,994,974,951,957,972,952,986,980,1001,995,962,960,1002,1017,978,1001,1004,960,934,994,959,920,965,958,1014,995,970,912,969,973,1002,954,1020,960,975,988,960,1011,883,847,868,874,894,858,867,820,856,832,870,883,852,852,843,863,798,887,869,860,862,869,900,860,870,837,835,882,827,883,848,955,1073,1028,1054,1060,995,1040,1033,1018,1037,1043,1034,1031,977,970,1023,986,1051,1085,1000,1003,956,958,1010,1016,975,1067,984,1073,1027,1005,1099,1060,1093,1083,1065,1017,1038,1096,1094,1093,1006,1093,1071,1087,1104,1011,1110,1051,1059,1036,1084,1119,1082,1111,1045,1112,998,1123,1062,1086,1012,905,955,924,905,900,894,903,903,906,949,909,968,929,948,938,894,901,963,866,941,929,879,917,931,916,926,913,906,905,832,987,757,676,745,812,754,711,727,710,744,714,777,767,796,726,759,801,755,773,798,722,791,753,726,795,804,788,811,755,789,733,735,851,730,888,834,716,897,755,778,719,748,846,793,874,761,799,814,725,818,830,861,748,650,774,676,773,740,794,749,831,771,851,1098,1157,1147,1086,1072,1103,1105,1093,1112,1087,1116,1134,1116,1145,1122,1095,1092,1116,1118,1097,1086,1103,1147,1119,1149,1101,1109,1102,1100,1098,1130,1037,1097,1092,1097,1102,1074,1091,1108,1058,1095,1080,1063,1107,1105,1046,1050,1030,1117,1037,1128,1047,1075,1102,1066,1063,1036,1048,1072,1022,1004,1084,966,960,998,986,1011,986,999,937,1005,1040,1004,1028,920,1040,949,949,949,1027,1024,982,1056,969,916,1045,1050,1045,1016,1032,1038,1022,1075,770,764,776,774,740,770,755,723,740,764,746,725,775,784,747,753,802,773,763,769,736,769,717,753,749,750,755,781,735,745,785,769,819,776,923,800,729,740,796,850,775,793,868,706,957,857,841,843,786,801,778,775,833,866,899,782,645,744,791,683,795,779,1108,1096,1139,1128,1123,1119,1118,1084,1102,1096,1103,1126,1118,1084,1082,1078,1114,1092,1141,1146,1151,1124,1124,1121,1120,1092,1126,1106,1107,1139,1124,1109,1106,1091,1170,1141,1103,1112,1049,1128,1103,1091,1076,1046,1059,1165,1049,1067,1127,1099,1066,1088,1126,1086,1163,1113,1115,1088,1116,1080,1088,1066,997,971,1001,1041,1005,1021,1000,935,990,1074,1037,1040,992,942,969,1043,961,1007,981,1041,1006,1025,1032,1049,1018,969,1014,956,964,959,994,832,843,757,811,758,773,786,740,731,762,789,836,748,741,874,778,843,773,765,834,838,759,766,771,805,731,774,774,764,876,787,693,687,651,685,722,688,715,702,712,704,713,663,685,687,681,741,712,703,665,700,691,663,725,726,702,624,720,668,683,682,718,668,692,678,672,666,699,678,702,665,679,711,691,666,683,727,698,672,647,708,672,716,673,652,697,699,718,665,706,672,694,668,700,699,711,706,717,732,723,755,698,717,733,708,709,692,693,696,714,714,695,739,740,716,707,706,734,726,740,710,740,709,709,804,805,792,816,809,836,825,825,831,821,797,806,776,789,809,763,795,812,796,794,808,786,793,795,817,798,818,797,813,796,773,744,748,797,775,780,772,788,801,774,773,778,796,780,763,737,795,795,818,787,765,740,807,795,763,785,785,764,763,778,779,815,829,803,849,885,860,859,865,898,836,780,790,893,854,902,800,837,792,868,848,846,882,804,854,864,816,804,813,835,902,890,874,883,762,888,790,866,755,855,890,735,755,863,838,876,923,786,891,812,868,855,781,873,967,817,867,892,872,798,815,900,836,831,1153,1160,1101,1146,1131,1095,1143,1164,1128,1130,1117,1126,1106,1150,1138,1136,1149,1152,1153,1129,1142,1163,1155,1115,1119,1106,1177,1142,1168,1137,1153,1106,1063,1042,1046,1089,1106,1056,1172,1094,1073,1013,1130,1070,1093,1061,1121,1120,1131,1139,1106,1091,1059,1076,1153,1062,1151,1098,1133,1096,1123,1117,985,1032,1004,1017,991,1053,1023,1032,979,1033,992,977,1025,978,1023,1008,1021,1038,981,1048,1010,1035,1031,1067,1026,991,1010,1041,977,1051,1050,885,816,824,844,831,880,834,892,870,812,834,833,842,803,893,812,822,806,780,837,819,880,825,861,842,835,856,825,791,840,850,952,1016,1016,1026,1046,1007,1022,1042,986,1020,1025,1008,1042,1069,1006,1020,983,976,1032,1036,1019,1020,1006,1007,978,1030,1060,1044,1045,1011,1026,974,983,950,918,923,909,965,929,976,935,964,999,963,954,933,954,960,929,923,950,1011,888,881,926,968,937,943,927,936,964,968,880,922,906,884,878,895,868,876,906,895,866,849,921,892,919,909,935,901,905,856,859,885,870,900,931,860,873,900,913,881,854,864,844,852,856,809,816,829,817,841,807,839,850,834,847,827,837,847,825,803,818,823,825,835,810,824,824,850,845,819,804,868,899,937,986,933,971,919,929,945,942,932,938,952,946,955,927,983,945,965,938,957,914,963,935,969,895,971,913,892,945,971,965,1001,1036,1009,982,1021,996,1032,998,1028,992,1016,991,996,1004,1001,1025,1004,1016,993,1017,1033,1028,1048,1017,982,1008,1018,1013,1019,1005,962,1166,1193,1150,1113,1102,1157,1144,1157,1140,1138,1162,1167,1114,1098,1135,1139,1144,1144,1180,1118,1191,1166,1148,1210,1138,1111,1130,1174,1158,1106,1115,1039,1072,1033,1139,1072,1027,1077,1079,1080,1073,1115,1063,1035,1098,1055,1120,1109,1127,1070,1088,1082,1030,1063,1131,1089,1011,1059,1036,995,1082,1056,964,1011,1000,1012,967,962,963,979,1024,1014,985,1014,951,994,1003,959,981,990,1001,1007,970,965,1005,996,987,958,963,1002,972,993,1034,1139,1176,1149,1091,1131,1148,1130,1146,1115,1115,1094,1111,1141,1133,1123,1140,1126,1128,1103,1118,1124,1126,1140,1101,1157,1166,1137,1114,1103,1083,1107,1101,1052,1060,1075,1077,1108,1031,1133,1100,1042,1095,1052,1099,1108,1072,1111,1065,1071,1059,1076,1087,1084,1100,1091,1085,1061,1087,1063,1101,1099,983,1040,1005,1011,1003,987,1020,968,1007,968,961,963,949,978,984,979,995,990,1041,987,1029,982,1034,1018,1001,1049,1026,983,1031,1020,999,1040,981,959,1001,937,973,979,961,959,979,968,936,905,1006,934,979,983,967,974,977,967,969,937,935,958,992,940,980,923,995,975,933,875,928,940,894,940,1015,988,855,1007,940,953,972,920,966,944,954,911,961,920,882,950,968,997,987,919,938,932,930,921,924,941,1084,1097,1123,1169,1088,1190,1126,1175,1166,1157,1164,1148,1117,1094,1107,1157,1077,1116,1107,1088,1133,1135,1146,1131,1116,1131,1137,1108,1101,1161,1111,1075,1113,1023,1098,1054,1039,1029,1044,1101,1043,1079,1046,1017,1044,1063,1045,1057,1030,1022,1118,1091,1047,1060,1065,1080,1038,1019,1042,1042,949,1022,965,981,932,994,965,968,1031,975,938,954,979,966,946,980,917,966,956,953,955,974,946,932,954,946,978,965,944,1004,965,953,947,1081,1074,994,1087,1082,1057,1098,1083,1051,1094,1070,1073,1088,1086,1078,1045,1055,1077,1080,1094,1086,1086,1055,1051,1051,1080,1082,1095,1050,1087,1028,1031,1014,1083,1064,1028,1038,1044,994,1018,1031,1053,1015,1048,1043,1024,1065,1027,1007,985,1049,1066,1056,1022,1031,997,1045,1025,1023,1039,1006,1037,1018,950,975,1033,1023,952,985,981,998,990,1022,977,1051,1014,1000,1006,936,961,994,997,993,960,1037,976,984,999,983,970,983,1062,952,982,1080,1013,1090,1043,1009,1107,1046,983,996,1104,1013,1002,1013,968,1054,1046,1030,1074,1046,1013,1015,971,1070,1016,1060,1036,1041,1018,1022,1000,826,813,784,842,809,803,823,808,832,761,818,836,806,766,848,759,773,834,797,777,834,839,848,852,835,805,788,768,799,860,806,821,828,856,815,902,822,779,866,891,746,783,798,831,724,765,810,850,800,758,800,827,811,806,892,847,814,832,878,868,876,907,1011,947,1020,928,977,940,950,979,929,863,976,966,960,993,931,990,968,994,926,952,938,938,963,954,1002,956,978,963,944,933,960,954,935,976,982,979,1005,905,979,959,930,924,966,968,940,947,976,984,934,977,985,912,984,914,948,893,960,927,969,995,981,958,1085,1073,1078,1061,1067,1085,1093,1101,1089,1058,1102,1125,1107,1105,1075,1060,1132,1075,1062,1118,1105,1099,1081,1049,1113,1100,1109,1068,1089,1105,1073,1098,1090,1107,1044,1047,1021,1061,1059,1078,1045,1065,1090,1084,1098,1085,1069,1027,1068,1076,1021,1057,1059,1064,1062,1033,1035,1072,1061,1069,1083,1086,996,1035,1039,1069,987,1053,997,1039,1027,990,1050,1050,1019,979,1042,1051,1004,1021,1054,1039,1038,1082,977,1044,1041,1018,1042,1008,1059,981,1043,885,931,883,850,842,918,888,858,850,868,901,883,855,846,895,875,898,940,907,894,852,901,842,901,813,930,881,895,898,895,827,795,809,825,799,790,786,815,808,814,766,812,789,817,825,816,782,817,804,781,802,799,803,854,800,811,771,787,825,790,825,854,953,953,994,970,981,959,984,920,958,977,895,941,980,943,967,960,978,941,937,954,897,941,963,926,947,954,1015,983,1036,946,1037,1014,1046,1035,974,1003,1047,1028,1027,1011,1047,981,991,1016,976,1013,1007,1029,1028,1027,1011,999,1034,1055,1023,971,1041,1017,1016,1029,977,1054,1012,958,1000,978,977,958,995,990,999,1032,957,1001,997,1025,1020,994,1017,1021,982,973,1017,1008,1029,1014,1022,1004,970,972,951,984,996,1098,1107,1092,1159,1137,1135,1160,1131,1102,1154,1105,1091,1149,1156,1093,1116,1144,1149,1139,1137,1135,1097,1081,1155,1146,1097,1086,1070,1142,1112,1117,1031,1081,1066,1079,1066,1082,1145,1002,1035,1069,1101,1124,1104,1078,1065,1110,1131,1050,1075,1115,1188,1092,1039,1102,1031,1083,1160,1054,1139,1131,1087,999,984,969,983,953,1015,977,940,954,991,1005,1035,1064,986,986,1057,994,976,939,960,979,997,1019,984,1002,1048,988,999,1017,960,965,825,823,798,819,784,863,820,785,830,784,819,801,812,807,833,785,786,780,840,794,894,801,789,796,789,788,821,824,788,847,848,738,740,739,754,771,783,761,770,781,756,768,762,791,767,757,766,720,743,715,781,775,754,763,760,789,734,752,758,784,773,739,704,775,659,818,747,735,733,770,678,668,730,821,715,745,695,730,727,692,711,712,779,812,828,703,769,842,730,724,697,697,775,1000,977,1019,994,1002,1025,1025,1033,988,1006,1021,987,968,1006,1019,1002,967,990,990,972,1064,999,1039,1005,1030,1019,1026,1031,978,1012,1008,918,935,949,924,897,944,979,958,958,925,941,957,877,937,969,1007,952,933,925,935,939,909,952,941,951,945,949,932,928,953,919,860,866,836,874,878,865,876,842,857,858,857,881,880,868,849,864,874,879,873,850,867,838,862,882,854,847,832,856,883,863,874,917,843,867,876,869,887,894,875,867,865,816,926,859,886,860,946,890,873,822,830,850,836,947,845,843,862,945,865,892,869,839,850,868,861,858,873,841,883,852,838,881,840,846,916,886,844,916,883,830,826,882,853,884,890,905,883,858,868,840,913,823,835,856,814,876,792,775,803,863,805,832,832,844,831,878,827,888,858,821,851,831,810,806,844,781,816,841,801,830,823,822,836,856,980,1001,982,963,1010,983,980,998,1001,961,991,967,996,965,1001,1004,995,1011,959,982,988,989,1008,1000,1014,1045,993,1006,1032,981,999,988,1064,1027,1044,1085,949,972,1057,989,975,1013,986,1038,1016,1056,1066,989,1043,1037,1051,1068,1060,1080,1020,1073,1023,1033,1008,1063,1056,1070,995,1030,1018,962,982,1060,1053,1005,993,1017,960,984,1048,976,1028,1018,867,985,927,981,966,951,1097,967,958,972,1050,874,1004,1037,1005,854,879,904,901,904,897,894,865,900,870,935,876,904,862,881,984,863,874,910,880,898,887,868,836,915,854,918,879,868,841,913,823,828,848,816,832,828,824,801,823,811,813,837,819,834,789,817,824,806,818,829,811,815,828,850,798,823,815,833,810,802,810,828,800,818,830,776,834,806,823,820,843,830,821,808,831,826,840,834,842,798,781,819,801,815,824,821,829,789,776,820,828,830,793,776,755,758,789,765,735,772,777,747,806,729,777,772,776,765,782,773,773,763,754,761,803,778,780,792,753,768,766,783,756,807,788,810,800,774,770,783,780,777,804,817,792,780,784,769,789,796,792,753,752,764,767,752,795,765,803,773,772,754,791,789,741,744,737,784,760,764,751,796,763,769,785,759,793,745,791,764,746,758,736,752,750,736,770,757,753,771,763,763,751,758,793,805,778,774,786,793,789,805,802,790,817,791,817,775,812,777,769,803,766,842,743,802,795,796,791,784,787,773,745,791,821,787,965,965,937,832,832,947,915,933,861,916,876,996,879,927,893,860,903,942,913,930,886,845,855,914,918,851,886,918,909,839,924,1203,1189,1131,1153,1153,1188,1164,1183,1170,1205,1148,1108,1174,1151,1154,1207,1166,1191,1139,1204,1139,1183,1137,1228,1142,1177,1147,1200,1175,1174,1228,1073,1097,1132,1099,1053,1110,1124,1069,1073,1054,1057,1060,1095,1053,1111,1036,1048,1095,1056,1075,1104,1090,1103,1109,999,1100,1101,1105,1065,1064,1106,959,995,960,1024,970,976,1007,990,1046,968,982,984,1017,1036,1009,1017,1035,977,1020,1026,1000,1021,1044,997,1044,967,1004,988,1012,1049,1002,1015,1072,1030,1035,1078,1086,1038,1033,1046,1045,1012,1073,979,1013,1027,987,982,1009,1025,1042,995,1022,1021,1037,1004,1005,999,991,968,994,1059,973,935,928,944,947,929,948,963,964,891,943,995,955,942,916,919,940,934,987,996,962,991,988,975,983,944,987,915,927,957,956,861,868,857,862,847,860,852,890,908,873,917,881,857,844,865,866,847,881,900,899,851,875,852,871,876,849,881,889,858,847,854,784,806,774,789,830,766,754,798,793,783,792,806,811,796,778,795,821,787,812,776,788,771,802,806,781,793,751,781,789,792,773,778,742,832,833,866,785,855,732,870,759,898,822,855,816,768,827,836,761,860,785,841,824,796,890,758,841,851,841,818,876,784,1040,1060,1055,1071,1051,1036,1065,1098,1058,1028,1031,1060,1035,1060,1017,1083,1077,1062,1074,1054,1067,1093,1037,1056,1030,1013,1064,1070,1034,1029,1049,984,997,1002,986,1005,957,967,959,1047,984,967,1019,1001,947,1000,930,980,983,1034,956,1022,991,960,979,1012,1042,995,967,959,983,953,947,928,936,934,939,951,938,913,878,962,938,903,916,918,929,970,949,920,921,923,925,928,922,916,929,932,911,920,971,951,903,830,833,864,844,846,871,835,847,855,860,847,856,858,860,867,822,850,843,850,857,853,873,845,849,840,877,836,864,849,830,841,861,893,886,888,895,875,846,873,851,868,846,898,914,876,855,887,867,850,856,872,875,869,828,862,865,847,882,861,865,884,875,929,953,925,909,950,926,916,942,937,934,941,894,950,900,908,933,925,932,933,948,914,883,936,918,963,911,967,910,946,931,931,892,860,861,880,880,886,868,878,841,869,862,888,862,838,856,863,884,846,844,847,846,873,834,826,814,871,892,878,887,859,890,808,855,844,828,823,833,863,832,819,827,848,866,838,867,834,820,830,813,797,857,805,808,842,823,826,842,832,818,837,834,819,867,889,906,891,894,891,849,960,894,901,878,869,870,874,906,868,895,923,875,920,867,883,890,917,899,914,888,860,872,883,892,1191,1096,1110,1124,1186,1112,1108,1175,1118,1132,1166,1140,1138,1153,1184,1177,1134,1144,1133,1132,1154,1165,1163,1152,1121,1145,1114,1124,1144,1126,1143,1148,1043,1055,1089,1127,1075,1118,1044,1086,1111,1130,1054,1089,1140,1108,1090,1097,1084,1120,1057,1075,1057,1103,1081,1064,1101,1100,1074,1091,1056,1101,1037,1021,985,1030,1086,1032,998,1045,1068,1015,1048,1045,1050,972,1037,988,1063,1020,1037,1008,1040,1012,1044,1046,970,1005,1023,1010,1018,1043,1025,1080,1061,1112,1075,988,1020,1054,1040,954,1002,1055,1004,1103,991,1002,1009,1039,1032,1009,1013,970,1011,1028,1001,1058,981,1009,1055,938,1025,1024,743,865,774,898,846,791,767,848,870,864,810,836,822,831,852,831,814,798,801,846,865,840,794,817,882,873,797,828,850,818,864,969,1005,960,1005,925,1027,970,984,956,1000,1010,1010,937,966,958,939,936,966,969,1001,986,985,1017,949,972,953,915,950,912,896,1025,1067,1109,1026,1049,1103,1128,1107,1188,997,1139,1047,1063,1025,1082,993,1135,1059,1037,1055,1050,1024,1139,1120,1102,1031,1038,1083,1060,1122,986,1073,999,968,1037,887,1029,992,998,942,988,964,1056,944,982,964,987,938,1015,1011,1022,942,952,980,1044,911,1106,991,928,972,1048,975,977,1023,946,939,988,1035,966,955,997,997,994,976,1011,994,989,979,998,895,925,1000,997,980,943,1028,996,1033,949,923,976,930,987,917,813,889,840,856,842,838,852,862,866,838,902,847,869,854,822,845,882,854,848,837,841,868,835,861,839,871,853,849,879,865,829,846,839,860,810,853,816,840,844,844,828,832,871,839,787,869,855,853,805,817,856,822,854,861,828,848,830,832,871,805,905,798,915,812,864,856,856,852,820,832,863,885,806,804,868,880,889,886,831,879,882,879,884,852,919,845,804,868,831,837,892,883,845,1143,1131,1110,1118,1130,1140,1081,1140,1171,1154,1140,1176,1153,1105,1104,1140,1158,1113,1127,1141,1135,1132,1140,1144,1111,1104,1169,1128,1194,1154,1123,1080,1085,1125,1110,1103,1072,1121,1047,1126,1085,1085,1071,1077,1045,1031,1130,1134,1101,1097,1123,1088,1098,1139,1072,1120,1097,1122,1120,1125,1110,1119,962,966,986,985,1002,975,958,992,982,941,994,941,1015,965,1006,1019,936,904,1000,914,961,997,1009,977,952,944,977,976,965,964,1022,984,1031,980,997,986,1026,970,1009,1068,1020,1039,1025,994,998,1003,1009,1021,964,945,960,990,969,1079,987,995,954,994,973,981,955,928,943,954,913,934,935,927,919,946,980,895,906,963,937,940,934,963,960,904,910,980,937,968,934,918,953,885,944,938,928,871,925,954,853,915,957,994,940,916,965,971,940,873,955,937,921,919,888,961,909,951,896,923,894,903,859,957,887,914,913,920,884,986,1012,1016,972,968,978,1006,927,957,977,945,990,959,939,955,968,987,1009,986,1001,959,909,1044,945,986,984,998,951,1004,1041,1025,985,852,885,840,866,864,905,822,837,873,894,827,879,903,868,862,829,869,904,873,904,875,836,837,869,881,839,879,819,850,911,852,913,891,883,841,843,882,834,886,846,887,883,871,882,828,836,886,880,833,862,913,853,871,839,935,880,865,805,906,832,899,895,847,842,834,834,826,862,842,862,809,856,876,840,838,847,850,828,798,846,821,828,855,865,852,818,832,830,874,831,873,852,785,742,795,801,773,815,790,784,784,757,779,773,756,776,759,790,807,812,763,795,823,776,792,800,761,754,805,770,817,788,765,799,799,826,846,764,789,833,787,789,797,803,824,828,771,790,828,822,803,779,862,846,792,833,812,834,783,818,772,798,864,787,839,984,1038,1079,1093,1088,1058,1107,1083,1034,1093,1020,1076,1076,1035,1112,1063,1081,1112,1156,1118,1027,1034,1025,1007,1016,1047,1072,1013,1003,956,1062,912,918,920,930,960,908,975,936,947,921,898,905,981,933,910,897,880,947,962,908,877,921,897,896,903,973,880,972,928,914,891,915,927,983,907,902,915,976,921,876,927,848,930,906,861,966,940,919,878,923,927,919,812,934,933,966,863,867,911,931,918,987,970,1027,998,1046,1022,1034,1021,1076,1019,1022,1032,1032,1002,952,1028,1015,1002,1104,1035,1031,1022,1070,1154,1045,1018,1012,1007,1042,1080,1041,1020,884,906,932,873,903,961,847,884,900,918,885,927,928,891,867,887,871,860,891,893,907,911,974,901,916,887,964,859,886,881,913,916,910,892,873,890,925,899,912,894,957,868,950,896,941,877,910,930,893,905,915,904,930,916,886,903,918,992,946,938,866,945,841,848,833,872,848,836,849,818,810,842,824,839,837,866,841,844,855,828,859,838,862,828,797,846,808,829,818,832,856,825,835,773,766,775,814,787,785,788,780,808,788,780,770,770,803,771,772,777,783,770,749,761,760,790,786,768,799,789,766,754,794,771,804,812,829,757,791,811,776,802,801,814,768,785,800,789,803,803,824,782,800,779,780,773,783,791,762,805,803,796,802,807,768,780,736,791,758,776,756,752,785,765,804,745,774,793,768,769,815,780,792,757,788,747,785,801,733,810,798,805,785,781,803,765,856,910,861,878,893,910,866,857,893,842,837,881,900,859,887,816,815,868,843,859,834,853,923,789,858,854,846,888,853,819,854,808,851,845,870,881,862,878,877,846,899,812,857,850,893,882,812,850,879,892,839,873,887,914,873,837,857,852,859,894,851,878,916,926,983,919,1001,974,951,955,947,948,988,999,902,911,912,862,914,975,964,889,996,978,991,983,962,941,930,996,965,981,1019,979,938,963,950,954,965,967,971,941,937,968,976,907,958,949,904,920,944,929,960,968,975,981,975,1001,958,932,942,916,977,955,873,831,809,873,846,848,830,801,828,831,823,814,832,831,831,834,800,809,837,860,892,846,822,827,823,780,759,851,815,795,778,942,1004,976,1025,1045,1003,990,994,1021,996,1012,995,1009,1010,992,975,1037,1016,982,991,999,987,1007,1010,1027,1038,967,998,998,1029,1039,1012,1068,987,1112,984,1125,1016,974,1055,1028,1050,1081,1004,983,1023,1039,1033,984,1061,962,1037,988,1042,979,1035,1002,966,1080,1039,1080,1010,960,1045,956,997,988,1005,1002,955,990,1000,944,968,988,1028,955,957,1021,1016,990,935,1053,990,999,1011,1014,997,1025,1012,980,920,937,963,965,936,949,943,979,942,1002,977,969,962,968,992,971,1001,942,949,946,962,995,900,940,965,952,920,989,977,1019,1005,967,1022,965,1010,950,895,953,979,913,976,877,942,926,962,862,968,984,931,998,962,877,919,862,833,854,883,969,961,877,965,907,912,1021,1164,1124,1120,1178,1127,1146,1144,1121,1092,1167,1119,1115,1112,1097,1158,1144,1069,1139,1104,1108,1126,1166,1169,1133,1195,1114,1110,1140,1116,1096,1165,1112,1077,1151,1109,1059,1084,1117,1116,1113,1040,1105,1106,1138,1167,1088,1037,1090,1085,1130,1076,1087,1141,1124,1128,1153,1038,1076,1119,1076,1021,1074,1159,1141,1140,1139,1164,1159,1148,1142,1146,1098,1138,1113,1109,1195,1123,1079,1147,1110,1132,1069,1132,1182,1126,1164,1171,1087,1114,1080,1085,1118,1120,1109,1074,1084,1076,1086,1098,1113,1064,1043,1033,1165,1121,1113,1103,1061,1059,1110,1096,1064,1040,1057,1093,1141,1096,1111,1111,1069,1080,1148,1087,1100,993,1023,994,1024,1006,1006,1023,1002,998,1025,1010,953,1002,988,1032,1038,991,1018,963,1041,1002,969,988,1013,996,967,1039,1080,1015,1035,1003,915,940,931,948,959,951,936,984,971,955,952,947,960,948,961,941,984,957,930,969,959,993,938,944,975,973,968,979,961,894,1011,1145,1112,1105,1128,1135,1119,1113,1121,1120,1078,1171,1080,1125,1140,1132,1103,1069,1131,1146,1101,1101,1150,1141,1099,1104,1113,1123,1104,1109,1114,1117,1068,1133,1107,1123,1120,1047,1090,1074,1097,1067,1081,1086,1089,1079,1093,1047,1114,1038,1112,1092,1089,1102,1097,1086,1055,1085,1038,1133,1095,1035,1104,988,1041,1082,1012,997,1062,1047,988,980,1003,1105,1110,1057,1057,1078,1078,1118,1042,1096,1074,1073,1062,1115,1112,1077,1078,1091,1038,1087,1054,1121,1082,1100,1042,1087,1102,1019,1113,1114,1112,1086,1074,1081,1065,1056,1049,1049,1079,1133,1019,1071,1095,1102,1037,1096,1080,1046,1091,1104,1062,1123,1125,890,905,862,921,926,960,923,907,927,898,929,955,801,899,990,887,908,918,846,903,907,910,864,850,858,888,920,927,948,871,868,823,818,830,840,831,820,863,830,819,826,833,839,868,821,832,843,875,843,874,849,866,847,814,803,848,833,810,857,855,824,838,864,898,808,882,871,900,853,872,884,852,890,855,896,856,863,870,841,881,876,883,872,828,877,842,836,843,866,870,899,900,894,794,801,782,785,795,808,775,792,828,770,798,799,789,780,820,773,783,800,804,806,794,804,778,772,825,804,774,812,808,805,772,821,819,845,848,807,818,824,875,863,808,833,828,828,826,869,838,825,841,846,813,857,836,835,812,829,818,794,765,851,794,842,786,802,733,746,783,771,764,780,758,760,782,776,800,802,790,782,733,793,845,824,830,754,797,759,779,859,824,693,804,684,753,1126,1112,1178,1127,1144,1099,1112,1102,1153,1130,1116,1164,1176,1169,1097,1128,1096,1098,1146,1162,1115,1095,1148,1107,1193,1092,1172,1140,1114,1113,1079,1041,1081,1043,1077,1081,1043,1013,1052,1041,1084,1010,1082,1043,1050,1012,1019,1060,1014,1043,1039,1055,1039,1035,1040,992,1052,1043,1035,1054,1063,1046,1001,981,983,972,1012,1009,966,945,984,998,982,1011,962,916,958,947,1001,949,984,967,979,1012,956,971,984,938,970,996,993,959,899,937,989,987,983,1003,968,977,1002,940,970,969,977,964,978,921,986,991,1001,962,980,944,987,935,962,987,958,992,958,965,976,1000,954,951,989,974,912,978,923,954,944,974,966,972,964,935,993,981,990,929,950,949,913,989,930,925,945,907,960,978,898,935,972,918,935,974,981,892,952,946,939,954,937,980,941,987,962,962,987,955,942,974,1040,972,1014,965,959,959,899,982,933,961,965,1009,1114,1137,1102,1095,1126,1153,1144,1160,1131,1085,1165,1143,1171,1115,1133,1150,1116,1130,1154,1151,1129,1135,1118,1191,1120,1155,1133,1172,1134,1164,1134,1113,1107,1163,1152,1094,1130,1079,1103,1097,1116,1120,1080,1118,1069,1112,1081,1093,1076,1096,1145,1162,1121,1126,1075,1119,1044,1078,1115,1130,1098,1148,1061,1001,993,988,1031,1051,1049,1051,1035,1040,1036,1058,1051,1006,1068,1052,1065,1016,1058,1057,1020,1028,1000,1083,1034,997,1017,1014,1022,1051,1009,910,815,782,937,864,894,868,882,918,855,934,812,861,828,886,865,923,835,867,864,797,909,836,855,825,850,841,832,833,887,845,961,1014,959,1037,1022,994,1005,1010,992,977,937,963,976,1012,984,997,1012,995,914,995,943,976,991,966,1014,993,967,996,983,965,955,974,960,952,979,973,923,940,969,946,930,979,977,980,926,918,945,949,932,954,955,981,915,914,971,963,971,925,945,958,978,995,870,933,901,864,834,914,864,891,849,902,920,868,882,910,892,888,902,886,881,897,905,919,878,909,901,840,868,900,896,883,899,1082,1098,1047,1039,1102,1032,1071,1134,1109,1099,1065,1099,1070,1046,1044,1036,1098,1077,1125,1095,1153,1086,1064,1126,1190,1086,1033,1085,1063,1116,1125,1072,1000,1031,1123,1023,1037,1054,1097,1149,1126,1049,1085,1076,1034,1087,1053,1068,1048,1065,1026,974,1120,1107,1097,971,983,1104,1017,1141,1007,1046,913,907,893,895,885,906,900,908,882,913,891,894,912,960,884,919,871,900,907,906,886,888,906,910,876,886,886,904,927,920,857,1005,931,908,954,959,911,979,894,961,908,929,942,957,974,965,916,873,963,971,902,1008,922,939,923,929,953,1045,980,854,1034,999,1044,1044,983,1033,1016,1016,1003,976,1003,998,993,1042,990,961,1039,1033,993,1054,1027,1002,1010,1018,1037,1011,1036,1019,1008,967,981,1002,1052,1009,999,966,958,1001,1042,991,976,1016,1007,1017,937,1010,974,995,1002,1050,994,987,987,1034,1029,952,985,1022,947,979,1010,1016,975,989,1163,1133,1124,1141,1099,1114,1068,1167,1107,1090,1133,1099,1125,1158,1128,1156,1159,1109,1088,1162,1105,1117,1113,1185,1080,1140,1081,1105,1102,1099,1105,1056,1113,1098,1093,1106,1137,1082,1031,1102,1056,1082,1075,1074,1084,1051,1098,1084,1101,1044,1129,1067,1119,1068,1114,1116,1071,1063,1105,1083,1090,1095,1019,1003,1019,988,1006,971,966,975,1003,974,988,990,934,999,991,959,1018,998,971,978,1029,958,1033,984,1031,1035,1023,950,973,1001,992,886,817,852,841,860,869,875,848,868,879,832,851,860,868,821,889,841,813,869,834,855,845,820,847,832,820,842,840,870,841,865,829,835,855,858,838,815,855,807,859,879,872,831,838,821,846,863,831,843,823,803,809,872,825,834,817,851,851,847,844,835,878,827,824,840,817,832,804,830,820,815,824,816,812,817,809,789,863,842,844,805,841,793,814,814,823,823,805,835,813,819,833,818,750,761,766,770,765,763,778,759,764,726,783,768,805,762,779,757,748,764,764,746,755,791,747,799,774,748,745,767,752,734,744,906,901,865,923,906,973,958,896,911,919,894,945,939,979,880,887,953,905,913,910,883,897,915,893,930,945,933,826,967,920,932,819,778,817,801,785,811,804,812,793,797,779,762,781,804,828,800,809,811,793,851,800,831,819,802,779,826,785,827,810,761,818,973,976,957,862,886,922,917,914,920,873,836,919,913,877,918,849,943,816,887,942,829,870,872,832,895,776,978,812,922,872,999,937,937,863,893,900,913,855,883,959,852,866,922,920,849,896,815,861,935,902,872,879,888,861,931,919,987,873,883,960,898,868,801,816,837,835,811,845,843,790,838,867,850,843,809,851,820,818,816,799,858,823,819,796,786,809,810,823,818,835,802,813,843,813,812,767,784,798,791,792,804,773,790,803,768,770,791,792,752,794,773,774,815,793,800,781,783,784,810,784,785,776,809,778,879,924,919,878,938,869,997,895,877,911,903,796,882,872,967,932,873,946,931,945,893,923,925,898,923,938,875,972,891,863,954,1176,1164,1137,1140,1145,1156,1117,1171,1134,1126,1165,1129,1138,1116,1126,1182,1127,1131,1132,1139,1158,1153,1155,1141,1132,1124,1129,1143,1168,1135,1143,1102,1090,1100,1077,1142,1074,1062,1086,1103,1112,1116,1122,1088,1054,1097,1104,1063,1103,1110,1106,1119,1149,1091,1126,1049,1141,1080,1106,1085,1141,1066,1038,1034,1041,1043,1014,1092,1031,1033,1042,1092,1057,1036,1045,1077,1040,1046,1026,1068,1059,1008,1067,1078,1116,1018,1005,1048,974,1044,1083,1052,1083,1012,1038,1038,1042,1057,1064,1035,1033,1059,1026,1020,998,1053,1074,999,1000,962,1048,987,1053,1013,1019,1044,1043,1012,993,1070,1034,942,968,1066,1116,1073,1146,1064,1111,1124,1095,1082,1079,1126,1128,1083,1132,1081,1002,1122,1106,1101,1099,1112,1182,1128,1085,1047,1099,1112,1096,1061,1061,1055,1105,1051,1137,1084,1016,1063,1127,1114,1096,1106,1113,1117,1111,1109,1047,1056,1096,1046,1095,1142,1072,1078,1142,1108,1081,1087,1087,1080,1109,1088,1063,1128,1025,996,944,989,936,979,961,1029,944,982,1059,1054,999,954,1012,982,1015,950,976,966,931,957,935,938,979,920,928,968,1007,985,943,776,744,741,756,770,773,788,752,774,745,754,743,767,750,740,733,780,760,782,778,743,761,784,764,766,757,765,769,745,758,753,757,800,776,771,725,800,797,826,804,813,762,787,791,807,816,792,817,746,782,791,821,756,790,746,805,761,785,787,783,835,777,1017,1068,993,1019,1019,991,1034,1012,994,1038,987,1019,998,992,962,1001,1001,991,1002,992,1000,971,987,996,934,999,986,1023,995,978,967,910,894,876,884,877,843,856,907,846,903,891,898,884,885,879,882,858,925,894,905,903,862,883,863,953,888,906,912,940,905,931,814,780,828,818,844,866,839,828,865,881,834,833,875,888,813,835,791,813,716,825,832,813,755,776,806,860,877,792,784,832,840,852,867,803,913,912,834,930,895,917,863,881,856,946,875,840,917,852,874,814,812,909,857,854,968,881,844,849,951,893,876,920,1018,1015,1044,1038,980,1005,1052,1066,1064,1063,1052,1033,1048,1023,1049,1029,1009,992,1111,986,1010,1040,1012,1084,1021,1031,1023,1057,997,1041,1075,895,876,891,882,888,890,899,871,913,887,898,888,884,885,974,855,908,910,931,890,920,897,882,904,915,892,895,903,931,916,903,825,825,858,857,819,814,826,834,859,785,841,809,823,829,842,824,809,826,791,809,832,808,825,826,848,834,783,782,784,817,837,994,1002,1045,1038,1039,1021,1035,997,922,1033,1014,1027,962,944,1045,976,962,1003,930,996,1015,1023,989,961,1009,1020,1007,1071,1019,1049,974,924,904,974,962,959,941,909,913,948,930,918,936,890,938,908,953,920,929,919,936,924,947,965,901,910,942,929,894,886,917,956,880,840,836,872,865,835,827,861,840,823,857,864,852,841,860,838,864,871,887,838,828,849,843,852,854,822,787,830,837,815,802,738,742,741,743,760,717,745,729,729,718,734,740,717,699,732,755,760,756,705,715,749,703,735,765,756,719,749,731,747,725,695,834,837,831,827,861,826,861,808,865,871,856,862,816,817,850,842,834,827,802,849,803,841,835,854,840,862,843,861,844,804,834,896,887,845,888,931,955,904,931,930,919,905,909,907,888,938,894,906,894,905,954,896,909,864,896,949,913,967,901,950,888,885,1035,991,993,1038,1039,1049,1017,1098,1112,1006,1003,974,1004,1084,1024,1027,1066,1034,1022,1024,1020,1017,1028,1058,930,1056,1031,1034,1035,963,1007,880,885,890,918,942,934,890,885,913,939,900,874,930,844,895,918,876,908,887,936,925,892,910,913,938,898,919,905,924,956,936,820,821,859,830,840,844,824,836,833,841,820,839,813,841,804,847,836,823,828,861,834,820,820,840,846,871,823,862,838,843,843,959,932,979,915,919,876,968,952,993,928,953,943,919,958,934,956,979,979,936,974,953,979,939,984,920,960,917,947,965,995,933,1016,1009,1024,1020,1019,1032,1053,1045,984,1011,996,1007,1026,1025,965,1025,1020,988,1018,987,1023,1020,1030,1034,997,1032,1032,1007,994,998,1024,1004,953,1036,1003,1003,1022,1054,1021,941,1013,1029,1052,1024,1027,966,1017,993,1020,963,982,1029,998,990,986,1002,983,954,992,998,965,1013,1124,1153,1186,1131,1166,1166,1168,1137,1164,1094,1175,1126,1134,1147,1173,1107,1151,1122,1123,1110,1150,1152,1148,1142,1132,1158,1129,1175,1112,1135,1149,1101,1028,1144,1143,1126,1127,1149,1091,1168,1070,1066,1034,1031,1075,1128,1092,1135,1080,1074,1129,1097,1145,1079,1105,1091,1030,1095,1072,1086,1106,1084,1005,1016,1026,1014,1037,974,1032,1014,1024,1035,1010,1004,1009,1011,950,1006,1049,997,1060,1009,1050,1008,982,995,1005,1009,997,1018,966,1019,993,910,972,1013,961,976,913,1016,907,933,945,947,936,914,944,896,966,974,929,951,944,961,977,935,985,924,971,929,968,954,943,942,851,801,811,838,825,823,824,825,767,837,831,848,813,850,783,855,815,815,824,862,814,817,836,817,803,809,832,798,799,893,853,799,773,782,754,765,752,758,759,751,773,771,791,764,737,773,765,778,740,791,829,770,785,728,744,786,786,761,781,728,748,797,749,738,702,758,776,731,729,758,764,789,763,708,712,772,739,721,727,813,734,775,738,727,733,732,775,770,707,730,714,735,753,915,926,912,952,913,857,901,897,929,893,842,889,853,957,957,926,913,914,981,875,937,917,941,884,958,881,899,979,883,934,935,946,975,937,939,959,978,988,946,962,979,959,943,925,950,952,968,942,967,959,988,913,937,918,936,950,920,943,966,959,978,973,840,880,788,856,841,846,898,837,848,851,858,821,832,824,836,848,856,872,824,835,822,862,840,844,847,864,850,874,844,830,831,785,795,763,771,812,825,816,819,783,779,848,817,813,791,765,809,788,805,780,787,772,820,821,821,805,797,796,785,843,784,823,897,910,875,876,846,909,888,890,912,897,909,872,881,927,891,901,903,880,895,893,894,837,930,882,891,887,897,869,894,854,892,779,782,800,802,783,819,774,809,781,781,799,797,823,800,783,789,779,768,813,768,804,793,759,813,791,771,799,759,785,812,789,820,847,968,916,928,901,860,950,960,940,933,898,825,959,924,813,865,840,858,781,895,882,842,855,841,878,855,858,862,896,899,1096,1132,1114,1095,1152,1141,1057,1127,1132,1064,1144,1176,1068,1126,1096,1119,1146,1145,1151,1094,1094,1130,1164,1094,1146,1106,1145,1087,1145,1144,1089,1115,1056,1108,1126,1112,1139,1132,1123,1095,1098,1077,1119,1102,1116,1078,1090,1115,1102,1079,1053,1125,1094,1103,1110,1089,1143,1088,1092,1078,1065,1079,1148,1043,1121,1060,981,1063,964,1020,1108,1057,1123,1125,1086,1074,1010,1022,1111,1029,1020,993,1020,1039,995,1043,1096,1044,1070,1121,1116,1110,1008,853,946,868,883,835,837,867,926,799,917,868,928,844,918,854,827,941,913,938,854,881,836,909,865,937,909,765,856,885,899,862,862,924,820,824,830,868,846,849,818,847,865,805,840,819,856,819,847,858,803,842,851,857,838,841,846,846,830,843,897,855,941,948,880,920,927,923,957,933,910,921,879,924,898,933,895,911,965,888,952,897,950,888,962,895,924,897,961,946,970,929,914,1021,952,1007,1022,994,991,1008,976,1017,964,980,977,999,943,987,990,952,982,971,1037,969,995,982,997,1046,978,1010,987,995,1011,979,893,970,983,967,995,967,981,999,960,971,991,1014,992,996,980,991,996,951,987,970,986,955,986,1013,973,1005,983,978,966,1002,986,947,984,964,992,1016,975,993,993,982,988,977,989,984,1007,1008,991,985,996,1010,976,993,979,996,971,963,989,962,1002,967,964,988,973,947,981,982,970,976,974,970,957,972,951,981,976,991,992,965,980,986,948,968,990,953,947,963,976,970,975,998,957,972,970,952,940,968,919,929,909,946,919,942,973,952,944,985,928,942,914,919,921,926,951,930,962,936,945,937,939,925,885,925,935,911,931,896,802,935,873,897,855,883,813,830,778,872,839,907,856,847,828,901,859,838,858,884,834,862,846,865,845,843,785,844,874,864,1093,1105,1042,1066,1155,1103,1093,1060,1082,1134,1096,1023,1123,1083,1064,1094,1128,1073,1129,1033,1072,1004,1102,1073,1085,1082,1098,1123,1065,1077,1030,1097,1039,1097,1039,1055,1003,1070,1054,1054,1060,1068,1060,1036,1028,1097,1020,1058,1014,1176,1026,1053,1072,1055,1053,1022,1052,1034,1030,1062,1088,1068,910,859,878,856,918,900,883,855,879,926,921,954,904,907,903,914,967,870,900,942,861,929,838,940,844,912,895,900,806,905,852,885,904,867,875,851,861,876,884,885,910,813,885,881,875,872,897,895,848,925,881,919,894,913,918,901,904,894,889,843,896,932,780,783,738,778,780,810,791,777,822,771,764,766,776,832,750,750,779,752,798,788,766,761,777,775,816,845,807,811,755,798,781,954,967,947,980,1027,970,955,845,987,921,968,953,988,945,973,946,908,962,966,928,910,927,960,936,843,1021,978,996,964,936,890,984,902,940,889,1001,951,1009,976,969,975,995,914,976,955,983,1011,967,1027,934,1023,983,969,987,966,974,905,969,991,977,1006,1011,922,962,1003,918,931,923,960,910,936,933,908,915,935,967,911,952,912,909,939,917,929,917,928,917,910,927,934,957,932,965,963,901,908,836,845,874,852,830,867,898,845,837,876,833,894,863,864,861,873,843,843,838,857,827,879,837,857,891,883,849,836,862,806,778,784,802,788,767,805,801,804,803,782,791,800,798,793,791,776,804,765,800,794,805,801,793,788,787,798,754,797,759,774,827,855,874,863,878,852,847,849,827,848,864,854,877,865,886,785,800,849,898,807,855,845,857,824,848,870,879,846,851,932,875,1072,1134,1113,1111,1130,1119,1069,1113,1092,1121,1117,1129,1107,1100,1107,1106,1075,1160,1121,1126,1140,1125,1119,1160,1136,1160,1123,1097,1063,1081,1114,1027,1028,1175,1085,1044,1140,1075,1061,1083,1085,976,1094,1086,1071,1063,1099,1089,1149,1026,1123,1125,1085,1090,1123,1073,1077,1053,1076,1034,1080,1115,993,836,928,930,918,968,972,946,939,880,867,852,987,870,924,940,970,807,952,922,857,980,924,936,920,923,957,961,876,915,909,821,798,811,820,825,796,774,815,817,841,781,828,827,832,824,832,810,823,813,819,800,805,812,832,798,830,811,822,803,827,795,771,789,796,848,761,804,816,831,809,791,812,823,807,811,808,762,818,817,800,803,821,791,825,801,790,797,826,781,805,822,800,878,841,841,868,866,788,817,853,868,842,799,842,871,832,827,799,816,831,804,865,838,816,843,827,825,763,824,843,829,830,801,947,953,913,925,927,963,958,980,951,930,919,946,944,961,951,930,928,942,968,998,948,911,973,912,930,922,939,930,955,941,909,981,975,1038,980,1007,1042,1040,1008,1008,1004,1042,970,1024,1027,983,1040,997,994,1026,1017,971,982,1007,1028,995,1026,1015,1018,1003,975,1022,976,999,1023,995,1002,965,989,989,973,1002,972,963,1008,982,1020,973,1023,989,1016,1018,1009,977,1035,985,1006,987,971,987,1021,992,963,894,890,906,878,907,858,811,899,840,833,872,884,867,773,817,816,851,855,862,867,858,852,862,839,862,913,841,828,896,836,893,960,957,933,937,869,900,909,962,920,849,969,958,934,847,926,954,839,1058,897,914,892,954,888,921,898,862,909,961,931,950,982,993,1009,1030,968,1001,972,1000,1047,1080,1017,945,1031,1011,990,1022,1013,1024,979,987,1030,998,1015,989,1002,961,1003,974,990,1037,1016,962,967,1015,928,985,944,960,980,975,962,951,988,976,973,957,1010,977,974,983,992,949,987,997,967,998,972,966,972,981,948,960,983,806,842,864,858,817,812,870,859,793,820,828,842,890,803,872,856,840,749,791,856,790,813,800,787,816,873,802,841,860,829,821,1005,982,981,954,934,984,985,980,990,972,957,912,960,977,969,1031,954,930,988,950,981,935,924,922,948,940,978,957,1004,946,1015,816,789,834,817,816,818,777,822,836,816,788,791,787,820,849,777,809,824,819,801,835,803,795,834,808,815,817,770,834,838,802,809,742,773,797,819,765,836,764,752,777,782,814,809,763,808,781,798,820,819,770,787,814,827,791,816,821,733,773,776,766,799,889,948,885,927,946,941,958,979,913,935,959,976,980,963,977,966,934,908,960,962,934,952,938,949,957,975,917,978,983,909,951,883,892,926,895,810,876,865,862,861,884,896,887,850,881,893,852,895,890,899,870,875,859,878,916,897,874,909,880,918,874,928,868,846,827,850,849,841,828,841,852,851,844,830,858,837,860,843,860,860,845,857,823,828,834,886,843,832,848,873,857,855,889,917,931,905,915,1004,944,952,964,1015,958,980,971,962,931,959,958,1028,938,978,975,989,931,952,935,924,951,972,920,981,980,984,983,998,1018,1055,1037,1050,1046,1047,971,996,1045,1051,1030,1063,1002,1026,1076,1001,1047,1039,1015,1062,1049,1032,1019,1051,1037,1011,1042,989,1013,1006,1055,998,993,984,1002,1047,1002,993,1023,1016,1033,1005,1004,1034,997,1021,1002,1015,1047,979,1020,1002,1025,1011,1004,1050,973,1020,1022,1070,995,1002,977,990,995,989,960,951,1019,1009,986,1009,971,1001,973,982,985,985,965,963,995,980,977,930,996,945,999,1006,992,964,984,959,981,948,968,956,973,987,990,950,909,973,964,939,969,940,951,964,992,992,954,977,995,962,911,971,954,967,1014,929,980,951,1099,1091,1113,1101,1063,1068,1085,1083,1058,1101,1085,1051,1077,1049,1102,1077,1119,1091,1084,1073,1090,1063,1109,1073,1098,1072,1096,1088,1053,1132,1135,1011,1066,1054,1056,1055,1069,1058,1097,1053,1053,1062,1041,1062,1067,1084,1017,1110,1095,1062,1096,1083,1068,1074,1097,1064,1052,1081,1049,1050,1054,1051,1010,1074,1028,1043,1020,1011,1047,1056,971,1071,1051,1067,1056,1043,1078,988,1040,1060,1039,1016,1026,1063,1078,1069,988,1093,1086,1030,1043,979,980,987,1005,950,1008,973,983,990,992,947,1037,978,986,1057,973,1043,957,1001,981,1035,1026,932,921,996,1021,1008,1008,1013,1040,989,949,1080,808,795,778,785,774,812,821,754,766,799,783,783,785,797,789,739,784,787,784,800,808,769,787,816,782,792,746,801,758,768,835,873,867,804,852,804,848,851,857,855,856,852,828,792,823,872,829,806,898,804,852,826,860,857,903,848,832,836,813,804,855,844,920,874,941,905,895,880,932,898,946,904,924,914,872,889,898,829,881,885,944,840,981,870,943,872,898,913,896,844,923,899,877,1026,1078,1014,1078,1108,1104,1093,1056,1118,1093,1067,1085,1080,1065,1001,1017,1081,1052,1023,1112,1030,1061,1065,1123,1077,973,1035,1071,1037,1081,1081,938,893,927,909,911,969,920,929,921,927,897,969,925,951,937,900,931,948,933,911,959,854,926,919,925,936,918,919,903,921,895,911,909,884,894,987,877,923,934,990,941,926,941,927,1000,988,925,938,935,937,1029,953,991,918,901,1018,959,892,990,995,1001,835,1059,1001,1016,1042,1005,1058,1043,1082,993,1052,1093,1045,995,1078,1087,1046,1052,1067,1029,1038,1062,1044,1033,1014,1005,1057,1067,1034,1026,1062,1141,1007,955,971,1009,980,922,982,1030,959,987,993,982,975,1007,1008,996,1014,985,972,1019,975,1005,988,1021,997,1000,971,1009,975,1008,989,960,924,954,968,953,951,928,938,974,969,938,925,968,953,954,974,975,925,947,993,982,965,929,987,952,978,989,927,984,955,950,916,840,997,937,997,917,1040,927,919,976,897,876,883,912,847,952,894,908,895,918,866,870,948,960,930,974,944,916,881,943,890,1107,1036,1074,1079,1110,1046,1109,1104,1055,1052,1085,1114,1139,1108,1107,1101,1070,1090,1066,1074,1055,1066,1106,1082,1109,1051,1158,1077,1105,1113,1053,1081,1092,1072,1016,1076,1064,1047,1065,1084,1056,1059,1025,1090,1025,1020,1105,1067,1056,1002,1088,1089,1071,1064,1057,1014,1075,1067,1040,1068,1024,1115,1026,1044,1025,1032,1044,1043,1036,1048,1015,1074,1052,1055,1056,1023,996,1009,1013,1041,1039,1011,1041,1048,1080,994,1050,1052,1059,1067,1018,1076,1002,976,998,1019,956,1009,1006,997,1039,985,1036,973,982,1010,974,973,1005,981,1009,996,1028,963,960,999,974,988,1030,971,986,957,1009,971,957,925,991,936,967,929,930,941,943,934,922,948,933,952,959,941,972,929,956,950,980,933,940,917,947,886,920,922,930,911,930,911,871,872,918,886,890,889,910,910,883,955,892,910,907,901,878,916,891,933,936,945,922,865,847,920,943,935,872,890,951,899,837,844,870,899,840,858,860,884,876,886,846,892,813,883,816,826,847,848,878,843,864,856,860,854,908,831,868,853,836,878,876,931,926,944,918,897,902,954,909,936,916,900,928,881,870,941,907,945,920,937,883,895,935,919,940,926,932,881,923,929,945,911,804,798,795,801,805,845,792,853,811,799,784,791,812,826,802,808,778,797,772,797,826,768,814,812,808,832,814,794,772,790,804,753,791,792,754,751,786,762,761,796,763,731,788,761,762,785,782,765,763,808,756,791,786,753,768,796,813,774,756,762,797,785,800,776,807,795,775,756,814,782,776,812,764,801,802,820,825,782,787,842,821,788,797,796,788,793,803,791,803,811,830,781,794,780,779,774,805,751,768,784,760,783,762,781,815,784,772,771,796,813,781,784,759,796,770,756,813,835,768,790,855,790,789,791,701,738,715,722,746,770,732,748,739,720,707,719,727,720,754,749,702,745,715,732,706,735,746,717,748,723,781,698,717,755,709,746,771,721,751,740,767,755,720,746,743,729,714,733,762,742,751,768,769,748,768,779,699,751,748,746,734,744,756,730,762,753,777,763,763,783,774,761,785,760,734,759,785,754,773,721,792,767,794,759,767,761,770,759,774,796,759,742,746,758,786,756,798,830,821,811,797,743,749,768,799,846,777,798,791,816,782,761,785,756,776,791,725,781,791,771,775,804,823,812,788,814,800,853,857,862,835,895,864,833,863,812,859,901,864,804,926,842,810,872,914,853,847,874,841,909,914,870,848,895,864,903,893,844,884,931,900,960,914,933,919,943,932,973,918,910,955,983,963,933,974,916,951,958,945,976,949,943,912,962,935,934,933,946,949,937,1122,1082,1093,1077,1106,1126,1088,1125,1120,1081,1090,1096,1151,1090,1140,1065,1112,1132,1091,1107,1117,1097,1097,1119,1098,1120,1110,1146,1100,1117,1101,1091,1123,1112,1061,1145,1094,1051,1087,1083,1079,1100,1069,1088,1126,1184,1139,1099,1055,1065,1081,1084,1081,1060,1027,1120,1079,1103,1035,1035,1150,1063,1014,1000,965,911,1067,966,938,962,1016,985,935,1026,925,968,920,993,980,992,999,995,996,1018,937,1041,1009,1001,957,919,965,979,1060,796,790,847,728,802,785,804,775,774,752,815,806,773,744,785,732,844,835,789,856,779,871,765,718,816,845,805,729,738,802,831,840,841,788,768,823,794,797,818,798,839,799,829,818,850,822,842,816,817,807,832,787,838,795,802,803,808,789,814,856,823,819,852,880,917,868,890,892,904,913,892,869,923,921,906,882,842,941,906,924,861,868,887,887,845,846,912,949,867,872,884,865,868,871,841,877,876,840,884,863,826,841,864,819,857,843,855,873,801,845,842,863,815,801,859,830,867,865,847,836,897,860,846,887,830,843,802,878,856,838,798,798,852,855,825,851,839,868,829,863,865,824,864,830,822,843,832,835,820,851,806,842,824,834,834,999,1005,999,979,984,1009,986,986,973,981,997,976,987,960,975,1008,957,984,1023,992,1004,926,1017,984,1004,980,1015,992,985,1004,989,1047,1033,1000,1036,1052,984,1032,1048,1033,1069,1036,1010,1041,956,1032,1013,989,1030,1017,1027,1082,1078,1022,1055,1045,1067,978,991,1004,1071,1018,1069,965,1038,1022,966,1011,947,1018,918,980,1025,1115,937,1003,1066,1003,950,1003,926,1069,982,941,956,1028,900,975,1055,993,995,964,1008,908,894,905,906,913,907,933,928,858,902,888,866,904,842,858,911,856,876,898,900,889,940,865,869,911,887,888,882,897,915,909,798,812,827,787,805,866,804,783,838,817,792,847,818,800,845,829,818,792,803,835,790,810,801,816,821,794,845,832,816,803,847,747,778,750,768,786,801,763,772,765,748,764,773,758,766,742,747,760,766,777,773,769,762,777,745,764,797,740,778,762,757,725,739,752,717,727,777,754,757,757,772,742,770,733,773,783,769,725,771,752,771,748,734,756,693,797,760,740,781,729,754,727,782,808,858,863,885,868,871,814,839,880,838,833,815,900,821,837,859,831,865,869,857,821,849,786,897,884,853,831,843,846,836,835,933,918,932,975,896,942,947,885,951,912,947,910,914,919,937,900,967,933,944,918,933,915,914,958,924,894,1028,912,873,927,931,931,951,949,888,942,950,916,1005,961,994,959,896,962,932,940,980,964,921,928,974,946,949,990,969,927,976,965,977,927,929,908,840,852,878,897,883,882,836,860,865,830,895,902,879,851,902,850,856,860,878,853,869,894,862,880,863,835,837,848,885,833,879,809,828,829,798,825,832,816,822,826,826,829,830,841,841,834,825,807,820,820,837,817,787,815,838,825,813,839,811,792,796,831,1053,974,994,970,985,999,986,1025,981,962,989,1003,988,1005,979,944,979,971,960,964,1009,1051,977,980,990,982,1021,1019,1018,993,991,933,1020,939,991,1033,896,914,965,1015,966,956,976,1061,982,971,1005,1002,941,980,994,1025,1004,1003,956,975,959,1023,977,986,989,961,936,946,914,913,900,944,935,925,904,886,892,924,905,888,910,951,964,904,944,969,868,922,920,940,925,935,921,891,917,961,863,888,932,888,978,885,900,869,893,915,936,951,893,1001,953,960,949,873,950,954,868,880,928,994,873,914,946,923,935,926,991,941,930,887,899,912,892,879,931,954,891,860,925,923,907,870,848,933,866,956,900,859,945,869,938,870,920,904,918,914,889,926,856,829,860,861,826,860,847,810,836,835,843,838,841,856,850,845,833,829,826,859,848,818,864,855,863,845,830,860,845,839,851,825,915,989,959,987,1000,957,969,977,951,957,976,958,974,936,923,998,953,957,928,1011,981,984,958,982,949,918,956,949,965,1013,993,1037,1016,1022,1053,1024,1009,1046,1048,1042,1055,1032,1038,1023,1010,1007,1078,1059,1030,1050,1035,1056,1062,1069,1061,1041,1044,1022,1020,1002,1065,1033,990,1042,979,943,998,1021,1066,997,996,1016,966,980,1064,1041,975,1100,1005,981,945,991,994,1040,1059,1056,1007,1006,959,981,992,970,1089,835,801,856,848,831,823,836,808,832,824,837,811,839,845,825,858,845,829,802,860,827,830,804,834,839,811,834,827,840,826,835,836,841,868,777,850,830,894,872,841,873,856,885,853,844,840,851,857,815,842,850,858,865,843,834,850,835,881,874,864,855,824,864,909,892,950,926,870,908,898,922,909,874,927,896,886,869,856,897,928,903,884,881,883,907,870,901,875,890,935,904,892,928,827,797,828,867,841,820,856,820,848,862,828,863,872,812,793,819,826,812,834,825,818,834,825,798,858,856,817,832,783,866,826,946,933,967,918,908,971,937,920,934,948,897,928,948,898,970,882,901,894,897,944,930,925,876,947,875,931,900,912,968,909,959,954,947,976,950,932,960,932,995,1006,948,945,941,957,951,967,903,971,982,912,967,929,948,952,1009,935,943,994,955,982,1007,996,851,890,883,861,892,830,932,867,868,868,854,914,865,855,956,878,816,891,900,963,773,895,906,854,903,902,887,947,940,860,952,1116,1095,1169,1096,1089,1112,1172,1128,1107,1118,1082,1112,1118,1168,1080,1125,1129,1055,1099,1081,1085,1110,1119,1080,1113,1070,1091,1081,1159,1095,1194,966,987,1039,1035,1018,961,995,985,1019,1002,1023,1020,970,1079,1027,1006,1016,989,967,1005,995,974,1002,1014,992,1074,1024,1006,1022,1017,983,877,933,954,988,895,962,924,915,986,922,953,957,941,922,954,958,988,924,936,966,871,973,998,913,917,881,878,896,869,937,946,1072,1092,1089,1117,1112,1159,1052,1098,1086,1036,1097,1059,1053,1052,1117,1088,1087,1081,1082,1074,1122,1108,1119,1124,1083,1107,1080,1077,1080,1060,1097,1060,1045,1006,1057,1056,1075,1058,1054,1058,1074,1028,1077,1035,1016,1071,1096,1019,1037,1068,1073,1043,1031,1056,1105,1071,1080,1031,1048,1072,1091,1039,935,973,1021,997,961,919,1005,996,934,935,965,950,941,950,975,980,986,984,1012,980,925,953,952,944,950,928,922,973,927,992,968,862,793,856,820,820,871,853,786,898,851,841,833,839,841,880,816,868,824,837,857,840,871,785,860,798,854,868,789,806,799,843,953,981,991,966,1015,1002,997,1014,1021,983,1026,991,964,1013,992,994,969,1016,1005,946,1026,1014,1006,1019,959,1038,997,1009,1006,993,1001,1000,1037,1032,1057,1104,1067,1100,988,1072,1018,1038,937,1070,1073,1035,1015,996,985,1072,1004,1073,1022,1058,1033,1030,983,998,1091,1034,1063,985,975,895,990,1034,985,966,1021,1051,1036,915,1003,1027,986,1020,1054,987,985,1004,1012,1001,1028,1050,985,1049,1012,1024,1000,972,1059,1062,966,894,867,818,852,807,857,848,877,872,849,808,845,820,846,880,825,791,844,847,874,806,838,823,845,880,818,832,888,832,869,874,872,897,962,908,985,917,944,955,960,970,964,960,951,919,961,956,930,936,917,937,950,908,933,997,976,848,908,1012,925,947,926,1039,1041,1043,1014,1073,1047,1030,1109,1027,1140,983,1060,1036,1072,1078,1072,1000,1081,981,998,992,1083,1116,1013,1130,961,1112,1047,1013,1101,1094,1033,909,985,918,1007,917,947,975,887,933,1046,1024,910,991,902,996,1015,954,893,873,1028,960,994,948,992,984,1050,1027,1005,1043,979,846,848,874,884,836,882,888,825,852,842,882,875,875,878,865,838,833,856,866,840,844,904,864,847,870,862,822,840,910,894,860,1011,1078,998,1058,1057,977,1032,1037,1030,976,949,1051,942,990,947,1059,1018,1021,1021,1041,1053,1066,974,1060,1004,1047,915,1086,1021,1008,1039,1022,991,1006,1084,1013,1011,997,1031,1160,1037,988,1015,1033,1034,980,1071,984,1084,1047,1069,1005,1061,1067,999,1023,1027,1114,959,1003,1059,1048,905,899,902,912,871,873,921,881,923,880,876,896,899,882,898,895,901,862,905,889,876,905,891,860,904,924,881,915,950,917,887,884,873,857,881,881,929,877,852,893,893,877,917,881,872,837,874,869,871,818,857,826,857,862,863,880,881,868,855,866,883,891,960,977,934,968,968,976,925,898,982,964,948,975,949,945,932,993,940,941,941,964,964,969,966,951,972,931,960,939,938,919,954,853,814,858,827,867,849,879,857,851,846,846,872,824,866,840,876,840,867,819,871,827,841,834,835,825,839,834,863,858,828,858,875,860,889,885,890,878,878,963,895,905,962,884,948,866,864,886,891,843,841,891,897,884,871,889,921,888,845,882,915,931,861,849,881,825,836,838,849,857,841,886,850,816,845,890,857,843,840,837,844,850,843,838,867,835,812,838,867,817,834,840,862,832,897,906,872,923,896,862,897,915,898,862,929,908,995,947,863,862,915,916,897,896,928,902,864,877,882,869,881,934,874,904,844,975,1013,975,979,969,958,983,940,972,977,983,987,965,979,1011,953,910,979,970,989,980,978,968,964,989,919,976,991,984,981,988,815,797,856,836,838,805,833,795,794,811,826,818,817,836,827,823,832,818,838,822,821,829,823,841,802,803,825,819,849,809,819,805,812,809,840,833,820,814,815,816,840,838,828,819,841,846,828,832,813,831,818,848,835,836,825,790,820,846,871,831,840,852,839,802,773,768,806,790,819,800,819,760,828,813,798,791,806,790,793,794,805,823,764,805,796,789,783,823,776,800,800,790,798,820,781,830,793,778,862,814,787,854,803,857,821,796,816,852,794,804,815,849,765,838,822,826,826,805,818,830,835,831,810,808,837,872,872,877,852,848,892,979,874,896,879,921,874,939,946,849,935,869,840,916,892,921,917,920,899,907,857,934,907,790,878,862,869,804,858,835,806,823,854,860,821,882,830,873,903,779,853,864,837,857,824,826,842,796,846,909,844,847,899,885,864,887,949,998,982,939,910,948,943,973,968,944,931,1019,952,975,973,934,923,967,978,1013,959,974,936,970,1010,960,1029,979,971,936,975,1007,990,1001,1006,991,999,1005,974,994,1015,973,998,1022,1001,1019,1023,994,945,1001,1003,1044,1004,1011,999,999,974,973,987,1006,998,1019,1087,1095,1089,1097,1083,1113,1089,1093,1132,1084,1084,1122,1153,1113,1063,1045,1090,1124,1116,1123,1105,1151,1110,1088,1121,1145,1128,1136,1068,1088,1118,1104,1108,1068,1075,1102,1029,1082,1065,1105,1072,1097,1054,1067,1085,1050,1085,1041,1094,1067,1078,1071,1088,1079,1074,1045,1032,1096,1098,1078,1068,1031,1060,995,994,1015,1039,1083,1012,1053,999,1049,1091,1016,1035,1033,1074,1001,1043,1025,1024,1026,958,1014,1035,1000,1062,1024,1051,1028,1038,987,1069,967,992,982,977,958,944,968,1034,1003,979,974,949,963,971,932,965,987,991,911,991,941,961,955,949,984,959,924,966,1017,994,967,1108,1112,1077,1087,1136,1136,1084,1095,1082,1067,1105,1083,1062,1128,1128,1022,1084,1096,1110,1114,1079,1082,1070,1115,1071,1078,1076,1081,1055,1074,1117,1067,1042,1074,1055,1093,1041,1053,1072,1028,1110,1065,1061,1038,1070,1068,1075,1041,1016,1071,1018,1027,1011,1017,1070,1017,1091,1105,1046,1070,1030,1081,1013,970,987,1004,967,936,933,951,986,981,977,1013,1013,942,1001,1012,964,978,978,988,948,962,1001,983,989,987,1004,1006,991,1016,1002,817,819,860,810,840,845,818,824,824,863,841,841,854,835,828,836,869,830,853,832,856,852,847,852,841,854,834,800,839,847,806,900,881,882,862,823,852,904,844,820,861,820,848,836,811,805,856,854,857,823,862,853,840,827,840,825,843,864,806,889,834,830,812,823,825,777,839,790,831,760,813,797,842,839,832,805,841,792,799,823,816,799,813,768,825,796,848,780,778,775,794,837,822,920,925,953,971,932,935,911,949,933,951,958,957,955,935,961,910,1002,952,981,952,942,938,943,987,948,928,983,929,932,950,938,834,842,772,847,824,830,873,859,867,844,824,837,866,864,869,809,859,840,841,877,833,879,868,830,831,861,879,842,888,868,838,806,855,802,823,917,889,814,843,839,747,820,922,843,878,900,896,862,862,862,927,868,916,852,873,821,854,878,833,848,913,847,864,845,907,835,905,834,832,849,871,836,854,865,881,834,845,808,865,824,861,822,855,862,834,808,812,831,834,856,843,859,851,845,813,777,810,837,794,779,801,855,798,797,822,813,818,801,808,792,788,789,764,777,803,761,811,791,771,816,791,814,813,806,784,784,819,835,756,750,797,832,784,817,749,764,798,825,754,836,764,791,801,818,785,814,823,797,846,773,819,813,792,802,762,1019,965,981,1006,992,1020,1020,977,1021,990,960,1007,971,1015,938,994,964,1035,992,1005,1006,961,1031,1032,1019,933,979,1055,996,963,944,846,758,778,830,791,798,810,768,810,832,783,814,815,823,827,801,846,812,822,816,818,791,807,782,797,822,822,811,800,833,834,736,838,729,688,737,787,834,855,860,809,742,789,817,718,760,846,851,737,720,661,790,704,620,790,738,701,723,725,746,759,656,1185,1172,1162,1146,1144,1162,1183,1152,1145,1166,1221,1150,1191,1164,1185,1165,1175,1145,1173,1181,1181,1209,1146,1181,1139,1159,1166,1158,1157,1142,1222,1111,1095,1118,1086,1062,1085,1152,1111,1077,1121,1102,1051,1086,1091,1039,1067,1081,1059,1113,1095,1100,1026,1060,1106,1066,1090,1082,1072,1125,1082,1045,1007,1006,992,994,1033,1013,1009,975,1039,1011,995,1005,1039,1005,1015,999,1034,1022,977,981,1030,999,1006,1010,972,999,999,964,972,1024,988,1086,1140,1108,1087,1090,1117,1148,1133,1096,1118,1099,1097,1104,1133,1065,1168,1085,1139,1135,1109,1118,1108,1103,1138,1078,1080,1138,1125,1098,1169,1103,1080,1069,1051,1089,1023,1073,1079,1055,1093,1094,1089,1034,1053,1034,1083,1064,1125,1075,1055,1033,1092,1057,1066,1045,1109,1128,1084,1105,1057,1066,1053,1070,1053,1000,1077,1041,1073,1042,1020,1042,1060,1049,1057,1070,1051,1120,1067,1047,1076,1051,1031,1095,1058,1048,1116,1048,1036,1050,979,1033,1056,1035,1046,1026,1073,1068,1102,1079,1070,1089,1051,1050,1104,1073,1036,1084,1058,1067,1022,1016,1037,1130,1082,996,1094,1084,1105,1084,1016,1069,1077,1080,1081,1017,937,1034,1016,1013,923,976,1040,979,980,972,973,1018,1000,1057,1089,1012,1074,1070,1048,1079,1026,1119,1064,1035,1041,1049,1014,1004,1003,995,881,823,891,807,864,940,889,865,882,907,844,910,873,918,886,888,854,869,937,922,864,884,893,841,829,949,781,863,831,876,849,754,799,764,817,747,783,799,815,818,780,764,784,790,759,790,784,781,754,804,749,851,801,794,784,760,854,795,827,779,770,811,737,715,765,735,721,735,754,753,738,768,813,755,751,755,734,737,734,763,760,725,734,725,763,747,722,761,756,774,753,778,738,779,783,770,759,779,769,784,751,745,787,774,761,773,768,755,781,768,766,747,771,774,725,801,780,734,758,770,796,804,787,813,984,924,955,926,898,903,952,816,821,960,959,937,906,897,870,902,897,802,926,904,981,914,912,895,923,949,919,895,992,950,944,756,714,737,745,740,742,742,755,750,758,713,756,792,759,725,734,737,767,775,746,759,769,746,770,728,766,752,739,735,765,760,695,639,855,682,806,821,573,671,806,680,685,660,710,773,882,620,753,758,813,642,854,782,731,814,721,779,689,798,739,833,795,1029,1020,1133,1061,1066,1053,1113,1098,1030,1080,1093,1024,1095,1117,1081,1074,1075,1106,1104,1059,1049,1062,1016,1089,1056,1039,1104,1055,1084,1087,1085,1045,1041,1047,1052,1063,1045,1029,1035,1066,1069,1027,1085,1050,1044,1081,1051,1019,1039,1044,1005,1053,1046,1032,1053,1064,1067,1066,1053,1024,1065,1032,1076,1042,1026,1025,1018,1009,1038,1001,1002,1063,929,994,1052,1047,1020,1025,993,1069,1033,1037,1015,1027,1002,996,1013,953,985,1043,1029,1007,1001,840,871,824,892,962,878,931,949,903,934,927,904,881,872,875,904,879,846,873,820,854,840,898,877,901,884,827,840,853,858,855,803,808,767,772,744,792,718,744,787,838,785,786,723,741,736,751,797,748,794,751,785,742,789,808,761,762,724,819,832,796,829,1005,998,1012,1015,993,1060,958,985,993,1007,1005,981,1028,991,984,970,1016,1019,1013,972,966,994,950,1042,1007,1000,983,1020,987,1031,1056,911,915,959,964,960,935,904,964,944,966,962,943,905,986,955,910,992,936,908,973,905,925,891,1010,961,967,938,902,993,978,959,906,895,881,929,896,893,945,885,935,941,879,931,951,943,926,890,903,887,875,897,886,928,901,1003,944,931,927,841,872,914,909,1006,1026,1043,1014,1038,1069,1067,1071,1044,1021,1034,987,1045,1037,1036,1085,1029,1021,1021,1025,1045,1009,1011,1020,995,1043,1019,1039,1071,1040,1016,895,919,901,930,950,888,907,916,944,940,919,948,888,955,943,895,928,907,942,921,907,908,907,924,940,914,914,937,931,896,928,894,843,823,878,847,864,871,853,917,862,879,865,842,858,878,888,808,860,840,880,854,863,877,867,814,910,886,872,889,884,860,845,862,879,828,861,848,888,831,845,868,827,872,888,843,893,847,807,884,875,895,883,882,873,874,873,893,833,882,853,874,848,806,820,818,825,832,834,798,839,809,837,820,805,811,805,786,840,869,816,802,843,858,816,828,795,828,831,833,831,834,802,806,795,774,813,794,765,766,790,758,763,768,788,788,778,794,793,765,806,794,810,806,769,767,779,766,756,737,769,806,761,816,766,741,712,720,758,731,742,757,772,746,721,740,752,733,732,742,712,715,712,719,741,718,738,725,733,720,733,704,692,714,735,722,696,678,673,693,698,663,670,719,681,681,710,731,698,700,699,722,707,663,690,707,691,689,695,726,701,698,710,721,730,719,717,702,685,704,681,691,662,677,696,708,681,728,671,705,678,716,705,692,687,693,684,691,675,698,718,694,692,723,671,676,693,695,754,759,730,713,708,718,710,748,723,773,768,675,637,684,673,679,640,738,729,751,723,740,701,723,687,667,700,660,712,683,706,947,937,922,948,1010,958,956,947,915,892,960,934,970,971,953,938,980,950,965,911,882,999,935,968,967,941,916,971,899,971,958,819,868,865,859,870,834,840,861,883,835,861,854,845,834,836,864,853,861,856,838,857,830,871,853,861,881,879,848,851,841,875,815,821,792,782,817,812,812,807,844,818,835,778,836,838,823,794,821,795,839,821,838,810,820,835,806,814,808,802,796,804,812,773,770,802,742,772,788,789,788,746,739,790,739,743,762,755,766,773,761,798,768,750,809,720,758,728,770,753,798,741,741,792,835,819,832,842,818,841,848,818,870,923,830,868,849,849,821,787,831,846,809,787,828,868,847,809,805,832,773,839,843,851,832,790,790,783,799,768,775,800,784,783,795,775,779,775,816,777,800,795,792,790,796,785,805,831,796,814,816,783,792,793,786,787,832,819,843,855,851,819,845,770,789,822,812,811,833,811,818,801,786,855,819,838,798,809,822,798,788,834,840,819,821,852,799,753,768,749,802,812,766,779,797,818,753,768,798,734,762,779,817,726,725,797,775,743,801,794,799,772,749,761,787,770,763,773,1059,1147,1112,1128,1106,1118,1131,1097,1095,1108,1124,1106,1074,1086,1082,1054,1119,1060,1086,1123,1156,1099,1101,1078,1076,1146,1150,1178,1091,1071,1109,1056,1024,1045,1072,1052,1018,1000,1040,1036,1066,1039,1048,1003,1071,1038,1046,1056,1059,1000,1051,1033,1063,1064,1009,1043,1019,1019,1098,1041,1088,993,883,907,917,903,883,894,901,941,911,873,910,875,879,900,897,868,887,863,877,923,907,914,919,904,919,937,882,916,913,896,915,802,795,820,789,821,856,810,818,804,829,827,809,807,789,814,796,789,821,857,802,821,802,816,824,797,806,836,797,767,826,790,791,800,744,790,789,771,787,795,781,789,802,784,811,756,794,788,807,769,753,765,752,789,796,782,821,779,825,795,780,749,786,1020,1027,1076,1000,1046,997,992,1060,1001,1047,1045,998,975,1011,1040,1096,1062,1024,1112,1034,1059,987,1072,972,1027,1018,1027,997,1035,1040,1022,1070,1042,1036,1003,1030,1054,1052,1100,1028,1037,1014,1081,1013,1034,1055,1075,1006,1063,1056,986,1091,1044,1051,1100,1091,1037,1074,1009,1001,1091,1011,926,919,914,932,885,925,917,929,902,870,927,920,849,901,866,913,920,887,904,870,951,893,949,952,979,905,889,895,914,920,860,868,892,844,871,882,816,844,840,864,898,815,946,868,882,825,928,960,849,862,894,935,860,856,904,901,785,830,935,917,890,861,958,1008,1003,946,1023,966,962,972,981,986,1037,966,1030,1011,939,957,986,1002,971,984,981,952,1002,950,990,1001,953,919,987,975,1006,1121,1126,1075,1098,1125,1060,1139,1118,1097,1082,1142,1102,1085,1112,1138,1102,1146,1125,1074,1101,1103,1091,1085,1104,1070,1055,1088,1108,1089,1114,1067,1049,1001,1027,1084,1030,1084,1045,1029,1016,1055,1020,1061,1054,1091,1047,1053,1023,1031,1078,1007,1073,1074,1034,1009,1039,1058,1062,1052,991,1057,1030,1057,967,1022,1005,1032,1014,1009,1008,1047,991,1057,1020,987,1021,1084,983,1052,1039,1044,1012,1013,1017,1041,1062,1024,1010,1032,1054,1041,1040,974,1019,1023,987,1031,977,1020,948,1040,989,1043,1037,948,1009,991,992,971,1016,1018,974,955,1050,946,954,1001,1064,1002,996,997,909,1017,938,815,801,795,820,818,826,832,805,825,820,830,835,844,815,747,787,816,760,813,809,799,849,804,811,812,807,830,792,831,805,829,753,795,794,812,775,834,772,744,776,762,802,812,812,769,771,823,778,832,780,797,787,753,809,823,804,784,791,771,821,774,833,863,861,866,885,893,854,887,855,874,887,843,867,837,867,842,870,872,861,892,841,849,844,857,890,831,900,892,891,881,872,860,779,765,768,786,801,778,774,766,807,794,783,767,787,786,770,791,772,784,784,782,782,737,763,780,742,810,765,767,804,746,801,833,900,814,808,861,839,797,802,794,808,797,844,825,860,858,844,808,884,840,806,805,802,811,809,785,844,858,855,777,880,813,1056,1076,1068,1044,1096,1069,1058,1075,1103,1096,1073,1064,1088,1060,1070,1067,1045,1043,1044,1071,1064,1055,1065,1093,1037,1061,1087,1048,1095,1089,1075,1019,1028,1016,1038,991,1033,1033,1034,1030,1001,982,1024,1026,1036,1014,1027,987,1018,1018,1017,1067,1040,1007,1040,1007,1026,1035,1050,1055,1012,1032,900,988,961,990,1035,1004,906,967,948,1002,996,974,984,938,982,966,955,950,1009,979,993,966,970,1026,980,973,1003,1014,956,1011,984,1046,1009,1044,1014,1003,1056,1013,994,1038,1052,1035,999,1023,998,1050,998,1029,1058,1000,1051,995,1015,995,992,998,1001,1023,1021,1046,1044,979,967,921,938,955,942,935,922,962,926,983,1016,922,967,933,941,893,916,933,961,956,930,925,932,926,919,985,930,910,928,961,891,857,865,868,894,867,832,839,857,849,849,853,897,870,835,858,836,837,863,860,820,838,855,842,850,823,899,854,839,817,831,837,872,875,868,886,840,907,884,886,861,881,869,888,881,877,888,917,896,878,870,875,899,916,906,857,891,887,896,933,861,905,850,913,915,893,864,931,929,885,883,886,860,868,910,884,879,872,848,929,875,858,933,890,895,903,939,903,890,855,936,885,927,920,808,863,815,806,850,809,805,845,848,820,802,814,739,840,838,849,846,837,793,826,798,858,851,854,823,874,856,749,820,869,795,1032,1034,1062,1007,1056,1046,1026,1041,1070,1014,980,1027,1051,1048,1101,1079,1023,1030,1072,1010,1032,1029,1049,1031,1021,1069,1073,1039,1027,1022,1096,969,1009,931,978,987,931,926,954,912,954,927,1010,931,946,915,934,927,941,922,921,963,940,949,936,962,955,938,915,938,916,934,882,930,887,907,958,873,935,1006,872,872,975,949,915,945,892,971,919,926,873,943,936,896,891,965,866,910,838,920,919,919,969,989,1021,987,982,1051,1010,1051,1027,1038,1044,1053,998,1069,1062,974,1044,969,1018,1032,1002,984,1028,989,1018,1003,973,969,970,965,948,947,808,807,842,837,878,857,838,835,800,813,831,839,852,833,843,826,803,760,804,837,809,837,807,833,833,799,811,837,852,825,821,808,682,803,805,760,773,819,836,739,779,759,779,764,764,700,776,705,798,828,762,773,829,766,771,770,748,760,854,788,798,807,1048,1080,1086,1001,1139,1074,1059,1088,1050,1043,1150,1057,1095,989,1105,1020,1135,1053,986,1157,1180,1069,1110,1128,1042,1088,1143,1193,1070,1022,1034,861,880,927,894,920,939,870,884,945,953,953,919,941,913,883,856,911,927,876,927,951,956,831,969,886,891,914,938,977,959,880,820,840,797,865,850,822,883,831,845,845,870,852,828,867,857,865,817,866,862,858,802,857,857,848,831,841,802,849,818,830,870,942,902,947,952,956,956,913,914,989,929,941,957,942,953,928,915,898,966,980,939,945,930,898,939,910,945,916,934,915,939,981,833,849,799,775,846,834,852,839,865,833,858,787,815,869,830,833,808,835,853,843,880,867,810,844,851,810,822,832,856,835,809,1014,1031,1014,1045,990,1107,1022,1041,1060,1040,1058,1057,993,1040,1021,1020,1033,1037,1038,1028,1047,1066,1032,1049,1048,1049,1024,958,1036,1042,1027,980,956,960,983,965,949,1030,1000,956,975,1007,922,928,1002,953,973,983,976,930,981,961,1035,999,988,1026,947,982,965,963,1009,998,1048,992,1016,1040,1076,1001,1101,971,1026,1042,993,1075,1019,1039,1025,1067,1008,1103,1069,1058,1034,1059,1036,1081,988,1108,1017,1034,1021,1047,1093,915,909,855,890,953,905,877,869,905,915,895,877,906,913,945,886,861,924,921,904,877,915,970,918,933,924,872,908,953,919,925,828,930,1043,1023,980,930,931,881,912,953,950,950,857,1008,893,978,1049,945,1011,1043,1030,968,1011,1013,1016,915,1001,921,939,1009,997,1096,1118,1137,1094,1076,1036,1032,1034,1078,1077,1092,1068,989,1052,1070,1091,1036,1092,1134,1054,1030,1116,1064,1063,1067,1131,1062,1124,996,1077,1070,1120,1135,1191,1141,1105,1172,1154,1195,1119,1183,1164,1088,1135,1136,1138,1157,1145,1118,1143,1158,1141,1095,1149,1129,1128,1147,1143,1186,1119,1135,1092,1064,1015,1079,1078,1078,1056,1054,1039,1018,1109,1000,1034,1067,1094,1071,1067,988,1066,1106,1051,1086,1026,1026,1051,1071,1055,1048,1045,1059,1001,1063,960,950,968,953,921,939,990,958,948,1015,942,1010,928,1009,953,960,948,931,943,942,982,994,1017,940,995,978,979,969,922,950,1030,1114,1087,1068,1115,1119,1095,1099,1137,1107,1131,1078,1101,1119,1122,1124,1094,1158,1088,1130,1108,1125,1098,1130,1120,1062,1157,1141,1122,1086,1088,1183,1017,993,1026,1029,1038,1052,1016,1028,1034,1040,1018,1036,1016,1113,1091,1112,969,1075,1012,1032,1059,1068,1051,1014,1075,1039,1081,1075,1066,1030,1051,952,982,970,982,954,932,959,914,908,970,988,969,957,958,995,950,988,986,966,980,955,962,921,939,983,943,932,962,953,993,985,1001,943,1052,1034,1003,1020,1064,1000,972,1035,1045,1022,1045,1004,1003,1019,1048,983,1064,974,1047,972,991,1044,1028,1001,995,1019,973,1010,1087,830,786,809,831,776,858,811,843,851,786,804,825,855,827,860,844,743,818,820,835,815,792,856,811,738,812,798,813,845,850,830,749,705,766,775,823,753,920,760,757,721,745,701,793,827,847,759,705,812,755,751,759,830,778,702,743,803,733,781,785,803,847,1056,1081,1158,1119,1090,1097,1157,1098,1202,1118,1175,1047,1154,1108,1099,1083,1118,1122,1085,1085,1079,1095,1087,1120,1074,1058,1077,1109,1148,1150,1114,1032,1148,1103,1105,1066,1135,1075,1129,1063,1135,1061,1057,1129,1062,1082,1042,1035,1107,1089,1035,1063,1051,1068,1101,1116,1052,1140,1052,1106,1140,1133,1053,1059,1066,1087,1087,1099,1096,1089,1066,1107,1027,1144,1086,1032,1040,1080,1007,1121,975,1104,1019,1029,1009,1007,1084,999,1099,1034,1034,1014,1007,797,835,821,778,858,758,848,809,805,753,845,832,856,800,883,762,748,871,788,867,853,838,852,794,838,887,874,844,811,885,741,807,763,802,816,740,783,847,791,826,848,812,811,832,794,827,808,887,860,859,859,817,839,779,831,864,834,811,821,777,846,876,923,934,939,931,899,949,954,915,933,954,873,913,888,898,930,944,925,896,895,924,916,945,963,932,928,954,948,926,980,891,950,1157,1111,1110,1081,1065,1123,1099,1105,1101,1098,1125,1110,1140,1141,1096,1066,1146,1115,1130,1123,1136,1102,1126,1095,1132,1124,1070,1169,1115,1122,1051,1078,1071,1086,1080,1068,1048,1050,1022,1050,1065,1136,1027,1114,1103,1076,1042,1053,1119,1071,1035,1044,1064,1073,1048,1084,1066,1042,1070,1039,1033,1013,1050,997,1012,1094,976,1052,974,1033,978,976,1053,1053,1006,1011,1030,1040,1028,994,1009,1040,1067,1026,1043,1011,1052,1017,1060,1037,1003,1002,1002,1004,985,965,965,985,968,953,962,969,961,1001,947,942,1013,966,936,946,940,985,1017,967,946,929,955,976,955,956,957,921,956,935,1075,1084,1119,1062,1086,1108,1115,1095,1100,1071,1114,1123,1077,1094,1082,1116,1135,1084,1030,1066,1119,1072,1116,1128,1102,1089,1084,1055,1093,1052,1085,1052,1097,1038,1022,1031,1040,1014,1034,1038,1037,1037,1064,1046,1080,1058,1019,1089,1041,1034,1042,1090,1035,1076,1026,1052,1019,1101,1093,1072,1063,1064,1079,1033,1010,1064,1059,975,1034,1068,1039,1044,1016,1075,1075,1029,1034,995,1037,1093,1027,1069,1027,1054,1009,1049,982,998,1041,1014,1073,1063,1088,963,992,961,972,976,980,1009,980,950,973,955,988,989,966,1009,998,975,965,988,965,1026,947,963,951,959,980,973,991,999,976,930,901,899,872,914,889,873,920,872,897,904,882,893,916,899,863,882,873,870,862,909,900,913,905,905,891,908,923,878,882,892,889,867,879,903,930,868,942,926,879,905,889,852,901,876,922,926,939,907,881,919,878,864,851,887,880,911,906,877,902,916,889,822,947,997,993,935,968,971,985,960,997,994,945,950,957,950,967,939,959,1009,980,997,895,1005,965,971,974,903,990,968,1009,939,949,1004,978,995,1001,921,914,982,896,991,938,1002,938,940,955,1009,958,1024,937,959,936,917,923,1037,952,983,964,1017,990,1057,966,1002,1033,1003,957,1045,1042,1001,982,1020,1037,975,1021,986,1007,1007,1006,997,1043,1028,1044,1066,1046,1014,1008,999,1003,1004,991,1009,999,987,968,882,929,859,890,913,777,913,952,882,917,939,829,921,886,850,923,869,840,871,888,813,861,865,890,887,877,973,890,901,861,935,799,794,808,830,810,819,770,838,819,825,836,796,772,823,786,819,811,817,860,818,796,823,831,852,757,837,816,847,803,854,820,1098,1083,1131,1107,1121,1106,1047,1096,1048,1021,1074,1163,996,1144,1118,1113,1112,1070,1110,1057,1051,1100,1023,1062,1129,1104,1090,1105,1084,1072,1070,1048,1058,1076,1008,987,1119,1043,1044,1043,1081,1059,1057,1031,1049,1123,998,1058,1075,1023,1036,1026,1046,1099,1060,1078,1080,1091,1048,1009,1086,998,883,904,818,900,872,827,870,894,866,854,925,927,903,888,865,894,837,850,918,885,883,861,852,850,870,885,877,854,855,795,880,839,801,828,823,808,805,835,800,859,823,807,862,815,770,811,864,841,850,832,857,849,827,820,850,864,850,827,849,817,831,794,931,891,971,847,941,892,899,929,976,940,948,904,976,967,945,929,904,962,941,900,917,959,894,922,898,960,929,951,889,947,900,955,924,957,962,1017,922,973,963,937,923,962,901,960,960,990,959,959,956,965,954,956,939,892,1015,942,957,979,960,946,946,934,1019,1071,1045,1090,1022,1042,1114,1048,1083,1071,1082,1059,1060,1075,1074,1026,1026,1020,1118,1118,1080,1091,1029,1040,1055,1076,1054,1028,1117,1042,1029,946,892,954,822,859,946,904,850,942,982,911,906,927,922,910,970,956,899,926,953,908,914,914,923,895,890,951,945,916,950,954,959,901,894,984,958,981,887,1095,905,900,1024,979,1038,940,1028,928,942,1011,912,1001,955,994,867,887,979,938,968,905,1014,969,990,990,1086,1054,1024,1041,1063,1063,1061,1033,1015,1042,1039,978,1036,1036,1016,1003,1081,1083,1057,975,1066,1014,1068,1058,1027,1089,1025,1032,1070,1042,1038,1002,946,1091,1061,969,1003,1127,1097,1036,1074,1060,1049,1024,1065,1028,1058,1079,1051,1040,1074,1108,1087,976,1014,1055,1040,1019,1051,1023,1010,916,967,957,926,956,966,957,953,974,928,958,968,952,963,951,929,953,954,972,948,953,973,901,939,929,950,942,959,922,954,994,884,855,862,884,866,856,873,847,861,872,838,864,868,857,874,856,876,912,873,860,897,888,843,905,889,871,885,891,890,825,825,969,980,920,967,961,932,931,954,1008,911,976,1002,956,985,911,1013,951,955,944,950,932,978,1039,955,963,1017,1030,921,960,934,1002,999,1017,1026,994,968,1011,1014,1021,992,1018,1006,1027,1041,992,998,1002,1014,1010,1022,1023,1015,1020,1050,1024,1030,985,1014,1002,1018,971,998,1181,1198,1138,1158,1183,1154,1116,1242,1102,1178,1195,1189,1178,1160,1108,1175,1117,1197,1224,1142,1081,1154,1151,1204,1122,1146,1160,1156,1133,1137,1093,1095,1105,1082,1060,1094,1031,1068,1066,1080,1045,1079,1091,1092,1043,1076,1049,1065,1025,1128,1131,1083,1071,1082,1100,1072,1097,1071,1071,1042,1052,1093,995,1003,965,1005,951,1024,997,971,976,998,996,986,959,936,998,1001,980,973,985,990,1010,1001,979,998,1004,1024,951,976,1009,953,980,1019,1029,1006,974,1053,1003,1040,1023,1001,1045,1026,969,1061,1008,1094,1077,993,1053,994,921,1031,975,1008,1024,1036,989,1010,1024,1037,998,1097,820,895,881,857,864,869,852,921,871,837,891,837,913,853,887,839,884,904,912,874,870,861,852,902,865,881,840,852,907,890,807,804,799,877,831,849,863,838,832,842,872,822,791,810,876,827,827,782,888,824,849,830,791,845,818,797,847,806,754,858,801,786,1021,974,941,969,1022,961,940,991,979,967,918,989,1025,987,964,961,973,952,998,961,966,946,944,987,990,916,959,966,1009,975,970,1086,1072,1101,1097,1129,1084,1107,1157,1140,1100,1071,1145,1111,1112,1095,1119,1117,1120,1087,1044,1148,1094,1072,1125,1090,1104,1073,1109,1125,1099,1108,1081,1013,1059,1002,1086,1028,1031,1101,1116,1088,1093,1037,1086,1073,1025,1074,1044,1077,1079,1045,1004,1083,1095,1070,1141,1030,1029,1076,1045,1075,1038,911,963,975,980,986,898,954,997,934,938,982,926,959,950,988,938,948,874,911,897,880,939,923,892,915,1009,915,931,932,976,937,862,891,880,863,860,802,810,834,838,913,845,860,853,835,849,851,844,879,859,874,862,852,871,841,860,865,873,855,869,843,821,888,858,866,822,851,893,863,871,853,830,891,855,855,868,831,853,884,849,862,849,858,888,860,827,847,845,846,848,842,845,854,891,848,890,856,854,857,864,880,915,879,848,851,820,801,837,848,865,833,934,788,845,836,825,849,860,802,899,871,886,854,931,1072,1106,1077,1091,1048,1045,1066,1011,1054,1051,1071,1045,1048,1069,1081,1068,1052,1067,1071,1056,1031,1067,1044,1088,1067,1059,1075,1033,1064,1046,1046,1007,1006,998,1055,1016,1010,1007,1046,1014,1045,1058,1032,1012,1010,1061,977,1029,1025,973,976,1024,1024,1033,1004,1041,1040,1045,998,1040,1021,956,982,1022,988,1002,994,995,1005,1029,1020,1003,982,1004,1012,1026,1007,974,996,1000,1047,956,1023,1003,975,969,995,1005,1003,995,1006,1040,1034,986,996,981,1029,954,987,986,967,898,920,980,992,1044,926,991,968,935,883,953,940,981,922,945,934,987,972,934,925,991,970,959,1086,1136,1127,1125,1140,1112,1084,1137,1109,1094,1110,1118,1122,1138,1173,1115,1106,1106,1134,1104,1083,1131,1151,1113,1172,1127,1082,1146,1067,1144,1163,1110,1103,1079,1059,1064,1078,1111,1048,1057,1093,1086,1075,1041,1069,1112,1081,1109,1078,1076,1071,1091,1094,1012,1062,1110,1122,1069,1102,1038,1096,1081,1102,1102,1120,1093,1099,1067,1097,1147,1125,1148,1085,1099,1115,1150,1095,1119,1092,1147,1106,1085,1070,1151,1134,1170,1079,1124,1127,1086,1148,1145,1096,1047,1088,1059,1093,1115,1081,1060,1065,1087,1090,1129,1081,1112,1092,1138,1072,1061,1082,1099,1074,1067,1094,1089,1043,1074,1068,1118,1101,1170,1101,1147,1025,943,918,951,990,979,907,968,957,883,977,926,934,938,939,992,963,908,989,966,970,921,951,967,983,965,944,950,941,964,1013,911,970,944,929,904,899,931,970,954,931,947,963,941,972,1016,932,939,946,909,906,888,907,926,932,967,901,921,894,1012,920,980,944,999,997,1036,1033,1005,984,1000,980,1017,1002,1006,994,991,1016,984,996,996,1020,1056,1015,1022,1051,1013,1000,994,1062,1038,998,1055,996,928,984,940,949,975,1004,981,925,934,928,1002,960,945,954,997,956,948,953,994,971,968,986,971,980,939,961,991,915,948,945,964,841,940,899,854,904,848,823,875,838,829,872,880,926,843,866,857,839,871,896,850,867,873,883,852,885,841,821,829,899,871,820,1116,1116,1109,1049,1117,1125,1078,1156,1167,1099,1122,1113,1189,1096,1155,1057,1071,1161,1171,1121,1098,1057,1106,1115,1063,1115,1131,1090,1070,1097,1200,1048,1055,1057,1021,1066,1068,1033,1047,1058,1082,1038,1032,1045,1047,981,1044,1031,1073,1024,1104,1075,1087,1006,1033,1043,1071,1068,1011,1036,1042,1047,989,997,975,1007,982,987,975,1001,1011,988,981,974,1004,939,975,980,964,988,994,992,983,988,971,973,960,1001,978,974,996,967,994,974,953,966,957,934,956,984,929,930,941,952,947,935,966,934,958,959,956,930,946,1003,978,968,935,948,984,962,983,958,974,942,930,968,905,912,950,982,960,912,962,915,989,972,943,899,912,921,938,919,947,925,945,968,897,917,901,907,918,949,967,888,906,1024,1130,1092,1050,1076,1008,1091,1091,1126,1036,1109,1079,1061,1079,1095,1082,1095,1088,1100,1069,1069,1055,1046,1023,1016,1076,1031,1046,986,1025,1032,902,882,910,898,933,820,969,875,942,959,896,920,899,956,919,929,869,886,923,947,935,901,880,930,892,936,944,956,968,913,992,1005,986,940,1109,918,936,985,1042,1024,947,924,1075,1018,899,904,979,1033,1026,977,1010,912,967,1018,1024,1017,1018,972,891,1015,1022,885,1013,970,1025,1124,1096,1014,1034,1070,1020,974,1057,1036,1060,989,1048,1055,1048,1034,1106,1017,1027,1037,994,1035,1044,973,1050,1037,1009,1025,1053,1092,1106,1045,1057,1087,1065,1059,1062,1069,1036,1043,1099,1137,1125,1039,1146,1118,1040,1122,1048,1058,1059,1130,1135,1099,1055,1062,1108,1090,1080,1078,1039,1065,1094,1118,1083,1038,1059,1082,1020,976,1018,1016,1055,1104,1092,1080,1049,1052,1084,1070,1058,1083,1023,1044,1109,1007,1027,1079,1139,1081,1059,923,962,946,926,921,940,997,913,919,926,924,904,940,960,982,919,950,937,930,883,952,954,977,901,892,896,964,902,931,906,963,795,804,853,833,816,778,770,787,788,826,822,796,822,807,822,799,783,788,820,825,812,800,811,791,773,779,803,848,836,788,817,790,806,770,768,790,761,795,830,760,750,791,806,774,762,761,775,718,767,769,766,794,769,758,777,734,795,755,804,726,763,771,979,936,1020,943,1009,1062,1077,930,1020,979,1023,976,985,984,983,959,1078,1020,1023,989,1027,1048,976,990,1038,994,995,1022,1008,954,1026,925,962,942,920,955,991,931,904,941,921,975,947,934,962,953,998,924,960,912,991,965,944,936,959,901,959,918,997,948,919,954,941,789,883,866,880,887,874,870,912,809,820,856,884,875,822,800,803,808,843,843,824,816,841,825,815,855,858,878,849,774,848,748,718,763,762,765,763,733,725,772,767,724,749,762,771,743,753,719,709,753,722,746,767,749,747,769,753,732,715,755,750,800,736,773,741,780,752,782,739,706,749,754,746,726,792,755,794,730,722,764,727,761,776,732,718,740,684,789,761,763,743,750,753,813,729,774,783,795,783,819,724,792,775,799,801,783,810,799,813,766,774,759,776,770,747,826,765,794,756,741,789,807,763,827,743,815,770,810,796,769,838,807,742,771,763,767,768,794,767,773,765,848,749,808,746,791,780,781,768,812,789,767,787,763,803,917,897,915,917,955,907,924,909,861,906,896,867,911,917,943,852,974,869,919,898,884,912,908,911,874,923,913,969,896,887,896,978,959,977,980,1011,978,955,989,964,967,1001,1002,1001,982,979,951,972,960,983,978,943,977,964,961,980,974,997,962,986,974,983,867,900,884,877,883,875,831,852,908,828,863,863,872,847,899,866,889,854,843,902,858,842,878,880,857,883,878,889,856,855,802,893,928,953,919,904,937,964,901,974,924,937,942,955,910,956,922,943,914,986,924,901,920,1013,946,984,955,961,952,934,908,1029,1052,1054,1056,1012,1044,1007,1005,1019,1030,1019,1007,1003,1029,1013,1021,1009,1009,1056,1027,1013,1020,1060,1008,1040,1031,1042,1042,1062,1052,1063,1043,1038,977,971,1011,971,1004,991,1026,1016,999,1004,988,998,992,1014,1005,1046,1009,1012,1026,998,1038,1038,1010,1032,1029,1032,991,1027,1012,1020,996,967,980,971,988,977,986,967,977,980,991,995,992,971,968,976,994,996,973,1010,986,977,950,977,980,987,987,978,992,962,998,985,973,928,933,1008,962,923,940,990,971,953,953,979,973,935,986,943,937,916,970,959,937,983,918,970,975,912,965,901,960,953,837,867,863,852,855,811,818,860,862,849,836,845,823,851,851,848,834,851,868,869,833,847,855,803,809,818,827,840,850,864,820,821,896,877,899,860,886,892,853,903,869,905,889,848,891,888,959,865,892,920,876,911,891,835,868,878,929,882,933,930,880,825,837,838,855,780,808,845,862,806,822,832,863,848,829,825,849,802,809,875,823,889,820,840,863,814,875,876,840,816,862,783,777,959,909,898,973,882,909,908,964,888,882,931,899,952,958,941,926,945,931,876,966,1001,884,918,935,932,895,928,900,978,920,816,1011,1009,1048,1045,1024,1070,1024,1017,1050,997,1017,1063,1049,1031,1031,1033,1032,1044,1057,1032,1038,1027,1015,1028,1058,1014,1008,1042,1059,1042,1103,1003,1008,1003,1033,988,1008,1005,1025,1012,1026,1005,1034,997,1023,1028,1053,1010,1018,1024,1006,1057,1039,1039,1040,992,982,1008,1004,1047,1033,1011,996,997,985,974,1008,1022,984,986,983,986,985,985,994,995,1007,1003,965,985,991,973,984,968,987,1016,972,978,994,971,1022,941,986,971,982,1032,945,974,965,921,973,934,948,982,997,956,995,981,995,1000,952,1025,943,974,992,976,940,960,993,956,1028,958,963,972,837,825,851,834,812,836,823,863,851,833,840,831,857,797,825,814,848,809,825,835,840,861,850,833,838,840,815,845,850,818,852,769,758,756,729,751,735,783,739,787,761,714,755,767,751,740,783,796,743,757,743,811,757,749,754,786,771,775,752,771,737,787,719,765,860,694,659,747,747,678,771,678,724,798,740,827,768,783,739,798,791,731,826,718,776,692,897,669,659,774,753,693,769,1127,1127,1135,1075,1079,1097,1085,1150,1100,1098,1104,1128,1076,1084,1130,1123,1139,1125,1139,1130,1116,1140,1093,1117,1149,1140,1138,1113,1136,1117,1106,1056,1082,1010,1046,1020,1062,1026,1087,1065,1043,1033,1037,1087,1064,1049,1006,1012,1114,1015,1043,1068,1058,1030,1035,1042,1031,1022,1016,1023,1051,1103,1094,1046,1140,1149,1143,1120,1146,1109,1107,1118,1100,1117,1133,1039,1113,1155,1093,1176,1049,1121,1039,1119,1071,1056,1113,1108,1102,1156,1075,1184,1105,1072,1108,1098,1045,1085,1061,1040,1112,1068,1075,1028,1060,1051,1096,1071,1062,1038,1078,1075,1093,1079,1093,1065,1072,1104,1106,1055,1055,1091,1067,1053,972,933,998,978,958,983,928,966,974,959,998,924,979,978,913,993,936,1000,950,978,1001,976,1014,979,994,921,929,991,954,936,998,864,821,807,870,841,873,819,848,812,865,817,838,864,835,818,862,853,853,793,834,863,830,832,820,815,796,836,834,850,803,839,973,1095,1087,996,1056,988,999,1053,968,1016,1111,1060,965,972,1065,1001,1090,1001,1051,959,1002,1046,1050,1000,1058,1032,991,1002,946,919,983,1010,1106,1010,1049,1022,988,1095,1022,1020,1042,972,1061,1031,1029,1133,1042,1063,1086,1026,1035,1092,1010,1071,1030,1107,946,1011,1061,1060,1001,1029,904,918,806,926,914,892,894,963,961,917,897,855,917,908,874,944,929,915,914,888,949,926,874,838,915,915,895,864,858,903,929,814,883,892,898,874,823,886,880,839,873,862,866,904,839,859,877,894,884,867,849,884,872,893,861,845,861,837,847,905,866,857,962,971,924,945,987,960,968,990,977,984,932,965,948,944,965,943,982,935,959,1007,965,960,938,936,940,953,1003,958,943,929,921,869,917,922,860,953,916,866,929,924,896,890,915,897,894,897,915,900,925,927,891,886,884,915,840,877,899,929,911,919,908,930,850,869,864,869,875,876,814,853,848,852,859,841,854,853,872,821,822,843,876,827,836,812,817,856,821,858,872,843,866,829,844,829,845,847,827,820,873,877,836,826,848,844,844,859,831,828,841,839,880,845,869,834,860,864,827,839,824,904,864,847,816,823,805,792,804,789,793,795,804,793,751,807,766,755,773,808,775,758,791,755,803,805,760,813,767,798,777,823,777,771,789,782,785,756,796,713,784,787,758,726,786,778,804,742,750,774,767,743,694,695,755,773,740,777,769,756,752,776,778,733,743,716,750,732,806,702,743,785,865,825,818,804,831,786,763,818,821,936,784,836,840,838,828,763,763,816,837,773,783,868,787,843,773,828,837,1116,1096,1120,1058,1096,1134,1160,1112,1110,1074,1079,1117,1088,1140,1134,1098,1140,1150,1075,1130,1125,1092,1088,1084,1103,1130,1120,1105,1109,1120,1110,1115,1053,1089,997,1047,1048,1041,1028,1068,1000,1068,1026,1017,1065,1013,1076,1019,1093,1054,1069,1043,1122,1022,1003,1045,1063,1078,1033,1036,1065,1090,964,927,946,954,962,970,963,989,950,924,896,900,1012,965,981,911,930,896,937,1005,897,942,970,932,941,915,975,997,928,1008,1006,824,813,799,861,845,863,811,850,833,804,833,860,811,861,815,834,829,874,855,839,831,862,865,846,798,798,812,804,822,832,821,793,810,787,773,815,777,756,751,782,791,764,767,757,783,823,789,786,801,765,808,763,822,774,781,785,782,780,780,837,790,787,801,798,802,793,771,817,807,794,793,809,787,795,781,810,794,797,798,802,800,795,837,791,805,815,794,784,795,805,786,822,796,772,794,802,808,791,806,796,811,801,797,795,784,794,780,771,789,781,804,810,813,781,786,783,777,784,818,791,774,790,798,784,811,780,821,794,845,802,776,787,809,792,802,812,777,812,801,799,806,780,783,819,793,769,809,794,814,793,791,811,786,804,803,791,741,766,726,766,774,807,772,821,791,783,790,800,779,733,775,758,749,812,746,746,758,783,791,807,782,778,829,819,826,833,1000,982,964,947,970,997,998,1005,971,969,999,1006,978,959,975,1019,979,956,1055,1029,974,987,985,1007,1028,968,964,972,1000,1004,994,924,943,929,870,920,936,946,945,930,877,900,935,958,906,910,952,944,867,956,887,875,986,929,932,950,939,969,909,898,903,958,821,843,862,858,811,784,850,831,817,832,844,882,834,808,819,863,814,860,803,830,836,803,843,833,830,858,846,815,853,812,847,888,909,925,907,877,911,936,897,955,906,934,939,930,899,900,915,953,892,915,973,943,944,893,841,940,848,909,929,864,907,915,1111,1118,1096,1107,1108,1119,1076,1094,1130,1103,1129,1121,1125,1085,1177,1131,1165,1141,1092,1111,1111,1134,1161,1123,1164,1120,1079,1148,1109,1095,1102,995,1044,1003,1005,983,1007,1030,999,997,1039,1049,971,1012,1016,1003,1037,982,1015,1006,970,979,1021,1010,1040,948,1013,965,1008,1019,1012,1003,898,843,913,897,889,848,912,871,891,840,893,874,879,909,878,851,922,881,916,884,905,900,893,931,898,916,902,843,845,907,885,776,796,769,806,784,788,786,789,798,794,765,755,788,792,772,795,802,776,776,807,783,770,771,800,759,795,814,811,787,811,844,1063,1023,1017,961,1019,988,982,1047,1028,1013,1046,1016,1008,1039,1011,981,1018,979,1071,1022,1010,1002,1083,1056,977,1027,1017,999,988,1007,927,911,902,881,868,900,906,906,907,926,921,936,863,902,919,930,909,865,916,905,918,883,963,954,930,896,952,933,953,933,880,935,833,814,854,799,848,832,819,832,868,847,823,822,818,841,858,818,828,858,826,848,822,845,833,832,844,862,834,819,834,821,833,731,785,794,803,793,783,785,787,794,798,816,811,837,805,778,810,799,820,782,739,779,730,813,807,791,788,785,767,815,771,806,1035,999,980,1010,1005,976,954,992,1035,1015,1011,1025,1011,1010,1052,997,1017,1041,1021,1000,973,1029,1010,987,1010,1036,1030,1010,983,1035,1025,1084,1175,1094,1080,1077,1126,1073,1081,1045,1092,1021,1046,1134,1087,1033,1086,1057,1081,1093,1093,1007,1067,982,1015,1053,1052,1018,1138,1067,1066,1072,993,1056,1030,904,917,1034,964,990,993,974,1008,943,952,920,960,923,1017,948,999,965,939,1016,1034,977,1010,1054,970,1021,896,1013,1055,869,864,882,899,805,878,873,917,837,927,885,911,905,863,849,910,875,893,899,837,900,846,880,866,893,815,953,831,865,894,850,789,831,756,783,733,861,801,798,845,809,822,764,840,824,897,833,868,783,741,765,726,820,763,785,855,837,724,780,780,844,802,996,989,1013,958,1036,1048,1008,1060,970,986,1005,1049,962,1031,998,1038,1066,988,1081,977,971,1011,1039,966,1016,994,1065,967,970,1008,1023,1076,1019,1028,1098,1062,1038,1042,1045,1088,1039,1070,1025,971,1090,1028,1092,996,1059,1078,1070,1039,1033,1018,1055,1063,1060,998,1064,1096,1062,1068,909,928,902,918,923,898,880,923,916,877,899,939,909,937,949,920,864,919,901,891,904,881,869,947,891,926,950,915,899,884,888,820,832,848,791,780,791,803,823,794,802,827,802,780,774,805,805,815,809,820,838,799,788,782,838,785,797,824,798,785,795,808,875,892,894,935,953,940,904,890,913,928,869,853,830,912,901,856,834,907,882,889,884,942,838,920,912,857,878,846,858,883,825,828,819,828,818,808,801,782,853,825,834,817,843,791,784,820,832,834,806,823,827,837,834,813,855,826,811,848,809,866,802,847,961,878,1035,932,937,976,950,895,988,991,939,972,933,965,999,908,962,996,946,917,931,955,1010,912,1006,958,933,961,946,931,963,972,1012,964,959,1034,1006,1008,1004,1007,968,1054,986,979,972,1032,1010,1027,971,1028,1022,1025,1032,997,976,954,973,984,999,1027,989,1002,1071,1018,1053,1023,1022,1042,1037,1013,1029,1032,1081,1014,1028,1008,1028,969,1060,1000,1060,1026,1021,1020,1041,994,998,1000,1008,1033,1039,1017,1064,934,935,945,904,905,928,947,879,902,912,904,937,930,921,922,889,900,939,938,874,890,890,894,962,879,951,892,909,888,912,870,799,794,809,792,830,825,822,807,797,767,798,824,806,766,806,814,825,788,830,791,786,830,824,835,829,792,848,815,802,835,840,787,755,789,756,843,717,735,716,781,851,775,795,981,828,837,856,807,866,774,781,771,821,744,813,698,884,822,809,858,725,775,1051,1062,1093,1015,1060,1070,1051,1060,1056,1078,1132,1039,1060,1088,1032,1089,1076,1075,1081,1036,1039,1139,1088,1100,1071,1054,1063,1062,1055,1074,1090,1030,993,1096,1010,1030,1077,982,1068,1025,1058,997,1061,1044,1031,984,1039,1000,973,1059,1025,1042,998,1022,1022,1002,967,1038,994,992,1024,1022,893,958,909,866,875,922,907,929,958,901,941,883,951,956,926,970,934,943,956,949,943,944,868,894,890,965,927,922,903,906,922,905,938,970,991,931,920,971,940,926,995,929,827,944,1005,943,917,883,1056,986,924,896,928,940,867,881,1037,865,863,929,915,869,1012,1047,1069,1048,1081,1075,1020,1041,1037,1068,1046,1062,1083,1046,1115,1053,1024,1060,1090,1048,1072,1001,1073,1078,1059,1042,1063,1022,1001,1016,1078,838,819,832,872,891,859,814,798,863,894,839,836,833,841,820,836,839,890,844,858,842,854,859,873,854,850,837,861,896,829,883,815,807,844,855,793,852,830,827,839,821,826,848,845,829,863,797,774,813,819,826,882,873,803,837,822,854,851,872,839,839,847,865,877,882,852,859,860,845,871,872,875,893,830,854,825,845,828,842,869,842,876,879,860,877,877,849,881,852,887,823,841,847,775,795,815,816,801,776,804,804,829,797,836,833,821,789,803,792,815,797,770,793,839,792,785,793,795,799,789,811,783,787,780,823,842,795,846,808,858,815,844,820,798,847,811,818,816,820,812,805,810,794,854,822,857,812,826,848,837,821,804,835,807,865,812,776,757,790,784,755,788,764,801,813,830,822,802,773,787,747,793,761,827,802,785,817,787,832,795,794,806,772,763,769,761,994,915,950,957,922,902,960,974,1010,960,943,987,1024,915,989,981,940,932,919,1003,992,977,953,1017,927,1043,986,981,971,950,908,982,967,1005,1028,962,1015,984,1026,965,1010,1006,993,967,998,974,1003,1023,991,999,1019,961,1032,1006,1017,1038,979,1000,1033,976,975,980,1136,1073,1079,1065,1119,1041,1073,1103,1020,1124,1094,1108,1058,1068,1110,1085,1059,1129,1119,1086,1096,1079,1084,1109,1070,1086,1131,1048,1098,1064,1118,1074,1083,1080,1045,1045,1050,1091,1062,1085,1050,1087,1063,1070,1066,1081,1080,1016,1052,1091,1062,1097,1097,1077,1040,1052,1014,1107,1073,1081,1017,1024,1032,990,1013,1009,1007,1011,1101,1065,941,1037,1057,1010,1020,1058,1035,998,1070,1053,1035,935,1085,1098,937,1011,995,1126,986,1121,1016,1065,937,859,800,851,763,891,807,774,812,923,813,799,812,823,763,749,894,781,785,836,862,847,751,800,888,842,826,779,772,789,747,878,796,784,885,782,910,842,747,759,751,816,770,828,770,726,670,785,742,771,866,798,752,898,828,875,839,818,787,880,670,754,862,1070,1090,1078,1116,1089,1098,1045,1111,1118,1139,1095,1142,1106,1137,1089,1105,1085,1114,1092,1115,1126,1106,1144,1067,1158,1101,1087,1194,1063,1034,1102,1118,1055,1039,1075,1098,1094,1067,1107,1052,1047,1092,1088,1046,1028,1050,1032,1092,1079,1117,1093,1149,1023,996,1142,1060,1081,1076,1110,1067,1096,1065,932,976,926,967,954,910,979,1002,1021,978,954,966,1012,920,975,940,912,941,980,896,999,980,968,935,968,1022,972,974,971,982,987,765,802,806,782,806,792,807,813,747,826,787,791,792,805,813,801,829,777,832,773,770,795,751,789,777,808,812,764,807,800,736,754,755,793,748,796,773,835,786,800,791,811,838,799,838,863,798,745,744,774,753,761,823,752,864,802,769,730,754,756,781,831,917,919,954,868,915,936,903,966,910,935,921,951,874,883,931,893,900,923,959,869,881,903,953,944,926,952,915,935,930,866,895,1127,1206,1159,1185,1205,1127,1171,1202,1191,1152,1161,1153,1152,1177,1093,1148,1236,1207,1146,1119,1158,1159,1144,1166,1155,1183,1157,1159,1187,1145,1155,1123,1100,1090,1146,1136,1121,1134,1118,1108,1076,1149,1092,1153,1114,1136,1079,1132,1131,1100,1099,1107,1117,1121,1191,1146,1098,1204,1135,1111,1135,1108,1015,985,1034,1048,1062,1040,1066,1009,1097,1035,1039,1004,1036,1029,1009,1029,1076,1088,1027,1047,1040,953,1051,1055,1034,959,1015,989,1017,1022,1029,753,853,858,847,881,860,777,836,846,844,832,860,852,893,845,848,881,770,858,854,864,880,815,864,860,849,865,851,896,825,854,795,759,755,747,748,787,789,735,739,774,752,763,755,750,754,741,768,710,726,725,748,711,775,798,710,764,753,757,746,743,748,754,775,760,746,732,719,744,728,722,735,727,745,764,745,737,710,786,716,759,742,720,715,704,724,748,734,737,755,744,756,755,794,837,790,815,773,823,824,807,791,829,764,807,806,826,789,785,786,821,811,794,817,776,823,793,798,788,833,814,814,811,794,839,855,851,820,876,863,834,860,815,865,825,842,854,843,840,835,862,874,808,824,855,872,848,888,876,847,840,832,887,828,804,831,786,794,799,809,768,822,794,776,825,808,802,826,809,841,817,814,811,803,840,838,815,837,827,818,787,798,784,811,815,832,954,963,964,890,924,932,913,881,877,964,900,934,954,937,917,919,900,906,1000,979,963,945,956,909,966,947,955,907,924,940,908,973,1012,1009,971,979,983,967,986,1007,961,962,969,943,917,995,990,978,953,971,1000,961,958,947,943,987,978,905,1008,1010,999,941,877,845,852,886,853,867,891,848,862,856,859,849,858,886,894,879,837,869,852,820,872,856,839,847,848,878,827,874,829,846,877,825,814,797,810,784,822,813,790,799,798,815,815,787,810,819,785,791,802,810,828,800,810,794,790,825,827,825,815,828,814,815,878,844,826,819,837,845,827,828,844,832,844,858,872,815,846,871,840,857,859,867,853,830,861,849,796,828,885,862,873,849,844,798,804,871,840,809,852,843,806,826,843,848,852,813,845,822,815,796,857,801,839,810,868,828,781,813,879,869,789,798,861,793,784,794,742,782,760,789,758,760,813,753,793,745,810,780,794,813,798,762,761,778,789,792,774,804,762,773,795,795,799,766,792,787,767,739,789,759,826,772,791,776,792,816,794,790,792,808,792,774,765,759,798,811,736,777,813,790,788,823,773,795,769,781,962,1020,990,983,1005,1002,960,949,955,963,990,1030,1014,993,1008,989,1027,960,971,941,974,982,952,971,1016,995,985,949,957,940,993,889,915,922,905,935,900,929,868,894,906,923,927,962,900,927,851,945,915,904,933,898,878,908,858,895,917,915,908,921,906,880,827,851,837,837,844,849,842,828,830,826,809,860,809,782,792,837,809,824,838,841,886,828,838,817,822,816,835,807,849,836,807,751,719,720,740,733,727,719,718,753,706,754,701,718,723,732,769,761,722,715,644,696,753,784,698,710,688,712,719,706,737,703,958,969,1000,978,965,976,958,998,957,997,966,1000,963,949,954,940,888,934,965,955,919,957,966,976,979,934,922,964,937,1003,985,1143,1039,1014,1014,1030,1065,972,1070,960,1166,1054,1022,977,952,1025,1079,1059,1035,1077,1010,1037,1055,1079,989,1049,1005,998,1059,999,995,1044,940,1080,960,1010,1008,952,995,965,1041,1010,1046,954,993,917,1022,979,950,1039,1091,965,1022,981,996,1010,902,883,994,1002,1023,1056,1039,852,898,907,893,887,798,890,895,844,887,881,893,893,915,896,902,889,906,911,917,785,826,805,817,873,860,955,873,814,873,894,763,701,710,726,725,766,746,669,725,736,747,702,740,703,748,762,713,720,653,755,735,694,707,727,712,740,731,675,768,680,721,894,978,951,891,895,936,944,923,904,906,905,907,905,935,945,920,927,952,902,898,908,925,905,925,920,951,930,948,969,940,936,784,851,830,806,834,782,782,820,803,826,817,825,808,827,811,845,814,809,799,820,783,796,842,816,798,820,806,777,835,842,811,869,809,853,909,833,844,810,854,824,822,822,832,863,872,851,868,848,883,857,837,882,892,850,833,896,846,878,877,866,871,840,916,827,819,821,915,880,908,891,882,836,855,884,863,889,846,886,923,875,780,855,855,873,871,853,937,812,869,816,849,826,871,810,781,846,803,810,846,767,862,837,850,834,785,799,847,830,828,827,798,813,846,823,830,811,768,839,832,827,844,847,831,850,783,800,761,794,768,776,747,753,784,757,767,793,776,764,796,792,822,737,745,775,787,772,749,791,771,782,776,760,762,751,759,741,751,762,766,720,747,710,740,787,686,724,732,741,733,728,716,753,794,754,770,706,709,787,735,745,695,809,685,810,724,723,1011,958,978,1037,1045,985,995,1016,1000,1014,1017,978,1014,964,977,1020,1032,1028,972,1036,1018,1019,1001,989,990,1048,1021,979,1051,1020,1012,985,961,971,948,964,941,963,960,972,975,952,956,967,968,965,976,986,937,969,959,962,954,981,970,947,985,1003,941,895,956,952,852,881,879,904,872,904,855,884,898,903,855,833,854,867,866,823,863,871,862,875,891,867,873,899,865,880,873,890,882,888,862,790,784,788,791,789,782,778,804,812,779,787,789,767,795,770,799,797,733,836,790,804,765,808,779,814,753,790,790,806,814,806,780,727,771,759,783,718,758,742,755,732,782,765,754,750,745,803,757,704,754,721,725,747,778,746,739,766,741,783,778,770,733,747,730,703,738,724,744,726,706,719,727,723,715,699,705,734,704,722,728,712,694,740,728,679,719,705,697,725,752,713,723,718,702,756,761,712,735,723,749,716,736,734,735,736,754,712,741,688,744,714,755,737,714,712,705,744,722,694,732,737,711,688,715,790,790,767,811,780,807,802,766,821,760,818,802,812,827,793,761,796,785,790,815,789,803,800,773,788,812,797,789,793,794,830,800,775,779,786,767,774,764,754,772,764,763,753,768,776,764,785,763,773,784,759,785,783,764,771,780,777,779,785,782,786,775,790,828,819,807,804,776,785,789,799,794,786,818,768,835,809,777,783,813,801,774,784,778,817,819,789,804,795,818,818,786,809,776,781,741,762,762,759,761,727,760,748,772,752,736,766,725,732,767,687,739,733,709,731,770,738,754,758,735,731,750,770,688,1011,956,932,1020,987,931,924,946,955,962,971,980,952,1005,953,905,975,982,958,916,890,1022,1030,1017,1051,960,1006,944,938,939,934,896,914,960,874,908,936,956,906,941,903,918,954,908,907,886,929,977,891,989,915,922,878,884,961,932,952,969,871,879,875,904,835,870,858,835,855,824,847,829,824,822,850,825,845,823,817,846,837,849,820,833,834,837,830,838,845,822,841,848,847,831,833,791,773,803,767,800,813,806,820,807,812,836,822,799,827,808,768,798,794,795,789,813,770,783,803,790,788,795,766,798,817,784,925,961,951,949,896,875,909,1017,928,997,957,930,985,885,990,908,908,926,945,910,952,949,975,935,897,970,960,870,917,943,895,800,808,795,779,826,814,840,810,805,813,784,835,832,822,801,810,804,797,792,781,797,814,808,771,795,811,825,825,770,804,764,792,861,802,878,801,838,793,775,839,774,834,834,868,830,828,726,845,831,819,792,837,848,834,862,858,796,827,823,812,796,806,947,897,935,953,921,948,919,928,943,924,907,904,885,886,893,902,928,931,899,914,888,924,902,905,925,942,916,939,894,918,932,992,1011,990,1043,1065,977,994,1005,1035,993,1030,984,1002,1014,1013,1006,1002,1044,1017,1059,1029,1009,1017,994,978,983,1035,972,984,996,991,950,932,940,962,922,942,932,942,926,943,919,935,909,921,902,926,917,924,892,970,932,929,911,905,906,932,923,899,947,933,945,887,795,823,849,814,814,856,844,848,844,872,821,848,838,813,820,840,809,839,848,826,884,816,809,819,858,806,866,815,825,840,710,729,729,728,738,756,735,711,737,738,751,735,747,727,723,706,752,751,738,715,723,757,702,735,757,746,761,791,757,736,784,821,820,857,843,831,839,819,800,825,843,808,835,862,853,831,867,838,808,860,834,819,856,809,833,829,872,830,834,843,827,851,885,917,891,912,867,963,941,897,918,948,928,915,863,890,903,827,895,932,867,846,907,922,838,856,870,920,893,938,956,906,882,975,1038,1054,1064,986,978,1013,993,994,1053,1038,1020,1028,1033,1051,1048,1036,1029,1049,987,1039,1036,1027,1038,998,993,992,1007,1017,987,998,893,925,947,934,966,910,911,939,918,899,918,901,922,924,924,965,889,892,964,954,935,951,865,960,909,899,936,995,947,918,918,828,835,828,848,844,870,828,825,839,868,818,814,847,825,876,893,866,832,864,881,825,823,850,894,863,828,819,873,836,824,833,739,721,724,726,705,744,743,726,746,711,743,732,710,732,751,706,740,729,732,720,731,734,726,749,742,716,733,723,748,752,732,741,766,786,799,747,805,754,760,789,757,765,781,753,783,778,765,741,743,761,767,758,778,773,765,784,756,788,802,770,792,804,747,781,743,769,727,793,767,791,734,810,761,737,711,749,768,732,735,763,763,748,781,732,753,740,745,742,738,748,764,715,724,790,800,739,874,801,820,814,872,818,822,777,836,860,786,871,851,833,823,772,887,887,875,828,842,855,842,852,833,824,910,797,1115,1080,1099,1088,1064,1113,1102,1068,1104,1087,1077,1070,1057,1124,1070,1117,1090,1136,1140,1096,1112,1092,1109,1105,1068,1113,1106,1075,1117,1097,1095,1008,1007,1063,1120,1084,1074,1034,1056,1093,1052,1065,1014,1081,1069,1044,1044,1003,1112,1073,1015,1040,1066,1017,1093,1013,1017,1115,1025,1065,1057,1065,973,918,905,885,949,983,955,922,908,901,951,959,926,957,946,885,980,932,942,941,917,943,954,952,987,995,926,920,943,938,906,816,845,850,854,849,818,830,827,883,811,822,833,824,836,869,782,832,832,832,832,842,828,824,841,846,812,817,782,834,812,796,793,800,792,787,770,797,783,785,829,779,794,778,774,786,783,803,790,784,770,793,798,784,786,786,773,771,777,794,777,818,772,804,803,820,776,789,816,791,812,779,815,795,810,794,802,766,806,804,808,819,796,801,813,797,781,790,820,817,780,820,796,808,800,788,804,787,781,770,790,730,767,797,773,784,786,789,774,751,778,811,818,747,790,739,802,799,778,788,781,795,774,787,791,792,783,812,816,816,822,810,806,796,821,795,809,797,799,801,798,810,800,816,810,813,797,800,827,813,819,821,834,791,809,766,783,793,806,801,800,789,821,783,809,805,798,791,814,796,803,784,791,794,802,798,799,804,814,794,796,827,792,776,787,792,767,791,825,815,806,790,788,807,819,787,784,802,800,789,820,793,825,793,798,794,794,823,814,800,802,806,803,803,803,806,792,796,803,794,776,784,764,739,753,776,813,746,791,741,766,821,767,785,749,776,791,805,785,777,800,729,803,781,818,753,731,760,748,880,844,796,841,772,792,763,790,839,823,806,831,840,836,846,809,867,735,832,792,809,879,832,817,828,774,848,803,842,889,847,1060,1035,1041,1092,1041,1029,1048,1084,1049,1078,1046,1091,1083,1062,1053,1055,1056,1047,1052,1019,1107,1054,1124,1067,1051,1079,1073,1047,1085,1053,1045,997,1026,1052,1028,1021,1043,1034,1049,975,1009,1018,993,1018,1029,1051,1034,1061,998,1011,1002,1044,1035,961,1022,1061,1060,1023,1032,1009,1033,1030,1118,1110,1116,1127,1199,1154,1132,1155,1155,1151,1145,1171,1120,1154,1128,1205,1150,1126,1188,1155,1131,1073,1113,1127,1155,1116,1161,1098,1168,1092,1158,1105,1047,1084,1086,1088,1067,1044,1084,1140,1058,1081,1149,1145,1151,1118,1061,1100,1132,1046,1039,1086,1084,1079,1101,1080,1138,1065,1181,1094,1091,1111,994,969,981,979,907,941,977,994,1016,949,970,1015,983,993,1020,963,1001,968,984,1042,993,1009,990,967,936,971,966,957,958,960,964,762,763,807,822,799,844,785,816,821,803,828,808,821,780,819,811,839,842,834,824,829,826,809,817,808,785,818,809,769,782,767,759,812,764,765,784,762,763,781,781,783,813,755,765,767,785,770,802,802,772,768,797,808,797,794,776,777,770,796,814,775,757,790,752,743,735,796,769,805,810,784,798,756,781,809,783,773,797,777,750,776,803,787,803,780,794,789,766,810,757,770,778,808,893,994,907,866,878,970,893,965,953,921,888,999,834,923,901,885,944,855,883,905,963,911,1015,879,946,943,939,911,947,893,854,929,962,985,1009,990,981,944,987,996,1002,957,930,978,955,1009,978,967,929,966,936,948,950,973,970,958,973,1016,942,939,948,1037,817,814,822,833,829,815,832,821,839,812,813,819,832,818,836,818,797,801,842,847,847,824,834,803,838,803,777,823,827,804,806,859,870,869,829,874,806,832,848,808,848,859,852,794,843,845,781,858,862,862,819,860,829,856,822,864,832,827,871,877,818,796,867,881,847,886,870,826,849,865,892,861,879,875,896,882,896,866,898,873,885,886,888,864,892,883,893,815,876,885,866,903,863,796,799,801,838,860,796,810,825,815,759,840,810,804,804,783,806,803,777,786,801,821,804,799,790,839,842,825,802,791,789,806,967,951,956,948,1016,975,960,990,974,963,966,965,961,980,1001,930,982,976,991,978,1014,1000,966,969,945,984,967,930,999,1012,960,827,848,891,850,816,835,887,835,841,844,813,832,817,871,850,935,785,820,883,846,843,797,856,823,797,883,802,898,922,833,806,957,954,904,898,928,998,865,998,970,896,1014,932,1042,991,1003,920,951,958,1022,1002,980,1046,1012,955,986,992,935,964,976,971,862,1115,964,969,959,1029,981,984,970,979,1015,982,1028,912,1021,954,987,1014,1021,1050,1124,1046,1011,1048,993,975,1024,968,1052,1043,1040,980,995,901,863,959,984,917,944,963,990,911,955,950,960,960,933,934,891,903,894,959,950,1003,927,952,931,941,988,875,907,905,1026,1164,1132,1079,1131,1168,1129,1110,1074,1116,1117,1089,1082,1101,1082,1103,1137,1150,1142,1138,1117,1125,1163,1164,1101,1105,1134,1142,1123,1108,1120,1046,1075,1123,1090,1060,1033,1045,1100,1093,1091,1029,1051,1092,1047,1053,1081,1074,1079,1105,1057,1066,1034,1071,1096,1029,1045,1099,1082,1078,1110,1040,1111,985,938,1007,1024,1012,1006,987,1044,989,989,1029,990,1024,968,969,977,992,993,945,982,1006,1001,995,987,991,996,955,1017,972,1013,960,960,997,971,957,985,945,894,955,978,957,953,1005,930,959,946,1001,958,928,989,989,961,971,945,971,951,980,995,961,1046,953,1020,1135,1140,1126,1146,1095,1097,1115,1107,1128,1078,1117,1161,1106,1106,1068,1135,1157,1142,1113,1161,1116,1133,1111,1128,1118,1146,1125,1086,1066,1115,1154,1053,1090,1059,1106,1117,1102,1161,1125,1066,1094,1074,1106,1077,1059,1119,1048,1073,1048,1078,1091,1071,1048,1102,1087,1086,1061,1071,1076,1078,1076,1062,967,974,988,1002,993,974,980,992,948,985,985,997,975,991,974,999,937,1004,970,973,971,984,983,988,991,973,1009,1013,960,987,966,860,851,845,894,870,799,878,881,882,929,858,873,880,882,874,862,917,849,884,856,846,854,850,854,876,822,869,830,824,874,831,865,803,823,798,857,842,873,800,859,858,846,806,835,784,838,858,820,801,835,862,889,797,777,789,798,835,787,847,842,811,838,1011,1002,1029,1042,1045,1038,1045,963,1055,1025,1048,1025,1021,1035,1000,1001,1044,1025,1038,1031,1011,1040,1036,1045,1040,1032,1052,1024,1002,1042,1023,985,1054,996,975,1001,953,990,960,977,987,1005,977,963,983,1011,1001,899,962,994,964,942,959,980,1004,975,929,972,976,965,993,999,904,920,942,908,911,930,919,958,927,923,917,921,917,917,890,938,881,949,911,880,891,922,881,900,872,916,901,916,908,925,950,844,813,832,827,829,781,836,852,826,840,811,871,839,853,849,814,833,843,856,828,833,862,817,814,831,835,832,837,827,842,835,975,929,916,905,924,921,923,930,930,821,911,942,925,922,979,942,920,892,931,881,883,969,903,942,976,893,922,909,926,918,915,1024,1003,1015,1004,956,959,983,970,1005,1000,1035,995,983,961,920,1025,985,997,961,999,932,963,973,1011,981,966,967,972,984,1013,980,902,872,904,939,890,924,899,900,890,879,843,880,901,897,902,919,889,906,903,884,917,850,883,837,901,874,929,880,888,871,917,855,856,836,869,854,860,826,843,859,834,838,847,849,863,873,851,847,846,828,860,839,836,821,850,828,834,832,846,823,835,865,769,759,775,792,759,749,804,768,780,762,780,773,783,808,780,784,785,756,801,783,776,770,795,767,767,802,772,786,795,739,770,706,731,755,769,825,743,757,785,764,754,750,772,791,748,777,750,766,753,785,725,713,744,761,791,754,746,761,759,768,783,733,847,843,799,841,830,838,812,819,843,839,846,838,802,806,820,821,825,838,839,826,830,804,839,840,840,825,832,825,829,820,837,917,882,889,884,909,877,905,867,914,838,910,893,891,939,892,894,882,875,884,973,897,948,864,889,931,890,888,894,866,891,945,862,837,857,854,864,896,882,840,872,880,880,842,806,851,853,850,855,855,795,802,845,856,872,880,849,849,844,840,855,905,849,824,846,833,811,805,873,827,806,835,845,852,831,812,803,828,855,845,829,781,847,831,828,818,816,824,808,822,803,823,772,808,985,938,959,1002,962,958,965,954,957,984,976,979,952,957,967,1002,961,967,972,942,955,942,969,974,967,980,929,953,937,938,995,832,876,793,841,831,846,862,845,838,846,869,815,816,814,862,839,830,849,852,858,833,817,858,837,804,840,826,869,855,838,841,839,813,852,814,817,857,834,844,816,789,821,828,864,841,768,858,784,806,848,838,793,797,823,843,793,842,797,810,822,832,828,949,969,934,948,984,978,933,948,941,926,944,930,953,960,935,934,928,905,984,937,901,929,921,906,995,923,926,935,969,925,918,866,854,813,819,854,891,826,846,841,841,859,839,849,832,854,864,857,864,860,863,813,850,836,826,886,868,865,809,858,851,864,832,808,789,793,807,813,813,811,776,802,832,766,809,777,802,821,826,776,813,827,811,790,775,796,805,807,805,808,773,808,803,832,839,865,840,871,831,882,827,868,828,858,891,852,864,879,855,861,846,818,852,830,873,842,848,860,881,901,852,872,831,881,831,822,805,826,846,819,813,814,818,830,806,823,826,788,822,833,802,812,856,808,828,809,819,816,817,815,831,835,818,817,837,823,771,758,814,762,776,823,782,760,813,783,770,762,805,765,780,779,773,801,778,792,786,769,789,810,766,794,799,780,786,814,884,878,867,862,885,889,896,900,880,876,867,901,908,866,866,865,895,889,873,875,880,891,890,902,846,909,872,854,885,890,843,794,789,818,831,804,806,820,788,819,813,789,818,803,782,816,807,785,793,788,802,811,787,812,815,825,774,782,772,793,789,795,898,854,858,877,825,881,895,876,914,878,864,889,888,869,867,868,760,907,891,832,847,869,783,825,814,805,849,850,853,847,813,1056,1029,1049,1085,1022,1039,1016,1011,1046,1017,1013,1052,1003,1018,1030,1067,1041,1023,1044,1084,1049,965,1012,1066,980,1067,1017,1056,990,1034,1044,871,840,876,902,842,938,889,924,847,860,851,905,898,896,837,874,912,889,837,879,811,877,863,890,895,888,836,907,893,844,877,937,977,928,883,992,978,910,925,916,954,961,889,851,926,994,948,903,913,918,947,946,925,893,933,914,914,922,933,926,890,959,858,839,878,770,866,848,836,841,860,841,844,834,838,821,836,800,840,810,838,798,821,860,822,845,808,853,805,832,832,866,806,961,979,911,882,925,959,933,933,922,939,925,904,910,840,921,1037,938,851,1070,862,987,1025,971,979,979,951,972,978,960,1025,1046,1010,1074,1083,1090,1023,1103,1043,1040,1021,1010,1050,1030,1056,1055,1080,1049,1058,1047,989,1141,1081,1077,1086,1065,1069,1075,1061,1068,1076,1077,1030,1009,1022,957,999,1024,1027,1001,1020,1059,1025,1015,988,1062,1057,980,1022,1112,1015,1036,1050,1029,963,1121,1027,1020,1065,955,999,1089,1026,1000,1025,1023,1083,1003,1012,981,1013,958,957,955,959,1010,953,981,986,1003,1031,979,984,1021,975,960,1031,1053,1026,932,1010,1022,947,906,1054,821,881,815,883,841,790,815,828,849,818,813,786,826,823,819,802,843,830,821,836,841,820,818,827,821,819,831,815,800,784,816,752,756,723,735,723,762,766,741,764,736,728,767,767,758,768,744,774,731,768,740,745,748,778,742,735,745,758,768,732,782,778,767,787,815,784,835,759,802,759,855,808,802,794,774,804,796,817,790,778,810,808,847,749,771,840,742,739,778,813,709,791,738,764,694,813,721,747,687,735,725,739,745,806,802,734,768,781,715,710,805,752,670,809,804,871,874,734,748,804,727,769,740,741,1054,1101,1035,1032,1066,1023,1028,1005,1031,1031,1018,1040,1065,1073,1014,989,1011,1036,1032,1036,1026,1086,1030,1039,1046,1046,1037,1044,1047,1038,1064,957,967,998,952,922,933,925,925,954,907,984,964,955,983,956,901,969,963,956,947,950,961,968,970,936,931,909,986,942,971,943,888,884,900,868,851,888,866,927,913,857,883,880,913,851,886,884,840,875,899,891,891,847,848,884,915,901,908,875,923,914,874,909,976,950,928,979,988,947,992,935,998,861,935,883,920,939,912,939,939,1004,891,969,902,915,952,943,943,945,988,881,960,949,877,881,898,887,888,863,875,849,899,869,847,844,882,884,867,857,896,861,856,889,875,847,871,858,829,880,891,869,866,906,860,824,796,784,851,811,803,798,791,815,811,805,826,842,845,831,784,864,829,837,843,823,806,856,841,834,798,791,875,853,806,793,778,776,731,821,791,793,757,782,764,794,792,752,803,788,788,768,777,796,802,806,784,767,790,791,799,797,765,778,793,792,777,804,769,794,764,783,728,793,746,769,768,787,765,804,743,790,774,790,774,741,783,737,743,749,760,785,784,742,775,776,743,785,989,945,876,865,939,864,820,927,897,898,935,915,918,943,939,939,846,905,913,908,878,936,897,870,920,899,915,867,993,888,914,1157,1097,1112,1068,1095,1132,1139,1167,1104,1113,1126,1146,1124,1098,1123,1141,1159,1154,1133,1144,1093,1111,1088,1141,1109,1160,1125,1142,1121,1195,1126,1071,1099,1080,1121,1132,1031,1089,1131,1082,1119,1117,1075,1104,1121,1080,1065,1079,1080,1101,1066,1024,1050,1099,1137,1108,1054,1085,1038,1100,1033,1045,960,957,955,1037,1000,927,984,965,980,947,936,988,1075,960,1014,954,993,998,971,974,990,983,969,952,974,1005,984,982,998,991,1024,823,839,841,925,868,863,849,850,877,858,840,851,854,839,834,892,846,859,825,846,882,872,873,914,841,852,830,857,833,842,839,1020,1036,1017,999,1001,1013,1010,1033,1011,1011,1017,1012,1000,991,1021,993,1011,1007,986,1020,985,1008,1012,1015,1010,1021,1007,1033,1008,1002,989,1049,1028,992,1030,1007,1016,984,989,1007,1018,939,968,1007,948,1042,988,992,944,977,886,976,976,997,974,1003,1063,962,1021,982,974,911,823,808,811,771,780,810,810,822,773,833,837,797,805,841,765,859,799,817,807,805,778,840,830,766,825,827,812,824,802,800,806,774,769,816,789,766,810,789,813,795,770,813,812,773,776,763,809,770,762,759,797,765,792,865,802,758,820,758,815,822,733,803,973,995,1087,1004,955,989,1031,983,1044,985,1003,961,979,1026,973,993,964,928,1045,1042,971,1005,908,987,959,997,1032,957,1011,1059,961,916,917,887,891,898,914,897,911,905,898,895,897,915,884,872,903,921,889,870,892,882,908,872,915,910,892,894,917,909,901,935,841,833,825,808,859,816,828,833,827,848,816,837,824,815,828,812,838,813,836,849,831,822,817,813,832,832,848,841,835,829,787,959,943,943,958,987,918,991,913,930,948,952,988,912,923,967,928,1003,965,935,971,937,911,949,988,1003,940,893,985,936,893,927,1012,1027,1000,1002,1022,1040,1019,1041,996,955,958,988,1011,991,1000,1029,1032,991,1036,1001,1006,1020,1013,1012,1011,1050,1033,1025,1020,1030,1032,942,984,991,986,1012,966,931,961,984,958,1015,1002,974,1012,978,1003,953,1017,970,955,1002,978,948,969,1015,941,996,921,975,957,996,842,849,849,886,835,847,846,829,911,858,831,832,834,837,781,836,848,796,831,851,831,843,865,827,853,842,792,819,867,883,842,801,944,903,891,811,900,889,872,895,885,819,905,894,951,853,874,886,805,824,823,856,868,917,874,888,912,888,925,860,921,861,829,893,863,833,812,854,866,842,848,836,874,835,840,813,839,835,842,876,823,851,815,832,842,864,837,868,848,870,830,853,812,847,845,863,891,826,861,860,822,857,853,849,855,852,832,859,840,862,848,861,853,880,839,862,836,863,879,866,848,850,834,852,810,853,788,811,812,861,796,818,834,810,820,803,840,835,813,848,773,784,850,815,845,821,846,808,803,814,815,781,818,828,832,837,823,883,818,873,840,878,835,890,863,869,839,878,830,843,839,872,859,870,838,851,865,850,884,869,820,918,842,846,866,867,834,923,877,922,906,908,905,854,901,896,898,854,924,877,932,847,899,882,881,909,940,886,903,893,883,818,865,907,874,912,840,867,835,815,843,866,872,817,792,837,824,847,820,852,841,839,835,860,858,836,866,829,830,847,850,856,848,858,856,862,852,828,903,960,915,967,941,965,1001,1008,925,928,945,932,945,945,929,894,931,913,961,913,949,931,874,935,891,963,890,953,986,900,956,1023,998,1034,1012,1031,1011,1018,1017,1020,1019,980,1006,1047,1011,1029,998,1014,1019,1026,1030,1019,1006,986,1009,965,1026,976,981,989,994,974,993,982,1028,941,999,997,993,955,951,965,977,964,931,979,957,950,977,968,977,966,1014,1007,967,979,1002,967,953,1005,1000,982,996,835,823,863,817,860,870,843,820,823,815,831,865,836,831,827,821,839,822,814,837,827,841,834,814,838,846,836,868,822,832,828,917,940,890,938,891,925,925,918,926,926,937,924,905,944,946,961,976,941,911,909,919,930,929,904,938,947,963,925,911,951,929,857,832,822,824,834,819,838,824,851,876,844,840,837,833,849,845,825,820,810,865,843,813,850,858,814,843,852,795,813,871,808,817,786,815,813,774,795,832,794,791,780,802,814,809,851,792,774,806,792,830,782,798,810,793,793,786,803,798,782,791,771,779,806,755,771,775,753,774,783,817,760,797,819,769,796,767,760,778,782,843,798,743,787,813,792,775,792,795,795,754,779,752,808,813,823,846,814,827,813,751,817,893,767,745,791,821,810,857,751,794,786,782,863,774,744,830,786,796,749,819,814,812,744,801,1059,1094,1072,1110,1082,996,1116,1117,1008,1047,1046,1079,1092,1097,1094,983,1092,1084,1099,1087,1072,1119,1076,1107,1071,1088,1133,1093,1102,1044,1144,1055,1034,1091,1092,1106,1057,1000,1060,1130,1083,973,1177,1097,1126,1006,1091,1035,1001,1077,1108,1002,1045,1132,1110,1111,1109,980,1078,1075,1184,1138,862,892,868,915,926,866,912,906,870,924,884,866,914,890,865,838,858,861,848,915,913,839,829,847,927,850,867,911,913,851,943,778,809,823,806,825,840,808,824,813,779,805,799,784,820,801,804,811,829,795,771,793,827,790,793,792,821,793,812,828,805,788,735,713,702,750,720,758,734,743,776,753,745,756,767,749,704,727,666,736,757,770,718,780,747,755,756,769,738,744,756,737,741,881,967,911,868,905,913,953,864,898,880,977,977,911,886,1017,1023,896,887,846,865,908,903,940,951,905,911,930,894,937,944,880,857,848,824,812,828,854,862,809,847,828,849,852,868,859,814,816,822,830,843,841,840,789,830,836,840,844,827,804,822,840,837,783,834,806,799,789,772,774,791,800,760,776,785,780,791,767,753,804,807,807,825,775,803,811,801,798,778,812,790,794,783,765,895,933,973,888,981,924,952,969,946,942,977,977,949,961,1031,937,934,935,951,963,870,941,939,928,867,924,974,945,891,946,949,778,806,828,832,796,828,827,819,815,794,835,800,801,789,820,792,796,812,811,811,821,823,801,786,805,817,779,812,814,798,874,907,921,887,915,992,956,883,905,895,933,878,1019,957,969,923,1009,964,1011,942,969,910,963,955,948,991,916,966,936,870,953,944,865,882,860,889,827,916,871,862,862,894,911,886,891,908,850,857,849,892,853,882,917,873,914,860,846,856,874,866,858,910,880,806,859,845,811,837,829,792,822,860,806,818,832,832,840,831,848,846,828,819,846,826,826,830,857,845,850,844,851,821,843,852,969,956,916,937,920,923,872,940,880,896,870,904,962,1000,905,945,926,899,931,957,934,932,943,909,919,944,930,983,918,958,874,989,974,952,967,980,950,997,992,954,980,953,980,953,974,952,971,996,930,949,974,984,977,954,957,988,943,978,921,926,955,993,841,818,849,847,848,850,827,840,876,860,830,834,885,857,841,833,858,827,851,851,843,874,855,817,853,882,869,840,854,870,864,1037,1017,1056,984,1043,1048,1035,1013,1026,1026,1037,1023,1064,1041,1031,1060,1015,1008,1035,1016,1016,990,1029,1025,1002,1011,1012,1003,1025,1013,1000,982,957,992,921,948,932,965,957,960,983,957,976,952,965,972,1033,1010,947,940,971,937,978,997,970,975,973,939,946,948,1004,934,912,883,881,869,872,887,909,883,882,864,890,867,851,883,867,904,874,871,909,882,848,906,883,882,886,895,907,905,871,863,911,892,945,947,916,939,848,921,924,965,933,938,906,923,911,953,949,948,990,890,928,970,875,924,904,976,881,918,919,883,880,925,983,1000,998,1006,1009,980,991,1026,1003,1026,1009,1001,1012,1013,1012,1014,1009,999,1026,1014,996,976,968,998,1022,998,1021,1000,1003,988,991,984,987,1041,998,975,1018,965,988,997,950,960,975,956,996,960,960,979,1007,942,1002,1006,989,1005,968,928,992,978,990,955,987,1015,824,899,912,858,903,883,891,866,856,852,887,866,894,904,922,874,855,884,871,875,907,898,923,873,875,836,898,883,871,892,883,846,850,845,815,826,821,855,829,835,810,818,848,830,842,822,841,805,841,818,854,849,819,835,850,820,830,830,847,858,824,826,961,983,943,934,946,967,914,984,975,993,961,971,996,979,963,991,1017,962,970,1007,992,1000,939,936,970,978,921,974,1005,999,968,929,914,879,900,908,876,900,951,907,887,911,905,911,888,911,902,896,901,880,913,924,874,874,883,911,904,918,930,931,918,880,814,865,856,867,827,800,853,839,845,827,855,810,838,842,829,810,832,829,852,832,857,830,826,850,836,824,831,850,859,851,826,757,743,785,765,768,760,783,755,778,784,776,773,777,778,771,751,763,768,785,783,798,762,787,806,793,777,772,780,782,787,774,856,985,915,890,956,867,961,928,850,981,1048,943,976,909,869,927,907,899,983,888,893,986,982,969,953,904,913,949,972,952,954,848,847,889,837,822,862,852,880,824,888,866,891,855,894,850,851,829,879,856,851,871,872,874,855,868,865,863,864,862,853,867,827,813,816,819,821,796,789,827,825,789,820,801,848,808,808,812,826,806,807,797,799,774,800,818,825,795,820,783,825,831,804,800,795,767,787,760,774,796,763,766,817,780,754,782,784,764,783,775,774,804,777,790,788,771,793,755,768,771,786,795,803,757,780,772,805,790,773,792,778,782,756,755,789,788,805,764,796,786,756,787,779,782,791,780,794,779,781,758,783,772,752,796,771,842,852,886,838,789,817,890,848,802,882,827,876,870,852,796,824,846,764,813,846,814,821,838,767,821,812,836,784,856,832,902,1048,1044,1063,1097,1089,1090,1039,1084,1040,1050,1049,1027,1082,1001,1069,1086,1038,1045,1022,1003,1015,1072,1011,1072,1052,1095,1065,1099,1027,1046,1070,972,973,991,998,992,989,1006,969,967,998,973,994,973,962,990,947,938,963,1007,1002,993,982,970,977,997,1007,996,973,969,995,982,927,939,985,941,1001,956,963,894,977,931,1011,903,956,937,977,920,974,995,950,987,971,970,960,952,933,997,951,980,943,906,958,1000,1024,1024,1001,1090,1079,1077,1071,1003,1058,1014,1014,1017,1079,1077,1021,1036,1040,1037,998,1046,1049,1033,1068,1029,1003,1038,1071,1018,1014,1017,930,951,904,975,920,988,966,937,970,963,905,914,1017,929,931,948,939,946,910,971,991,978,963,938,963,983,959,988,955,942,951,882,914,872,867,875,875,899,862,892,887,906,856,853,857,881,834,898,859,849,867,874,896,857,882,869,832,923,897,940,857,839,824,806,823,755,808,812,812,831,837,786,783,776,819,787,834,864,803,821,771,853,832,804,825,803,752,839,798,798,827,812,846,814,831,826,846,843,844,846,853,808,877,858,817,788,817,824,827,860,829,823,853,841,778,834,800,818,879,848,867,867,821,864,884,875,901,840,887,884,870,850,905,852,887,851,884,920,855,898,852,865,857,882,886,886,852,897,923,850,898,913,871,861,881,905,921,944,926,927,944,914,928,935,908,941,919,973,904,920,929,935,946,940,926,916,898,888,887,901,915,924,935,917,928,952,860,862,872,879,821,898,864,875,835,881,835,852,855,862,856,843,851,855,836,826,836,856,882,862,866,879,869,843,846,857,846,780,816,809,806,846,835,821,822,818,832,874,844,840,811,846,821,815,847,794,813,834,777,861,820,824,852,805,757,833,854,827,763,762,759,777,778,775,798,751,770,749,787,774,814,752,771,779,758,775,799,756,771,754,761,798,776,772,764,759,767,794,750,994,970,954,994,957,987,980,1002,961,984,985,1009,996,984,959,997,987,942,976,966,938,971,997,983,926,966,996,989,1024,1005,925,848,837,877,830,845,829,886,898,875,820,867,841,833,855,822,832,908,843,828,852,865,822,802,840,872,866,809,873,803,862,813,775,847,893,916,889,910,851,829,801,861,772,875,862,836,943,798,854,833,852,864,843,830,824,842,880,875,826,853,926,794,786,949,1004,997,1001,977,1025,968,1006,958,989,984,940,1025,1001,1019,983,972,1015,1015,950,993,998,960,1008,987,990,953,984,1007,961,961,1181,1142,1129,1130,1149,1175,1141,1179,1123,1156,1129,1128,1113,1155,1113,1168,1117,1108,1137,1128,1154,1116,1160,1108,1172,1122,1126,1095,1123,1048,1149,1101,1073,1075,1116,1074,1143,1163,1079,1175,1079,1111,1111,1172,1079,1092,1103,1098,1108,1137,1121,1110,1102,1113,1108,1097,1100,1132,1157,1142,1146,1161,1002,1018,915,1017,962,930,949,1040,956,905,940,1021,1078,1001,1017,983,977,945,895,943,999,943,991,1007,1022,1041,1029,973,993,1017,1056,744,758,734,760,782,801,715,768,741,695,718,816,755,719,732,754,728,778,813,747,796,714,726,763,718,752,755,743,782,733,713,946,994,910,990,883,1003,917,939,965,966,953,957,918,984,952,935,981,961,1009,965,921,917,934,897,932,949,966,1009,970,958,973,987,986,1104,1023,999,1003,999,1030,1022,1047,1047,1086,1005,1124,958,1015,1083,1113,1061,965,1054,1016,1077,1008,990,1034,977,991,1054,941,1068,989,1017,993,990,1034,974,1020,1008,949,991,980,942,1009,950,950,957,913,925,1043,991,992,907,964,1059,987,954,991,962,1005,974,960,1008,735,976,972,939,968,934,740,932,987,872,896,818,965,916,951,991,882,966,983,938,838,1014,946,1074,948,940,936,936,984,1055,768,790,762,741,776,801,761,801,783,793,796,796,742,758,794,788,779,781,770,789,779,757,778,763,755,768,758,821,767,768,790,838,760,839,894,813,777,836,928,805,826,940,822,1011,847,787,936,821,682,916,880,805,876,761,776,881,885,897,906,879,829,782,1179,1150,1134,1154,1174,1136,1131,1116,1133,1136,1130,1181,1158,1162,1155,1186,1147,1169,1163,1119,1164,1129,1163,1174,1143,1138,1127,1144,1151,1092,1134,1211,1097,1089,1112,1122,1121,1162,1118,1183,1136,1142,1231,1143,1114,1115,1152,1151,1088,1177,1123,1136,1151,1057,1169,1171,1093,1185,1149,1169,1048,1164,970,1063,1042,1108,1008,1003,1059,999,1015,1030,1008,1042,977,998,1015,1040,1027,1081,984,1018,1056,1076,948,980,1006,1039,976,1112,1011,929,1096,746,793,702,780,740,726,784,749,802,795,783,761,811,823,779,774,696,764,796,792,794,733,789,835,771,679,744,773,799,714,769,709,742,705,738,710,721,706,673,723,732,683,729,708,715,677,684,717,696,727,725,718,739,724,685,664,752,706,717,746,698,711,802,778,822,777,775,739,814,779,769,744,823,735,792,806,750,880,747,779,814,808,813,773,774,792,770,850,772,821,788,770,816,734,708,844,791,630,787,804,874,793,706,788,823,756,703,805,809,754,782,765,750,796,763,736,638,776,783,879,668,692,649,764,1099,1087,1138,1152,1133,1137,1098,1156,1125,1176,1213,1167,1168,1135,1090,1140,1177,1121,1076,1150,1098,1100,1105,1186,1124,1158,1127,1132,1195,1147,1158,1028,1092,1034,1102,1091,1092,1103,1083,1015,1140,1118,1032,1104,1096,1099,1091,1102,1067,1058,1073,1079,1102,1115,1075,1051,1066,1079,1092,1078,1069,1058,969,1017,969,1009,942,979,1002,951,983,953,955,971,992,964,978,982,1033,988,978,1027,987,951,975,1019,949,969,997,979,989,989,984,885,895,900,890,896,901,896,905,920,893,909,887,883,910,898,897,918,927,913,868,925,905,918,921,923,928,894,885,901,869,869,840,863,876,814,819,824,851,852,850,811,857,806,805,838,873,835,844,838,827,861,837,805,840,821,811,846,873,848,840,841,882,851,852,842,826,791,811,798,806,816,781,859,794,808,850,854,831,807,837,840,794,802,781,775,799,837,841,796,861,795,803,797,872,871,851,888,894,834,906,903,891,907,895,919,908,900,921,917,884,841,891,901,877,934,913,869,871,913,905,873,905,898,865,942,950,906,923,880,950,913,941,961,956,938,884,951,961,961,949,924,940,922,925,916,970,935,907,914,975,924,936,968,975,911,1089,1080,1097,1144,1073,1082,1104,1143,1104,1118,1162,1069,1083,1078,1111,1073,1115,1103,1140,1129,1098,1107,1102,1107,1151,1077,1096,1125,1069,1092,1131,1046,1049,1077,1060,1107,1052,1084,1043,1105,1087,1078,1101,1120,1088,1075,1075,1093,1089,1076,1041,1053,1080,1089,1038,1121,1102,1063,1037,1102,1109,1044,1020,1021,1047,1026,1036,1052,1062,1024,1059,1034,1029,1039,1059,1022,1012,996,1050,1039,1059,1048,999,1035,1042,1046,1051,1015,1014,1033,1060,1061,1045,1071,1050,1043,1051,1063,1056,1046,1063,1044,1032,1049,990,952,1035,1065,1035,1028,1049,1011,1033,992,1068,1072,1016,1023,1019,1069,1014,1040,970,1035,937,947,983,977,927,943,963,936,942,939,954,937,997,941,955,916,926,956,964,933,943,955,959,933,969,957,938,933,969,944,932,816,842,826,820,836,828,839,812,814,822,806,837,808,799,818,793,829,827,778,807,818,839,830,811,825,843,831,819,814,815,810,799,757,817,797,791,788,764,800,770,793,798,806,814,755,790,816,807,803,806,805,837,795,824,780,815,767,808,752,793,764,782,764,782,746,768,759,756,750,805,818,781,782,762,805,792,781,780,811,759,787,735,769,735,794,780,802,762,757,775,721,782,853,1037,981,989,961,989,968,969,980,1001,995,959,1026,965,976,973,981,1005,985,1051,967,958,985,926,1017,996,987,1023,1012,979,990,984,857,918,964,958,961,904,866,961,928,963,936,878,929,863,871,950,888,963,939,922,845,958,869,895,878,931,934,900,868,915,899,874,829,836,855,887,861,880,858,771,865,816,819,816,823,807,872,860,882,846,839,850,840,889,851,911,829,839,806,871,832,865,1069,1120,1055,1142,1080,1115,1092,1141,1088,1115,1096,1097,1109,1129,1166,1041,1088,1108,1056,1135,1092,1181,1095,1086,1107,1129,1058,1096,1085,1115,1090,1087,1090,1113,1134,1112,1078,1058,1149,1034,1114,1100,1090,1086,1094,1075,1075,1111,1119,1099,1030,1108,1040,1043,1101,1097,1053,1089,1064,1056,1019,1061,1004,1017,1039,974,1010,1028,988,1053,1020,1008,987,1015,1026,1032,1019,1034,989,1003,995,1011,1003,1035,1017,1005,1010,1019,1005,1004,1023,1012,988,872,910,868,861,871,853,856,916,881,849,885,904,875,882,925,869,920,870,808,865,870,858,902,884,888,860,898,844,849,839,887,810,868,801,883,825,819,814,816,789,817,777,857,858,832,834,808,818,809,843,783,795,818,825,788,782,787,786,809,796,822,831,1045,1008,999,1039,1078,1053,1056,1037,1012,1043,1054,1086,1023,1008,1081,1086,1060,1053,1048,1083,1010,1043,1039,1096,1023,1077,1030,1039,1014,1021,1038,996,1031,977,1020,1041,1040,1038,1016,1026,974,1071,1064,1042,1021,1031,1037,1046,1054,1052,1013,1017,1085,1066,1028,1005,1086,1006,1039,1072,990,1007,1090,973,1034,1170,972,1071,964,998,931,1040,1016,1049,1014,1009,1086,1079,1044,1021,1002,1003,1008,1034,1001,971,978,1057,980,987,994,996,1028,914,960,924,924,908,874,892,917,849,960,915,901,920,893,915,891,903,900,897,876,928,920,884,902,943,880,915,976,879,858,903,775,781,796,768,813,768,749,811,788,753,774,815,800,773,810,788,796,712,824,780,774,779,783,774,750,785,793,827,782,783,784,740,715,691,674,702,666,705,717,690,679,701,697,681,694,714,724,700,712,677,683,701,666,707,674,685,695,708,709,655,681,699,689,677,701,687,734,694,753,706,701,717,709,719,724,736,719,705,716,704,679,724,702,712,703,716,697,719,753,728,711,711,717,718,730,768,778,704,684,726,716,752,715,728,724,720,714,728,724,747,739,704,708,750,728,730,715,739,723,717,741,750,763,762,813,762,852,821,802,811,781,802,822,796,816,768,806,836,864,785,794,848,811,822,804,774,819,794,786,851,768,885,810,736,803,838,832,866,873,851,857,822,869,860,830,858,850,832,816,837,845,840,844,872,911,872,858,839,846,860,840,827,865,845,838,858,1027,975,1044,984,975,1030,1004,998,937,1007,996,974,1019,1006,1014,1000,1002,1052,992,949,1017,996,1032,1029,1031,1002,1017,1028,948,1048,1001,903,877,907,872,888,906,870,878,894,895,903,931,898,909,876,888,922,872,909,887,910,916,885,876,872,899,891,903,905,913,944,848,882,835,848,859,832,812,849,867,840,851,843,852,857,838,866,840,845,792,868,835,854,850,859,808,814,828,858,877,825,854,780,819,771,798,791,804,766,788,783,798,799,789,770,790,800,790,799,792,805,775,778,789,823,771,784,821,789,799,792,771,768,792,800,792,798,808,792,762,775,782,804,784,782,786,742,787,804,785,792,779,807,801,812,788,762,778,785,762,795,773,762,769,818,771,820,798,780,792,825,784,768,815,818,806,795,787,824,810,826,772,804,856,776,788,745,788,788,798,830,788,771,772,806,840,905,864,869,779,844,893,880,861,837,777,837,828,819,868,865,823,877,935,815,784,929,828,853,881,820,833,889,837,854,909,1057,1043,1046,1057,1072,1075,979,1052,1008,987,963,1091,1089,1098,1072,1054,1035,1055,1080,1118,1094,1083,1019,1016,998,1066,966,1054,1030,1078,975,856,899,850,861,877,830,823,846,856,896,816,871,835,899,873,884,862,898,873,852,840,848,827,897,895,860,878,924,850,854,852,817,829,712,845,821,770,793,745,771,774,836,825,754,834,769,852,829,786,785,803,716,821,825,768,732,751,886,751,742,774,792,1082,1057,1064,1008,1094,1067,1104,982,1104,1112,1066,1057,1072,1125,1061,1085,1055,1072,1066,1060,1097,1072,1066,1019,1116,1057,1099,1008,1129,1006,1094,1001,1009,996,1012,1044,929,1042,956,927,937,956,980,986,959,1041,1011,977,966,999,997,1001,976,942,948,1031,955,1002,998,970,960,979,906,885,938,869,890,889,887,885,887,907,920,888,865,909,894,883,895,913,898,867,896,893,919,889,914,914,903,912,851,911,895,727,830,842,784,804,766,814,772,795,835,796,835,807,829,792,819,806,829,797,855,829,805,826,768,818,778,785,822,749,829,849,847,818,783,804,832,784,841,824,797,816,789,829,804,826,809,835,793,793,868,804,799,814,808,794,815,847,804,807,801,829,798,914,932,871,878,961,944,908,856,885,941,901,927,896,893,860,917,936,892,925,969,920,942,902,862,872,895,873,887,896,878,910,1107,1142,1111,1126,1109,1092,1113,1168,1175,1106,1047,1076,1104,1126,1112,1064,1134,1107,1088,1123,1079,1124,1036,1094,1131,1107,1065,1108,1122,1078,1065,955,999,919,1007,965,987,1011,987,992,983,959,969,978,982,968,1002,988,1006,971,981,995,963,963,962,974,1020,949,1027,991,987,994,904,895,909,861,862,907,861,866,919,924,873,892,908,894,883,906,872,888,887,891,912,886,886,870,877,965,881,906,916,901,871,972,986,959,969,948,959,1001,946,948,926,958,992,958,957,951,933,962,949,956,958,949,957,989,983,971,953,960,989,932,943,938,775,787,798,735,786,758,748,786,798,832,752,771,795,800,769,768,809,809,775,836,777,815,792,759,750,778,800,749,760,777,752,817,764,763,797,924,706,794,786,783,756,747,709,866,785,824,765,738,687,824,769,836,732,821,830,758,802,744,793,736,790,804,1142,1111,1090,1135,1098,1136,1107,1144,1063,1161,1147,1119,1070,1133,1092,1101,1142,1064,1067,1067,1076,1151,1038,1100,1134,1141,1119,1091,1159,1089,1107,1047,1065,1075,1070,1043,1045,1058,1093,1060,1055,1089,1092,1059,1079,1035,1114,1066,1048,1088,1034,1081,1034,1126,1103,1096,1014,1066,1103,1039,1056,1072,1012,977,999,990,993,979,972,1010,979,961,984,943,958,966,960,981,1012,996,974,961,1008,1012,966,1059,984,978,1027,1003,999,1013,994,850,900,868,890,840,853,934,839,849,924,862,899,848,865,893,831,891,812,884,865,908,852,880,861,860,926,834,857,822,830,869,1080,1018,1030,1081,1071,1010,1061,1076,1051,1098,1055,1066,1043,1018,1097,1057,1071,1064,1062,1057,1074,1077,1057,1067,1078,1061,1024,1008,1058,1069,1075,980,959,977,985,989,964,1037,993,981,989,1026,1024,1008,1008,992,966,965,1003,1009,991,1053,960,1003,995,962,1038,958,943,1032,995,1000,1105,1095,1128,1083,1169,1108,1058,1118,1073,1149,1108,1062,1158,1131,1138,1113,1099,1105,1134,1128,1128,1100,1098,1092,1081,1094,1142,1091,1110,1067,1138,1099,1033,1040,1116,1088,1038,1072,1073,1028,1073,1044,1067,1085,1065,1074,1040,1071,1097,1059,1065,1053,1060,1129,1063,1086,1052,1073,1063,1096,1071,1016,1011,1041,1024,1046,1016,1057,1010,1002,1025,1012,1048,1036,1042,1056,1060,1005,977,1079,1076,1003,1057,1091,1012,986,994,1041,1040,1044,1044,1024,1024,1026,1052,1059,1061,990,1053,1026,987,1058,1019,987,1010,1055,1035,1025,1075,1025,1023,1052,1082,1011,1020,989,1039,1053,1084,1113,1078,958,1002,1073,957,932,961,934,940,932,948,949,935,931,919,948,972,924,953,942,950,987,961,948,968,996,952,893,960,902,931,946,963,935,933,826,805,774,795,763,842,811,824,800,863,842,808,828,770,807,819,798,819,803,802,782,809,823,824,845,788,779,808,804,792,814,1026,984,1001,979,995,981,996,1024,1030,1131,1002,999,981,979,1056,947,1032,991,1013,988,1027,974,1002,1032,971,1026,909,1041,1052,1005,1094,1019,1038,1012,1003,1030,1027,1025,1063,1071,999,1003,1012,1071,1011,1025,1051,1018,1034,1040,998,1083,1066,1042,1080,1046,1065,997,1067,1007,1029,1066,901,957,920,949,942,925,926,927,934,922,907,929,959,935,952,902,921,952,902,911,936,928,921,921,940,927,960,921,955,934,923,804,857,835,811,842,847,838,878,821,821,842,857,851,827,865,816,854,840,824,887,810,848,865,842,859,836,848,850,820,784,842,1022,956,1021,920,981,1012,975,975,966,984,1058,1021,947,1041,940,975,1014,1014,1045,992,962,1090,991,973,962,950,998,965,1004,968,975,941,952,959,945,947,985,941,962,982,917,975,945,910,910,959,963,958,943,938,961,982,987,935,958,953,982,974,969,969,928,943,840,800,881,856,847,815,790,850,857,813,792,837,822,866,840,860,855,839,851,859,868,787,842,856,828,843,870,834,826,858,845,730,725,751,743,743,745,749,717,727,765,752,741,765,767,725,754,715,755,767,717,758,736,737,752,753,731,729,709,752,751,724,757,760,738,776,735,716,752,716,738,739,772,744,761,755,776,759,722,707,772,739,743,774,764,750,746,732,758,717,755,739,754,776,838,779,778,763,806,792,795,743,793,762,797,783,740,711,797,814,740,796,799,784,805,709,803,791,822,829,780,799,786,800,907,922,920,913,908,871,935,942,912,902,955,974,958,922,884,958,910,871,935,973,874,893,915,936,908,953,900,942,929,913,937,806,840,834,836,841,817,825,848,814,882,824,878,798,838,817,824,802,809,838,841,853,838,844,833,843,835,799,805,840,833,819,912,893,988,869,952,862,899,943,946,948,882,905,872,940,913,926,923,869,945,928,923,870,898,901,918,841,900,952,898,933,935,800,808,782,841,817,852,808,825,803,827,801,810,845,823,806,826,800,835,819,825,836,799,808,826,797,844,807,826,834,850,837,845,756,774,802,820,756,826,776,778,796,753,761,795,770,771,831,778,781,786,772,793,806,818,776,769,787,810,810,833,777,757,783,786,842,811,759,810,774,823,811,847,780,809,866,838,844,833,793,813,784,856,796,836,807,777,781,750,832,790,814,841,834,998,1012,1073,1030,1035,1032,1022,1060,1001,1022,1022,1010,1042,997,1065,1053,1065,1025,973,1048,1033,1036,1007,1006,1000,1047,1030,1050,1070,1059,1019,984,941,965,934,962,920,979,967,949,1007,959,973,953,978,979,1008,1002,946,1002,923,978,958,965,998,983,967,1021,1010,982,968,970,851,883,865,892,877,849,856,858,865,872,848,919,927,858,854,880,899,863,886,844,902,900,890,889,870,891,866,891,868,881,865,1033,1049,1027,1012,1035,984,1065,973,1011,971,1052,1044,1051,1005,991,1024,1026,999,1021,986,959,991,1066,1031,991,1045,1011,983,1064,1028,1044,949,959,895,932,938,934,944,904,922,910,960,865,904,980,948,926,886,953,967,941,923,900,940,895,1000,903,936,974,943,952,918,908,869,992,964,881,912,948,960,924,1021,920,1004,980,900,919,938,946,921,861,925,975,939,903,894,899,944,890,913,1030,1031,916,1096,1138,1100,1082,1081,1081,1080,1090,1099,1091,1125,1108,1105,1092,1137,1091,1121,1150,1095,1101,1106,1114,1071,1095,1056,1076,1135,1134,1110,1101,1062,1092,1067,1113,1120,1048,1062,1024,1107,1070,1011,1029,1121,1011,1038,1150,1065,1062,1040,1105,1080,1059,1063,1030,1044,1082,1058,1043,1061,1079,1045,1132,950,1000,978,927,973,976,940,964,944,964,910,968,964,927,947,953,980,954,935,953,982,944,984,968,937,972,988,939,970,974,962,933,934,931,921,919,949,924,918,960,917,956,924,939,919,907,917,937,897,922,899,940,927,921,946,969,944,920,919,939,981,871,987,953,955,1005,1001,960,970,992,1006,1025,964,943,942,992,1003,900,955,928,932,946,1036,1019,933,949,953,950,902,955,995,978,945,840,833,815,814,839,818,820,820,818,821,827,818,808,799,810,815,841,804,828,831,835,835,834,820,839,829,834,792,816,817,825,815,830,805,818,844,867,844,837,833,811,832,833,828,849,771,836,848,832,827,875,848,848,809,808,821,843,849,829,873,880,833,814,770,785,786,827,766,784,805,791,802,802,789,791,798,789,788,807,788,816,783,790,797,809,790,806,803,789,799,812,785,815,793,783,805,812,782,829,795,823,790,843,821,811,826,807,805,781,812,823,794,841,795,801,821,794,823,803,788,833,772,798,785,753,782,723,711,753,819,770,732,769,779,740,738,787,774,732,748,748,738,736,808,732,751,775,753,742,786,823,734,820,793,811,1116,1107,1065,1104,1111,1083,1082,1085,1094,1100,1074,1089,1066,1065,1152,1074,1075,1101,1110,1110,1097,1091,1073,1069,1104,1067,1093,1109,1139,1107,1114,1063,1066,1008,1011,1065,1077,1031,1037,1035,1017,1071,1090,1058,1016,1031,1051,1083,1026,1034,1038,1059,1062,1102,1091,1012,1076,1072,1042,1078,1076,1102,999,1033,966,1019,1011,1009,964,980,995,1018,1010,1026,996,1004,996,991,1010,1013,963,984,973,1010,979,985,984,977,1008,1028,1015,971,1011,863,871,898,843,889,861,850,887,853,860,805,839,878,900,828,824,866,873,811,847,846,832,860,894,849,887,845,866,815,831,872,880,847,931,860,872,866,893,823,890,856,891,886,858,887,858,882,830,849,807,851,829,905,884,839,865,846,890,946,887,881,847,813,792,798,794,778,786,776,807,764,754,759,816,836,760,798,739,798,801,781,784,790,797,805,783,784,755,769,771,777,773,771,834,729,818,785,759,808,763,797,760,774,767,810,788,789,824,773,757,735,787,779,785,788,805,797,792,783,805,772,834,754,756,789,783,779,853,711,762,856,814,773,790,778,711,744,766,810,776,841,718,820,700,809,871,758,948,765,823,775,795,775,765,884,1131,1166,1207,1160,1122,1152,1084,1148,1186,1144,1149,1144,1192,1171,1177,1151,1171,1139,1103,1144,1163,1233,1134,1160,1131,1174,1120,1112,1132,1164,1119,1055,1040,1068,1070,1033,1053,1093,1066,1044,1074,1072,1066,1067,1078,1003,1019,1057,1129,1061,1064,1026,1065,1054,1087,1069,1077,1056,1060,1084,1069,1066,1030,992,1000,965,1053,1037,965,1012,1020,1046,1012,1051,1070,1023,1024,1008,1009,1085,1058,968,1043,997,1000,1031,1024,987,1015,1041,985,1005,1081,914,935,957,953,895,947,945,916,921,970,908,979,961,939,932,923,937,909,896,932,921,904,943,997,968,950,922,943,954,971,960,874,853,887,824,857,865,866,886,866,836,838,854,852,860,809,847,854,853,864,867,849,843,867,845,839,851,842,887,899,850,847,824,764,772,807,816,800,807,804,808,802,800,787,818,765,810,814,797,795,806,799,804,800,800,793,782,807,738,826,815,776,804,1043,1002,1003,1028,985,1022,1025,994,1019,1030,1027,1015,971,1005,1001,953,958,998,1060,1000,1029,988,964,1001,1057,1012,960,1032,1062,1051,986,901,885,905,866,820,919,894,906,879,852,873,891,855,861,863,872,855,888,905,860,879,856,891,948,890,864,874,852,899,914,883,990,911,961,810,947,872,926,919,901,876,928,893,954,897,880,921,916,801,996,985,924,893,908,947,856,936,864,826,832,927,872,1060,1067,1031,1065,1081,1062,1034,1072,1064,1078,1050,1008,1030,1080,1060,1093,1070,1069,1008,1030,1059,1045,1038,1044,1053,1084,1051,1022,1023,1096,1062,961,933,1032,1057,1102,1015,1006,1038,1013,954,1023,1046,980,1006,1022,942,1030,1011,1050,945,998,1015,1036,1040,1071,1135,1024,1004,1031,982,1010,917,940,893,902,904,900,912,945,916,889,940,904,930,905,940,884,892,877,917,884,917,868,898,876,881,903,877,895,932,880,870,815,775,832,816,771,786,811,791,808,786,776,818,790,791,823,808,825,803,769,829,827,789,787,808,792,816,823,786,797,809,768,796,769,824,778,804,806,771,789,779,810,793,827,800,756,778,777,780,784,771,796,767,796,802,754,785,797,788,764,743,802,798,853,901,832,815,867,844,847,845,845,853,847,826,857,855,815,866,875,792,835,860,808,863,860,864,844,846,800,849,888,870,859,1036,1027,1045,1051,927,1032,1034,1006,990,1027,1037,1019,1068,1021,1053,1070,1000,1095,1024,1014,992,1012,1003,1031,996,1008,1009,1045,1002,1014,1049,862,856,861,882,936,879,869,884,903,878,890,889,908,897,887,871,880,902,883,878,895,896,873,889,864,902,866,906,903,878,889,972,975,957,964,941,987,979,1062,869,999,1018,909,991,942,927,956,1049,976,989,989,941,999,939,964,923,977,957,1038,968,975,969,900,932,994,967,984,1001,1004,1002,952,969,988,987,971,962,1005,932,964,980,931,1007,985,960,942,953,944,944,943,936,935,978,949,914,890,918,965,903,891,947,961,931,909,919,898,908,933,887,949,895,898,909,918,941,917,901,950,943,905,957,952,953,922,978,867,879,839,875,826,851,908,892,870,805,910,893,910,885,892,836,881,835,877,824,809,785,874,871,844,921,836,931,895,868,919,930,925,884,872,862,931,894,878,863,904,915,925,884,880,912,906,865,925,914,870,888,888,856,874,885,914,893,899,884,886,913,925,952,941,936,998,988,976,984,960,937,937,967,982,933,935,970,922,1026,973,946,938,932,959,944,950,956,945,993,967,977,977,1032,965,979,937,992,959,980,976,1004,987,1006,964,983,974,985,988,954,970,937,960,1007,963,983,954,987,968,985,975,941,967,989,1001,1035,981,1037,980,972,1004,982,964,993,1025,1024,1043,1017,1059,1018,982,1077,993,1042,1000,940,1003,1021,1047,1011,998,1038,970,932,1013,897,895,872,877,877,904,948,898,917,899,892,924,894,894,904,902,904,897,893,910,910,915,878,915,916,894,930,891,876,909,836,846,842,847,834,809,855,827,838,828,808,808,893,824,849,869,827,817,839,828,876,824,822,821,836,843,825,837,838,870,850,854,820,815,785,796,794,761,781,775,767,783,813,788,780,797,795,793,778,781,791,777,797,780,779,774,801,810,781,763,835,782,806,807,801,817,790,789,804,804,759,791,757,802,821,797,806,789,805,797,834,806,819,802,801,812,838,800,819,812,794,806,823,783,830,840,900,858,832,829,875,839,845,860,853,881,850,811,893,847,901,843,882,854,794,886,828,837,852,869,842,838,843,842,799,814,851,811,843,818,856,835,801,787,838,828,842,821,838,842,810,844,803,816,815,832,853,792,839,838,833,829,829,806,864,768,996,1022,940,971,1004,954,937,992,1025,950,978,957,993,988,959,952,935,979,1033,994,932,980,930,1007,961,983,982,1014,989,1032,932,1005,991,939,1040,1016,1034,984,1053,968,1035,1002,978,1007,1018,1002,984,1013,987,962,953,978,974,1018,975,997,993,1019,994,972,990,1001,1088,1130,1108,1134,1096,1138,1067,1113,1128,1117,1099,1122,1122,1119,1128,1094,1108,1141,1120,1158,1126,1144,1085,1169,1122,1138,1144,1166,1166,1156,1128,1074,1052,1083,1052,1073,1048,1109,1091,1087,1069,1045,1042,1115,1077,1061,1075,1099,1072,1126,1083,1083,1072,1095,1074,1098,1039,1082,1056,1029,1070,1048,930,987,954,912,985,971,959,1018,958,972,1003,956,1003,930,982,1061,973,1048,980,970,943,966,965,919,998,965,974,935,968,973,1040,1074,1064,1047,1083,1118,1130,1103,1073,1158,1101,1103,1131,1151,1151,1112,1071,1087,1205,1113,1109,1077,1067,1168,1143,1067,1121,1152,1179,1115,1099,1108,1127,1042,994,1032,1067,1020,1082,1049,1009,1118,1058,1092,1048,1014,1054,1038,1027,1084,1082,1034,1045,1049,1071,1119,1059,1059,1017,1054,1057,1048,1072,994,1016,992,987,976,975,977,978,981,978,964,965,954,976,1010,970,969,976,977,976,951,993,979,984,988,985,969,986,992,984,974,936,920,918,944,920,968,913,905,972,967,981,968,955,925,982,932,949,940,945,903,1003,948,925,927,980,916,928,954,959,931,941,853,846,855,836,878,823,877,838,826,860,885,850,861,856,855,873,811,834,880,834,850,840,833,868,845,854,879,865,843,846,857,789,813,825,808,811,820,835,822,813,804,806,801,838,827,804,813,790,834,824,782,826,845,849,824,823,802,803,812,812,787,824,736,740,812,815,773,787,711,746,747,735,754,807,735,735,744,785,770,734,761,808,781,796,725,776,747,790,802,830,745,759,737,867,869,857,911,869,890,893,918,862,904,900,872,853,879,910,838,888,871,871,877,857,901,917,877,905,917,920,915,922,898,890,832,863,833,852,889,861,842,850,855,868,830,842,827,863,869,819,874,846,832,827,839,872,814,877,870,817,896,822,831,842,848,958,924,960,955,949,991,969,962,968,949,932,981,962,965,986,956,905,1002,1016,982,922,1009,984,990,970,948,1002,936,891,989,978,826,841,837,794,799,862,810,867,869,813,818,869,811,832,832,802,856,798,844,856,889,831,766,855,866,851,820,853,790,813,783,1033,1027,1060,1027,995,978,1015,1034,1032,1006,996,1002,1033,1046,1037,969,984,1005,1030,1011,973,1020,1015,962,962,1036,1007,974,971,993,984,986,982,993,1010,988,984,999,973,1051,1016,962,1063,967,1023,1022,983,975,948,928,987,969,1027,949,1036,990,1011,955,975,997,1054,994,1009,967,1025,1007,1050,1014,1037,1010,918,1009,988,1009,933,1004,1036,949,1000,1024,1002,992,1037,946,1026,1033,1024,998,965,982,987,1020,1041,915,876,908,896,939,905,926,891,853,908,918,896,930,889,934,893,902,901,914,900,900,879,894,907,900,889,872,936,887,902,855,792,840,858,813,811,841,835,824,887,856,802,858,833,829,827,814,828,839,844,839,841,827,812,832,824,827,817,850,814,838,848,999,933,996,987,943,898,937,927,927,980,949,934,957,936,947,952,953,948,902,930,914,972,917,956,961,977,904,966,957,969,941,1000,958,965,1052,987,949,984,989,968,980,995,984,1027,1028,1017,1012,1026,1006,1017,1003,982,989,961,957,997,948,1037,957,977,965,986,1064,1051,1029,1047,1065,1095,1021,1086,1078,1036,1049,1020,1062,1085,1049,1074,1090,1077,1038,1083,1093,1082,1053,1080,1024,1070,1073,1085,1131,1086,1079,1010,937,965,981,971,959,1001,960,950,981,977,957,948,993,959,1006,943,988,985,984,990,984,969,938,950,953,962,1012,982,953,966,879,879,887,879,926,870,933,920,871,922,906,878,888,903,921,873,906,898,895,897,922,890,906,872,930,868,915,917,867,867,897,792,799,836,812,851,848,802,822,816,791,793,784,847,801,838,826,818,798,798,838,829,844,799,814,832,811,813,782,841,815,823,924,927,894,902,926,873,894,918,891,850,881,911,913,885,891,857,890,901,868,837,970,929,926,893,888,858,938,921,880,876,874,933,939,976,971,964,967,916,878,937,971,953,946,965,1011,946,987,970,906,978,896,936,953,918,960,947,934,964,938,920,947,926,1120,1164,1102,1163,1099,1080,1080,1115,1163,1136,1161,1115,1117,1113,1178,1133,1156,1160,1137,1128,1101,1096,1094,1091,1106,1130,1132,1134,1151,1133,1156,1059,1067,1068,1102,1048,1074,1036,1030,1072,1111,1080,1020,1072,1079,1095,1059,1064,1078,1112,1055,1068,1141,1063,1125,1041,1057,1072,1127,1094,1059,1063,924,956,957,949,995,961,972,962,978,947,1003,1002,975,991,966,983,987,990,953,972,980,986,1000,990,970,959,1006,936,942,959,975,923,941,1001,958,943,968,979,973,959,954,943,951,937,926,990,936,991,959,891,932,958,958,948,934,975,982,845,980,904,922,960,823,828,819,812,827,849,823,810,807,851,857,803,817,803,826,809,845,837,797,849,831,843,842,830,793,814,805,853,813,817,806,905,904,907,889,879,902,922,933,895,934,916,888,942,899,939,873,910,958,914,893,904,896,907,925,885,908,907,901,917,901,980,833,838,796,793,819,792,827,777,801,843,781,839,798,762,786,789,851,795,793,807,834,876,785,826,852,823,834,812,840,853,792,805,729,859,904,893,839,762,732,852,862,907,959,866,911,863,891,815,870,818,838,841,950,798,799,848,847,829,796,843,855,851,975,1018,997,923,966,1035,1045,1023,989,979,1005,987,987,969,994,1014,992,1014,966,995,973,1020,1021,964,1002,1034,1007,1029,977,995,1050,1144,1178,1152,1138,1171,1187,1181,1131,1136,1127,1078,1219,1107,1138,1180,1111,1130,1154,1175,1141,1114,1074,1138,1156,1174,1124,1119,1172,1138,1152,1116,1052,1109,1105,1050,1116,1111,1082,1119,1066,1093,1070,1108,1118,1111,1111,1040,1128,1092,1090,1054,1109,1061,1134,1092,1089,1062,1090,1059,1102,1074,1104,958,1010,981,1003,958,1013,988,1021,963,979,977,964,990,1053,977,1029,991,1018,1034,1009,1023,978,1065,989,975,991,1013,1015,995,1041,1021,935,815,865,842,866,887,895,837,884,860,866,843,844,883,900,835,891,864,851,838,892,868,850,820,831,852,877,894,875,870,841,833,809,806,857,818,833,831,810,800,806,832,809,788,862,855,789,800,795,775,826,775,797,839,840,843,802,811,840,798,748,786,993,889,1012,848,920,870,894,874,880,929,917,910,942,943,885,923,874,906,955,975,838,991,857,871,865,916,926,953,870,959,930,1202,1158,1188,1215,1187,1161,1232,1204,1163,1146,1220,1188,1142,1185,1179,1181,1235,1203,1199,1196,1215,1215,1160,1154,1229,1205,1179,1210,1200,1206,1252,1205,1164,1170,1160,1153,1195,1126,1133,1130,1106,1158,1204,1122,1107,1106,1082,1142,1151,1107,1129,1141,1114,1101,1130,1138,1077,1133,1173,1184,1167,1115,1045,1036,1020,1080,1037,1049,1054,1007,1041,1000,1031,1103,1071,1045,1047,1012,1011,1043,1029,1008,1073,1044,1032,1013,1049,1054,980,1049,1017,1063,1058,960,955,965,973,978,953,924,959,950,932,986,979,977,998,984,973,958,961,954,962,999,930,985,981,989,974,961,979,948,993,972,1075,1141,1056,1108,1127,1095,1062,1128,1139,1091,1084,1152,1168,1115,1191,1182,1140,1114,1135,1104,1150,1124,1042,1084,1107,1153,1093,1136,1051,1144,1125,1094,1120,1150,1098,1096,1102,1108,1099,1131,1074,1051,1181,1142,1075,1109,1112,1124,1074,1008,1092,1076,1078,1076,1123,1089,1196,1136,1111,1041,1063,1032,962,997,930,988,1010,996,1025,938,1023,1038,1015,925,996,1050,925,965,999,982,979,969,1020,998,1006,1027,926,1050,981,973,974,991,1008,776,723,773,776,776,743,724,759,703,708,731,739,764,765,778,761,757,797,788,739,796,769,733,751,770,706,754,778,728,793,733,921,898,973,960,925,888,894,896,874,974,893,857,957,908,916,947,931,945,926,953,931,937,901,887,906,904,898,854,916,933,885,817,789,835,792,815,808,765,804,787,761,824,780,816,773,799,810,774,804,783,813,748,804,784,810,809,812,785,830,792,791,769,793,764,779,771,775,786,767,794,744,759,749,735,788,768,785,789,792,811,761,768,774,806,754,728,766,782,752,778,764,774,737,798,834,765,815,792,777,811,778,784,772,772,811,782,787,804,794,767,787,766,795,778,765,809,779,818,803,808,759,782,787,768,828,837,850,801,813,843,845,870,825,835,800,809,824,869,812,849,806,853,819,822,834,864,826,856,833,843,828,829,858,791,799,871,882,869,882,876,833,901,849,830,874,896,872,913,846,886,888,863,883,893,873,866,892,912,838,859,836,849,876,897,891,905,771,799,806,803,795,836,829,848,852,764,796,812,819,838,818,799,771,831,799,776,795,829,823,830,794,808,810,825,846,824,806,867,862,883,862,859,876,866,836,844,838,887,854,877,852,848,880,851,882,833,847,819,826,860,857,888,864,878,813,894,864,871,870,920,890,911,877,870,868,943,913,901,903,922,879,924,926,903,880,876,927,866,887,886,917,932,901,892,890,886,853,926,870,1016,1053,1064,1090,1055,1092,1085,1064,1053,1108,1028,1042,1061,1062,1057,1069,1066,1054,1161,1018,1058,1000,932,1071,1063,1079,1049,1055,1053,1129,1138,846,870,875,884,880,883,846,848,934,846,888,923,901,859,839,864,893,831,879,825,812,935,862,929,850,893,869,825,878,872,949,827,882,760,768,851,827,849,803,928,759,814,779,818,830,861,847,818,876,764,873,896,806,844,852,882,833,793,824,768,889,802,982,982,1021,1000,974,999,970,981,943,977,929,934,992,979,936,950,931,964,932,969,907,960,952,971,986,951,950,973,993,969,940,1117,1133,1108,1115,1133,1176,1164,1179,1125,1087,1150,1115,1128,1133,1134,1136,1113,1121,1146,1117,1175,1155,1157,1159,1141,1144,1121,1138,1115,1109,1124,1039,1073,1069,1032,1077,1107,1052,1143,1088,1107,1015,1065,1076,1116,1049,1119,1126,1092,1098,1039,1142,1111,1177,1095,1081,1065,1090,1051,1069,1046,1112,993,997,900,976,931,897,929,943,1001,975,954,975,923,1013,995,930,957,917,962,994,943,978,926,968,974,1005,939,969,918,926,989,893,788,827,798,805,792,881,808,837,848,791,850,796,853,825,821,856,784,821,817,825,839,841,863,819,833,838,814,856,835,844,1022,983,1036,989,1004,1047,1040,1036,1013,1012,969,1014,1014,1033,1023,1056,1030,996,1032,1046,1038,994,971,982,1000,996,1073,1017,1050,1081,1002,1066,1079,1057,1061,1030,1048,1044,1052,1077,1077,1093,1089,1061,1105,1079,1059,1053,1090,1039,1073,1103,1085,1036,1079,1086,1089,1076,1095,1044,1071,1059,1047,1057,1042,1076,1026,980,1093,1042,1059,1076,1049,1077,1009,1009,1046,1108,1085,1062,1055,1083,1013,1104,1053,1095,1015,1058,983,1025,1025,1063,969,1027,998,1044,1065,1012,1020,1037,1052,1005,1042,1020,1015,981,982,1014,995,1030,1032,1030,1033,1055,1072,1070,1076,1024,1059,1042,1068,1039,1027,1041,953,962,968,964,1033,975,931,989,973,957,978,982,966,906,982,933,871,945,971,918,972,938,917,978,1028,906,954,939,953,974,959,930,961,999,968,906,967,959,982,949,985,1021,907,982,964,974,975,938,1002,1017,967,987,1074,1005,966,987,983,1000,964,995,1017,1024,856,818,826,892,842,812,851,825,861,856,835,836,869,818,852,850,840,811,872,850,871,858,841,805,841,835,882,829,858,853,840,888,953,851,810,857,948,992,963,874,941,895,925,840,984,1008,908,948,1030,936,942,878,851,974,900,955,948,974,929,895,876,999,1035,996,1006,934,961,1021,1006,952,996,937,1006,1005,1029,965,944,1009,1011,1041,953,986,990,947,1026,1049,953,969,1025,967,970,980,973,814,823,893,825,823,825,849,828,836,840,888,870,832,800,858,851,823,838,854,842,840,800,781,854,865,849,846,838,811,849,830,799,825,802,834,832,794,863,800,818,786,809,838,821,870,854,848,805,834,810,854,818,779,812,808,787,821,801,825,773,813,801,889,837,905,875,914,908,848,916,861,831,865,868,866,883,921,857,830,872,882,853,841,864,836,880,813,871,847,875,845,833,896,774,785,811,782,795,802,779,804,795,833,801,816,802,804,787,749,815,800,760,800,793,800,779,829,804,813,782,821,806,773,832,1011,989,957,1017,986,1004,1029,1016,1007,968,1021,967,996,1003,1013,1025,1006,998,1000,1021,973,995,1028,985,1020,990,1013,1013,977,1002,1007,1007,967,995,985,983,998,986,1032,998,975,1053,1051,1073,1023,1002,997,1068,990,1036,994,1039,1006,992,1022,976,1079,961,1056,1043,1019,1064,999,934,921,914,980,959,984,976,936,978,1035,932,996,889,974,954,962,921,972,958,1007,988,1001,1016,960,975,956,960,987,963,1028,994,1043,1024,1029,1040,1109,1000,1021,1000,977,1029,1042,1015,1066,1055,1056,1052,1005,1014,1058,1056,1045,1022,1081,1014,1014,1036,1061,1092,1033,971,1137,1091,1167,1099,1103,1056,1120,1103,1119,1120,1102,1079,1095,1132,1095,1046,1106,1100,1102,1094,1105,1103,1130,1126,1078,1131,1120,1098,1090,1103,1105,1071,1122,1030,1091,1026,1110,1089,1067,1112,1082,1059,1069,1077,1032,1072,1070,1084,1021,1083,1046,1080,1087,1076,1065,1054,1056,1108,1108,1067,1091,1045,989,966,1007,986,1008,1012,975,967,997,950,986,966,968,987,997,972,995,1001,952,980,944,991,965,979,960,967,997,1031,1007,953,962,924,921,920,929,929,916,938,946,958,910,881,950,905,961,948,910,953,918,943,882,931,919,903,955,959,885,912,952,940,922,921,804,845,806,799,853,837,784,831,837,802,791,827,812,847,826,816,845,742,822,839,858,834,849,846,797,816,858,818,862,859,851,1067,965,988,993,1035,1004,1016,991,1036,1054,1010,1002,1034,1017,1006,1018,1006,1000,1002,981,1017,1095,964,982,1040,1073,970,982,987,1038,982,843,907,870,859,909,883,873,856,891,886,901,872,865,890,855,830,884,880,850,859,861,900,885,905,884,894,836,833,896,881,859,893,964,913,1068,1002,1017,894,892,1009,943,983,915,938,919,966,994,1041,933,983,951,956,990,1003,996,916,969,931,1001,944,1046,958,1066,1015,1086,1019,1043,1046,1047,1000,1016,970,1089,1034,986,1031,1033,1049,1035,1011,981,1065,1026,1047,1043,1036,1059,994,1070,988,1031,974,1020,1067,1066,1099,1001,1068,1115,1051,998,1017,1026,1052,993,1065,1066,1046,1063,1038,1093,1037,1056,1068,1085,1054,1003,1156,1053,994,1066,1085,972,1031,948,954,986,904,934,933,909,940,917,999,918,867,949,920,928,903,943,916,960,893,923,916,927,887,925,977,955,936,926,902,955,898,1015,867,968,946,983,1067,1002,981,1048,891,1021,1075,964,954,987,957,995,899,864,1057,904,966,1002,991,927,1169,946,967,972,1030,1010,1073,1091,961,1038,1026,1070,1072,1056,1009,1081,1021,1045,1062,1004,1087,1003,1039,1115,1043,1059,994,1035,1032,1089,1046,1049,1041,1045,1092,1105,920,999,942,1002,1028,975,1015,991,996,981,1014,1015,1030,971,1012,985,971,963,1006,976,996,976,973,995,989,975,1004,958,961,1017,948,972,975,947,982,962,932,962,961,946,985,934,976,968,925,950,969,940,980,966,984,918,954,1030,922,928,978,1026,963,959,980,972,1078,1010,1108,1093,1099,1127,1113,1150,1102,1086,1053,1114,1050,1086,1057,1112,1064,1052,1115,1105,1134,1053,1007,1175,1109,1085,1029,1119,1078,1071,1073,1150,1085,988,1096,1139,1171,989,1064,1061,1060,1084,1061,1165,1112,1035,1034,1057,1132,1108,1125,1078,1109,1051,1084,1038,1120,1138,1129,1058,1077,1082,943,952,947,1054,1013,969,1021,955,1009,1012,974,990,1026,958,964,938,1049,999,978,979,1025,942,912,971,1014,977,1007,1032,963,987,1029,809,803,812,767,867,790,797,804,845,810,844,784,782,804,860,798,818,806,803,808,804,758,792,832,819,804,839,804,811,825,854,786,828,821,804,849,779,794,814,875,867,820,808,818,794,819,829,822,811,773,788,807,806,838,787,808,818,807,812,864,775,809,890,871,879,892,873,908,859,852,857,871,861,888,837,876,852,880,882,854,917,924,895,903,874,849,868,888,828,863,829,896,898,923,907,823,904,899,885,888,904,885,872,915,861,913,904,840,895,925,850,870,869,831,873,959,843,890,901,913,902,908,919,879,809,829,818,822,846,836,844,793,842,827,813,806,811,830,814,851,846,835,823,810,847,811,842,836,806,823,815,823,853,821,830,758,770,810,780,799,764,760,766,759,760,759,751,753,754,766,776,797,763,787,788,764,777,782,756,751,850,736,715,763,806,783,746,747,729,772,758,746,729,724,768,725,730,731,729,751,780,719,729,708,728,750,757,765,764,777,745,712,708,761,690,687,743,852,860,935,895,913,928,868,872,917,864,859,846,918,856,921,901,859,895,860,891,871,927,906,901,905,837,930,906,874,926,927,860,833,839,920,868,869,857,817,871,920,844,878,826,855,879,811,912,857,866,869,868,874,870,838,880,886,900,825,855,871,819,790,840,830,788,820,804,784,836,806,815,829,862,829,813,845,789,813,827,848,807,785,776,822,812,836,790,814,833,826,808,792,797,764,769,772,770,769,782,771,805,780,781,758,757,762,750,774,775,765,812,773,776,775,729,793,764,797,765,789,803,797,814,829,817,793,822,814,819,825,827,849,803,834,835,808,783,844,836,823,812,826,824,815,835,813,811,855,827,852,855,816,838,782,820,832,811,837,796,802,767,836,816,763,802,792,778,772,787,829,787,814,814,778,808,752,778,822,824,802,816,796,789,790,772,889,820,873,855,850,852,885,872,862,873,854,872,894,876,859,811,867,877,867,887,853,861,899,866,908,841,861,905,886,862,858,918,934,911,866,859,911,871,878,868,888,894,912,881,910,866,884,868,890,861,889,894,889,888,849,904,908,912,874,901,887,912,811,892,807,875,859,828,844,860,865,835,819,814,869,812,834,842,863,875,827,872,861,858,852,817,851,850,862,840,840,893,827,851,848,786,854,835,819,795,859,808,848,842,820,834,833,795,817,805,808,819,853,810,812,816,820,786,829,826,812,832,832,813,970,985,953,1016,997,970,985,969,970,977,993,973,1009,995,977,963,968,1000,959,997,1009,1016,984,974,1000,1007,1007,964,998,981,964,1042,938,942,938,962,944,944,938,914,1000,979,907,1037,1037,958,994,1011,977,1034,887,948,1002,981,959,952,986,1008,927,973,1029,1022,912,854,893,856,827,860,897,863,842,896,869,853,876,909,874,848,839,848,877,838,822,884,833,877,838,869,875,875,906,885,860,766,805,769,825,781,829,850,813,842,789,858,844,767,797,819,847,784,794,788,835,871,779,796,838,835,783,852,818,843,836,856,1048,984,1069,1084,1048,1084,1089,1058,1039,1054,1101,1114,1146,1037,1105,1029,994,1081,1125,1037,1020,1058,1037,1094,1024,1059,1045,1101,1094,1046,1109,950,941,899,920,909,893,951,942,918,899,886,900,910,890,871,918,919,940,938,942,925,906,949,912,906,898,958,883,939,896,902,829,809,816,854,836,827,838,859,787,856,847,850,799,816,827,834,847,814,863,844,854,835,846,816,842,847,857,847,837,817,857,815,806,824,806,762,817,811,832,758,848,798,833,815,835,803,763,780,807,801,804,804,781,805,812,750,827,802,790,802,834,806,814,809,790,820,836,799,805,822,823,793,789,832,783,803,821,796,792,788,822,828,819,803,791,798,827,799,817,824,848,838,794,763,765,753,780,740,772,734,767,753,751,758,759,758,776,767,770,765,783,809,781,771,815,754,767,780,773,745,775,754,775,774,747,758,771,780,776,739,750,752,754,714,752,771,743,743,759,707,757,769,734,778,735,748,739,743,761,758,732,735,731,750,753,755,728,738,737,791,758,750,685,719,795,782,725,708,710,715,753,715,749,721,742,762,713,695,713,734,726,748,761,723,766,775,858,891,840,901,927,881,855,844,891,896,860,896,871,942,919,895,837,941,872,923,941,955,896,1003,873,919,838,848,850,903,912,1179,1168,1176,1131,1135,1146,1177,1150,1163,1124,1123,1159,1156,1197,1191,1164,1148,1151,1145,1190,1208,1157,1134,1159,1130,1126,1142,1115,1128,1120,1111,1211,1089,1114,1107,1163,1065,1231,1172,1215,1184,1077,1177,1090,1057,1097,1154,1060,1168,1160,1198,1021,1136,1160,1105,1065,1049,1091,1186,1144,1064,1202,979,948,973,856,1018,1036,989,973,1004,916,955,962,987,852,934,982,905,942,894,903,944,977,952,952,1030,949,995,933,1003,1056,988,815,863,846,812,822,832,818,852,820,774,862,829,798,814,813,819,843,824,810,846,792,829,778,799,824,832,846,838,840,818,869,935,941,971,990,1017,1019,994,977,1003,958,956,956,923,938,998,941,958,954,1001,947,956,950,996,1001,1034,987,1031,937,968,946,984,801,795,787,797,853,827,838,834,826,803,800,825,813,814,850,867,826,797,845,862,812,853,846,792,830,808,762,828,849,804,762,813,794,785,813,776,809,802,789,752,844,863,768,800,732,748,755,748,812,814,783,795,834,803,783,850,802,786,805,798,791,820,921,915,917,918,947,876,922,908,938,922,890,919,933,894,956,898,935,857,923,910,857,910,864,946,914,850,891,854,902,919,924,1010,980,1020,1012,1027,985,1013,1036,1041,987,1002,1058,985,1020,1030,1006,991,994,1022,1011,1038,1021,1035,992,1005,1005,1042,992,1062,1034,1030,942,896,859,914,913,885,923,883,896,891,904,961,957,917,909,929,920,909,939,938,913,859,895,907,933,944,910,900,898,900,900,820,798,858,843,817,857,873,825,834,842,822,808,830,862,850,834,834,837,869,823,848,844,830,835,817,859,865,822,852,846,867,934,935,944,979,967,966,947,955,980,927,979,1005,947,980,1030,949,944,941,963,976,1011,970,944,976,975,954,932,965,947,957,976,1022,962,996,998,1024,1055,1038,1014,1049,1005,1050,1058,1002,993,982,1032,986,1019,1054,1064,1012,999,1012,1026,1045,1009,1060,992,1049,1018,959,1024,1006,1002,997,998,986,983,999,1002,993,1001,989,979,984,1021,984,1013,983,990,1000,1036,1011,984,993,1002,1006,982,975,1043,996,971,1007,968,978,977,955,959,945,973,932,987,939,960,960,996,973,954,950,952,946,958,961,953,985,919,1000,967,1004,1004,978,1001,950,1070,1149,1115,1140,1134,1110,1145,1108,1146,1172,1126,1143,1142,1160,1130,1132,1086,1096,1121,1149,1124,1110,1165,1150,1149,1159,1186,1182,1139,1150,1159,1175,1113,1156,1068,1124,1081,1117,1076,1102,1129,1137,1106,1047,1101,1119,1147,1139,1085,1120,1034,1073,1125,1150,1147,1138,1065,1058,1072,1129,1075,1175,1104,1155,1148,1063,1098,1157,1153,1202,1132,1179,1149,1107,1113,1091,1106,1120,1097,1079,1176,1075,1141,1101,1132,1152,1120,1130,1137,1160,1119,1118,1071,1095,1075,1093,1107,1041,1073,1115,1073,1085,1052,1075,1097,1085,1093,1120,1094,1065,1124,1091,1087,1137,1014,1096,1054,1080,1129,1080,1099,1090,1109,1029,981,985,1014,997,989,985,1025,1009,998,1008,1021,1007,1017,1034,996,983,977,1039,1037,999,998,1007,1015,1041,1001,1008,1017,995,1074,1020,990,952,898,1003,942,956,943,961,1009,949,925,974,950,949,959,939,937,945,963,983,958,916,976,956,978,975,979,970,961,955,958,956,1038,1044,1001,1032,1048,979,1069,1047,1026,1060,1105,1060,1056,1051,1052,1039,1019,1078,983,1098,1119,1042,1050,1025,1051,1005,1065,1090,1047,1072,1046,919,978,943,968,1011,984,989,953,927,929,952,948,944,953,937,963,963,947,906,974,929,968,948,945,1019,962,945,960,953,927,929,912,859,878,864,879,864,851,893,876,879,864,861,844,867,865,892,838,837,847,891,897,808,844,861,847,859,923,876,843,871,871,892,855,925,924,913,868,901,896,946,922,862,911,901,926,891,913,902,876,878,904,921,891,883,858,902,882,896,888,878,926,902,901,876,822,855,871,853,851,883,845,887,865,860,893,857,862,853,887,921,877,896,858,873,829,879,878,869,857,834,892,863,858,830,825,794,827,783,848,818,826,823,824,814,845,841,822,844,842,824,836,821,823,872,818,847,797,822,854,833,841,827,782,818,1042,952,1011,993,982,969,1042,1085,1029,983,972,997,1039,1016,1049,1007,1043,1051,1025,1045,1051,1052,988,1012,1031,1045,979,994,1010,1017,957,1086,1087,1025,1029,978,1032,991,1063,1003,1077,1002,993,994,1082,1069,1088,1018,1007,996,1085,1001,1027,1075,1078,1070,1100,1033,1043,1056,1102,952,848,842,818,816,806,845,828,815,820,824,770,798,867,850,830,849,825,854,847,813,833,836,856,811,830,815,798,833,820,814,812,776,882,891,787,798,840,797,795,789,776,814,819,786,837,817,791,869,812,840,771,814,764,842,808,790,863,806,793,815,814,818,944,1009,988,962,949,985,999,985,1014,1004,1018,1020,989,1010,1055,997,1003,1018,983,1082,957,981,951,968,1044,996,1009,1025,969,1002,976,841,849,885,861,893,851,909,905,836,875,861,874,886,913,881,916,891,917,905,910,872,904,909,912,878,868,834,927,852,891,900,783,841,837,860,791,797,837,796,809,817,862,848,888,819,856,832,795,813,836,811,799,791,823,835,788,819,838,821,814,816,797,978,1082,1000,1105,1083,1082,1085,1045,1059,1097,1004,1075,1029,1067,1115,1089,1068,1094,1105,1085,1053,1052,1126,1041,1048,1106,1092,1130,1043,1058,1078,1070,1015,1038,1050,998,951,1103,992,1065,1022,985,961,1059,944,1059,1007,1079,1009,1001,1001,1067,993,1045,1068,1033,1057,1087,1018,1075,1069,1024,884,899,858,880,887,846,897,875,850,841,896,851,881,906,860,860,815,913,856,900,874,857,870,908,892,907,870,900,904,909,842,790,714,791,787,722,780,819,774,734,814,764,800,806,788,758,749,811,764,780,752,781,822,754,798,754,805,805,767,756,751,810,789,814,805,811,734,805,807,759,767,803,775,789,828,772,811,798,844,794,765,762,783,797,828,781,741,816,793,747,752,805,861,967,948,961,914,1017,915,955,938,960,931,967,985,998,975,918,922,998,1009,947,989,939,958,993,986,963,1030,985,976,936,945,972,1051,998,987,1034,983,988,966,1022,961,976,1017,989,989,1021,988,999,1002,1003,998,1016,989,1021,1011,1002,1015,1003,1052,1022,1056,1033,985,956,974,954,983,955,976,999,939,976,985,968,954,1007,1011,949,1037,992,964,978,1015,966,950,996,961,958,973,915,1003,950,943,932,840,804,808,820,842,797,856,833,825,815,817,805,830,826,842,804,861,845,785,819,850,818,840,831,788,827,816,814,833,821,793,713,909,902,1075,903,872,852,934,790,972,809,868,854,880,892,925,925,926,937,874,1026,891,1049,956,808,1042,882,870,929,872,1041,1218,1156,1145,1174,1184,1176,1152,1173,1160,1194,1146,1134,1151,1127,1143,1181,1150,1164,1153,1232,1165,1172,1187,1144,1144,1152,1166,1137,1161,1194,1153,1129,1122,1104,1141,1136,1120,1122,1114,1193,1167,1105,1092,1146,1119,1117,1143,1156,1098,1073,1179,1126,1112,1128,1167,1105,1124,1090,1140,1125,1092,1101,1085,1051,1074,1049,1093,1011,1068,1097,1072,1054,1038,1045,1010,1028,1044,1122,1070,1059,1070,1024,1023,1101,1060,1063,1065,1083,1036,1094,1066,1094,1033,909,905,942,932,935,943,962,934,907,886,983,887,923,949,892,946,908,963,936,925,948,915,951,940,901,921,914,927,889,884,917,1007,981,975,961,997,965,955,884,956,892,911,999,929,960,1038,980,921,1019,1006,895,996,904,965,975,992,998,976,960,899,908,845,1067,1049,1024,1084,1063,1087,1012,1055,1040,1038,1075,1092,1084,1040,1057,1046,1066,1048,1009,1004,1012,1011,1046,1013,981,1073,1037,1038,1058,1089,1076,1022,982,984,997,967,981,1041,1021,959,998,972,990,1011,1002,1007,994,998,934,1022,980,991,988,938,1018,1025,1026,1024,991,1019,1019,989,964,956,968,956,940,989,976,982,960,967,970,962,985,948,973,954,975,969,967,944,982,953,951,984,990,904,977,1030,944,967,947,913,841,941,954,839,915,902,946,1040,908,971,917,903,906,918,941,962,929,895,961,863,898,879,975,867,909,941,886,950,950,890,1043,1068,1066,1110,1024,1056,999,1055,1050,1060,1115,1097,1104,1049,1052,1084,1080,1010,1137,1050,1065,1094,1102,1072,1067,1068,1094,1086,1099,1104,1076,1001,1032,1021,1038,1052,1017,1060,1018,989,1051,1035,989,994,1018,1036,1085,1056,1095,1025,1012,1065,1048,994,1050,1006,1060,1036,1052,1028,1046,1014,1005,1020,980,1007,955,992,973,999,983,980,1017,1028,967,987,1008,1011,976,968,1007,988,989,1028,978,998,983,973,1058,1018,980,1013,1010,1058,1006,1039,1012,1054,1037,1101,1066,1024,1017,1065,1079,1056,1013,943,977,986,984,980,1010,1066,1047,984,1071,998,1124,999,979,990,1019,1054,834,784,842,845,810,767,784,787,794,808,822,747,808,812,796,796,847,799,844,805,774,810,849,813,790,866,788,853,829,834,859,751,825,773,748,819,734,668,706,769,681,762,711,787,674,687,768,787,839,675,773,779,722,756,792,824,726,787,779,682,712,849,1150,1091,1139,1141,1074,1118,1123,1113,1085,1093,1099,1090,1069,1133,1166,1105,1148,1149,1131,1085,1048,1129,1154,1087,1119,1149,1081,1121,1105,1121,1169,1056,1069,1091,1096,1024,1114,1100,1102,1062,1141,1049,1148,1143,1124,1105,1065,1105,1107,1040,1132,1074,1043,1098,1072,1083,1054,1118,1110,1085,1045,1106,1052,1051,1013,1117,1081,1053,1016,1030,990,1041,1070,1038,988,1065,1048,1064,1044,1030,1046,1155,1038,1040,1081,1065,999,1088,1002,1114,1097,1054,981,1040,1084,1020,1058,1077,1004,1042,1057,1035,1061,1047,1065,1009,1090,1048,1023,1061,1043,1094,1095,1029,1055,1041,1035,1067,1023,1078,1066,1050,1091,1030,996,985,983,973,996,973,966,982,982,991,953,980,1005,957,978,1014,992,958,989,968,923,1023,991,968,1030,966,1002,982,1006,994,994,909,953,916,937,943,911,914,968,924,967,934,966,940,914,961,904,902,904,937,914,889,935,931,978,918,957,916,913,929,960,881,791,832,773,821,835,808,810,822,836,808,811,826,793,795,824,803,817,818,814,821,806,845,795,821,822,862,861,800,842,801,849,725,760,797,762,787,766,768,776,781,723,771,776,760,754,770,733,769,738,749,753,760,789,795,782,777,750,769,777,774,708,811,888,825,768,951,830,838,715,825,858,828,799,807,776,796,773,715,772,799,748,880,820,856,736,822,802,793,843,783,735,761,770,1107,1096,1115,1088,1097,1091,1101,1087,1062,1129,1126,1123,1078,1075,1107,1092,1074,1130,1119,1093,1093,1072,1087,1136,1078,1163,1147,1107,1122,1085,1111,1086,1073,1066,1097,1117,1054,1163,1057,1076,1099,1038,1081,1088,1125,1032,1146,1060,1117,1111,1089,1086,1056,1093,1059,1116,1105,1079,1081,1108,1120,1023,1158,1154,1108,1129,1100,1122,1133,1149,1079,1097,1134,1115,1122,1137,1124,1088,1192,1172,1125,1183,1106,1111,1150,1135,1115,1098,1066,1079,1188,1186,1144,1102,1126,1110,1089,1077,1052,1069,1108,1076,1073,1112,1066,1087,1107,1080,1101,1114,1109,1051,1103,1058,1120,1148,1106,1065,1079,1052,1114,1110,1108,1108,1019,1069,1078,1110,1080,1005,1066,1025,1098,995,1174,1097,1036,1105,1078,1097,1029,984,1101,1034,1056,1068,1099,1054,1082,1078,1051,1073,1019,1089,1119,1085,1082,1088,1092,1072,1051,1102,1038,1056,1067,1079,1005,1082,1091,1024,1085,1061,1050,1069,1063,1092,1081,1053,1083,1077,1007,1131,1075,1099,1089,1129,961,871,916,815,939,915,968,939,908,826,937,947,855,949,831,919,922,937,873,867,967,939,932,934,955,957,910,911,885,874,1032,842,827,835,856,846,794,844,879,823,801,803,838,858,868,864,840,838,811,809,891,817,851,841,846,867,786,828,831,868,812,906,877,984,924,950,928,949,966,964,984,987,950,945,914,963,964,957,889,897,913,934,919,966,899,940,954,947,950,925,892,934,927,974,1005,983,965,960,929,996,918,957,976,962,941,983,952,973,952,955,950,1007,942,951,921,936,975,930,978,967,991,988,990,974,985,965,966,1009,1035,974,973,1031,1034,1058,983,1007,981,1032,1047,992,1022,1000,1016,1018,996,1028,968,1009,970,1013,987,986,1034,1015,1070,832,834,829,833,860,835,851,859,839,830,834,841,824,848,833,837,834,865,844,884,823,819,833,849,869,816,811,853,831,820,844,779,783,810,815,832,828,821,796,823,834,787,791,802,818,844,791,801,767,828,780,789,819,822,779,801,808,830,809,801,815,804,888,909,851,833,886,868,850,866,860,868,868,848,867,827,852,861,849,887,875,851,881,894,874,852,852,834,875,833,881,873,897,814,809,779,814,819,781,803,798,807,816,792,766,805,796,801,810,804,807,760,801,810,777,813,822,818,808,798,813,788,821,836,764,773,807,833,797,809,803,791,803,829,817,841,809,794,819,827,820,837,805,806,837,781,815,814,776,785,789,814,793,799,782,728,743,789,758,781,788,736,789,772,679,753,793,778,787,778,789,740,785,763,705,797,802,830,772,720,756,779,755,788,758,738,1023,1056,1017,1033,1006,1007,1031,1016,1049,1015,1048,1030,1041,1040,1002,1020,1072,1043,1041,1037,1010,1054,1000,1015,1010,1046,1013,1036,1027,1038,1048,1000,1025,1009,976,973,950,994,974,955,995,989,1035,1004,950,978,1010,942,999,1029,994,1004,968,971,987,984,1007,981,1008,983,1003,983,951,973,873,807,856,809,888,873,815,935,879,861,818,891,896,915,895,846,921,851,838,857,918,910,885,857,892,840,880,939,921,753,729,795,705,750,766,740,733,743,744,754,773,790,762,770,715,730,760,746,769,736,726,799,763,760,794,670,778,773,774,763,739,682,739,690,670,685,632,715,720,706,812,685,789,723,726,658,791,735,753,689,732,695,727,734,652,672,793,753,690,711,671,1107,1156,1087,1128,1082,1086,1097,1121,1129,1127,1121,1080,1114,1067,1187,1117,1085,1092,1017,1077,1074,1080,1143,1070,1071,1055,1081,1056,1109,1092,1115,1046,1001,1002,1049,1084,1004,1002,998,999,1048,1065,1014,1096,989,1045,1046,1068,1075,1063,1078,1028,993,1043,1049,1028,1065,1052,1020,979,1083,1074,910,872,890,935,865,886,916,900,913,884,877,866,853,907,918,895,854,863,900,876,861,874,912,866,895,891,887,882,892,891,855,726,723,720,798,754,729,739,756,695,721,720,780,692,742,693,804,770,751,790,826,750,749,754,774,754,738,732,729,750,687,714,999,964,944,972,979,1007,1013,991,1028,993,966,996,989,1006,978,1020,1002,1007,985,986,977,997,965,980,983,964,962,996,980,1025,1013,998,955,949,937,992,942,973,947,906,993,938,937,917,969,944,998,918,959,941,961,974,993,942,954,993,1001,951,943,970,946,926,841,842,900,828,874,875,852,889,848,799,899,891,844,897,934,840,880,877,880,858,904,891,849,828,846,881,840,903,899,835,872,827,800,802,824,815,762,828,812,814,799,791,781,781,792,831,850,789,769,765,816,806,753,817,815,802,788,788,791,785,801,758,748,808,768,722,749,755,740,730,758,742,744,776,759,743,729,767,737,759,742,766,768,789,718,732,745,747,772,748,730,731,731,750,735,741,730,754,777,740,745,767,750,741,753,742,755,723,746,758,765,760,736,744,755,732,782,771,792,767,738,752,729,761,800,801,796,763,782,785,827,803,776,819,781,797,779,805,778,802,782,790,824,783,755,775,773,782,792,805,775,768,757,798,769,774,765,771,733,747,757,768,755,757,789,750,780,798,778,777,771,783,758,782,789,735,754,794,762,778,792,792,767,768,778,753,879,846,902,849,830,821,840,917,786,879,842,869,862,830,876,820,860,775,880,795,845,852,853,835,859,862,891,864,850,880,866,843,818,863,817,877,831,868,849,798,812,819,808,814,817,849,836,838,825,810,830,813,824,868,794,828,821,819,832,863,800,803,756,759,793,764,731,811,769,768,762,748,723,769,738,732,729,766,722,786,730,763,727,752,752,710,751,756,753,753,766,757,769,720,714,704,701,737,728,724,729,698,739,697,698,723,738,704,716,734,715,718,714,734,718,720,698,703,729,688,743,731,730,720,809,765,775,794,786,778,774,753,783,798,776,761,789,794,813,763,781,790,817,785,780,765,757,813,799,779,749,798,780,828,796,792,790,782,767,773,793,792,744,725,768,774,738,695,752,790,783,731,813,710,773,724,805,707,766,764,766,780,718,790,749,804,1049,1052,1073,1123,1092,1045,1099,1051,1096,1045,1054,1044,1018,1069,1093,1099,1031,1086,1004,1089,1076,1016,1097,971,1073,1105,1065,1134,1022,1140,1085,963,1047,1005,1008,1027,1026,1004,941,994,986,1054,999,959,1017,944,991,1033,956,1001,1035,1051,1016,944,1037,969,1002,1046,971,1010,1021,1049,969,943,951,1041,1029,943,934,1026,968,985,1002,968,935,1012,1047,968,942,979,969,980,1041,1051,950,1022,1017,981,1020,977,971,990,932,1099,1078,1093,1083,1084,1067,1134,1013,1022,1037,1057,1100,1034,1089,1118,1070,1063,1041,1060,1058,1059,1009,1039,1079,1066,1083,1080,1070,1060,1100,1081,1033,1045,996,1057,1040,1052,1039,1082,1034,1002,1057,1065,1067,1021,1060,1045,1026,1065,1064,1042,1041,1039,1015,1022,1052,1072,1053,1010,1026,1056,1058,987,1028,1014,1012,1035,1022,1017,1011,890,1060,1009,966,1085,987,1053,1013,953,981,1049,984,1012,1031,1027,985,997,1026,1056,988,1073,1038,1035,914,891,878,879,854,907,906,843,876,885,853,890,846,949,886,856,922,904,903,846,876,887,840,817,979,916,921,897,913,933,884,734,749,748,745,734,742,723,779,741,732,752,760,782,727,749,732,720,729,712,748,728,756,775,709,745,742,736,741,789,727,717,727,729,686,720,694,781,714,701,741,710,684,767,739,738,716,759,765,699,699,726,736,713,716,735,695,686,724,721,732,766,718,795,737,810,766,801,781,791,794,759,773,776,783,771,791,786,829,823,837,761,829,789,785,797,774,765,755,820,812,835,827,784,959,910,943,848,909,889,880,865,914,900,922,886,930,881,905,905,864,938,893,859,901,879,898,878,899,876,853,830,855,844,904,860,834,892,919,906,857,909,849,898,890,874,891,878,822,910,857,871,860,870,879,822,900,886,871,894,890,902,887,890,899,882,851,813,820,807,795,840,802,781,794,803,812,827,823,829,817,788,820,820,810,819,812,831,829,817,827,805,794,794,826,817,817,757,768,724,788,732,733,731,760,710,694,716,758,771,774,735,740,761,706,793,738,759,707,732,719,710,736,743,720,720,732,682,1020,965,982,1001,957,949,973,961,966,962,984,985,999,979,955,936,998,965,976,984,1008,964,957,989,1005,992,994,1005,955,983,1014,943,1008,1013,1042,1033,1003,1060,1068,1071,1004,1030,1048,1048,1054,1102,1115,1043,1049,1064,1003,1087,1009,1006,1038,1037,1098,1040,1071,1088,1057,1157,916,970,1017,1001,1008,998,950,947,1006,1032,996,966,971,1019,1020,935,1020,921,970,1038,971,1061,938,1030,986,979,971,1020,1044,942,1005,963,926,988,1008,968,968,980,982,1017,1005,1023,990,999,961,983,991,993,1015,972,988,981,949,936,917,956,965,983,961,999,981,1022,944,902,905,918,894,959,929,884,926,943,916,895,908,907,890,937,926,922,916,957,932,906,902,854,979,975,950,890,943,921,930,800,830,785,802,779,759,799,807,815,876,775,777,811,756,825,792,761,804,825,806,821,866,832,758,761,737,777,788,796,809,794,970,1027,949,945,976,942,941,936,1017,987,977,1012,1010,978,946,964,996,931,967,941,984,898,966,968,938,949,999,924,956,957,879,909,922,875,863,897,876,887,900,902,890,881,854,873,869,927,883,902,909,874,892,889,886,870,881,836,866,874,886,890,880,887,786,817,870,803,819,836,829,837,803,816,806,832,844,820,798,836,839,803,833,848,866,819,849,815,843,835,803,821,840,830,824,774,780,782,786,775,760,740,778,784,751,745,757,795,752,767,767,775,795,808,757,794,782,763,805,747,770,763,766,783,746,758,755,758,766,806,796,770,811,799,771,753,785,778,758,755,817,801,800,801,771,807,798,765,818,794,809,785,809,830,731,805,777,819,822,754,824,831,740,829,785,814,854,774,798,754,818,768,833,797,811,831,764,823,767,809,790,766,819,834,814,757,788,824,908,983,922,974,929,941,892,949,947,931,963,927,962,886,930,980,910,988,950,971,971,956,917,958,930,964,987,948,940,934,950,864,826,863,876,839,846,845,853,841,828,869,867,883,870,876,820,824,883,843,901,823,865,883,861,853,881,886,829,875,855,861,834,790,766,805,773,785,782,794,790,777,766,785,797,779,752,777,807,785,801,799,796,762,797,794,766,819,781,772,777,793,722,758,773,757,740,748,758,745,766,762,737,738,729,769,739,715,738,771,776,746,739,730,726,753,717,727,727,776,755,724,740,770,757,773,751,759,757,764,782,768,738,763,800,779,763,768,742,714,762,761,779,759,761,770,796,735,775,775,769,777,776,756,778,780,764,756,738,789,777,795,746,764,767,759,762,798,730,789,784,769,797,763,793,807,761,776,800,801,785,804,801,777,811,780,954,998,941,1064,985,994,952,1021,993,968,932,1021,958,1014,999,995,1031,981,1002,996,1021,983,1008,964,996,964,957,1027,1009,951,1034,973,909,1029,962,998,998,984,980,980,1005,976,1042,1006,990,1022,980,974,977,1009,1016,988,996,1024,1047,1002,964,1006,995,943,975,988,888,880,928,875,871,858,892,903,900,949,931,931,849,845,859,899,931,935,884,869,889,873,886,877,924,863,883,899,896,886,889,912,956,935,892,878,927,847,915,894,937,819,899,932,877,884,928,887,900,950,859,923,932,880,867,852,862,951,893,832,928,956,835,837,813,864,840,788,804,833,852,799,822,845,796,826,801,830,840,821,865,842,805,812,834,821,843,825,818,789,835,859,810,759,769,776,782,804,761,784,789,775,804,764,745,774,784,793,797,806,786,777,785,799,786,787,786,789,815,771,776,785,774,772,845,793,781,805,784,780,811,775,776,821,805,794,777,814,817,813,798,854,802,784,796,827,899,841,774,741,807,784,826,794,826,957,1008,950,1061,1025,980,1049,946,1030,956,911,1039,938,1008,1015,1001,1011,1013,990,1040,977,1007,1002,954,963,992,1011,1017,1003,990,1004,888,859,882,867,894,915,886,876,862,872,864,865,885,869,831,838,833,851,890,870,900,841,853,859,871,859,872,860,871,836,885,911,925,998,917,965,951,966,851,943,917,967,1020,884,859,937,924,916,951,947,1020,810,984,919,922,967,968,972,964,871,1058,966,1041,985,989,1048,983,975,990,974,979,1004,974,981,1017,988,1028,993,999,1055,1015,932,936,948,1021,983,966,987,979,968,934,1002,986,921,904,918,883,940,841,915,897,922,894,875,915,899,857,845,889,938,942,909,879,894,889,883,860,877,855,881,855,816,872,888,804,788,808,834,804,819,803,806,815,808,789,811,805,767,789,766,768,805,794,808,815,790,827,810,823,824,789,805,806,769,803,734,691,775,761,720,801,743,769,756,741,716,741,769,777,751,738,765,738,740,731,778,757,745,779,751,747,749,784,733,793,759,720,738,729,695,724,736,768,744,703,733,741,720,731,732,704,713,733,707,744,720,720,734,708,697,716,692,740,713,716,735,710,711,710,700,714,682,713,719,727,687,703,687,687,705,728,708,706,703,704,695,698,706,711,724,686,727,696,688,677,706,710,708,688,686,693,717,715,692,722,672,717,691,700,700,682,666,699,683,717,699,682,697,720,681,688,640,687,696,693,716,699,667,700,695,696,710,706,695,672,686,695,710,686,693,714,698,691,724,679,683,702,673,693,673,686,700,720,689,694,702,696,694,677,705,699,690,689,668,696,703,680,674,665,686,708,679,657,711,698,680,710,710,712,708,669,678,657,676,676,676,678,725,673,686,702,711,743,699,708,694,713,708,691,728,750,714,716,708,730,691,755,717,744,742,715,722,695,709,718,703,688,723,747,694,717,727,763,770,773,756,782,780,769,774,775,767,777,794,759,778,731,783,713,775,786,742,773,744,763,790,740,749,765,801,776,770,778,743,765,776,775,717,751,755,768,741,762,765,739,746,749,738,734,751,746,706,722,736,729,774,760,748,766,739,766,748,736,736,823,824,823,794,826,828,794,817,831,794,844,793,837,823,861,827,802,809,834,854,812,800,824,808,851,792,803,811,844,791,810,778,773,747,769,794,789,811,818,789,787,774,764,786,780,769,794,774,772,768,786,778,777,793,768,783,762,797,768,805,771,792,821,883,824,844,800,875,825,811,829,848,824,886,875,812,870,830,838,819,833,838,839,879,849,864,867,825,848,849,873,838,838,827,827,843,813,834,833,787,880,820,809,832,839,840,852,859,822,812,828,848,808,827,808,854,875,833,852,837,842,818,849,792,738,736,753,728,732,799,777,726,724,748,747,744,755,763,709,747,738,800,785,744,726,747,761,788,747,752,751,722,772,753,750,736,721,748,746,716,765,749,729,754,731,727,710,690,716,762,720,729,720,741,720,728,728,766,734,720,722,698,729,745,714,753,839,850,827,854,840,827,837,857,830,872,802,826,819,783,799,823,864,788,834,815,849,811,824,835,854,828,829,816,802,784,819,879,850,875,818,860,862,840,873,847,855,831,889,856,852,858,882,861,888,870,836,862,869,868,851,857,859,902,878,849,862,842,808,818,840,827,803,810,836,831,809,824,812,814,781,815,820,846,832,823,813,793,809,842,814,817,835,861,832,825,811,861,781,755,785,767,734,769,761,706,735,752,733,728,780,774,748,772,713,767,750,752,736,720,733,776,749,761,793,724,750,763,695,735,704,748,712,697,696,714,715,728,710,754,719,708,707,712,723,718,703,716,712,710,723,703,720,733,697,710,731,693,728,743,700,788,776,753,750,789,729,739,783,753,757,778,808,753,777,760,773,778,783,803,776,795,810,767,773,742,778,735,792,776,772,759,742,743,746,753,747,743,744,772,750,757,740,770,748,723,734,736,750,742,737,746,766,726,747,755,756,758,759,759,759,774,751,722,685,704,717,718,732,730,738,712,707,728,676,709,769,730,765,737,753,730,752,754,744,725,732,701,737,693,731,733,697,760,688,657,710,701,647,682,680,657,717,657,659,723,657,680,663,703,680,715,697,696,668,711,682,672,701,657,628,691,711,740,702,726,713,769,692,712,685,757,712,698,697,712,716,737,754,689,699,770,722,729,732,721,758,688,719,714,683,736,674,711,691,706,947,882,869,884,883,866,901,892,897,863,905,880,850,833,857,863,878,894,922,862,849,936,907,902,836,891,840,884,900,861,916,807,784,782,707,755,760,782,775,763,759,746,768,750,789,771,744,740,723,758,774,752,797,756,801,794,768,801,737,753,757,759,907,881,967,899,890,1001,969,971,905,1005,873,902,1023,922,975,872,985,955,905,984,900,868,895,1030,898,940,969,948,935,849,957,965,966,976,942,962,955,944,995,936,1023,978,1003,1012,968,962,989,983,985,949,977,1006,965,1008,998,949,993,969,939,966,981,973,890,929,841,888,940,859,924,876,863,884,873,893,892,908,892,891,896,856,877,911,927,907,893,897,885,941,910,895,892,854,896,824,821,867,817,785,835,821,842,811,793,802,807,831,819,826,798,795,828,820,784,829,812,807,778,817,835,817,863,829,808,786,712,788,737,765,755,750,762,739,760,736,769,754,728,728,748,713,754,766,757,768,745,738,779,714,755,764,751,743,725,737,765,750,741,742,709,734,743,723,723,708,695,697,750,749,732,738,731,747,730,687,750,738,740,714,717,722,728,732,719,726,700,730,935,944,926,930,943,942,886,920,926,915,962,963,1035,940,966,902,951,982,940,939,942,924,949,905,976,980,892,929,914,979,955,851,847,881,849,847,857,856,869,855,869,871,827,848,836,845,867,853,833,858,829,848,842,862,838,821,852,829,837,830,838,879,800,845,811,835,822,785,837,808,771,786,791,796,789,825,808,803,793,789,815,778,811,822,819,813,816,830,836,786,797,774,814,767,805,788,794,785,769,772,786,781,780,802,786,766,790,781,780,773,804,769,767,777,802,760,809,779,788,785,766,802,790,784,772,777,787,783,776,785,771,785,771,784,771,794,778,795,791,781,790,772,800,795,796,813,777,800,766,762,767,806,803,776,784,778,758,761,769,796,796,761,762,778,752,766,795,789,784,759,791,793,790,776,773,776,774,779,803,779,748,783,787,758,757,773,754,755,735,758,758,753,768,739,759,752,734,731,760,776,755,728,748,739,746,753,749,772,749,763,794,755,754,753,756,776,774,755,766,754,761,715,761,758,763,761,760,762,749,794,754,740,755,782,753,792,765,778,765,773,747,743,756,765,751,738,747,750,749,771,732,789,775,771,752,748,756,763,772,740,782,760,772,777,775,771,788,768,766,764,738,746,764,740,758,765,769,764,778,755,756,737,749,752,729,742,771,778,752,771,738,739,733,731,746,734,737,743,704,740,754,762,717,722,741,723,738,752,736,743,749,739,732,738,713,729,748,735,714,723,722,715,713,741,727,734,738,722,736,759,721,718,730,710,731,758,743,719,743,720,740,735,749,714,739,762,757,725,761,762,748,735,746,732,729,759,771,759,748,721,750,731,740,736,736,737,754,776,752,765,735,770,782,776,766,764,761,767,788,765,786,768,774,800,790,742,767,773,758,743,771,764,762,814,752,766,767,745,751,799,808,779,762,763,768,759,788,797,771,782,811,771,775,752,791,771,744,783,752,786,780,781,754,763,793,788,767,784,771,777,777,753,790,790,836,792,813,830,823,816,836,839,810,790,810,844,813,840,843,832,826,841,872,791,829,799,830,847,823,840,808,817,844,778,833,833,864,755,835,863,834,876,823,869,886,856,832,847,890,863,834,910,826,877,848,809,891,832,822,868,800,871,881,851,855,798,753,802,812,821,819,819,812,809,779,818,816,811,820,781,783,783,784,770,811,796,817,779,772,813,778,822,841,794,817,800,793,778,806,806,803,799,831,805,798,779,801,784,795,750,806,785,773,824,818,806,813,802,812,784,795,783,790,803,776,819,777,830,904,907,930,861,907,971,922,913,900,928,870,909,876,892,932,884,905,935,897,915,870,947,936,911,935,884,908,925,923,914,874,728,780,751,780,751,779,760,769,747,783,735,774,763,742,750,775,758,763,781,769,741,726,758,789,784,764,780,748,776,749,774,765,711,781,781,825,752,797,698,826,862,697,765,815,693,689,769,914,775,789,722,697,752,813,767,872,796,799,833,780,877,775,1045,1029,1064,1023,1084,1071,1054,1059,1064,1031,1050,1011,1050,1073,1054,1043,1099,1110,1028,1041,1062,1026,1041,1054,1041,1058,1080,1045,1083,1027,1062,942,993,952,932,957,938,953,958,973,967,998,1014,910,898,960,991,957,961,975,968,937,964,988,932,946,991,959,918,949,954,939,917,890,888,910,892,883,851,907,853,868,893,881,895,870,905,944,880,855,853,900,874,855,880,838,863,876,839,886,823,877,859,890,884,880,883,878,872,863,830,877,852,868,870,839,869,820,857,879,856,877,824,846,836,840,841,871,870,854,877,845,859,825,842,866,793,822,827,820,832,807,842,817,812,812,795,839,810,835,833,862,871,837,851,823,815,866,842,890,790,859,870,828,812,778,802,724,766,748,706,737,771,785,770,778,777,742,758,784,763,705,762,751,765,756,751,754,785,732,790,752,810,751,760,734,936,973,969,915,1004,959,965,978,975,938,953,925,964,954,959,986,961,949,946,921,1027,1020,953,981,986,949,955,969,985,963,1014,996,1034,1002,918,1006,1102,1047,947,958,1022,909,1034,1047,1009,919,940,1030,1029,991,974,981,914,1077,1025,1086,1046,980,1121,981,1024,981,934,919,1000,976,973,838,943,927,912,927,919,984,936,925,989,929,1001,974,986,822,1041,1015,951,1032,854,899,990,884,996,1032,897,881,939,991,1026,973,971,1039,1022,970,910,965,1020,1017,897,984,960,1008,944,852,979,1008,1040,945,966,930,885,1095,1006,1025,964,1089,772,765,761,820,772,794,761,768,777,764,788,772,783,758,794,786,765,769,767,802,776,751,788,757,792,767,802,764,784,799,770,752,720,805,748,724,723,815,696,771,848,793,692,725,717,739,709,782,693,690,792,790,749,757,835,749,747,742,764,806,769,670,1010,1022,1048,1020,1050,1028,1030,969,962,1060,1061,1030,927,1096,1022,1070,964,970,977,989,965,996,966,1017,1057,1053,984,978,1005,973,974,863,823,881,850,819,852,840,865,866,835,818,832,789,874,865,871,833,823,832,885,822,859,876,861,858,804,872,883,897,835,843,900,915,950,853,961,934,944,896,907,930,882,896,914,914,860,904,1000,974,916,968,976,1020,929,912,898,963,928,886,883,876,854,930,994,965,988,951,981,976,955,972,995,980,900,998,977,970,925,966,949,966,974,954,992,958,942,970,941,977,964,973,985,925,856,841,848,853,876,889,863,860,877,844,838,928,830,854,827,854,834,809,843,834,879,878,839,880,889,815,862,871,854,864,874,971,952,965,987,1006,951,988,1021,977,992,1043,969,1003,990,964,982,1005,993,955,1018,994,994,951,962,978,960,959,1002,1002,986,967,1009,1009,1076,1008,1003,1057,974,978,930,1056,1047,1042,997,993,1005,1056,975,1081,964,1006,976,980,946,1018,1034,992,1063,1018,1026,1038,1031,910,1053,951,918,955,904,954,944,963,956,959,921,946,1020,986,894,943,938,969,941,962,958,928,915,970,992,943,1079,916,985,950,972,1018,1049,1049,1029,1007,1029,984,1032,1038,1104,931,1052,996,997,1012,953,966,1019,993,1052,1025,995,1023,999,1032,986,1002,1013,1060,973,888,851,892,916,914,901,926,905,878,900,888,886,877,870,872,883,878,913,889,852,863,898,846,866,850,853,922,888,843,948,914,795,802,773,756,823,792,781,774,754,794,770,781,775,775,788,789,763,792,768,797,766,807,785,764,787,769,781,809,768,754,815,824,846,802,819,879,874,869,821,865,823,858,811,828,822,859,871,840,817,860,842,834,849,824,828,838,868,837,801,845,822,846,941,942,874,907,926,1010,944,947,905,897,921,909,942,959,933,996,896,944,935,950,931,918,971,901,972,916,973,885,939,885,992,956,931,936,928,976,928,952,920,942,974,961,964,980,964,975,970,939,905,905,946,925,944,970,975,923,927,950,915,975,922,982,810,819,791,836,812,780,792,858,790,810,804,790,830,816,806,849,820,812,810,842,836,810,820,794,794,820,831,799,828,832,816,977,959,971,965,978,991,1016,1034,1003,954,996,987,1011,1039,1003,999,1007,1025,969,1016,974,1054,1014,994,1008,1012,974,988,979,989,1030,913,967,944,948,1003,974,995,940,975,976,938,956,979,964,1019,985,924,979,955,1002,952,1002,929,965,1016,952,1007,965,969,959,965,898,845,836,847,866,872,881,885,846,855,842,854,849,865,833,868,847,845,871,830,858,866,883,876,863,860,841,882,848,882,850,917,884,882,874,907,893,910,886,835,882,913,876,944,851,847,926,913,914,869,928,913,878,887,916,863,878,874,913,913,905,895,787,810,777,807,813,791,808,785,798,778,788,818,801,824,784,814,793,827,782,772,768,777,820,792,808,844,808,783,800,828,766,911,915,933,901,891,904,872,870,876,915,857,907,852,862,885,884,851,844,923,887,866,831,887,888,933,910,918,927,875,873,855,767,785,777,785,772,793,770,808,805,818,813,750,783,798,803,825,790,810,840,818,803,803,772,819,804,819,814,801,774,772,792,985,1003,868,926,933,959,959,923,911,963,987,960,980,963,990,925,965,971,951,1016,940,974,976,918,958,902,909,898,951,921,941,990,998,1056,952,990,973,1021,969,950,957,984,1025,999,994,980,970,997,961,972,987,994,940,989,1010,964,1045,965,991,1023,987,979,949,950,983,994,963,959,990,962,931,940,990,942,998,934,989,1013,932,946,924,960,979,956,938,889,939,973,906,934,949,948,897,822,825,791,838,837,790,789,812,841,820,850,856,851,858,814,823,829,856,838,824,843,834,834,841,880,832,853,846,849,838,858,833,821,834,903,779,854,796,827,912,820,806,883,746,799,839,908,888,838,870,854,805,850,944,915,819,849,890,914,831,852,884,1063,1079,1081,1159,1038,1089,1102,1081,1122,1111,1100,1115,1125,1079,1043,1107,1059,1080,1082,1111,1123,1133,1138,1066,1075,1132,1086,1092,1083,1099,1090,1037,1068,1006,1058,1060,1071,1020,1051,1017,1048,1064,1040,1030,1050,1022,1047,1105,1039,1080,1040,1041,1064,1040,1061,1067,1084,1061,1008,1038,1084,1017,979,1036,1031,1056,985,1036,1034,1007,1013,974,1008,1007,1022,978,1021,998,1009,989,973,1026,1004,1033,1022,996,999,976,1036,987,1025,1013,974,997,1079,1037,1017,991,1051,1060,1013,1015,1061,975,1004,996,1006,1057,990,1034,1037,1072,1034,990,994,1032,1041,999,1047,1023,1045,1017,1015,974,1008,1017,1013,1069,1040,1048,1023,1012,1009,1028,1044,1017,999,1059,1037,1037,1088,1029,1020,1012,1081,987,1064,980,1027,1018,1045,1031,1046,1039,1083,968,1008,1039,1000,962,1057,988,986,984,972,1026,976,1030,1038,1035,1022,1040,993,1014,1019,1064,1025,970,1021,1014,1015,989,1011,1019,967,1050,938,914,961,978,950,957,919,950,936,975,957,915,971,974,886,944,975,953,934,976,922,899,935,993,920,995,956,889,883,976,956,1073,1010,1047,1055,1058,1098,1054,1101,1051,1041,1011,1089,1048,1075,1025,1066,996,1032,1002,1025,1072,1065,1028,1075,1078,1042,997,1094,1101,1010,1061,1037,1016,987,1012,973,989,1024,983,1051,1033,1027,1032,997,1000,966,1043,1045,1033,999,1084,987,1043,1040,1025,970,1009,1044,1046,1042,1021,1054,1070,989,989,1007,1054,949,1013,974,1008,993,983,978,1033,995,1024,984,985,1003,1067,957,984,990,1035,1019,1021,1040,993,1016,998,984,996,1041,1065,1047,1040,1035,1002,967,1046,1034,996,1012,1065,1020,1035,1071,1047,1035,1026,989,1039,1021,978,1064,996,1012,982,1005,987,964,1021,964 0 214.788696 0 0 0 From 851011d01a25354ee79e3165956aa6ee9a31365d Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Wed, 25 Feb 2026 22:49:56 +1100 Subject: [PATCH 7/7] chmod --- test/bps.exp | 0 test/cdna.exp | 0 test/dev.exp | 0 test/dna_full_contig.exp | 0 test/dna_ideal_amp_slow5.exp | 0 test/dna_ideal_slow5.exp | 0 test/dna_ideal_time_slow5.exp | 0 test/dna_prefix_slow5.exp | 0 test/dna_r10_amp_noise.exp | 0 test/dna_r10_paf-ref.exp | 0 test/dna_r10_paf.exp | 0 test/ont_friendly.exp | 0 test/r9_mfreq.exp | 0 test/rna004.slow5.exp | 0 test/rna004_dwell.exp | 0 test/rna_paf.exp | 0 test/rna_prefixno_slow5.exp | 0 test/rna_prefixyes_slow5.exp | 0 test/rna_slow5.exp | 0 test/slow5.exp | 0 test/trans_count.exp | 0 test/trans_count_cdna.exp | 0 test/trans_trunc.exp | 0 23 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 test/bps.exp mode change 100755 => 100644 test/cdna.exp mode change 100755 => 100644 test/dev.exp mode change 100755 => 100644 test/dna_full_contig.exp mode change 100755 => 100644 test/dna_ideal_amp_slow5.exp mode change 100755 => 100644 test/dna_ideal_slow5.exp mode change 100755 => 100644 test/dna_ideal_time_slow5.exp mode change 100755 => 100644 test/dna_prefix_slow5.exp mode change 100755 => 100644 test/dna_r10_amp_noise.exp mode change 100755 => 100644 test/dna_r10_paf-ref.exp mode change 100755 => 100644 test/dna_r10_paf.exp mode change 100755 => 100644 test/ont_friendly.exp mode change 100755 => 100644 test/r9_mfreq.exp mode change 100755 => 100644 test/rna004.slow5.exp mode change 100755 => 100644 test/rna004_dwell.exp mode change 100755 => 100644 test/rna_paf.exp mode change 100755 => 100644 test/rna_prefixno_slow5.exp mode change 100755 => 100644 test/rna_prefixyes_slow5.exp mode change 100755 => 100644 test/rna_slow5.exp mode change 100755 => 100644 test/slow5.exp mode change 100755 => 100644 test/trans_count.exp mode change 100755 => 100644 test/trans_count_cdna.exp mode change 100755 => 100644 test/trans_trunc.exp diff --git a/test/bps.exp b/test/bps.exp old mode 100755 new mode 100644 diff --git a/test/cdna.exp b/test/cdna.exp old mode 100755 new mode 100644 diff --git a/test/dev.exp b/test/dev.exp old mode 100755 new mode 100644 diff --git a/test/dna_full_contig.exp b/test/dna_full_contig.exp old mode 100755 new mode 100644 diff --git a/test/dna_ideal_amp_slow5.exp b/test/dna_ideal_amp_slow5.exp old mode 100755 new mode 100644 diff --git a/test/dna_ideal_slow5.exp b/test/dna_ideal_slow5.exp old mode 100755 new mode 100644 diff --git a/test/dna_ideal_time_slow5.exp b/test/dna_ideal_time_slow5.exp old mode 100755 new mode 100644 diff --git a/test/dna_prefix_slow5.exp b/test/dna_prefix_slow5.exp old mode 100755 new mode 100644 diff --git a/test/dna_r10_amp_noise.exp b/test/dna_r10_amp_noise.exp old mode 100755 new mode 100644 diff --git a/test/dna_r10_paf-ref.exp b/test/dna_r10_paf-ref.exp old mode 100755 new mode 100644 diff --git a/test/dna_r10_paf.exp b/test/dna_r10_paf.exp old mode 100755 new mode 100644 diff --git a/test/ont_friendly.exp b/test/ont_friendly.exp old mode 100755 new mode 100644 diff --git a/test/r9_mfreq.exp b/test/r9_mfreq.exp old mode 100755 new mode 100644 diff --git a/test/rna004.slow5.exp b/test/rna004.slow5.exp old mode 100755 new mode 100644 diff --git a/test/rna004_dwell.exp b/test/rna004_dwell.exp old mode 100755 new mode 100644 diff --git a/test/rna_paf.exp b/test/rna_paf.exp old mode 100755 new mode 100644 diff --git a/test/rna_prefixno_slow5.exp b/test/rna_prefixno_slow5.exp old mode 100755 new mode 100644 diff --git a/test/rna_prefixyes_slow5.exp b/test/rna_prefixyes_slow5.exp old mode 100755 new mode 100644 diff --git a/test/rna_slow5.exp b/test/rna_slow5.exp old mode 100755 new mode 100644 diff --git a/test/slow5.exp b/test/slow5.exp old mode 100755 new mode 100644 diff --git a/test/trans_count.exp b/test/trans_count.exp old mode 100755 new mode 100644 diff --git a/test/trans_count_cdna.exp b/test/trans_count_cdna.exp old mode 100755 new mode 100644 diff --git a/test/trans_trunc.exp b/test/trans_trunc.exp old mode 100755 new mode 100644